DlgCreateContour.h
上传用户:juying163
上传日期:2014-09-24
资源大小:5867k
文件大小:2k
源码类别:

GIS编程

开发平台:

Visual C++

  1. #if !defined(AFX_DLGCREATECONTOUR_H__DD2617E5_B9E0_4B2C_A5D2_45D2EAEA9A62__INCLUDED_)
  2. #define AFX_DLGCREATECONTOUR_H__DD2617E5_B9E0_4B2C_A5D2_45D2EAEA9A62__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgCreateContour.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDlgCreateContour dialog
  10. class CDlgCreateContour : public CDialog
  11. {
  12. // Construction
  13. private:
  14. IRasterDatasetPtr m_ipR;
  15. ITinPtr m_ipT;
  16.     ITinSurfacePtr m_ipTS;
  17. CString m_inputSurfaceDir;
  18. CString M_inputSurfaceName;
  19. CString m_OutputFeatureDir;
  20. CString m_OutputFeatureName;
  21. public:
  22.     void ComputerHeightRange(ITin *ipT);
  23. void ComputerHeightRange(IRasterDataset * pRasterDataset);
  24. void CreateContour();
  25. void CreateContour(IRasterDataset * ipR);
  26. void ComputerOutputInfo(double Zmax,double Zmin,double interval,double base);
  27. public:
  28. CDlgCreateContour(CWnd* pParent = NULL);   // standard constructor
  29. // Dialog Data
  30. //{{AFX_DATA(CDlgCreateContour)
  31. enum { IDD = IDD_DLG_CREATE_CONTOUR };
  32. CEdit m_edit_Contour_ContourInterval;
  33. CEdit m_edit_ContourBaseContour;
  34. CString m_edit_Contour_SurfaceInput;
  35. CString m_edit_ContourFeatureOutput;
  36. double m_edit_Contour_MaxContour;
  37. double m_edit_Contour_MinContour;
  38. double m_edit_ContourZMax_in;
  39. double m_edit_ContourZMin_in;
  40. UINT m_edit_ContourTotalNumContour;
  41. //}}AFX_DATA
  42. // Overrides
  43. // ClassWizard generated virtual function overrides
  44. //{{AFX_VIRTUAL(CDlgCreateContour)
  45. protected:
  46. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. protected:
  50. // Generated message map functions
  51. //{{AFX_MSG(CDlgCreateContour)
  52. afx_msg void OnButtonContourFeatureOutput();
  53. afx_msg void OnButtonContourSurfaceInput();
  54. virtual void OnOK();
  55. afx_msg void OnChangeEditContourBasecontour();
  56. afx_msg void OnChangeEditContourContourinterval();
  57. //}}AFX_MSG
  58. DECLARE_MESSAGE_MAP()
  59. };
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_DLGCREATECONTOUR_H__DD2617E5_B9E0_4B2C_A5D2_45D2EAEA9A62__INCLUDED_)