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

GDI/图象编程

开发平台:

Visual C++

  1. #if !defined(AFX_DLGLAYERMANAGER_H__25894510_5C33_4639_88B3_10597FD900F4__INCLUDED_)
  2. #define AFX_DLGLAYERMANAGER_H__25894510_5C33_4639_88B3_10597FD900F4__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgLayerManager.h : header file
  7. //
  8. #include "../QObjects/include/QMapObj.h"
  9. #include "afxtempl.h"
  10. #include <vector>
  11. using namespace std;
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CDlgLayerManager dialog
  14. class CDlgLayerManager : public CDialog
  15. {
  16. // Construction
  17. public:
  18. void SetControlContent(CQLayerObj * pLayer);
  19. void SetControlEdit(BOOL bEdit);
  20. void ResetList(CQMapObj * pMap);
  21. void ResetList(vector<CQLayerObj *> pLyrVector);
  22. CDlgLayerManager(int nOpflag,CQMapObj * pMap,CWnd* pParent = NULL);   // standard constructor
  23. // Dialog Data
  24. //{{AFX_DATA(CDlgLayerManager)
  25. enum { IDD = IDD_DIALOG_LAYER_MANAGER_QGIS };
  26. CListCtrl m_LayerList;
  27. long m_lLayerID;
  28. CString m_szLayerName;
  29. CString m_szLayerDis;
  30. int m_nLayerShow;
  31. int m_nLayerDel;
  32. int m_nLayerEdit;
  33. //}}AFX_DATA
  34. CQMapObj * m_pMap;
  35. CQLayerObj * m_pcurLyr;
  36. int m_nIndex;
  37. int m_nOpflag;
  38. vector<CQLayerObj *> m_pLyrVector;
  39. vector<CQLayerObj> m_LyrVector; //存放的是一套副本 用来 进行取消操作
  40. // Overrides
  41. // ClassWizard generated virtual function overrides
  42. //{{AFX_VIRTUAL(CDlgLayerManager)
  43. protected:
  44. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  45. afx_msg void OnClickListLayerQgis(NMHDR* pNMHDR, LRESULT* pResult);
  46. afx_msg void OnButtonNewLayerQgis();
  47. afx_msg void OnButtonDeleteLayerQgis();
  48. afx_msg void OnButtonTopQgis();
  49. afx_msg void OnButtonBottomQgis();
  50. afx_msg void OnButtonPreQgis();
  51. afx_msg void OnButtonNextQgis();
  52. afx_msg void OnButtonSetCurQgis();
  53. //}}AFX_VIRTUAL
  54. // Implementation
  55. protected:
  56. // Generated message map functions
  57. //{{AFX_MSG(CDlgLayerManager)
  58. virtual BOOL OnInitDialog();
  59. virtual void OnOK();
  60. virtual void OnCancel();
  61. //}}AFX_MSG
  62. DECLARE_MESSAGE_MAP()
  63. };
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  66. #endif // !defined(AFX_DLGLAYERMANAGER_H__25894510_5C33_4639_88B3_10597FD900F4__INCLUDED_)