Qwt User's Guide
5.2.3
|
#include <qwt_event_pattern.h>
Classes | |
class | KeyPattern |
A pattern for key events. More... | |
class | MousePattern |
A pattern for mouse events. More... |
Public Types | |
enum | KeyPatternCode { KeySelect1, KeySelect2, KeyAbort, KeyLeft, KeyRight, KeyUp, KeyDown, KeyRedo, KeyUndo, KeyHome, KeyPatternCount } |
enum | MousePatternCode { MouseSelect1, MouseSelect2, MouseSelect3, MouseSelect4, MouseSelect5, MouseSelect6, MousePatternCount } |
Public Member Functions | |
QwtEventPattern () | |
virtual | ~QwtEventPattern () |
void | initKeyPattern () |
void | initMousePattern (int numButtons) |
bool | keyMatch (uint pattern, const QKeyEvent *) const |
const QwtArray< KeyPattern > & | keyPattern () const |
QwtArray< KeyPattern > & | keyPattern () |
bool | mouseMatch (uint pattern, const QMouseEvent *) const |
const QwtArray< MousePattern > & | mousePattern () const |
QwtArray< MousePattern > & | mousePattern () |
void | setKeyPattern (uint pattern, int key, int state=Qt::NoButton) |
void | setKeyPattern (const QwtArray< KeyPattern > &) |
void | setMousePattern (uint pattern, int button, int state=Qt::NoButton) |
void | setMousePattern (const QwtArray< MousePattern > &) |
Protected Member Functions | |
virtual bool | keyMatch (const KeyPattern &, const QKeyEvent *) const |
virtual bool | mouseMatch (const MousePattern &, const QMouseEvent *) const |
A collection of event patterns.
QwtEventPattern introduces an level of indirection for mouse and keyboard inputs. Those are represented by symbolic names, so the application code can be configured by individual mappings.
Symbolic keyboard input codes.
Default initialization:
Symbolic mouse input codes.
The default initialization for 3 button mice is:
The default initialization for 2 button mice is:
The default initialization for 1 button mice is:
QwtEventPattern::QwtEventPattern | ( | ) |
Constructor
void QwtEventPattern::initKeyPattern | ( | ) |
Set default mouse patterns.
void QwtEventPattern::initMousePattern | ( | int | numButtons | ) |
Set default mouse patterns, depending on the number of mouse buttons
numButtons | Number of mouse buttons ( <= 3 ) |
bool QwtEventPattern::keyMatch | ( | uint | pattern, |
const QKeyEvent * | e | ||
) | const |
Compare a key event with an event pattern.
A key event matches the pattern when both have the same key value and in the state value the same key flags (Qt::KeyButtonMask) are set.
pattern | Index of the event pattern |
e | Key event |
|
protectedvirtual |
Compare a key event with an event pattern.
A key event matches the pattern when both have the same key value and in the state value the same key flags (Qt::KeyButtonMask) are set.
pattern | Key event pattern |
e | Key event |
bool QwtEventPattern::mouseMatch | ( | uint | pattern, |
const QMouseEvent * | e | ||
) | const |
Compare a mouse event with an event pattern.
A mouse event matches the pattern when both have the same button value and in the state value the same key flags(Qt::KeyButtonMask) are set.
pattern | Index of the event pattern |
e | Mouse event |
|
protectedvirtual |
Compare a mouse event with an event pattern.
A mouse event matches the pattern when both have the same button value and in the state value the same key flags(Qt::KeyButtonMask) are set.
pattern | Mouse event pattern |
e | Mouse event |
void QwtEventPattern::setKeyPattern | ( | uint | pattern, |
int | key, | ||
int | state = Qt::NoButton |
||
) |
Change one key pattern
pattern | Index of the pattern |
key | Key |
state | State |
void QwtEventPattern::setMousePattern | ( | uint | pattern, |
int | button, | ||
int | state = Qt::NoButton |
||
) |
Change one mouse pattern
pattern | Index of the pattern |
button | Button |
state | State |