XTPCustomizeToolbarsPage.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:4k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // XTPCustomizeToolbarsPage.h : interface for the CXTPCustomizeToolbarsPage class.
  2. //
  3. // This file is a part of the XTREME COMMANDBARS MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. //{{AFX_CODEJOCK_PRIVATE
  21. #if !defined(__XTPCUSTOMIZETOOLBARSPAGE_H__)
  22. #define __XTPCUSTOMIZETOOLBARSPAGE_H__
  23. //}}AFX_CODEJOCK_PRIVATE
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. #include "Common/XTPWinThemeWrapper.h"
  28. class CXTPCustomizeSheet;
  29. //{{AFX_CODEJOCK_PRIVATE
  30. class CXTPCustomizeToolbarsPageCheckListBox : public CCheckListBox
  31. {
  32. public:
  33. CXTPCustomizeToolbarsPageCheckListBox();
  34. ~CXTPCustomizeToolbarsPageCheckListBox();
  35. protected:
  36. BOOL OnChildNotify(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pResult);
  37. void PreDrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  38. void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  39. void PreSubclassWindow();
  40. LRESULT OnSetFont(WPARAM, LPARAM);
  41. DECLARE_MESSAGE_MAP()
  42. protected:
  43. CXTPWinThemeWrapper m_themeHelper;
  44. CSize m_sizeCheck;
  45. };
  46. //}}AFX_CODEJOCK_PRIVATE
  47. //===========================================================================
  48. // Summary:
  49. //     CXTPCustomizeToolbarsPage is a CPropertyPage derived class.
  50. //     It represents the Toolbars page of the Customize dialog.
  51. //===========================================================================
  52. class _XTP_EXT_CLASS CXTPCustomizeToolbarsPage : public CPropertyPage
  53. {
  54. //{{AFX_CODEJOCK_PRIVATE
  55. DECLARE_DYNCREATE(CXTPCustomizeToolbarsPage)
  56. //}}AFX_CODEJOCK_PRIVATE
  57. public:
  58. //-----------------------------------------------------------------------
  59. // Summary:
  60. //     Constructs a CXTPCustomizeToolbarsPage object
  61. // Parameters:
  62. //     pSheet - Points to a CXTPCustomizeSheet object that this page
  63. //     belongs to.
  64. //-----------------------------------------------------------------------
  65. CXTPCustomizeToolbarsPage(CXTPCustomizeSheet* pSheet = NULL);
  66. //-----------------------------------------------------------------------
  67. // Summary:
  68. //     Destroys a CXTPCustomizeToolbarsPage object, handles cleanup
  69. //     and deallocation.
  70. //-----------------------------------------------------------------------
  71. ~CXTPCustomizeToolbarsPage();
  72. protected:
  73. //{{AFX_CODEJOCK_PRIVATE
  74. DECLARE_MESSAGE_MAP()
  75. //{{AFX_VIRTUAL(CXTPCustomizeToolbarsPage)
  76. virtual void DoDataExchange(CDataExchange* pDX);
  77. BOOL OnInitDialog();
  78. //}}AFX_VIRTUAL
  79. //{{AFX_MSG(CXTPCustomizeToolbarsPage)
  80. afx_msg void OnSelectionChanged();
  81. afx_msg void OnChkChange();
  82. afx_msg void OnNewToolbar();
  83. afx_msg void OnRenameToolbar();
  84. afx_msg void OnDeleteToolbar();
  85. afx_msg void OnResetToolbar();
  86. //}}AFX_MSG
  87. //}}AFX_CODEJOCK_PRIVATE
  88. private:
  89. void RefreshToolbarsList();
  90. public:
  91. enum
  92. {
  93. IDD = XTP_IDD_PAGE_TOOLBARS     // Property page identifier
  94. };
  95. CXTPCustomizeSheet* m_pSheet;       // Parent property sheet
  96. CXTPCustomizeToolbarsPageCheckListBox m_checkList;  // Toolbars list box
  97. CButton m_btnReset;                 // Reset button
  98. CButton m_btnRename;                // Rename button
  99. CButton m_btnDelete;                // Delete button
  100. CButton m_btnNew;                   // New button
  101. };
  102. #endif // !defined(__XTPCUSTOMIZETOOLBARSPAGE_H__)