update
[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 <string>
22 #include <QVariant>
23 #include <QPair>
24 #include <QMap>
25
26 #include <libhomescreen.hpp>
27 #include <qlibwindowmanager.h>
28 #include "hmi-debug.h"
29
30 #define ROLE_NAME "on_screen.app"
31 #define APP_ID "onscreenapp"
32
33 class QQuickWindow;
34
35 class EventHandler : public QObject
36 {
37     Q_OBJECT
38 public:
39     explicit EventHandler(QObject *parent = 0);
40     ~EventHandler();
41
42     void init(int port, const char* token);
43     void setQuickWindow(QQuickWindow *qw);
44
45     void onRep(struct json_object* reply_contents);
46
47     static void* myThis;
48     static void onRep_static(struct json_object* reply_contents);
49
50     void activateWindow(QString &role);
51     Q_INVOKABLE void deactivateWindow(QString &role);
52     Q_INVOKABLE void onScreenReply(const QString &btn_name);
53
54 signals:
55     void signalLoader(QVariant url);
56     void signalOnScreenParameter(QVariant text);
57
58 private:
59
60     LibHomeScreen *mp_hs;
61     QLibWindowmanager* mp_wm;
62
63     QQuickWindow *mp_qw;
64
65     QMap<QString, QPair<QString, QString>> m_req;
66     QString m_dspreq;
67     QString my_id;
68     QString my_role;
69 };
70
71 #endif // HOMESCREENHANDLER_H