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.
29 lines
478 B
C
29 lines
478 B
C
3 weeks ago
|
#ifndef nmWxSelectWellsDlg_H
|
||
|
#define nmWxSelectWellsDlg_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "nmSubWxs_global.h"
|
||
|
|
||
|
class QVBoxLayout;
|
||
|
|
||
|
class NM_SUB_WXS_EXPORT nmWxSelectWellsDlg : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
nmWxSelectWellsDlg(QWidget* parent);
|
||
|
~nmWxSelectWellsDlg();
|
||
|
|
||
|
void setWidget(QWidget*);
|
||
|
private:
|
||
|
QVBoxLayout* m_mainLayout;
|
||
|
private:
|
||
|
void initUI();
|
||
|
|
||
|
private slots:
|
||
|
void on_accepted();
|
||
|
void on_rejected();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // nmWxSelectWellsDlg_H
|