///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2019- Equinor 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "RiaDefines.h" #include "RimPlot.h" #include "cafPdmPtrField.h" #include class RimEclipseResultCase; class RimFlowDiagSolution; class RigTofWellDistributionCalculator; class RiuQwtPlotWidget; //================================================================================================== // // // //================================================================================================== class RimWellDistributionPlot : public RimPlot { CAF_PDM_HEADER_INIT; public: explicit RimWellDistributionPlot( RiaDefines::PhaseType phase = RiaDefines::PhaseType::OIL_PHASE ); ~RimWellDistributionPlot() override; void setDataSourceParameters( RimEclipseResultCase* eclipseResultCase, int timeStepIndex, QString targetWellName ); void setPlotOptions( bool groupSmallContributions, double smallContributionsRelativeThreshold, double maximumTof ); RiaDefines::PhaseType phase() const; // RimPlot implementations RiuQwtPlotWidget* viewer() override; void setAutoScaleXEnabled( bool enabled ) override; void setAutoScaleYEnabled( bool enabled ) override; void updateAxes() override; void updateLegend() override; void updateZoomInQwt() override; void updateZoomFromQwt() override; QString asciiDataForPlotExport() const override; void reattachAllCurves() override; void detachAllCurves() override; caf::PdmObject* findPdmObjectFromQwtCurve( const QwtPlotCurve* curve ) const override; void onAxisSelected( int axis, bool toggle ) override; // RimPlotWindow implementations QString description() const override; // RimViewWindow implementations QWidget* viewWidget() override; QImage snapshotWindowContent() override; void zoomAll() override; private: // RimViewWindow implementations void deleteViewWidget() override; void onLoadDataAndUpdate() override; private: RiuQwtPlotWidget* doCreatePlotViewWidget( QWidget* mainWindowParent ) override; void fixupDependentFieldsAfterCaseChange(); static void populatePlotWidgetWithCurveData( const RigTofWellDistributionCalculator& calculator, const RimFlowDiagSolution& flowDiagSolution, RiuQwtPlotWidget* plotWidget, double maximumTof ); void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override; void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override; QList calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions, bool* useOptionsOnly ) override; private: caf::PdmPtrField m_case; caf::PdmField m_timeStepIndex; caf::PdmField m_wellName; caf::PdmField> m_phase; caf::PdmField m_groupSmallContributions; caf::PdmField m_smallContributionsRelativeThreshold; caf::PdmField m_maximumTof; QPointer m_plotWidget; };