mymenu.cpp
上传用户:aphuaqiang
上传日期:2007-01-02
资源大小:62k
文件大小:4k
源码类别:

菜单

开发平台:

Visual C++

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