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
|
/********************************************************************
Copyright 2016 Eike Hein <hein@kde.org>
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.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************/
#include "waylandtasksmodel.h"
#include "tasktools.h"
#include <KActivities/ResourceInstance>
#include <KRun>
#include <KService>
#include <KWayland/Client/connection_thread.h>
#include <KWayland/Client/plasmawindowmanagement.h>
#include <KWayland/Client/registry.h>
#include <KWayland/Client/surface.h>
#include <KWindowSystem>
#include <QGuiApplication>
#include <QQuickItem>
#include <QQuickWindow>
#include <QSet>
#include <QUrl>
#include <QWindow>
namespace TaskManager
{
class WaylandTasksModel::Private
{
public:
Private(WaylandTasksModel *q);
QList<KWayland::Client::PlasmaWindow*> windows;
QHash<KWayland::Client::PlasmaWindow*, KService::Ptr> serviceCache;
KWayland::Client::PlasmaWindowManagement *windowManagement = nullptr;
void initWayland();
void addWindow(KWayland::Client::PlasmaWindow *window);
void dataChanged(KWayland::Client::PlasmaWindow *window, int role);
void dataChanged(KWayland::Client::PlasmaWindow *window, const QVector<int> &roles);
private:
WaylandTasksModel *q;
};
WaylandTasksModel::Private::Private(WaylandTasksModel *q)
: q(q)
{
}
void WaylandTasksModel::Private::initWayland()
{
if (!KWindowSystem::isPlatformWayland()) {
return;
}
KWayland::Client::ConnectionThread *connection = KWayland::Client::ConnectionThread::fromApplication(q);
if (!connection) {
return;
}
KWayland::Client::Registry *registry = new KWayland::Client::Registry(q);
registry->create(connection);
QObject::connect(registry, &KWayland::Client::Registry::plasmaWindowManagementAnnounced, [this, registry] (quint32 name, quint32 version) {
windowManagement = registry->createPlasmaWindowManagement(name, version, q);
QObject::connect(windowManagement, &KWayland::Client::PlasmaWindowManagement::interfaceAboutToBeReleased, q,
[this] {
q->beginResetModel();
windows.clear();
q->endResetModel();
}
);
QObject::connect(windowManagement, &KWayland::Client::PlasmaWindowManagement::windowCreated, q,
[this](KWayland::Client::PlasmaWindow *window) {
addWindow(window);
}
);
const auto windows = windowManagement->windows();
for (auto it = windows.constBegin(); it != windows.constEnd(); ++it) {
addWindow(*it);
}
}
);
registry->setup();
}
void WaylandTasksModel::Private::addWindow(KWayland::Client::PlasmaWindow *window)
{
if (windows.indexOf(window) != -1) {
return;
}
const int count = windows.count();
q->beginInsertRows(QModelIndex(), count, count);
windows.append(window);
KService::Ptr service = KService::serviceByStorageId(window->appId());
if (service) {
serviceCache.insert(window, service);
}
q->endInsertRows();
auto removeWindow = [window, this] {
const int row = windows.indexOf(window);
if (row != -1) {
q->beginRemoveRows(QModelIndex(), row, row);
windows.removeAt(row);
serviceCache.remove(window);
q->endRemoveRows();
}
};
QObject::connect(window, &KWayland::Client::PlasmaWindow::unmapped, q, removeWindow);
QObject::connect(window, &QObject::destroyed, q, removeWindow);
QObject::connect(window, &KWayland::Client::PlasmaWindow::titleChanged, q,
[window, this] { dataChanged(window, Qt::DisplayRole); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::iconChanged, q,
[window, this] { dataChanged(window, Qt::DecorationRole); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::appIdChanged, q,
[window, this] {
KService::Ptr service = KService::serviceByStorageId(window->appId());
if (service) {
serviceCache.insert(window, service);
} else {
serviceCache.remove(window);
}
dataChanged(window, QVector<int>{AppId, AppName, GenericName,
LauncherUrl, LauncherUrlWithoutIcon});
}
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::activeChanged, q,
[window, this] { this->dataChanged(window, IsActive); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::closeableChanged, q,
[window, this] { this->dataChanged(window, IsClosable); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::movableChanged, q,
[window, this] { this->dataChanged(window, IsMovable); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::resizableChanged, q,
[window, this] { this->dataChanged(window, IsResizable); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::fullscreenableChanged, q,
[window, this] { this->dataChanged(window, IsFullScreenable); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::fullscreenChanged, q,
[window, this] { this->dataChanged(window, IsFullScreen); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::maximizeableChanged, q,
[window, this] { this->dataChanged(window, IsMaximizable); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::maximizedChanged, q,
[window, this] { this->dataChanged(window, IsMaximized); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::minimizeableChanged, q,
[window, this] { this->dataChanged(window, IsMinimizable); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::minimizedChanged, q,
[window, this] { this->dataChanged(window, IsMinimized); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::keepAboveChanged, q,
[window, this] { this->dataChanged(window, IsKeepAbove); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::keepBelowChanged, q,
[window, this] { this->dataChanged(window, IsKeepBelow); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::shadeableChanged, q,
[window, this] { this->dataChanged(window, IsShadeable); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::virtualDesktopChangeableChanged, q,
[window, this] { this->dataChanged(window, IsVirtualDesktopChangeable); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::virtualDesktopChanged, q,
[window, this] { this->dataChanged(window, VirtualDesktop); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::onAllDesktopsChanged, q,
[window, this] { this->dataChanged(window, IsOnAllVirtualDesktops); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::geometryChanged, q,
[window, this] { this->dataChanged(window, QVector<int>{Geometry, ScreenGeometry}); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::demandsAttentionChanged, q,
[window, this] { this->dataChanged(window, IsDemandingAttention); }
);
QObject::connect(window, &KWayland::Client::PlasmaWindow::skipTaskbarChanged, q,
[window, this] { this->dataChanged(window, SkipTaskbar); }
);
}
void WaylandTasksModel::Private::dataChanged(KWayland::Client::PlasmaWindow *window, int role)
{
QModelIndex idx = q->index(windows.indexOf(window));
emit q->dataChanged(idx, idx, QVector<int>{role});
}
void WaylandTasksModel::Private::dataChanged(KWayland::Client::PlasmaWindow *window, const QVector<int> &roles)
{
QModelIndex idx = q->index(windows.indexOf(window));
emit q->dataChanged(idx, idx, roles);
}
WaylandTasksModel::WaylandTasksModel(QObject *parent)
: AbstractWindowTasksModel(parent)
, d(new Private(this))
{
d->initWayland();
}
WaylandTasksModel::~WaylandTasksModel() = default;
QVariant WaylandTasksModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid() || index.row() >= d->windows.count()) {
return QVariant();
}
KWayland::Client::PlasmaWindow *window = d->windows.at(index.row());
if (role == Qt::DisplayRole) {
return window->title();
} else if (role == Qt::DecorationRole) {
return window->icon();
} else if (role == AppId) {
return window->appId();
} else if (role == AppName) {
if (d->serviceCache.contains(window)) {
return d->serviceCache.value(window)->name();
} else {
return window->title();
}
} else if (role == GenericName) {
if (d->serviceCache.contains(window)) {
return d->serviceCache.value(window)->genericName();
}
} else if (role == LauncherUrl || role == LauncherUrlWithoutIcon) {
if (d->serviceCache.contains(window)) {
return QUrl::fromLocalFile(d->serviceCache.value(window)->entryPath());
}
} else if (role == IsWindow) {
return true;
} else if (role == IsActive) {
return window->isActive();
} else if (role == IsClosable) {
return window->isCloseable();
} else if (role == IsMovable) {
return window->isMovable();
} else if (role == IsResizable) {
return window->isResizable();
} else if (role == IsMaximizable) {
return window->isMaximizeable();
} else if (role == IsMaximized) {
return window->isMaximized();
} else if (role == IsMinimizable) {
return window->isMinimizeable();
} else if (role == IsMinimized) {
return window->isMinimized();
} else if (role == IsKeepAbove) {
return window->isKeepAbove();
} else if (role == IsKeepBelow) {
return window->isKeepBelow();
} else if (role == IsFullScreenable) {
return window->isFullscreenable();
} else if (role == IsFullScreen) {
return window->isFullscreen();
} else if (role == IsShadeable) {
return window->isShadeable();
} else if (role == IsShaded) {
return window->isShaded();
} else if (role == IsVirtualDesktopChangeable) {
return window->isVirtualDesktopChangeable();
} else if (role == VirtualDesktop) {
return window->virtualDesktop();
} else if (role == IsOnAllVirtualDesktops) {
return window->isOnAllDesktops();
} else if (role == Geometry) {
return window->geometry();
} else if (role == ScreenGeometry) {
return screenGeometry(window->geometry().center());
} else if (role == Activities) {
// FIXME Implement.
} else if (role == IsDemandingAttention) {
return window->isDemandingAttention();
} else if (role == SkipTaskbar) {
return window->skipTaskbar();
} else if (role == SkipPager) {
// FIXME Implement.
}
return QVariant();
}
int WaylandTasksModel::rowCount(const QModelIndex &parent) const
{
return parent.isValid() ? 0 : d->windows.count();
}
QModelIndex WaylandTasksModel::index(int row, int column, const QModelIndex &parent) const
{
return hasIndex(row, column, parent) ? createIndex(row, column, d->windows.at(row)) : QModelIndex();
}
void WaylandTasksModel::requestActivate(const QModelIndex &index)
{
// FIXME Lacks transient handling of the XWindows version.
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
d->windows.at(index.row())->requestActivate();
}
void WaylandTasksModel::requestNewInstance(const QModelIndex &index)
{
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
KWayland::Client::PlasmaWindow* window = d->windows.at(index.row());
if (d->serviceCache.contains(window)) {
const KService::Ptr service = d->serviceCache.value(window);
new KRun(QUrl::fromLocalFile(service->entryPath()), 0, false);
KActivities::ResourceInstance::notifyAccessed(QUrl("applications:" + service->storageId()),
"org.kde.libtaskmanager");
}
}
void WaylandTasksModel::requestOpenUrls(const QModelIndex &index, const QList<QUrl> &urls)
{
if (!index.isValid() || index.model() != this || index.row() < 0
|| index.row() >= d->windows.count()
|| urls.isEmpty()) {
return;
}
KWayland::Client::PlasmaWindow *window = d->windows.at(index.row());
if (d->serviceCache.contains(window)) {
const KService::Ptr service = d->serviceCache.value(window);
KRun::runApplication(*service, urls, nullptr, 0);
KActivities::ResourceInstance::notifyAccessed(QUrl("applications:" + service->storageId()),
"org.kde.libtaskmanager");
}
}
void WaylandTasksModel::requestClose(const QModelIndex &index)
{
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
d->windows.at(index.row())->requestClose();
}
void WaylandTasksModel::requestMove(const QModelIndex &index)
{
// FIXME Move-to-desktop logic from XWindows version. (See also others.)
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
d->windows.at(index.row())->requestMove();
}
void WaylandTasksModel::requestResize(const QModelIndex &index)
{
// FIXME Move-to-desktop logic from XWindows version. (See also others.)
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
d->windows.at(index.row())->requestResize();
}
void WaylandTasksModel::requestToggleMinimized(const QModelIndex &index)
{
// FIXME Move-to-desktop logic from XWindows version. (See also others.)
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
d->windows.at(index.row())->requestToggleMinimized();
}
void WaylandTasksModel::requestToggleMaximized(const QModelIndex &index)
{
// FIXME Move-to-desktop logic from XWindows version. (See also others.)
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
d->windows.at(index.row())->requestToggleMaximized();
}
void WaylandTasksModel::requestToggleKeepAbove(const QModelIndex &index)
{
Q_UNUSED(index)
// FIXME Implement.
}
void WaylandTasksModel::requestToggleKeepBelow(const QModelIndex &index)
{
Q_UNUSED(index)
// FIXME Implement.
}
void WaylandTasksModel::requestToggleFullScreen(const QModelIndex &index)
{
Q_UNUSED(index)
// FIXME Implement.
}
void WaylandTasksModel::requestToggleShaded(const QModelIndex &index)
{
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
d->windows.at(index.row())->requestToggleShaded();
}
void WaylandTasksModel::requestVirtualDesktop(const QModelIndex &index, qint32 desktop)
{
// FIXME Lacks add-new-desktop code from XWindows version.
// FIXME Does this do the set-on-all-desktops stuff from the XWindows version?
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
d->windows.at(index.row())->requestVirtualDesktop(desktop);
}
void WaylandTasksModel::requestActivities(const QModelIndex &index, const QStringList &activities)
{
Q_UNUSED(index)
Q_UNUSED(activities)
}
void WaylandTasksModel::requestPublishDelegateGeometry(const QModelIndex &index, const QRect &geometry, QObject *delegate)
{
/*
FIXME: This introduces the dependency on Qt5::Quick. I might prefer
reversing this and publishing the window pointer through the model,
then calling PlasmaWindow::setMinimizeGeometry in the applet backend,
rather than hand delegate items into the lib, keeping the lib more UI-
agnostic.
*/
Q_UNUSED(geometry)
if (!index.isValid() || index.model() != this || index.row() < 0 || index.row() >= d->windows.count()) {
return;
}
const QQuickItem *item = qobject_cast<const QQuickItem *>(delegate);
if (!item || !item->parentItem() || !item->window()) {
return;
}
QWindow *itemWindow = item->window();
if (!itemWindow) {
return;
}
using namespace KWayland::Client;
Surface *surface = Surface::fromWindow(itemWindow);
if (!surface) {
return;
}
QRect rect(item->x(), item->y(), item->width(), item->height());
rect.moveTopLeft(item->parentItem()->mapToScene(rect.topLeft()).toPoint());
KWayland::Client::PlasmaWindow *window = d->windows.at(index.row());
window->setMinimizedGeometry(surface, rect);
}
}
|