mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
#3103 Manual tick marker setting
This commit is contained in:
parent
707a7a91e6
commit
5d6188b39c
@ -20,6 +20,8 @@
|
|||||||
#include "RimWellLogTrack.h"
|
#include "RimWellLogTrack.h"
|
||||||
|
|
||||||
#include "RiaApplication.h"
|
#include "RiaApplication.h"
|
||||||
|
#include "RiaExtractionTools.h"
|
||||||
|
#include "RiaSimWellBranchTools.h"
|
||||||
|
|
||||||
#include "RigEclipseCaseData.h"
|
#include "RigEclipseCaseData.h"
|
||||||
#include "RigEclipseWellLogExtractor.h"
|
#include "RigEclipseWellLogExtractor.h"
|
||||||
@ -55,12 +57,9 @@
|
|||||||
#include "RiuWellLogPlot.h"
|
#include "RiuWellLogPlot.h"
|
||||||
#include "RiuWellLogTrack.h"
|
#include "RiuWellLogTrack.h"
|
||||||
|
|
||||||
|
#include "RiuQwtLinearScaleEngine.h"
|
||||||
#include "cvfAssert.h"
|
#include "cvfAssert.h"
|
||||||
|
|
||||||
#include "qwt_scale_engine.h"
|
|
||||||
#include "RiaSimWellBranchTools.h"
|
|
||||||
#include "RiaExtractionTools.h"
|
|
||||||
|
|
||||||
#define RI_LOGPLOTTRACK_MINX_DEFAULT -10.0
|
#define RI_LOGPLOTTRACK_MINX_DEFAULT -10.0
|
||||||
#define RI_LOGPLOTTRACK_MAXX_DEFAULT 100.0
|
#define RI_LOGPLOTTRACK_MAXX_DEFAULT 100.0
|
||||||
#define RI_LOGPLOTTRACK_MINOR_TICK_DEFAULT
|
#define RI_LOGPLOTTRACK_MINOR_TICK_DEFAULT
|
||||||
@ -153,6 +152,12 @@ RimWellLogTrack::RimWellLogTrack()
|
|||||||
|
|
||||||
CAF_PDM_InitFieldNoDefault(&m_showXGridLines, "ShowXGridLines", "Show Grid Lines", "", "", "");
|
CAF_PDM_InitFieldNoDefault(&m_showXGridLines, "ShowXGridLines", "Show Grid Lines", "", "", "");
|
||||||
|
|
||||||
|
CAF_PDM_InitField(&m_explicitTickIntervals, "ExplicitTickIntervals", false, "Manually Set Tick Intervals", "", "", "");
|
||||||
|
CAF_PDM_InitField(&m_majorTickInterval, "MajorTickIntervals", 0.0, "Major Tick Interval", "", "", "");
|
||||||
|
CAF_PDM_InitField(&m_minorTickInterval, "MinorTickIntervals", 0.0, "Minor Tick Interval", "", "", "");
|
||||||
|
m_majorTickInterval.uiCapability()->setUiHidden(true);
|
||||||
|
m_minorTickInterval.uiCapability()->setUiHidden(true);
|
||||||
|
|
||||||
CAF_PDM_InitField(&m_showFormations, "ShowFormations", false, "Show", "", "", "");
|
CAF_PDM_InitField(&m_showFormations, "ShowFormations", false, "Show", "", "", "");
|
||||||
|
|
||||||
CAF_PDM_InitFieldNoDefault(&m_formationSource, "FormationSource", "Source", "", "", "");
|
CAF_PDM_InitFieldNoDefault(&m_formationSource, "FormationSource", "Source", "", "", "");
|
||||||
@ -253,7 +258,24 @@ void RimWellLogTrack::fieldChangedByUi(const caf::PdmFieldHandle* changedField,
|
|||||||
updateAxisAndGridTickIntervals();
|
updateAxisAndGridTickIntervals();
|
||||||
m_wellLogTrackPlotWidget->replot();
|
m_wellLogTrackPlotWidget->replot();
|
||||||
}
|
}
|
||||||
else if (changedField == &m_showXGridLines)
|
else if (changedField == &m_explicitTickIntervals)
|
||||||
|
{
|
||||||
|
if (m_wellLogTrackPlotWidget)
|
||||||
|
{
|
||||||
|
m_majorTickInterval = m_wellLogTrackPlotWidget->getCurrentMajorTickInterval();
|
||||||
|
m_minorTickInterval = m_wellLogTrackPlotWidget->getCurrentMinorTickInterval();
|
||||||
|
}
|
||||||
|
m_majorTickInterval.uiCapability()->setUiHidden(!m_explicitTickIntervals());
|
||||||
|
m_minorTickInterval.uiCapability()->setUiHidden(!m_explicitTickIntervals());
|
||||||
|
if (!m_explicitTickIntervals())
|
||||||
|
{
|
||||||
|
updateAxisAndGridTickIntervals();
|
||||||
|
m_wellLogTrackPlotWidget->replot();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (changedField == &m_showXGridLines ||
|
||||||
|
changedField == &m_majorTickInterval ||
|
||||||
|
changedField == &m_minorTickInterval)
|
||||||
{
|
{
|
||||||
updateAxisAndGridTickIntervals();
|
updateAxisAndGridTickIntervals();
|
||||||
m_wellLogTrackPlotWidget->replot();
|
m_wellLogTrackPlotWidget->replot();
|
||||||
@ -261,10 +283,11 @@ void RimWellLogTrack::fieldChangedByUi(const caf::PdmFieldHandle* changedField,
|
|||||||
else if (changedField == &m_visibleXRangeMin || changedField == &m_visibleXRangeMax)
|
else if (changedField == &m_visibleXRangeMin || changedField == &m_visibleXRangeMax)
|
||||||
{
|
{
|
||||||
m_wellLogTrackPlotWidget->setXRange(m_visibleXRangeMin, m_visibleXRangeMax);
|
m_wellLogTrackPlotWidget->setXRange(m_visibleXRangeMin, m_visibleXRangeMax);
|
||||||
m_wellLogTrackPlotWidget->replot();
|
|
||||||
m_isAutoScaleXEnabled = false;
|
m_isAutoScaleXEnabled = false;
|
||||||
updateEditors();
|
updateEditors();
|
||||||
updateParentPlotLayout();
|
updateParentPlotLayout();
|
||||||
|
updateAxisAndGridTickIntervals();
|
||||||
|
m_wellLogTrackPlotWidget->replot();
|
||||||
}
|
}
|
||||||
else if (changedField == &m_isAutoScaleXEnabled)
|
else if (changedField == &m_isAutoScaleXEnabled)
|
||||||
{
|
{
|
||||||
@ -279,6 +302,11 @@ void RimWellLogTrack::fieldChangedByUi(const caf::PdmFieldHandle* changedField,
|
|||||||
else if (changedField == &m_isLogarithmicScaleEnabled)
|
else if (changedField == &m_isLogarithmicScaleEnabled)
|
||||||
{
|
{
|
||||||
updateAxisScaleEngine();
|
updateAxisScaleEngine();
|
||||||
|
if (m_isLogarithmicScaleEnabled())
|
||||||
|
{
|
||||||
|
m_explicitTickIntervals = false;
|
||||||
|
}
|
||||||
|
m_explicitTickIntervals.uiCapability()->setUiHidden(m_isLogarithmicScaleEnabled());
|
||||||
|
|
||||||
this->calculateXZoomRangeAndUpdateQwt();
|
this->calculateXZoomRangeAndUpdateQwt();
|
||||||
computeAndSetXRangeMinForLogarithmicScale();
|
computeAndSetXRangeMinForLogarithmicScale();
|
||||||
@ -405,6 +433,12 @@ void RimWellLogTrack::updateAxisAndGridTickIntervals()
|
|||||||
{
|
{
|
||||||
if (!m_wellLogTrackPlotWidget) return;
|
if (!m_wellLogTrackPlotWidget) return;
|
||||||
|
|
||||||
|
if (m_explicitTickIntervals)
|
||||||
|
{
|
||||||
|
m_wellLogTrackPlotWidget->setMajorAndMinorTickIntervals(m_majorTickInterval(), m_minorTickInterval());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
int xMajorTickIntervals = 3;
|
int xMajorTickIntervals = 3;
|
||||||
int xMinorTickIntervals = 0;
|
int xMinorTickIntervals = 0;
|
||||||
switch (m_widthScaleFactor())
|
switch (m_widthScaleFactor())
|
||||||
@ -430,9 +464,9 @@ void RimWellLogTrack::updateAxisAndGridTickIntervals()
|
|||||||
xMinorTickIntervals = 10;
|
xMinorTickIntervals = 10;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
m_wellLogTrackPlotWidget->setAutoTickIntervals(xMajorTickIntervals, xMinorTickIntervals);
|
||||||
|
}
|
||||||
|
|
||||||
m_wellLogTrackPlotWidget->setAxisMaxMajor(QwtPlot::xTop, xMajorTickIntervals);
|
|
||||||
m_wellLogTrackPlotWidget->setAxisMaxMinor(QwtPlot::xTop, xMinorTickIntervals);
|
|
||||||
switch (m_showXGridLines())
|
switch (m_showXGridLines())
|
||||||
{
|
{
|
||||||
case GRID_X_NONE:
|
case GRID_X_NONE:
|
||||||
@ -647,11 +681,14 @@ void RimWellLogTrack::loadDataAndUpdate()
|
|||||||
if ( m_wellLogTrackPlotWidget )
|
if ( m_wellLogTrackPlotWidget )
|
||||||
{
|
{
|
||||||
m_wellLogTrackPlotWidget->updateLegend();
|
m_wellLogTrackPlotWidget->updateLegend();
|
||||||
this->updateAxisAndGridTickIntervals();
|
|
||||||
this->updateAxisScaleEngine();
|
this->updateAxisScaleEngine();
|
||||||
this->updateFormationNamesOnPlot();
|
this->updateFormationNamesOnPlot();
|
||||||
this->applyXZoomFromVisibleRange();
|
this->applyXZoomFromVisibleRange();
|
||||||
|
this->updateAxisAndGridTickIntervals();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_majorTickInterval.uiCapability()->setUiHidden(!m_explicitTickIntervals());
|
||||||
|
m_minorTickInterval.uiCapability()->setUiHidden(!m_explicitTickIntervals());
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@ -1070,10 +1107,10 @@ void RimWellLogTrack::updateAxisScaleEngine()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_wellLogTrackPlotWidget->setAxisScaleEngine(QwtPlot::xTop, new QwtLinearScaleEngine);
|
m_wellLogTrackPlotWidget->setAxisScaleEngine(QwtPlot::xTop, new RiuQwtLinearScaleEngine);
|
||||||
|
|
||||||
// NB! Must assign scale engine to bottom in order to make QwtPlotGrid work
|
// NB! Must assign scale engine to bottom in order to make QwtPlotGrid work
|
||||||
m_wellLogTrackPlotWidget->setAxisScaleEngine(QwtPlot::xBottom, new QwtLinearScaleEngine);
|
m_wellLogTrackPlotWidget->setAxisScaleEngine(QwtPlot::xBottom, new RiuQwtLinearScaleEngine);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1191,6 +1228,9 @@ void RimWellLogTrack::uiOrderingForXAxisSettings(caf::PdmUiOrdering& uiOrdering)
|
|||||||
gridGroup->add(&m_visibleXRangeMin);
|
gridGroup->add(&m_visibleXRangeMin);
|
||||||
gridGroup->add(&m_visibleXRangeMax);
|
gridGroup->add(&m_visibleXRangeMax);
|
||||||
gridGroup->add(&m_showXGridLines);
|
gridGroup->add(&m_showXGridLines);
|
||||||
|
gridGroup->add(&m_explicitTickIntervals);
|
||||||
|
gridGroup->add(&m_majorTickInterval);
|
||||||
|
gridGroup->add(&m_minorTickInterval);
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
@ -176,6 +176,9 @@ private:
|
|||||||
caf::PdmField<bool> m_isAutoScaleXEnabled;
|
caf::PdmField<bool> m_isAutoScaleXEnabled;
|
||||||
caf::PdmField<bool> m_isLogarithmicScaleEnabled;
|
caf::PdmField<bool> m_isLogarithmicScaleEnabled;
|
||||||
caf::PdmField<caf::AppEnum<GridLines>> m_showXGridLines;
|
caf::PdmField<caf::AppEnum<GridLines>> m_showXGridLines;
|
||||||
|
caf::PdmField<bool> m_explicitTickIntervals;
|
||||||
|
caf::PdmField<double> m_majorTickInterval;
|
||||||
|
caf::PdmField<double> m_minorTickInterval;
|
||||||
|
|
||||||
caf::PdmField<bool> m_showFormations;
|
caf::PdmField<bool> m_showFormations;
|
||||||
caf::PdmField<caf::AppEnum<FormationSource>> m_formationSource;
|
caf::PdmField<caf::AppEnum<FormationSource>> m_formationSource;
|
||||||
|
@ -18,6 +18,7 @@ ${CMAKE_CURRENT_LIST_DIR}/RiuProjectPropertyView.h
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/RiuPropertyViewTabWidget.h
|
${CMAKE_CURRENT_LIST_DIR}/RiuPropertyViewTabWidget.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuPvtPlotPanel.h
|
${CMAKE_CURRENT_LIST_DIR}/RiuPvtPlotPanel.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuPvtPlotUpdater.h
|
${CMAKE_CURRENT_LIST_DIR}/RiuPvtPlotUpdater.h
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}/RiuQwtLinearScaleEngine.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuQwtScalePicker.h
|
${CMAKE_CURRENT_LIST_DIR}/RiuQwtScalePicker.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuQwtCurvePointTracker.h
|
${CMAKE_CURRENT_LIST_DIR}/RiuQwtCurvePointTracker.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuQwtPlotWheelZoomer.h
|
${CMAKE_CURRENT_LIST_DIR}/RiuQwtPlotWheelZoomer.h
|
||||||
@ -92,6 +93,7 @@ ${CMAKE_CURRENT_LIST_DIR}/RiuProjectPropertyView.cpp
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/RiuPropertyViewTabWidget.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RiuPropertyViewTabWidget.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuPvtPlotPanel.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RiuPvtPlotPanel.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuPvtPlotUpdater.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RiuPvtPlotUpdater.cpp
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}/RiuQwtLinearScaleEngine.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuQwtScalePicker.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RiuQwtScalePicker.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuQwtCurvePointTracker.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RiuQwtCurvePointTracker.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RiuQwtPlotWheelZoomer.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RiuQwtPlotWheelZoomer.cpp
|
||||||
|
33
ApplicationCode/UserInterface/RiuQwtLinearScaleEngine.cpp
Normal file
33
ApplicationCode/UserInterface/RiuQwtLinearScaleEngine.cpp
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Copyright (C) 2018- 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 <http://www.gnu.org/licenses/gpl.html>
|
||||||
|
// for more details.
|
||||||
|
//
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
#include "RiuQwtLinearScaleEngine.h"
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
QwtScaleDiv RiuQwtLinearScaleEngine::divideScale(double x1, double x2, double majorStepInterval, double minorStepInterval)
|
||||||
|
{
|
||||||
|
QwtInterval interval(x1, x2);
|
||||||
|
QwtInterval roundedInterval = this->align(interval, majorStepInterval);
|
||||||
|
QList<double> majorTicks = this->buildMajorTicks(roundedInterval, majorStepInterval);
|
||||||
|
QList<double> minorTicks = this->buildMajorTicks(roundedInterval, minorStepInterval);
|
||||||
|
|
||||||
|
return QwtScaleDiv(x1, x2, minorTicks, minorTicks, majorTicks);
|
||||||
|
}
|
32
ApplicationCode/UserInterface/RiuQwtLinearScaleEngine.h
Normal file
32
ApplicationCode/UserInterface/RiuQwtLinearScaleEngine.h
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Copyright (C) 2018- 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 <http://www.gnu.org/licenses/gpl.html>
|
||||||
|
// for more details.
|
||||||
|
//
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "qwt_scale_engine.h"
|
||||||
|
|
||||||
|
//==================================================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//==================================================================================================
|
||||||
|
class RiuQwtLinearScaleEngine : public QwtLinearScaleEngine
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
QwtScaleDiv divideScale(double x1, double x2, double majorStepInterval, double minorStepInterval);
|
||||||
|
};
|
@ -28,6 +28,8 @@
|
|||||||
#include "RiuPlotMainWindowTools.h"
|
#include "RiuPlotMainWindowTools.h"
|
||||||
#include "RiuQwtCurvePointTracker.h"
|
#include "RiuQwtCurvePointTracker.h"
|
||||||
|
|
||||||
|
#include "RiuQwtLinearScaleEngine.h"
|
||||||
|
|
||||||
#include "qwt_legend.h"
|
#include "qwt_legend.h"
|
||||||
#include "qwt_plot_curve.h"
|
#include "qwt_plot_curve.h"
|
||||||
#include "qwt_plot_grid.h"
|
#include "qwt_plot_grid.h"
|
||||||
@ -35,7 +37,6 @@
|
|||||||
#include "qwt_plot_marker.h"
|
#include "qwt_plot_marker.h"
|
||||||
#include "qwt_plot_picker.h"
|
#include "qwt_plot_picker.h"
|
||||||
#include "qwt_scale_draw.h"
|
#include "qwt_scale_draw.h"
|
||||||
#include "qwt_scale_engine.h"
|
|
||||||
#include "qwt_symbol.h"
|
#include "qwt_symbol.h"
|
||||||
#include "qwt_text.h"
|
#include "qwt_text.h"
|
||||||
|
|
||||||
@ -305,3 +306,55 @@ void RiuWellLogTrack::enableGridLines(bool majorGridLines, bool minorGridLines)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
void RiuWellLogTrack::setMajorAndMinorTickIntervals(double majorTickInterval, double minorTickInterval)
|
||||||
|
{
|
||||||
|
RiuQwtLinearScaleEngine* scaleEngine = dynamic_cast<RiuQwtLinearScaleEngine*>(this->axisScaleEngine(QwtPlot::xTop));
|
||||||
|
if (scaleEngine)
|
||||||
|
{
|
||||||
|
QwtInterval currentRange = this->axisInterval(QwtPlot::xTop);
|
||||||
|
QwtScaleDiv scaleDiv = scaleEngine->divideScale(currentRange.minValue(), currentRange.maxValue(), majorTickInterval, minorTickInterval);
|
||||||
|
|
||||||
|
this->setAxisScaleDiv(QwtPlot::xTop, scaleDiv);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
void RiuWellLogTrack::setAutoTickIntervals(int maxMajorTickIntervals, int maxMinorTickIntervals)
|
||||||
|
{
|
||||||
|
this->setAxisMaxMajor(QwtPlot::xTop, maxMajorTickIntervals);
|
||||||
|
this->setAxisMaxMinor(QwtPlot::xTop, maxMinorTickIntervals);
|
||||||
|
// Reapply axis limits to force Qwt to use the tick settings.
|
||||||
|
QwtInterval currentRange = this->axisInterval(QwtPlot::xTop);
|
||||||
|
this->setAxisScale(QwtPlot::xTop, currentRange.minValue(), currentRange.maxValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
double RiuWellLogTrack::getCurrentMajorTickInterval() const
|
||||||
|
{
|
||||||
|
QwtScaleDiv scaleDiv = this->axisScaleDiv(QwtPlot::xTop);
|
||||||
|
QList<double> majorTicks = scaleDiv.ticks(QwtScaleDiv::MajorTick);
|
||||||
|
if (majorTicks.size() < 2) return 0.0;
|
||||||
|
|
||||||
|
return majorTicks.at(1) - majorTicks.at(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
double RiuWellLogTrack::getCurrentMinorTickInterval() const
|
||||||
|
{
|
||||||
|
QwtScaleDiv scaleDiv = this->axisScaleDiv(QwtPlot::xTop);
|
||||||
|
QList<double> minorTicks = scaleDiv.ticks(QwtScaleDiv::MinorTick);
|
||||||
|
if (minorTicks.size() < 2) return 0.0;
|
||||||
|
|
||||||
|
return minorTicks.at(1) - minorTicks.at(0);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -55,6 +55,10 @@ public:
|
|||||||
void enableVerticalAxisLabelsAndTitle(bool enable);
|
void enableVerticalAxisLabelsAndTitle(bool enable);
|
||||||
int widthScaleFactor() const;
|
int widthScaleFactor() const;
|
||||||
void enableGridLines(bool majorGridLines, bool minorGridLines);
|
void enableGridLines(bool majorGridLines, bool minorGridLines);
|
||||||
|
void setMajorAndMinorTickIntervals(double majorTickInterval, double minorTickInterval);
|
||||||
|
void setAutoTickIntervals(int maxMajorTickIntervals, int maxMinorTickIntervals);
|
||||||
|
double getCurrentMajorTickInterval() const;
|
||||||
|
double getCurrentMinorTickInterval() const;
|
||||||
protected:
|
protected:
|
||||||
virtual bool eventFilter(QObject* watched, QEvent* event);
|
virtual bool eventFilter(QObject* watched, QEvent* event);
|
||||||
virtual QSize sizeHint() const;
|
virtual QSize sizeHint() const;
|
||||||
|
Loading…
Reference in New Issue
Block a user