2017-09-15 03:48:38 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017- Statoil ASA
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2017-09-15 03:48:38 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2017-09-15 03:48:38 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2017-09-15 03:48:38 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2018-05-28 06:26:56 -05:00
|
|
|
namespace caf
|
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
class PdmObject;
|
2018-05-28 06:26:56 -05:00
|
|
|
};
|
|
|
|
|
2017-09-15 03:48:38 -05:00
|
|
|
class RicSummaryCurveCreatorSplitterUi;
|
2017-10-27 01:26:20 -05:00
|
|
|
class RimSummaryPlot;
|
2018-05-07 02:45:50 -05:00
|
|
|
class RimSummaryCase;
|
2017-09-15 03:48:38 -05:00
|
|
|
|
2017-09-15 05:52:26 -05:00
|
|
|
//==================================================================================================
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
|
|
|
///
|
2017-09-15 05:52:26 -05:00
|
|
|
//==================================================================================================
|
2020-02-18 05:29:13 -06:00
|
|
|
class RicSummaryPlotEditorDialog : public QDialog
|
2017-09-15 03:48:38 -05:00
|
|
|
{
|
2017-09-27 07:35:12 -05:00
|
|
|
Q_OBJECT
|
2017-09-15 03:48:38 -05:00
|
|
|
public:
|
2020-02-18 05:29:13 -06:00
|
|
|
RicSummaryPlotEditorDialog( QWidget* parent );
|
|
|
|
~RicSummaryPlotEditorDialog() override;
|
2017-09-15 03:48:38 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
void updateFromSummaryPlot( RimSummaryPlot* summaryPlot );
|
|
|
|
void updateFromDefaultCases( const std::vector<caf::PdmObject*> defaultSources );
|
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:
|
2019-12-04 06:04:44 -06:00
|
|
|
RicSummaryCurveCreatorSplitterUi* m_curveCreatorSplitterUi;
|
2017-09-15 03:48:38 -05:00
|
|
|
};
|