MapDemoDoc.cpp
上传用户:jc6688
上传日期:2013-05-06
资源大小:344k
文件大小:2k
源码类别:

GPS编程

开发平台:

Visual C++

  1. // MapDemoDoc.cpp : implementation of the CMapDemoDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "MapDemo.h"
  5. #include "MapDemoDoc.h"
  6. #include "MapView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMapDemoDoc
  14. IMPLEMENT_DYNCREATE(CMapDemoDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CMapDemoDoc, CDocument)
  16. //{{AFX_MSG_MAP(CMapDemoDoc)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMapDemoDoc construction/destruction
  23. CMapDemoDoc::CMapDemoDoc()
  24. {
  25. // TODO: add one-time construction code here
  26. }
  27. CMapDemoDoc::~CMapDemoDoc()
  28. {
  29. }
  30. BOOL CMapDemoDoc::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. // CMapDemoDoc serialization
  40. void CMapDemoDoc::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. // CMapDemoDoc diagnostics
  53. #ifdef _DEBUG
  54. void CMapDemoDoc::AssertValid() const
  55. {
  56. CDocument::AssertValid();
  57. }
  58. void CMapDemoDoc::Dump(CDumpContext& dc) const
  59. {
  60. CDocument::Dump(dc);
  61. }
  62. #endif //_DEBUG
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CMapDemoDoc commands
  65. void CMapDemoDoc::NotifyPaletteChanged(CWnd* pFocusWnd)
  66. {
  67. // For each View
  68. POSITION pos = GetFirstViewPosition();
  69. while (pos != NULL) {
  70. CMapView* pView = (CMapView*)GetNextView(pos);
  71. if (pView != NULL) {
  72. pView->NotifyPaletteChanged(pFocusWnd);
  73. }
  74. }
  75. }