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

对话框与窗口

开发平台:

Visual C++

  1. // MDITabWindows.cpp : Defines the class behaviors for the application.
  2. //
  3. // This file is a part of the XTREME TOOLKIT MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO 
  7. // BE RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED 
  8. // WRITTEN CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS 
  11. // OUTLINED IN THE XTREME TOOLKIT LICENSE AGREEMENT.  CODEJOCK SOFTWARE 
  12. // GRANTS TO YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE 
  13. // THIS SOFTWARE ON A SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. //////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "MDITabWindows.h"
  22. #include "MainFrm.h"
  23. #include "ChildFrm.h"
  24. #include "MDITabWindowsDoc.h"
  25. #include "MDITabWindowsView.h"
  26. #include "AboutDlg.h"
  27. #ifdef _DEBUG
  28. #define new DEBUG_NEW
  29. #undef THIS_FILE
  30. static char THIS_FILE[] = __FILE__;
  31. #endif
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CMDITabWindowsApp
  34. BEGIN_MESSAGE_MAP(CMDITabWindowsApp, CWinApp)
  35. //{{AFX_MSG_MAP(CMDITabWindowsApp)
  36. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  37. // NOTE - the ClassWizard will add and remove mapping macros here.
  38. //    DO NOT EDIT what you see in these blocks of generated code!
  39. //}}AFX_MSG_MAP
  40. // Standard file based document commands
  41. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  42. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  43. // Standard print setup command
  44. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CMDITabWindowsApp construction
  48. CMDITabWindowsApp::CMDITabWindowsApp()
  49. {
  50. // TODO: add construction code here,
  51. // Place all significant initialization in InitInstance
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // The one and only CMDITabWindowsApp object
  55. CMDITabWindowsApp theApp;
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CMDITabWindowsApp initialization
  58. BOOL CMDITabWindowsApp::InitInstance()
  59. {
  60. AfxOleInit();
  61. AfxEnableControlContainer();
  62. CXTPWinDwmWrapper().SetProcessDPIAware();
  63. // Standard initialization
  64. // If you are not using these features and wish to reduce the size
  65. //  of your final executable, you should remove from the following
  66. //  the specific initialization routines you do not need.
  67. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  68. #ifdef _AFXDLL
  69. Enable3dControls(); // Call this when using MFC in a shared DLL
  70. #else
  71. Enable3dControlsStatic(); // Call this when linking to MFC statically
  72. #endif
  73. #endif // MFC 6.0 or earlier
  74. // Change the registry key under which our settings are stored.
  75. // TODO: You should modify this string to be something appropriate
  76. // such as the name of your company or organization.
  77. SetRegistryKey(_T("Codejock Software Sample Applications"));
  78. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  79. // Register the application's document templates.  Document templates
  80. //  serve as the connection between documents, frame windows and views.
  81. CMultiDocTemplate* pDocTemplate;
  82. pDocTemplate = new CMultiDocTemplate(
  83. IDR_MDITABTYPE,
  84. RUNTIME_CLASS(CMDITabWindowsDoc),
  85. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  86. RUNTIME_CLASS(CMDITabWindowsView));
  87. AddDocTemplate(pDocTemplate);
  88. // create main MDI Frame window
  89. CMainFrame* pMainFrame = new CMainFrame;
  90. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  91. return FALSE;
  92. m_pMainWnd = pMainFrame;
  93. // Parse command line for standard shell commands, DDE, file open
  94. CCommandLineInfo cmdInfo;
  95. ParseCommandLine(cmdInfo);
  96. // Dispatch commands specified on the command line
  97. if (!ProcessShellCommand(cmdInfo))
  98. return FALSE;
  99. // The main window has been initialized, so show and update it.
  100. pMainFrame->ShowWindow(m_nCmdShow);
  101. pMainFrame->UpdateWindow();
  102. return TRUE;
  103. }
  104. // App command to run the dialog
  105. void CMDITabWindowsApp::OnAppAbout()
  106. {
  107. CAboutDlg aboutDlg;
  108. aboutDlg.DoModal();
  109. }
  110. /////////////////////////////////////////////////////////////////////////////
  111. // CMDITabWindowsApp message handlers