* contrib/rddads/make_b32.bat
* contrib/rddads/make_vc.bat
* contrib/rddads/ads.ch
* contrib/rddads/rddads.h
* contrib/rddads/ads1.c
* contrib/rddads/adsfunc.c
* contrib/rddads/adsmgmnt.c
+ Added ACE version autodetection.
You can override with: -DADS_LIB_VERSION=700 (and similar)
(ADS_REQUIRE_VERSION still accepted for compatibility)
! Fixed a few lib version related problems.
! hMgmtHandle global renamed to ads_g_hMgmtHandle.
* Formatting.
* contrib/rddads/rddads.h
+ QUESTION: added about ADS_MAX_KEY_LENGTH redefinition.
Is it needed?
* source/compiler/hbmain.c
* Changed output device (hb_compOutStd() -> hb_compOutErr())
for following texts:
"Compiling..."
"No code generated"
"Lines x, Functions/Procedures x"
This is to replicate CA-Cl*pper behaviour a bit more.
* include/hbextern.ch
* common.mak
* source/rtl/Makefile
* source/rtl/maxrow.c
+ source/rtl/scrrow.c
* contrib/xhb/hbcompat.ch
+ Added hb_ScrMaxRow(), hb_ScrMaxCol()
These will return the screen dimensions regardless
of the size of an active window (when using CT
windows for example). Functionality is the same
as MaxRow(.T.) and MaxCol(.T.) previously.
! MaxRow()/MaxCol() extended parameters removed.
+ Added MaxRow(.T.)/MaxCol(.T.) conversions for
xhb lib (hbcompat.ch) in both directions.
; XBase++ doesn't have any extended parameters
for Max*() function. Flagship has two of them,
both of them doing something different. CAVO doesn't
have these functions at all.
* contrib/xhb/hbcompat.ch
! GTI_* macros updated to HB_GTI_*.
* source/vm/memvclip.c
% Minor opt in __QQPUB().
* source/vm/extend.c
* 0 -> NULL
* source/vm/estack.c
- QUESTION removed.
* source/lang/msgbgmik.c
* source/rtl/console.c
* source/rtl/philes.c
* source/rtl/adir.prg
* source/rtl/getsys53.prg
* source/rtl/getsys.prg
* source/rtl/tget.prg
* source/rtl/ttopbar.prg
* source/rtl/pushbtn.prg
* source/rtl/mod.c
* source/rtl/memofile.c
* source/rtl/radiobtn.prg
* source/rtl/filesys.c
* source/rtl/tbrowse.prg
* source/vm/estack.c
* source/vm/itemapi.c
* source/vm/hvm.c
* source/vm/cmdarg.c
* source/vm/fm.c
* source/vm/eval.c
* source/common/hbver.c
* source/common/expropt2.c
* utils/hbtest/hbtest.prg
* utils/hbtest/rt_misc.prg
* utils/hbtest/rt_str.prg
! Comment fixes and minor formatting.
381 lines
9.9 KiB
Plaintext
381 lines
9.9 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* RADIOBUTTON class
|
|
*
|
|
* Copyright 2000 Luiz Rafael Culik <culik@sl.conex.net>
|
|
* 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 "button.ch"
|
|
#include "color.ch"
|
|
#include "common.ch"
|
|
|
|
/* NOTE: Harbour doesn't support CA-Cl*pper 5.3 GUI functionality, but
|
|
it has all related variables and methods. */
|
|
|
|
/* NOTE: CA-Cl*pper 5.3 uses a mixture of QQOut(), DevOut(), Disp*()
|
|
functions to generate screen output. Harbour uses Disp*()
|
|
functions only. [vszakats] */
|
|
|
|
#ifdef HB_COMPAT_C53
|
|
|
|
CREATE CLASS RADIOBUTTN FUNCTION HBRadioButton
|
|
|
|
EXPORTED:
|
|
|
|
VAR cargo /* NOTE: CA-Cl*pper 5.3 has a bug, where this var is filled with NIL everytime its value is read ( cargo := o:cargo ). */
|
|
|
|
METHOD display()
|
|
METHOD hitTest( nMRow, nMCol )
|
|
METHOD isAccel( xKey )
|
|
METHOD killFocus()
|
|
METHOD select( lState )
|
|
METHOD setFocus()
|
|
|
|
METHOD bitmaps( aBitmaps ) SETGET
|
|
METHOD buffer() SETGET
|
|
METHOD data( cData ) SETGET /* NOTE: Undocumented CA-Cl*pper 5.3 method. */
|
|
METHOD capCol( nCapCol ) SETGET
|
|
METHOD capRow( nCapRow ) SETGET
|
|
METHOD caption( cCaption ) SETGET
|
|
METHOD col( nCol ) SETGET
|
|
METHOD colorSpec( cColorSpec ) SETGET
|
|
METHOD fBlock( bFBlock ) SETGET
|
|
METHOD hasFocus() SETGET
|
|
METHOD row( nRow ) SETGET
|
|
METHOD sBlock( bSBlock ) SETGET
|
|
METHOD style( cStyle ) SETGET
|
|
|
|
METHOD New( nRow, nCol, cCaption, cData ) /* NOTE: This method is a Harbour extension [vszakats] */
|
|
|
|
PROTECTED:
|
|
|
|
VAR aBitmaps INIT { "radio_f.bmu", "radio_e.bmu" }
|
|
VAR lBuffer INIT .F.
|
|
VAR cData
|
|
VAR nCapCol
|
|
VAR nCapRow
|
|
VAR cCaption
|
|
VAR nCol
|
|
VAR cColorSpec
|
|
VAR bFBlock
|
|
VAR lHasFocus INIT .F.
|
|
VAR nRow
|
|
VAR bSBlock
|
|
VAR cStyle INIT "(* )"
|
|
|
|
ENDCLASS
|
|
|
|
METHOD setFocus() CLASS RADIOBUTTN
|
|
|
|
IF !::lHasFocus
|
|
::lHasFocus := .T.
|
|
::display()
|
|
|
|
IF ISBLOCK( ::bFBlock )
|
|
Eval( ::bFBlock )
|
|
ENDIF
|
|
ENDIF
|
|
|
|
RETURN Self
|
|
|
|
METHOD select( lState ) CLASS RADIOBUTTN
|
|
|
|
LOCAL lOldState := ::lBuffer
|
|
|
|
::lBuffer := iif( ISLOGICAL( lState ), lState, !::lBuffer )
|
|
|
|
IF lOldState != ::lBuffer .AND. ;
|
|
ISBLOCK( ::bSBlock )
|
|
|
|
Eval( ::bSBlock )
|
|
ENDIF
|
|
|
|
RETURN Self
|
|
|
|
METHOD killFocus() CLASS RADIOBUTTN
|
|
|
|
IF ::lHasFocus
|
|
::lHasFocus := .F.
|
|
|
|
IF ISBLOCK( ::bFBlock )
|
|
Eval( ::bFBlock )
|
|
ENDIF
|
|
|
|
::display()
|
|
ENDIF
|
|
|
|
RETURN Self
|
|
|
|
METHOD display() CLASS RADIOBUTTN
|
|
|
|
LOCAL cOldColor := SetColor()
|
|
LOCAL nOldRow := Row()
|
|
LOCAL nOldCol := Col()
|
|
LOCAL lOldMCur := MSetCursor( .F. )
|
|
|
|
LOCAL cStyle := ::cStyle
|
|
LOCAL nPos
|
|
LOCAL cOldCaption
|
|
|
|
DispBegin()
|
|
|
|
SetColor( iif( ::lBuffer, hb_ColorIndex( ::cColorSpec, 3 ), hb_ColorIndex( ::cColorSpec, 1 ) ) )
|
|
SetPos( ::nRow, ::nCol )
|
|
DispOut( Left( cStyle, 1 ) )
|
|
DispOut( iif( ::lBuffer, SubStr( cStyle, 2, 1 ), SubStr( cStyle, 3, 1 ) ) )
|
|
DispOut( Right( cStyle, 1 ) )
|
|
|
|
IF !Empty( cOldCaption := ::cCaption )
|
|
|
|
IF ( nPos := At( "&", cOldCaption ) ) == 0
|
|
ELSEIF nPos == Len( cOldCaption )
|
|
nPos := 0
|
|
ELSE
|
|
cOldCaption := Stuff( cOldCaption, nPos, 1, "" )
|
|
ENDIF
|
|
|
|
DispOutAt( ::nCapRow, ::nCapCol, cOldCaption, hb_ColorIndex( ::cColorSpec, 4 ) )
|
|
|
|
IF nPos != 0
|
|
DispOutAt( ::nCapRow, ::nCapCol + nPos - 1, SubStr( cOldCaption, nPos, 1 ), iif( ::lHasfocus, hb_ColorIndex( ::cColorSpec, 6 ), hb_ColorIndex( ::cColorSpec, 5 ) ) )
|
|
ENDIF
|
|
ENDIF
|
|
|
|
DispEnd()
|
|
|
|
MSetCursor( lOldMCur )
|
|
SetColor( cOldColor )
|
|
SetPos( nOldRow, nOldCol )
|
|
|
|
RETURN Self
|
|
|
|
METHOD isAccel( xKey ) CLASS RADIOBUTTN
|
|
|
|
LOCAL nPos
|
|
LOCAL cCaption
|
|
|
|
IF ISNUMBER( xKey )
|
|
xKey := Chr( xKey )
|
|
ELSEIF !ISCHARACTER( xKey )
|
|
RETURN .F.
|
|
ENDIF
|
|
|
|
cCaption := ::cCaption
|
|
|
|
RETURN ( nPos := At( "&", cCaption ) ) > 0 .AND. ;
|
|
Lower( SubStr( cCaption, nPos + 1, 1 ) ) == Lower( xKey )
|
|
|
|
METHOD hitTest( nMRow, nMCol ) CLASS RADIOBUTTN
|
|
|
|
LOCAL nPos
|
|
LOCAL nLen
|
|
|
|
IF nMRow == ::Row .AND. ;
|
|
nMCol >= ::Col .AND. ;
|
|
nMCol < ::Col + 3
|
|
RETURN HTCLIENT
|
|
ENDIF
|
|
|
|
nLen := Len( ::cCaption )
|
|
|
|
IF ( nPos := At( "&", ::cCaption ) ) == 0 .AND. nPos < nLen
|
|
nLen--
|
|
ENDIF
|
|
|
|
IF nMRow == ::CapRow .AND. ;
|
|
nMCol >= ::CapCol .AND. ;
|
|
nMCol < ::CapCol + nLen
|
|
RETURN HTCLIENT
|
|
ENDIF
|
|
|
|
RETURN HTNOWHERE
|
|
|
|
METHOD bitmaps( aBitmaps ) CLASS RADIOBUTTN
|
|
|
|
IF aBitmaps != NIL
|
|
::aBitmaps := __eInstVar53( Self, "BITMAPS", aBitmaps, "A", 1001, {|| Len( aBitmaps ) == 2 } )
|
|
ENDIF
|
|
|
|
RETURN ::aBitmaps
|
|
|
|
METHOD buffer() CLASS RADIOBUTTN
|
|
RETURN ::lBuffer
|
|
|
|
METHOD data( cData ) CLASS RADIOBUTTN
|
|
|
|
IF PCount() > 0
|
|
::cData := iif( cData == NIL, NIL, __eInstVar53( Self, "DATA", cData, "C", 1001 ) )
|
|
ENDIF
|
|
|
|
RETURN iif( ::cData == NIL, __Caption( ::Caption ), ::cData )
|
|
|
|
METHOD capCol( nCapCol ) CLASS RADIOBUTTN
|
|
|
|
IF nCapCol != NIL
|
|
::nCapCol := __eInstVar53( Self, "CAPCOL", nCapCol, "N", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::nCapCol
|
|
|
|
METHOD capRow( nCapRow ) CLASS RADIOBUTTN
|
|
|
|
IF nCapRow != NIL
|
|
::nCapRow := __eInstVar53( Self, "CAPROW", nCapRow, "N", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::nCapRow
|
|
|
|
METHOD caption( cCaption ) CLASS RADIOBUTTN
|
|
|
|
IF cCaption != NIL
|
|
::cCaption := __eInstVar53( Self, "CAPTION", cCaption, "C", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::cCaption
|
|
|
|
METHOD col( nCol ) CLASS RADIOBUTTN
|
|
|
|
IF nCol != NIL
|
|
::nCol := __eInstVar53( Self, "COL", nCol, "N", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::nCol
|
|
|
|
METHOD colorSpec( cColorSpec ) CLASS RADIOBUTTN
|
|
|
|
IF cColorSpec != NIL
|
|
::cColorSpec := __eInstVar53( Self, "COLORSPEC", cColorSpec, "C", 1001,;
|
|
{|| !Empty( hb_ColorIndex( cColorSpec, 6 ) ) .AND. Empty( hb_ColorIndex( cColorSpec, 7 ) ) } )
|
|
ENDIF
|
|
|
|
RETURN ::cColorSpec
|
|
|
|
METHOD fBlock( bFBlock ) CLASS RADIOBUTTN
|
|
|
|
IF PCount() > 0
|
|
::bFBlock := iif( bFBlock == NIL, NIL, __eInstVar53( Self, "FBLOCK", bFBlock, "B", 1001 ) )
|
|
ENDIF
|
|
|
|
RETURN ::bFBlock
|
|
|
|
METHOD hasFocus() CLASS RADIOBUTTN
|
|
RETURN ::lHasFocus
|
|
|
|
METHOD row( nRow ) CLASS RADIOBUTTN
|
|
|
|
IF nRow != NIL
|
|
::nRow := __eInstVar53( Self, "ROW", nRow, "N", 1001 )
|
|
ENDIF
|
|
|
|
RETURN ::nRow
|
|
|
|
METHOD sBlock( bSBlock ) CLASS RADIOBUTTN
|
|
|
|
IF PCount() > 0
|
|
::bSBlock := iif( bSBlock == NIL, NIL, __eInstVar53( Self, "SBLOCK", bSBlock, "B", 1001 ) )
|
|
ENDIF
|
|
|
|
RETURN ::bSBlock
|
|
|
|
METHOD style( cStyle ) CLASS RADIOBUTTN
|
|
|
|
IF cStyle != NIL
|
|
::cStyle := __eInstVar53( Self, "STYLE", cStyle, "C", 1001, {|| Len( cStyle ) == 0 .OR. Len( cStyle ) == 4 } )
|
|
ENDIF
|
|
|
|
RETURN ::cStyle
|
|
|
|
METHOD New( nRow, nCol, cCaption, cData ) CLASS RADIOBUTTN
|
|
|
|
LOCAL cColor
|
|
|
|
IF !ISNUMBER( nRow ) .OR. ;
|
|
!ISNUMBER( nCol )
|
|
RETURN NIL
|
|
ENDIF
|
|
|
|
IF !ISCHARACTER( cCaption )
|
|
cCaption := ""
|
|
ENDIF
|
|
|
|
::nCapRow := nRow
|
|
::nCapCol := nCol + 3 + 1
|
|
::cCaption := cCaption
|
|
::nCol := nCol
|
|
::nRow := nRow
|
|
::cData := cData /* NOTE: Every type is allowed here to be fully compatible */
|
|
|
|
IF IsDefColor()
|
|
::cColorSpec := "W/N,W+/N,W+/N,N/W,W/N,W/N,W+/N"
|
|
ELSE
|
|
cColor := SetColor()
|
|
::cColorSpec := hb_ColorIndex( cColor, CLR_UNSELECTED ) + "," +;
|
|
hb_ColorIndex( cColor, CLR_UNSELECTED ) + "," +;
|
|
hb_ColorIndex( cColor, CLR_ENHANCED ) + "," +;
|
|
hb_ColorIndex( cColor, CLR_ENHANCED ) + "," +;
|
|
hb_ColorIndex( cColor, CLR_STANDARD ) + "," +;
|
|
hb_ColorIndex( cColor, CLR_STANDARD ) + "," +;
|
|
hb_ColorIndex( cColor, CLR_BACKGROUND )
|
|
ENDIF
|
|
|
|
RETURN Self
|
|
|
|
FUNCTION RadioButto( nRow, nCol, cCaption, cData ) /* NOTE: cData argument is undocumented */
|
|
RETURN HBRadioButton():New( nRow, nCol, cCaption, cData )
|
|
|
|
#ifdef HB_EXTENSION
|
|
|
|
FUNCTION RadioButton( nRow, nCol, cCaption, cData ) /* NOTE: cData argument is undocumented */
|
|
RETURN HBRadioButton():New( nRow, nCol, cCaption, cData )
|
|
|
|
#endif
|
|
|
|
#endif
|