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

对话框与窗口

开发平台:

Visual C++

  1. // MDITabWindow.cpp : Defines the class behaviors for the application.
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO 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 BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "MDITabWindow.h"
  22. #include "MainFrm.h"
  23. #include "HelloFrm.h"
  24. #include "HelloDoc.h"
  25. #include "HelloVw.h"
  26. //Added for Bounce document
  27. #include "BncFrm.h"
  28. #include "BncDoc.h"
  29. #include "BncVw.h"
  30. #include "AboutDlg.h"
  31. #ifdef _DEBUG
  32. #define new DEBUG_NEW
  33. #undef THIS_FILE
  34. static char THIS_FILE[] = __FILE__;
  35. #endif
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CMDITabWindowApp
  38. BEGIN_MESSAGE_MAP(CMDITabWindowApp, CWinApp)
  39. //{{AFX_MSG_MAP(CMDITabWindowApp)
  40. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  41. ON_COMMAND(ID_FILE_NEWHELLO, OnNewHello)
  42. ON_COMMAND(ID_FILE_NEWBOUNCE, OnNewBounce)
  43. //}}AFX_MSG_MAP
  44. // Standard file based document commands
  45. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  46. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CMDITabWindowApp construction
  50. CMDITabWindowApp::CMDITabWindowApp()
  51. {
  52. // TODO: add construction code here,
  53. // Place all significant initialization in InitInstance
  54. }
  55. /////////////////////////////////////////////////////////////////////////////
  56. // The one and only CMDITabWindowApp object
  57. CMDITabWindowApp theApp;
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CMDITabWindowApp initialization
  60. BOOL CMDITabWindowApp::InitInstance()
  61. {
  62. AfxEnableControlContainer();
  63. CXTPWinDwmWrapper().SetProcessDPIAware();
  64. // Standard initialization
  65. // If you are not using these features and wish to reduce the size
  66. //  of your final executable, you should remove from the following
  67. //  the specific initialization routines you do not need.
  68. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  69. #ifdef _AFXDLL
  70. Enable3dControls();         // Call this when using MFC in a shared DLL
  71. #else
  72. Enable3dControlsStatic();   // Call this when linking to MFC statically
  73. #endif
  74. #endif // MFC 6.0 or earlier
  75. // Change the registry key under which our settings are stored.
  76. // TODO: You should modify this string to be something appropriate
  77. // such as the name of your company or organization.
  78. SetRegistryKey(_T("Codejock Software Sample Applications"));
  79. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  80. // Register the application's document templates.  Document templates
  81. //  serve as the connection between documents, frame windows and views.
  82. CMultiDocTemplate* pDocTemplate;
  83. pDocTemplate = new CMultiDocTemplate(
  84. IDR_HELLOTYPE,
  85. RUNTIME_CLASS(CHelloDoc),
  86. RUNTIME_CLASS(CHelloFrame), // custom MDI child frame
  87. RUNTIME_CLASS(CHelloView));
  88. AddDocTemplate(pDocTemplate);
  89. // Add Bounce template to list
  90. CMultiDocTemplate* pBounceTemplate;
  91. pBounceTemplate = new CMultiDocTemplate(
  92. IDR_BOUNCETYPE,
  93. RUNTIME_CLASS(CBounceDoc),
  94. RUNTIME_CLASS(CBounceFrame), // custom MDI child frame
  95. RUNTIME_CLASS(CBounceView));
  96. AddDocTemplate(pBounceTemplate);
  97. // create main MDI Frame window
  98. CMainFrame* pMainFrame = new CMainFrame;
  99. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  100. return FALSE;
  101. m_pMainWnd = pMainFrame;
  102. // The main window has been initialized, so show and update it.
  103. pMainFrame->ShowWindow(m_nCmdShow);
  104. pMainFrame->UpdateWindow();
  105. return TRUE;
  106. }
  107. // App command to run the dialog
  108. void CMDITabWindowApp::OnAppAbout()
  109. {
  110. CAboutDlg dlgAbout;
  111. dlgAbout.DoModal();
  112. }
  113. /////////////////////////////////////////////////////////////////////////////
  114. // CMDITabWindowApp message handlers
  115. /////////////////////////////////////////////////////////////////////////////
  116. // other globals
  117. // Color array maps colors to top-level Color menu
  118. COLORREF NEAR colorArray[] =
  119. {
  120. RGB (0, 0, 0),
  121. RGB (255, 0, 0),
  122. RGB (0, 255, 0),
  123. RGB (0, 0, 255),
  124. RGB (255, 255, 255)
  125. };
  126. /////////////////////////////////////////////////////////////////////////////
  127. // CMDIApp commands
  128. // The following two command handlers provides an
  129. // alternative way to open documents by hiding the fact
  130. // that the application has multiple templates. The
  131. // default method uses a dialog with a listing of
  132. // possible types to choose from.
  133. void CMDITabWindowApp::OnNewHello()
  134. {
  135. // Searches template list for a document type
  136. // containing the "Hello" string
  137. POSITION curTemplatePos = GetFirstDocTemplatePosition();
  138. while(curTemplatePos != NULL)
  139. {
  140. CDocTemplate* curTemplate =
  141. GetNextDocTemplate(curTemplatePos);
  142. CString str;
  143. curTemplate->GetDocString(str, CDocTemplate::docName);
  144. if(str == _T("Hello"))
  145. {
  146. curTemplate->OpenDocumentFile(NULL);
  147. return;
  148. }
  149. }
  150. AfxMessageBox(IDS_NOHELLOTEMPLATE);
  151. }
  152. void CMDITabWindowApp::OnNewBounce()
  153. {
  154. // Searches template list for a document type
  155. // containing the "Bounce" string
  156. POSITION curTemplatePos = GetFirstDocTemplatePosition();
  157. while(curTemplatePos != NULL)
  158. {
  159. CDocTemplate* curTemplate =
  160. GetNextDocTemplate(curTemplatePos);
  161. CString str;
  162. curTemplate->GetDocString(str, CDocTemplate::docName);
  163. if(str == _T("Bounce"))
  164. {
  165. curTemplate->OpenDocumentFile(NULL);
  166. return;
  167. }
  168. }
  169. AfxMessageBox(IDS_NOBOUNCETEMPLATE);
  170. }