ResInsight/ApplicationLibCode/ProjectDataModel/Summary/RimSummaryPlotAxisFormatter.h

59 lines
2.0 KiB
C
Raw Normal View History

2016-10-10 04:05:45 -05:00
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2016 Statoil ASA
//
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.
//
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.
//
// 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>
#include <set>
#include <vector>
#include <qwt_plot.h>
class RimAsciiDataCurve;
2016-10-10 04:05:45 -05:00
class RimSummaryCurve;
class RimPlotAxisProperties;
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;
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 );
private:
QString autoAxisTitle() const;
static std::string shortCalculationName( const std::string& calculationName );
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;
};