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.
52 lines
996 B
C++
52 lines
996 B
C++
#ifndef NMWXNEWNORMALDLG_H
|
|
#define NMWXNEWNORMALDLG_H
|
|
|
|
#include <QDialog>
|
|
#include <QObject>
|
|
|
|
#include "nmSubWxs_global.h"
|
|
|
|
class nmDataDemo;
|
|
class QCheckBox;
|
|
class QVBoxLayout;
|
|
class QListWidget;
|
|
class QLineEdit;
|
|
class QRadioButton;
|
|
|
|
class NM_SUB_WXS_EXPORT nmWxNewNormalDlg : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
nmWxNewNormalDlg(nmDataDemo*);
|
|
~nmWxNewNormalDlg();
|
|
private:
|
|
// 主布局
|
|
QVBoxLayout* m_pMainLayout;
|
|
// 分析名称lineEdit
|
|
QLineEdit * m_pNameEdit;
|
|
// 常规
|
|
QRadioButton* m_pRadioBTNormal;
|
|
// 特殊
|
|
QRadioButton* m_pRadioBTSpecial;
|
|
// 状态方程
|
|
QRadioButton* m_pRadioBTEquation;
|
|
// 油
|
|
QCheckBox* m_pCheckboxOil;
|
|
// 气
|
|
QCheckBox* m_pCheckboxGas;
|
|
// 凝析油气
|
|
QCheckBox* m_pCheckboxCondensateGas;
|
|
// 水
|
|
QCheckBox* m_pCheckboxWater;
|
|
|
|
nmDataDemo* m_pAnalyzeData;
|
|
//
|
|
void initUI();
|
|
void renderComponents();
|
|
|
|
private slots:
|
|
void on_save();
|
|
};
|
|
|
|
#endif // NMWXNEWNORMALDLG_H
|