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

对话框与窗口

开发平台:

Visual C++

  1. // TabbedView.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 "TabbedView.h"
  22. #include "AboutDlg.h"
  23. #include "MainFrm.h"
  24. #include "ChildFrm.h"
  25. #include "TabbedViewDoc.h"
  26. #include "TabbedViewView.h"
  27. #ifdef _DEBUG
  28. #define new DEBUG_NEW
  29. #undef THIS_FILE
  30. static char THIS_FILE[] = __FILE__;
  31. #endif
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CTabbedViewApp
  34. BEGIN_MESSAGE_MAP(CTabbedViewApp, CWinApp)
  35. //{{AFX_MSG_MAP(CTabbedViewApp)
  36. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  37. //}}AFX_MSG_MAP
  38. // Standard file based document commands
  39. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  40. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  41. // Standard print setup command
  42. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  43. END_MESSAGE_MAP()
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CTabbedViewApp construction
  46. CTabbedViewApp::CTabbedViewApp()
  47. {
  48. // TODO: add construction code here,
  49. // Place all significant initialization in InitInstance
  50. }
  51. /////////////////////////////////////////////////////////////////////////////
  52. // The one and only CTabbedViewApp object
  53. CTabbedViewApp theApp;
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CTabbedViewApp initialization
  56. BOOL CTabbedViewApp::InitInstance()
  57. {
  58. AfxEnableControlContainer();
  59. CXTPWinDwmWrapper().SetProcessDPIAware();
  60. // Standard initialization
  61. // If you are not using these features and wish to reduce the size
  62. //  of your final executable, you should remove from the following
  63. //  the specific initialization routines you do not need.
  64. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  65. #ifdef _AFXDLL
  66. Enable3dControls(); // Call this when using MFC in a shared DLL
  67. #else
  68. Enable3dControlsStatic(); // Call this when linking to MFC statically
  69. #endif
  70. #endif // MFC 6.0 or earlier
  71. // Change the registry key under which our settings are stored.
  72. // TODO: You should modify this string to be something appropriate
  73. // such as the name of your company or organization.
  74. SetRegistryKey(_T("Codejock Software Sample Applications"));
  75. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  76. // Register the application's document templates.  Document templates
  77. //  serve as the connection between documents, frame windows and views.
  78. // CXTTabView object
  79. m_pDocTemplate = new CMultiDocTemplate(
  80. IDR_MDITABTYPE,
  81. RUNTIME_CLASS(CTabbedViewDoc),
  82. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  83. RUNTIME_CLASS(CTabbedViewView));
  84. AddDocTemplate(m_pDocTemplate);
  85. // create main MDI Frame window
  86. CMainFrame* pMainFrame = new CMainFrame;
  87. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  88. return FALSE;
  89. m_pMainWnd = pMainFrame;
  90. // Parse command line for standard shell commands, DDE, file open
  91. CCommandLineInfo cmdInfo;
  92. ParseCommandLine(cmdInfo);
  93. // Dispatch commands specified on the command line
  94. if (!ProcessShellCommand(cmdInfo))
  95. return FALSE;
  96. // The main window has been initialized, so show and update it.
  97. pMainFrame->ShowWindow(m_nCmdShow);
  98. pMainFrame->UpdateWindow();
  99. return TRUE;
  100. }
  101. // App command to run the dialog
  102. void CTabbedViewApp::OnAppAbout()
  103. {
  104. CAboutDlg aboutDlg;
  105. aboutDlg.DoModal();
  106. }
  107. /////////////////////////////////////////////////////////////////////////////
  108. // CTabbedViewApp message handlers