aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/src/toucharea.h
diff options
context:
space:
mode:
authortiansen <tian_sen@dl.cn.nexty-ele.com>2018-11-02 20:40:38 +0800
committertiansen <tian_sen@dl.cn.nexty-ele.com>2018-11-02 20:40:38 +0800
commit26e3a508eb0bec7a59dbcef0251233df42781963 (patch)
tree2649f1ec185c5173cbbb5e07275649d1dbbe0100 /homescreen/src/toucharea.h
parent33d31b5bac3c8c9105d43d6566174f39ef7a4ea4 (diff)
Diffstat (limited to 'homescreen/src/toucharea.h')
-rw-r--r--homescreen/src/toucharea.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/homescreen/src/toucharea.h b/homescreen/src/toucharea.h
new file mode 100644
index 0000000..69c6872
--- /dev/null
+++ b/homescreen/src/toucharea.h
@@ -0,0 +1,30 @@
+#ifndef TOUCHAREA_H
+#define TOUCHAREA_H
+
+#include <QBitmap>
+#include <QQuickWindow>
+
+enum {
+ NORMAL=0,
+ FULLSCREEN
+};
+
+class TouchArea : public QObject
+{
+ Q_OBJECT
+public:
+ explicit TouchArea();
+ ~TouchArea();
+
+ Q_INVOKABLE void switchArea(int areaType);
+ void setWindow(QQuickWindow* window);
+
+public slots:
+ void init();
+
+private:
+ QBitmap bitmapNormal, bitmapFullscreen;
+ QQuickWindow* myWindow;
+};
+
+#endif // TOUCHAREA_H