XDADoc.cpp
上传用户:toomm12
上传日期:2022-04-29
资源大小:1871k
文件大小:2k
源码类别:

2D图形编程

开发平台:

Visual C++

  1. // XDADoc.cpp : implementation of the CXDADoc class
  2. //
  3. #include "stdafx.h"
  4. #include "XDA.h"
  5. #include "XDADoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CXDADoc
  13. IMPLEMENT_DYNCREATE(CXDADoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CXDADoc, CDocument)
  15. //{{AFX_MSG_MAP(CXDADoc)
  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. // CXDADoc construction/destruction
  22. CXDADoc::CXDADoc()
  23. {
  24. // TODO: add one-time construction code here
  25.  x1=1,x2=521,y1=2,y2=252,c=255;;
  26. }
  27. CXDADoc::~CXDADoc()
  28. {
  29. }
  30. BOOL CXDADoc::OnNewDocument()
  31. {
  32. if (!CDocument::OnNewDocument())
  33. return FALSE;
  34. // TODO: add reinitialization code here
  35. // (SDI documents will reuse this document)
  36. return TRUE;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CXDADoc serialization
  40. void CXDADoc::Serialize(CArchive& ar)
  41. {
  42. if (ar.IsStoring())
  43. {
  44. // TODO: add storing code here
  45. }
  46. else
  47. {
  48. // TODO: add loading code here
  49. }
  50. }
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CXDADoc diagnostics
  53. #ifdef _DEBUG
  54. void CXDADoc::AssertValid() const
  55. {
  56. CDocument::AssertValid();
  57. }
  58. void CXDADoc::Dump(CDumpContext& dc) const
  59. {
  60. CDocument::Dump(dc);
  61. }
  62. #endif //_DEBUG
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CXDADoc commands