c57c806b100a51da453722dce1390896cfebaba7
[apps/onscreenapp.git] / sample / 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 EVENTHANDLER_H
18 #define EVENTHANDLER_H
19
20 #include <QObject>
21 #include <string>
22 #include <QVariant>
23
24 #if 0
25 #include <qlibhomescreen.h>
26 #include <qlibwindowmanager.h>
27 #endif
28
29 #include <wayland-client.h>
30 #include "wayland-agl-shell-desktop-client-protocol.h"
31
32 #include "hmi-debug.h"
33
34 #define ROLE_NAME "onstestapp"
35 #define APP_ID "onstestapp"
36
37 using namespace std;
38
39 class QQuickWindow;
40 class QQmlApplicationEngine;
41
42 class EventHandler : public QObject
43 {
44     Q_OBJECT
45 public:
46     explicit EventHandler(QObject *parent = 0);
47     ~EventHandler();
48
49     void init(int port, const char* token);
50     void setQuickWindow(QQuickWindow *qw);
51     static void* myThis;
52
53     Q_INVOKABLE void showWindow(QString id, QString json);
54     Q_INVOKABLE void hideWindow(QString id);
55
56 signals:
57     void signalOnReplyShowWindow(QVariant val);
58
59 private:
60 #if 0
61     QLibHomeScreen *mp_hs;
62     QLibWindowmanager* mp_wm;
63 #endif
64         struct agl_shell_desktop *shell_desktop = nullptr;
65     QQuickWindow *mp_qw;
66 };
67
68 #endif // EVENTHANDLER_H