|
QWT API (中文) 7.3.0
Qt绘图库 - 中文API文档
|
A state machine for QwtPicker selections 更多...
#include <qwt_picker_machine.h>
Public 类型 | |
| enum | SelectionType { NoSelection = -1 , PointSelection , RectSelection , PolygonSelection } |
| Type of a selection. 更多... | |
| enum | Command { Begin , Append , Move , Remove , End } |
| Commands - the output of a state machine | |
Public 成员函数 | |
| 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
QwtPickerMachine accepts key and mouse events and translates them into selection commands.
Type of a selection.
|
explicit |
Constructor
| [in] | type | Selection type for this state machine |
| QwtPickerMachine::SelectionType QwtPickerMachine::selectionType | ( | ) | const |
Return the selection type
| void QwtPickerMachine::setState | ( | int | state | ) |
Change the current state
| [in] | state | New state value |
| int QwtPickerMachine::state | ( | ) | const |
Return the current state
|
pure virtual |