aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/src2/usermanagement.h
diff options
context:
space:
mode:
authorPhilippe Lelong <lelong.ph@meltemus.com>2016-12-14 11:58:20 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2016-12-20 13:28:35 +0100
commit15e7b5003a6590f780cb115fb2bdb526ce68defc (patch)
tree8b3708d6e2b464df55b0e8f6f199010ad7905907 /HomeScreen/src2/usermanagement.h
parentc4242e92275d4309d3947ff28a7cd3b9f008d8c6 (diff)
Home screen translation changes
Signed-off-by: Philippe Lelong <lelong.ph@meltemus.com>
Diffstat (limited to 'HomeScreen/src2/usermanagement.h')
-rw-r--r--HomeScreen/src2/usermanagement.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/HomeScreen/src2/usermanagement.h b/HomeScreen/src2/usermanagement.h
new file mode 100644
index 0000000..804df22
--- /dev/null
+++ b/HomeScreen/src2/usermanagement.h
@@ -0,0 +1,26 @@
+#ifndef USERMANAGEMENT_H
+#define USERMANAGEMENT_H
+
+#include <QObject>
+#include "applicationmodel.h"
+#include <QTimer>
+class UserManagement : public QObject
+{
+ Q_OBJECT
+public:
+ explicit UserManagement(QObject *home, QObject *shortcutArea, QObject *statusArea);
+
+signals:
+
+public slots:
+ void slot_timerTest();
+private:
+ QObject *home;
+ QObject *shortcutArea;
+ QObject *statusArea;
+ ApplicationModel *appModel;
+ QTimer timerTest;
+ QString currentLanguage;
+};
+
+#endif // USERMANAGEMENT_H