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

CAD

开发平台:

Visual C++

  1. // CAD2006Doc.cpp : implementation of the CCAD2006Doc class
  2. //
  3. #include "stdafx.h"
  4. #include "CAD2006.h"
  5. #include "CAD2006Doc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CCAD2006Doc
  13. IMPLEMENT_DYNCREATE(CCAD2006Doc, CDocument)
  14. BEGIN_MESSAGE_MAP(CCAD2006Doc, CDocument)
  15. //{{AFX_MSG_MAP(CCAD2006Doc)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CCAD2006Doc construction/destruction
  22. CCAD2006Doc::CCAD2006Doc()
  23. {
  24. // TODO: add one-time construction code here
  25. /* m_shapetool->SetBackColor(RGB(0,0,0));
  26. m_shapetool->SetBorderColor(RGB(0,0,0));
  27. m_shapetool->SetBorderStyle(PS_SOLID);
  28. m_shapetool->SetBorderWidth(1);*/
  29. // m_shapetool = new CShape;
  30. m_tool = arrow;
  31. m_shape = shape;
  32. }
  33. CCAD2006Doc::~CCAD2006Doc()
  34. {
  35. for( int i = 0; i < m_shapearray.GetSize() -1; i++ )
  36. {
  37. CShape* temp = (CShape*)m_shapearray.operator [](i);
  38. delete temp;
  39. }
  40. // delete m_shapetool;
  41. }
  42. BOOL CCAD2006Doc::OnNewDocument()
  43. {
  44. if (!CDocument::OnNewDocument())
  45. return FALSE;
  46. // TODO: add reinitialization code here
  47. // (SDI documents will reuse this document)
  48. return TRUE;
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CCAD2006Doc serialization
  52. void CCAD2006Doc::Serialize(CArchive& ar)
  53. {
  54. if (ar.IsStoring())
  55. {
  56. // TODO: add storing code here
  57. }
  58. else
  59. {
  60. // TODO: add loading code here
  61. }
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CCAD2006Doc diagnostics
  65. #ifdef _DEBUG
  66. void CCAD2006Doc::AssertValid() const
  67. {
  68. CDocument::AssertValid();
  69. }
  70. void CCAD2006Doc::Dump(CDumpContext& dc) const
  71. {
  72. CDocument::Dump(dc);
  73. }
  74. #endif //_DEBUG
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CCAD2006Doc commands