CAD.cpp
上传用户:shangwu01
上传日期:2013-04-22
资源大小:707k
文件大小:5k
源码类别:

CAD

开发平台:

Visual C++

  1. // CAD.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "CAD.h"
  5. #include "MainFrm.h"
  6. #include "CADDoc.h"
  7. #include "CADView.h"
  8. #include "Splash.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CCADApp
  16. BEGIN_MESSAGE_MAP(CCADApp, CWinApp)
  17. //{{AFX_MSG_MAP(CCADApp)
  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. // CCADApp construction
  30. CCADApp::CCADApp()
  31. {
  32. // TODO: add construction code here,
  33. // Place all significant initialization in InitInstance
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // The one and only CCADApp object
  37. CCADApp theApp;
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CCADApp initialization
  40. BOOL CCADApp::InitInstance()
  41. {
  42. // CG: The following block was added by the Splash Screen component. { CCommandLineInfo cmdInfo; ParseCommandLine(cmdInfo); CSplashWnd::EnableSplashScreen(cmdInfo.m_bShowSplash); }
  43. AfxEnableControlContainer();
  44. this->SetDialogBkColor(RGB(230,230,250),RGB(0,0,255));
  45. // Standard initialization
  46. // If you are not using these features and wish to reduce the size
  47. //  of your final executable, you should remove from the following
  48. //  the specific initialization routines you do not need.
  49. #ifdef _AFXDLL
  50. Enable3dControls(); // Call this when using MFC in a shared DLL
  51. #else
  52. Enable3dControlsStatic(); // Call this when linking to MFC statically
  53. #endif
  54. // Change the registry key under which our settings are stored.
  55. // TODO: You should modify this string to be something appropriate
  56. // such as the name of your company or organization.
  57. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  58. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  59. // Register the application's document templates.  Document templates
  60. //  serve as the connection between documents, frame windows and views.
  61. CSingleDocTemplate* pDocTemplate;
  62. pDocTemplate = new CSingleDocTemplate(
  63. IDR_MAINFRAME,
  64. RUNTIME_CLASS(CCADDoc),
  65. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  66. RUNTIME_CLASS(CCADView));
  67. AddDocTemplate(pDocTemplate);
  68. // Parse command line for standard shell commands, DDE, file open
  69. CCommandLineInfo cmdInfo;
  70. ParseCommandLine(cmdInfo);
  71. // Dispatch commands specified on the command line
  72. if (!ProcessShellCommand(cmdInfo))
  73. return FALSE;
  74. // The one and only window has been initialized, so show and update it.
  75. m_pMainWnd->ShowWindow(SW_SHOW);
  76. m_pMainWnd->UpdateWindow();
  77. return TRUE;
  78. }
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CAboutDlg dialog used for App About
  81. class CAboutDlg : public CDialog
  82. {
  83. public:
  84. CAboutDlg();
  85. // Dialog Data
  86. //{{AFX_DATA(CAboutDlg)
  87. enum { IDD = IDD_ABOUTBOX };
  88. //}}AFX_DATA
  89. // ClassWizard generated virtual function overrides
  90. //{{AFX_VIRTUAL(CAboutDlg)
  91. protected:
  92. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  93. //}}AFX_VIRTUAL
  94. // Implementation
  95. protected:
  96. //{{AFX_MSG(CAboutDlg)
  97. // No message handlers
  98. //}}AFX_MSG
  99. DECLARE_MESSAGE_MAP()
  100. };
  101. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  102. {
  103. //{{AFX_DATA_INIT(CAboutDlg)
  104. //}}AFX_DATA_INIT
  105. }
  106. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  107. {
  108. CDialog::DoDataExchange(pDX);
  109. //{{AFX_DATA_MAP(CAboutDlg)
  110. //}}AFX_DATA_MAP
  111. }
  112. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  113. //{{AFX_MSG_MAP(CAboutDlg)
  114. // No message handlers
  115. //}}AFX_MSG_MAP
  116. END_MESSAGE_MAP()
  117. // App command to run the dialog
  118. void CCADApp::OnAppAbout()
  119. {
  120. CAboutDlg aboutDlg;
  121. aboutDlg.DoModal();
  122. }
  123. /////////////////////////////////////////////////////////////////////////////
  124. // CCADApp message handlers
  125. BOOL CCADApp::PreTranslateMessage(MSG* pMsg)
  126. {
  127. // CG: The following lines were added by the Splash Screen component. if (CSplashWnd::PreTranslateAppMessage(pMsg)) return TRUE; return CWinApp::PreTranslateMessage(pMsg);
  128. }