app: Add the app state events
[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 "hmi-debug.h"
25
26 #include <wayland-client.h>
27 #include "wayland-agl-shell-desktop-client-protocol.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
40     EventHandler(const EventHandler&) = delete;
41     EventHandler& operator=(const EventHandler&) = delete;
42
43     void init(int port, const char* token);
44
45     static void* myThis;
46
47     Q_INVOKABLE void deactivateWindow();
48     Q_INVOKABLE void onScreenReply(const QString &ons_title, 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     QPair<QString, QString> m_req, m_dsp;
67     struct agl_shell_desktop *shell_desktop = nullptr;
68     int m_dsp_sts = HIDING;
69 };
70 #endif // HOMESCREENHANDLER_H