QGISDoc.h
上传用户:oybseng
上传日期:2015-04-27
资源大小:7831k
文件大小:2k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // QGISDoc.h : interface of the CQGISDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_QGISDOC_H__1238847A_5523_44D7_9F34_ED19126872EC__INCLUDED_)
  5. #define AFX_QGISDOC_H__1238847A_5523_44D7_9F34_ED19126872EC__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CQGISView;
  10. class CQMapObj;
  11. class CQGISDoc : public CDocument
  12. {
  13. protected: // create from serialization only
  14. CQGISDoc();
  15. DECLARE_DYNCREATE(CQGISDoc)
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CQGISDoc)
  23. public:
  24. virtual BOOL OnNewDocument();
  25. virtual void Serialize(CArchive& ar);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CQGISDoc();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:
  35. public:
  36. CQGISView * GetActiveView();
  37. CQMapObj * m_pMap;          //地图对象
  38. HCURSOR m_hCursorPrev;  //前一光标
  39. HCURSOR m_hCursorCur;   //当前光标
  40. UINT m_MenuItemID;     //记录当前操作
  41. CQGISView * m_pView;
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CQGISDoc)
  45. afx_msg void OnFileSave();
  46. afx_msg void OnFileOpen();
  47. afx_msg void OnMenuExportPointsQgis();
  48. afx_msg void OnMenuImportPointsQgis();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_QGISDOC_H__1238847A_5523_44D7_9F34_ED19126872EC__INCLUDED_)