add source for ces2019 horizontal
[apps/onscreenapp.git] / app / eventhandler.h
1 /*
2  * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef HOMESCREENHANDLER_H
18 #define HOMESCREENHANDLER_H
19
20 #include <QObject>
21 #include <libhomescreen.hpp>
22 #include <qlibwindowmanager.h>
23 #include <string>
24 #include <QVariant>
25 #include "hmi-debug.h"
26 #include <QVector>
27
28 #define USE_TEST_DISPLAY 0
29
30 using namespace std;
31
32 typedef struct _on_screen_message {
33     QString app;
34     QString message;
35     QString file;
36 } ON_SCREEN_MESSAGE;
37
38 class QQuickWindow;
39
40 class EventHandler : public QObject
41 {
42     Q_OBJECT
43 public:
44     explicit EventHandler(QObject *parent = 0);
45     ~EventHandler();
46
47     void init(int port, const char* token);
48     void setQuickWindow(QQuickWindow *qw);
49
50     void onRep(struct json_object* reply_contents);
51
52     static void* myThis;
53     static void onRep_static(struct json_object* reply_contents);
54
55     void activateSurface(QString app);
56     void deactivateSurface(QString app);
57
58     Q_INVOKABLE void onScreenReply(const QString &message);
59
60 signals:
61     void signalOnScreenMessage(QVariant display_message);
62     void signalLoader(QVariant url);
63     void signalSetClearBackgroud();
64     void signalSetDefaultBackgroud(QVariant message);
65
66 #if USE_TEST_DISPLAY
67 public slots:
68     void slotActivateSurface();
69 #endif
70
71 private:
72
73     bool m_isActive;
74
75     LibHomeScreen *mp_hs;
76     QLibWindowmanager* mp_wm;
77
78     QQuickWindow *mp_qw;
79
80     QVector<ON_SCREEN_MESSAGE> m_vecOSM;
81 };
82
83 #endif // HOMESCREENHANDLER_H