CAD2006.cpp
上传用户:ckg1000
上传日期:2013-01-26
资源大小:630k
文件大小:5k
源码类别:

CAD

开发平台:

Visual C++

  1. // CAD2006.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "CAD2006.h"
  5. #include "MainFrm.h"
  6. #include "StartForm.h"
  7. #include "CAD2006Doc.h"
  8. #include "CAD2006View.h"
  9. #include "toolmenuxp.h"
  10. #include "Polygon.h"
  11. #include "circle.h"
  12. #include "ellipse.h"
  13. #ifdef _DEBUG
  14. #define new DEBUG_NEW
  15. #undef THIS_FILE
  16. static char THIS_FILE[] = __FILE__;
  17. #endif
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CCAD2006App
  20. BEGIN_MESSAGE_MAP(CCAD2006App, CWinApp)
  21. //{{AFX_MSG_MAP(CCAD2006App)
  22. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  23. // NOTE - the ClassWizard will add and remove mapping macros here.
  24. //    DO NOT EDIT what you see in these blocks of generated code!
  25. //}}AFX_MSG_MAP
  26. // Standard file based document commands
  27. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  28. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  29. // Standard print setup command
  30. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CCAD2006App construction
  34. CCAD2006App::CCAD2006App()
  35. {
  36. // TODO: add construction code here,
  37. // Place all significant initialization in InitInstance
  38. }
  39. /////////////////////////////////////////////////////////////////////////////
  40. // The one and only CCAD2006App object
  41. COLORREF CShape::m_backColor = RGB(255,255,255);
  42. COLORREF CShape::m_borderColor = RGB(0,0,0);
  43. int CShape::m_borderStyle = 0;
  44. int CShape::m_borderWidth = 1;
  45. int CPolygon::m_nSide = 5;
  46. int CCircle::nRadius = 0;
  47. int CEllipse::nRadius = 0;
  48. //int CTrigon::m_angle = 30;
  49. int CPolygon::m_angle = 30;
  50. //bool CTrigon::blntemp = true;
  51. CCAD2006App theApp;
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CCAD2006App initialization
  54. BOOL CCAD2006App::InitInstance()
  55. {
  56. CStartForm wndForm;
  57. wndForm.Create(IDB_BITMAP_WELCOME);
  58. wndForm.UpdateWindow(); // ::Sleep(2000);
  59. AfxEnableControlContainer();
  60. CMenuXP::InitializeHook();
  61. // Standard initialization
  62. // If you are not using these features and wish to reduce the size
  63. //  of your final executable, you should remove from the following
  64. //  the specific initialization routines you do not need.
  65. #ifdef _AFXDLL
  66. Enable3dControls(); // Call this when using MFC in a shared DLL
  67. #else
  68. Enable3dControlsStatic(); // Call this when linking to MFC statically
  69. #endif
  70. // Change the registry key under which our settings are stored.
  71. // TODO: You should modify this string to be something appropriate
  72. // such as the name of your company or organization.
  73. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  74. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  75. // Register the application's document templates.  Document templates
  76. //  serve as the connection between documents, frame windows and views.
  77. CSingleDocTemplate* pDocTemplate;
  78. pDocTemplate = new CSingleDocTemplate(
  79. IDR_MAINFRAME,
  80. RUNTIME_CLASS(CCAD2006Doc),
  81. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  82. RUNTIME_CLASS(CCAD2006View));
  83. AddDocTemplate(pDocTemplate);
  84. // Parse command line for standard shell commands, DDE, file open
  85. CCommandLineInfo cmdInfo;
  86. ParseCommandLine(cmdInfo);
  87. // Dispatch commands specified on the command line
  88. if (!ProcessShellCommand(cmdInfo))
  89. return FALSE;
  90. // The one and only window has been initialized, so show and update it.
  91. m_pMainWnd->SetWindowText("第二小组--CAD2006");
  92. m_pMainWnd->ShowWindow(SW_SHOWMAXIMIZED);
  93. m_pMainWnd->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. //}}AFX_MSG
  115. DECLARE_MESSAGE_MAP()
  116. };
  117. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  118. {
  119. //{{AFX_DATA_INIT(CAboutDlg)
  120. //}}AFX_DATA_INIT
  121. }
  122. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  123. {
  124. CDialog::DoDataExchange(pDX);
  125. //{{AFX_DATA_MAP(CAboutDlg)
  126. //}}AFX_DATA_MAP
  127. }
  128. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  129. //{{AFX_MSG_MAP(CAboutDlg)
  130. //}}AFX_MSG_MAP
  131. END_MESSAGE_MAP()
  132. // App command to run the dialog
  133. void CCAD2006App::OnAppAbout()
  134. {
  135. CAboutDlg aboutDlg;
  136. aboutDlg.DoModal();
  137. }
  138. /////////////////////////////////////////////////////////////////////////////
  139. // CCAD2006App message handlers
  140. int CCAD2006App::ExitInstance() 
  141. {
  142. // TODO: Add your specialized code here and/or call the base class
  143. CMenuXP::UninitializeHook();
  144. return CWinApp::ExitInstance();
  145. }