MyAssistant.cpp
上传用户:shcaka8
上传日期:2013-04-06
资源大小:103k
文件大小:4k
源码类别:

家庭/个人应用

开发平台:

Visual C++

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