(#396) Handling scroll wheel event to zoom all well log trace plots

This commit is contained in:
Pål Hagen
2015-09-01 11:14:58 +02:00
parent 8485e76bf5
commit ba1b2ec110
4 changed files with 69 additions and 10 deletions

View File

@@ -47,6 +47,8 @@ public:
RiuWellLogPlot* viewer();
void zoomDepth(double zoomFactor);
protected:
// Overridden PDM methods
@@ -54,12 +56,13 @@ protected:
private:
void updateViewerWidget();
void setDepthRange(double minimumDepth, double maximumDepth);
virtual caf::PdmFieldHandle* objectToggleField();
private:
QPointer<RiuWellLogPlot> m_viewer;
caf::PdmField<double> minimumDepth;
caf::PdmField<double> maximumDepth;
caf::PdmField<double> m_minimumDepth;
caf::PdmField<double> m_maximumDepth;
};