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

Windows编程

开发平台:

Visual C++

  1. // MySheet.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. // CMyPropertySheet
  14. class CMyPropertySheet : public CPropertySheet
  15. {
  16. DECLARE_DYNAMIC(CMyPropertySheet)
  17. // Construction
  18. public:
  19. CMyPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL,
  20. UINT iSelectPage = 0);
  21. CMyPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL,
  22. UINT iSelectPage = 0);
  23. // Attributes
  24. public:
  25. CButton*        m_pbtnDatabase;
  26. CButton*        m_pchkCursorLib;
  27. CButton*        m_pbtnAbout;
  28. BOOL            m_bCursorLib;
  29. // Operations
  30. public:
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CMyPropertySheet)
  34. public:
  35. virtual BOOL OnInitDialog();
  36. protected:
  37. virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. public:
  41. virtual ~CMyPropertySheet();
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CMyPropertySheet)
  45. afx_msg void OnPaint();
  46. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  47. afx_msg HCURSOR OnQueryDragIcon();
  48. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  49. afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////