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.
37 lines
788 B
C++
37 lines
788 B
C++
#pragma once
|
|
#include "Resource.h"
|
|
#include "afxwin.h"
|
|
|
|
// SetMultiRouteDlg 对话框
|
|
|
|
class SetMultiRouteDlg : public CBCGPDialog
|
|
{
|
|
DECLARE_DYNAMIC(SetMultiRouteDlg)
|
|
|
|
public:
|
|
SetMultiRouteDlg(CWnd* pParent = NULL); // 标准构造函数
|
|
virtual ~SetMultiRouteDlg();
|
|
|
|
// 对话框数据
|
|
enum { IDD = IDD_DLG_SETMULTIROUTE };
|
|
|
|
double azmuth;
|
|
double heightInterval;
|
|
double lineInterval;
|
|
double numLine;
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
virtual BOOL OnInitDialog();
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
afx_msg void OnBnClickedOk();
|
|
void SetPointNumber(int num);
|
|
int GetHPointNumber();
|
|
private:
|
|
CBCGPComboBox m_HPtCombobox;
|
|
int numPoints;
|
|
int selectHPtNumber;
|
|
public:
|
|
afx_msg void OnCbnSelchangeComboHpt();
|
|
};
|