* include/hbextern.ch
* source/rtl/tbcolumn.prg
* source/rtl/tbrowse.prg
* source/rtl/tget.prg
* source/rtl/tgetx.prg
! Using new method to solve the GET()/TBROWSE()/TBCOLUMN()
symbol problem (these aren't public symbols in Clipper).
The method used is the one already implemented for other
C53 CUI classes.
This allows inheritance, doesn't mess up the class name,
and won't declare above public symbols.
* Moved Xbase++ compatible GET()/TBROWSE()/TBCOLUMN()
functionality into separate classes, all inheriting from
original Harbour classes. This means that Xbase++
compatible methods are only accessible when using the
derived classes. The separation will allow us to
move XPP (and other HB_COMPAT_*) compatible functionality
into a separate libraries in the future, allowing more
freedom to resolve clashing features, symbol names, etc..
* Xbase++ compatible classes are named: xpp_Get(),
xpp_TBrowse(), xpp_TBColumn(). This is a slight
incompatibility compared to Xbase++ and also to
previous Harbour. Technically it seems possible
to give them the names GET()/TBROWSE()/TBCOLUMN(), if
the class is defined in a different file, but let's first
discuss it.
* source/rtl/tgetint.prg
* Using GetNew() instead of Get():New().
; Finally I didn't use '( ... )' to pass parameters in GetNew(),
as it's a tiny bit less efficient with -gc3.
* include/hbusrrdd.ch
* include/hbapi.h
+ Comment.
226 lines
7.5 KiB
Plaintext
226 lines
7.5 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* TBColumn Class
|
|
*
|
|
* Copyright 2007-2008 Viktor Szakats <viktor.szakats@syenar.hu>
|
|
* 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 "hbclass.ch"
|
|
|
|
#include "common.ch"
|
|
#include "tbrowse.ch"
|
|
|
|
/* NOTE: In CA-Cl*pper TBCOLUMN class does not inherit from any other classes. */
|
|
|
|
CREATE CLASS TBCOLUMN FUNCTION HBBColumn
|
|
|
|
EXPORTED:
|
|
|
|
/* === Start of CA-Cl*pper compatible TBColumn instance area === */
|
|
VAR cargo /* 01. User-definable variable */
|
|
VAR nWidth PROTECTED /* 02. */
|
|
VAR bBlock PROTECTED /* 03. */
|
|
VAR aDefColor PROTECTED INIT { 1, 2 } /* 04. NOTE: Default value for both CA-Cl*pper 5.2 and 5.3. */
|
|
VAR bColorBlock PROTECTED INIT {|| NIL } /* 05. */
|
|
VAR cHeading PROTECTED INIT "" /* 06. */
|
|
VAR cHeadSep PROTECTED /* 07. */
|
|
VAR cColSep PROTECTED /* 08. */
|
|
VAR cFootSep PROTECTED /* 09. */
|
|
VAR cFooting PROTECTED INIT "" /* 10. */
|
|
VAR picture /* 11. Column picture string */
|
|
#ifdef HB_COMPAT_C53
|
|
VAR bPreBlock PROTECTED /* 12. */
|
|
VAR bPostBlock PROTECTED /* 13. */
|
|
VAR aSetStyle PROTECTED INIT { .F., .F., .F. } /* 14. TBC_READWRITE, TBC_MOVE, TBC_SIZE */
|
|
#endif
|
|
/* === End of CA-Cl*pper compatible TBColumn instance area === */
|
|
|
|
METHOD block( bBlock ) SETGET /* Code block to retrieve data for the column */
|
|
METHOD colorBlock( bColorBlock ) SETGET /* Code block that determines color of data items */
|
|
METHOD defColor( aDefColor ) SETGET /* Array of numeric indexes into the color table */
|
|
METHOD colSep( cColSep ) SETGET /* Column separator character */
|
|
METHOD heading( cHeading ) SETGET /* Column heading */
|
|
METHOD footing( cFooting ) SETGET /* Column footing */
|
|
METHOD headSep( cHeadSep ) SETGET /* Heading separator character */
|
|
METHOD footSep( cFootSep ) SETGET /* Footing separator character */
|
|
METHOD width( nWidth ) SETGET /* Column display width */
|
|
#ifdef HB_COMPAT_C53
|
|
METHOD preBlock( bPreBlock ) SETGET /* Code block determining editing */
|
|
METHOD postBlock( bPostBlock ) SETGET /* Code block validating values */
|
|
METHOD setStyle( nStyle, lSetting )
|
|
#endif
|
|
|
|
METHOD New( cHeading, bBlock ) /* NOTE: This method is a Harbour extension [vszakats] */
|
|
|
|
ENDCLASS
|
|
|
|
METHOD block( bBlock ) CLASS TBCOLUMN
|
|
|
|
IF bBlock != NIL
|
|
::bBlock := __eInstVar53( Self, "BLOCK", bBlock, "B", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::bBlock
|
|
|
|
METHOD colorBlock( bColorBlock ) CLASS TBCOLUMN
|
|
|
|
IF bColorBlock != NIL
|
|
::bColorBlock := __eInstVar53( Self, "COLORBLOCK", bColorBlock, "B", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::bColorBlock
|
|
|
|
METHOD defColor( aDefColor ) CLASS TBCOLUMN
|
|
|
|
IF aDefColor != NIL
|
|
::aDefColor := __eInstVar53( Self, "DEFCOLOR", aDefColor, "A", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::aDefColor
|
|
|
|
METHOD colSep( cColSep ) CLASS TBCOLUMN
|
|
|
|
IF cColSep != NIL
|
|
::cColSep := __eInstVar53( Self, "COLSEP", cColSep, "C", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::cColSep
|
|
|
|
METHOD heading( cHeading ) CLASS TBCOLUMN
|
|
|
|
IF cHeading != NIL
|
|
::cHeading := __eInstVar53( Self, "HEADING", cHeading, "C", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::cHeading
|
|
|
|
METHOD footing( cFooting ) CLASS TBCOLUMN
|
|
|
|
IF cFooting != NIL
|
|
::cFooting := __eInstVar53( Self, "FOOTING", cFooting, "C", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::cFooting
|
|
|
|
METHOD headSep( cHeadSep ) CLASS TBCOLUMN
|
|
|
|
IF cHeadSep != NIL
|
|
::cHeadSep := __eInstVar53( Self, "HEADSEP", cHeadSep, "C", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::cHeadSep
|
|
|
|
METHOD footSep( cFootSep ) CLASS TBCOLUMN
|
|
|
|
IF cFootSep != NIL
|
|
::cFootSep := __eInstVar53( Self, "FOOTSEP", cFootSep, "C", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::cFootSep
|
|
|
|
METHOD width( nWidth ) CLASS TBCOLUMN
|
|
|
|
IF nWidth != NIL
|
|
::nWidth := __eInstVar53( Self, "WIDTH", nWidth, "N", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::nWidth
|
|
|
|
#ifdef HB_COMPAT_C53
|
|
|
|
METHOD preBlock( bPreBlock ) CLASS TBCOLUMN
|
|
|
|
IF bPreBlock != NIL
|
|
::bPreBlock := __eInstVar53( Self, "PREBLOCK", bPreBlock, "B", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::bPreBlock
|
|
|
|
METHOD postBlock( bPostBlock ) CLASS TBCOLUMN
|
|
|
|
IF bPostBlock != NIL
|
|
::bPostBlock := __eInstVar53( Self, "POSTBLOCK", bPostBlock, "B", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::bPostBlock
|
|
|
|
METHOD setStyle( nStyle, lNewValue ) CLASS TBCOLUMN
|
|
|
|
/* NOTE: CA-Cl*pper 5.3 does no checks on the value of nStyle, so in case
|
|
it is zero or non-numeric, a regular RTE will happen. [vszakats] */
|
|
|
|
IF nStyle > Len( ::aSetStyle ) .AND. nStyle <= 4096 /* Some reasonable limit for maximum number of styles */
|
|
ASize( ::aSetStyle, nStyle )
|
|
ENDIF
|
|
|
|
IF ISLOGICAL( lNewValue )
|
|
::aSetStyle[ nStyle ] := lNewValue
|
|
ENDIF
|
|
|
|
RETURN ::aSetStyle[ nStyle ]
|
|
|
|
#endif
|
|
|
|
METHOD New( cHeading, bBlock ) CLASS TBCOLUMN
|
|
|
|
::cHeading := cHeading /* NOTE: CA-Cl*pper will allow any types for the heading here. [vszakats] */
|
|
::bBlock := bBlock /* NOTE: CA-Cl*pper allows any types here. [vszakats] */
|
|
|
|
RETURN Self
|
|
|
|
FUNCTION TBColumnNew( cHeading, bBlock )
|
|
RETURN HBBColumn():New( cHeading, bBlock )
|
|
|
|
#ifdef HB_COMPAT_XPP
|
|
|
|
CREATE CLASS xpp_TBColumn INHERIT HBBColumn
|
|
ENDCLASS
|
|
|
|
#endif
|