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

对话框与窗口

开发平台:

Visual C++

  1. // PropertyGridDlg.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO 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. #if !defined(AFX_PropertyGridDLG_H__03B48B0F_47BD_4632_B28B_BCE982A01581__INCLUDED_)
  21. #define AFX_PropertyGridDLG_H__03B48B0F_47BD_4632_B28B_BCE982A01581__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CPropertyGridDlg dialog
  27. //#include "PropertyGridBox.h"
  28. #define CPropertyGridDlgBase CXTResizeDialog
  29. class CPropertyGridDlg : public CPropertyGridDlgBase
  30. {
  31. // Construction
  32. public:
  33. CPropertyGridDlg(CWnd* pParent = NULL); // standard constructor
  34. // Dialog Data
  35. //{{AFX_DATA(CPropertyGridDlg)
  36. enum { IDD = IDD_PROPERTYGRID_DIALOG };
  37. CComboBox   m_cmbTheme;
  38. CStatic m_wndPlaceHolder;
  39. CComboBox   m_cmbBorder;
  40. int     m_nTheme;
  41. BOOL    m_bTabItems;
  42. //}}AFX_DATA
  43. // ClassWizard generated virtual function overrides
  44. //{{AFX_VIRTUAL(CPropertyGridDlg)
  45. protected:
  46. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. protected:
  50. HICON    m_hIcon;
  51. CXTPPropertyGrid m_wndPropertyGrid;
  52. BOOL m_bCollapse;
  53. BOOL m_bDoubleFont;
  54. BOOL m_bWinXPTheme;
  55. BOOL m_bRightToLeft;
  56. BOOL m_bHelpVisible;
  57. BOOL m_bToolBarVisible;
  58. BOOL m_bVerbsVisible;
  59. int m_nSort;
  60. BOOL m_bCustomColors;
  61. BOOL m_bHighlightChanged;
  62. BOOL m_bShowButtons;
  63. CXTResizeGroupBox m_groupAppearance;
  64. CXTResizeGroupBox m_groupSort;
  65. CXTResizeGroupBox m_groupColor;
  66. protected:
  67. virtual void OnOK();
  68. // Generated message map functions
  69. //{{AFX_MSG(CPropertyGridDlg)
  70. virtual BOOL OnInitDialog();
  71. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  72. afx_msg void OnPaint();
  73. afx_msg HCURSOR OnQueryDragIcon();
  74. afx_msg void OnDestroy();
  75. afx_msg void OnButtonSwitchstate();
  76. afx_msg void OnSelchangeComboTheme();
  77. afx_msg void OnChkTabitems();
  78. //}}AFX_MSG
  79. afx_msg void OnClickedChkToolbar();
  80. afx_msg void OnClickedChkHelp();
  81. afx_msg void OnClickedSort();
  82. afx_msg void OnClickedChkVerbs();
  83. afx_msg void OnClickedChkDouble();
  84. afx_msg void OnClickedWinXPTheme();
  85. afx_msg LRESULT OnGridNotify(WPARAM, LPARAM);
  86. afx_msg void OnClickedCustomcolors();
  87. afx_msg void OnClickedHighlightChanged();
  88. afx_msg void OnSelchangeComboBorder();
  89. afx_msg void OnClickShowButtons();
  90. afx_msg void OnClickRightToLeft();
  91. DECLARE_MESSAGE_MAP()
  92. };
  93. //{{AFX_INSERT_LOCATION}}
  94. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  95. #endif // !defined(AFX_PropertyGridDLG_H__03B48B0F_47BD_4632_B28B_BCE982A01581__INCLUDED_)