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

对话框与窗口

开发平台:

Visual C++

  1. // StandardGridPage.cpp : implementation 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. #include "stdafx.h"
  21. #include "OwnerDraw.h"
  22. #include "StandardGridPage.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CStandardGridPage property page
  30. IMPLEMENT_DYNCREATE(CStandardGridPage, CPropertyPage)
  31. CStandardGridPage::CStandardGridPage() : CPropertyPage(CStandardGridPage::IDD)
  32. {
  33. //{{AFX_DATA_INIT(CStandardGridPage)
  34. m_bCustomColors = FALSE;
  35. //}}AFX_DATA_INIT
  36. }
  37. CStandardGridPage::~CStandardGridPage()
  38. {
  39. }
  40. void CStandardGridPage::DoDataExchange(CDataExchange* pDX)
  41. {
  42. CPropertyPage::DoDataExchange(pDX);
  43. //{{AFX_DATA_MAP(CStandardGridPage)
  44. DDX_Check(pDX, IDC_CHK_CUSTOMCOLORS, m_bCustomColors);
  45. DDX_Control(pDX, IDC_PROPERTY_GRID, m_wndPropertyGrid);
  46. //}}AFX_DATA_MAP
  47. }
  48. BEGIN_MESSAGE_MAP(CStandardGridPage, CPropertyPage)
  49. //{{AFX_MSG_MAP(CStandardGridPage)
  50. ON_BN_CLICKED(IDC_CHK_CUSTOMCOLORS, OnClickedCustomcolors)
  51. //}}AFX_MSG_MAP
  52. END_MESSAGE_MAP()
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CStandardGridPage message handlers
  55. BOOL CStandardGridPage::OnInitDialog()
  56. {
  57. CPropertyPage::OnInitDialog();
  58. if ( m_wndPropertyGrid.GetSafeHwnd())
  59. {
  60. LOGFONT lf;
  61. GetFont()->GetLogFont( &lf );
  62. // create document settings category.
  63. CXTPPropertyGridItem* pSettings        = m_wndPropertyGrid.AddCategory(_T("Document Settings"));
  64. // add child items to category.
  65. CXTPPropertyGridItem* pItemSaveOnClose = pSettings->AddChildItem(new CXTPPropertyGridItemBool(_T("SaveOnClose"), TRUE));
  66. pSettings->AddChildItem(new CXTPPropertyGridItemFont(_T("WindowFont"), lf));
  67. pSettings->AddChildItem(new CXTPPropertyGridItemSize(_T("WindowSize"), CSize(100, 100)));
  68. pSettings->Expand();
  69. pItemSaveOnClose->Select();
  70. // create global settings category.
  71. CXTPPropertyGridItem* pGlobals      = m_wndPropertyGrid.AddCategory(_T("Global Settings"));
  72. // add child items to category.
  73. CXTPPropertyGridItem* pItemGreeting = pGlobals->AddChildItem(new CXTPPropertyGridItem(_T("Greeting Text"), _T("Welcome to your application!")));
  74. pGlobals->AddChildItem(new CXTPPropertyGridItemNumber(_T("ItemsInMRUList"), 4));
  75. CXTPPropertyGridItem* pItemRate     = pGlobals->AddChildItem(new CXTPPropertyGridItemNumber(_T("MaxRepeatRate"), 10));
  76. pGlobals->AddChildItem(new CXTPPropertyGridItemColor(_T("ToolbarColor"), RGB(255, 192,128)));
  77. pItemGreeting->SetReadOnly(TRUE);
  78. pItemRate->SetDescription(_T("The rate in milliseconds that the text will repeat."));
  79. // create version category.
  80. CXTPPropertyGridItem* pVersion      = m_wndPropertyGrid.AddCategory(_T("Version"));
  81. // add child items to category.
  82. CXTPPropertyGridItem* pItemVersion  = pVersion->AddChildItem(new CXTPPropertyGridItem(_T("AppVersion"), _T("1.0")));
  83. pItemVersion->SetReadOnly(TRUE);
  84. pVersion->Expand();
  85. }
  86. return TRUE;  // return TRUE unless you set the focus to a control
  87.               // EXCEPTION: OCX Property Pages should return FALSE
  88. }
  89. void CStandardGridPage::OnClickedCustomcolors()
  90. {
  91. UpdateData();
  92. if (m_bCustomColors)
  93. {
  94. m_wndPropertyGrid.SetCustomColors( 0xC8C8C8, 0, 0xB6D2BD, 0xF7F3E9, 0);
  95. }
  96. else m_wndPropertyGrid.SetStandardColors();
  97. }