home *** CD-ROM | disk | FTP | other *** search
- // demoopt.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CDemoOptionsDialog dialog
-
- class CDemoTableControl;
-
- class CDemoOptionsDialog : public CDialog
- {
- // Construction
- public:
- CDemoOptionsDialog(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CDemoOptionsDialog)
- enum { IDD = IDD_OPTIONS };
- UINT m_Columns;
- BOOL m_GrowHorizontal;
- BOOL m_GrowVertical;
- UINT m_Rows;
- //}}AFX_DATA
-
- void InitializeFrom( CDemoTableControl * aCKTBL );
- void ApplyData();
-
- // Implementation
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
-
- // Generated message map functions
- //{{AFX_MSG(CDemoOptionsDialog)
- afx_msg void OnApply();
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- CDemoTableControl * cktbl;
- };
-