MPCStatusBar_Demo.cpp
上传用户:rubberdam
上传日期:2007-01-10
资源大小:43k
文件大小:5k
源码类别:

状态条

开发平台:

Visual C++

  1. // MPCStatusBar_Demo.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "MPCStatusBar_Demo.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "MPCStatusBar_DemoDoc.h"
  8. #include "MPCStatusBar_DemoView.h"
  9. #include "DlgConfigStatusBar.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMPCStatusBar_DemoApp
  17. BEGIN_MESSAGE_MAP(CMPCStatusBar_DemoApp, CWinApp)
  18. //{{AFX_MSG_MAP(CMPCStatusBar_DemoApp)
  19. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //    DO NOT EDIT what you see in these blocks of generated code!
  22. //}}AFX_MSG_MAP
  23. // Standard file based document commands
  24. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  25. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  26. // Standard print setup command
  27. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CMPCStatusBar_DemoApp construction
  31. CMPCStatusBar_DemoApp::CMPCStatusBar_DemoApp()
  32. {
  33. // TODO: add construction code here,
  34. // Place all significant initialization in InitInstance
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // The one and only CMPCStatusBar_DemoApp object
  38. CMPCStatusBar_DemoApp theApp;
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CMPCStatusBar_DemoApp initialization
  41. BOOL CMPCStatusBar_DemoApp::InitInstance()
  42. {
  43. AfxEnableControlContainer();
  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. #ifdef _AFXDLL
  49. Enable3dControls(); // Call this when using MFC in a shared DLL
  50. #else
  51. Enable3dControlsStatic(); // Call this when linking to MFC statically
  52. #endif
  53. // Change the registry key under which our settings are stored.
  54. // TODO: You should modify this string to be something appropriate
  55. // such as the name of your company or organization.
  56. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  57. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  58. // Register the application's document templates.  Document templates
  59. //  serve as the connection between documents, frame windows and views.
  60. CMultiDocTemplate* pDocTemplate;
  61. pDocTemplate = new CMultiDocTemplate(
  62. IDR_MPCSTATYPE,
  63. RUNTIME_CLASS(CMPCStatusBar_DemoDoc),
  64. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  65. RUNTIME_CLASS(CMPCStatusBar_DemoView));
  66. AddDocTemplate(pDocTemplate);
  67. // create main MDI Frame window
  68. CMainFrame* pMainFrame = new CMainFrame;
  69. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  70. return FALSE;
  71. m_pMainWnd = pMainFrame;
  72. // Parse command line for standard shell commands, DDE, file open
  73. CCommandLineInfo cmdInfo;
  74. ParseCommandLine(cmdInfo);
  75. // Dispatch commands specified on the command line
  76. if (!ProcessShellCommand(cmdInfo))
  77. return FALSE;
  78. // The main window has been initialized, so show and update it.
  79. pMainFrame->ShowWindow(m_nCmdShow);
  80. pMainFrame->UpdateWindow();
  81. CDlgConfigStatusBar dlg;
  82. dlg.DoModal();
  83. return TRUE;
  84. }
  85. /////////////////////////////////////////////////////////////////////////////
  86. // CAboutDlg dialog used for App About
  87. class CAboutDlg : public CDialog
  88. {
  89. public:
  90. CAboutDlg();
  91. // Dialog Data
  92. //{{AFX_DATA(CAboutDlg)
  93. enum { IDD = IDD_ABOUTBOX };
  94. //}}AFX_DATA
  95. // ClassWizard generated virtual function overrides
  96. //{{AFX_VIRTUAL(CAboutDlg)
  97. protected:
  98. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  99. //}}AFX_VIRTUAL
  100. // Implementation
  101. protected:
  102. //{{AFX_MSG(CAboutDlg)
  103. // No message handlers
  104. //}}AFX_MSG
  105. DECLARE_MESSAGE_MAP()
  106. };
  107. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  108. {
  109. //{{AFX_DATA_INIT(CAboutDlg)
  110. //}}AFX_DATA_INIT
  111. }
  112. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  113. {
  114. CDialog::DoDataExchange(pDX);
  115. //{{AFX_DATA_MAP(CAboutDlg)
  116. //}}AFX_DATA_MAP
  117. }
  118. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  119. //{{AFX_MSG_MAP(CAboutDlg)
  120. // No message handlers
  121. //}}AFX_MSG_MAP
  122. END_MESSAGE_MAP()
  123. // App command to run the dialog
  124. void CMPCStatusBar_DemoApp::OnAppAbout()
  125. {
  126. CAboutDlg aboutDlg;
  127. aboutDlg.DoModal();
  128. }
  129. /////////////////////////////////////////////////////////////////////////////
  130. // CMPCStatusBar_DemoApp message handlers