MarkupPad.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MarkupPad.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "MarkupPad.h"
  5. #include "MainFrm.h"
  6. #include "MarkupPadDoc.h"
  7. #include "MarkupPadView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMarkupPadApp
  15. BEGIN_MESSAGE_MAP(CMarkupPadApp, CWinApp)
  16. //{{AFX_MSG_MAP(CMarkupPadApp)
  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. // CMarkupPadApp construction
  29. CMarkupPadApp::CMarkupPadApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CMarkupPadApp object
  36. CMarkupPadApp theApp;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CMarkupPadApp initialization
  39. BOOL CMarkupPadApp::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. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  47. #ifdef _AFXDLL
  48. Enable3dControls();         // Call this when using MFC in a shared DLL
  49. #else
  50. Enable3dControlsStatic();   // Call this when linking to MFC statically
  51. #endif
  52. #endif
  53. // Change the registry key under which our settings are stored.
  54. // TODO: You should modify this string to be something appropriate
  55. // such as the name of your company or organization.
  56. SetRegistryKey(_T("Codejock Software Sample Applications"));
  57. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  58. // Register the application's document templates.  Document templates
  59. //  serve as the connection between documents, frame windows and views.
  60. CSingleDocTemplate* pDocTemplate;
  61. pDocTemplate = new CSingleDocTemplate(
  62. IDR_MAINFRAME,
  63. RUNTIME_CLASS(CMarkupPadDoc),
  64. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  65. RUNTIME_CLASS(CMarkupPadView));
  66. AddDocTemplate(pDocTemplate);
  67. // Parse command line for standard shell commands, DDE, file open
  68. CCommandLineInfo cmdInfo;
  69. ParseCommandLine(cmdInfo);
  70. // Dispatch commands specified on the command line
  71. if (!ProcessShellCommand(cmdInfo))
  72. return FALSE;
  73. // The one and only window has been initialized, so show and update it.
  74. m_pMainWnd->ShowWindow(SW_SHOW);
  75. m_pMainWnd->UpdateWindow();
  76. return TRUE;
  77. }
  78. // App command to run the dialog
  79. void CMarkupPadApp::OnAppAbout()
  80. {
  81. CAboutDlg aboutDlg;
  82. aboutDlg.DoModal();
  83. }
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CMarkupPadApp message handlers