31 lines
525 B
C++
31 lines
525 B
C++
#ifndef SELECTWELLDIALOG_H
|
|
#define SELECTWELLDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class SelectWellDialog;
|
|
}
|
|
|
|
class SelectWellDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SelectWellDialog(QWidget *parent = nullptr);
|
|
~SelectWellDialog();
|
|
|
|
private:
|
|
Ui::SelectWellDialog *ui;
|
|
|
|
public:
|
|
void loadStyle(const QString &qssFile);
|
|
void setInfo(QStringList listWell, QStringList listSlf);
|
|
|
|
public slots:
|
|
void slotOkClicked();
|
|
void slotCancelClicked();
|
|
};
|
|
|
|
#endif // SELECTWELLDIALOG_H
|