|
QWT API (English) 7.0.1
Qt Widget Library for Technical Applications - English API Documentation
|
A state machine for QwtPicker selections. More...
#include <qwt_picker_machine.h>
Public Types | |
| enum | SelectionType { NoSelection = -1 , PointSelection , RectSelection , PolygonSelection } |
| Type of a selection. More... | |
| enum | Command { Begin , Append , Move , Remove , End } |
| Commands - the output of a state machine. | |
Public Member Functions | |
| QwtPickerMachine (SelectionType) | |
| Constructor. | |
| virtual | ~QwtPickerMachine () |
| Destructor . | |
| virtual QList< Command > | transition (const QwtEventPattern &, const QEvent *)=0 |
| void | reset () |
| Set the current state to 0 (initial state) . | |
| int | state () const |
| Return the current state. | |
| void | setState (int) |
| Change the current state. | |
| SelectionType | selectionType () const |
| Return the selection type. | |
A state machine for QwtPicker selections.
Type of a selection.
|
explicit |
Constructor.
|
virtual |
Destructor .
| void QwtPickerMachine::reset | ( | ) |
Set the current state to 0 (initial state) .
| QwtPickerMachine::SelectionType QwtPickerMachine::selectionType | ( | ) | const |
Return the selection type.
| void QwtPickerMachine::setState | ( | int | state | ) |
Change the current state.
| int QwtPickerMachine::state | ( | ) | const |
Return the current state.
|
pure virtual |