DemoDoc.cpp
上传用户:shuini
上传日期:2007-02-05
资源大小:103k
文件大小:2k
源码类别:

工具条

开发平台:

Visual C++

  1. // DemoDoc.cpp : implementation of the CDemoDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "Demo.h"
  5. #include "DemoDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDemoDoc
  13. IMPLEMENT_DYNCREATE(CDemoDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CDemoDoc, CDocument)
  15. //{{AFX_MSG_MAP(CDemoDoc)
  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. // CDemoDoc construction/destruction
  22. CDemoDoc::CDemoDoc()
  23. {
  24. // TODO: add one-time construction code here
  25. }
  26. CDemoDoc::~CDemoDoc()
  27. {
  28. }
  29. BOOL CDemoDoc::OnNewDocument()
  30. {
  31. if (!CDocument::OnNewDocument())
  32. return FALSE;
  33. ((CEditView*)m_viewList.GetHead())->SetWindowText(NULL);
  34. // TODO: add reinitialization code here
  35. // (SDI documents will reuse this document)
  36. return TRUE;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CDemoDoc serialization
  40. void CDemoDoc::Serialize(CArchive& ar)
  41. {
  42. // CEditView contains an edit control which handles all serialization
  43. ((CEditView*)m_viewList.GetHead())->SerializeRaw(ar);
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CDemoDoc diagnostics
  47. #ifdef _DEBUG
  48. void CDemoDoc::AssertValid() const
  49. {
  50. CDocument::AssertValid();
  51. }
  52. void CDemoDoc::Dump(CDumpContext& dc) const
  53. {
  54. CDocument::Dump(dc);
  55. }
  56. #endif //_DEBUG
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CDemoDoc commands