blob: 3e956103209472db9563444fce64f4965c713bf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef TOUCHWIDGET_H
#define TOUCHWIDGET_H
#include <QWidget>
class TouchWidget : public QWidget
{
Q_OBJECT
public:
bool acceptTouchBegin, acceptTouchUpdate, acceptTouchEnd;
bool seenTouchBegin, seenTouchUpdate, seenTouchEnd;
bool closeWindowOnTouchEnd;
bool acceptMousePress, acceptMouseMove, acceptMouseRelease;
bool seenMousePress, seenMouseMove, seenMouseRelease;
bool closeWindowOnMouseRelease;
inline TouchWidget(QWidget *parent = 0)
: QWidget(parent)
{
reset();
}
void reset();
bool event(QEvent *event);
};
#endif // TOUCHWIDGET_H
|