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

PropertySheet

开发平台:

Visual C++

  1. // MdLessPpsh.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "MdLessPpsh.h"
  5. #include "MainFrm.h"
  6. #include "Pg1.h"
  7. #include "Pg2.h"
  8. #include "ModelessPpsh.h"
  9. #include "ChildFrm.h"
  10. #include "MdLessPpshDoc.h"
  11. #include "MdLessPpshView.h"
  12. #ifdef _DEBUG
  13. #define new DEBUG_NEW
  14. #undef THIS_FILE
  15. static char THIS_FILE[] = __FILE__;
  16. #endif
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CMdLessPpshApp
  19. BEGIN_MESSAGE_MAP(CMdLessPpshApp, CWinApp)
  20. //{{AFX_MSG_MAP(CMdLessPpshApp)
  21. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  22. // NOTE - the ClassWizard will add and remove mapping macros here.
  23. //    DO NOT EDIT what you see in these blocks of generated code!
  24. //}}AFX_MSG_MAP
  25. // Standard file based document commands
  26. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  27. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  28. // Standard print setup command
  29. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CMdLessPpshApp construction
  33. CMdLessPpshApp::CMdLessPpshApp()
  34. {
  35. // TODO: add construction code here,
  36. // Place all significant initialization in InitInstance
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // The one and only CMdLessPpshApp object
  40. CMdLessPpshApp theApp;
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CMdLessPpshApp initialization
  43. BOOL CMdLessPpshApp::InitInstance()
  44. {
  45. AfxEnableControlContainer();
  46. // Standard initialization
  47. // If you are not using these features and wish to reduce the size
  48. //  of your final executable, you should remove from the following
  49. //  the specific initialization routines you do not need.
  50. #ifdef _AFXDLL
  51. Enable3dControls(); // Call this when using MFC in a shared DLL
  52. #else
  53. Enable3dControlsStatic(); // Call this when linking to MFC statically
  54. #endif
  55. // Change the registry key under which our settings are stored.
  56. // You should modify this string to be something appropriate
  57. // such as the name of your company or organization.
  58. SetRegistryKey(_T("Local AppWizard-Generated 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_MDLESSTYPE,
  65. RUNTIME_CLASS(CMdLessPpshDoc),
  66. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  67. RUNTIME_CLASS(CMdLessPpshView));
  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. /////////////////////////////////////////////////////////////////////////////
  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 CMdLessPpshApp::OnAppAbout()
  125. {
  126. CAboutDlg aboutDlg;
  127. aboutDlg.DoModal();
  128. }
  129. /////////////////////////////////////////////////////////////////////////////
  130. // CMdLessPpshApp commands