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

对话框与窗口

开发平台:

Visual C++

  1. // OwnerDraw.cpp : Defines the class behaviors for the application.
  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 "DialogSheet.h"
  23. #include "StandardGridPage.h"
  24. #include "CoolGridPage.h"
  25. #include "SimpleGridPage.h"
  26. #include "DelphiGridPage.h"
  27. #ifdef _DEBUG
  28. #define new DEBUG_NEW
  29. #undef THIS_FILE
  30. static char THIS_FILE[] = __FILE__;
  31. #endif
  32. /////////////////////////////////////////////////////////////////////////////
  33. // COwnerDrawApp
  34. BEGIN_MESSAGE_MAP(COwnerDrawApp, CWinApp)
  35. //{{AFX_MSG_MAP(COwnerDrawApp)
  36. // NOTE - the ClassWizard will add and remove mapping macros here.
  37. //    DO NOT EDIT what you see in these blocks of generated code!
  38. //}}AFX_MSG
  39. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  40. END_MESSAGE_MAP()
  41. /////////////////////////////////////////////////////////////////////////////
  42. // COwnerDrawApp construction
  43. COwnerDrawApp::COwnerDrawApp()
  44. {
  45. // TODO: add construction code here,
  46. // Place all significant initialization in InitInstance
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // The one and only COwnerDrawApp object
  50. COwnerDrawApp theApp;
  51. /////////////////////////////////////////////////////////////////////////////
  52. // COwnerDrawApp initialization
  53. BOOL COwnerDrawApp::InitInstance()
  54. {
  55. AfxEnableControlContainer();
  56. CXTPWinDwmWrapper().SetProcessDPIAware();
  57. // Standard initialization
  58. // If you are not using these features and wish to reduce the size
  59. //  of your final executable, you should remove from the following
  60. //  the specific initialization routines you do not need.
  61. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  62. #ifdef _AFXDLL
  63. Enable3dControls();         // Call this when using MFC in a shared DLL
  64. #else
  65. Enable3dControlsStatic();   // Call this when linking to MFC statically
  66. #endif
  67. #endif // MFC 6.0 or earlier
  68. //COwnerDrawDlg dlg;
  69. CDialogSheet dlg(_T("Codejock Owner Draw Property Grid Sample"));
  70. dlg.m_psh.dwFlags |= PSH_NOAPPLYNOW;
  71. dlg.m_psh.dwFlags &= ~PSH_HASHELP;
  72. CStandardGridPage pageStandard;
  73. pageStandard.m_psp.dwFlags &= ~PSP_HASHELP;
  74. dlg.AddPage(&pageStandard);
  75. CCoolGridPage pageIcons;
  76. pageIcons.m_psp.dwFlags &= ~PSP_HASHELP;
  77. dlg.AddPage(&pageIcons);
  78. CSimpleGridPage pageSimple;
  79. pageSimple.m_psp.dwFlags &= ~PSP_HASHELP;
  80. dlg.AddPage(&pageSimple);
  81. CDelphiGridPage pageDelphi;
  82. pageDelphi.m_psp.dwFlags &= ~PSP_HASHELP;
  83. dlg.AddPage(&pageDelphi);
  84. m_pMainWnd = &dlg;
  85. int nResponse = (int)dlg.DoModal();
  86. if (nResponse == IDOK)
  87. {
  88. // TODO: Place code here to handle when the dialog is
  89. //  dismissed with OK
  90. }
  91. else if (nResponse == IDCANCEL)
  92. {
  93. // TODO: Place code here to handle when the dialog is
  94. //  dismissed with Cancel
  95. }
  96. // Since the dialog has been closed, return FALSE so that we exit the
  97. //  application, rather than start the application's message pump.
  98. return FALSE;
  99. }