* source/rtl/browse.prg
* source/rtl/getsys53.prg
* source/rtl/profiler.prg
* source/rtl/tbrowse.prg
* source/debug/dbghelp.prg
* source/debug/dbgwa.prg
* utils/hbextern/hbextern.prg
* utils/hbtest/hbtest.prg
* utils/hbtest/rt_array.prg
* utils/hbtest/rt_class.prg
* utils/hbtest/rt_date.prg
* utils/hbtest/rt_file.prg
* utils/hbtest/rt_hvm.prg
* utils/hbtest/rt_hvma.prg
* utils/hbtest/rt_math.prg
* utils/hbtest/rt_misc.prg
* utils/hbtest/rt_str.prg
* utils/hbtest/rt_stra.prg
* utils/hbtest/rt_trans.prg
% FUNCTION -> PROCEDURE
445 lines
11 KiB
Plaintext
445 lines
11 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* Quick Clipper Browse()
|
|
*
|
|
* Copyright 1999 Antonio Linares <alinares@fivetech.com>
|
|
* www - http://www.harbour-project.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
#include "inkey.ch"
|
|
#include "setcurs.ch"
|
|
#include "box.ch"
|
|
|
|
FUNCTION Browse( nTop, nLeft, nBottom, nRight )
|
|
|
|
LOCAL oBrw
|
|
LOCAL lExit, lGotKey, lAppend, lKeyPressed, lRefresh
|
|
LOCAL n, nOldCursor, nKey
|
|
LOCAL cOldScreen
|
|
LOCAL bAction
|
|
|
|
IF ! Used()
|
|
RETURN .F.
|
|
ENDIF
|
|
|
|
lExit := lGotKey := lAppend := lKeyPressed := lRefresh := .F.
|
|
|
|
IF PCount() < 4
|
|
nTop := 1
|
|
nLeft := 0
|
|
nBottom := MaxRow()
|
|
nRight := MaxCol()
|
|
ENDIF
|
|
|
|
DispBegin()
|
|
|
|
nOldCursor := SetCursor( SC_NONE )
|
|
cOldScreen := SaveScreen( nTop, nLeft, nBottom, nRight )
|
|
|
|
DispBox( nTop, nLeft, nBottom, nRight, B_DOUBLE_SINGLE )
|
|
DispBox( nTop + 3, nLeft, nTop + 3, nLeft, chr( 198 ) )
|
|
DispBox( nTop + 3, nRight, nTop + 3, nRight, chr( 181 ) )
|
|
DispOutAt( nTop + 1, nLeft + 1, Space( nRight - nLeft - 1 ) )
|
|
|
|
oBrw := TBrowseDB( nTop + 2, nLeft + 1, nBottom - 1, nRight - 1 )
|
|
oBrw:HeadSep := " " + Chr( 205 )
|
|
oBrw:SkipBlock := { | nRecs | Skipped( nRecs, lAppend ) }
|
|
|
|
FOR n := 1 to FCount()
|
|
oBrw:AddColumn( TBColumnNew( FieldName( n ), FieldBlock( FieldName( n ) ) ) )
|
|
NEXT
|
|
|
|
IF Eof()
|
|
DbGoTop()
|
|
ENDIF
|
|
|
|
oBrw:ForceStable()
|
|
|
|
DispEnd()
|
|
|
|
IF LastRec() == 0
|
|
nKey := K_DOWN
|
|
lKeyPressed := .T.
|
|
ENDIF
|
|
|
|
DO WHILE ! lExit
|
|
|
|
DO WHILE ! lKeyPressed .AND. ! oBrw:Stabilize()
|
|
lKeyPressed := ( nKey := Inkey() ) != 0
|
|
ENDDO
|
|
|
|
IF ! lKeyPressed
|
|
|
|
IF oBrw:HitBottom() .AND. ( ! lAppend .OR. RecNo() != LastRec() + 1 )
|
|
IF lAppend
|
|
oBrw:RefreshCurrent()
|
|
oBrw:ForceStable()
|
|
dbGoBottom()
|
|
ELSE
|
|
lAppend := .T.
|
|
SetCursor( IIF( ReadInsert(), SC_INSERT, SC_NORMAL ) )
|
|
ENDIF
|
|
oBrw:Down()
|
|
oBrw:ForceStable()
|
|
oBrw:ColorRect( { oBrw:RowPos, 1, oBrw:RowPos, oBrw:ColCount() }, ;
|
|
{ 2, 2 } )
|
|
ENDIF
|
|
|
|
StatLine( oBrw, lAppend )
|
|
|
|
oBrw:ForceStable()
|
|
|
|
nKey := InKey( 0 )
|
|
IF ( bAction := SetKey( nKey ) ) != NIL
|
|
Eval( bAction, ProcName( 1 ), ProcLine( 1 ), "")
|
|
LOOP
|
|
ENDIF
|
|
ELSE
|
|
lKeyPressed := .F.
|
|
ENDIF
|
|
|
|
SWITCH nKey
|
|
|
|
#ifdef HB_COMPAT_C53
|
|
CASE K_LBUTTONDOWN
|
|
CASE K_LDBLCLK
|
|
TBMOUSE( oBrw, MRow(), MCol() )
|
|
EXIT
|
|
#endif
|
|
#ifndef HB_C52_STRICT
|
|
CASE K_MWFORWARD
|
|
#endif
|
|
CASE K_UP
|
|
IF lAppend
|
|
lRefresh := .T.
|
|
ELSE
|
|
oBrw:Up()
|
|
ENDIF
|
|
EXIT
|
|
|
|
#ifndef HB_C52_STRICT
|
|
CASE K_MWBACKWARD
|
|
#endif
|
|
CASE K_DOWN
|
|
IF lAppend
|
|
oBrw:HitBottom( .T. )
|
|
ELSE
|
|
oBrw:Down()
|
|
ENDIF
|
|
EXIT
|
|
|
|
CASE K_PGUP
|
|
IF lAppend
|
|
lRefresh := .T.
|
|
ELSE
|
|
oBrw:PageUp()
|
|
ENDIF
|
|
EXIT
|
|
|
|
CASE K_PGDN
|
|
IF lAppend
|
|
oBrw:HitBottom( .T. )
|
|
ELSE
|
|
oBrw:PageDown()
|
|
ENDIF
|
|
EXIT
|
|
|
|
CASE K_CTRL_PGUP
|
|
IF lAppend
|
|
lRefresh := .T.
|
|
ELSE
|
|
oBrw:GoTop()
|
|
ENDIF
|
|
EXIT
|
|
|
|
CASE K_CTRL_PGDN
|
|
IF lAppend
|
|
lRefresh := .T.
|
|
ELSE
|
|
oBrw:GoBottom()
|
|
ENDIF
|
|
EXIT
|
|
|
|
CASE K_LEFT
|
|
oBrw:Left()
|
|
EXIT
|
|
|
|
CASE K_RIGHT
|
|
oBrw:Right()
|
|
EXIT
|
|
|
|
CASE K_HOME
|
|
oBrw:Home()
|
|
EXIT
|
|
|
|
CASE K_END
|
|
oBrw:End()
|
|
EXIT
|
|
|
|
CASE K_CTRL_LEFT
|
|
oBrw:panLeft()
|
|
EXIT
|
|
|
|
CASE K_CTRL_RIGHT
|
|
oBrw:panRight()
|
|
EXIT
|
|
|
|
CASE K_CTRL_HOME
|
|
oBrw:panHome()
|
|
EXIT
|
|
|
|
CASE K_CTRL_END
|
|
oBrw:panEnd()
|
|
EXIT
|
|
|
|
CASE K_INS
|
|
IF lAppend
|
|
SetCursor( IIF( ReadInsert( ! ReadInsert() ), ;
|
|
SC_NORMAL, SC_INSERT ) )
|
|
ENDIF
|
|
EXIT
|
|
|
|
CASE K_DEL
|
|
IF RecNo() != LastRec() + 1
|
|
IF Deleted()
|
|
DbRecall()
|
|
ELSE
|
|
DbDelete()
|
|
ENDIF
|
|
ENDIF
|
|
EXIT
|
|
|
|
CASE K_ENTER
|
|
IF lAppend .OR. RecNo() != LastRec() + 1
|
|
lKeyPressed := ( nKey := DoGet( oBrw, lAppend ) ) != 0
|
|
ELSE
|
|
nKey := K_DOWN
|
|
lKeyPressed := .T.
|
|
ENDIF
|
|
EXIT
|
|
|
|
CASE K_ESC
|
|
lExit := .t.
|
|
EXIT
|
|
|
|
OTHERWISE
|
|
IF nKey >= 32 .AND. nKey <= 255
|
|
KEYBOARD Chr( nKey )
|
|
nKey := K_ENTER
|
|
lKeyPressed := .T.
|
|
ENDIF
|
|
EXIT
|
|
ENDSWITCH
|
|
|
|
IF lRefresh
|
|
lRefresh := lAppend := .F.
|
|
FreshOrder( oBrw )
|
|
SetCursor( SC_NONE )
|
|
ENDIF
|
|
|
|
ENDDO
|
|
|
|
RestScreen( nTop, nLeft, nBottom, nRight, cOldScreen )
|
|
SetCursor( nOldCursor )
|
|
|
|
RETURN .T.
|
|
|
|
STATIC PROCEDURE StatLine( oBrw, lAppend )
|
|
|
|
LOCAL nTop := oBrw:nTop - 1
|
|
LOCAL nRight := oBrw:nRight
|
|
|
|
DispOutAt( nTop, nRight - 27, "Record " )
|
|
|
|
IF LastRec() == 0 .AND. ! lAppend
|
|
DispOutAt( nTop, nRight - 20, "<none> " )
|
|
ELSEIF RecNo() == LastRec() + 1
|
|
DispOutAt( nTop, nRight - 40, " " )
|
|
DispOutAt( nTop, nRight - 20, " <new>" )
|
|
ELSE
|
|
DispOutAt( nTop, nRight - 40, IIF( Deleted(), "<Deleted>", " " ) )
|
|
DispOutAt( nTop, nRight - 20, PadR( LTrim( Str( RecNo() ) ) + "/" + ;
|
|
LTrim( Str( LastRec() ) ), 16 ) + ;
|
|
IIF( oBrw:HitTop(), "<bof>", " " ) )
|
|
ENDIF
|
|
|
|
RETURN
|
|
|
|
STATIC FUNCTION DoGet( oBrw, lAppend )
|
|
|
|
LOCAL lScore, lExit, bIns, nCursor
|
|
LOCAL oCol, oGet
|
|
LOCAL cIndexKey, cForExp, xKeyValue
|
|
LOCAL lSuccess, nKey, xValue
|
|
|
|
oBrw:HitTop( .F. )
|
|
StatLine( oBrw, lAppend )
|
|
oBrw:ForceStable()
|
|
|
|
lScore := Set( _SET_SCOREBOARD, .F. )
|
|
lExit := Set( _SET_EXIT, .T. )
|
|
bIns := SetKey( K_INS, {|| SetCursor( IIF( ReadInsert( ! ReadInsert() ), ;
|
|
SC_NORMAL, SC_INSERT ) ) } )
|
|
nCursor := SetCursor( IIF( ReadInsert(), SC_INSERT, SC_NORMAL ) )
|
|
IF !Empty( cIndexKey := IndexKey( 0 ) )
|
|
xKeyValue := &cIndexKey
|
|
ENDIF
|
|
|
|
oCol := oBrw:GetColumn( oBrw:ColPos )
|
|
xValue := Eval( oCol:Block )
|
|
oGet := GetNew( Row(), Col(), ;
|
|
{ |xNewVal| IIF( PCount() == 0, xValue, xValue := xNewVal ) }, ;
|
|
"mGetVar", NIL, oBrw:ColorSpec )
|
|
lSuccess := .F.
|
|
IF ReadModal( { oGet } )
|
|
IF lAppend .AND. RecNo() == LastRec() + 1
|
|
dbAppend()
|
|
ENDIF
|
|
Eval( oCol:Block, xValue )
|
|
|
|
IF !lAppend .AND. !Empty( cForExp := OrdFor( IndexOrd() ) ) .AND. ;
|
|
! &cForExp
|
|
dbGoTop()
|
|
ENDIF
|
|
IF !lAppend .AND. !Empty( cIndexKey ) .AND. ! xKeyValue == &cIndexKey
|
|
lSuccess := .T.
|
|
ENDIF
|
|
ENDIF
|
|
|
|
IF lSuccess
|
|
FreshOrder( oBrw )
|
|
nKey := 0
|
|
ELSE
|
|
oBrw:RefreshCurrent()
|
|
nKey := ExitKey( lAppend )
|
|
ENDIF
|
|
|
|
IF lAppend
|
|
oBrw:ColorRect( { oBrw:rowpos, 1, oBrw:rowpos, oBrw:colcount }, ;
|
|
{ 2, 2 } )
|
|
ENDIF
|
|
|
|
SetCursor( nCursor )
|
|
SetKey( K_INS, bIns )
|
|
Set( _SET_EXIT, lExit )
|
|
Set( _SET_SCOREBOARD, lScore )
|
|
|
|
RETURN nKey
|
|
|
|
STATIC FUNCTION ExitKey( lAppend )
|
|
|
|
LOCAL nKey := LastKey()
|
|
|
|
SWITCH nKey
|
|
CASE K_PGDN
|
|
nKey := IIF( lAppend, 0, K_DOWN )
|
|
EXIT
|
|
|
|
CASE K_PGUP
|
|
nKey := IIF( lAppend, 0, K_UP )
|
|
|
|
CASE K_DOWN
|
|
CASE K_UP
|
|
EXIT
|
|
|
|
OTHERWISE
|
|
nKey := IIF( nKey == 13 .OR. ;
|
|
( nKey >= 32 .AND. nKey <= 255 ), K_RIGHT, 0 )
|
|
EXIT
|
|
ENDSWITCH
|
|
|
|
RETURN nKey
|
|
|
|
STATIC PROCEDURE FreshOrder( oBrw )
|
|
|
|
LOCAL nRec := RecNo()
|
|
|
|
oBrw:RefreshAll()
|
|
oBrw:ForceStable()
|
|
|
|
IF nRec != LastRec() + 1
|
|
DO WHILE RecNo() != nRec .AND. !BOF()
|
|
oBrw:Up()
|
|
oBrw:ForceStable()
|
|
ENDDO
|
|
ENDIF
|
|
|
|
RETURN
|
|
|
|
STATIC FUNCTION Skipped( nRecs, lAppend )
|
|
|
|
LOCAL nSkipped := 0
|
|
|
|
IF LastRec() != 0
|
|
IF nRecs == 0
|
|
dbSkip( 0 )
|
|
ELSEIF nRecs > 0 .AND. RecNo() != LastRec() + 1
|
|
DO WHILE nSkipped < nRecs
|
|
dbSkip()
|
|
IF Eof()
|
|
IF lAppend
|
|
nSkipped++
|
|
ELSE
|
|
dbSkip( -1 )
|
|
ENDIF
|
|
EXIT
|
|
ENDIF
|
|
nSkipped++
|
|
ENDDO
|
|
ELSEIF nRecs < 0
|
|
DO WHILE nSkipped > nRecs
|
|
dbSkip( -1 )
|
|
IF Bof()
|
|
EXIT
|
|
ENDIF
|
|
nSkipped--
|
|
ENDDO
|
|
ENDIF
|
|
ENDIF
|
|
|
|
RETURN nSkipped
|