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.
|
|
|
|
#ifndef NMWXSELECTRESULTWELLSDLG_H
|
|
|
|
|
#define NMWXSELECTRESULTWELLSDLG_H
|
|
|
|
|
|
|
|
|
|
#include "iDlgBase.h"
|
|
|
|
|
#include "nmSubWxs_global.h"
|
|
|
|
|
#include "nmWxSelectResultWellsWidget.h"
|
|
|
|
|
|
|
|
|
|
class QVBoxLayout;
|
|
|
|
|
|
|
|
|
|
class NM_SUB_WXS_EXPORT nmWxSelectResultWellsDlg : public iDlgBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
nmWxSelectResultWellsDlg(QWidget* parent = NULL);
|
|
|
|
|
~nmWxSelectResultWellsDlg();
|
|
|
|
|
|
|
|
|
|
void setWidget(QWidget*);
|
|
|
|
|
private:
|
|
|
|
|
QVBoxLayout* m_mainLayout;
|
|
|
|
|
nmWxSelectResultWellsWidget* m_wellListWidget;
|
|
|
|
|
private:
|
|
|
|
|
void initUI();
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void wellSelected(const QString& wellName);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void on_accepted();
|
|
|
|
|
void on_rejected();
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // NMWXSELECTRESULTWELLSDLG_H
|