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.
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "Resource.h"
|
|
|
|
|
#include "Globe.h"
|
|
|
|
|
#include "afxwin.h"
|
|
|
|
|
#include "../Include/8BMapDLL_type.h"
|
|
|
|
|
using namespace B8MapDLL;
|
|
|
|
|
// SaveZoneDlg <20>Ի<EFBFBD><D4BB><EFBFBD>
|
|
|
|
|
|
|
|
|
|
class CSaveZoneDlg : public CBCGPDialog
|
|
|
|
|
{
|
|
|
|
|
DECLARE_DYNAMIC(CSaveZoneDlg)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
CSaveZoneDlg(CWnd* pParent = NULL); // <20><><EFBFBD><D7BC><EFBFBD>캯<EFBFBD><ECBAAF>
|
|
|
|
|
virtual ~CSaveZoneDlg();
|
|
|
|
|
|
|
|
|
|
// <20>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
enum { IDD = IDD_DIALOG_ZONESETTING };
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV ֧<><D6A7>
|
|
|
|
|
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();
|
|
|
|
|
};
|