Qwt User's Guide 6.3.0
Loading...
Searching...
No Matches
qwt_picker_machine.h
1/******************************************************************************
2 * Qwt Widget Library
3 * Copyright (C) 1997 Josef Wilgen
4 * Copyright (C) 2002 Uwe Rathmann
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the Qwt License, Version 1.0
8 *****************************************************************************/
9
10#ifndef QWT_PICKER_MACHINE
11#define QWT_PICKER_MACHINE
12
13#include "qwt_global.h"
14
15class QwtEventPattern;
16class QEvent;
17template< typename T > class QList;
18
28class QWT_EXPORT QwtPickerMachine
29{
30 public:
36 {
38 NoSelection = -1,
39
42
45
47 PolygonSelection
48 };
49
52 {
53 Begin,
54 Append,
55 Move,
56 Remove,
57 End
58 };
59
60 explicit QwtPickerMachine( SelectionType );
61 virtual ~QwtPickerMachine();
62
65 const QwtEventPattern&, const QEvent* ) = 0;
66 void reset();
67
68 int state() const;
69 void setState( int );
70
71 SelectionType selectionType() const;
72
73 private:
74 const SelectionType m_selectionType;
75 int m_state;
76};
77
86{
87 public:
89
90 virtual QList< Command > transition(
91 const QwtEventPattern&, const QEvent* ) QWT_OVERRIDE;
92};
93
103{
104 public:
106
107 virtual QList< Command > transition(
108 const QwtEventPattern&, const QEvent* ) QWT_OVERRIDE;
109};
110
119{
120 public:
122
123 virtual QList< Command > transition(
124 const QwtEventPattern&, const QEvent* ) QWT_OVERRIDE;
125};
126
141{
142 public:
144
145 virtual QList< Command > transition(
146 const QwtEventPattern&, const QEvent* ) QWT_OVERRIDE;
147};
148
162{
163 public:
165
166 virtual QList< Command > transition(
167 const QwtEventPattern&, const QEvent* ) QWT_OVERRIDE;
168};
169
186{
187 public:
189
190 virtual QList< Command > transition(
191 const QwtEventPattern&, const QEvent* ) QWT_OVERRIDE;
192};
193
206{
207 public:
209
210 virtual QList< Command > transition(
211 const QwtEventPattern&, const QEvent* ) QWT_OVERRIDE;
212};
213
214#endif
A collection of event patterns.
A state machine for point selections.
A state machine for rectangle selections.
A state machine for line selections.
A state machine for point selections.
A state machine for rectangle selections.
A state machine for QwtPicker selections.
@ RectSelection
The state machine is for selecting a rectangle (2 points).
@ PointSelection
The state machine is for selecting a single point.
Command
Commands - the output of a state machine.
virtual QList< Command > transition(const QwtEventPattern &, const QEvent *)=0
Transition.
A state machine for polygon selections.
A state machine for indicating mouse movements.