MainSheet.h
上传用户:apjinmao
上传日期:2007-01-02
资源大小:96k
文件大小:2k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. // MainSheet.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CMainSheet property sheet
  5. $$BEGINLOOP(NUM_PAGES)
  6. #include "$$PAGE_FILE$$.h"
  7. $$ENDLOOP //NUM_PAGES
  8. $$IF(SEND_TO_TASKBAR)
  9. const UINT WM_ICONNOTIFY = ::RegisterWindowMessage (_T ("WM_ICONNOTIFY"));
  10. $$ENDIF //SEND_TO_TASKBAR
  11. class CMainSheet : public CPropertySheet
  12. {
  13. // Construction
  14. public:
  15. CMainSheet();
  16. // Attributes
  17. public:
  18. $$BEGINLOOP(NUM_PAGES)
  19. $$PAGE_CLASS$$ $$PAGE_VAR$$;
  20. $$ENDLOOP //NUM_PAGES
  21. // Operations
  22. public:
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CMainSheet)
  26. protected:
  27. virtual void PostNcDestroy();
  28. virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CMainSheet();
  33. $$IF(TOOLTIPS)
  34. virtual BOOL PreTranslateMessage (MSG* pMsg);
  35. $$ENDIF //TOOLTIPS
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CMainSheet)
  39. virtual BOOL OnInitDialog();
  40. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  41. afx_msg void OnPaint();
  42. afx_msg HCURSOR OnQueryDragIcon();
  43. $$IF(ABOUT_BOX)
  44. afx_msg void OnAboutbox();
  45. $$ENDIF //ABOUT_BOX
  46. $$IF(SEND_TO_TASKBAR)
  47. afx_msg void OnSize(UINT nType, int cx, int cy);
  48. afx_msg LRESULT OnIconNotify(WPARAM wParam, LPARAM lParam);
  49. afx_msg void OnIconShutdown();
  50. afx_msg void OnIconRestore();
  51. $$ENDIF //SEND_TO_TASKBAR
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. private:
  55. $$IF(BITMAP_PAGES)
  56. CImageList m_imgTabBmps;
  57. $$ENDIF //BITMAP_PAGES
  58. HICON m_hIcon;
  59. $$IF(TOOLTIPS)
  60. protected:
  61. CToolTipCtrl m_tooltip;
  62. $$ENDIF //TOOLTIPS
  63. };
  64. /////////////////////////////////////////////////////////////////////////////