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