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

对话框与窗口

开发平台:

Visual C++

  1. // TabbedToolbar.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "TabbedToolbar.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "TabbedToolbarDoc.h"
  8. #include "TabbedToolbarView.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CTabbedToolbarApp
  16. BEGIN_MESSAGE_MAP(CTabbedToolbarApp, CWinApp)
  17. //{{AFX_MSG_MAP(CTabbedToolbarApp)
  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. // CTabbedToolbarApp construction
  30. CTabbedToolbarApp::CTabbedToolbarApp()
  31. {
  32. // TODO: add construction code here,
  33. // Place all significant initialization in InitInstance
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // The one and only CTabbedToolbarApp object
  37. CTabbedToolbarApp theApp;
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CTabbedToolbarApp initialization
  40. BOOL CTabbedToolbarApp::InitInstance()
  41. {
  42. AfxEnableControlContainer();
  43. CXTPWinDwmWrapper().SetProcessDPIAware();
  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. // TODO: 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. CMultiDocTemplate* pDocTemplate;
  63. pDocTemplate = new CMultiDocTemplate(
  64. IDR_TABBEDTYPE,
  65. RUNTIME_CLASS(CTabbedToolbarDoc),
  66. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  67. RUNTIME_CLASS(CTabbedToolbarView));
  68. AddDocTemplate(pDocTemplate);
  69. // create main MDI Frame window
  70. CMainFrame* pMainFrame = new CMainFrame;
  71. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  72. return FALSE;
  73. m_pMainWnd = pMainFrame;
  74. // Parse command line for standard shell commands, DDE, file open
  75. CCommandLineInfo cmdInfo;
  76. ParseCommandLine(cmdInfo);
  77. // Dispatch commands specified on the command line
  78. if (!ProcessShellCommand(cmdInfo))
  79. return FALSE;
  80. // The main window has been initialized, so show and update it.
  81. pMainFrame->ShowWindow(m_nCmdShow);
  82. pMainFrame->UpdateWindow();
  83. return TRUE;
  84. }
  85. // App command to run the dialog
  86. void CTabbedToolbarApp::OnAppAbout()
  87. {
  88. CAboutDlg aboutDlg;
  89. aboutDlg.DoModal();
  90. }
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CTabbedToolbarApp message handlers