home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / ttips2 / toolopti.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-12  |  770 b   |  34 lines

  1. // toolopti.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CToolOptions dialog
  6.  
  7. class CToolOptions : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CToolOptions(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CToolOptions)
  15.     enum { IDD = IDD_TOOLBAR };
  16.     BOOL    m_Popup;
  17.     BOOL    m_StatusLine;
  18.     BOOL    m_ToolBar;
  19.     UINT    m_Wait;
  20.     int        m_BoxStyle;
  21.     BOOL    m_SystemFont;
  22.     //}}AFX_DATA
  23.  
  24. // Implementation
  25. protected:
  26.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  27.     virtual BOOL OnInitDialog();
  28.     // Generated message map functions
  29.     //{{AFX_MSG(CToolOptions)
  30.         // NOTE: the ClassWizard will add member functions here
  31.     //}}AFX_MSG
  32.     DECLARE_MESSAGE_MAP()
  33. };
  34.