mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#8767 Multi Plot: Add support for computing range for a summary curve across all realization, regions or wells.
This commit is contained in:
@@ -48,6 +48,14 @@ public:
|
||||
caf::Signal<RimSummaryMultiPlot*> duplicatePlot;
|
||||
|
||||
public:
|
||||
enum class AxisRangeAggregation
|
||||
{
|
||||
NONE,
|
||||
REGIONS,
|
||||
WELLS,
|
||||
REALIZATIONS
|
||||
};
|
||||
|
||||
RimSummaryMultiPlot();
|
||||
~RimSummaryMultiPlot() override;
|
||||
|
||||
@@ -98,6 +106,7 @@ private:
|
||||
caf::PdmUiEditorAttribute* attribute ) override;
|
||||
|
||||
void updatePlotWindowTitle() override;
|
||||
void computeAggregatedAxisRange();
|
||||
|
||||
void duplicate();
|
||||
|
||||
@@ -112,6 +121,8 @@ private:
|
||||
caf::PdmField<bool> m_createPlotDuplicate;
|
||||
caf::PdmField<bool> m_syncSubPlotAxes;
|
||||
|
||||
caf::PdmField<caf::AppEnum<AxisRangeAggregation>> m_axisRangeAggregation;
|
||||
|
||||
caf::PdmChildField<RimSummaryPlotSourceStepping*> m_sourceStepping;
|
||||
|
||||
std::unique_ptr<RimSummaryPlotNameHelper> m_nameHelper;
|
||||
|
||||
Reference in New Issue
Block a user