Files
coco df489d5640 a
2026-07-03 16:05:30 +08:00

40 lines
1.0 KiB
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#ifndef C_OPTION_3D_SETTING_DIALOG_H_20190718
#define C_OPTION_3D_SETTING_DIALOG_H_20190718
#include "afxwin.h"
#pragma once
// COption3DSettingDlg 对话框
class COption3DSettingDlg : public CDialog
{
DECLARE_DYNAMIC(COption3DSettingDlg)
public:
static COption3DSettingDlg* GetInstance();
// 对话框数据
enum { IDD = IDD_DIALOG_OPTION_3D_SETTING };
virtual BOOL OnInitDialog();
//0:跨孔(Geomative) 1:井地井(Geomative)2:赛盈跨孔AM
int GetMediumType(); //获取选中的装置类型
CString GetScriptName(); //获取脚本名称
CString GetTimeInterval(); //获取时间间隔
CString GetOperator(); //获取操作员
CString GetNote(); //获取备注
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
private:
COption3DSettingDlg(CWnd* pParent = NULL); // 标准构造函数
virtual ~COption3DSettingDlg();
CComboBox m_comMediumType;
CEdit m_editScriptName;
CEdit m_editTimeInterval;
CEdit m_editOperator;
CEdit m_editNote;
};
#endif