2016-10-10 04:05:45 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2016 Statoil ASA
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2016-10-10 04:05:45 -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
|
|
|
//
|
2016-10-10 04:05:45 -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>
|
2016-10-10 04:05:45 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
2017-03-19 03:02:06 -05:00
|
|
|
#include <set>
|
2019-09-06 03:40:57 -05:00
|
|
|
#include <vector>
|
2017-03-19 03:02:06 -05:00
|
|
|
|
2019-03-13 02:38:18 -05:00
|
|
|
#include <qwt_plot.h>
|
|
|
|
|
2017-08-17 07:24:49 -05:00
|
|
|
class RimAsciiDataCurve;
|
2016-10-10 04:05:45 -05:00
|
|
|
class RimSummaryCurve;
|
2019-02-25 07:54:36 -06:00
|
|
|
class RimPlotAxisProperties;
|
2021-02-17 03:18:21 -06:00
|
|
|
class RiaSummaryCurveDefinition;
|
2016-10-10 04:05:45 -05:00
|
|
|
|
2020-02-28 07:51:21 -06:00
|
|
|
class RiuQwtPlotWidget;
|
2016-10-10 04:05:45 -05:00
|
|
|
|
|
|
|
class QwtPlotCurve;
|
|
|
|
|
2019-11-29 07:00:22 -06:00
|
|
|
class RimSummaryPlotAxisFormatter
|
2016-10-10 04:05:45 -05:00
|
|
|
{
|
|
|
|
public:
|
2020-02-28 07:51:21 -06:00
|
|
|
RimSummaryPlotAxisFormatter( RimPlotAxisProperties* axisProperties,
|
|
|
|
const std::vector<RimSummaryCurve*>& summaryCurves,
|
|
|
|
const std::vector<RiaSummaryCurveDefinition>& curveDefinitions,
|
|
|
|
const std::vector<RimAsciiDataCurve*>& asciiCurves,
|
|
|
|
const std::set<QString>& timeHistoryCurveQuantities );
|
2016-10-10 04:05:45 -05:00
|
|
|
|
2020-02-28 07:51:21 -06:00
|
|
|
void applyAxisPropertiesToPlot( RiuQwtPlotWidget* qwtPlot );
|
2016-11-18 08:03:35 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString autoAxisTitle() const;
|
2019-09-06 03:40:57 -05:00
|
|
|
|
|
|
|
static std::string shortCalculationName( const std::string& calculationName );
|
2016-11-18 08:03:35 -06:00
|
|
|
|
|
|
|
private:
|
2020-02-28 07:51:21 -06:00
|
|
|
RimPlotAxisProperties* m_axisProperties;
|
|
|
|
const std::vector<RimSummaryCurve*> m_summaryCurves;
|
|
|
|
const std::vector<RiaSummaryCurveDefinition> m_curveDefinitions;
|
|
|
|
const std::vector<RimAsciiDataCurve*> m_asciiDataCurves;
|
|
|
|
const std::set<QString> m_timeHistoryCurveQuantities;
|
2016-11-18 08:03:35 -06:00
|
|
|
};
|