[4271] | 1 | /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
|
---|
| 2 | * Qwt Widget Library
|
---|
| 3 | * Copyright (C) 1997 Josef Wilgen
|
---|
| 4 | * Copyright (C) 2002 Uwe Rathmann
|
---|
| 5 | *
|
---|
| 6 | * This library is free software; you can redistribute it and/or
|
---|
| 7 | * modify it under the terms of the Qwt License, Version 1.0
|
---|
| 8 | *****************************************************************************/
|
---|
| 9 |
|
---|
| 10 | #include "qwt_magnifier.h"
|
---|
| 11 | #include "qwt_math.h"
|
---|
| 12 | #include <qevent.h>
|
---|
| 13 | #include <qwidget.h>
|
---|
| 14 |
|
---|
| 15 | class QwtMagnifier::PrivateData
|
---|
| 16 | {
|
---|
| 17 | public:
|
---|
| 18 | PrivateData():
|
---|
| 19 | isEnabled( false ),
|
---|
| 20 | wheelFactor( 0.9 ),
|
---|
[8127] | 21 | wheelModifiers( Qt::NoModifier ),
|
---|
[4271] | 22 | mouseFactor( 0.95 ),
|
---|
| 23 | mouseButton( Qt::RightButton ),
|
---|
[8127] | 24 | mouseButtonModifiers( Qt::NoModifier ),
|
---|
[4271] | 25 | keyFactor( 0.9 ),
|
---|
| 26 | zoomInKey( Qt::Key_Plus ),
|
---|
[8127] | 27 | zoomInKeyModifiers( Qt::NoModifier ),
|
---|
[4271] | 28 | zoomOutKey( Qt::Key_Minus ),
|
---|
| 29 | zoomOutKeyModifiers( Qt::NoModifier ),
|
---|
| 30 | mousePressed( false )
|
---|
| 31 | {
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 | bool isEnabled;
|
---|
| 35 |
|
---|
| 36 | double wheelFactor;
|
---|
[8127] | 37 | Qt::KeyboardModifiers wheelModifiers;
|
---|
[4271] | 38 |
|
---|
| 39 | double mouseFactor;
|
---|
| 40 |
|
---|
[8127] | 41 | Qt::MouseButton mouseButton;
|
---|
| 42 | Qt::KeyboardModifiers mouseButtonModifiers;
|
---|
| 43 |
|
---|
[4271] | 44 | double keyFactor;
|
---|
[8127] | 45 |
|
---|
[4271] | 46 | int zoomInKey;
|
---|
[8127] | 47 | Qt::KeyboardModifiers zoomInKeyModifiers;
|
---|
| 48 |
|
---|
[4271] | 49 | int zoomOutKey;
|
---|
[8127] | 50 | Qt::KeyboardModifiers zoomOutKeyModifiers;
|
---|
[4271] | 51 |
|
---|
| 52 | bool mousePressed;
|
---|
| 53 | bool hasMouseTracking;
|
---|
| 54 | QPoint mousePos;
|
---|
| 55 | };
|
---|
| 56 |
|
---|
| 57 | /*!
|
---|
| 58 | Constructor
|
---|
| 59 | \param parent Widget to be magnified
|
---|
| 60 | */
|
---|
| 61 | QwtMagnifier::QwtMagnifier( QWidget *parent ):
|
---|
| 62 | QObject( parent )
|
---|
| 63 | {
|
---|
| 64 | d_data = new PrivateData();
|
---|
| 65 | setEnabled( true );
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | //! Destructor
|
---|
| 69 | QwtMagnifier::~QwtMagnifier()
|
---|
| 70 | {
|
---|
| 71 | delete d_data;
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | /*!
|
---|
| 75 | \brief En/disable the magnifier
|
---|
| 76 |
|
---|
| 77 | When enabled is true an event filter is installed for
|
---|
| 78 | the observed widget, otherwise the event filter is removed.
|
---|
| 79 |
|
---|
| 80 | \param on true or false
|
---|
| 81 | \sa isEnabled(), eventFilter()
|
---|
| 82 | */
|
---|
| 83 | void QwtMagnifier::setEnabled( bool on )
|
---|
| 84 | {
|
---|
| 85 | if ( d_data->isEnabled != on )
|
---|
| 86 | {
|
---|
| 87 | d_data->isEnabled = on;
|
---|
| 88 |
|
---|
| 89 | QObject *o = parent();
|
---|
| 90 | if ( o )
|
---|
| 91 | {
|
---|
| 92 | if ( d_data->isEnabled )
|
---|
| 93 | o->installEventFilter( this );
|
---|
| 94 | else
|
---|
| 95 | o->removeEventFilter( this );
|
---|
| 96 | }
|
---|
| 97 | }
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | /*!
|
---|
| 101 | \return true when enabled, false otherwise
|
---|
| 102 | \sa setEnabled(), eventFilter()
|
---|
| 103 | */
|
---|
| 104 | bool QwtMagnifier::isEnabled() const
|
---|
| 105 | {
|
---|
| 106 | return d_data->isEnabled;
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | /*!
|
---|
| 110 | \brief Change the wheel factor
|
---|
| 111 |
|
---|
| 112 | The wheel factor defines the ratio between the current range
|
---|
| 113 | on the parent widget and the zoomed range for each step of the wheel.
|
---|
[8127] | 114 |
|
---|
| 115 | Use values > 1 for magnification (i.e. 2.0) and values < 1 for
|
---|
| 116 | scaling down (i.e. 1/2.0 = 0.5). You can use this feature for
|
---|
| 117 | inverting the direction of the wheel.
|
---|
| 118 |
|
---|
[4271] | 119 | The default value is 0.9.
|
---|
| 120 |
|
---|
| 121 | \param factor Wheel factor
|
---|
| 122 | \sa wheelFactor(), setWheelButtonState(),
|
---|
| 123 | setMouseFactor(), setKeyFactor()
|
---|
| 124 | */
|
---|
| 125 | void QwtMagnifier::setWheelFactor( double factor )
|
---|
| 126 | {
|
---|
| 127 | d_data->wheelFactor = factor;
|
---|
| 128 | }
|
---|
| 129 |
|
---|
| 130 | /*!
|
---|
| 131 | \return Wheel factor
|
---|
| 132 | \sa setWheelFactor()
|
---|
| 133 | */
|
---|
| 134 | double QwtMagnifier::wheelFactor() const
|
---|
| 135 | {
|
---|
| 136 | return d_data->wheelFactor;
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | /*!
|
---|
[8127] | 140 | Assign keyboard modifiers for zooming in/out using the wheel.
|
---|
| 141 | The default modifiers are Qt::NoModifiers.
|
---|
[4271] | 142 |
|
---|
[8127] | 143 | \param modifiers Keyboard modifiers
|
---|
| 144 | \sa wheelModifiers()
|
---|
[4271] | 145 | */
|
---|
[8127] | 146 | void QwtMagnifier::setWheelModifiers( Qt::KeyboardModifiers modifiers )
|
---|
[4271] | 147 | {
|
---|
[8127] | 148 | d_data->wheelModifiers = modifiers;
|
---|
[4271] | 149 | }
|
---|
| 150 |
|
---|
| 151 | /*!
|
---|
[8127] | 152 | \return Wheel modifiers
|
---|
| 153 | \sa setWheelModifiers()
|
---|
[4271] | 154 | */
|
---|
[8127] | 155 | Qt::KeyboardModifiers QwtMagnifier::wheelModifiers() const
|
---|
[4271] | 156 | {
|
---|
[8127] | 157 | return d_data->wheelModifiers;
|
---|
[4271] | 158 | }
|
---|
| 159 |
|
---|
| 160 | /*!
|
---|
| 161 | \brief Change the mouse factor
|
---|
| 162 |
|
---|
| 163 | The mouse factor defines the ratio between the current range
|
---|
| 164 | on the parent widget and the zoomed range for each vertical mouse movement.
|
---|
| 165 | The default value is 0.95.
|
---|
| 166 |
|
---|
| 167 | \param factor Wheel factor
|
---|
| 168 | \sa mouseFactor(), setMouseButton(), setWheelFactor(), setKeyFactor()
|
---|
| 169 | */
|
---|
| 170 | void QwtMagnifier::setMouseFactor( double factor )
|
---|
| 171 | {
|
---|
| 172 | d_data->mouseFactor = factor;
|
---|
| 173 | }
|
---|
| 174 |
|
---|
| 175 | /*!
|
---|
| 176 | \return Mouse factor
|
---|
| 177 | \sa setMouseFactor()
|
---|
| 178 | */
|
---|
| 179 | double QwtMagnifier::mouseFactor() const
|
---|
| 180 | {
|
---|
| 181 | return d_data->mouseFactor;
|
---|
| 182 | }
|
---|
| 183 |
|
---|
| 184 | /*!
|
---|
| 185 | Assign the mouse button, that is used for zooming in/out.
|
---|
| 186 | The default value is Qt::RightButton.
|
---|
| 187 |
|
---|
| 188 | \param button Button
|
---|
[8127] | 189 | \param modifiers Keyboard modifiers
|
---|
| 190 |
|
---|
[4271] | 191 | \sa getMouseButton()
|
---|
| 192 | */
|
---|
[9383] | 193 | void QwtMagnifier::setMouseButton(
|
---|
[8127] | 194 | Qt::MouseButton button, Qt::KeyboardModifiers modifiers )
|
---|
[4271] | 195 | {
|
---|
| 196 | d_data->mouseButton = button;
|
---|
[8127] | 197 | d_data->mouseButtonModifiers = modifiers;
|
---|
[4271] | 198 | }
|
---|
| 199 |
|
---|
| 200 | //! \sa setMouseButton()
|
---|
| 201 | void QwtMagnifier::getMouseButton(
|
---|
[8127] | 202 | Qt::MouseButton &button, Qt::KeyboardModifiers &modifiers ) const
|
---|
[4271] | 203 | {
|
---|
| 204 | button = d_data->mouseButton;
|
---|
[8127] | 205 | modifiers = d_data->mouseButtonModifiers;
|
---|
[4271] | 206 | }
|
---|
| 207 |
|
---|
| 208 | /*!
|
---|
| 209 | \brief Change the key factor
|
---|
| 210 |
|
---|
| 211 | The key factor defines the ratio between the current range
|
---|
| 212 | on the parent widget and the zoomed range for each key press of
|
---|
| 213 | the zoom in/out keys. The default value is 0.9.
|
---|
| 214 |
|
---|
| 215 | \param factor Key factor
|
---|
| 216 | \sa keyFactor(), setZoomInKey(), setZoomOutKey(),
|
---|
| 217 | setWheelFactor, setMouseFactor()
|
---|
| 218 | */
|
---|
| 219 | void QwtMagnifier::setKeyFactor( double factor )
|
---|
| 220 | {
|
---|
| 221 | d_data->keyFactor = factor;
|
---|
| 222 | }
|
---|
| 223 |
|
---|
| 224 | /*!
|
---|
| 225 | \return Key factor
|
---|
| 226 | \sa setKeyFactor()
|
---|
| 227 | */
|
---|
| 228 | double QwtMagnifier::keyFactor() const
|
---|
| 229 | {
|
---|
| 230 | return d_data->keyFactor;
|
---|
| 231 | }
|
---|
| 232 |
|
---|
| 233 | /*!
|
---|
| 234 | Assign the key, that is used for zooming in.
|
---|
| 235 | The default combination is Qt::Key_Plus + Qt::NoModifier.
|
---|
| 236 |
|
---|
| 237 | \param key
|
---|
| 238 | \param modifiers
|
---|
| 239 | \sa getZoomInKey(), setZoomOutKey()
|
---|
| 240 | */
|
---|
[9383] | 241 | void QwtMagnifier::setZoomInKey( int key,
|
---|
[8127] | 242 | Qt::KeyboardModifiers modifiers )
|
---|
[4271] | 243 | {
|
---|
| 244 | d_data->zoomInKey = key;
|
---|
| 245 | d_data->zoomInKeyModifiers = modifiers;
|
---|
| 246 | }
|
---|
| 247 |
|
---|
[9383] | 248 | /*!
|
---|
[8127] | 249 | \brief Retrieve the settings of the zoom in key
|
---|
| 250 |
|
---|
| 251 | \param key Key code, see Qt::Key
|
---|
| 252 | \param modifiers Keyboard modifiers
|
---|
| 253 |
|
---|
| 254 | \sa setZoomInKey()
|
---|
| 255 | */
|
---|
[9383] | 256 | void QwtMagnifier::getZoomInKey( int &key,
|
---|
[8127] | 257 | Qt::KeyboardModifiers &modifiers ) const
|
---|
[4271] | 258 | {
|
---|
| 259 | key = d_data->zoomInKey;
|
---|
| 260 | modifiers = d_data->zoomInKeyModifiers;
|
---|
| 261 | }
|
---|
| 262 |
|
---|
| 263 | /*!
|
---|
| 264 | Assign the key, that is used for zooming out.
|
---|
| 265 | The default combination is Qt::Key_Minus + Qt::NoModifier.
|
---|
| 266 |
|
---|
| 267 | \param key
|
---|
| 268 | \param modifiers
|
---|
| 269 | \sa getZoomOutKey(), setZoomOutKey()
|
---|
| 270 | */
|
---|
[9383] | 271 | void QwtMagnifier::setZoomOutKey( int key,
|
---|
[8127] | 272 | Qt::KeyboardModifiers modifiers )
|
---|
[4271] | 273 | {
|
---|
| 274 | d_data->zoomOutKey = key;
|
---|
| 275 | d_data->zoomOutKeyModifiers = modifiers;
|
---|
| 276 | }
|
---|
| 277 |
|
---|
[9383] | 278 | /*!
|
---|
[8127] | 279 | \brief Retrieve the settings of the zoom out key
|
---|
| 280 |
|
---|
| 281 | \param key Key code, see Qt::Key
|
---|
| 282 | \param modifiers Keyboard modifiers
|
---|
| 283 |
|
---|
| 284 | \sa setZoomOutKey()
|
---|
| 285 | */
|
---|
[9383] | 286 | void QwtMagnifier::getZoomOutKey( int &key,
|
---|
[8127] | 287 | Qt::KeyboardModifiers &modifiers ) const
|
---|
[4271] | 288 | {
|
---|
| 289 | key = d_data->zoomOutKey;
|
---|
| 290 | modifiers = d_data->zoomOutKeyModifiers;
|
---|
| 291 | }
|
---|
| 292 |
|
---|
| 293 | /*!
|
---|
| 294 | \brief Event filter
|
---|
| 295 |
|
---|
[8127] | 296 | When isEnabled() is true, the mouse events of the
|
---|
| 297 | observed widget are filtered.
|
---|
[4271] | 298 |
|
---|
| 299 | \param object Object to be filtered
|
---|
| 300 | \param event Event
|
---|
| 301 |
|
---|
[8127] | 302 | \return Forwarded to QObject::eventFilter()
|
---|
| 303 |
|
---|
[4271] | 304 | \sa widgetMousePressEvent(), widgetMouseReleaseEvent(),
|
---|
| 305 | widgetMouseMoveEvent(), widgetWheelEvent(), widgetKeyPressEvent()
|
---|
| 306 | widgetKeyReleaseEvent()
|
---|
| 307 | */
|
---|
| 308 | bool QwtMagnifier::eventFilter( QObject *object, QEvent *event )
|
---|
| 309 | {
|
---|
| 310 | if ( object && object == parent() )
|
---|
| 311 | {
|
---|
| 312 | switch ( event->type() )
|
---|
| 313 | {
|
---|
| 314 | case QEvent::MouseButtonPress:
|
---|
| 315 | {
|
---|
[8127] | 316 | widgetMousePressEvent( static_cast<QMouseEvent *>( event ) );
|
---|
[4271] | 317 | break;
|
---|
| 318 | }
|
---|
| 319 | case QEvent::MouseMove:
|
---|
| 320 | {
|
---|
[8127] | 321 | widgetMouseMoveEvent( static_cast<QMouseEvent *>( event ) );
|
---|
[4271] | 322 | break;
|
---|
| 323 | }
|
---|
| 324 | case QEvent::MouseButtonRelease:
|
---|
| 325 | {
|
---|
[8127] | 326 | widgetMouseReleaseEvent( static_cast<QMouseEvent *>( event ) );
|
---|
[4271] | 327 | break;
|
---|
| 328 | }
|
---|
| 329 | case QEvent::Wheel:
|
---|
| 330 | {
|
---|
[8127] | 331 | widgetWheelEvent( static_cast<QWheelEvent *>( event ) );
|
---|
[4271] | 332 | break;
|
---|
| 333 | }
|
---|
| 334 | case QEvent::KeyPress:
|
---|
| 335 | {
|
---|
[8127] | 336 | widgetKeyPressEvent( static_cast<QKeyEvent *>( event ) );
|
---|
[4271] | 337 | break;
|
---|
| 338 | }
|
---|
| 339 | case QEvent::KeyRelease:
|
---|
| 340 | {
|
---|
[8127] | 341 | widgetKeyReleaseEvent( static_cast<QKeyEvent *>( event ) );
|
---|
[4271] | 342 | break;
|
---|
| 343 | }
|
---|
| 344 | default:;
|
---|
| 345 | }
|
---|
| 346 | }
|
---|
| 347 | return QObject::eventFilter( object, event );
|
---|
| 348 | }
|
---|
| 349 |
|
---|
| 350 | /*!
|
---|
| 351 | Handle a mouse press event for the observed widget.
|
---|
| 352 |
|
---|
| 353 | \param mouseEvent Mouse event
|
---|
| 354 | \sa eventFilter(), widgetMouseReleaseEvent(), widgetMouseMoveEvent()
|
---|
| 355 | */
|
---|
| 356 | void QwtMagnifier::widgetMousePressEvent( QMouseEvent *mouseEvent )
|
---|
| 357 | {
|
---|
[8127] | 358 | if ( parentWidget() == NULL )
|
---|
[4271] | 359 | return;
|
---|
| 360 |
|
---|
[8127] | 361 | if ( ( mouseEvent->button() != d_data->mouseButton ) ||
|
---|
| 362 | ( mouseEvent->modifiers() != d_data->mouseButtonModifiers ) )
|
---|
[4271] | 363 | {
|
---|
| 364 | return;
|
---|
| 365 | }
|
---|
| 366 |
|
---|
| 367 | d_data->hasMouseTracking = parentWidget()->hasMouseTracking();
|
---|
[8127] | 368 |
|
---|
[4271] | 369 | parentWidget()->setMouseTracking( true );
|
---|
| 370 | d_data->mousePos = mouseEvent->pos();
|
---|
| 371 | d_data->mousePressed = true;
|
---|
| 372 | }
|
---|
| 373 |
|
---|
| 374 | /*!
|
---|
| 375 | Handle a mouse release event for the observed widget.
|
---|
| 376 |
|
---|
| 377 | \param mouseEvent Mouse event
|
---|
| 378 |
|
---|
| 379 | \sa eventFilter(), widgetMousePressEvent(), widgetMouseMoveEvent(),
|
---|
| 380 | */
|
---|
| 381 | void QwtMagnifier::widgetMouseReleaseEvent( QMouseEvent *mouseEvent )
|
---|
| 382 | {
|
---|
| 383 | Q_UNUSED( mouseEvent );
|
---|
| 384 |
|
---|
| 385 | if ( d_data->mousePressed && parentWidget() )
|
---|
| 386 | {
|
---|
| 387 | d_data->mousePressed = false;
|
---|
| 388 | parentWidget()->setMouseTracking( d_data->hasMouseTracking );
|
---|
| 389 | }
|
---|
| 390 | }
|
---|
| 391 |
|
---|
| 392 | /*!
|
---|
| 393 | Handle a mouse move event for the observed widget.
|
---|
| 394 |
|
---|
| 395 | \param mouseEvent Mouse event
|
---|
| 396 | \sa eventFilter(), widgetMousePressEvent(), widgetMouseReleaseEvent(),
|
---|
| 397 | */
|
---|
| 398 | void QwtMagnifier::widgetMouseMoveEvent( QMouseEvent *mouseEvent )
|
---|
| 399 | {
|
---|
| 400 | if ( !d_data->mousePressed )
|
---|
| 401 | return;
|
---|
| 402 |
|
---|
| 403 | const int dy = mouseEvent->pos().y() - d_data->mousePos.y();
|
---|
| 404 | if ( dy != 0 )
|
---|
| 405 | {
|
---|
| 406 | double f = d_data->mouseFactor;
|
---|
| 407 | if ( dy < 0 )
|
---|
| 408 | f = 1 / f;
|
---|
| 409 |
|
---|
| 410 | rescale( f );
|
---|
| 411 | }
|
---|
| 412 |
|
---|
| 413 | d_data->mousePos = mouseEvent->pos();
|
---|
| 414 | }
|
---|
| 415 |
|
---|
| 416 | /*!
|
---|
| 417 | Handle a wheel event for the observed widget.
|
---|
| 418 |
|
---|
| 419 | \param wheelEvent Wheel event
|
---|
| 420 | \sa eventFilter()
|
---|
| 421 | */
|
---|
| 422 | void QwtMagnifier::widgetWheelEvent( QWheelEvent *wheelEvent )
|
---|
| 423 | {
|
---|
[8127] | 424 | if ( wheelEvent->modifiers() != d_data->wheelModifiers )
|
---|
[4271] | 425 | {
|
---|
| 426 | return;
|
---|
| 427 | }
|
---|
| 428 |
|
---|
| 429 | if ( d_data->wheelFactor != 0.0 )
|
---|
| 430 | {
|
---|
| 431 | /*
|
---|
| 432 | A positive delta indicates that the wheel was
|
---|
| 433 | rotated forwards away from the user; a negative
|
---|
| 434 | value indicates that the wheel was rotated
|
---|
| 435 | backwards toward the user.
|
---|
| 436 | Most mouse types work in steps of 15 degrees,
|
---|
| 437 | in which case the delta value is a multiple
|
---|
| 438 | of 120 (== 15 * 8).
|
---|
| 439 | */
|
---|
[9383] | 440 | double f = qPow( d_data->wheelFactor,
|
---|
[8127] | 441 | qAbs( wheelEvent->delta() / 120.0 ) );
|
---|
[4271] | 442 |
|
---|
| 443 | if ( wheelEvent->delta() > 0 )
|
---|
| 444 | f = 1 / f;
|
---|
| 445 |
|
---|
| 446 | rescale( f );
|
---|
| 447 | }
|
---|
| 448 | }
|
---|
| 449 |
|
---|
| 450 | /*!
|
---|
| 451 | Handle a key press event for the observed widget.
|
---|
| 452 |
|
---|
| 453 | \param keyEvent Key event
|
---|
| 454 | \sa eventFilter(), widgetKeyReleaseEvent()
|
---|
| 455 | */
|
---|
| 456 | void QwtMagnifier::widgetKeyPressEvent( QKeyEvent *keyEvent )
|
---|
| 457 | {
|
---|
[8127] | 458 | if ( keyEvent->key() == d_data->zoomInKey &&
|
---|
| 459 | keyEvent->modifiers() == d_data->zoomInKeyModifiers )
|
---|
[4271] | 460 | {
|
---|
| 461 | rescale( d_data->keyFactor );
|
---|
| 462 | }
|
---|
[8127] | 463 | else if ( keyEvent->key() == d_data->zoomOutKey &&
|
---|
| 464 | keyEvent->modifiers() == d_data->zoomOutKeyModifiers )
|
---|
[4271] | 465 | {
|
---|
| 466 | rescale( 1.0 / d_data->keyFactor );
|
---|
| 467 | }
|
---|
| 468 | }
|
---|
| 469 |
|
---|
| 470 | /*!
|
---|
| 471 | Handle a key release event for the observed widget.
|
---|
| 472 |
|
---|
| 473 | \param keyEvent Key event
|
---|
| 474 | \sa eventFilter(), widgetKeyReleaseEvent()
|
---|
| 475 | */
|
---|
| 476 | void QwtMagnifier::widgetKeyReleaseEvent( QKeyEvent *keyEvent )
|
---|
| 477 | {
|
---|
| 478 | Q_UNUSED( keyEvent );
|
---|
| 479 | }
|
---|
| 480 |
|
---|
| 481 | //! \return Parent widget, where the rescaling happens
|
---|
| 482 | QWidget *QwtMagnifier::parentWidget()
|
---|
| 483 | {
|
---|
[8127] | 484 | return qobject_cast<QWidget *>( parent() );
|
---|
[4271] | 485 | }
|
---|
| 486 |
|
---|
| 487 | //! \return Parent widget, where the rescaling happens
|
---|
| 488 | const QWidget *QwtMagnifier::parentWidget() const
|
---|
| 489 | {
|
---|
[8127] | 490 | return qobject_cast<const QWidget *>( parent() );
|
---|
[4271] | 491 | }
|
---|
| 492 |
|
---|