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

对话框与窗口

开发平台:

Visual C++

  1. // CustomThemes.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 "CustomThemes.h"
  22. #include "MainFrm.h"
  23. #include "ChildFrm.h"
  24. #include "CustomThemesDoc.h"
  25. #include "CustomThemesView.h"
  26. #include "AboutDlg.h"
  27. #ifdef _DEBUG
  28. #define new DEBUG_NEW
  29. #undef THIS_FILE
  30. static char THIS_FILE[] = __FILE__;
  31. #endif
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CCustomThemesApp
  34. BEGIN_MESSAGE_MAP(CCustomThemesApp, CWinApp)
  35. //{{AFX_MSG_MAP(CCustomThemesApp)
  36. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  37. // NOTE - the ClassWizard will add and remove mapping macros here.
  38. //    DO NOT EDIT what you see in these blocks of generated code!
  39. //}}AFX_MSG_MAP
  40. // Standard file based document commands
  41. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  42. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  43. // Standard print setup command
  44. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CCustomThemesApp construction
  48. CCustomThemesApp::CCustomThemesApp()
  49. {
  50. // TODO: add construction code here,
  51. // Place all significant initialization in InitInstance
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // The one and only CCustomThemesApp object
  55. CCustomThemesApp theApp;
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CCustomThemesApp initialization
  58. BOOL CCustomThemesApp::InitInstance()
  59. {
  60. AfxEnableControlContainer();
  61. CXTPWinDwmWrapper().SetProcessDPIAware();
  62. // Standard initialization
  63. // If you are not using these features and wish to reduce the size
  64. //  of your final executable, you should remove from the following
  65. //  the specific initialization routines you do not need.
  66. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  67. #ifdef _AFXDLL
  68. Enable3dControls();         // Call this when using MFC in a shared DLL
  69. #else
  70. Enable3dControlsStatic();   // Call this when linking to MFC statically
  71. #endif
  72. #endif // MFC 6.0 or earlier
  73. // Change the registry key under which our settings are stored.
  74. // TODO: You should modify this string to be something appropriate
  75. // such as the name of your company or organization.
  76. SetRegistryKey(_T("Codejock Software Sample Applications"));
  77. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  78. // Register the application's document templates.  Document templates
  79. //  serve as the connection between documents, frame windows and views.
  80. m_pDocTemplate = new CMultiDocTemplate(
  81. IDR_CUSTOMTYPE,
  82. RUNTIME_CLASS(CCustomThemesDoc),
  83. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  84. RUNTIME_CLASS(CCustomThemesView));
  85. AddDocTemplate(m_pDocTemplate);
  86. // create main MDI Frame window
  87. CMainFrame* pMainFrame = new CMainFrame;
  88. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  89. return FALSE;
  90. m_pMainWnd = pMainFrame;
  91. // Parse command line for standard shell commands, DDE, file open
  92. CCommandLineInfo cmdInfo;
  93. ParseCommandLine(cmdInfo);
  94. // Dispatch commands specified on the command line
  95. if (!ProcessShellCommand(cmdInfo))
  96. return FALSE;
  97. // The main window has been initialized, so show and update it.
  98. pMainFrame->ShowWindow(m_nCmdShow);
  99. pMainFrame->UpdateWindow();
  100. return TRUE;
  101. }
  102. // App command to run the dialog
  103. void CCustomThemesApp::OnAppAbout()
  104. {
  105. CAboutDlg dlgAbout;
  106. dlgAbout.DoModal();
  107. }
  108. /////////////////////////////////////////////////////////////////////////////
  109. // CCustomThemesApp message handlers