NPDOC.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // npdoc.cpp : implementation of the CNotepadDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13. #include "stdafx.h"
  14. #include "np.h"
  15. #include "npdoc.h"
  16. #ifdef _DEBUG
  17. #undef THIS_FILE
  18. static char BASED_CODE THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CNotepadDoc
  22. IMPLEMENT_DYNCREATE(CNotepadDoc, CDocument)
  23. BEGIN_MESSAGE_MAP(CNotepadDoc, CDocument)
  24. //{{AFX_MSG_MAP(CNotepadDoc)
  25. ON_COMMAND(ID_FILE_SEND_MAIL, OnFileSendMail)
  26. ON_UPDATE_COMMAND_UI(ID_FILE_SEND_MAIL, OnUpdateFileSendMail)
  27. //}}AFX_MSG_MAP
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CNotepadDoc construction/destruction
  31. CNotepadDoc::CNotepadDoc()
  32. {
  33. }
  34. CNotepadDoc::~CNotepadDoc()
  35. {
  36. }
  37. BOOL CNotepadDoc::OnNewDocument()
  38. {
  39. if (!CDocument::OnNewDocument())
  40. return FALSE;
  41. ((CEditView*)m_viewList.GetHead())->SetWindowText(NULL);
  42. return TRUE;
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CNotepadDoc serialization
  46. void CNotepadDoc::Serialize(CArchive& ar)
  47. {
  48. ((CEditView*)m_viewList.GetHead())->SerializeRaw(ar);
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CNotepadDoc diagnostics
  52. #ifdef _DEBUG
  53. void CNotepadDoc::AssertValid() const
  54. {
  55. CDocument::AssertValid();
  56. }
  57. void CNotepadDoc::Dump(CDumpContext& dc) const
  58. {
  59. CDocument::Dump(dc);
  60. }
  61. #endif //_DEBUG
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CNotepadDoc commands