PtreeDoc.cpp
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:2k
源码类别:

组合框控件

开发平台:

Visual C++

  1. // PtreeDoc.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "prop.h"
  5. #include "PtreeDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPtreeDoc
  13. IMPLEMENT_DYNCREATE(CPtreeDoc, CDocument)
  14. CPtreeDoc::CPtreeDoc()
  15. {
  16. }
  17. BOOL CPtreeDoc::OnNewDocument()
  18. {
  19. if (!CDocument::OnNewDocument())
  20. return FALSE;
  21. return TRUE;
  22. }
  23. CPtreeDoc::~CPtreeDoc()
  24. {
  25. }
  26. BEGIN_MESSAGE_MAP(CPtreeDoc, CDocument)
  27. //{{AFX_MSG_MAP(CPtreeDoc)
  28. // NOTE - the ClassWizard will add and remove mapping macros here.
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CPtreeDoc diagnostics
  33. #ifdef _DEBUG
  34. void CPtreeDoc::AssertValid() const
  35. {
  36. CDocument::AssertValid();
  37. }
  38. void CPtreeDoc::Dump(CDumpContext& dc) const
  39. {
  40. CDocument::Dump(dc);
  41. }
  42. #endif //_DEBUG
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CPtreeDoc serialization
  45. void CPtreeDoc::Serialize(CArchive& ar)
  46. {
  47. if (ar.IsStoring())
  48. {
  49. // TODO: add storing code here
  50. }
  51. else
  52. {
  53. // TODO: add loading code here
  54. }
  55. }
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CPtreeDoc commands
  58. void CPtreeDoc::SetTitle(LPCTSTR lpszTitle) 
  59. {
  60. // TODO: Add your specialized code here and/or call the base class
  61. CString title="TreeWindow";
  62. CDocument::SetTitle(LPCTSTR(title));
  63. }
  64. BOOL CPtreeDoc::SaveModified() 
  65. {
  66. // TODO: Add your specialized code here and/or call the base class
  67. return TRUE;
  68. // return CDocument::SaveModified();
  69. }