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

  1. // labeldia.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CLabelDialog dialog
  6.               
  7. class CDemoTableControl; 
  8.  
  9. class CLabelDialog : public CDialog
  10. {
  11. // Construction
  12. public:
  13.     CLabelDialog(CWnd* pParent = NULL);    // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CLabelDialog)
  17.     enum { IDD = IDC_OPTIONS_LABELS };
  18.     CComboBox    m_RowLabels;
  19.     CComboBox    m_ColLabels;
  20.     BOOL    m_ColLabel3D;
  21.     BOOL    m_RowLabel3D;
  22.     //}}AFX_DATA
  23.                   
  24.     void    InitializeFrom( CDemoTableControl * aCKTBL );    
  25.     void    ApplyData();
  26.                   
  27.                   
  28. // Implementation
  29. protected:
  30.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31.  
  32.     // Generated message map functions
  33.     //{{AFX_MSG(CLabelDialog)
  34.     virtual void OnOK();
  35.     afx_msg void OnApply();
  36.     virtual BOOL OnInitDialog();
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP() 
  39.     
  40.                          
  41.     CDemoTableControl * cktbl;
  42. };
  43.