test.cpp
上传用户:ynjin1970
上传日期:2014-10-13
资源大小:6438k
文件大小:4k
源码类别:

中间件编程

开发平台:

Visual C++

  1. // test.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "test.h"
  5. #include "MainFrm.h"
  6. #include "testDoc.h"
  7. #include "testView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CTestApp
  15. BEGIN_MESSAGE_MAP(CTestApp, CWinApp)
  16. //{{AFX_MSG_MAP(CTestApp)
  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. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CTestApp construction
  27. CTestApp::CTestApp()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CTestApp object
  34. CTestApp theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CTestApp initialization
  37. BOOL CTestApp::InitInstance()
  38. {
  39. // Standard initialization
  40. // If you are not using these features and wish to reduce the size
  41. //  of your final executable, you should remove from the following
  42. //  the specific initialization routines you do not need.
  43. #ifdef _AFXDLL
  44. Enable3dControls(); // Call this when using MFC in a shared DLL
  45. #else
  46. Enable3dControlsStatic(); // Call this when linking to MFC statically
  47. #endif
  48. // Change the registry key under which our settings are stored.
  49. // TODO: You should modify this string to be something appropriate
  50. // such as the name of your company or organization.
  51. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  52. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  53. // Register the application's document templates.  Document templates
  54. //  serve as the connection between documents, frame windows and views.
  55. CSingleDocTemplate* pDocTemplate;
  56. pDocTemplate = new CSingleDocTemplate(
  57. IDR_MAINFRAME,
  58. RUNTIME_CLASS(CTestDoc),
  59. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  60. RUNTIME_CLASS(CTestView));
  61. AddDocTemplate(pDocTemplate);
  62. // Parse command line for standard shell commands, DDE, file open
  63. CCommandLineInfo cmdInfo;
  64. ParseCommandLine(cmdInfo);
  65. // Dispatch commands specified on the command line
  66. if (!ProcessShellCommand(cmdInfo))
  67. return FALSE;
  68. // The one and only window has been initialized, so show and update it.
  69. m_pMainWnd->ShowWindow(SW_SHOW);
  70. m_pMainWnd->UpdateWindow();
  71. return TRUE;
  72. }
  73. /////////////////////////////////////////////////////////////////////////////
  74. // CAboutDlg dialog used for App About
  75. class CAboutDlg : public CDialog
  76. {
  77. public:
  78. CAboutDlg();
  79. // Dialog Data
  80. //{{AFX_DATA(CAboutDlg)
  81. enum { IDD = IDD_ABOUTBOX };
  82. //}}AFX_DATA
  83. // ClassWizard generated virtual function overrides
  84. //{{AFX_VIRTUAL(CAboutDlg)
  85. protected:
  86. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  87. //}}AFX_VIRTUAL
  88. // Implementation
  89. protected:
  90. //{{AFX_MSG(CAboutDlg)
  91. // No message handlers
  92. //}}AFX_MSG
  93. DECLARE_MESSAGE_MAP()
  94. };
  95. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  96. {
  97. //{{AFX_DATA_INIT(CAboutDlg)
  98. //}}AFX_DATA_INIT
  99. }
  100. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  101. {
  102. CDialog::DoDataExchange(pDX);
  103. //{{AFX_DATA_MAP(CAboutDlg)
  104. //}}AFX_DATA_MAP
  105. }
  106. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  107. //{{AFX_MSG_MAP(CAboutDlg)
  108. // No message handlers
  109. //}}AFX_MSG_MAP
  110. END_MESSAGE_MAP()
  111. // App command to run the dialog
  112. void CTestApp::OnAppAbout()
  113. {
  114. CAboutDlg aboutDlg;
  115. aboutDlg.DoModal();
  116. }
  117. /////////////////////////////////////////////////////////////////////////////
  118. // CTestApp message handlers