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

对话框与窗口

开发平台:

Visual C++

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