mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
(#396) Added scrollbar for panning of well trace plots
This commit is contained in:
@@ -48,6 +48,12 @@ public:
|
||||
RiuWellLogPlot* viewer();
|
||||
|
||||
void zoomDepth(double zoomFactor);
|
||||
void setDepthRange(double minimumDepth, double maximumDepth);
|
||||
|
||||
void updateAvailableDepthRange();
|
||||
bool availableDepthRange(double* minimumDepth, double* maximumDepth);
|
||||
|
||||
void visibleDepthRange(double* minimumDepth, double* maximumDepth);
|
||||
|
||||
protected:
|
||||
|
||||
@@ -56,13 +62,15 @@ protected:
|
||||
|
||||
private:
|
||||
void updateViewerWidget();
|
||||
void setDepthRange(double minimumDepth, double maximumDepth);
|
||||
|
||||
virtual caf::PdmFieldHandle* objectToggleField();
|
||||
|
||||
private:
|
||||
QPointer<RiuWellLogPlot> m_viewer;
|
||||
|
||||
caf::PdmField<double> m_minimumDepth;
|
||||
caf::PdmField<double> m_maximumDepth;
|
||||
caf::PdmField<double> m_minimumVisibleDepth;
|
||||
caf::PdmField<double> m_maximumVisibleDepth;
|
||||
|
||||
double m_depthRangeMinimum;
|
||||
double m_depthRangeMaximum;
|
||||
};
|
||||
|
Reference in New Issue
Block a user