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.
51 lines
946 B
C
51 lines
946 B
C
1 month ago
|
#ifndef NMWXNEWNORMALDLG_H
|
||
|
#define NMWXNEWNORMALDLG_H
|
||
1 month ago
|
|
||
|
#include <QDialog>
|
||
|
#include <QObject>
|
||
1 month ago
|
|
||
1 month ago
|
#include "nmSubWxs_global.h"
|
||
1 month ago
|
|
||
|
class nmDataDemo;
|
||
1 month ago
|
class QCheckBox;
|
||
|
class QVBoxLayout;
|
||
|
class QListWidget;
|
||
|
class QLineEdit;
|
||
1 month ago
|
|
||
1 month ago
|
class NM_SUB_WXS_EXPORT nmWxNewNormalDlg : public QDialog
|
||
1 month ago
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
1 month ago
|
nmWxNewNormalDlg(nmDataDemo*);
|
||
|
~nmWxNewNormalDlg();
|
||
1 month ago
|
private:
|
||
1 month ago
|
//
|
||
1 month ago
|
QVBoxLayout* m_mainLayout;
|
||
1 month ago
|
//
|
||
1 month ago
|
QLineEdit * m_nameEdit;
|
||
1 month ago
|
//
|
||
1 month ago
|
QCheckBox* m_checkboxWater;
|
||
|
QCheckBox* m_checkboxOil;
|
||
|
QCheckBox* m_checkboxGas;
|
||
1 month ago
|
//
|
||
1 month ago
|
QListWidget* m_pvtListWidget;
|
||
|
QListWidget* m_iiListWidget;
|
||
|
|
||
1 month ago
|
nmDataDemo* m_pAnalyzeData;
|
||
1 month ago
|
//
|
||
1 month ago
|
void initUI();
|
||
|
void renderComponents();
|
||
1 month ago
|
//
|
||
1 month ago
|
void initPVTList();
|
||
|
void initIIList();
|
||
|
|
||
|
QListWidget* initListWidget(QString listName, QStringList items);
|
||
|
|
||
|
private slots:
|
||
|
void on_pvtSelected();
|
||
|
void on_IISelected();
|
||
|
void on_save();
|
||
|
};
|
||
|
|
||
1 month ago
|
#endif // NMWXNEWNORMALDLG_H
|