ex127.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:4k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ex127.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ex127.h"
  5. #include "MainFrm.h"
  6. #include "ex127Doc.h"
  7. #include "ex127View.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CEx127App
  15. BEGIN_MESSAGE_MAP(CEx127App, CWinApp)
  16. //{{AFX_MSG_MAP(CEx127App)
  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. // CEx127App construction
  27. CEx127App::CEx127App()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CEx127App object
  34. CEx127App theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CEx127App initialization
  37. BOOL CEx127App::InitInstance()
  38. {
  39. if (!AfxSocketInit())
  40. {
  41. AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
  42. return FALSE;
  43. }
  44. // Standard initialization
  45. // If you are not using these features and wish to reduce the size
  46. //  of your final executable, you should remove from the following
  47. //  the specific initialization routines you do not need.
  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(CEx127Doc),
  59. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  60. RUNTIME_CLASS(CEx127View));
  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 CEx127App::OnAppAbout()
  113. {
  114. CAboutDlg aboutDlg;
  115. aboutDlg.DoModal();
  116. }
  117. /////////////////////////////////////////////////////////////////////////////
  118. // CEx127App message handlers