mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Introduced an interface for setting and getting mdiWindow Geometry Changed file keywords from GraphPlot etc to SummaryPlot Added a summary plot QwtPlot descendant Added handling of delete of the MDI window
127 lines
4.1 KiB
C++
127 lines
4.1 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 "RimSummaryPlot.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"
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RiuSummaryQwtPlot::RiuSummaryQwtPlot(RimSummaryPlot* plotDefinition, QWidget* parent) : QwtPlot(parent)
|
|
{
|
|
Q_ASSERT(plotDefinition);
|
|
m_plotDefinition = plotDefinition;
|
|
|
|
m_grid = new QwtPlotGrid;
|
|
m_grid->attach(this);
|
|
|
|
setDefaults();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RiuSummaryQwtPlot::~RiuSummaryQwtPlot()
|
|
{
|
|
m_grid->detach();
|
|
delete m_grid;
|
|
|
|
if (m_plotDefinition)
|
|
{
|
|
m_plotDefinition->handleViewerDeletion();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimSummaryPlot* RiuSummaryQwtPlot::ownerPlotDefinition()
|
|
{
|
|
return m_plotDefinition;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSummaryQwtPlot::setDefaults()
|
|
{
|
|
QPalette newPalette(palette());
|
|
newPalette.setColor(QPalette::Background, Qt::white);
|
|
setPalette(newPalette);
|
|
|
|
setAutoFillBackground(true);
|
|
setCanvasBackground(Qt::white);
|
|
|
|
QFrame* canvasFrame = dynamic_cast<QFrame*>(canvas());
|
|
if (canvasFrame)
|
|
{
|
|
canvasFrame->setFrameShape(QFrame::NoFrame);
|
|
}
|
|
|
|
canvas()->setMouseTracking(true);
|
|
canvas()->installEventFilter(this);
|
|
|
|
QPen gridPen(Qt::SolidLine);
|
|
gridPen.setColor(Qt::lightGray);
|
|
m_grid->setPen(gridPen);
|
|
|
|
enableAxis(QwtPlot::xBottom, true);
|
|
enableAxis(QwtPlot::yLeft, true);
|
|
enableAxis(QwtPlot::xTop, false);
|
|
enableAxis(QwtPlot::yRight, false);
|
|
|
|
plotLayout()->setAlignCanvasToScales(true);
|
|
|
|
QwtDateScaleDraw* scaleDraw = new QwtDateScaleDraw(Qt::UTC);
|
|
scaleDraw->setDateFormat(QwtDate::Year, QString("dd-MM-yyyy"));
|
|
|
|
QwtDateScaleEngine* scaleEngine = new QwtDateScaleEngine(Qt::UTC);
|
|
setAxisScaleEngine(QwtPlot::xBottom, scaleEngine);
|
|
setAxisScaleDraw(QwtPlot::xBottom, scaleDraw);
|
|
|
|
QFont xAxisFont = axisFont(QwtPlot::xBottom);
|
|
xAxisFont.setPixelSize(9);
|
|
setAxisFont(QwtPlot::xBottom, xAxisFont);
|
|
|
|
QFont yAxisFont = axisFont(QwtPlot::yLeft);
|
|
yAxisFont.setPixelSize(9);
|
|
setAxisFont(QwtPlot::yLeft, yAxisFont);
|
|
|
|
QwtText axisTitleY = axisTitle(QwtPlot::yLeft);
|
|
QFont yAxisTitleFont = axisTitleY.font();
|
|
yAxisTitleFont.setPixelSize(9);
|
|
yAxisTitleFont.setBold(false);
|
|
axisTitleY.setFont(yAxisTitleFont);
|
|
axisTitleY.setRenderFlags(Qt::AlignRight);
|
|
setAxisTitle(QwtPlot::yLeft, axisTitleY);
|
|
|
|
|
|
QwtLegend* legend = new QwtLegend(this);
|
|
// The legend will be deleted in the destructor of the plot or when
|
|
// another legend is inserted.
|
|
this->insertLegend(legend, BottomLegend);
|
|
}
|