DevDemo.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:5k
源码类别:

界面编程

开发平台:

Visual C++

  1. // DevDemo.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "DevDemo.h"
  5. #include "MainFrm.h"
  6. #include "DevDemoDoc.h"
  7. #include "DevDemoView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CDevDemoApp
  15. BEGIN_MESSAGE_MAP(CDevDemoApp, CWinApp)
  16. //{{AFX_MSG_MAP(CDevDemoApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. // Standard print setup command
  25. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CDevDemoApp construction
  29. CDevDemoApp::CDevDemoApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CDevDemoApp object
  36. #include "doc.h" 
  37. #include "e.h" 
  38. #include "DocView.h"
  39. #include "tree1.h" 
  40. #include "tree2.h" 
  41. #include "treedoc1.h" 
  42. #include "treedoc2.h" 
  43. #include "HTMLdoc.h" 
  44. #include "MyHTML.h" 
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CDevDemoApp initialization
  47. BOOL CDevDemoApp::InitInstance()
  48. {
  49. AfxEnableControlContainer();
  50. // Standard initialization
  51. // If you are not using these features and wish to reduce the size
  52. //  of your final executable, you should remove from the following
  53. //  the specific initialization routines you do not need.
  54. #ifdef _AFXDLL
  55. Enable3dControls(); // Call this when using MFC in a shared DLL
  56. #else
  57. Enable3dControlsStatic(); // Call this when linking to MFC statically
  58. #endif
  59. // Change the registry key under which our settings are stored.
  60. // TODO: You should modify this string to be something appropriate
  61. // such as the name of your company or organization.
  62. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  63. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  64. // Register the application's document templates.  Document templates
  65. //  serve as the connection between documents, frame windows and views.
  66. CSingleDocTemplate* pDocTemplate;
  67. pDocTemplate = new CSingleDocTemplate(
  68. IDR_MAINFRAME,
  69. RUNTIME_CLASS(CDevDemoDoc),
  70. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  71. RUNTIME_CLASS(CDevDemoView));
  72. AddDocTemplate(pDocTemplate);
  73. //添加运行文档申明:标签1
  74. m_pClassDocTemplate = new CSingleDocTemplate( IDR_MAINFRAME,
  75. RUNTIME_CLASS(CMyDoc),
  76. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  77. RUNTIME_CLASS(CMyView));
  78. //添加运行文档申明:标签2
  79. m_pResourceDocTemplate = new CSingleDocTemplate( IDR_MAINFRAME,
  80. RUNTIME_CLASS(CTreeDoc1),
  81. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  82. RUNTIME_CLASS(CTree1));
  83. //添加运行文档申明:标签3
  84. m_pFileDocTemplate = new CSingleDocTemplate( IDR_MAINFRAME,
  85. RUNTIME_CLASS(CTreeDoc2),
  86. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  87. RUNTIME_CLASS(CTree2));
  88. //添加运行文档申明:超文本
  89. m_htmlDoc=new CSingleDocTemplate( IDR_MAINFRAME,
  90. RUNTIME_CLASS(CHTMLDOC),
  91. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  92. RUNTIME_CLASS(CMyHTML));
  93. // Parse command line for standard shell commands, DDE, file open
  94. CCommandLineInfo cmdInfo;
  95. ParseCommandLine(cmdInfo);
  96. // Dispatch commands specified on the command line
  97. if (!ProcessShellCommand(cmdInfo))
  98. return FALSE;
  99. // The one and only window has been initialized, so show and update it.
  100. m_pMainWnd->ShowWindow(SW_SHOW);
  101. m_pMainWnd->UpdateWindow();
  102. return TRUE;
  103. }
  104. /////////////////////////////////////////////////////////////////////////////
  105. // CAboutDlg dialog used for App About
  106. class CAboutDlg : public CDialog
  107. {
  108. public:
  109. CAboutDlg();
  110. // Dialog Data
  111. //{{AFX_DATA(CAboutDlg)
  112. enum { IDD = IDD_ABOUTBOX };
  113. //}}AFX_DATA
  114. // ClassWizard generated virtual function overrides
  115. //{{AFX_VIRTUAL(CAboutDlg)
  116. protected:
  117. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  118. //}}AFX_VIRTUAL
  119. // Implementation
  120. protected:
  121. //{{AFX_MSG(CAboutDlg)
  122. // No message handlers
  123. //}}AFX_MSG
  124. DECLARE_MESSAGE_MAP()
  125. };
  126. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  127. {
  128. //{{AFX_DATA_INIT(CAboutDlg)
  129. //}}AFX_DATA_INIT
  130. }
  131. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  132. {
  133. CDialog::DoDataExchange(pDX);
  134. //{{AFX_DATA_MAP(CAboutDlg)
  135. //}}AFX_DATA_MAP
  136. }
  137. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  138. //{{AFX_MSG_MAP(CAboutDlg)
  139. // No message handlers
  140. //}}AFX_MSG_MAP
  141. END_MESSAGE_MAP()
  142. // App command to run the dialog
  143. void CDevDemoApp::OnAppAbout()
  144. {
  145. CAboutDlg aboutDlg;
  146. aboutDlg.DoModal();
  147. }
  148. /////////////////////////////////////////////////////////////////////////////
  149. // CDevDemoApp message handlers
  150. CDevDemoApp theApp;