TestBench.cpp
上传用户:nameszq
上传日期:2014-08-12
资源大小:336k
文件大小:4k
源码类别:

金融证券系统

开发平台:

Visual C++

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