Create cross plot menu from list of addresses in preferences

This commit is contained in:
Magne Sjaastad
2023-10-09 13:26:14 +02:00
parent ececc3ae47
commit 51fe80b897
15 changed files with 467 additions and 72 deletions

View File

@@ -50,9 +50,11 @@ public:
void setAddress( const RifEclipseSummaryAddress& address );
void setResamplingPeriod( RiaDefines::DateTimePeriodEnum resampling );
void setPlotAxisProperties( RimPlotAxisPropertiesInterface* plotAxisProperties );
void setShowDataSource( bool enable );
void setAxisOrientation( RimPlotAxisProperties::Orientation orientation );
void setShowDataSource( bool enable );
void setShowResampling( bool enable );
RimSummaryCase* summaryCase() const;
RimSummaryCaseCollection* ensemble() const;
RifEclipseSummaryAddress summaryAddress() const;
@@ -77,6 +79,7 @@ private:
caf::PdmField<RiaDefines::DateTimePeriodEnum> m_resamplingPeriod;
bool m_showDataSource;
bool m_showResampling;
RimPlotAxisProperties::Orientation m_plotAxisOrientation;
};