mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-03 20:20:48 -06:00
38 lines
858 B
C++
38 lines
858 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
namespace caf
|
|
{
|
|
class PdmObject;
|
|
class PdmUiPropertyView;
|
|
} // namespace caf
|
|
|
|
class QDialogButtonBox;
|
|
class QWidget;
|
|
class QString;
|
|
class QStringList;
|
|
|
|
namespace caf
|
|
{
|
|
class PdmUiTabbedPropertyViewDialog : public QDialog
|
|
{
|
|
public:
|
|
PdmUiTabbedPropertyViewDialog( caf::PdmObject* object,
|
|
const QStringList& uiConfigNameForTabs,
|
|
const QString& windowTitle,
|
|
QWidget* parent );
|
|
~PdmUiTabbedPropertyViewDialog() override;
|
|
|
|
QDialogButtonBox* dialogButtonBox();
|
|
|
|
protected:
|
|
QSize minimumSizeHint() const override;
|
|
QSize sizeHint() const override;
|
|
|
|
private:
|
|
std::vector<PdmUiPropertyView*> m_propertyViewTabs;
|
|
QDialogButtonBox* m_dialogButtonBox;
|
|
};
|
|
|
|
} // namespace caf
|