home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / CKTBL / SAMPLES / MFCDEMO / ACTIONDI.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-06  |  1.1 KB  |  50 lines

  1. // actiondi.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CActionDialog dialog
  6.  
  7. class CDemoTableControl; 
  8.    
  9. class CActionDialog : public CDialog
  10. {
  11. // Construction
  12. public:
  13.     CActionDialog(CWnd* pParent = NULL);    // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CActionDialog)
  17.     enum { IDD = IDD_ACTIONS };
  18.     BOOL    m_EditCells;
  19.     BOOL    m_ControlSelect;
  20.     BOOL    m_EditColumnLabels;
  21.     BOOL    m_EditRowLabels;
  22.     BOOL    m_ExtendedSelect;
  23.     BOOL    m_SelectAll;
  24.     BOOL    m_SelectCells;
  25.     BOOL    m_SelectColumns;
  26.     BOOL    m_SelectRows;
  27.     BOOL    m_ShiftSelect;
  28.     BOOL    m_ResizeColumns;
  29.     BOOL    m_ResizeRows;
  30.     //}}AFX_DATA
  31.                    
  32.                    
  33.       void    InitializeFrom( CDemoTableControl * aCKTBL );    
  34.     void    ApplyData();
  35.                  
  36.                    
  37. // Implementation
  38. protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CActionDialog)
  43.     virtual void OnOK();
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()   
  46.     
  47.     
  48.     CDemoTableControl * cktbl;
  49. };
  50.