blob: b0efef218dfd61332aa19ada347c8b9e06764e97 (
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
32
|
#ifndef TABLETWIDGET_H
#define TABLETWIDGET_H
#include <QWidget>
#include <QTabletEvent>
// a widget showing the information of the last tablet event
class TabletWidget : public QWidget
{
public:
TabletWidget();
protected:
bool eventFilter(QObject *obj, QEvent *ev);
void tabletEvent(QTabletEvent *event);
void paintEvent(QPaintEvent *event);
private:
void resetAttributes() {
mType = mDev = mPointerType = mXT = mYT = mZ = 0;
mPress = mTangential = mRot = 0.0;
mPos = mGPos = QPoint();
mHiResGlobalPos = QPointF();
mUnique = 0;
}
int mType;
QPoint mPos, mGPos;
QPointF mHiResGlobalPos;
int mDev, mPointerType, mXT, mYT, mZ;
qreal mPress, mTangential, mRot;
qint64 mUnique;
};
#endif // TABLETWIDGET_H
|