TOOLDLG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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. // CToolDlg dialog
  14. class CToolDlg : public CDialog
  15. {
  16. // Construction
  17. public:
  18. CToolDlg(CWnd* pParent = NULL);   // standard constructor
  19. // Dialog Data
  20. //{{AFX_DATA(CToolDlg)
  21. enum { IDD = IDD_TOOLBAR };
  22. BOOL    m_bBrowse;
  23. BOOL    m_bDebug;
  24. BOOL    m_bEdit;
  25. BOOL    m_bMain;
  26. BOOL    m_bResource;
  27. int     m_nToolTips;
  28. BOOL    m_bPalette;
  29. int     m_nColumns;
  30. int     m_nColor;
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CToolDlg)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CToolDlg)
  42. // NOTE: the ClassWizard will add member functions here
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };