306983c3a00d8a758b5762f253adeb576550de55
[src/libqthomescreen.git] / src / qlibhomescreen.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 QLIBHOMESCREEN_H
18 #define QLIBHOMESCREEN_H
19
20 #include <QObject>
21 #include <QQuickWindow>
22 #include <libhomescreen.hpp>
23 #include <functional>
24 #include <QVariant>
25
26 class QLibHomeScreen : public QObject
27 {
28     Q_OBJECT
29 public:
30     explicit QLibHomeScreen(QObject *parent = 0);
31     ~QLibHomeScreen();
32
33     QLibHomeScreen(const QLibHomeScreen &) = delete;
34     QLibHomeScreen &operator=(const QLibHomeScreen &) = delete;
35
36     enum QEventType {
37        Event_TapShortcut = LibHomeScreen::Event_TapShortcut,
38        Event_ShowWindow = LibHomeScreen::Event_ShowWindow,
39        Event_OnScreenMessage = LibHomeScreen::Event_OnScreenMessage,
40        Event_OnScreenReply = LibHomeScreen::Event_OnScreenReply,
41        Event_HideWindow = LibHomeScreen::Event_HideWindow,
42        Event_ReplyShowWindow = LibHomeScreen::Event_ReplyShowWindow,
43        Event_ShowNotification = LibHomeScreen::Event_ShowNotification,
44        Event_ShowInformation = LibHomeScreen::Event_ShowInformation,
45        Event_AppListChanged = LibHomeScreen::Event_AppListChanged
46     };
47     using handler_fun = std::function<void(json_object *object)>;
48
49     void init(int port, const QString &token);
50     void set_event_handler(enum QEventType et, handler_fun f);
51     void showWindow(QString application_id, json_object* area);
52     void replyShowWindow(QString application_id, json_object* reply);
53     Q_INVOKABLE void showInformation(QString info);
54     Q_INVOKABLE void showNotification(QString icon, QString text);
55
56     Q_INVOKABLE int onScreenMessage(const QString &message);
57     Q_INVOKABLE int subscribe(const QString &eventName);
58     Q_INVOKABLE int unsubscribe(const QString &eventName);
59     Q_INVOKABLE void tapShortcut(QString application_id);
60     Q_INVOKABLE void showWindow(QString application_id, QString area);
61     Q_INVOKABLE void hideWindow(QString application_id);
62     Q_INVOKABLE void replyShowWindow(QString application_id, QString reply);
63     Q_INVOKABLE void getRunnables(void);
64     void registerCallback(
65         void (*event_cb)(const std::string& event, struct json_object* event_contents),
66         void (*reply_cb)(struct json_object* reply_contents),
67         void (*hangup_cb)(void) = nullptr);
68     void setQuickWindow(QQuickWindow *qw);
69
70 signals:
71
72 public slots:
73     void slotPublishSubscription(void);
74
75 private:
76     LibHomeScreen *mp_hs;
77     QQuickWindow *mp_window;
78     QMetaObject::Connection m_loading;
79 };
80
81 #endif // QLIBHOMESCREEN_H