* utils/hbmk2/hbmk2.*.po
* utils/hbmk2/hbmk2.prg
+ do not share plugin variables (hbmk[ "vars" ])
between different plugins. It avoids potentially nasty
issues with plugins stepping onto each other's toes.
[INCOMPATIBLE - though it's unlikely anyone is
affected. If you must communicate between plugins,
use public function or variable.]
+ clarified in help that -icon might not work on all
platforms/compilers and detailed Windows implementation
(in particular it's disabled on bcc/bcc64 and on
mingw it won't work when a manual .rc is specified,
also on some (old?) msvc versions. Consult your
C compiler's Windows resource handling limitations.)
+ clarified in help the syntax of filters
+ clarified in help that .hbp references are handled as
sub-projects
+ clarification to command substitution macro
+ clarification to filter syntax note
! strict parameter checks in all public shell APIs to
avoid RTEs inside hbmk2 due to faulty API usage by scripts
* utils/hbmk2/examples/plug_bis.hb
* updated according to latest plugin changes
* include/harbour.hbx
* include/hbapi.h
* src/vm/debug.c
* src/vm/hvm.c
+ added internal function hb_vmInternalsEnabled()
to query whether potentially sensitive internals
are allowed to be accessed by public Harbour APIs
+ added .prg level function __vmNoInternals()
to disable potentially sensitive internals
by default accessible via public APIs.
Intentionally a one-way function: once disabled,
it cannot be reenabled from .prg or .c level.
NOTE: It will break Harbour debug functionality,
so it'd will be useful for hbrun scripts and
release (non-debug) builds.
+ modified internal __dbg*() functions to return
dummy values when internals are disabled via
__vmNoInternals() functions. While the function
return types are kept, apps relying on their
specific values and certain relationships between
them might break.
; NOTE: In the future, some more internals might
be protected by this setting (f.e. low-level
object and class functions and some API from
hbdebug lib)
; Please review
* tests/debugtst.prg
! fixed to compile warning-free without lowering
warning level
! fixed to run RTE-free with internals disabled
* bin/3rdpatch.hb
* bin/commit.hb
* config/postinst.hb
* contrib/make.hb
* contrib/hbtest/hbtest.ch
* src/debug/*.prg
* src/rtl/tclass.prg
* utils/hbmk2/examples/plug_bis.hb
* utils/hbmk2/examples/plug_tpl.hb
* use short form #pragmas (the ones identical
to Harbour options)
; NOTE: Except -l which works reversed compared
to cmdline -l option. TOFIX? (I tried and failed)
* src/rtl/hbi18n2.prg
* contrib/xhb/tfile.prg
* use F_ERROR instead of -1 literal
* contrib/xhb/xhbtedit.prg
! replaced dirty xhb extension with std SubStr() call
Reported by Tony Quick
[pls report such bugs on Harbour devl list]
* contrib/hbodbc/todbc.prg
! Don't continue ::Open() when SQLExecDir() have error
Fix from xhb via Vicente Guerra, with cleanups.
* tests/multifnc/multifnc.hbp
+ added comment
+ support for watcom
* tests/multifnc/t1.prg
! missing file ending EOL
* tests/*.prg
* extras/gtwvw/tests/wvwtest9.prg
* formatting
361 lines
8.6 KiB
Plaintext
361 lines
8.6 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* Text file browser class
|
|
*
|
|
* Copyright 2008 Lorenzo Fiorini <lorenzo.fiorini@gmail.com>
|
|
* www - http://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.txt. 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.
|
|
*
|
|
*/
|
|
|
|
#pragma -b-
|
|
|
|
#define HB_CLS_NOTOBJECT /* do not inherit from HBObject calss */
|
|
#include "hbclass.ch"
|
|
|
|
CREATE CLASS HBBrwText
|
|
|
|
VAR cFileName
|
|
VAR aRows
|
|
VAR nRows
|
|
VAR nActiveLine
|
|
VAR aBreakPoints INIT {}
|
|
VAR lLineNumbers
|
|
VAR nRow
|
|
VAR nFirstCol
|
|
VAR nCol
|
|
|
|
VAR oBrw
|
|
|
|
VAR cCurLine
|
|
VAR nLineOffset INIT 1
|
|
VAR nMaxLineLen
|
|
VAR nTabWidth INIT 4
|
|
|
|
VAR nTop
|
|
VAR nLeft
|
|
VAR nBottom
|
|
VAR nRight
|
|
|
|
VAR nWidth
|
|
VAR nHeight
|
|
|
|
METHOD New( nTop, nLeft, nBottom, nRight, cFileName, cColors, lLineNumbers )
|
|
|
|
METHOD RefreshAll() INLINE ::oBrw:ForceStable():RefreshAll(), Self
|
|
METHOD ForceStable() INLINE ::oBrw:ForceStable(), Self
|
|
METHOD RefreshCurrent() INLINE ::oBrw:RefreshCurrent(), Self
|
|
METHOD GotoLine( n )
|
|
METHOD SetActiveLine( n )
|
|
METHOD GetLine()
|
|
METHOD ToggleBreakPoint( nRow, lSet )
|
|
METHOD Search( cString, lCaseSensitive, nMode )
|
|
|
|
METHOD GoFirst()
|
|
METHOD GoLast()
|
|
METHOD Skip( n )
|
|
METHOD GoNext()
|
|
METHOD GoPrev()
|
|
|
|
METHOD Resize( nTop, nLeft, nBottom, nRight )
|
|
METHOD GetLineColor()
|
|
|
|
METHOD Up() INLINE ::oBrw:Up():ForceStable(), Self
|
|
METHOD Down() INLINE ::oBrw:Down():ForceStable(), Self
|
|
METHOD PageUp() INLINE ::oBrw:PageUp():ForceStable(), Self
|
|
METHOD PageDown() INLINE ::oBrw:PageDown():ForceStable(), Self
|
|
METHOD GoTop() INLINE ::oBrw:GoTop():ForceStable(), Self
|
|
METHOD GoBottom() INLINE ::oBrw:GoBottom():ForceStable(), Self
|
|
|
|
METHOD Right() INLINE iif( ::nLineOffset < ::nMaxLineLen, ( ::nLineOffset++, ::oBrw:RefreshAll():ForceStable() ), ), Self
|
|
METHOD Left() INLINE iif( ::nLineOffset > 1, ( ::nLineOffset--, ::oBrw:RefreshAll():ForceStable() ), ), Self
|
|
|
|
METHOD RowPos() INLINE ::nRow
|
|
|
|
METHOD LoadFile( cFileName )
|
|
|
|
VAR colorSpec IS colorSpec IN oBrw
|
|
|
|
ENDCLASS
|
|
|
|
METHOD New( nTop, nLeft, nBottom, nRight, cFileName, cColors, lLineNumbers ) CLASS HBBrwText
|
|
|
|
LOCAL oCol
|
|
|
|
::nTop := nTop
|
|
::nLeft := nLeft
|
|
::nBottom := nBottom
|
|
::nRight := nRight
|
|
|
|
::nWidth := nRight - nLeft + 1
|
|
::nHeight := nBottom - nTop
|
|
|
|
::lLineNumbers := lLineNumbers
|
|
|
|
::oBrw := HBDbBrowser():New( ::nTop, ::nLeft, ::nBottom, ::nRight )
|
|
|
|
::oBrw:colorSpec := cColors
|
|
|
|
oCol := HBDbColumnNew( "", {|| ::GetLine() } )
|
|
|
|
oCol:colorBlock := {|| ::GetLineColor() }
|
|
|
|
::oBrw:AddColumn( oCol )
|
|
|
|
::oBrw:goTopBlock := {|| ::nRow := 1 }
|
|
::oBrw:goBottomBlock := {|| ::nRow := ::nRows }
|
|
::oBrw:skipBlock := {| n | ::Skip( n ) }
|
|
|
|
IF ! Empty( cFileName )
|
|
::LoadFile( cFileName )
|
|
ENDIF
|
|
|
|
RETURN Self
|
|
|
|
METHOD GotoLine( n ) CLASS HBBrwText
|
|
|
|
::oBrw:MoveCursor( n - ::nRow )
|
|
::RefreshAll()
|
|
|
|
RETURN Self
|
|
|
|
METHOD SetActiveLine( n ) CLASS HBBrwText
|
|
|
|
::nActiveLine := n
|
|
::RefreshAll()
|
|
|
|
RETURN Self
|
|
|
|
METHOD GetLine() CLASS HBBrwText
|
|
|
|
RETURN PadR( hb_ntos( ::nRow ) + ": " + SubStr( ;
|
|
MemoLine( ::aRows[ ::nRow ], ::nWidth + ::nLineOffset, 1, ::nTabWidth, .F. ), ;
|
|
::nLineOffset ), ::nWidth )
|
|
|
|
METHOD ToggleBreakPoint( nRow, lSet ) CLASS HBBrwText
|
|
|
|
LOCAL nAt := AScan( ::aBreakPoints, nRow )
|
|
|
|
IF lSet
|
|
// add it only if not present
|
|
IF nAt == 0
|
|
AAdd( ::aBreakPoints, nRow )
|
|
ENDIF
|
|
ELSE
|
|
IF nAt != 0
|
|
hb_ADel( ::aBreakPoints, nAt, .T. )
|
|
ENDIF
|
|
ENDIF
|
|
|
|
RETURN Self
|
|
|
|
METHOD LoadFile( cFileName ) CLASS HBBrwText
|
|
|
|
LOCAL nMaxLineLen := 0
|
|
LOCAL cLine
|
|
|
|
::cFileName := cFileName
|
|
::aRows := Text2Array( MemoRead( cFileName ) )
|
|
::nRows := Len( ::aRows )
|
|
|
|
FOR EACH cLine in ::aRows
|
|
nMaxLineLen := Max( nMaxLineLen, ;
|
|
Len( RTrim( MemoLine( cLine, Len( cLine ) + 256, 1, ::nTabWidth, .F. ) ) ) )
|
|
NEXT
|
|
::nMaxLineLen := nMaxLineLen
|
|
::nLineOffset := 1
|
|
|
|
RETURN NIL
|
|
|
|
METHOD Resize( nTop, nLeft, nBottom, nRight ) CLASS HBBrwText
|
|
|
|
LOCAL lResize := .F.
|
|
|
|
IF nTop != NIL .AND. nTop != ::nTop
|
|
::nTop := nTop
|
|
lResize := .T.
|
|
ENDIF
|
|
IF nLeft != NIL .AND. nLeft != ::nLeft
|
|
::nLeft := nLeft
|
|
lResize := .T.
|
|
ENDIF
|
|
IF nBottom != NIL .AND. nBottom != ::nBottom
|
|
::nBottom := nBottom
|
|
lResize := .T.
|
|
ENDIF
|
|
IF nRight != NIL .AND. nRight != ::nRight
|
|
::nRight := nRight
|
|
lResize := .T.
|
|
ENDIF
|
|
IF lResize
|
|
::oBrw:Resize( nTop, nLeft, nBottom, nRight )
|
|
::nWidth := ::nRight - ::nLeft + 1
|
|
ENDIF
|
|
|
|
RETURN Self
|
|
|
|
METHOD GetLineColor() CLASS HBBrwText
|
|
|
|
LOCAL aColor
|
|
LOCAL lBreak
|
|
|
|
lBreak := AScan( ::aBreakPoints, ::nRow ) > 0
|
|
|
|
IF lBreak .AND. ::nRow == ::nActiveLine
|
|
aColor := { 4, 4 }
|
|
ELSEIF lBreak
|
|
aColor := { 3, 3 }
|
|
ELSEIF ::nRow == ::nActiveLine
|
|
aColor := { 2, 2 }
|
|
ELSE
|
|
aColor := { 1, 1 }
|
|
ENDIF
|
|
|
|
RETURN aColor
|
|
|
|
METHOD Search( cString, lCaseSensitive, nMode ) CLASS HBBrwText
|
|
|
|
LOCAL bMove
|
|
LOCAL lFound := .F.
|
|
LOCAL n
|
|
|
|
IF ! lCaseSensitive
|
|
cString := Upper( cString )
|
|
ENDIF
|
|
|
|
DO CASE
|
|
CASE nMode == 0 // From Top
|
|
::GoTop()
|
|
bMove := {|| ::Skip( 1 ) }
|
|
CASE nMode == 1 // Forward
|
|
bMove := {|| ::Skip( 1 ) }
|
|
CASE nMode == 2 // Backward
|
|
bMove := {|| ::Skip( -1 ) }
|
|
ENDCASE
|
|
|
|
n := ::nRow
|
|
|
|
DO WHILE Eval( bMove ) != 0
|
|
IF cString $ iif( lCaseSensitive, ::aRows[ ::nRow ], Upper( ::aRows[ ::nRow ] ) )
|
|
lFound := .T.
|
|
::oBrw:MoveCursor( ::nRow - n )
|
|
::RefreshAll()
|
|
EXIT
|
|
ENDIF
|
|
ENDDO
|
|
|
|
RETURN lFound
|
|
|
|
METHOD GoFirst() CLASS HBBrwText
|
|
|
|
::nRow := 1
|
|
|
|
RETURN .T.
|
|
|
|
METHOD GoLast() CLASS HBBrwText
|
|
|
|
::nRow := ::nRows
|
|
|
|
RETURN .T.
|
|
|
|
METHOD Skip( n ) CLASS HBBrwText
|
|
|
|
LOCAL nSkipped := 0
|
|
|
|
IF n > 0
|
|
IF ::nRow < ::nRows
|
|
nSkipped := Min( ::nRows - ::nRow, n )
|
|
::nRow += nSkipped
|
|
ENDIF
|
|
ELSEIF n < 0
|
|
IF ::nRow > 1
|
|
nSkipped := Max( 1 - ::nRow, n )
|
|
::nRow += nSkipped
|
|
ENDIF
|
|
ENDIF
|
|
|
|
RETURN nSkipped
|
|
|
|
METHOD GoPrev() CLASS HBBrwText
|
|
|
|
LOCAL lMoved := .F.
|
|
|
|
IF ::nRow > 1
|
|
::nRow--
|
|
lMoved := .T.
|
|
ENDIF
|
|
|
|
RETURN lMoved
|
|
|
|
METHOD GoNext() CLASS HBBrwText
|
|
|
|
LOCAL lMoved := .F.
|
|
|
|
IF ::nRow < ::nRows
|
|
::nRow++
|
|
lMoved := .T.
|
|
ENDIF
|
|
|
|
RETURN lMoved
|
|
|
|
STATIC FUNCTION WhichEOL( cString )
|
|
|
|
LOCAL nCRPos := At( Chr( 13 ), cString )
|
|
LOCAL nLFPos := At( Chr( 10 ), cString )
|
|
|
|
IF nCRPos > 0 .AND. nLFPos == 0
|
|
RETURN Chr( 13 )
|
|
ELSEIF nCRPos == 0 .AND. nLFPos > 0
|
|
RETURN Chr( 10 )
|
|
ELSEIF nCRPos > 0 .AND. nLFPos == nCRPos + 1
|
|
RETURN Chr( 13 ) + Chr( 10 )
|
|
ENDIF
|
|
|
|
RETURN hb_eol()
|
|
|
|
STATIC FUNCTION Text2Array( cString )
|
|
|
|
RETURN hb_ATokens( cString, WhichEOL( cString ) )
|