QwtEventPattern(3) | Qwt User's Guide | QwtEventPattern(3) |
QwtEventPattern - A collection of event patterns.
#include <qwt_event_pattern.h>
Inherited by QwtPicker.
class KeyPattern
A pattern for key events. class MousePattern
A pattern for mouse events.
enum MousePatternCode { MouseSelect1,
MouseSelect2, MouseSelect3, MouseSelect4,
MouseSelect5, MouseSelect6, MousePatternCount }
Symbolic mouse input codes. enum KeyPatternCode { KeySelect1,
KeySelect2, KeyAbort, KeyLeft, KeyRight,
KeyUp, KeyDown, KeyRedo, KeyUndo,
KeyHome, KeyPatternCount }
Symbolic keyboard input codes.
QwtEventPattern ()
virtual ~QwtEventPattern ()
Destructor. void initMousePattern (int numButtons)
void initKeyPattern ()
void setMousePattern (MousePatternCode, Qt::MouseButton button,
Qt::KeyboardModifiers=Qt::NoModifier)
void setKeyPattern (KeyPatternCode, int key,
Qt::KeyboardModifiers modifiers=Qt::NoModifier)
void setMousePattern (const QVector< MousePattern > &)
Change the mouse event patterns. void setKeyPattern (const QVector<
KeyPattern > &)
Change the key event patterns. const QVector< MousePattern >
& mousePattern () const
const QVector< KeyPattern > & keyPattern () const
QVector< MousePattern > & mousePattern ()
QVector< KeyPattern > & keyPattern ()
bool mouseMatch (MousePatternCode, const QMouseEvent *) const
Compare a mouse event with an event pattern. bool keyMatch
(KeyPatternCode, const QKeyEvent *) const
Compare a key event with an event pattern.
virtual bool mouseMatch (const MousePattern &,
const QMouseEvent *) const
Compare a mouse event with an event pattern. virtual bool keyMatch
(const KeyPattern &, const QKeyEvent *) const
Compare a key event with an event pattern.
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.
See also:
Symbolic keyboard input codes. Individual settings can be configured using setKeyPattern()
See also:
Enumerator
Symbolic mouse input codes. QwtEventPattern implements 3 different settings for mice with 1, 2, or 3 buttons that can be activated using initMousePattern(). The default setting is for 3 button mice.
Individual settings can be configured using setMousePattern().
See also:
Enumerator
Constructor
See also:
Set default mouse patterns.
See also:
Set default mouse patterns, depending on the number of mouse buttons
Parameters:
See also:
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.
Parameters:
Returns:
See also:
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.
Parameters:
Returns:
See also:
Returns:
Returns:
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.
Parameters:
Returns:
See also:
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.
Parameters:
Returns:
See also:
Returns:
Returns:
Change one key pattern
Parameters:
See also:
Change one mouse pattern
Parameters:
See also:
Generated automatically by Doxygen for Qwt User's Guide from the source code.
Wed Jan 2 2019 | Version 6.1.4 |