You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
831 B
C++
44 lines
831 B
C++
#pragma once
|
|
|
|
#include "Resource.h"
|
|
#include "Globe.h"
|
|
#include "afxwin.h"
|
|
#include "../Include/8BMapDLL_type.h"
|
|
using namespace B8MapDLL;
|
|
// SaveZoneDlg 对话框
|
|
|
|
class CSaveZoneDlg : public CBCGPDialog
|
|
{
|
|
DECLARE_DYNAMIC(CSaveZoneDlg)
|
|
|
|
public:
|
|
CSaveZoneDlg(CWnd* pParent = NULL); // 标准构造函数
|
|
virtual ~CSaveZoneDlg();
|
|
|
|
// 对话框数据
|
|
enum { IDD = IDD_DIALOG_ZONESETTING };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
virtual BOOL OnInitDialog();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
afx_msg void OnBnClickedOk();
|
|
afx_msg void OnBnClickedCancel();
|
|
CComboBox m_ZoneType;
|
|
CComboBox m_ZoneID;
|
|
CEdit m_EditHeight;
|
|
|
|
int GetZoneType();
|
|
int GetZoneID();
|
|
double GetHeight();
|
|
|
|
private:
|
|
int g_ZoneType;
|
|
int g_ZoneID;
|
|
double g_Height;
|
|
public:
|
|
afx_msg void OnCbnSelchangeComboZonetype();
|
|
};
|