A state machine for QwtPicker selections. More...
#include <qwt_picker_machine.h>
Public Types | |
enum | Command { Begin, Append, Move, Remove, End } |
Commands - the output of a state machine. More... | |
enum | SelectionType { NoSelection = -1, PointSelection, RectSelection, PolygonSelection } |
Public Member Functions | |
QwtPickerMachine (SelectionType) | |
Constructor. More... | |
void | reset () |
Set the current state to 0. More... | |
SelectionType | selectionType () const |
Return the selection type. More... | |
void | setState (int) |
Change the current state. More... | |
int | state () const |
Return the current state. More... | |
virtual QList< Command > | transition (const QwtEventPattern &, const QEvent *)=0 |
Transition. More... | |
virtual | ~QwtPickerMachine () |
Destructor. More... | |
Private Attributes | |
const SelectionType | d_selectionType |
int | d_state |
A state machine for QwtPicker selections.
QwtPickerMachine accepts key and mouse events and translates them into selection commands.
Definition at line 28 of file qwt_picker_machine.h.
Commands - the output of a state machine.
Enumerator | |
---|---|
Begin | |
Append | |
Move | |
Remove | |
End |
Definition at line 51 of file qwt_picker_machine.h.
Type of a selection.
Definition at line 35 of file qwt_picker_machine.h.
|
explicit |
Constructor.
Definition at line 15 of file qwt_picker_machine.cpp.
|
virtual |
Destructor.
Definition at line 22 of file qwt_picker_machine.cpp.
void QwtPickerMachine::reset | ( | ) |
Set the current state to 0.
Definition at line 45 of file qwt_picker_machine.cpp.
QwtPickerMachine::SelectionType QwtPickerMachine::selectionType | ( | ) | const |
Return the selection type.
Definition at line 27 of file qwt_picker_machine.cpp.
void QwtPickerMachine::setState | ( | int | state | ) |
Change the current state.
Definition at line 39 of file qwt_picker_machine.cpp.
int QwtPickerMachine::state | ( | ) | const |
Return the current state.
Definition at line 33 of file qwt_picker_machine.cpp.
|
pure virtual |
Transition.
Implemented in QwtPickerPolygonMachine, QwtPickerDragLineMachine, QwtPickerDragRectMachine, QwtPickerClickRectMachine, QwtPickerDragPointMachine, QwtPickerClickPointMachine, and QwtPickerTrackerMachine.
|
private |
Definition at line 74 of file qwt_picker_machine.h.
|
private |
Definition at line 75 of file qwt_picker_machine.h.