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 >
Text File  |  1994-06-04  |  950b  |  36 lines

  1. // Warning: Under construction. Not available yet!
  2.  
  3. #include "FiveWin.ch"
  4.  
  5. //----------------------------------------------------------------------------//
  6.  
  7. CLASS TWColumn
  8.  
  9.    DATA   baColor, bData
  10.    DATA   cHeader, cFooter, cPicture
  11.    DATA   nWidth, nStyle
  12.    DATA   oFont
  13.  
  14.    METHOD New( bShow, cPicture, cTitle, oFont, nColor, cBmpFile,;
  15.                nWidth ) CONSTRUCTOR
  16.  
  17.    METHOD Paint( hDC, oRect, lFocus )
  18.  
  19. ENDCLASS
  20.  
  21. //----------------------------------------------------------------------------//
  22.  
  23. METHOD New( bShow, cPicture, cTitle, oFont, nColor, cBmpFile, nWidth ) ;
  24.                                                                CLASS TWColumn
  25.    ::bShow    = bShow
  26.    ::cPicture = cPicture
  27.    ::cTitle   = cTitle
  28.    ::nColor   = nColor
  29.    ::nWidth   = nWidth
  30.    ::oBmpFile = oBmpFile
  31.    ::oFont    = oFont
  32.  
  33. return
  34.  
  35. //----------------------------------------------------------------------------//
  36.