DrawCli.cpp
上传用户:seaboy_04
上传日期:2013-02-24
资源大小:284k
文件大小:5k
源码类别:

其他行业

开发平台:

Visual C++

  1. // DrawCli.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "DrawCli.h"
  5. #include "MainFrm.h"
  6. #include "SplitFrm.h"
  7. #include "DrawCliDoc.h"
  8. #include "DrawCliView.h"
  9. #include "Splash.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CDrawCliApp
  17. BEGIN_MESSAGE_MAP(CDrawCliApp, CWinApp)
  18. //{{AFX_MSG_MAP(CDrawCliApp)
  19. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //    DO NOT EDIT what you see in these blocks of generated code!
  22. //}}AFX_MSG_MAP
  23. // Standard file based document commands
  24. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  25. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  26. // Standard print setup command
  27. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CDrawCliApp construction
  31. CDrawCliApp::CDrawCliApp()
  32. {
  33. // TODO: add construction code here,
  34. // Place all significant initialization in InitInstance
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // The one and only CDrawCliApp object
  38. CDrawCliApp theApp;
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CDrawCliApp initialization
  41. BOOL CDrawCliApp::InitInstance()
  42. {
  43. // CG: The following block was added by the Splash Screen component. { CCommandLineInfo cmdInfo; ParseCommandLine(cmdInfo); CSplashWnd::EnableSplashScreen(cmdInfo.m_bShowSplash); }
  44. // Initialize OLE libraries
  45. if (!AfxOleInit())
  46. {
  47. AfxMessageBox(IDP_OLE_INIT_FAILED);
  48. return FALSE;
  49. }
  50. AfxEnableControlContainer();
  51. // Standard initialization
  52. // If you are not using these features and wish to reduce the size
  53. //  of your final executable, you should remove from the following
  54. //  the specific initialization routines you do not need.
  55. #ifdef _AFXDLL
  56. Enable3dControls(); // Call this when using MFC in a shared DLL
  57. #else
  58. Enable3dControlsStatic(); // Call this when linking to MFC statically
  59. #endif
  60. // Change the registry key under which our settings are stored.
  61. // TODO: You should modify this string to be something appropriate
  62. // such as the name of your company or organization.
  63. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  64. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  65. // Register the application's document templates.  Document templates
  66. //  serve as the connection between documents, frame windows and views.
  67. CMultiDocTemplate* pDocTemplate;
  68. pDocTemplate = new CMultiDocTemplate(
  69. IDR_DRAWCLTYPE,
  70. RUNTIME_CLASS(CDrawCliDoc),
  71. RUNTIME_CLASS(CSplitFrame), // custom MDI child frame
  72. RUNTIME_CLASS(CDrawCliView));
  73. pDocTemplate->SetContainerInfo(IDR_DRAWCLTYPE_CNTR_IP);
  74. AddDocTemplate(pDocTemplate);
  75. // create main MDI Frame window
  76. CMainFrame* pMainFrame = new CMainFrame;
  77. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  78. return FALSE;
  79. m_pMainWnd = pMainFrame;
  80. // Enable drag/drop open
  81. m_pMainWnd->DragAcceptFiles();
  82. // Enable DDE Execute open
  83. EnableShellOpen();
  84. RegisterShellFileTypes(TRUE);
  85. // Parse command line for standard shell commands, DDE, file open
  86. CCommandLineInfo cmdInfo;
  87. ParseCommandLine(cmdInfo);
  88. // Dispatch commands specified on the command line
  89. if (!ProcessShellCommand(cmdInfo))
  90. return FALSE;
  91. // The main window has been initialized, so show and update it.
  92. pMainFrame->ShowWindow(m_nCmdShow);
  93. pMainFrame->UpdateWindow();
  94. return TRUE;
  95. }
  96. /////////////////////////////////////////////////////////////////////////////
  97. // CAboutDlg dialog used for App About
  98. class CAboutDlg : public CDialog
  99. {
  100. public:
  101. CAboutDlg();
  102. // Dialog Data
  103. //{{AFX_DATA(CAboutDlg)
  104. enum { IDD = IDD_ABOUTBOX };
  105. //}}AFX_DATA
  106. // ClassWizard generated virtual function overrides
  107. //{{AFX_VIRTUAL(CAboutDlg)
  108. protected:
  109. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  110. //}}AFX_VIRTUAL
  111. // Implementation
  112. protected:
  113. //{{AFX_MSG(CAboutDlg)
  114. // No message handlers
  115. //}}AFX_MSG
  116. DECLARE_MESSAGE_MAP()
  117. };
  118. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  119. {
  120. //{{AFX_DATA_INIT(CAboutDlg)
  121. //}}AFX_DATA_INIT
  122. }
  123. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  124. {
  125. CDialog::DoDataExchange(pDX);
  126. //{{AFX_DATA_MAP(CAboutDlg)
  127. //}}AFX_DATA_MAP
  128. }
  129. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  130. //{{AFX_MSG_MAP(CAboutDlg)
  131. // No message handlers
  132. //}}AFX_MSG_MAP
  133. END_MESSAGE_MAP()
  134. // App command to run the dialog
  135. void CDrawCliApp::OnAppAbout()
  136. {
  137. CAboutDlg aboutDlg;
  138. aboutDlg.DoModal();
  139. }
  140. /////////////////////////////////////////////////////////////////////////////
  141. // CDrawCliApp message handlers
  142. BOOL CDrawCliApp::PreTranslateMessage(MSG* pMsg)
  143. {
  144. // CG: The following lines were added by the Splash Screen component. if (CSplashWnd::PreTranslateAppMessage(pMsg)) return TRUE; return CWinApp::PreTranslateMessage(pMsg);
  145. }