home *** CD-ROM | disk | FTP | other *** search
- // DemoTbl.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CDemoTableControl window
-
- #include "cktblctr.h"
-
- class CDemoTableControl : public CCKTBLControl
- {
- DECLARE_DYNAMIC( CDemoTableControl )
-
- // Construction
- public:
- CDemoTableControl();
- ~CDemoTableControl();
-
- // Attributes
- public:
-
- // Overridables (override to customize behaviour)
- // see comments in CKTBLCtrl.cpp
-
-
- virtual void OnHScrollBegin();
- virtual void OnHScrollEnd();
- virtual void OnVScrollBegin();
- virtual void OnVScrollEnd();
-
-
- // Implementation
- public:
-
- DECLARE_MESSAGE_MAP()
-
- // internal state
- public:
- BOOL m_GrowHorizontal;
- BOOL m_GrowVertical;
-
-
- };
-
- /////////////////////////////////////////////////////////////////////////////
-