1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Copyright (C) 2013 Canonical, Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Pete Woods <pete.woods@canonical.com>
*/
#include <window-stack-bridge/PlatformApiWindowStack.h>
#include <common/Localisation.h>
#include <QDebug>
#include <stdexcept>
#include <ubuntu/application/ui/stage.h>
using namespace hud::common;
PlatformApiWindowStack::PlatformApiWindowStack(
const QDBusConnection &connection, QObject *parent) :
AbstractWindowStack(connection, parent) {
if (qgetenv("QT_QPA_PLATFORM") != "ubuntu") {
throw std::logic_error(
_("Incorrect QPA environment for Ubuntu platform API"));
}
registerOnBus();
m_observer_definition.on_session_requested = on_session_requested_cb;
m_observer_definition.on_session_born = on_session_born_cb;
m_observer_definition.on_session_unfocused = on_session_unfocused_cb;
m_observer_definition.on_session_focused = on_session_focused_cb;
m_observer_definition.on_session_died = on_session_died_cb;
m_observer_definition.on_keyboard_geometry_changed = 0;
m_observer_definition.on_session_requested_fullscreen = 0;
m_observer_definition.context = reinterpret_cast<void *>(this);
ubuntu_ui_session_install_session_lifecycle_observer(
&m_observer_definition);
}
PlatformApiWindowStack::~PlatformApiWindowStack() {
}
QString PlatformApiWindowStack::GetAppIdFromPid(uint pid) {
// FIXME Not implemented
qDebug() << "GetAppIdFromPid";
return QString();
}
QList<WindowInfo> PlatformApiWindowStack::GetWindowStack() {
// FIXME Not implemented
qDebug() << "GetWindowStack";
return QList<WindowInfo>();
}
QStringList PlatformApiWindowStack::GetWindowProperties(uint windowId,
const QString &appId, const QStringList &names) {
// FIXME Not implemented
qDebug() << "GetWindowProperties:" << windowId << appId << names;
return QStringList();
}
void PlatformApiWindowStack::onSessionRequested(
ubuntu_ui_well_known_application app) {
// FIXME Not implemented
qDebug() << "onSessionRequested";
}
void PlatformApiWindowStack::onSessionBorn(ubuntu_ui_session_properties props) {
// FIXME Not implemented
qDebug() << "onSessionBorn";
//session_properties_get_window_id
}
void PlatformApiWindowStack::onSessionUnfocused(
ubuntu_ui_session_properties props) {
// FIXME Not implemented
qDebug() << "onSessionUnfocused";
}
void PlatformApiWindowStack::onSessionFocused(
ubuntu_ui_session_properties props) {
// FIXME Not implemented
qDebug() << "onSessionFocused";
}
void PlatformApiWindowStack::onSessionDied(ubuntu_ui_session_properties props) {
// FIXME Not implemented
qDebug() << "onSessionDied";
}
void PlatformApiWindowStack::on_session_requested_cb(
ubuntu_ui_well_known_application app, void* context) {
reinterpret_cast<PlatformApiWindowStack *>(context)->onSessionRequested(
app);
}
void PlatformApiWindowStack::on_session_born_cb(
ubuntu_ui_session_properties props, void* context) {
reinterpret_cast<PlatformApiWindowStack *>(context)->onSessionBorn(props);
}
void PlatformApiWindowStack::on_session_unfocused_cb(
ubuntu_ui_session_properties props, void* context) {
reinterpret_cast<PlatformApiWindowStack *>(context)->onSessionUnfocused(
props);
}
void PlatformApiWindowStack::on_session_focused_cb(
ubuntu_ui_session_properties props, void* context) {
reinterpret_cast<PlatformApiWindowStack *>(context)->onSessionFocused(
props);
}
void PlatformApiWindowStack::on_session_died_cb(
ubuntu_ui_session_properties props, void* context) {
reinterpret_cast<PlatformApiWindowStack *>(context)->onSessionDied(props);
}
|