home *** CD-ROM | disk | FTP | other *** search
- // actiondi.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CActionDialog dialog
-
- class CDemoTableControl;
-
- class CActionDialog : public CDialog
- {
- // Construction
- public:
- CActionDialog(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CActionDialog)
- enum { IDD = IDD_ACTIONS };
- BOOL m_EditCells;
- BOOL m_ControlSelect;
- BOOL m_EditColumnLabels;
- BOOL m_EditRowLabels;
- BOOL m_ExtendedSelect;
- BOOL m_SelectAll;
- BOOL m_SelectCells;
- BOOL m_SelectColumns;
- BOOL m_SelectRows;
- BOOL m_ShiftSelect;
- BOOL m_ResizeColumns;
- BOOL m_ResizeRows;
- //}}AFX_DATA
-
-
- void InitializeFrom( CDemoTableControl * aCKTBL );
- void ApplyData();
-
-
- // Implementation
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
-
- // Generated message map functions
- //{{AFX_MSG(CActionDialog)
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
-
- CDemoTableControl * cktbl;
- };
-