home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SOURCE
/
CLASSES
/
WCOLUMN.PRG
< prev
next >
Wrap
Text File
|
1994-06-04
|
950b
|
36 lines
// Warning: Under construction. Not available yet!
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
CLASS TWColumn
DATA baColor, bData
DATA cHeader, cFooter, cPicture
DATA nWidth, nStyle
DATA oFont
METHOD New( bShow, cPicture, cTitle, oFont, nColor, cBmpFile,;
nWidth ) CONSTRUCTOR
METHOD Paint( hDC, oRect, lFocus )
ENDCLASS
//----------------------------------------------------------------------------//
METHOD New( bShow, cPicture, cTitle, oFont, nColor, cBmpFile, nWidth ) ;
CLASS TWColumn
::bShow = bShow
::cPicture = cPicture
::cTitle = cTitle
::nColor = nColor
::nWidth = nWidth
::oBmpFile = oBmpFile
::oFont = oFont
return
//----------------------------------------------------------------------------//