mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-05 00:09:32 -04:00
* require qwt >=6.2 (and fallback to internal 6.3 if system's qwt doesn't suffice) * debian doesn't have qwt for Qt6 and won't have it for trixie
543 lines
12 KiB
C++
543 lines
12 KiB
C++
/******************************************************************************
|
|
* 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_panner.h"
|
|
#include "qwt_picker.h"
|
|
#include "qwt_painter.h"
|
|
|
|
#include <qpainter.h>
|
|
#include <qpixmap.h>
|
|
#include <qevent.h>
|
|
#include <qcursor.h>
|
|
#include <qbitmap.h>
|
|
|
|
static QVector< QwtPicker* > qwtActivePickers( QWidget* w )
|
|
{
|
|
QVector< QwtPicker* > pickers;
|
|
|
|
QObjectList children = w->children();
|
|
for ( int i = 0; i < children.size(); i++ )
|
|
{
|
|
QwtPicker* picker = qobject_cast< QwtPicker* >( children[i] );
|
|
if ( picker && picker->isEnabled() )
|
|
pickers += picker;
|
|
}
|
|
|
|
return pickers;
|
|
}
|
|
|
|
class QwtPanner::PrivateData
|
|
{
|
|
public:
|
|
PrivateData()
|
|
: button( Qt::LeftButton )
|
|
, buttonModifiers( Qt::NoModifier )
|
|
, abortKey( Qt::Key_Escape )
|
|
, abortKeyModifiers( Qt::NoModifier )
|
|
#ifndef QT_NO_CURSOR
|
|
, cursor( NULL )
|
|
, restoreCursor( NULL )
|
|
, hasCursor( false )
|
|
#endif
|
|
, isEnabled( false )
|
|
, orientations( Qt::Vertical | Qt::Horizontal )
|
|
{
|
|
}
|
|
|
|
~PrivateData()
|
|
{
|
|
#ifndef QT_NO_CURSOR
|
|
delete cursor;
|
|
delete restoreCursor;
|
|
#endif
|
|
}
|
|
|
|
Qt::MouseButton button;
|
|
Qt::KeyboardModifiers buttonModifiers;
|
|
|
|
int abortKey;
|
|
Qt::KeyboardModifiers abortKeyModifiers;
|
|
|
|
QPoint initialPos;
|
|
QPoint pos;
|
|
|
|
QPixmap pixmap;
|
|
QBitmap contentsMask;
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
QCursor* cursor;
|
|
QCursor* restoreCursor;
|
|
bool hasCursor;
|
|
#endif
|
|
bool isEnabled;
|
|
Qt::Orientations orientations;
|
|
};
|
|
|
|
/*!
|
|
Creates an panner that is enabled for the left mouse button.
|
|
|
|
\param parent Parent widget to be panned
|
|
*/
|
|
QwtPanner::QwtPanner( QWidget* parent )
|
|
: QWidget( parent )
|
|
{
|
|
m_data = new PrivateData();
|
|
|
|
setAttribute( Qt::WA_TransparentForMouseEvents );
|
|
setAttribute( Qt::WA_NoSystemBackground );
|
|
setFocusPolicy( Qt::NoFocus );
|
|
hide();
|
|
|
|
setEnabled( true );
|
|
}
|
|
|
|
//! Destructor
|
|
QwtPanner::~QwtPanner()
|
|
{
|
|
delete m_data;
|
|
}
|
|
|
|
/*!
|
|
Change the mouse button and modifiers used for panning
|
|
The defaults are Qt::LeftButton and Qt::NoModifier
|
|
*/
|
|
void QwtPanner::setMouseButton( Qt::MouseButton button,
|
|
Qt::KeyboardModifiers modifiers )
|
|
{
|
|
m_data->button = button;
|
|
m_data->buttonModifiers = modifiers;
|
|
}
|
|
|
|
//! Get mouse button and modifiers used for panning
|
|
void QwtPanner::getMouseButton( Qt::MouseButton& button,
|
|
Qt::KeyboardModifiers& modifiers ) const
|
|
{
|
|
button = m_data->button;
|
|
modifiers = m_data->buttonModifiers;
|
|
}
|
|
|
|
/*!
|
|
Change the abort key
|
|
The defaults are Qt::Key_Escape and Qt::NoModifiers
|
|
|
|
\param key Key ( See Qt::Keycode )
|
|
\param modifiers Keyboard modifiers
|
|
*/
|
|
void QwtPanner::setAbortKey( int key,
|
|
Qt::KeyboardModifiers modifiers )
|
|
{
|
|
m_data->abortKey = key;
|
|
m_data->abortKeyModifiers = modifiers;
|
|
}
|
|
|
|
//! Get the abort key and modifiers
|
|
void QwtPanner::getAbortKey( int& key,
|
|
Qt::KeyboardModifiers& modifiers ) const
|
|
{
|
|
key = m_data->abortKey;
|
|
modifiers = m_data->abortKeyModifiers;
|
|
}
|
|
|
|
/*!
|
|
Change the cursor, that is active while panning
|
|
The default is the cursor of the parent widget.
|
|
|
|
\param cursor New cursor
|
|
|
|
\sa setCursor()
|
|
*/
|
|
#ifndef QT_NO_CURSOR
|
|
void QwtPanner::setCursor( const QCursor& cursor )
|
|
{
|
|
m_data->cursor = new QCursor( cursor );
|
|
}
|
|
#endif
|
|
|
|
/*!
|
|
\return Cursor that is active while panning
|
|
\sa setCursor()
|
|
*/
|
|
#ifndef QT_NO_CURSOR
|
|
const QCursor QwtPanner::cursor() const
|
|
{
|
|
if ( m_data->cursor )
|
|
return *m_data->cursor;
|
|
|
|
if ( parentWidget() )
|
|
return parentWidget()->cursor();
|
|
|
|
return QCursor();
|
|
}
|
|
#endif
|
|
|
|
/*!
|
|
\brief En/disable the panner
|
|
|
|
When enabled is true an event filter is installed for
|
|
the observed widget, otherwise the event filter is removed.
|
|
|
|
\param on true or false
|
|
\sa isEnabled(), eventFilter()
|
|
*/
|
|
void QwtPanner::setEnabled( bool on )
|
|
{
|
|
if ( m_data->isEnabled != on )
|
|
{
|
|
m_data->isEnabled = on;
|
|
|
|
QWidget* w = parentWidget();
|
|
if ( w )
|
|
{
|
|
if ( m_data->isEnabled )
|
|
{
|
|
w->installEventFilter( this );
|
|
}
|
|
else
|
|
{
|
|
w->removeEventFilter( this );
|
|
hide();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*!
|
|
Set the orientations, where panning is enabled
|
|
The default value is in both directions: Qt::Horizontal | Qt::Vertical
|
|
|
|
/param o Orientation
|
|
*/
|
|
void QwtPanner::setOrientations( Qt::Orientations o )
|
|
{
|
|
m_data->orientations = o;
|
|
}
|
|
|
|
//! Return the orientation, where panning is enabled
|
|
Qt::Orientations QwtPanner::orientations() const
|
|
{
|
|
return m_data->orientations;
|
|
}
|
|
|
|
/*!
|
|
\return True if an orientation is enabled
|
|
\sa orientations(), setOrientations()
|
|
*/
|
|
bool QwtPanner::isOrientationEnabled( Qt::Orientation o ) const
|
|
{
|
|
return m_data->orientations & o;
|
|
}
|
|
|
|
/*!
|
|
\return true when enabled, false otherwise
|
|
\sa setEnabled, eventFilter()
|
|
*/
|
|
bool QwtPanner::isEnabled() const
|
|
{
|
|
return m_data->isEnabled;
|
|
}
|
|
|
|
/*!
|
|
\brief Paint event
|
|
|
|
Repaint the grabbed pixmap on its current position and
|
|
fill the empty spaces by the background of the parent widget.
|
|
|
|
\param event Paint event
|
|
*/
|
|
void QwtPanner::paintEvent( QPaintEvent* event )
|
|
{
|
|
int dx = m_data->pos.x() - m_data->initialPos.x();
|
|
int dy = m_data->pos.y() - m_data->initialPos.y();
|
|
|
|
QRectF r;
|
|
r.setSize( m_data->pixmap.size() / QwtPainter::devicePixelRatio( &m_data->pixmap ) );
|
|
r.moveCenter( QPointF( r.center().x() + dx, r.center().y() + dy ) );
|
|
|
|
QPixmap pm = QwtPainter::backingStore( this, size() );
|
|
QwtPainter::fillPixmap( parentWidget(), pm );
|
|
|
|
QPainter painter( &pm );
|
|
|
|
if ( !m_data->contentsMask.isNull() )
|
|
{
|
|
QPixmap masked = m_data->pixmap;
|
|
masked.setMask( m_data->contentsMask );
|
|
painter.drawPixmap( r.toRect(), masked );
|
|
}
|
|
else
|
|
{
|
|
painter.drawPixmap( r.toRect(), m_data->pixmap );
|
|
}
|
|
|
|
painter.end();
|
|
|
|
if ( !m_data->contentsMask.isNull() )
|
|
pm.setMask( m_data->contentsMask );
|
|
|
|
painter.begin( this );
|
|
painter.setClipRegion( event->region() );
|
|
painter.drawPixmap( 0, 0, pm );
|
|
}
|
|
|
|
/*!
|
|
\brief Calculate a mask for the contents of the panned widget
|
|
|
|
Sometimes only parts of the contents of a widget should be
|
|
panned. F.e. for a widget with a styled background with rounded borders
|
|
only the area inside of the border should be panned.
|
|
|
|
\return An empty bitmap, indicating no mask
|
|
*/
|
|
QBitmap QwtPanner::contentsMask() const
|
|
{
|
|
return QBitmap();
|
|
}
|
|
|
|
/*!
|
|
Grab the widget into a pixmap.
|
|
\return Grabbed pixmap
|
|
*/
|
|
QPixmap QwtPanner::grab() const
|
|
{
|
|
#if QT_VERSION >= 0x050000
|
|
return parentWidget()->grab( parentWidget()->rect() );
|
|
#else
|
|
return QPixmap::grabWidget( parentWidget() );
|
|
#endif
|
|
}
|
|
|
|
/*!
|
|
\brief Event filter
|
|
|
|
When isEnabled() is true mouse events of the
|
|
observed widget are filtered.
|
|
|
|
\param object Object to be filtered
|
|
\param event Event
|
|
|
|
\return Always false, beside for paint events for the
|
|
parent widget.
|
|
|
|
\sa widgetMousePressEvent(), widgetMouseReleaseEvent(),
|
|
widgetMouseMoveEvent()
|
|
*/
|
|
bool QwtPanner::eventFilter( QObject* object, QEvent* event )
|
|
{
|
|
if ( object == NULL || object != parentWidget() )
|
|
return false;
|
|
|
|
switch ( event->type() )
|
|
{
|
|
case QEvent::MouseButtonPress:
|
|
{
|
|
widgetMousePressEvent( static_cast< QMouseEvent* >( event ) );
|
|
break;
|
|
}
|
|
case QEvent::MouseMove:
|
|
{
|
|
widgetMouseMoveEvent( static_cast< QMouseEvent* >( event ) );
|
|
break;
|
|
}
|
|
case QEvent::MouseButtonRelease:
|
|
{
|
|
widgetMouseReleaseEvent( static_cast< QMouseEvent* >( event ) );
|
|
break;
|
|
}
|
|
case QEvent::KeyPress:
|
|
{
|
|
widgetKeyPressEvent( static_cast< QKeyEvent* >( event ) );
|
|
break;
|
|
}
|
|
case QEvent::KeyRelease:
|
|
{
|
|
widgetKeyReleaseEvent( static_cast< QKeyEvent* >( event ) );
|
|
break;
|
|
}
|
|
case QEvent::Paint:
|
|
{
|
|
if ( isVisible() )
|
|
return true;
|
|
break;
|
|
}
|
|
default:;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/*!
|
|
Handle a mouse press event for the observed widget.
|
|
|
|
\param mouseEvent Mouse event
|
|
\sa eventFilter(), widgetMouseReleaseEvent(),
|
|
widgetMouseMoveEvent(),
|
|
*/
|
|
void QwtPanner::widgetMousePressEvent( QMouseEvent* mouseEvent )
|
|
{
|
|
if ( ( mouseEvent->button() != m_data->button )
|
|
|| ( mouseEvent->modifiers() != m_data->buttonModifiers ) )
|
|
{
|
|
return;
|
|
}
|
|
|
|
QWidget* w = parentWidget();
|
|
if ( w == NULL )
|
|
return;
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
showCursor( true );
|
|
#endif
|
|
|
|
m_data->initialPos = m_data->pos = mouseEvent->pos();
|
|
|
|
setGeometry( parentWidget()->rect() );
|
|
|
|
// We don't want to grab the picker !
|
|
QVector< QwtPicker* > pickers = qwtActivePickers( parentWidget() );
|
|
for ( int i = 0; i < pickers.size(); i++ )
|
|
pickers[i]->setEnabled( false );
|
|
|
|
m_data->pixmap = grab();
|
|
m_data->contentsMask = contentsMask();
|
|
|
|
for ( int i = 0; i < pickers.size(); i++ )
|
|
pickers[i]->setEnabled( true );
|
|
|
|
show();
|
|
}
|
|
|
|
/*!
|
|
Handle a mouse move event for the observed widget.
|
|
|
|
\param mouseEvent Mouse event
|
|
\sa eventFilter(), widgetMousePressEvent(), widgetMouseReleaseEvent()
|
|
*/
|
|
void QwtPanner::widgetMouseMoveEvent( QMouseEvent* mouseEvent )
|
|
{
|
|
if ( !isVisible() )
|
|
return;
|
|
|
|
QPoint pos = mouseEvent->pos();
|
|
if ( !isOrientationEnabled( Qt::Horizontal ) )
|
|
pos.setX( m_data->initialPos.x() );
|
|
if ( !isOrientationEnabled( Qt::Vertical ) )
|
|
pos.setY( m_data->initialPos.y() );
|
|
|
|
if ( pos != m_data->pos && rect().contains( pos ) )
|
|
{
|
|
m_data->pos = pos;
|
|
update();
|
|
|
|
Q_EMIT moved( m_data->pos.x() - m_data->initialPos.x(),
|
|
m_data->pos.y() - m_data->initialPos.y() );
|
|
}
|
|
}
|
|
|
|
/*!
|
|
Handle a mouse release event for the observed widget.
|
|
|
|
\param mouseEvent Mouse event
|
|
\sa eventFilter(), widgetMousePressEvent(),
|
|
widgetMouseMoveEvent(),
|
|
*/
|
|
void QwtPanner::widgetMouseReleaseEvent( QMouseEvent* mouseEvent )
|
|
{
|
|
if ( isVisible() )
|
|
{
|
|
hide();
|
|
#ifndef QT_NO_CURSOR
|
|
showCursor( false );
|
|
#endif
|
|
|
|
QPoint pos = mouseEvent->pos();
|
|
if ( !isOrientationEnabled( Qt::Horizontal ) )
|
|
pos.setX( m_data->initialPos.x() );
|
|
if ( !isOrientationEnabled( Qt::Vertical ) )
|
|
pos.setY( m_data->initialPos.y() );
|
|
|
|
m_data->pixmap = QPixmap();
|
|
m_data->contentsMask = QBitmap();
|
|
m_data->pos = pos;
|
|
|
|
if ( m_data->pos != m_data->initialPos )
|
|
{
|
|
Q_EMIT panned( m_data->pos.x() - m_data->initialPos.x(),
|
|
m_data->pos.y() - m_data->initialPos.y() );
|
|
}
|
|
}
|
|
}
|
|
|
|
/*!
|
|
Handle a key press event for the observed widget.
|
|
|
|
\param keyEvent Key event
|
|
\sa eventFilter(), widgetKeyReleaseEvent()
|
|
*/
|
|
void QwtPanner::widgetKeyPressEvent( QKeyEvent* keyEvent )
|
|
{
|
|
if ( ( keyEvent->key() == m_data->abortKey )
|
|
&& ( keyEvent->modifiers() == m_data->abortKeyModifiers ) )
|
|
{
|
|
hide();
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
showCursor( false );
|
|
#endif
|
|
m_data->pixmap = QPixmap();
|
|
}
|
|
}
|
|
|
|
/*!
|
|
Handle a key release event for the observed widget.
|
|
|
|
\param keyEvent Key event
|
|
\sa eventFilter(), widgetKeyReleaseEvent()
|
|
*/
|
|
void QwtPanner::widgetKeyReleaseEvent( QKeyEvent* keyEvent )
|
|
{
|
|
Q_UNUSED( keyEvent );
|
|
}
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
void QwtPanner::showCursor( bool on )
|
|
{
|
|
if ( on == m_data->hasCursor )
|
|
return;
|
|
|
|
QWidget* w = parentWidget();
|
|
if ( w == NULL || m_data->cursor == NULL )
|
|
return;
|
|
|
|
m_data->hasCursor = on;
|
|
|
|
if ( on )
|
|
{
|
|
if ( w->testAttribute( Qt::WA_SetCursor ) )
|
|
{
|
|
delete m_data->restoreCursor;
|
|
m_data->restoreCursor = new QCursor( w->cursor() );
|
|
}
|
|
w->setCursor( *m_data->cursor );
|
|
}
|
|
else
|
|
{
|
|
if ( m_data->restoreCursor )
|
|
{
|
|
w->setCursor( *m_data->restoreCursor );
|
|
delete m_data->restoreCursor;
|
|
m_data->restoreCursor = NULL;
|
|
}
|
|
else
|
|
w->unsetCursor();
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#include "moc_qwt_panner.cpp"
|