QwtPlotMagnifier provides zooming, by magnifying in steps. More...
#include <qwt_plot_magnifier.h>
Classes | |
class | PrivateData |
Public Member Functions | |
QWidget * | canvas () |
Return observed plot canvas. | |
const QWidget * | canvas () const |
Return Observed plot canvas. | |
bool | isAxisEnabled (int axis) const |
QwtPlot * | plot () |
Return plot widget, containing the observed plot canvas. | |
const QwtPlot * | plot () const |
Return plot widget, containing the observed plot canvas. | |
QwtPlotMagnifier (QWidget *) | |
void | setAxisEnabled (int axis, bool on) |
En/Disable an axis. | |
virtual | ~QwtPlotMagnifier () |
Destructor. | |
Protected Member Functions | |
virtual void | rescale (double factor) |
Private Attributes | |
PrivateData * | d_data |
QwtPlotMagnifier provides zooming, by magnifying in steps.
Using QwtPlotMagnifier a plot can be zoomed in/out in steps using keys, the mouse wheel or moving a mouse button in vertical direction.
Together with QwtPlotZoomer and QwtPlotPanner it is possible to implement individual and powerful navigation of the plot canvas.
Definition at line 29 of file qwt_plot_magnifier.h.
QwtPlotMagnifier::QwtPlotMagnifier | ( | QWidget * | canvas | ) | [explicit] |
Constructor
canvas | Plot canvas to be magnified |
Definition at line 30 of file qwt_plot_magnifier.cpp.
QwtPlotMagnifier::~QwtPlotMagnifier | ( | ) | [virtual] |
Destructor.
Definition at line 37 of file qwt_plot_magnifier.cpp.
QWidget * QwtPlotMagnifier::canvas | ( | ) |
Return observed plot canvas.
Definition at line 76 of file qwt_plot_magnifier.cpp.
const QWidget * QwtPlotMagnifier::canvas | ( | ) | const |
Return Observed plot canvas.
Definition at line 82 of file qwt_plot_magnifier.cpp.
bool QwtPlotMagnifier::isAxisEnabled | ( | int | axis | ) | const |
Test if an axis is enabled
axis | Axis, see QwtPlot::Axis |
Definition at line 67 of file qwt_plot_magnifier.cpp.
Return plot widget, containing the observed plot canvas.
Definition at line 88 of file qwt_plot_magnifier.cpp.
const QwtPlot * QwtPlotMagnifier::plot | ( | ) | const |
Return plot widget, containing the observed plot canvas.
Definition at line 98 of file qwt_plot_magnifier.cpp.
void QwtPlotMagnifier::rescale | ( | double | factor | ) | [protected, virtual] |
Zoom in/out the axes scales
factor | A value < 1.0 zooms in, a value > 1.0 zooms out. |
Implements QwtMagnifier.
Reimplemented in PlotMagnifier.
Definition at line 111 of file qwt_plot_magnifier.cpp.
void QwtPlotMagnifier::setAxisEnabled | ( | int | axis, |
bool | on | ||
) |
En/Disable an axis.
Only Axes that are enabled will be zoomed. All other axes will remain unchanged.
axis | Axis, see QwtPlot::Axis |
on | On/Off |
Definition at line 53 of file qwt_plot_magnifier.cpp.
PrivateData* QwtPlotMagnifier::d_data [private] |
Reimplemented from QwtMagnifier.
Definition at line 50 of file qwt_plot_magnifier.h.