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