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

Windows编程

开发平台:

Visual C++

  1. // maindoc.cpp : implementation of the CMainDoc 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. #include "stdafx.h"
  13. #include "viewex.h"
  14. #include "enterdlg.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CMainDoc
  21. IMPLEMENT_SERIAL(CMainDoc, CDocument, 0 /* schema number*/ )
  22. BEGIN_MESSAGE_MAP(CMainDoc, CDocument)
  23. //{{AFX_MSG_MAP(CMainDoc)
  24. ON_COMMAND(IDM_CHANGEDATA, OnChangeData)
  25. //}}AFX_MSG_MAP
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMainDoc construction/destruction
  29. CMainDoc::CMainDoc()
  30. {
  31. }
  32. CMainDoc::~CMainDoc()
  33. {
  34. }
  35. BOOL CMainDoc::OnNewDocument()
  36. {
  37. if (!CDocument::OnNewDocument())
  38. return FALSE;
  39. m_strData = "Sample Data String";
  40. m_colorData = RGB(0, 0, 0);
  41. return TRUE;
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CMainDoc serialization
  45. void CMainDoc::Serialize(CArchive&)
  46. {
  47. ASSERT(FALSE);      // this example program does not store data
  48. }
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CMainDoc commands
  51. void CMainDoc::OnChangeData()
  52. {
  53. CEnterDlg dlg;
  54. dlg.m_strInput = m_strData;
  55. if (dlg.DoModal() != IDOK)
  56. return;
  57. m_strData = dlg.m_strInput;
  58. // if this document stored data then we would call SetModifiedFlag here
  59. UpdateAllViews(NULL);   // general update
  60. }
  61. /////////////////////////////////////////////////////////////////////////////