OptionsSheet.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #if !defined(AFX_OPTIONSSHEET_H__D8A13849_DBC6_4CD6_A981_E572ECDC2E94__INCLUDED_)
  2. #define AFX_OPTIONSSHEET_H__D8A13849_DBC6_4CD6_A981_E572ECDC2E94__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // OptionsSheet.h : header file
  7. //
  8. //#include "ShowTaskBarIcon.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // COptionsSheet
  11. class COptionsSheet : public CPropertySheet
  12. {
  13. DECLARE_DYNAMIC(COptionsSheet)
  14. // Construction
  15. public:
  16. COptionsSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  17. void SetNotifyWnd(HWND hWnd);
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. BOOL m_themeChanged;
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(COptionsSheet)
  26. public:
  27. virtual BOOL OnInitDialog();
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~COptionsSheet();
  32. // Generated message map functions
  33. protected:
  34. HWND m_hWndParent;
  35. CPropertyPage *m_pKeyBoardOptions;
  36. CPropertyPage *m_pGeneralOptions;
  37. CPropertyPage *m_pQuickPasteOptions;
  38. CPropertyPage *m_pUtilites;
  39. CPropertyPage *m_pStats;
  40. CPropertyPage *m_pTypes;
  41. CPropertyPage *m_pAbout;
  42. CPropertyPage *m_pFriends;
  43. CPropertyPage *m_pCopyBuffers;
  44. CPropertyPage *m_pQuickPasteShortCuts;
  45. //CShowTaskBarIcon m_taskBar;
  46. //{{AFX_MSG(COptionsSheet)
  47. // NOTE - the ClassWizard will add and remove member functions here.
  48. afx_msg void OnDestroy();
  49. afx_msg void OnNcDestroy();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_OPTIONSSHEET_H__D8A13849_DBC6_4CD6_A981_E572ECDC2E94__INCLUDED_)