home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / CKTBL / SAMPLES / MFCDEMO / DEMOTBL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-22  |  990 b   |  45 lines

  1. // DemoTbl.h : header file
  2. //
  3.         
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CDemoTableControl window
  6.      
  7. #include "cktblctr.h"     
  8.                
  9. class CDemoTableControl : public CCKTBLControl
  10. {
  11.     DECLARE_DYNAMIC( CDemoTableControl )
  12.     
  13. // Construction
  14. public:
  15.     CDemoTableControl();                                          
  16.     ~CDemoTableControl();       
  17.     
  18. // Attributes
  19. public:
  20.        
  21. // Overridables (override to customize behaviour)
  22. // see comments in CKTBLCtrl.cpp 
  23.                   
  24.                   
  25.     virtual void OnHScrollBegin();
  26.     virtual void OnHScrollEnd();
  27.     virtual void OnVScrollBegin();
  28.     virtual void OnVScrollEnd();
  29.  
  30.  
  31. // Implementation                 
  32. public:   
  33.  
  34.     DECLARE_MESSAGE_MAP()   
  35.     
  36. // internal state    
  37. public:
  38.     BOOL    m_GrowHorizontal;
  39.     BOOL    m_GrowVertical;
  40.         
  41.                                      
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.