mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-08 07:03:25 -06:00
167 lines
5.6 KiB
C++
167 lines
5.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2015- Statoil ASA
|
|
// Copyright (C) 2015- Ceetron Solutions AS
|
|
//
|
|
// 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.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RiuResultQwtPlot.h"
|
|
|
|
#include "RigCurveDataTools.h"
|
|
|
|
#include "RimContextCommandBuilder.h"
|
|
|
|
#include "RiuLineSegmentQwtPlotCurve.h"
|
|
|
|
#include "cvfBase.h"
|
|
#include "cvfAssert.h"
|
|
#include "cvfColor3.h"
|
|
|
|
#include "qwt_date_scale_draw.h"
|
|
#include "qwt_date_scale_engine.h"
|
|
#include "qwt_legend.h"
|
|
#include "qwt_plot_curve.h"
|
|
#include "qwt_plot_grid.h"
|
|
#include "qwt_plot_layout.h"
|
|
#include "qwt_scale_engine.h"
|
|
|
|
#include <QMenu>
|
|
#include <QContextMenuEvent>
|
|
#include "RiuSummaryQwtPlot.h"
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RiuResultQwtPlot::RiuResultQwtPlot(QWidget* parent)
|
|
: QwtPlot(parent)
|
|
{
|
|
setDefaults();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RiuResultQwtPlot::~RiuResultQwtPlot()
|
|
{
|
|
deleteAllCurves();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuResultQwtPlot::addCurve(const QString& curveName, const cvf::Color3f& curveColor, const std::vector<QDateTime>& dateTimes, const std::vector<double>& timeHistoryValues)
|
|
{
|
|
RiuLineSegmentQwtPlotCurve* plotCurve = new RiuLineSegmentQwtPlotCurve("Curve 1");
|
|
|
|
plotCurve->setSamplesFromDateAndValues(dateTimes, timeHistoryValues, false);
|
|
plotCurve->setTitle(curveName);
|
|
|
|
plotCurve->setPen(QPen(QColor(curveColor.rByte(), curveColor.gByte(), curveColor.bByte())));
|
|
|
|
plotCurve->attach(this);
|
|
m_plotCurves.push_back(plotCurve);
|
|
|
|
this->setAxisScale( QwtPlot::xTop, QwtDate::toDouble(dateTimes.front()), QwtDate::toDouble(dateTimes.back()));
|
|
|
|
this->replot();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuResultQwtPlot::addCurve(const QString& curveName, const cvf::Color3f& curveColor, const std::vector<double>& frameTimes, const std::vector<double>& timeHistoryValues)
|
|
{
|
|
std::vector<QDateTime> dateTimes;
|
|
|
|
for (size_t i = 0; i < frameTimes.size(); i++)
|
|
{
|
|
dateTimes.push_back(QwtDate::toDateTime(frameTimes[i]));
|
|
}
|
|
|
|
addCurve(curveName, curveColor, dateTimes, timeHistoryValues);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuResultQwtPlot::deleteAllCurves()
|
|
{
|
|
for (size_t i = 0; i < m_plotCurves.size(); i++)
|
|
{
|
|
m_plotCurves[i]->detach();
|
|
delete m_plotCurves[i];
|
|
}
|
|
|
|
m_plotCurves.clear();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QSize RiuResultQwtPlot::sizeHint() const
|
|
{
|
|
return QSize(100, 100);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QSize RiuResultQwtPlot::minimumSizeHint() const
|
|
{
|
|
return QSize(0, 0);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuResultQwtPlot::contextMenuEvent(QContextMenuEvent* event)
|
|
{
|
|
QMenu menu;
|
|
QStringList commandIds;
|
|
|
|
commandIds << "RicNewGridTimeHistoryCurveFeature";
|
|
|
|
RimContextCommandBuilder::appendCommandsToMenu(commandIds, &menu);
|
|
|
|
if (menu.actions().size() > 0)
|
|
{
|
|
menu.exec(event->globalPos());
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuResultQwtPlot::setDefaults()
|
|
{
|
|
RiuSummaryQwtPlot::setCommonPlotBehaviour(this);
|
|
|
|
enableAxis(QwtPlot::xBottom, true);
|
|
enableAxis(QwtPlot::yLeft, true);
|
|
enableAxis(QwtPlot::xTop, false);
|
|
enableAxis(QwtPlot::yRight, false);
|
|
|
|
RiuSummaryQwtPlot::enableDateBasedBottomXAxis(this);
|
|
|
|
setAxisMaxMinor(QwtPlot::xBottom, 2);
|
|
setAxisMaxMinor(QwtPlot::yLeft, 3);
|
|
|
|
// The legend will be deleted in the destructor of the plot or when
|
|
// another legend is inserted.
|
|
QwtLegend* legend = new QwtLegend(this);
|
|
this->insertLegend(legend, BottomLegend);
|
|
}
|