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

对话框与窗口

开发平台:

Visual C++

  1. // ActionsSample.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ActionsSample.h"
  5. #include "MainFrm.h"
  6. #include "ActionsSampleDoc.h"
  7. #include "ActionsSampleView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CActionsSampleApp
  15. BEGIN_MESSAGE_MAP(CActionsSampleApp, CWinApp)
  16. //{{AFX_MSG_MAP(CActionsSampleApp)
  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. // CActionsSampleApp construction
  29. CActionsSampleApp::CActionsSampleApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CActionsSampleApp object
  36. CActionsSampleApp theApp;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CActionsSampleApp initialization
  39. BOOL CActionsSampleApp::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. // Standard initialization
  50. // If you are not using these features and wish to reduce the size
  51. //  of your final executable, you should remove from the following
  52. //  the specific initialization routines you do not need.
  53. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  54. #ifdef _AFXDLL
  55. Enable3dControls();         // Call this when using MFC in a shared DLL
  56. #else
  57. Enable3dControlsStatic();   // Call this when linking to MFC statically
  58. #endif
  59. #endif
  60. // Change the registry key under which our settings are stored.
  61. // TODO: You should modify this string to be something appropriate
  62. // such as the name of your company or organization.
  63. SetRegistryKey(_T("Codejock Software Sample Applications"));
  64. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  65. // Register the application's document templates.  Document templates
  66. //  serve as the connection between documents, frame windows and views.
  67. CSingleDocTemplate* pDocTemplate;
  68. pDocTemplate = new CSingleDocTemplate(
  69. IDR_MAINFRAME,
  70. RUNTIME_CLASS(CActionsSampleDoc),
  71. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  72. RUNTIME_CLASS(CActionsSampleView));
  73. pDocTemplate->SetContainerInfo(IDR_CNTR_INPLACE);
  74. AddDocTemplate(pDocTemplate);
  75. // Parse command line for standard shell commands, DDE, file open
  76. CCommandLineInfo cmdInfo;
  77. ParseCommandLine(cmdInfo);
  78. // Dispatch commands specified on the command line
  79. if (!ProcessShellCommand(cmdInfo))
  80. return FALSE;
  81. // The one and only window has been initialized, so show and update it.
  82. m_pMainWnd->ShowWindow(SW_SHOW);
  83. m_pMainWnd->UpdateWindow();
  84. ShowSampleHelpPopup(m_pMainWnd, IDR_MAINFRAME);
  85. return TRUE;
  86. }
  87. // App command to run the dialog
  88. void CActionsSampleApp::OnAppAbout()
  89. {
  90. CAboutDlg aboutDlg;
  91. aboutDlg.DoModal();
  92. }
  93. /////////////////////////////////////////////////////////////////////////////
  94. // CActionsSampleApp message handlers