Newer
Older
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*****************************************************************************/
#include "qwt_plot_zoomer.h"
class QwtPlotZoomer::PrivateData
{
public:
uint zoomRectIndex;
int maxStackDepth;
};
/*!
\brief Create a zoomer for a plot canvas.
The zoomer is set to those x- and y-axis of the parent plot of the
canvas that are enabled. If both or no x-axis are enabled, the picker
is set to QwtPlot::xBottom. If both or no y-axis are
enabled, it is set to QwtPlot::yLeft.
The zoomer is initialized with a QwtPickerDragRectMachine,
the tracker mode is set to QwtPicker::ActiveOnly and the rubber band
is set to QwtPicker::RectRubberBand
\param doReplot Call QwtPlot::replot() for the attached plot before initializing
the zoomer with its scales. This might be necessary,
when the plot is in a state with pending scale changes.
\sa QwtPlot::autoReplot(), QwtPlot::replot(), setZoomBase()
*/
QwtPlotZoomer::QwtPlotZoomer( QWidget *canvas, bool doReplot ):
QwtPlotPicker( canvas )
The zoomer is initialized with a QwtPickerDragRectMachine,
the tracker mode is set to QwtPicker::ActiveOnly and the rubber band
is set to QwtPicker;;RectRubberBand
\param xAxis X axis of the zoomer
\param yAxis Y axis of the zoomer
\param canvas Plot canvas to observe, also the parent object
\param doReplot Call QwtPlot::replot() for the attached plot before initializing
the zoomer with its scales. This might be necessary,
when the plot is in a state with pending scale changes.
\sa QwtPlot::autoReplot(), QwtPlot::replot(), setZoomBase()
*/
QwtPlotZoomer::QwtPlotZoomer( int xAxis, int yAxis,
QWidget *canvas, bool doReplot ):
QwtPlotPicker( xAxis, yAxis, canvas )
{
d_data = new PrivateData;
d_data->maxStackDepth = -1;
setTrackerMode( ActiveOnly );
setRubberBand( RectRubberBand );
setStateMachine( new QwtPickerDragRectMachine() );
}
QwtPlotZoomer::~QwtPlotZoomer()
{
delete d_data;
}
/*!
\brief Limit the number of recursive zoom operations to depth.
A value of -1 set the depth to unlimited, 0 disables zooming.
If the current zoom rectangle is below depth, the plot is unzoomed.
\param depth Maximum for the stack depth
\sa maxStackDepth()
\note depth doesn't include the zoom base, so zoomStack().count() might be
maxStackDepth() + 1.
*/
// unzoom if the current depth is below d_data->maxStackDepth
int( d_data->zoomStack.count() ) - 1 - depth; // -1 for the zoom base
if ( zoomOut > 0 )
{
zoom( -zoomOut );
for ( int i = int( d_data->zoomStack.count() ) - 1;
i > int( d_data->zoomRectIndex ); i-- )
{
( void )d_data->zoomStack.pop(); // remove trailing rects
}
}
}
}
/*!
\return Maximal depth of the zoom stack.
\sa setMaxStackDepth()
*/
int QwtPlotZoomer::maxStackDepth() const
{
return d_data->maxStackDepth;
}
/*!
\return The zoom stack. zoomStack()[0] is the zoom base,
zoomStack()[1] the first zoomed rectangle.
{
return d_data->zoomStack;
}
/*!
\return Initial rectangle of the zoomer
\sa setZoomBase(), zoomRect()
*/
{
return d_data->zoomStack[0];
}
/*!
Reinitialized the zoom stack with scaleRect() as base.
\param doReplot Call QwtPlot::replot() for the attached plot before initializing
the zoomer with its scales. This might be necessary,
when the plot is in a state with pending scale changes.
\sa zoomBase(), scaleRect() QwtPlot::autoReplot(), QwtPlot::replot().
*/
{
QwtPlot *plt = plot();
if ( plt == NULL )
return;
if ( doReplot )
plt->replot();
d_data->zoomStack.clear();
d_data->zoomRectIndex = 0;
rescale();
}
/*!
\brief Set the initial size of the zoomer.
base is united with the current scaleRect() and the zoom stack is
reinitialized with it as zoom base. plot is zoomed to scaleRect().
{
const QwtPlot *plt = plot();
if ( !plt )
return;
const QRectF sRect = scaleRect();
const QRectF bRect = base | sRect;
if ( base != sRect )
{
d_data->zoomStack.push( sRect );
\return Rectangle at the current position on the zoom stack.
{
return d_data->zoomStack[d_data->zoomRectIndex];
}
\return Index of current position of zoom stack.
*/
uint QwtPlotZoomer::zoomRectIndex() const
{
return d_data->zoomRectIndex;
}
/*!
\brief Zoom in
Clears all rectangles above the current position of the
\note If the maximal stack depth is reached, zoom is ignored.
\note The zoomed signal is emitted.
*/
{
if ( d_data->maxStackDepth >= 0 &&
int( d_data->zoomRectIndex ) >= d_data->maxStackDepth )
{
const QRectF zoomRect = rect.normalized();
if ( zoomRect != d_data->zoomStack[d_data->zoomRectIndex] )
{
for ( uint i = int( d_data->zoomStack.count() ) - 1;
i > d_data->zoomRectIndex; i-- )
{
( void )d_data->zoomStack.pop();
}
}
/*!
\brief Zoom in or out
Activate a rectangle on the zoom stack with an offset relative
to the current position. Negative values of offset will zoom out,
positive zoom in. A value of 0 zooms out to the zoom base.
\param offset Offset relative to the current position of the zoom stack.
\note The zoomed signal is emitted.
\sa zoomRectIndex()
*/
newIndex = qMax( 0, newIndex );
newIndex = qMin( int( d_data->zoomStack.count() ) - 1, newIndex );
}
/*!
\brief Assign a zoom stack
In combination with other types of navigation it might be useful to
modify to manipulate the complete zoom stack.
\param zoomStack New zoom stack
\param zoomRectIndex Index of the current position of zoom stack.
In case of -1 the current position is at the top
of the stack.
\note The zoomed signal might be emitted.
\sa zoomStack(), zoomRectIndex()
*/
void QwtPlotZoomer::setZoomStack(
{
if ( zoomStack.isEmpty() )
return;
if ( d_data->maxStackDepth >= 0 &&
if ( zoomRectIndex < 0 || zoomRectIndex > int( zoomStack.count() ) )
zoomRectIndex = zoomStack.count() - 1;
const bool doRescale = zoomStack[zoomRectIndex] != zoomRect();
d_data->zoomStack = zoomStack;
*/
void QwtPlotZoomer::rescale()
{
QwtPlot *plt = plot();
if ( !plt )
return;
const QRectF &rect = d_data->zoomStack[d_data->zoomRectIndex];
if ( rect != scaleRect() )
{
if ( !plt->axisScaleDiv( xAxis() ).isIncreasing() )
qSwap( x1, x2 );
if ( !plt->axisScaleDiv( yAxis() ).isIncreasing() )
qSwap( y1, y2 );
plt->setAxisScale( yAxis(), y1, y2 );
plt->setAutoReplot( doReplot );
plt->replot();
}
}
/*!
Reinitialize the axes, and set the zoom base to their scales.
if ( xAxis != QwtPlotPicker::xAxis() || yAxis != QwtPlotPicker::yAxis() )
{
QwtPlotPicker::setAxis( xAxis, yAxis );
setZoomBase( scaleRect() );
}
}
/*!
Qt::MidButton zooms out one position on the zoom stack,
Qt::RightButton to the zoom base.
Changes the current position on the stack, but doesn't pop
any rectangle.
\note The mouse events can be changed, using
QwtEventPattern::setMousePattern: 2, 1
*/
void QwtPlotZoomer::widgetMouseReleaseEvent( QMouseEvent *me )
if ( mouseMatch( MouseSelect2, me ) )
zoom( 0 );
else if ( mouseMatch( MouseSelect3, me ) )
zoom( -1 );
else if ( mouseMatch( MouseSelect6, me ) )
zoom( +1 );
Qt::Key_Plus zooms in, Qt::Key_Minus zooms out one position on the
zoom stack, Qt::Key_Escape zooms out to the zoom base.
Changes the current position on the stack, but doesn't pop
any rectangle.
\note The keys codes can be changed, using
QwtEventPattern::setKeyPattern: 3, 4, 5
*/
if ( !isActive() )
{
if ( keyMatch( KeyUndo, ke ) )
zoom( -1 );
else if ( keyMatch( KeyRedo, ke ) )
zoom( +1 );
else if ( keyMatch( KeyHome, ke ) )
zoom( 0 );
}
/*!
Move the current zoom rectangle.
\param dx X offset
\param dy Y offset
\note The changed rectangle is limited by the zoom base
*/
const QRectF &rect = d_data->zoomStack[d_data->zoomRectIndex];
moveTo( QPointF( rect.left() + dx, rect.top() + dy ) );
if ( x < zoomBase().left() )
x = zoomBase().left();
if ( x > zoomBase().right() - zoomRect().width() )
x = zoomBase().right() - zoomRect().width();
if ( y < zoomBase().top() )
y = zoomBase().top();
if ( y > zoomBase().bottom() - zoomRect().height() )
y = zoomBase().bottom() - zoomRect().height();
if ( x != zoomRect().left() || y != zoomRect().top() )
{
d_data->zoomStack[d_data->zoomRectIndex].moveTo( x, y );
rescale();
}
}
/*!
\brief Check and correct a selected rectangle
expand the selected rectangle to a minimum size of 11x11
and accept it.
\return true If the rectangle is accepted, or has been changed
to an accepted one.
const int minZoomSize = 11;
const QPoint center = rect.center();
rect.setSize( rect.size().expandedTo( QSize( minZoomSize, minZoomSize ) ) );
rect.moveCenter( center );
pa[0] = rect.topLeft();
pa[1] = rect.bottomRight();
return true;
}
/*!
\brief Limit zooming by a minimum rectangle
\return zoomBase().width() / 10e4, zoomBase().height() / 10e4
*/
return QSizeF( d_data->zoomStack[0].width() / 10e4,
d_data->zoomStack[0].height() / 10e4 );
Rejects selections, when the stack depth is too deep, or
the zoomed rectangle is minZoomSize().
\sa minZoomSize(), maxStackDepth()
*/
void QwtPlotZoomer::begin()
{
if ( d_data->maxStackDepth >= 0 )
{
if ( d_data->zoomRectIndex >= uint( d_data->maxStackDepth ) )
const QSizeF minSize = minZoomSize();
if ( minSize.isValid() )
{
const QSizeF sz =
d_data->zoomStack[d_data->zoomRectIndex].size() * 0.9999;
if ( minSize.width() >= sz.width() &&
return;
}
}
QwtPlotPicker::begin();
}
/*!
Expand the selected rectangle to minZoomSize() and zoom in
if accepted.
\param ok If true, complete the selection and emit selected signals
otherwise discard the selection.
\sa accept(), minZoomSize()
\return True if the selection has been accepted, false otherwise
return false;
QwtPlot *plot = QwtPlotZoomer::plot();
if ( !plot )
return false;
const QSizeF minSize = minZoomSize();
if ( minSize.isValid() )
{
const QPointF center = zoomRect.center();
zoomRect.setSize( zoomRect.size().expandedTo( minZoomSize() ) );
zoomRect.moveCenter( center );
}