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

对话框与窗口

开发平台:

Visual C++

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