This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsystemtray.cpp
564 lines (477 loc) · 19.6 KB
/
systemtray.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
/***************************************************************************
* Copyright (C) 2015 Marco Martin <[email protected]> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
***************************************************************************/
#include "systemtray.h"
#include "debug.h"
#include <QDebug>
#include <QProcess>
#include <QDBusConnection>
#include <QDBusConnectionInterface>
#include <QDBusPendingCallWatcher>
#include <QMenu>
#include <QQuickItem>
#include <QQuickWindow>
#include <QRegExp>
#include <QScreen>
#include <QStandardItemModel>
#include <Plasma/PluginLoader>
#include <Plasma/ServiceJob>
#include <KAcceleratorManager>
#include <KActionCollection>
#include <KLocalizedString>
#include <plasma_version.h>
class PlasmoidModel: public QStandardItemModel
{
public:
PlasmoidModel(QObject *parent = 0)
: QStandardItemModel(parent)
{
}
QHash<int, QByteArray> roleNames() const override {
QHash<int, QByteArray> roles = QStandardItemModel::roleNames();
roles[Qt::UserRole+1] = "plugin";
return roles;
}
};
SystemTray::SystemTray(QObject *parent, const QVariantList &args)
: Plasma::Containment(parent, args),
m_availablePlasmoidsModel(nullptr)
{
setHasConfigurationInterface(true);
setContainmentType(Plasma::Types::CustomEmbeddedContainment);
}
SystemTray::~SystemTray()
{
}
void SystemTray::init()
{
Containment::init();
for (const auto &info: Plasma::PluginLoader::self()->listAppletMetaData(QString())) {
if (!info.isValid() || info.value(QStringLiteral("X-Plasma-NotificationArea")) != "true") {
continue;
}
m_systrayApplets[info.pluginId()] = KPluginInfo(info);
if (info.isEnabledByDefault()) {
m_defaultPlasmoids += info.pluginId();
}
const QString dbusactivation = info.value(QStringLiteral("X-Plasma-DBusActivationService"));
if (!dbusactivation.isEmpty()) {
qCDebug(SYSTEM_TRAY) << "ST Found DBus-able Applet: " << info.pluginId() << dbusactivation;
m_dbusActivatableTasks[info.pluginId()] = dbusactivation;
}
}
}
void SystemTray::newTask(const QString &task)
{
foreach (Plasma::Applet *applet, applets()) {
if (!applet->pluginMetaData().isValid()) {
continue;
}
//only allow one instance per applet
if (task == applet->pluginMetaData().pluginId()) {
//Applet::destroy doesn't delete the applet from Containment::applets in the same event
//potentially a dbus activated service being restarted can be added in this time.
if (!applet->destroyed()) {
return;
}
}
}
//known one, recycle the id to reuse old config
if (m_knownPlugins.contains(task)) {
Applet *applet = Plasma::PluginLoader::self()->loadApplet(task, m_knownPlugins.value(task), QVariantList());
//this should never happen unless explicitly wrong config is hand-written or
//(more likely) a previously added applet is uninstalled
if (!applet) {
qWarning() << "Unable to find applet" << task;
return;
}
applet->setProperty("org.kde.plasma:force-create", true);
addApplet(applet);
//create a new one automatic id, new config group
} else {
Applet * applet = createApplet(task, QVariantList() << "org.kde.plasma:force-create");
if (applet) {
m_knownPlugins[task] = applet->id();
}
}
}
void SystemTray::cleanupTask(const QString &task)
{
foreach (Plasma::Applet *applet, applets()) {
if (!applet->pluginMetaData().isValid() || task == applet->pluginMetaData().pluginId()) {
//we are *not* cleaning the config here, because since is one
//of those automatically loaded/unloaded by dbus, we want to recycle
//the config the next time it's loaded, in case the user configured something here
applet->deleteLater();
//HACK: we need to remove the applet from Containment::applets() as soon as possible
//otherwise we may have disappearing applets for restarting dbus services
//this may be removed when we depend from a frameworks version in which appletDeleted is emitted as soon as deleteLater() is called
emit appletDeleted(applet);
}
}
}
void SystemTray::showPlasmoidMenu(QQuickItem *appletInterface, int x, int y)
{
if (!appletInterface) {
return;
}
Plasma::Applet *applet = appletInterface->property("_plasma_applet").value<Plasma::Applet*>();
QPointF pos = appletInterface->mapToScene(QPointF(x, y));
if (appletInterface->window() && appletInterface->window()->screen()) {
pos = appletInterface->window()->mapToGlobal(pos.toPoint());
} else {
pos = QPoint();
}
QMenu *desktopMenu = new QMenu;
connect(this, &QObject::destroyed, desktopMenu, &QMenu::close);
desktopMenu->setAttribute(Qt::WA_DeleteOnClose);
if (appletInterface->window() && appletInterface->window()->mouseGrabberItem()) {
appletInterface->window()->mouseGrabberItem()->ungrabMouse();
}
emit applet->contextualActionsAboutToShow();
foreach (QAction *action, applet->contextualActions()) {
if (action) {
desktopMenu->addAction(action);
}
}
QAction *runAssociatedApplication = applet->actions()->action(QStringLiteral("run associated application"));
if (runAssociatedApplication && runAssociatedApplication->isEnabled()) {
desktopMenu->addAction(runAssociatedApplication);
}
if (applet->actions()->action(QStringLiteral("configure"))) {
desktopMenu->addAction(applet->actions()->action(QStringLiteral("configure")));
}
if (desktopMenu->isEmpty()) {
delete desktopMenu;
return;
}
desktopMenu->adjustSize();
if (QScreen *screen = appletInterface->window()->screen()) {
const QRect geo = screen->availableGeometry();
pos = QPoint(qBound(geo.left(), (int)pos.x(), geo.right() - desktopMenu->width()),
qBound(geo.top(), (int)pos.y(), geo.bottom() - desktopMenu->height()));
}
KAcceleratorManager::manage(desktopMenu);
desktopMenu->popup(pos.toPoint());
}
QString SystemTray::plasmoidCategory(QQuickItem *appletInterface) const
{
if (!appletInterface) {
return "UnknownCategory";
}
Plasma::Applet *applet = appletInterface->property("_plasma_applet").value<Plasma::Applet*>();
if (!applet || !applet->pluginMetaData().isValid()) {
return "UnknownCategory";
}
const QString cat = applet->pluginMetaData().value(QStringLiteral("X-Plasma-NotificationAreaCategory"));
if (cat.isEmpty()) {
return "UnknownCategory";
}
return cat;
}
void SystemTray::showStatusNotifierContextMenu(KJob *job, QQuickItem *statusNotifierIcon)
{
if (QCoreApplication::closingDown() || !statusNotifierIcon) {
// apparently an edge case can be triggered due to the async nature of all this
// see: https://bugs.kde.org/show_bug.cgi?id=251977
return;
}
Plasma::ServiceJob *sjob = qobject_cast<Plasma::ServiceJob *>(job);
if (!sjob) {
return;
}
QMenu *menu = qobject_cast<QMenu *>(sjob->result().value<QObject *>());
if (menu) {
menu->adjustSize();
const auto parameters = sjob->parameters();
int x = parameters[QStringLiteral("x")].toInt();
int y = parameters[QStringLiteral("y")].toInt();
//try tofind the icon screen coordinates, and adjust the position as a poor
//man's popupPosition
QRect screenItemRect(statusNotifierIcon->mapToScene(QPointF(0, 0)).toPoint(), QSize(statusNotifierIcon->width(), statusNotifierIcon->height()));
if (statusNotifierIcon->window()) {
screenItemRect.moveTopLeft(statusNotifierIcon->window()->mapToGlobal(screenItemRect.topLeft()));
}
switch (location()) {
case Plasma::Types::LeftEdge:
x = screenItemRect.right();
y = screenItemRect.top();
break;
case Plasma::Types::RightEdge:
x = screenItemRect.left() - menu->width();
y = screenItemRect.top();
break;
case Plasma::Types::TopEdge:
x = screenItemRect.left();
y = screenItemRect.bottom();
break;
case Plasma::Types::BottomEdge:
x = screenItemRect.left();
y = screenItemRect.top() - menu->height();
break;
default:
x = screenItemRect.left();
if (screenItemRect.top() - menu->height() >= statusNotifierIcon->window()->screen()->geometry().top()) {
y = screenItemRect.top() - menu->height();
} else {
y = screenItemRect.bottom();
}
}
KAcceleratorManager::manage(menu);
menu->popup(QPoint(x, y));
}
}
QPointF SystemTray::popupPosition(QQuickItem* visualParent, int x, int y)
{
if (!visualParent) {
return QPointF(0, 0);
}
QPointF pos = visualParent->mapToScene(QPointF(x, y));
if (visualParent->window() && visualParent->window()->screen()) {
pos = visualParent->window()->mapToGlobal(pos.toPoint());
} else {
return QPoint();
}
return pos;
}
void SystemTray::reorderItemBefore(QQuickItem* before, QQuickItem* after)
{
if (!before || !after) {
return;
}
before->setVisible(false);
before->setParentItem(after->parentItem());
before->stackBefore(after);
before->setVisible(true);
}
void SystemTray::reorderItemAfter(QQuickItem* after, QQuickItem* before)
{
if (!before || !after) {
return;
}
after->setVisible(false);
after->setParentItem(before->parentItem());
after->stackAfter(before);
after->setVisible(true);
}
bool SystemTray::isSystemTrayApplet(const QString &appletId)
{
return m_systrayApplets.contains(appletId);
}
void SystemTray::restoreContents(KConfigGroup &group)
{
Q_UNUSED(group);
//NOTE: RestoreContents shouldnn't do anything here because is too soon, so have an empty reimplementation
}
void SystemTray::restorePlasmoids()
{
if (!isContainment()) {
qCWarning(SYSTEM_TRAY) << "Loaded as an applet, this shouldn't have happened";
return;
}
//First: remove all that are not allowed anymore
foreach (Plasma::Applet *applet, applets()) {
//Here it should always be valid.
//for some reason it not always is.
if (!applet->pluginMetaData().isValid()) {
applet->config().parent().deleteGroup();
applet->deleteLater();
} else {
const QString task = applet->pluginMetaData().pluginId();
if (!m_allowedPlasmoids.contains(task)) {
//in those cases we do delete the applet config completely
//as they were explicitly disabled by the user
applet->config().parent().deleteGroup();
applet->deleteLater();
}
}
}
KConfigGroup cg = config();
cg = KConfigGroup(&cg, "Applets");
foreach (const QString &group, cg.groupList()) {
KConfigGroup appletConfig(&cg, group);
QString plugin = appletConfig.readEntry("plugin");
if (!plugin.isEmpty()) {
m_knownPlugins[plugin] = group.toInt();
}
}
QStringList ownApplets;
QMap<QString, KPluginInfo> sortedApplets;
for (auto it = m_systrayApplets.constBegin(); it != m_systrayApplets.constEnd(); ++it) {
const KPluginInfo &info = it.value();
if (m_allowedPlasmoids.contains(info.pluginName()) && !
m_dbusActivatableTasks.contains(info.pluginName())) {
//FIXME
// if we already have a plugin with this exact name in it, then check if it is the
// same plugin and skip it if it is indeed already listed
if (sortedApplets.contains(info.name())) {
bool dupe = false;
// it is possible (though poor form) to have multiple applets
// with the same visible name but different plugins, so we hve to check all values
foreach (const KPluginInfo &existingInfo, sortedApplets.values(info.name())) {
if (existingInfo.pluginName() == info.pluginName()) {
dupe = true;
break;
}
}
if (dupe) {
continue;
}
}
// insertMulti becase it is possible (though poor form) to have multiple applets
// with the same visible name but different plugins
sortedApplets.insertMulti(info.name(), info);
}
}
foreach (const KPluginInfo &info, sortedApplets) {
qCDebug(SYSTEM_TRAY) << " Adding applet: " << info.name();
if (m_allowedPlasmoids.contains(info.pluginName())) {
newTask(info.pluginName());
}
}
initDBusActivatables();
}
QStringList SystemTray::defaultPlasmoids() const
{
return m_defaultPlasmoids;
}
QAbstractItemModel* SystemTray::availablePlasmoids()
{
if (!m_availablePlasmoidsModel) {
m_availablePlasmoidsModel = new PlasmoidModel(this);
foreach (const KPluginInfo &info, m_systrayApplets) {
QString name = info.name();
const QString dbusactivation = info.property(QStringLiteral("X-Plasma-DBusActivationService")).toString();
if (!dbusactivation.isEmpty()) {
name += i18n(" (Automatic load)");
}
QStandardItem *item = new QStandardItem(QIcon::fromTheme(info.icon()), name);
item->setData(info.pluginName());
m_availablePlasmoidsModel->appendRow(item);
}
}
return m_availablePlasmoidsModel;
}
QStringList SystemTray::allowedPlasmoids() const
{
return m_allowedPlasmoids;
}
void SystemTray::setAllowedPlasmoids(const QStringList &allowed)
{
if (allowed == m_allowedPlasmoids) {
return;
}
m_allowedPlasmoids = allowed;
restorePlasmoids();
emit allowedPlasmoidsChanged();
}
void SystemTray::initDBusActivatables()
{
/* Loading and unloading Plasmoids when dbus services come and go
*
* This works as follows:
* - we collect a list of plugins and related services in m_dbusActivatableTasks
* - we query DBus for the list of services, async (initDBusActivatables())
* - we go over that list, adding tasks when a service and plugin match (serviceNameFetchFinished())
* - we start watching for new services, and do the same (serviceNameFetchFinished())
* - whenever a service is gone, we check whether to unload a Plasmoid (serviceUnregistered())
*/
QDBusPendingCall async = QDBusConnection::sessionBus().interface()->asyncCall(QStringLiteral("ListNames"));
QDBusPendingCallWatcher *callWatcher = new QDBusPendingCallWatcher(async, this);
connect(callWatcher, &QDBusPendingCallWatcher::finished,
[=](QDBusPendingCallWatcher *callWatcher){
SystemTray::serviceNameFetchFinished(callWatcher, QDBusConnection::sessionBus());
});
QDBusPendingCall systemAsync = QDBusConnection::systemBus().interface()->asyncCall(QStringLiteral("ListNames"));
QDBusPendingCallWatcher *systemCallWatcher = new QDBusPendingCallWatcher(systemAsync, this);
connect(systemCallWatcher, &QDBusPendingCallWatcher::finished,
[=](QDBusPendingCallWatcher *callWatcher){
SystemTray::serviceNameFetchFinished(callWatcher, QDBusConnection::systemBus());
});
}
void SystemTray::serviceNameFetchFinished(QDBusPendingCallWatcher* watcher, const QDBusConnection &connection)
{
QDBusPendingReply<QStringList> propsReply = *watcher;
watcher->deleteLater();
if (propsReply.isError()) {
qCWarning(SYSTEM_TRAY) << "Could not get list of available D-Bus services";
} else {
foreach (const QString& serviceName, propsReply.value()) {
serviceRegistered(serviceName);
}
}
// Watch for new services
// We need to watch for all of new services here, since we want to "match" the names,
// not just compare them
// This makes mpris work, since it wants to match org.mpris.MediaPlayer2.dragonplayer
// against org.mpris.MediaPlayer2
// QDBusServiceWatcher is not capable for watching wildcard service right now
// See:
// https://bugreports.qt.io/browse/QTBUG-51683
// https://bugreports.qt.io/browse/QTBUG-33829
connect(connection.interface(), &QDBusConnectionInterface::serviceOwnerChanged, this, &SystemTray::serviceOwnerChanged);
}
void SystemTray::serviceOwnerChanged(const QString &serviceName, const QString &oldOwner, const QString &newOwner)
{
if (oldOwner.isEmpty()) {
serviceRegistered(serviceName);
} else if (newOwner.isEmpty()) {
serviceUnregistered(serviceName);
}
}
void SystemTray::serviceRegistered(const QString &service)
{
//qCDebug(SYSTEM_TRAY) << "DBus service appeared:" << service;
for (auto it = m_dbusActivatableTasks.constBegin(), end = m_dbusActivatableTasks.constEnd(); it != end; ++it) {
const QString &plugin = it.key();
if (!m_allowedPlasmoids.contains(plugin)) {
continue;
}
const QString &pattern = it.value();
QRegExp rx(pattern);
rx.setPatternSyntax(QRegExp::Wildcard);
if (rx.exactMatch(service)) {
//qCDebug(SYSTEM_TRAY) << "ST : DBus service " << m_dbusActivatableTasks[plugin] << "appeared. Loading " << plugin;
newTask(plugin);
m_dbusServiceCounts[plugin]++;
}
}
}
void SystemTray::serviceUnregistered(const QString &service)
{
//qCDebug(SYSTEM_TRAY) << "DBus service disappeared:" << service;
for (auto it = m_dbusActivatableTasks.constBegin(), end = m_dbusActivatableTasks.constEnd(); it != end; ++it) {
const QString &plugin = it.key();
if (!m_allowedPlasmoids.contains(plugin)) {
continue;
}
const QString &pattern = it.value();
QRegExp rx(pattern);
rx.setPatternSyntax(QRegExp::Wildcard);
if (rx.exactMatch(service)) {
m_dbusServiceCounts[plugin]--;
Q_ASSERT(m_dbusServiceCounts[plugin] >= 0);
if (m_dbusServiceCounts[plugin] == 0) {
//qCDebug(SYSTEM_TRAY) << "ST : DBus service " << m_dbusActivatableTasks[plugin] << " disappeared. Unloading " << plugin;
cleanupTask(plugin);
}
}
}
}
K_EXPORT_PLASMA_APPLET_WITH_JSON(systemtray, SystemTray, "metadata.json")
#include "systemtray.moc"