Add pws to be able to start apps
[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 #ifndef DEFAULT_AFM_UNIX_SOCK
33 #define DEFAULT_AFM_UNIX_SOCK "unix:/run/platform/apis/ws/afm-main"
34 #endif
35
36 #include "launcher.h"
37 #include "hmi-debug.h"
38
39 #define ROLE_NAME "onstestapp"
40 #define APP_ID "onstestapp"
41
42 using namespace std;
43
44 class QQuickWindow;
45 class QQmlApplicationEngine;
46
47 class EventHandler : public QObject
48 {
49     Q_OBJECT
50 public:
51     explicit EventHandler(QObject *parent = 0);
52     ~EventHandler();
53
54     void init(int port, const char* token);
55     void setQuickWindow(QQuickWindow *qw);
56     static void* myThis;
57
58     Q_INVOKABLE void showWindow(QString id, QString json);
59     Q_INVOKABLE void hideWindow(QString id);
60     Q_INVOKABLE int start(const QString &app_id);
61     Q_INVOKABLE bool is_running(const QString &app_id);
62
63 signals:
64     void signalOnReplyShowWindow(QVariant val);
65
66 private:
67 #if 0
68     QLibHomeScreen *mp_hs;
69     QLibWindowmanager* mp_wm;
70 #endif
71         struct agl_shell_desktop *shell_desktop = nullptr;
72         Launcher *m_launcher = nullptr;
73         QQuickWindow *mp_qw;
74 };
75
76 #endif // EVENTHANDLER_H