MiniCAD.cpp
上传用户:netltd
上传日期:2013-02-12
资源大小:7234k
文件大小:6k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // MiniCAD.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "MiniCAD.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "MiniCADDoc.h"
  8. #include "MiniCADView.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMiniCADApp
  16. BEGIN_MESSAGE_MAP(CMiniCADApp, CWinApp)
  17. //{{AFX_MSG_MAP(CMiniCADApp)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. ON_COMMAND(ID_FILE_OPEN, OnFileOpen)
  20. ON_COMMAND(ID_FILE_NEW, OnFileNew)
  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. // CMiniCADApp construction
  30. CMiniCADApp::CMiniCADApp()
  31. {
  32. // TODO: add construction code here,
  33. // Place all significant initialization in InitInstance
  34. //"PROJECT%d","FILE%d"用于注册表的写入
  35. pRecentProjectList = (CRecentFileListEx*)new CRecentFileList(0, "Recent Project List", "PROJECT%d", 
  36.                   RECENTFILELIST_NUM, AFX_ABBREV_FILENAME_LEN);
  37. pRecentFileList = (CRecentFileListEx*)new CRecentFileList(0, "Recent File List", "FILE%d", 
  38.                RECENTFILELIST_NUM, AFX_ABBREV_FILENAME_LEN);
  39. }
  40. CMiniCADApp::~CMiniCADApp()
  41. {
  42. // TODO: add construction code here,
  43. // Place all significant initialization in InitInstance
  44. delete pRecentProjectList;
  45. delete pRecentFileList;
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // The one and only CMiniCADApp object
  49. CMiniCADApp     theApp;
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CMiniCADApp initialization
  52. BOOL CMiniCADApp::InitInstance()
  53. {
  54. AfxEnableControlContainer();
  55. // Standard initialization
  56. // If you are not using these features and wish to reduce the size
  57. //  of your final executable, you should remove from the following
  58. //  the specific initialization routines you do not need.
  59. #ifdef _AFXDLL
  60. Enable3dControls(); // Call this when using MFC in a shared DLL
  61. #else
  62. Enable3dControlsStatic(); // Call this when linking to MFC statically
  63. #endif
  64. // Change the registry key under which our settings are stored.
  65. // TODO: You should modify this string to be something appropriate
  66. // such as the name of your company or organization.
  67. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  68. //不让程序自动显示MRU
  69. LoadStdProfileSettings(0);  // Load standard INI file options (including MRU)
  70. //读取最近文件列表
  71. pRecentProjectList->ReadList();
  72. pRecentFileList->ReadList();
  73. // Register the application's document templates.  Document templates
  74. //  serve as the connection between documents, frame windows and views.
  75. CMultiDocTemplate* pDocTemplate;
  76. pDocTemplate = new CMultiDocTemplate(
  77. IDR_MINICATYPE,
  78. RUNTIME_CLASS(CMiniCADDoc),
  79. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  80. RUNTIME_CLASS(CMiniCADView));
  81. AddDocTemplate(pDocTemplate);
  82. // create main MDI Frame window
  83. CMainFrame* pMainFrame = new CMainFrame;
  84. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  85. return FALSE;
  86. m_pMainWnd = pMainFrame;
  87. // Parse command line for standard shell commands, DDE, file open
  88. CCommandLineInfo cmdInfo;
  89. ParseCommandLine(cmdInfo);
  90. //禁止程序启动时自动创建一个新文档
  91. cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing;
  92. // Dispatch commands specified on the command line
  93. if (!ProcessShellCommand(cmdInfo))
  94. return FALSE;
  95. // The main window has been initialized, so show and update it.
  96. pMainFrame->ShowWindow(SW_SHOWMAXIMIZED);
  97. pMainFrame->UpdateWindow();
  98. return TRUE;
  99. }
  100. /////////////////////////////////////////////////////////////////////////////
  101. // CAboutDlg dialog used for App About
  102. class CAboutDlg : public CDialog
  103. {
  104. public:
  105. CAboutDlg();
  106. // Dialog Data
  107. //{{AFX_DATA(CAboutDlg)
  108. enum { IDD = IDD_ABOUTBOX };
  109. CEdit m_Licence;
  110. //}}AFX_DATA
  111. // ClassWizard generated virtual function overrides
  112. //{{AFX_VIRTUAL(CAboutDlg)
  113. protected:
  114. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  115. //}}AFX_VIRTUAL
  116. // Implementation
  117. protected:
  118. //{{AFX_MSG(CAboutDlg)
  119. virtual BOOL OnInitDialog();
  120. //}}AFX_MSG
  121. DECLARE_MESSAGE_MAP()
  122. };
  123. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  124. {
  125. //{{AFX_DATA_INIT(CAboutDlg)
  126. //}}AFX_DATA_INIT
  127. }
  128. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  129. {
  130. CDialog::DoDataExchange(pDX);
  131. //{{AFX_DATA_MAP(CAboutDlg)
  132. DDX_Control(pDX, IDC_LICENCE, m_Licence);
  133. //}}AFX_DATA_MAP
  134. }
  135. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  136. //{{AFX_MSG_MAP(CAboutDlg)
  137. //}}AFX_MSG_MAP
  138. END_MESSAGE_MAP()
  139. BOOL CAboutDlg::OnInitDialog() 
  140. {
  141. CDialog::OnInitDialog();
  142. CString text = "    这一程序是自由软件,你可以遵照自由软件基金会出版的GNU 通用公共许可证
  143. 条款来修改和重新发布这一程序,或者用许可证的第二版,或者(根据你的选择)用任何更新的版本。发
  144. 布这一程序的目的是希望它有用,但没有任何担保,甚至没有适合特定目的的隐含的担保。更详细的情况
  145. 请参阅GNU通用公共许可证。你应该已经和程序一起收到一份GNU 通用公共许可证的副本。
  146. 如果还没有,写信给:rnrnFree Software Foundation,
  147. Inc.rn675 Mass Ave, Cambridge rnMA 02139, USA";
  148. m_Licence.SetWindowText(text);
  149. return TRUE;  
  150. }
  151. // App command to run the dialog
  152. void CMiniCADApp::OnAppAbout()
  153. {
  154. CAboutDlg aboutDlg;
  155. aboutDlg.DoModal();
  156. }
  157. /////////////////////////////////////////////////////////////////////////////
  158. void CMiniCADApp::OnFileNew() 
  159. {
  160. // TODO: Add your command handler code here
  161. CWinApp::OnFileNew();
  162. }
  163. /////////////////////////////////////////////////////////////////////////////
  164. void CMiniCADApp::OnFileOpen() 
  165. {
  166. // TODO: Add your command handler code here
  167. CWinApp::OnFileOpen();
  168. }