Add onscreenapp
[apps/onscreenapp.git] / app / eventhandler.h
1 /*
2  * Copyright (c) 2019 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 <libhomescreen.hpp>
25 #include <qlibwindowmanager.h>
26 #include "hmi-debug.h"
27
28 #define APP_ID "onscreenapp"
29
30 class QQmlApplicationEngine;
31
32 class EventHandler : public QObject
33 {
34     Q_OBJECT
35 public:
36     explicit EventHandler(QObject *parent = 0);
37     ~EventHandler();
38     EventHandler(const EventHandler&) = delete;
39     EventHandler& operator=(const EventHandler&) = delete;
40
41     void init(int port, const char* token);
42     void onRep(struct json_object* reply_contents);
43
44     static void* myThis;
45     static void onRep_static(struct json_object* reply_contents);
46
47     Q_INVOKABLE void deactivateWindow();
48     Q_INVOKABLE void onScreenReply(const QString &btn_name);
49
50 signals:
51     void updateModel(QVariant data);
52     void showOnScreen();
53     void hideOnScreen();
54
55 private:
56     enum {
57         HIDING = 0,
58         SHOWING,
59         SWAPPING
60     };
61
62     int getDisplayStatus() {return m_dsp_sts;}
63     void setDisplayStatus(int sts) {m_dsp_sts = sts;}
64     void activateWindow(const char *role, const char *area = "normal.full");
65
66     LibHomeScreen *mp_hs;
67     QLibWindowmanager* mp_wm;
68     QPair<QString, QString> m_req, m_dsp;
69     int m_dsp_sts = HIDING;
70 };
71 #endif // HOMESCREENHANDLER_H