mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 07:16:53 -06:00
375 lines
13 KiB
C++
375 lines
13 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2016- 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.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RiuSummaryQwtPlot.h"
|
|
|
|
#include "RiaApplication.h"
|
|
|
|
#include "RimContextCommandBuilder.h"
|
|
#include "RimProject.h"
|
|
#include "RimSummaryCurve.h"
|
|
#include "RimSummaryPlot.h"
|
|
|
|
#include "RiuMainPlotWindow.h"
|
|
#include "RiuQwtCurvePointTracker.h"
|
|
#include "RiuQwtPlotWheelZoomer.h"
|
|
#include "RiuQwtPlotZoomer.h"
|
|
#include "RiuQwtScalePicker.h"
|
|
|
|
#include "cafSelectionManager.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_plot_magnifier.h"
|
|
#include "qwt_plot_panner.h"
|
|
#include "qwt_plot_zoomer.h"
|
|
#include "qwt_scale_engine.h"
|
|
|
|
#include <QEvent>
|
|
#include <QMenu>
|
|
#include <QWheelEvent>
|
|
|
|
#include <float.h>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RiuSummaryQwtPlot::RiuSummaryQwtPlot(RimSummaryPlot* plotDefinition, QWidget* parent) : QwtPlot(parent)
|
|
{
|
|
Q_ASSERT(plotDefinition);
|
|
m_plotDefinition = plotDefinition;
|
|
|
|
setDefaults();
|
|
|
|
// LeftButton for the zooming
|
|
m_zoomerLeft = new RiuQwtPlotZoomer(canvas());
|
|
m_zoomerLeft->setRubberBandPen(QColor(Qt::black));
|
|
m_zoomerLeft->setTrackerMode(QwtPicker::AlwaysOff);
|
|
m_zoomerLeft->setTrackerPen(QColor(Qt::black));
|
|
m_zoomerLeft->initMousePattern(1);
|
|
|
|
// Attach a zoomer for the right axis
|
|
m_zoomerRight = new RiuQwtPlotZoomer(canvas());
|
|
m_zoomerRight->setAxis(xTop, yRight);
|
|
m_zoomerRight->setTrackerMode(QwtPicker::AlwaysOff);
|
|
m_zoomerRight->initMousePattern(1);
|
|
|
|
// MidButton for the panning
|
|
QwtPlotPanner* panner = new QwtPlotPanner(canvas());
|
|
panner->setMouseButton(Qt::MidButton);
|
|
|
|
auto wheelZoomer = new RiuQwtPlotWheelZoomer(this);
|
|
|
|
connect(wheelZoomer, SIGNAL(zoomUpdated()), SLOT(onZoomedSlot()));
|
|
connect(m_zoomerLeft, SIGNAL(zoomed( const QRectF & )), SLOT(onZoomedSlot()));
|
|
connect(panner, SIGNAL(panned( int , int )), SLOT(onZoomedSlot()));
|
|
|
|
RiuQwtScalePicker* scalePicker = new RiuQwtScalePicker(this);
|
|
connect(scalePicker, SIGNAL(clicked(int, double)), this, SLOT(onAxisClicked(int, double)));
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RiuSummaryQwtPlot::~RiuSummaryQwtPlot()
|
|
{
|
|
if (m_plotDefinition)
|
|
{
|
|
m_plotDefinition->detachAllCurves();
|
|
m_plotDefinition->handleMdiWindowClosed();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimSummaryPlot* RiuSummaryQwtPlot::ownerPlotDefinition()
|
|
{
|
|
return m_plotDefinition;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimViewWindow* RiuSummaryQwtPlot::ownerViewWindow() const
|
|
{
|
|
return m_plotDefinition;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::currentVisibleWindow(QwtInterval* leftAxis, QwtInterval* rightAxis, QwtInterval* timeAxis) const
|
|
{
|
|
*leftAxis = axisScaleDiv(yLeft).interval();
|
|
*rightAxis = axisScaleDiv(yRight).interval();
|
|
*timeAxis = axisScaleDiv(xBottom).interval();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::setZoomWindow(const QwtInterval& leftAxis, const QwtInterval& rightAxis, const QwtInterval& timeAxis)
|
|
{
|
|
{
|
|
QRectF zoomWindow;
|
|
zoomWindow.setLeft(timeAxis.minValue());
|
|
zoomWindow.setRight(timeAxis.maxValue());
|
|
zoomWindow.setTop(leftAxis.maxValue());
|
|
zoomWindow.setBottom(leftAxis.minValue());
|
|
|
|
m_zoomerLeft->zoom(zoomWindow);
|
|
}
|
|
|
|
{
|
|
QRectF zoomWindow;
|
|
zoomWindow.setLeft(timeAxis.minValue());
|
|
zoomWindow.setRight(timeAxis.maxValue());
|
|
zoomWindow.setTop(rightAxis.maxValue());
|
|
zoomWindow.setBottom(rightAxis.minValue());
|
|
|
|
m_zoomerRight->zoom(zoomWindow);
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QSize RiuSummaryQwtPlot::minimumSizeHint() const
|
|
{
|
|
return QSize(0, 100);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::contextMenuEvent(QContextMenuEvent* event)
|
|
{
|
|
QMenu menu;
|
|
QStringList commandIds;
|
|
|
|
caf::SelectionManager::instance()->setSelectedItem(ownerPlotDefinition());
|
|
|
|
commandIds << "RicShowPlotDataFeature";
|
|
|
|
RimContextCommandBuilder::appendCommandsToMenu(commandIds, &menu);
|
|
|
|
if (menu.actions().size() > 0)
|
|
{
|
|
menu.exec(event->globalPos());
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QSize RiuSummaryQwtPlot::sizeHint() const
|
|
{
|
|
return QSize(0, 0);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::setDefaults()
|
|
{
|
|
setCommonPlotBehaviour(this);
|
|
|
|
enableAxis(QwtPlot::xBottom, true);
|
|
enableAxis(QwtPlot::yLeft, true);
|
|
enableAxis(QwtPlot::xTop, false);
|
|
enableAxis(QwtPlot::yRight, false);
|
|
|
|
useDateBasedTimeAxis();
|
|
|
|
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);
|
|
}
|
|
|
|
void RiuSummaryQwtPlot::setCommonPlotBehaviour(QwtPlot* plot)
|
|
{
|
|
// Plot background and frame look
|
|
|
|
QPalette newPalette(plot->palette());
|
|
newPalette.setColor(QPalette::Background, Qt::white);
|
|
plot->setPalette(newPalette);
|
|
|
|
plot->setAutoFillBackground(true);
|
|
plot->setCanvasBackground(Qt::white);
|
|
|
|
QFrame* canvasFrame = dynamic_cast<QFrame*>(plot->canvas());
|
|
if (canvasFrame)
|
|
{
|
|
canvasFrame->setFrameShape(QFrame::NoFrame);
|
|
}
|
|
|
|
// Grid
|
|
|
|
QwtPlotGrid* grid = new QwtPlotGrid;
|
|
grid->attach(plot);
|
|
QPen gridPen(Qt::SolidLine);
|
|
gridPen.setColor(Qt::lightGray);
|
|
grid->setPen(gridPen);
|
|
|
|
// Axis number font
|
|
QFont axisFont = plot->axisFont(QwtPlot::xBottom);
|
|
axisFont.setPixelSize(11);
|
|
|
|
plot->setAxisFont(QwtPlot::xBottom, axisFont);
|
|
plot->setAxisFont(QwtPlot::xTop, axisFont);
|
|
plot->setAxisFont(QwtPlot::yLeft, axisFont);
|
|
plot->setAxisFont(QwtPlot::yRight, axisFont);
|
|
|
|
// Axis title font
|
|
QwtText axisTitle = plot->axisTitle(QwtPlot::xBottom);
|
|
QFont axisTitleFont = axisTitle.font();
|
|
axisTitleFont.setPixelSize(11);
|
|
axisTitleFont.setBold(false);
|
|
axisTitle.setFont(axisTitleFont);
|
|
axisTitle.setRenderFlags(Qt::AlignRight);
|
|
|
|
plot->setAxisTitle(QwtPlot::xBottom, axisTitle);
|
|
plot->setAxisTitle(QwtPlot::xTop, axisTitle);
|
|
plot->setAxisTitle(QwtPlot::yLeft, axisTitle);
|
|
plot->setAxisTitle(QwtPlot::yRight, axisTitle);
|
|
|
|
// Enable mousetracking and event filter
|
|
|
|
plot->canvas()->setMouseTracking(true);
|
|
plot->canvas()->installEventFilter(plot);
|
|
plot->plotLayout()->setAlignCanvasToScales(true);
|
|
|
|
new RiuQwtCurvePointTracker(plot, true);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::useDateBasedTimeAxis()
|
|
{
|
|
enableDateBasedBottomXAxis(this);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::enableDateBasedBottomXAxis(QwtPlot* plot)
|
|
{
|
|
QwtDateScaleDraw* scaleDraw = new QwtDateScaleDraw(Qt::UTC);
|
|
scaleDraw->setDateFormat(QwtDate::Year, QString("dd-MM-yyyy"));
|
|
|
|
QwtDateScaleEngine* scaleEngine = new QwtDateScaleEngine(Qt::UTC);
|
|
plot->setAxisScaleEngine(QwtPlot::xBottom, scaleEngine);
|
|
plot->setAxisScaleDraw(QwtPlot::xBottom, scaleDraw);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::useTimeBasedTimeAxis()
|
|
{
|
|
setAxisScaleEngine(QwtPlot::xBottom, new QwtLinearScaleEngine());
|
|
setAxisScaleDraw(QwtPlot::xBottom, new QwtScaleDraw());
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RiuSummaryQwtPlot::eventFilter(QObject* watched, QEvent* event)
|
|
{
|
|
if(watched == canvas())
|
|
{
|
|
QMouseEvent* mouseEvent = dynamic_cast<QMouseEvent*>(event);
|
|
if(mouseEvent)
|
|
{
|
|
if(mouseEvent->button() == Qt::LeftButton && mouseEvent->type() == QMouseEvent::MouseButtonRelease)
|
|
{
|
|
selectClosestCurve(mouseEvent->pos());
|
|
}
|
|
}
|
|
}
|
|
|
|
return QwtPlot::eventFilter(watched, event);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::selectClosestCurve(const QPoint& pos)
|
|
{
|
|
QwtPlotCurve* closestCurve = NULL;
|
|
double distMin = DBL_MAX;
|
|
|
|
const QwtPlotItemList& itmList = itemList();
|
|
for(QwtPlotItemIterator it = itmList.begin(); it != itmList.end(); it++)
|
|
{
|
|
if((*it)->rtti() == QwtPlotItem::Rtti_PlotCurve)
|
|
{
|
|
QwtPlotCurve* candidateCurve = static_cast<QwtPlotCurve*>(*it);
|
|
double dist = DBL_MAX;
|
|
candidateCurve->closestPoint(pos, &dist);
|
|
if(dist < distMin)
|
|
{
|
|
closestCurve = candidateCurve;
|
|
distMin = dist;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(closestCurve && distMin < 20)
|
|
{
|
|
caf::PdmObject* selectedCurve = m_plotDefinition->findRimCurveFromQwtCurve(closestCurve);
|
|
|
|
RimProject* proj = nullptr;
|
|
selectedCurve->firstAncestorOrThisOfType(proj);
|
|
|
|
if(proj && selectedCurve)
|
|
{
|
|
RiaApplication::instance()->getOrCreateAndShowMainPlotWindow()->selectAsCurrentItem(selectedCurve);
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::onZoomedSlot()
|
|
{
|
|
m_plotDefinition->updateZoomWindowFromQwt();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::onAxisClicked(int axis, double value)
|
|
{
|
|
if (!m_plotDefinition) return;
|
|
|
|
m_plotDefinition->selectAxisInPropertyEditor(axis);
|
|
}
|