mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-08 07:03:25 -06:00
fe07b60392
Add missing initializers Guard potential null pointer access
333 lines
12 KiB
C++
333 lines
12 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017- 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 "RicGridStatisticsDialog.h"
|
|
#include "ExportCommands/RicSnapshotViewToClipboardFeature.h"
|
|
#include "ExportCommands/RicSnapshotViewToFileFeature.h"
|
|
#include "ExportCommands/RicSnapshotFilenameGenerator.h"
|
|
|
|
#include "RiaApplication.h"
|
|
|
|
#include "RimEclipseView.h"
|
|
#include "Rim3dOverlayInfoConfig.h"
|
|
|
|
#include "RiuPlotMainWindow.h"
|
|
#include "RiuSummaryQwtPlot.h"
|
|
#include "RiuTools.h"
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QLabel>
|
|
#include <QTextEdit>
|
|
#include <QDialogButtonBox>
|
|
#include <QPushButton>
|
|
#include <QToolBar>
|
|
#include <QAction>
|
|
#include <qwt_plot.h>
|
|
#include <qwt_plot_curve.h>
|
|
#include <qwt_plot_histogram.h>
|
|
#include <qwt_plot_marker.h>
|
|
#include <qwt_series_data.h>
|
|
#include <qwt_symbol.h>
|
|
#include <qwt_scale_draw.h>
|
|
|
|
#include <vector>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicGridStatisticsDialog::RicGridStatisticsDialog(QWidget* parent)
|
|
: QDialog(parent, RiuTools::defaultDialogFlags())
|
|
{
|
|
m_currentRimView = nullptr;
|
|
|
|
// Create widgets
|
|
m_toolBar = new QToolBar();
|
|
m_mainViewWidget = new QFrame();
|
|
m_label = new QLabel();
|
|
m_textEdit = new QTextEdit();
|
|
m_historgramPlot = new QwtPlot();
|
|
m_aggregatedPlot = new QwtPlot();
|
|
m_buttons = new QDialogButtonBox(QDialogButtonBox::Close);
|
|
|
|
// Connect to close button signal
|
|
connect(m_buttons, SIGNAL(rejected()), this, SLOT(slotDialogFinished()));
|
|
|
|
// Set widget properties
|
|
m_textEdit->setReadOnly(true);
|
|
RiuSummaryQwtPlot::setCommonPlotBehaviour(m_historgramPlot);
|
|
RiuSummaryQwtPlot::setCommonPlotBehaviour(m_aggregatedPlot);
|
|
|
|
// Define layout
|
|
QVBoxLayout* dialogLayout = new QVBoxLayout();
|
|
dialogLayout->addWidget(m_mainViewWidget);
|
|
|
|
QVBoxLayout* mainViewLayout = new QVBoxLayout();
|
|
mainViewLayout->setMargin(0);
|
|
m_mainViewWidget->setLayout(mainViewLayout);
|
|
mainViewLayout->addWidget(m_label);
|
|
mainViewLayout->addWidget(m_textEdit);
|
|
|
|
QVBoxLayout* plotLayout = new QVBoxLayout();
|
|
plotLayout->setSpacing(0);
|
|
plotLayout->addWidget(m_historgramPlot);
|
|
plotLayout->addWidget(m_aggregatedPlot);
|
|
mainViewLayout->addLayout(plotLayout);
|
|
|
|
dialogLayout->addWidget(m_buttons);
|
|
|
|
setLayout(dialogLayout);
|
|
|
|
// Toolbar
|
|
dialogLayout->setMenuBar(m_toolBar);
|
|
createAndConnectToolbarActions();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicGridStatisticsDialog::~RicGridStatisticsDialog()
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::setLabel(const QString& labelText)
|
|
{
|
|
m_label->setText(labelText);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::updateFromRimView(RimGridView* rimView)
|
|
{
|
|
m_currentRimView = rimView;
|
|
setInfoText(m_currentRimView);
|
|
setHistogramData(m_currentRimView);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QImage RicGridStatisticsDialog::screenShotImage()
|
|
{
|
|
QPixmap shot = QPixmap::grabWidget(m_mainViewWidget, m_mainViewWidget->rect());
|
|
return shot.toImage();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::setInfoText(RimGridView* view)
|
|
{
|
|
if (view && view->overlayInfoConfig())
|
|
{
|
|
Rim3dOverlayInfoConfig* overlayInfo = view->overlayInfoConfig();
|
|
|
|
QString text;
|
|
text = overlayInfo->timeStepText();
|
|
text += overlayInfo->caseInfoText();
|
|
text += overlayInfo->resultInfoText(overlayInfo->histogramData());
|
|
m_textEdit->setText(text);
|
|
adjustTextEditHeightToContent();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::setHistogramData(RimGridView* view)
|
|
{
|
|
deletePlotItems(m_historgramPlot);
|
|
deletePlotItems(m_aggregatedPlot);
|
|
|
|
if (view && view->overlayInfoConfig())
|
|
{
|
|
Rim3dOverlayInfoConfig* overlayInfo = view->overlayInfoConfig();
|
|
|
|
auto hist = new QwtPlotHistogram("Histogram");
|
|
auto aggr = new QwtPlotCurve("Aggregated");
|
|
|
|
hist->setBrush(QBrush(QColor(Qt::darkCyan)));
|
|
hist->setZ(-1);
|
|
aggr->setStyle(QwtPlotCurve::Steps);
|
|
aggr->setCurveAttribute(QwtPlotCurve::Inverted);
|
|
|
|
Rim3dOverlayInfoConfig::HistogramData histogramData = overlayInfo->histogramData();
|
|
|
|
if (histogramData.isValid())
|
|
{
|
|
QVector<QwtIntervalSample> histSamples;
|
|
QVector<QPointF> aggrSamples;
|
|
double xStep = (histogramData.max - histogramData.min) / (*histogramData.histogram).size();
|
|
double xCurr = histogramData.min;
|
|
double aggrValue = 0.0;
|
|
for (size_t value : *histogramData.histogram)
|
|
{
|
|
double xNext = xCurr + xStep;
|
|
histSamples.push_back(QwtIntervalSample(value, xCurr, xNext));
|
|
|
|
aggrValue += value;
|
|
aggrSamples.push_back(QPointF(xCurr, aggrValue));
|
|
|
|
xCurr = xNext;
|
|
}
|
|
|
|
// Axis
|
|
double xAxisSize = histogramData.max - histogramData.min;
|
|
double xAxisExtension = xAxisSize * 0.02;
|
|
m_historgramPlot->setAxisScale(QwtPlot::xBottom, histogramData.min - xAxisExtension, histogramData.max + xAxisExtension);
|
|
m_aggregatedPlot->setAxisScale(QwtPlot::xBottom, histogramData.min - xAxisExtension, histogramData.max + xAxisExtension);
|
|
|
|
// Set y axis label area width
|
|
m_historgramPlot->axisScaleDraw(QwtPlot::yLeft)->setMinimumExtent(60);
|
|
m_aggregatedPlot->axisScaleDraw(QwtPlot::yLeft)->setMinimumExtent(60);
|
|
|
|
// Samples
|
|
hist->setSamples(histSamples);
|
|
aggr->setSamples(aggrSamples);
|
|
hist->attach(m_historgramPlot);
|
|
aggr->attach(m_aggregatedPlot);
|
|
|
|
// Markers
|
|
setMarkers(histogramData, m_historgramPlot);
|
|
setMarkers(histogramData, m_aggregatedPlot);
|
|
}
|
|
}
|
|
|
|
// Refresh plot
|
|
m_historgramPlot->replot();
|
|
m_aggregatedPlot->replot();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::createAndConnectToolbarActions()
|
|
{
|
|
QAction* scrShotToClipboardAction = m_toolBar->addAction(RicSnapshotViewToClipboardFeature::icon(), RicSnapshotViewToClipboardFeature::text());
|
|
connect(scrShotToClipboardAction, SIGNAL(triggered()), this, SLOT(slotScreenShotToClipboard()));
|
|
|
|
QAction* scrShotToFileAction = m_toolBar->addAction(RicSnapshotViewToFileFeature::icon(), RicSnapshotViewToFileFeature::text());
|
|
connect(scrShotToFileAction, SIGNAL(triggered()), this, SLOT(slotScreenShotToFile()));
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::deletePlotItems(QwtPlot* plot)
|
|
{
|
|
auto itemList = plot->itemList();
|
|
for (auto item : itemList)
|
|
{
|
|
if (dynamic_cast<QwtPlotMarker*>(item)
|
|
|| dynamic_cast<QwtPlotCurve*>(item)
|
|
|| dynamic_cast<QwtPlotHistogram*>(item))
|
|
{
|
|
item->detach();
|
|
delete item;
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::setMarkers(const Rim3dOverlayInfoConfig::HistogramData& histData, QwtPlot* plot)
|
|
{
|
|
auto scale = plot->axisScaleDiv(QwtPlot::yLeft);
|
|
|
|
QwtPlotMarker* marker;
|
|
|
|
if (histData.p10 != HUGE_VAL)
|
|
{
|
|
marker = createVerticalPlotMarker(Qt::red, histData.p10);
|
|
marker->attach(plot);
|
|
}
|
|
|
|
if (histData.p90 != HUGE_VAL)
|
|
{
|
|
marker = createVerticalPlotMarker(Qt::red, histData.p90);
|
|
marker->attach(plot);
|
|
}
|
|
|
|
if (histData.mean != HUGE_VAL)
|
|
{
|
|
marker = createVerticalPlotMarker(Qt::blue, histData.mean);
|
|
marker->attach(plot);
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QwtPlotMarker* RicGridStatisticsDialog::createVerticalPlotMarker(const QColor& color, double xValue)
|
|
{
|
|
QwtPlotMarker* marker = new QwtPlotMarker();
|
|
marker->setXValue(xValue);
|
|
marker->setLineStyle(QwtPlotMarker::VLine);
|
|
marker->setLinePen(color, 2, Qt::SolidLine);
|
|
return marker;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::adjustTextEditHeightToContent()
|
|
{
|
|
int docHeight = m_textEdit->document()->size().height();
|
|
m_textEdit->setFixedHeight(docHeight + 10);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::slotDialogFinished()
|
|
{
|
|
close();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::slotScreenShotToClipboard()
|
|
{
|
|
QImage snapshotImage = screenShotImage();
|
|
RicSnapshotViewToClipboardFeature::copyToClipboard(snapshotImage);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicGridStatisticsDialog::slotScreenShotToFile()
|
|
{
|
|
QImage snapshotImage = screenShotImage();
|
|
QString defaultFileBaseName;
|
|
if (m_currentRimView)
|
|
{
|
|
defaultFileBaseName = RicSnapshotFilenameGenerator::generateSnapshotFileName(m_currentRimView);
|
|
defaultFileBaseName += "_Statistics";
|
|
}
|
|
else
|
|
{
|
|
defaultFileBaseName = "Snapshot_Statistics";
|
|
}
|
|
RicSnapshotViewToFileFeature::saveToFile(snapshotImage, defaultFileBaseName);
|
|
}
|