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

绘图程序

开发平台:

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. //}}AFX_DATA
  110. // ClassWizard generated virtual function overrides
  111. //{{AFX_VIRTUAL(CAboutDlg)
  112. protected:
  113. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  114. //}}AFX_VIRTUAL
  115. // Implementation
  116. protected:
  117. //{{AFX_MSG(CAboutDlg)
  118. // No message handlers
  119. //}}AFX_MSG
  120. DECLARE_MESSAGE_MAP()
  121. };
  122. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  123. {
  124. //{{AFX_DATA_INIT(CAboutDlg)
  125. //}}AFX_DATA_INIT
  126. }
  127. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  128. {
  129. CDialog::DoDataExchange(pDX);
  130. //{{AFX_DATA_MAP(CAboutDlg)
  131. //}}AFX_DATA_MAP
  132. }
  133. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  134. //{{AFX_MSG_MAP(CAboutDlg)
  135. // No message handlers
  136. //}}AFX_MSG_MAP
  137. END_MESSAGE_MAP()
  138. // App command to run the dialog
  139. void CMiniCADApp::OnAppAbout()
  140. {
  141. CAboutDlg aboutDlg;
  142. aboutDlg.DoModal();
  143. }
  144. /////////////////////////////////////////////////////////////////////////////
  145. void CMiniCADApp::OnFileNew() 
  146. {
  147. // TODO: Add your command handler code here
  148. CWinApp::OnFileNew();
  149. }
  150. /////////////////////////////////////////////////////////////////////////////
  151. void CMiniCADApp::OnFileOpen() 
  152. {
  153. // TODO: Add your command handler code here
  154. CWinApp::OnFileOpen();
  155. }