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