mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-10 23:46:00 -06:00
406 lines
12 KiB
C++
406 lines
12 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 "RimSummaryPlot.h"
|
|
|
|
#include "RiaApplication.h"
|
|
|
|
#include "RimSummaryCurve.h"
|
|
#include "RimSummaryCurveFilter.h"
|
|
#include "RimSummaryPlotCollection.h"
|
|
|
|
#include "RiuMainPlotWindow.h"
|
|
#include "RiuSelectionColors.h"
|
|
#include "RiuSummaryQwtPlot.h"
|
|
|
|
#include "cvfBase.h"
|
|
#include "cvfColor3.h"
|
|
|
|
#include <QDateTime>
|
|
#include <QRectF>
|
|
|
|
#include "qwt_plot_renderer.h"
|
|
|
|
|
|
CAF_PDM_SOURCE_INIT(RimSummaryPlot, "SummaryPlot");
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimSummaryPlot::RimSummaryPlot()
|
|
{
|
|
CAF_PDM_InitObject("Summary Plot", ":/SummaryPlot16x16.png", "", "");
|
|
CAF_PDM_InitField(&m_showWindow, "ShowWindow", true, "Show Summary Plot", "", "", "");
|
|
m_showWindow.uiCapability()->setUiHidden(true);
|
|
|
|
CAF_PDM_InitField(&m_userName, "PlotDescription", QString("Summary Plot"), "Name", "", "", "");
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_curveFilters, "SummaryCurveFilters", "", "", "", "");
|
|
m_curveFilters.uiCapability()->setUiHidden(true);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_curves, "SummaryCurves", "", "", "", "");
|
|
m_curves.uiCapability()->setUiHidden(true);
|
|
|
|
CAF_PDM_InitField(&m_visibleWindow, "VisibleWindow", std::vector<float>(), "Visible Display Window", "", "", "");
|
|
m_visibleWindow.uiCapability()->setUiHidden(true);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimSummaryPlot::~RimSummaryPlot()
|
|
{
|
|
if (RiaApplication::instance()->mainPlotWindow())
|
|
{
|
|
RiaApplication::instance()->mainPlotWindow()->removeViewer(m_qwtPlot);
|
|
}
|
|
|
|
deletePlotWidget();
|
|
|
|
m_curves.deleteAllChildObjects();
|
|
m_curveFilters.deleteAllChildObjects();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::deletePlotWidget()
|
|
{
|
|
if (m_qwtPlot)
|
|
{
|
|
m_qwtPlot->deleteLater();
|
|
m_qwtPlot = NULL;
|
|
}
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::handleViewerDeletion()
|
|
{
|
|
m_showWindow = false;
|
|
|
|
if (m_qwtPlot)
|
|
{
|
|
detachAllCurves();
|
|
}
|
|
|
|
uiCapability()->updateUiIconFromToggleField();
|
|
updateConnectedEditors();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::updateYAxisUnit()
|
|
{
|
|
if (!m_qwtPlot) return;
|
|
|
|
std::set<std::string> unitNames;
|
|
|
|
for(RimSummaryCurve* rimCurve: m_curves)
|
|
{
|
|
if (rimCurve->isCurveVisible()) unitNames.insert(rimCurve->unitName());
|
|
}
|
|
|
|
for(RimSummaryCurveFilter* curveFilter: m_curveFilters)
|
|
{
|
|
std::set<std::string> filterUnitNames = curveFilter->unitNames();
|
|
unitNames.insert(filterUnitNames.begin(), filterUnitNames.end());
|
|
}
|
|
|
|
QString assembledYAxisText;
|
|
|
|
for (const std::string& unitName : unitNames)
|
|
{
|
|
assembledYAxisText += "[" + QString::fromStdString(unitName) + "] ";
|
|
}
|
|
|
|
m_qwtPlot->setYAxisTitle(assembledYAxisText);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::updateCaseNameHasChanged()
|
|
{
|
|
for (RimSummaryCurve* curve : m_curves)
|
|
{
|
|
curve->updateCurveName();
|
|
curve->updateConnectedEditors();
|
|
}
|
|
|
|
for (RimSummaryCurveFilter* curveFilter : m_curveFilters)
|
|
{
|
|
curveFilter->updateCaseNameHasChanged();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QWidget* RimSummaryPlot::viewer()
|
|
{
|
|
return m_qwtPlot;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::zoomAll()
|
|
{
|
|
if (m_qwtPlot)
|
|
{
|
|
m_qwtPlot->zoomAll();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::addCurve(RimSummaryCurve* curve)
|
|
{
|
|
if (curve)
|
|
{
|
|
m_curves.push_back(curve);
|
|
if (m_qwtPlot)
|
|
{
|
|
curve->setParentQwtPlot(m_qwtPlot);
|
|
this->updateYAxisUnit();
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::addCurveFilter(RimSummaryCurveFilter* curveFilter)
|
|
{
|
|
if(curveFilter)
|
|
{
|
|
m_curveFilters.push_back(curveFilter);
|
|
if(m_qwtPlot)
|
|
{
|
|
curveFilter->setParentQwtPlot(m_qwtPlot);
|
|
this->updateYAxisUnit();
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue)
|
|
{
|
|
if (changedField == &m_showWindow)
|
|
{
|
|
if (m_showWindow)
|
|
{
|
|
loadDataAndUpdate();
|
|
}
|
|
else
|
|
{
|
|
updateViewerWidget();
|
|
}
|
|
|
|
uiCapability()->updateUiIconFromToggleField();
|
|
}
|
|
else if (changedField == &m_userName)
|
|
{
|
|
updateViewerWidgetWindowTitle();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::setupBeforeSave()
|
|
{
|
|
if (m_qwtPlot)
|
|
{
|
|
if (RiaApplication::instance()->mainPlotWindow())
|
|
{
|
|
this->setMdiWindowGeometry(RiaApplication::instance()->mainPlotWindow()->windowGeometryForViewer(m_qwtPlot));
|
|
}
|
|
|
|
QRectF visibleWindow = m_qwtPlot->currentVisibleWindow();
|
|
if (!visibleWindow.isEmpty())
|
|
{
|
|
//QRectF(qreal left, qreal top, qreal width, qreal height);
|
|
|
|
std::vector<float> window;
|
|
window.push_back(visibleWindow.left());
|
|
window.push_back(visibleWindow.top());
|
|
window.push_back(visibleWindow.width());
|
|
window.push_back(visibleWindow.height());
|
|
|
|
m_visibleWindow = window;
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QImage RimSummaryPlot::snapshotWindowContent()
|
|
{
|
|
QImage image;
|
|
|
|
if (m_qwtPlot)
|
|
{
|
|
image = QImage(m_qwtPlot->size(), QImage::Format_ARGB32);
|
|
image.fill(QColor(Qt::white).rgb());
|
|
|
|
QPainter painter(&image);
|
|
QRectF rect(0, 0, m_qwtPlot->size().width(), m_qwtPlot->size().height());
|
|
|
|
QwtPlotRenderer plotRenderer;
|
|
plotRenderer.render(m_qwtPlot, &painter, rect);
|
|
}
|
|
|
|
return image;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::loadDataAndUpdate()
|
|
{
|
|
updateViewerWidget();
|
|
|
|
for (RimSummaryCurveFilter* curveFilter: m_curveFilters)
|
|
{
|
|
curveFilter->loadDataAndUpdate();
|
|
}
|
|
|
|
for (RimSummaryCurve* curve : m_curves)
|
|
{
|
|
curve->loadDataAndUpdate();
|
|
}
|
|
|
|
this->updateYAxisUnit();
|
|
|
|
if (m_visibleWindow().size() == 4)
|
|
{
|
|
QRectF visibleWindow(m_visibleWindow()[0], m_visibleWindow()[1], m_visibleWindow()[2], m_visibleWindow()[3]);
|
|
|
|
m_qwtPlot->setZoomWindow(visibleWindow);
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::setDescription(const QString& description)
|
|
{
|
|
m_userName = description;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::updateViewerWidget()
|
|
{
|
|
RiuMainPlotWindow* mainPlotWindow = RiaApplication::instance()->getOrCreateAndShowMainPlotWindow();
|
|
|
|
if (m_showWindow())
|
|
{
|
|
if (!m_qwtPlot)
|
|
{
|
|
m_qwtPlot = new RiuSummaryQwtPlot(this, mainPlotWindow);
|
|
|
|
for(RimSummaryCurveFilter* curveFilter: m_curveFilters)
|
|
{
|
|
curveFilter->setParentQwtPlot(m_qwtPlot);
|
|
}
|
|
|
|
for(RimSummaryCurve* curve : m_curves)
|
|
{
|
|
curve->setParentQwtPlot(m_qwtPlot);
|
|
}
|
|
|
|
mainPlotWindow->addViewer(m_qwtPlot, this->mdiWindowGeometry());
|
|
mainPlotWindow->setActiveViewer(m_qwtPlot);
|
|
}
|
|
|
|
updateViewerWidgetWindowTitle();
|
|
}
|
|
else
|
|
{
|
|
if (m_qwtPlot)
|
|
{
|
|
this->setMdiWindowGeometry(mainPlotWindow->windowGeometryForViewer(m_qwtPlot));
|
|
|
|
mainPlotWindow->removeViewer(m_qwtPlot);
|
|
detachAllCurves();
|
|
|
|
deletePlotWidget();
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::updateViewerWidgetWindowTitle()
|
|
{
|
|
if (m_qwtPlot)
|
|
{
|
|
m_qwtPlot->setWindowTitle(m_userName);
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryPlot::detachAllCurves()
|
|
{
|
|
for(RimSummaryCurveFilter* curveFilter: m_curveFilters)
|
|
{
|
|
curveFilter->detachQwtCurves();
|
|
}
|
|
|
|
for(RimSummaryCurve* curve : m_curves)
|
|
{
|
|
curve->detachQwtCurve();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimSummaryCurve* RimSummaryPlot::findRimCurveFromQwtCurve(const QwtPlotCurve* qwtCurve) const
|
|
{
|
|
for(RimSummaryCurve* rimCurve: m_curves)
|
|
{
|
|
if(rimCurve->qwtPlotCurve() == qwtCurve)
|
|
{
|
|
return rimCurve;
|
|
}
|
|
}
|
|
|
|
for (RimSummaryCurveFilter* curveFilter: m_curveFilters)
|
|
{
|
|
RimSummaryCurve* foundCurve = curveFilter->findRimCurveFromQwtCurve(qwtCurve);
|
|
if (foundCurve) return foundCurve;
|
|
}
|
|
|
|
return NULL;
|
|
}
|