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

对话框与窗口

开发平台:

Visual C++

  1. // SmartLayout.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "SmartLayout.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "SmartLayoutDoc.h"
  8. #include "SmartLayoutView.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CSmartLayoutApp
  16. BEGIN_MESSAGE_MAP(CSmartLayoutApp, CWinApp)
  17. //{{AFX_MSG_MAP(CSmartLayoutApp)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. // NOTE - the ClassWizard will add and remove mapping macros here.
  20. //    DO NOT EDIT what you see in these blocks of generated code!
  21. //}}AFX_MSG_MAP
  22. // Standard file based document commands
  23. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  24. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  25. // Standard print setup command
  26. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  27. END_MESSAGE_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CSmartLayoutApp construction
  30. CSmartLayoutApp::CSmartLayoutApp()
  31. {
  32. // TODO: add construction code here,
  33. // Place all significant initialization in InitInstance
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // The one and only CSmartLayoutApp object
  37. CSmartLayoutApp theApp;
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CSmartLayoutApp initialization
  40. BOOL CSmartLayoutApp::InitInstance()
  41. {
  42. // Initialize OLE libraries
  43. if (!AfxOleInit())
  44. {
  45. AfxMessageBox(IDP_OLE_INIT_FAILED);
  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 // MFC 6.0 or earlier
  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_SMARTLTYPE,
  71. RUNTIME_CLASS(CSmartLayoutDoc),
  72. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  73. RUNTIME_CLASS(CSmartLayoutView));
  74. pDocTemplate->SetContainerInfo(IDR_SMARTLTYPE_CNTR_IP);
  75. AddDocTemplate(pDocTemplate);
  76. // create main MDI Frame window
  77. CMainFrame* pMainFrame = new CMainFrame;
  78. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  79. return FALSE;
  80. m_pMainWnd = pMainFrame;
  81. // Parse command line for standard shell commands, DDE, file open
  82. CCommandLineInfo cmdInfo;
  83. ParseCommandLine(cmdInfo);
  84. // Dispatch commands specified on the command line
  85. if (!ProcessShellCommand(cmdInfo))
  86. return FALSE;
  87. // The main window has been initialized, so show and update it.
  88. pMainFrame->ShowWindow(m_nCmdShow);
  89. pMainFrame->UpdateWindow();
  90. return TRUE;
  91. }
  92. // App command to run the dialog
  93. void CSmartLayoutApp::OnAppAbout()
  94. {
  95. CAboutDlg aboutDlg;
  96. aboutDlg.DoModal();
  97. }
  98. /////////////////////////////////////////////////////////////////////////////
  99. // CSmartLayoutApp message handlers