123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- .TH "QwtPanner" 3 "Mon Dec 28 2020" "Version 6.1.6" "Qwt User's Guide" \" -*- nroff -*-
- .ad l
- .nh
- .SH NAME
- QwtPanner \- \fBQwtPanner\fP provides panning of a widget\&.
- .SH SYNOPSIS
- .br
- .PP
- .PP
- \fC#include <qwt_panner\&.h>\fP
- .PP
- Inherits QWidget\&.
- .PP
- Inherited by \fBQwtPlotPanner\fP\&.
- .SS "Signals"
- .in +1c
- .ti -1c
- .RI "void \fBpanned\fP (int dx, int dy)"
- .br
- .ti -1c
- .RI "void \fBmoved\fP (int dx, int dy)"
- .br
- .in -1c
- .SS "Public Member Functions"
- .in +1c
- .ti -1c
- .RI "\fBQwtPanner\fP (QWidget *parent)"
- .br
- .ti -1c
- .RI "virtual \fB~QwtPanner\fP ()"
- .br
- .RI "Destructor\&. "
- .ti -1c
- .RI "void \fBsetEnabled\fP (bool)"
- .br
- .RI "En/disable the panner\&. "
- .ti -1c
- .RI "bool \fBisEnabled\fP () const"
- .br
- .ti -1c
- .RI "void \fBsetMouseButton\fP (Qt::MouseButton, Qt::KeyboardModifiers=Qt::NoModifier)"
- .br
- .ti -1c
- .RI "void \fBgetMouseButton\fP (Qt::MouseButton &button, Qt::KeyboardModifiers &) const"
- .br
- .RI "Get mouse button and modifiers used for panning\&. "
- .ti -1c
- .RI "void \fBsetAbortKey\fP (int key, Qt::KeyboardModifiers=Qt::NoModifier)"
- .br
- .ti -1c
- .RI "void \fBgetAbortKey\fP (int &key, Qt::KeyboardModifiers &) const"
- .br
- .RI "Get the abort key and modifiers\&. "
- .ti -1c
- .RI "void \fBsetCursor\fP (const QCursor &)"
- .br
- .ti -1c
- .RI "const QCursor \fBcursor\fP () const"
- .br
- .ti -1c
- .RI "void \fBsetOrientations\fP (Qt::Orientations)"
- .br
- .ti -1c
- .RI "Qt::Orientations \fBorientations\fP () const"
- .br
- .RI "Return the orientation, where paning is enabled\&. "
- .ti -1c
- .RI "bool \fBisOrientationEnabled\fP (Qt::Orientation) const"
- .br
- .ti -1c
- .RI "virtual bool \fBeventFilter\fP (QObject *, QEvent *)"
- .br
- .RI "Event filter\&. "
- .in -1c
- .SS "Protected Member Functions"
- .in +1c
- .ti -1c
- .RI "virtual void \fBwidgetMousePressEvent\fP (QMouseEvent *)"
- .br
- .ti -1c
- .RI "virtual void \fBwidgetMouseReleaseEvent\fP (QMouseEvent *)"
- .br
- .ti -1c
- .RI "virtual void \fBwidgetMouseMoveEvent\fP (QMouseEvent *)"
- .br
- .ti -1c
- .RI "virtual void \fBwidgetKeyPressEvent\fP (QKeyEvent *)"
- .br
- .ti -1c
- .RI "virtual void \fBwidgetKeyReleaseEvent\fP (QKeyEvent *)"
- .br
- .ti -1c
- .RI "virtual void \fBpaintEvent\fP (QPaintEvent *)"
- .br
- .RI "Paint event\&. "
- .ti -1c
- .RI "virtual QBitmap \fBcontentsMask\fP () const"
- .br
- .RI "Calculate a mask for the contents of the panned widget\&. "
- .ti -1c
- .RI "virtual QPixmap \fBgrab\fP () const"
- .br
- .in -1c
- .SH "Detailed Description"
- .PP
- \fBQwtPanner\fP provides panning of a widget\&.
- \fBQwtPanner\fP grabs the contents of a widget, that can be dragged in all directions\&. The offset between the start and the end position is emitted by the panned signal\&.
- .PP
- \fBQwtPanner\fP grabs the content of the widget into a pixmap and moves the pixmap around, without initiating any repaint events for the widget\&. Areas, that are not part of content are not painted while panning\&. This makes panning fast enough for widgets, where repaints are too slow for mouse movements\&.
- .PP
- For widgets, where repaints are very fast it might be better to implement panning manually by mapping mouse events into paint events\&.
- .SH "Constructor & Destructor Documentation"
- .PP
- .SS "QwtPanner::QwtPanner (QWidget * parent)"
- Creates an panner that is enabled for the left mouse button\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIparent\fP Parent widget to be panned
- .RE
- .PP
- .SH "Member Function Documentation"
- .PP
- .SS "QBitmap QwtPanner::contentsMask () const\fC [protected]\fP, \fC [virtual]\fP"
- .PP
- 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\&.
- .PP
- \fBReturns\fP
- .RS 4
- An empty bitmap, indicating no mask
- .RE
- .PP
- .PP
- Reimplemented in \fBQwtPlotPanner\fP\&.
- .SS "const QCursor QwtPanner::cursor () const"
- .PP
- \fBReturns\fP
- .RS 4
- Cursor that is active while panning
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBsetCursor()\fP
- .RE
- .PP
- .SS "bool QwtPanner::eventFilter (QObject * object, QEvent * event)\fC [virtual]\fP"
- .PP
- Event filter\&. When \fBisEnabled()\fP is true mouse events of the observed widget are filtered\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIobject\fP Object to be filtered
- .br
- \fIevent\fP Event
- .RE
- .PP
- \fBReturns\fP
- .RS 4
- Always false, beside for paint events for the parent widget\&.
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBwidgetMousePressEvent()\fP, \fBwidgetMouseReleaseEvent()\fP, \fBwidgetMouseMoveEvent()\fP
- .RE
- .PP
- .SS "QPixmap QwtPanner::grab () const\fC [protected]\fP, \fC [virtual]\fP"
- Grab the widget into a pixmap\&.
- .PP
- \fBReturns\fP
- .RS 4
- Grabbed pixmap
- .RE
- .PP
- .PP
- Reimplemented in \fBQwtPlotPanner\fP\&.
- .SS "bool QwtPanner::isEnabled () const"
- .PP
- \fBReturns\fP
- .RS 4
- true when enabled, false otherwise
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBsetEnabled\fP, \fBeventFilter()\fP
- .RE
- .PP
- .SS "bool QwtPanner::isOrientationEnabled (Qt::Orientation o) const"
- .PP
- \fBReturns\fP
- .RS 4
- True if an orientation is enabled
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBorientations()\fP, \fBsetOrientations()\fP
- .RE
- .PP
- .SS "void QwtPanner::moved (int dx, int dy)\fC [signal]\fP"
- Signal emitted, while the widget moved, but panning is not finished\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIdx\fP Offset in horizontal direction
- .br
- \fIdy\fP Offset in vertical direction
- .RE
- .PP
- .SS "void QwtPanner::paintEvent (QPaintEvent * event)\fC [protected]\fP, \fC [virtual]\fP"
- .PP
- Paint event\&. Repaint the grabbed pixmap on its current position and fill the empty spaces by the background of the parent widget\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIevent\fP Paint event
- .RE
- .PP
- .SS "void QwtPanner::panned (int dx, int dy)\fC [signal]\fP"
- Signal emitted, when panning is done
- .PP
- \fBParameters\fP
- .RS 4
- \fIdx\fP Offset in horizontal direction
- .br
- \fIdy\fP Offset in vertical direction
- .RE
- .PP
- .SS "void QwtPanner::setAbortKey (int key, Qt::KeyboardModifiers modifiers = \fCQt::NoModifier\fP)"
- Change the abort key The defaults are Qt::Key_Escape and Qt::NoModifiers
- .PP
- \fBParameters\fP
- .RS 4
- \fIkey\fP Key ( See Qt::Keycode )
- .br
- \fImodifiers\fP Keyboard modifiers
- .RE
- .PP
- .SS "void QwtPanner::setCursor (const QCursor & cursor)"
- Change the cursor, that is active while panning The default is the cursor of the parent widget\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIcursor\fP New cursor
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBsetCursor()\fP
- .RE
- .PP
- .SS "void QwtPanner::setEnabled (bool on)"
- .PP
- En/disable the panner\&. When enabled is true an event filter is installed for the observed widget, otherwise the event filter is removed\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIon\fP true or false
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBisEnabled()\fP, \fBeventFilter()\fP
- .RE
- .PP
- .SS "void QwtPanner::setMouseButton (Qt::MouseButton button, Qt::KeyboardModifiers modifiers = \fCQt::NoModifier\fP)"
- Change the mouse button and modifiers used for panning The defaults are Qt::LeftButton and Qt::NoModifier
- .SS "void QwtPanner::setOrientations (Qt::Orientations o)"
- Set the orientations, where panning is enabled The default value is in both directions: Qt::Horizontal | Qt::Vertical
- .PP
- /param o Orientation
- .SS "void QwtPanner::widgetKeyPressEvent (QKeyEvent * keyEvent)\fC [protected]\fP, \fC [virtual]\fP"
- Handle a key press event for the observed widget\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIkeyEvent\fP Key event
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBeventFilter()\fP, \fBwidgetKeyReleaseEvent()\fP
- .RE
- .PP
- .SS "void QwtPanner::widgetKeyReleaseEvent (QKeyEvent * keyEvent)\fC [protected]\fP, \fC [virtual]\fP"
- Handle a key release event for the observed widget\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIkeyEvent\fP Key event
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBeventFilter()\fP, \fBwidgetKeyReleaseEvent()\fP
- .RE
- .PP
- .SS "void QwtPanner::widgetMouseMoveEvent (QMouseEvent * mouseEvent)\fC [protected]\fP, \fC [virtual]\fP"
- Handle a mouse move event for the observed widget\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fImouseEvent\fP Mouse event
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBeventFilter()\fP, \fBwidgetMousePressEvent()\fP, \fBwidgetMouseReleaseEvent()\fP
- .RE
- .PP
- .SS "void QwtPanner::widgetMousePressEvent (QMouseEvent * mouseEvent)\fC [protected]\fP, \fC [virtual]\fP"
- Handle a mouse press event for the observed widget\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fImouseEvent\fP Mouse event
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBeventFilter()\fP, \fBwidgetMouseReleaseEvent()\fP, \fBwidgetMouseMoveEvent()\fP,
- .RE
- .PP
- .SS "void QwtPanner::widgetMouseReleaseEvent (QMouseEvent * mouseEvent)\fC [protected]\fP, \fC [virtual]\fP"
- Handle a mouse release event for the observed widget\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fImouseEvent\fP Mouse event
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBeventFilter()\fP, \fBwidgetMousePressEvent()\fP, \fBwidgetMouseMoveEvent()\fP,
- .RE
- .PP
- .SH "Author"
- .PP
- Generated automatically by Doxygen for Qwt User's Guide from the source code\&.
|