-
Notifications
You must be signed in to change notification settings - Fork 5
/
x11integration.cpp
162 lines (145 loc) · 5.9 KB
/
x11integration.cpp
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* This file is part of the KDE libraries
* Copyright 2015 Martin Gräßlin <[email protected]>
* Copyright 2016 Marco Martin <[email protected]>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2 of the License or ( at
* your option ) version 3 or, at the discretion of KDE e.V. ( which shall
* act as a proxy as in section 14 of the GPLv3 ), any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "x11integration.h"
#include <QCoreApplication>
#include <QX11Info>
#include <QPlatformSurfaceEvent>
#include <QGuiApplication>
#include <QWindow>
#include <QWidget>
#include <QVariant>
#include <QRegion>
#include <QDebug>
#include <NETWM>
#include <KWindowEffects>
#include <xcb/xcb.h>
static const char s_schemePropertyName[] = "KDE_COLOR_SCHEME_PATH";
static const QByteArray s_blurBehindPropertyName = QByteArrayLiteral("ENABLE_BLUR_BEHIND_HINT");
static const QByteArray s_blurRegionPropertyName = QByteArrayLiteral("BLUR_REGION");
X11Integration::X11Integration()
: QObject()
{
}
X11Integration::~X11Integration() = default;
void X11Integration::init()
{
QCoreApplication::instance()->installEventFilter(this);
}
bool X11Integration::eventFilter(QObject *watched, QEvent *event)
{
//the drag and drop window should NOT be a tooltip
//https://bugreports.qt.io/browse/QTBUG-52560
if (event->type() == QEvent::Show && watched->inherits("QShapedPixmapWindow")) {
//static cast should be safe there
QWindow *w = static_cast<QWindow *>(watched);
NETWinInfo info(QX11Info::connection(), w->winId(), QX11Info::appRootWindow(), NET::WMWindowType, NET::Properties2());
info.setWindowType(NET::DNDIcon);
// TODO: does this flash the xcb connection?
}
// if (event->type() == QEvent::PlatformSurface) {
// if (QWindow *w = qobject_cast<QWindow*>(watched)) {
// QPlatformSurfaceEvent *pe = static_cast<QPlatformSurfaceEvent*>(event);
// if (!w->flags().testFlag(Qt::ForeignWindow)) {
// if (pe->surfaceEventType() == QPlatformSurfaceEvent::SurfaceCreated) {
// const auto blurBehindProperty = w->property(s_blurBehindPropertyName.constData());
// if (blurBehindProperty.isValid()) {
// KWindowEffects::enableBlurBehind(w->winId(), blurBehindProperty.toBool());
// }
// installDesktopFileName(w);
// }
// }
// }
// }
// if (event->type() == QEvent::ApplicationPaletteChange) {
// const auto topLevelWindows = QGuiApplication::topLevelWindows();
// for (QWindow *w : topLevelWindows) {
// installColorScheme(w);
// }
// }
return false;
}
void X11Integration::installColorScheme(QWindow *w)
{
if (!w->isTopLevel()) {
return;
}
static xcb_atom_t atom = XCB_ATOM_NONE;
xcb_connection_t *c = QX11Info::connection();
if (atom == XCB_ATOM_NONE) {
const QByteArray name = QByteArrayLiteral("_KDE_NET_WM_COLOR_SCHEME");
const xcb_intern_atom_cookie_t cookie = xcb_intern_atom(c, false, name.length(), name.constData());
QScopedPointer<xcb_intern_atom_reply_t, QScopedPointerPodDeleter> reply(xcb_intern_atom_reply(c, cookie, nullptr));
if (!reply.isNull()) {
atom = reply->atom;
} else {
// no point in continuing, we don't have the atom
return;
}
}
const QString path = qApp->property(s_schemePropertyName).toString();
if (path.isEmpty()) {
xcb_delete_property(c, w->winId(), atom);
} else {
xcb_change_property(c, XCB_PROP_MODE_REPLACE, w->winId(), atom, XCB_ATOM_STRING,
8, path.size(), qPrintable(path));
}
}
void X11Integration::installDesktopFileName(QWindow *w)
{
if (!w->isTopLevel()) {
return;
}
QString desktopFileName = QGuiApplication::desktopFileName();
if (desktopFileName.isEmpty()) {
return;
}
// handle apps which set the desktopFileName property with filename suffix,
// due to unclear API dox (https://bugreports.qt.io/browse/QTBUG-75521)
if (desktopFileName.endsWith(QLatin1String(".desktop"))) {
desktopFileName.chop(8);
}
NETWinInfo info(QX11Info::connection(), w->winId(), QX11Info::appRootWindow(), NET::Properties(), NET::Properties2());
info.setDesktopFileName(desktopFileName.toUtf8().constData());
}
void X11Integration::setWindowProperty(QWindow *window, const QByteArray &name, const QByteArray &value)
{
auto *c = QX11Info::connection();
xcb_atom_t atom;
auto it = m_atoms.find(name);
if (it == m_atoms.end()) {
const xcb_intern_atom_cookie_t cookie = xcb_intern_atom(c, false, name.length(), name.constData());
QScopedPointer<xcb_intern_atom_reply_t, QScopedPointerPodDeleter> reply(xcb_intern_atom_reply(c, cookie, nullptr));
if (!reply.isNull()) {
atom = reply->atom;
m_atoms[name] = atom;
} else {
return;
}
} else {
atom = *it;
}
if (value.isEmpty()) {
xcb_delete_property(c, window->winId(), atom);
} else {
xcb_change_property(c, XCB_PROP_MODE_REPLACE, window->winId(), atom, XCB_ATOM_STRING,
8, value.length(), value.constData());
}
}