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

对话框与窗口

开发平台:

Visual C++

  1. // SkinSDISample.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "SkinSDISample.h"
  5. #include "MainFrm.h"
  6. #include "SkinSDISampleDoc.h"
  7. #include "SkinSDISampleView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CSkinSDISampleApp
  15. BEGIN_MESSAGE_MAP(CSkinSDISampleApp, CWinApp)
  16. //{{AFX_MSG_MAP(CSkinSDISampleApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. // Standard print setup command
  25. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CSkinSDISampleApp construction
  29. CSkinSDISampleApp::CSkinSDISampleApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CSkinSDISampleApp object
  36. CSkinSDISampleApp theApp;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CSkinSDISampleApp initialization
  39. BOOL CSkinSDISampleApp::InitInstance()
  40. {
  41. // Initialize OLE libraries
  42. if (!AfxOleInit())
  43. {
  44. AfxMessageBox(IDP_OLE_INIT_FAILED);
  45. return FALSE;
  46. }
  47. AfxEnableControlContainer();
  48. CXTPWinDwmWrapper().SetProcessDPIAware();
  49. AfxInitRichEdit();
  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.  
  62. // Change the registry key under which our settings are stored.
  63. // TODO: You should modify this string to be something appropriate
  64. // such as the name of your company or organization.
  65. SetRegistryKey(_T("Codejock Software Sample Applications"));
  66. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  67. // Register the application's document templates.  Document templates
  68. //  serve as the connection between documents, frame windows and views.
  69. CSingleDocTemplate* pDocTemplate;
  70. pDocTemplate = new CSingleDocTemplate(
  71. IDR_MAINFRAME,
  72. RUNTIME_CLASS(CSkinSDISampleDoc),
  73. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  74. RUNTIME_CLASS(CSkinSDISampleView));
  75. pDocTemplate->SetContainerInfo(IDR_CNTR_INPLACE);
  76. AddDocTemplate(pDocTemplate);
  77. // Parse command line for standard shell commands, DDE, file open
  78. CCommandLineInfo cmdInfo;
  79. ParseCommandLine(cmdInfo);
  80. // Dispatch commands specified on the command line
  81. if (!ProcessShellCommand(cmdInfo))
  82. return FALSE;
  83. // The one and only window has been initialized, so show and update it.
  84. m_pMainWnd->ShowWindow(SW_SHOW);
  85. m_pMainWnd->UpdateWindow();
  86. return TRUE;
  87. }
  88. // App command to run the dialog
  89. void CSkinSDISampleApp::OnAppAbout()
  90. {
  91. CAboutDlg aboutDlg;
  92. aboutDlg.DoModal();
  93. }
  94. /////////////////////////////////////////////////////////////////////////////
  95. // CSkinSDISampleApp message handlers