You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
4.6 KiB
115 lines
4.6 KiB
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2020 Aleix Pol Gonzalez <aleixpol@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include "xdgactivationv1.h" |
|
#include "effects.h" |
|
#include "utils/common.h" |
|
#include "wayland/display.h" |
|
#include "wayland/plasmawindowmanagement_interface.h" |
|
#include "wayland/surface_interface.h" |
|
#include "wayland/xdgactivation_v1_interface.h" |
|
#include "wayland_server.h" |
|
#include "window.h" |
|
#include "workspace.h" |
|
|
|
using namespace KWaylandServer; |
|
|
|
namespace KWin |
|
{ |
|
|
|
static bool isPrivilegedInWindowManagement(const ClientConnection *client) |
|
{ |
|
auto requestedInterfaces = client->property("requestedInterfaces").toStringList(); |
|
return requestedInterfaces.contains(QLatin1String("org_kde_plasma_window_management")); |
|
} |
|
|
|
XdgActivationV1Integration::XdgActivationV1Integration(XdgActivationV1Interface *activation, QObject *parent) |
|
: QObject(parent) |
|
{ |
|
Workspace *ws = Workspace::self(); |
|
connect(ws, &Workspace::windowActivated, this, [this](Window *window) { |
|
if (!m_currentActivationToken || !window || window->property("token").toString() == m_currentActivationToken->token) { |
|
return; |
|
} |
|
|
|
// We check that it's not the app that we are trying to activate |
|
if (window->desktopFileName() != m_currentActivationToken->applicationId) { |
|
// But also that the new one has been requested after the token was requested |
|
if (window->lastUsageSerial() < m_currentActivationToken->serial) { |
|
return; |
|
} |
|
} |
|
|
|
clear(); |
|
}); |
|
activation->setActivationTokenCreator([this](ClientConnection *client, SurfaceInterface *surface, uint serial, SeatInterface *seat, const QString &appId) -> QString { |
|
Workspace *ws = Workspace::self(); |
|
if (ws->activeWindow() && ws->activeWindow()->surface() != surface && !isPrivilegedInWindowManagement(client)) { |
|
qCWarning(KWIN_CORE) << "Cannot grant a token to" << client; |
|
return QStringLiteral("not-granted-666"); |
|
} |
|
|
|
static int i = 0; |
|
const auto newToken = QStringLiteral("kwin-%1").arg(++i); |
|
|
|
if (m_currentActivationToken) { |
|
clear(); |
|
} |
|
QSharedPointer<PlasmaWindowActivationInterface> pwActivation(waylandServer()->plasmaActivationFeedback()->createActivation(appId)); |
|
m_currentActivationToken.reset(new ActivationToken{newToken, client, surface, serial, seat, appId, pwActivation}); |
|
if (!appId.isEmpty()) { |
|
const auto icon = QIcon::fromTheme(Window::iconFromDesktopFile(appId), QIcon::fromTheme(QStringLiteral("system-run"))); |
|
Q_EMIT effects->startupAdded(m_currentActivationToken->token, icon); |
|
} |
|
|
|
return newToken; |
|
}); |
|
|
|
connect(activation, &XdgActivationV1Interface::activateRequested, this, &XdgActivationV1Integration::activateSurface); |
|
} |
|
|
|
void XdgActivationV1Integration::activateSurface(SurfaceInterface *surface, const QString &token) |
|
{ |
|
Workspace *ws = Workspace::self(); |
|
auto window = waylandServer()->findWindow(surface); |
|
if (!window) { |
|
qCWarning(KWIN_CORE) << "could not find the toplevel to activate" << surface; |
|
return; |
|
} |
|
|
|
if (!m_currentActivationToken || m_currentActivationToken->token != token) { |
|
qCDebug(KWIN_CORE) << "Refusing to activate " << window << " (provided token: " << token << ", current token:" << (m_currentActivationToken ? m_currentActivationToken->token : QStringLiteral("null")) << ")"; |
|
window->demandAttention(); |
|
return; |
|
} |
|
|
|
auto ownerWindow = waylandServer()->findWindow(m_currentActivationToken->surface); |
|
qCDebug(KWIN_CORE) << "activating" << window << surface << "on behalf of" << m_currentActivationToken->surface << "into" << ownerWindow; |
|
if (ws->activeWindow() == ownerWindow || ws->activeWindow()->lastUsageSerial() < m_currentActivationToken->serial || isPrivilegedInWindowManagement(m_currentActivationToken->client)) { |
|
ws->activateWindow(window); |
|
} else { |
|
qCWarning(KWIN_CORE) << "Activation requested while owner isn't active" << (ownerWindow ? ownerWindow->desktopFileName() : "null") |
|
<< m_currentActivationToken->applicationId; |
|
window->demandAttention(); |
|
clear(); |
|
} |
|
} |
|
|
|
void XdgActivationV1Integration::clear() |
|
{ |
|
Q_ASSERT(m_currentActivationToken); |
|
if (!m_currentActivationToken->applicationId.isEmpty()) { |
|
Q_EMIT effects->startupRemoved(m_currentActivationToken->token); |
|
} |
|
m_currentActivationToken.reset(); |
|
} |
|
|
|
XdgActivationV1Integration::ActivationToken::~ActivationToken() = default; |
|
|
|
}
|
|
|