blob: 2726deb218d891f5e48b76297f2242398628f16c (
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
31
|
#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;
int touchPointCount;
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
|