OutlookDemo.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:4k
源码类别:

对话框与窗口

开发平台:

Visual C++

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