home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / docktool / tooldlg.h < prev   
C/C++ Source or Header  |  1998-03-26  |  1KB  |  53 lines

  1. // tooldlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CToolDlg dialog
  15.  
  16. class CToolDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CToolDlg(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CToolDlg)
  24.     enum { IDD = IDD_TOOLBAR };
  25.     BOOL    m_bBrowse;
  26.     BOOL    m_bDebug;
  27.     BOOL    m_bEdit;
  28.     BOOL    m_bMain;
  29.     BOOL    m_bResource;
  30.     int     m_nToolTips;
  31.     BOOL    m_bPalette;
  32.     int     m_nColumns;
  33.     int     m_nColor;
  34.     //}}AFX_DATA
  35.  
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CToolDlg)
  40.     protected:
  41.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45. protected:
  46.  
  47.     // Generated message map functions
  48.     //{{AFX_MSG(CToolDlg)
  49.         // NOTE: the ClassWizard will add member functions here
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.