2017-09-15 03:48:38 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017- Statoil ASA
|
|
|
|
//
|
|
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
class RicSummaryCurveCreatorSplitterUi;
|
2017-10-27 01:26:20 -05:00
|
|
|
class RimSummaryPlot;
|
2017-09-15 03:48:38 -05:00
|
|
|
|
2017-09-15 05:52:26 -05:00
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
2017-09-15 03:48:38 -05:00
|
|
|
class RicSummaryCurveCreatorDialog : public QDialog
|
|
|
|
{
|
2017-09-27 07:35:12 -05:00
|
|
|
Q_OBJECT
|
2017-09-15 03:48:38 -05:00
|
|
|
public:
|
2017-10-02 04:12:31 -05:00
|
|
|
RicSummaryCurveCreatorDialog(QWidget* parent);
|
2017-09-15 03:48:38 -05:00
|
|
|
~RicSummaryCurveCreatorDialog();
|
|
|
|
|
2017-10-27 01:26:20 -05:00
|
|
|
void updateFromSummaryPlot(RimSummaryPlot* summaryPlot);
|
2017-10-02 04:12:31 -05:00
|
|
|
|
2017-09-27 07:35:12 -05:00
|
|
|
private slots:
|
|
|
|
void slotDialogFinished();
|
|
|
|
|
2017-09-15 03:48:38 -05:00
|
|
|
private:
|
|
|
|
RicSummaryCurveCreatorSplitterUi* m_curveCreatorSplitterUi;
|
|
|
|
};
|