kwin/src/useractions.cpp

1904 lines
64 KiB
C++
Raw Normal View History

2020-08-02 22:22:19 +00:00
/*
KWin - the KDE window manager
This file is part of the KDE project.
2020-08-02 22:22:19 +00:00
SPDX-FileCopyrightText: 1999, 2000 Matthias Ettrich <ettrich@kde.org>
SPDX-FileCopyrightText: 2003 Lubos Lunak <l.lunak@kde.org>
2020-08-02 22:22:19 +00:00
SPDX-License-Identifier: GPL-2.0-or-later
*/
/*
This file contains things relevant to direct user actions, such as
responses to global keyboard shortcuts, or selecting actions
from the window operations menu.
*/
///////////////////////////////////////////////////////////////////////////////
// NOTE: if you change the menu, keep
// plasma-desktop/applets/taskmanager/package/contents/ui/ContextMenu.qml
// in sync
//////////////////////////////////////////////////////////////////////////////
#include "useractions.h"
#include "abstract_output.h"
#include "composite.h"
#include "cursor.h"
#include "effects.h"
#include "input.h"
#include "platform.h"
#include "screens.h"
#include "scripting/scripting.h"
#include "virtualdesktops.h"
#include "workspace.h"
#include "x11client.h"
#if KWIN_BUILD_ACTIVITIES
#include "activities.h"
#include <kactivities/info.h>
#endif
#include "appmenu.h"
#include <KProcess>
#include <QAction>
#include <QCheckBox>
#include <QPushButton>
#include <QtConcurrentRun>
#include <KGlobalAccel>
#include <KLazyLocalizedString>
#include <KLocalizedString>
#include <QAction>
2022-03-09 16:41:07 +00:00
#include <QActionGroup>
#include <QMenu>
#include <QRegularExpression>
#include <kauthorized.h>
#include <kconfig.h>
#include "killwindow.h"
#if KWIN_BUILD_TABBOX
#include "tabbox.h"
#endif
namespace KWin
{
UserActionsMenu::UserActionsMenu(QObject *parent)
: QObject(parent)
, m_menu(nullptr)
, m_desktopMenu(nullptr)
, m_multipleDesktopsMenu(nullptr)
, m_screenMenu(nullptr)
, m_activityMenu(nullptr)
, m_scriptsMenu(nullptr)
, m_resizeOperation(nullptr)
, m_moveOperation(nullptr)
, m_maximizeOperation(nullptr)
, m_shadeOperation(nullptr)
, m_keepAboveOperation(nullptr)
, m_keepBelowOperation(nullptr)
, m_fullScreenOperation(nullptr)
, m_noBorderOperation(nullptr)
, m_minimizeOperation(nullptr)
, m_closeOperation(nullptr)
, m_shortcutOperation(nullptr)
{
}
UserActionsMenu::~UserActionsMenu()
2011-01-30 14:34:42 +00:00
{
discard();
}
bool UserActionsMenu::isShown() const
{
return m_menu && m_menu->isVisible();
}
bool UserActionsMenu::hasClient() const
{
return m_client && isShown();
}
void UserActionsMenu::close()
{
if (!m_menu) {
return;
}
m_menu->close();
m_client.clear();
}
bool UserActionsMenu::isMenuClient(const AbstractClient *c) const
{
return c && c == m_client;
}
2011-01-30 14:34:42 +00:00
void UserActionsMenu::show(const QRect &pos, AbstractClient *client)
{
Q_ASSERT(client);
QPointer<AbstractClient> cl(client);
// Presumably client will never be nullptr,
// but play it safe and make sure not to crash.
if (cl.isNull()) {
return;
}
if (isShown()) { // recursion
return;
}
if (cl->isDesktop() || cl->isDock()) {
return;
}
if (!KAuthorized::authorizeAction(QStringLiteral("kwin_rmb"))) {
return;
}
m_client = cl;
init();
m_client->blockActivityUpdates(true);
if (kwinApp()->shouldUseWaylandForCompositing()) {
m_menu->popup(pos.bottomLeft());
} else {
m_menu->exec(pos.bottomLeft());
}
if (m_client) {
m_client->blockActivityUpdates(false);
}
}
2011-01-30 14:34:42 +00:00
void UserActionsMenu::grabInput()
{
m_menu->windowHandle()->setMouseGrabEnabled(true);
m_menu->windowHandle()->setKeyboardGrabEnabled(true);
}
void UserActionsMenu::helperDialog(const QString &message, AbstractClient *client)
{
QStringList args;
QString type;
auto shortcut = [](const QString &name) {
QAction *action = Workspace::self()->findChild<QAction *>(name);
Q_ASSERT(action != nullptr);
const auto shortcuts = KGlobalAccel::self()->shortcut(action);
return QStringLiteral("%1 (%2)").arg(action->text(), shortcuts.isEmpty() ? QString() : shortcuts.first().toString(QKeySequence::NativeText));
};
if (message == QStringLiteral("noborderaltf3")) {
args << QStringLiteral("--msgbox") << i18n("You have selected to show a window without its border.\n"
"Without the border, you will not be able to enable the border "
"again using the mouse: use the window operations menu instead, "
"activated using the %1 keyboard shortcut.",
shortcut(QStringLiteral("Window Operations Menu")));
type = QStringLiteral("altf3warning");
} else if (message == QLatin1String("fullscreenaltf3")) {
args << QStringLiteral("--msgbox") << i18n("You have selected to show a window in fullscreen mode.\n"
"If the application itself does not have an option to turn the fullscreen "
"mode off you will not be able to disable it "
"again using the mouse: use the window operations menu instead, "
"activated using the %1 keyboard shortcut.",
shortcut(QStringLiteral("Window Operations Menu")));
type = QStringLiteral("altf3warning");
} else {
Q_UNREACHABLE();
}
if (!type.isEmpty()) {
KConfig cfg(QStringLiteral("kwin_dialogsrc"));
KConfigGroup cg(&cfg, "Notification Messages"); // Depends on KMessageBox
if (!cg.readEntry(type, true)) {
return;
}
args << QStringLiteral("--dontagain") << QLatin1String("kwin_dialogsrc:") + type;
}
if (client) {
args << QStringLiteral("--embed") << QString::number(client->window());
}
QtConcurrent::run([args]() {
KProcess::startDetached(QStringLiteral("kdialog"), args);
});
}
QStringList configModules(bool controlCenter)
{
QStringList args;
args << QStringLiteral("kwindecoration");
if (controlCenter) {
args << QStringLiteral("kwinoptions");
} else if (KAuthorized::authorizeControlModule(QStringLiteral("kde-kwinoptions.desktop"))) {
args << QStringLiteral("kwinactions") << QStringLiteral("kwinfocus") << QStringLiteral("kwinmoving") << QStringLiteral("kwinadvanced")
<< QStringLiteral("kwinrules") << QStringLiteral("kwincompositing") << QStringLiteral("kwineffects")
#if KWIN_BUILD_TABBOX
<< QStringLiteral("kwintabbox")
#endif
<< QStringLiteral("kwinscreenedges")
<< QStringLiteral("kwinscripts");
}
return args;
}
void UserActionsMenu::init()
{
if (m_menu) {
return;
}
m_menu = new QMenu;
connect(m_menu, &QMenu::aboutToShow, this, &UserActionsMenu::menuAboutToShow);
connect(m_menu, &QMenu::triggered, this, &UserActionsMenu::slotWindowOperation, Qt::QueuedConnection);
QMenu *advancedMenu = new QMenu(m_menu);
connect(advancedMenu, &QMenu::aboutToShow, this, [this, advancedMenu]() {
if (m_client) {
advancedMenu->setPalette(m_client->palette());
}
});
auto setShortcut = [](QAction *action, const QString &actionName) {
const auto shortcuts = KGlobalAccel::self()->shortcut(Workspace::self()->findChild<QAction *>(actionName));
if (!shortcuts.isEmpty()) {
action->setShortcut(shortcuts.first());
}
};
m_moveOperation = advancedMenu->addAction(i18n("&Move"));
m_moveOperation->setIcon(QIcon::fromTheme(QStringLiteral("transform-move")));
setShortcut(m_moveOperation, QStringLiteral("Window Move"));
m_moveOperation->setData(Options::UnrestrictedMoveOp);
m_resizeOperation = advancedMenu->addAction(i18n("&Resize"));
m_resizeOperation->setIcon(QIcon::fromTheme(QStringLiteral("transform-scale")));
setShortcut(m_resizeOperation, QStringLiteral("Window Resize"));
m_resizeOperation->setData(Options::ResizeOp);
m_keepAboveOperation = advancedMenu->addAction(i18n("Keep &Above Others"));
m_keepAboveOperation->setIcon(QIcon::fromTheme(QStringLiteral("window-keep-above")));
setShortcut(m_keepAboveOperation, QStringLiteral("Window Above Other Windows"));
m_keepAboveOperation->setCheckable(true);
m_keepAboveOperation->setData(Options::KeepAboveOp);
m_keepBelowOperation = advancedMenu->addAction(i18n("Keep &Below Others"));
m_keepBelowOperation->setIcon(QIcon::fromTheme(QStringLiteral("window-keep-below")));
setShortcut(m_keepBelowOperation, QStringLiteral("Window Below Other Windows"));
m_keepBelowOperation->setCheckable(true);
m_keepBelowOperation->setData(Options::KeepBelowOp);
m_fullScreenOperation = advancedMenu->addAction(i18n("&Fullscreen"));
m_fullScreenOperation->setIcon(QIcon::fromTheme(QStringLiteral("view-fullscreen")));
setShortcut(m_fullScreenOperation, QStringLiteral("Window Fullscreen"));
m_fullScreenOperation->setCheckable(true);
m_fullScreenOperation->setData(Options::FullScreenOp);
m_shadeOperation = advancedMenu->addAction(i18n("&Shade"));
m_shadeOperation->setIcon(QIcon::fromTheme(QStringLiteral("window-shade")));
setShortcut(m_shadeOperation, QStringLiteral("Window Shade"));
m_shadeOperation->setCheckable(true);
m_shadeOperation->setData(Options::ShadeOp);
m_noBorderOperation = advancedMenu->addAction(i18n("&No Border"));
m_noBorderOperation->setIcon(QIcon::fromTheme(QStringLiteral("edit-none-border")));
setShortcut(m_noBorderOperation, QStringLiteral("Window No Border"));
m_noBorderOperation->setCheckable(true);
m_noBorderOperation->setData(Options::NoBorderOp);
advancedMenu->addSeparator();
m_shortcutOperation = advancedMenu->addAction(i18n("Set Window Short&cut..."));
m_shortcutOperation->setIcon(QIcon::fromTheme(QStringLiteral("configure-shortcuts")));
setShortcut(m_shortcutOperation, QStringLiteral("Setup Window Shortcut"));
m_shortcutOperation->setData(Options::SetupWindowShortcutOp);
QAction *action = advancedMenu->addAction(i18n("Configure Special &Window Settings..."));
action->setIcon(QIcon::fromTheme(QStringLiteral("preferences-system-windows-actions")));
action->setData(Options::WindowRulesOp);
m_rulesOperation = action;
action = advancedMenu->addAction(i18n("Configure S&pecial Application Settings..."));
action->setIcon(QIcon::fromTheme(QStringLiteral("preferences-system-windows-actions")));
action->setData(Options::ApplicationRulesOp);
m_applicationRulesOperation = action;
if (!kwinApp()->config()->isImmutable() && !KAuthorized::authorizeControlModules(configModules(true)).isEmpty()) {
advancedMenu->addSeparator();
action = advancedMenu->addAction(i18nc("Entry in context menu of window decoration to open the configuration module of KWin",
"Configure W&indow Manager..."));
action->setIcon(QIcon::fromTheme(QStringLiteral("configure")));
connect(action, &QAction::triggered, this, [this]() {
// opens the KWin configuration
QStringList args;
args << QStringLiteral("--icon") << QStringLiteral("preferences-system-windows");
const QString path = QStandardPaths::locate(QStandardPaths::GenericDataLocation,
QStringLiteral("kservices5/kwinfocus.desktop"));
if (!path.isEmpty()) {
args << QStringLiteral("--desktopfile") << path;
}
args << configModules(false);
QProcess *p = new QProcess(this);
p->setArguments(args);
p->setProcessEnvironment(kwinApp()->processStartupEnvironment());
p->setProgram(QStringLiteral("kcmshell5"));
connect(p, static_cast<void (QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished), p, &QProcess::deleteLater);
connect(p, &QProcess::errorOccurred, this, [](QProcess::ProcessError e) {
if (e == QProcess::FailedToStart) {
qCDebug(KWIN_CORE) << "Failed to start kcmshell5";
}
});
p->start();
});
}
2011-01-30 14:34:42 +00:00
m_maximizeOperation = m_menu->addAction(i18n("Ma&ximize"));
m_maximizeOperation->setIcon(QIcon::fromTheme(QStringLiteral("window-maximize")));
setShortcut(m_maximizeOperation, QStringLiteral("Window Maximize"));
m_maximizeOperation->setCheckable(true);
m_maximizeOperation->setData(Options::MaximizeOp);
m_minimizeOperation = m_menu->addAction(i18n("Mi&nimize"));
m_minimizeOperation->setIcon(QIcon::fromTheme(QStringLiteral("window-minimize")));
setShortcut(m_minimizeOperation, QStringLiteral("Window Minimize"));
m_minimizeOperation->setData(Options::MinimizeOp);
action = m_menu->addMenu(advancedMenu);
action->setText(i18n("&More Actions"));
2021-08-20 04:25:16 +00:00
action->setIcon(QIcon::fromTheme(QStringLiteral("overflow-menu")));
m_closeOperation = m_menu->addAction(i18n("&Close"));
m_closeOperation->setIcon(QIcon::fromTheme(QStringLiteral("window-close")));
setShortcut(m_closeOperation, QStringLiteral("Window Close"));
m_closeOperation->setData(Options::CloseOp);
}
void UserActionsMenu::discard()
{
delete m_menu;
m_menu = nullptr;
m_desktopMenu = nullptr;
m_multipleDesktopsMenu = nullptr;
m_screenMenu = nullptr;
m_activityMenu = nullptr;
m_scriptsMenu = nullptr;
}
void UserActionsMenu::menuAboutToShow()
2011-01-30 14:34:42 +00:00
{
if (m_client.isNull() || !m_menu) {
return;
}
if (VirtualDesktopManager::self()->count() == 1) {
delete m_desktopMenu;
m_desktopMenu = nullptr;
delete m_multipleDesktopsMenu;
m_multipleDesktopsMenu = nullptr;
2011-01-30 14:34:42 +00:00
} else {
initDesktopPopup();
2011-01-30 14:34:42 +00:00
}
if (screens()->count() == 1 || (!m_client->isMovable() && !m_client->isMovableAcrossScreens())) {
delete m_screenMenu;
m_screenMenu = nullptr;
} else {
initScreenPopup();
}
m_menu->setPalette(m_client->palette());
m_resizeOperation->setEnabled(m_client->isResizable());
m_moveOperation->setEnabled(m_client->isMovableAcrossScreens());
m_maximizeOperation->setEnabled(m_client->isMaximizable());
m_maximizeOperation->setChecked(m_client->maximizeMode() == MaximizeFull);
m_shadeOperation->setEnabled(m_client->isShadeable());
m_shadeOperation->setChecked(m_client->shadeMode() != ShadeNone);
m_keepAboveOperation->setChecked(m_client->keepAbove());
m_keepBelowOperation->setChecked(m_client->keepBelow());
m_fullScreenOperation->setEnabled(m_client->userCanSetFullScreen());
m_fullScreenOperation->setChecked(m_client->isFullScreen());
m_noBorderOperation->setEnabled(m_client->userCanSetNoBorder());
m_noBorderOperation->setChecked(m_client->noBorder());
m_minimizeOperation->setEnabled(m_client->isMinimizable());
m_closeOperation->setEnabled(m_client->isCloseable());
m_shortcutOperation->setEnabled(m_client->rules()->checkShortcut(QString()).isNull());
// drop the existing scripts menu
delete m_scriptsMenu;
m_scriptsMenu = nullptr;
// ask scripts whether they want to add entries for the given Client
QList<QAction *> scriptActions = Scripting::self()->actionsForUserActionMenu(m_client.data(), m_scriptsMenu);
if (!scriptActions.isEmpty()) {
m_scriptsMenu = new QMenu(m_menu);
m_scriptsMenu->setPalette(m_client->palette());
m_scriptsMenu->addActions(scriptActions);
QAction *action = m_scriptsMenu->menuAction();
// set it as the first item after desktop
m_menu->insertAction(m_closeOperation, action);
action->setText(i18n("&Extensions"));
}
m_rulesOperation->setEnabled(m_client->supportsWindowRules());
m_applicationRulesOperation->setEnabled(m_client->supportsWindowRules());
showHideActivityMenu();
2011-01-30 14:34:42 +00:00
}
void UserActionsMenu::showHideActivityMenu()
{
#if KWIN_BUILD_ACTIVITIES
if (!Activities::self()) {
return;
}
const QStringList &openActivities_ = Activities::self()->running();
qCDebug(KWIN_CORE) << "activities:" << openActivities_.size();
if (openActivities_.size() < 2) {
delete m_activityMenu;
m_activityMenu = nullptr;
} else {
initActivityPopup();
}
#endif
}
void UserActionsMenu::initDesktopPopup()
2011-01-30 14:34:42 +00:00
{
if (kwinApp()->operationMode() == Application::OperationModeWaylandOnly || kwinApp()->operationMode() == Application::OperationModeXwayland) {
if (m_multipleDesktopsMenu) {
return;
}
m_multipleDesktopsMenu = new QMenu(m_menu);
connect(m_multipleDesktopsMenu, &QMenu::aboutToShow, this, &UserActionsMenu::multipleDesktopsPopupAboutToShow);
QAction *action = m_multipleDesktopsMenu->menuAction();
// set it as the first item
m_menu->insertAction(m_maximizeOperation, action);
action->setText(i18n("&Desktops"));
action->setIcon(QIcon::fromTheme(QStringLiteral("virtual-desktops")));
} else {
if (m_desktopMenu) {
return;
}
m_desktopMenu = new QMenu(m_menu);
connect(m_desktopMenu, &QMenu::aboutToShow, this, &UserActionsMenu::desktopPopupAboutToShow);
QAction *action = m_desktopMenu->menuAction();
// set it as the first item
m_menu->insertAction(m_maximizeOperation, action);
action->setText(i18n("Move to &Desktop"));
action->setIcon(QIcon::fromTheme(QStringLiteral("virtual-desktops")));
}
2011-01-30 14:34:42 +00:00
}
void UserActionsMenu::initScreenPopup()
{
if (m_screenMenu) {
return;
}
m_screenMenu = new QMenu(m_menu);
connect(m_screenMenu, &QMenu::aboutToShow, this, &UserActionsMenu::screenPopupAboutToShow);
QAction *action = m_screenMenu->menuAction();
// set it as the first item after desktop
m_menu->insertAction(m_activityMenu ? m_activityMenu->menuAction() : m_minimizeOperation, action);
action->setText(i18n("Move to &Screen"));
action->setIcon(QIcon::fromTheme(QStringLiteral("computer")));
}
void UserActionsMenu::initActivityPopup()
2011-01-30 14:34:42 +00:00
{
if (m_activityMenu) {
return;
}
m_activityMenu = new QMenu(m_menu);
connect(m_activityMenu, &QMenu::triggered, this, &UserActionsMenu::slotToggleOnActivity);
connect(m_activityMenu, &QMenu::aboutToShow, this, &UserActionsMenu::activityPopupAboutToShow);
QAction *action = m_activityMenu->menuAction();
// set it as the first item
m_menu->insertAction(m_maximizeOperation, action);
action->setText(i18n("Show in &Activities"));
action->setIcon(QIcon::fromTheme(QStringLiteral("activities")));
2011-01-30 14:34:42 +00:00
}
void UserActionsMenu::desktopPopupAboutToShow()
2011-01-30 14:34:42 +00:00
{
if (!m_desktopMenu) {
return;
}
const VirtualDesktopManager *vds = VirtualDesktopManager::self();
m_desktopMenu->clear();
if (m_client) {
m_desktopMenu->setPalette(m_client->palette());
}
QActionGroup *group = new QActionGroup(m_desktopMenu);
QAction *action = m_desktopMenu->addAction(i18n("&All Desktops"));
connect(action, &QAction::triggered, this, [this]() {
if (m_client) {
m_client->setOnAllDesktops(!m_client->isOnAllDesktops());
}
});
2011-01-30 14:34:42 +00:00
action->setCheckable(true);
if (m_client && m_client->isOnAllDesktops()) {
action->setChecked(true);
}
group->addAction(action);
if (m_client && m_client->isOnAllDesktops()) {
2011-01-30 14:34:42 +00:00
action->setChecked(true);
}
m_desktopMenu->addSeparator();
const uint BASE = 10;
const auto desktops = vds->desktops();
for (VirtualDesktop *desktop : desktops) {
const uint legacyId = desktop->x11DesktopNumber();
QString basic_name(QStringLiteral("%1 %2"));
if (legacyId < BASE) {
basic_name.prepend(QLatin1Char('&'));
}
action = m_desktopMenu->addAction(basic_name.arg(legacyId).arg(desktop->name().replace(QLatin1Char('&'), QStringLiteral("&&"))));
connect(action, &QAction::triggered, this, [this, desktop]() {
if (m_client) {
workspace()->sendClientToDesktop(m_client, desktop->x11DesktopNumber(), false);
}
});
2011-01-30 14:34:42 +00:00
action->setCheckable(true);
group->addAction(action);
if (m_client && !m_client->isOnAllDesktops() && m_client->isOnDesktop(desktop)) {
2011-01-30 14:34:42 +00:00
action->setChecked(true);
}
}
m_desktopMenu->addSeparator();
action = m_desktopMenu->addAction(i18nc("Create a new desktop and move the window there", "&New Desktop"));
connect(action, &QAction::triggered, this, [this]() {
if (!m_client) {
return;
}
VirtualDesktopManager *vds = VirtualDesktopManager::self();
VirtualDesktop *desktop = vds->createVirtualDesktop(vds->count());
if (desktop) {
workspace()->sendClientToDesktop(m_client, desktop->x11DesktopNumber(), false);
}
});
action->setEnabled(vds->count() < vds->maximum());
2011-01-30 14:34:42 +00:00
}
void UserActionsMenu::multipleDesktopsPopupAboutToShow()
{
if (!m_multipleDesktopsMenu) {
return;
}
VirtualDesktopManager *vds = VirtualDesktopManager::self();
m_multipleDesktopsMenu->clear();
if (m_client) {
m_multipleDesktopsMenu->setPalette(m_client->palette());
}
QAction *action = m_multipleDesktopsMenu->addAction(i18n("&All Desktops"));
connect(action, &QAction::triggered, this, [this]() {
if (m_client) {
m_client->setOnAllDesktops(!m_client->isOnAllDesktops());
}
});
action->setCheckable(true);
if (m_client && m_client->isOnAllDesktops()) {
action->setChecked(true);
}
m_multipleDesktopsMenu->addSeparator();
const uint BASE = 10;
const auto desktops = vds->desktops();
for (VirtualDesktop *desktop : desktops) {
const uint legacyId = desktop->x11DesktopNumber();
QString basic_name(QStringLiteral("%1 %2"));
if (legacyId < BASE) {
basic_name.prepend(QLatin1Char('&'));
}
QAction *action = m_multipleDesktopsMenu->addAction(basic_name.arg(legacyId).arg(desktop->name().replace(QLatin1Char('&'), QStringLiteral("&&"))));
connect(action, &QAction::triggered, this, [this, desktop]() {
if (m_client) {
if (m_client->desktops().contains(desktop)) {
m_client->leaveDesktop(desktop);
} else {
m_client->enterDesktop(desktop);
}
}
});
action->setCheckable(true);
if (m_client && !m_client->isOnAllDesktops() && m_client->isOnDesktop(desktop)) {
action->setChecked(true);
}
}
m_multipleDesktopsMenu->addSeparator();
for (VirtualDesktop *desktop : desktops) {
const uint legacyId = desktop->x11DesktopNumber();
QString name = i18n("Move to %1 %2", legacyId, desktop->name());
QAction *action = m_multipleDesktopsMenu->addAction(name);
connect(action, &QAction::triggered, this, [this, desktop]() {
if (m_client) {
m_client->setDesktops({desktop});
}
});
}
m_multipleDesktopsMenu->addSeparator();
bool allowNewDesktops = vds->count() < vds->maximum();
action = m_multipleDesktopsMenu->addAction(i18nc("Create a new desktop and add the window to that desktop", "Add to &New Desktop"));
connect(action, &QAction::triggered, this, [this, vds]() {
if (!m_client) {
return;
}
VirtualDesktop *desktop = vds->createVirtualDesktop(vds->count());
if (desktop) {
m_client->enterDesktop(desktop);
}
});
action->setEnabled(allowNewDesktops);
action = m_multipleDesktopsMenu->addAction(i18nc("Create a new desktop and move the window to that desktop", "Move to New Desktop"));
connect(action, &QAction::triggered, this, [this, vds]() {
if (!m_client) {
return;
}
VirtualDesktop *desktop = vds->createVirtualDesktop(vds->count());
if (desktop) {
m_client->setDesktops({desktop});
}
});
action->setEnabled(allowNewDesktops);
}
void UserActionsMenu::screenPopupAboutToShow()
{
if (!m_screenMenu) {
return;
}
m_screenMenu->clear();
if (!m_client) {
return;
}
m_screenMenu->setPalette(m_client->palette());
QActionGroup *group = new QActionGroup(m_screenMenu);
const auto outputs = kwinApp()->platform()->enabledOutputs();
for (int i = 0; i < outputs.count(); ++i) {
AbstractOutput *output = outputs[i];
// assumption: there are not more than 9 screens attached.
QAction *action = m_screenMenu->addAction(i18nc("@item:inmenu List of all Screens to send a window to. First argument is a number, second the output identifier. E.g. Screen 1 (HDMI1)",
"Screen &%1 (%2)", (i + 1), output->name()));
connect(action, &QAction::triggered, this, [this, output]() {
workspace()->sendClientToOutput(m_client, output);
});
action->setCheckable(true);
if (m_client && output == m_client->output()) {
action->setChecked(true);
}
group->addAction(action);
}
}
void UserActionsMenu::activityPopupAboutToShow()
2011-01-30 14:34:42 +00:00
{
if (!m_activityMenu) {
return;
}
#if KWIN_BUILD_ACTIVITIES
if (!Activities::self()) {
return;
}
m_activityMenu->clear();
if (m_client) {
m_activityMenu->setPalette(m_client->palette());
}
QAction *action = m_activityMenu->addAction(i18n("&All Activities"));
2011-01-30 14:34:42 +00:00
action->setData(QString());
action->setCheckable(true);
static QPointer<QActionGroup> allActivitiesGroup;
if (!allActivitiesGroup) {
allActivitiesGroup = new QActionGroup(m_activityMenu);
}
allActivitiesGroup->addAction(action);
if (m_client && m_client->isOnAllActivities()) {
2011-01-30 14:34:42 +00:00
action->setChecked(true);
}
m_activityMenu->addSeparator();
2021-11-03 11:55:31 +00:00
const auto activities = Activities::self()->running();
for (const QString &id : activities) {
2011-11-04 22:23:52 +00:00
KActivities::Info activity(id);
QString name = activity.name();
name.replace('&', "&&");
auto action = m_activityMenu->addAction(name);
action->setCheckable(true);
const QString icon = activity.icon();
if (!icon.isEmpty()) {
action->setIcon(QIcon::fromTheme(icon));
}
m_activityMenu->addAction(action);
2011-01-30 14:34:42 +00:00
action->setData(id);
if (m_client && !m_client->isOnAllActivities() && m_client->isOnActivity(id)) {
action->setChecked(true);
}
}
#endif
2011-01-30 14:34:42 +00:00
}
void UserActionsMenu::slotWindowOperation(QAction *action)
{
if (!action->data().isValid()) {
return;
}
Options::WindowOperation op = static_cast<Options::WindowOperation>(action->data().toInt());
QPointer<AbstractClient> c = m_client ? m_client : QPointer<AbstractClient>(Workspace::self()->activeClient());
if (c.isNull()) {
return;
}
QString type;
switch (op) {
case Options::FullScreenOp:
if (!c->isFullScreen() && c->userCanSetFullScreen()) {
type = QStringLiteral("fullscreenaltf3");
}
break;
case Options::NoBorderOp:
if (!c->noBorder() && c->userCanSetNoBorder()) {
type = QStringLiteral("noborderaltf3");
}
break;
default:
break;
2019-08-09 22:24:14 +00:00
}
if (!type.isEmpty()) {
helperDialog(type, c);
}
// need to delay performing the window operation as we need to have the
// user actions menu closed before we destroy the decoration. Otherwise Qt crashes
2014-12-02 12:50:26 +00:00
qRegisterMetaType<Options::WindowOperation>();
QMetaObject::invokeMethod(workspace(), std::bind(&Workspace::performWindowOperation, workspace(), c, op), Qt::QueuedConnection);
}
void UserActionsMenu::slotToggleOnActivity(QAction *action)
{
#if KWIN_BUILD_ACTIVITIES
if (!Activities::self()) {
return;
}
QString activity = action->data().toString();
if (m_client.isNull()) {
return;
}
if (activity.isEmpty()) {
// the 'on_all_activities' menu entry
m_client->setOnAllActivities(!m_client->isOnAllActivities());
return;
}
Activities::self()->toggleClientOnActivity(m_client, activity, false);
if (m_activityMenu && m_activityMenu->isVisible() && m_activityMenu->actions().count()) {
const bool isOnAll = m_client->isOnAllActivities();
m_activityMenu->actions().at(0)->setChecked(isOnAll);
if (isOnAll) {
// toggleClientOnActivity interprets "on all" as "on none" and
// susequent toggling ("off") would move the client to only that activity.
// bug #330838 -> set all but "on all" off to "force proper usage"
for (int i = 1; i < m_activityMenu->actions().count(); ++i) {
m_activityMenu->actions().at(i)->setChecked(true);
}
}
}
#else
Q_UNUSED(action)
#endif
}
//****************************************
// ShortcutDialog
//****************************************
ShortcutDialog::ShortcutDialog(const QKeySequence &cut)
: _shortcut(cut)
{
m_ui.setupUi(this);
m_ui.keySequenceEdit->setKeySequence(cut);
m_ui.warning->hide();
// Listen to changed shortcuts
connect(m_ui.keySequenceEdit, &QKeySequenceEdit::editingFinished, this, &ShortcutDialog::keySequenceChanged);
connect(m_ui.clearButton, &QToolButton::clicked, this, [this] {
_shortcut = QKeySequence();
});
m_ui.keySequenceEdit->setFocus();
setWindowFlags(Qt::Popup | Qt::X11BypassWindowManagerHint);
}
void ShortcutDialog::accept()
{
QKeySequence seq = shortcut();
if (!seq.isEmpty()) {
2022-04-03 09:57:27 +00:00
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
if (seq[0] == Qt::Key_Escape) {
2022-04-03 09:57:27 +00:00
#else
if (seq[0] == QKeyCombination(Qt::Key_Escape)) {
#endif
reject();
return;
}
2022-04-03 09:57:27 +00:00
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
if (seq[0] == Qt::Key_Space
|| (seq[0] & Qt::KeyboardModifierMask) == 0) {
2022-04-03 09:57:27 +00:00
#else
if (seq[0] == QKeyCombination(Qt::Key_Space) || seq[0].keyboardModifiers() == Qt::NoModifier) {
#endif
// clear
m_ui.keySequenceEdit->clear();
QDialog::accept();
return;
}
}
QDialog::accept();
}
void ShortcutDialog::done(int r)
{
QDialog::done(r);
Q_EMIT dialogDone(r == Accepted);
}
void ShortcutDialog::keySequenceChanged()
{
activateWindow(); // where is the kbd focus lost? cause of popup state?
QKeySequence seq = m_ui.keySequenceEdit->keySequence();
if (_shortcut == seq) {
return; // don't try to update the same
}
if (seq.isEmpty()) { // clear
_shortcut = seq;
return;
}
if (seq.count() > 1) {
seq = QKeySequence(seq[0]);
m_ui.keySequenceEdit->setKeySequence(seq);
}
// Check if the key sequence is used currently
QString sc = seq.toString();
// NOTICE - seq.toString() & the entries in "conflicting" randomly get invalidated after the next call (if no sc has been set & conflicting isn't empty?!)
QList<KGlobalShortcutInfo> conflicting = KGlobalAccel::globalShortcutsByKey(seq);
if (!conflicting.isEmpty()) {
const KGlobalShortcutInfo &conflict = conflicting.at(0);
m_ui.warning->setText(i18nc("'%1' is a keyboard shortcut like 'ctrl+w'",
"<b>%1</b> is already in use", sc));
m_ui.warning->setToolTip(i18nc("keyboard shortcut '%1' is used by action '%2' in application '%3'",
"<b>%1</b> is used by %2 in %3", sc, conflict.friendlyName(), conflict.componentFriendlyName()));
m_ui.warning->show();
m_ui.keySequenceEdit->setKeySequence(shortcut());
} else if (seq != _shortcut) {
m_ui.warning->hide();
if (QPushButton *ok = m_ui.buttonBox->button(QDialogButtonBox::Ok)) {
ok->setFocus();
}
}
_shortcut = seq;
}
QKeySequence ShortcutDialog::shortcut() const
{
return _shortcut;
}
//****************************************
// Workspace
//****************************************
void Workspace::slotIncreaseWindowOpacity()
{
if (!active_client) {
return;
}
active_client->setOpacity(qMin(active_client->opacity() + 0.05, 1.0));
}
void Workspace::slotLowerWindowOpacity()
{
if (!active_client) {
return;
}
active_client->setOpacity(qMax(active_client->opacity() - 0.05, 0.05));
}
void Workspace::closeActivePopup()
2011-01-30 14:34:42 +00:00
{
if (active_popup) {
active_popup->close();
active_popup = nullptr;
active_popup_client = nullptr;
}
m_userActionsMenu->close();
2011-01-30 14:34:42 +00:00
}
template<typename Slot>
void Workspace::initShortcut(const QString &actionName, const QString &description, const QKeySequence &shortcut, Slot slot, const QVariant &data)
{
initShortcut(actionName, description, shortcut, this, slot, data);
}
template<typename T, typename Slot>
void Workspace::initShortcut(const QString &actionName, const QString &description, const QKeySequence &shortcut, T *receiver, Slot slot, const QVariant &data)
{
QAction *a = new QAction(this);
a->setProperty("componentName", QStringLiteral(KWIN_NAME));
a->setObjectName(actionName);
a->setText(description);
if (data.isValid()) {
a->setData(data);
}
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << shortcut);
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << shortcut);
input()->registerShortcut(shortcut, a, receiver, slot);
}
/**
* Creates the global accel object \c keys.
*/
void Workspace::initShortcuts()
2011-01-30 14:34:42 +00:00
{
// Some shortcuts have Tarzan-speech like names, they need extra
// normal human descriptions with DEF2() the others can use DEF()
// new DEF3 allows to pass data to the action, replacing the %1 argument in the name
#define DEF2(name, descr, key, fnSlot) \
initShortcut(QStringLiteral(name), descr.toString(), key, &Workspace::fnSlot);
#define DEF(name, key, fnSlot) \
initShortcut(QString::fromUtf8(name.untranslatedText()), name.toString(), key, &Workspace::fnSlot);
#define DEF3(name, key, fnSlot, value) \
initShortcut(QString::fromUtf8(name.untranslatedText()).arg(value), name.subs(value).toString(), key, &Workspace::fnSlot, value);
#define DEF4(name, descr, key, functor) \
initShortcut(QStringLiteral(name), descr.toString(), key, functor);
#define DEF5(name, key, functor, value) \
initShortcut(QString::fromUtf8(name.untranslatedText()).arg(value), name.subs(value).toString(), key, functor, value);
#define DEF6(name, key, target, fnSlot) \
initShortcut(QString::fromUtf8(name.untranslatedText()), name.toString(), key, target, &fnSlot);
DEF(kli18n("Window Operations Menu"),
Qt::ALT | Qt::Key_F3, slotWindowOperations);
DEF2("Window Close", kli18n("Close Window"),
Qt::ALT | Qt::Key_F4, slotWindowClose);
DEF2("Window Maximize", kli18n("Maximize Window"),
Qt::META | Qt::Key_PageUp, slotWindowMaximize);
DEF2("Window Maximize Vertical", kli18n("Maximize Window Vertically"),
0, slotWindowMaximizeVertical);
DEF2("Window Maximize Horizontal", kli18n("Maximize Window Horizontally"),
0, slotWindowMaximizeHorizontal);
DEF2("Window Minimize", kli18n("Minimize Window"),
Qt::META | Qt::Key_PageDown, slotWindowMinimize);
DEF2("Window Shade", kli18n("Shade Window"),
0, slotWindowShade);
DEF2("Window Move", kli18n("Move Window"),
0, slotWindowMove);
DEF2("Window Resize", kli18n("Resize Window"),
0, slotWindowResize);
DEF2("Window Raise", kli18n("Raise Window"),
0, slotWindowRaise);
DEF2("Window Lower", kli18n("Lower Window"),
0, slotWindowLower);
DEF(kli18n("Toggle Window Raise/Lower"),
0, slotWindowRaiseOrLower);
DEF2("Window Fullscreen", kli18n("Make Window Fullscreen"),
0, slotWindowFullScreen);
DEF2("Window No Border", kli18n("Hide Window Border"),
0, slotWindowNoBorder);
DEF2("Window Above Other Windows", kli18n("Keep Window Above Others"),
0, slotWindowAbove);
DEF2("Window Below Other Windows", kli18n("Keep Window Below Others"),
0, slotWindowBelow);
DEF(kli18n("Activate Window Demanding Attention"),
Qt::CTRL | Qt::ALT | Qt::Key_A, slotActivateAttentionWindow);
DEF(kli18n("Setup Window Shortcut"),
0, slotSetupWindowShortcut);
DEF2("Window Move Center", kli18n("Move Window to the Center"), 0,
slotWindowCenter);
DEF2("Window Pack Right", kli18n("Move Window Right"),
0, slotWindowMoveRight);
DEF2("Window Pack Left", kli18n("Move Window Left"),
0, slotWindowMoveLeft);
DEF2("Window Pack Up", kli18n("Move Window Up"),
0, slotWindowMoveUp);
DEF2("Window Pack Down", kli18n("Move Window Down"),
0, slotWindowMoveDown);
DEF2("Window Grow Horizontal", kli18n("Expand Window Horizontally"),
0, slotWindowExpandHorizontal);
DEF2("Window Grow Vertical", kli18n("Expand Window Vertically"),
0, slotWindowExpandVertical);
DEF2("Window Shrink Horizontal", kli18n("Shrink Window Horizontally"),
0, slotWindowShrinkHorizontal);
DEF2("Window Shrink Vertical", kli18n("Shrink Window Vertically"),
0, slotWindowShrinkVertical);
DEF4("Window Quick Tile Left", kli18n("Quick Tile Window to the Left"),
Qt::META | Qt::Key_Left, std::bind(&Workspace::quickTileWindow, this, QuickTileFlag::Left));
DEF4("Window Quick Tile Right", kli18n("Quick Tile Window to the Right"),
Qt::META | Qt::Key_Right, std::bind(&Workspace::quickTileWindow, this, QuickTileFlag::Right));
DEF4("Window Quick Tile Top", kli18n("Quick Tile Window to the Top"),
Qt::META | Qt::Key_Up, std::bind(&Workspace::quickTileWindow, this, QuickTileFlag::Top));
DEF4("Window Quick Tile Bottom", kli18n("Quick Tile Window to the Bottom"),
Qt::META | Qt::Key_Down, std::bind(&Workspace::quickTileWindow, this, QuickTileFlag::Bottom));
DEF4("Window Quick Tile Top Left", kli18n("Quick Tile Window to the Top Left"),
0, std::bind(&Workspace::quickTileWindow, this, QuickTileFlag::Top | QuickTileFlag::Left));
DEF4("Window Quick Tile Bottom Left", kli18n("Quick Tile Window to the Bottom Left"),
0, std::bind(&Workspace::quickTileWindow, this, QuickTileFlag::Bottom | QuickTileFlag::Left));
DEF4("Window Quick Tile Top Right", kli18n("Quick Tile Window to the Top Right"),
0, std::bind(&Workspace::quickTileWindow, this, QuickTileFlag::Top | QuickTileFlag::Right));
DEF4("Window Quick Tile Bottom Right", kli18n("Quick Tile Window to the Bottom Right"),
0, std::bind(&Workspace::quickTileWindow, this, QuickTileFlag::Bottom | QuickTileFlag::Right));
DEF4("Switch Window Up", kli18n("Switch to Window Above"),
Qt::META | Qt::ALT | Qt::Key_Up, std::bind(static_cast<void (Workspace::*)(Direction)>(&Workspace::switchWindow), this, DirectionNorth));
DEF4("Switch Window Down", kli18n("Switch to Window Below"),
Qt::META | Qt::ALT | Qt::Key_Down, std::bind(static_cast<void (Workspace::*)(Direction)>(&Workspace::switchWindow), this, DirectionSouth));
DEF4("Switch Window Right", kli18n("Switch to Window to the Right"),
Qt::META | Qt::ALT | Qt::Key_Right, std::bind(static_cast<void (Workspace::*)(Direction)>(&Workspace::switchWindow), this, DirectionEast));
DEF4("Switch Window Left", kli18n("Switch to Window to the Left"),
Qt::META | Qt::ALT | Qt::Key_Left, std::bind(static_cast<void (Workspace::*)(Direction)>(&Workspace::switchWindow), this, DirectionWest));
DEF2("Increase Opacity", kli18n("Increase Opacity of Active Window by 5 %"),
0, slotIncreaseWindowOpacity);
DEF2("Decrease Opacity", kli18n("Decrease Opacity of Active Window by 5 %"),
0, slotLowerWindowOpacity);
DEF2("Window On All Desktops", kli18n("Keep Window on All Desktops"),
0, slotWindowOnAllDesktops);
VirtualDesktopManager *vds = VirtualDesktopManager::self();
for (uint i = 0; i < vds->maximum(); ++i) {
auto handler = [this, i]() {
const QVector<VirtualDesktop *> desktops = VirtualDesktopManager::self()->desktops();
if (i < uint(desktops.count())) {
slotWindowToDesktop(desktops[i]);
}
};
DEF5(kli18n("Window to Desktop %1"), 0, handler, i + 1);
}
DEF(kli18n("Window to Next Desktop"), 0, slotWindowToNextDesktop);
DEF(kli18n("Window to Previous Desktop"), 0, slotWindowToPreviousDesktop);
DEF(kli18n("Window One Desktop to the Right"), Qt::META | Qt::CTRL | Qt::SHIFT | Qt::Key_Right, slotWindowToDesktopRight);
DEF(kli18n("Window One Desktop to the Left"), Qt::META | Qt::CTRL | Qt::SHIFT | Qt::Key_Left, slotWindowToDesktopLeft);
DEF(kli18n("Window One Desktop Up"), Qt::META | Qt::CTRL | Qt::SHIFT | Qt::Key_Up, slotWindowToDesktopUp);
DEF(kli18n("Window One Desktop Down"), Qt::META | Qt::CTRL | Qt::SHIFT | Qt::Key_Down, slotWindowToDesktopDown);
for (int i = 0; i < 8; ++i) {
DEF3(kli18n("Window to Screen %1"), 0, slotWindowToScreen, i);
}
DEF(kli18n("Window to Next Screen"), Qt::META | Qt::SHIFT | Qt::Key_Right, slotWindowToNextScreen);
DEF(kli18n("Window to Previous Screen"), Qt::META | Qt::SHIFT | Qt::Key_Left, slotWindowToPrevScreen);
DEF(kli18n("Show Desktop"), Qt::META | Qt::Key_D, slotToggleShowDesktop);
for (int i = 0; i < 8; ++i) {
DEF3(kli18n("Switch to Screen %1"), 0, slotSwitchToScreen, i);
}
DEF(kli18n("Switch to Next Screen"), 0, slotSwitchToNextScreen);
DEF(kli18n("Switch to Previous Screen"), 0, slotSwitchToPrevScreen);
DEF(kli18n("Kill Window"), Qt::CTRL | Qt::ALT | Qt::Key_Escape, slotKillWindow);
DEF6(kli18n("Suspend Compositing"), Qt::SHIFT | Qt::ALT | Qt::Key_F12, Compositor::self(), Compositor::toggleCompositing);
DEF6(kli18n("Invert Screen Colors"), 0, kwinApp()->platform(), Platform::invertScreen);
#undef DEF
#undef DEF2
#undef DEF3
#undef DEF4
#undef DEF5
#undef DEF6
#if KWIN_BUILD_TABBOX
TabBox::TabBox::self()->initShortcuts();
#endif
vds->initShortcuts();
m_userActionsMenu->discard(); // so that it's recreated next time
2011-01-30 14:34:42 +00:00
}
void Workspace::setupWindowShortcut(AbstractClient *c)
2011-01-30 14:34:42 +00:00
{
Q_ASSERT(client_keys_dialog == nullptr);
// TODO: PORT ME (KGlobalAccel related)
// keys->setEnabled( false );
// disable_shortcuts_keys->setEnabled( false );
// client_keys->setEnabled( false );
client_keys_dialog = new ShortcutDialog(c->shortcut());
client_keys_client = c;
connect(client_keys_dialog, &ShortcutDialog::dialogDone, this, &Workspace::setupWindowShortcutDone);
2011-01-30 14:34:42 +00:00
QRect r = clientArea(ScreenArea, c);
QSize size = client_keys_dialog->sizeHint();
QPoint pos = c->pos() + c->clientPos();
if (pos.x() + size.width() >= r.right()) {
2011-01-30 14:34:42 +00:00
pos.setX(r.right() - size.width());
}
if (pos.y() + size.height() >= r.bottom()) {
2011-01-30 14:34:42 +00:00
pos.setY(r.bottom() - size.height());
}
2011-01-30 14:34:42 +00:00
client_keys_dialog->move(pos);
client_keys_dialog->show();
active_popup = client_keys_dialog;
active_popup_client = c;
2011-01-30 14:34:42 +00:00
}
2011-01-30 14:34:42 +00:00
void Workspace::setupWindowShortcutDone(bool ok)
{
// keys->setEnabled( true );
// disable_shortcuts_keys->setEnabled( true );
// client_keys->setEnabled( true );
if (ok) {
client_keys_client->setShortcut(client_keys_dialog->shortcut().toString());
}
closeActivePopup();
client_keys_dialog->deleteLater();
client_keys_dialog = nullptr;
client_keys_client = nullptr;
if (active_client) {
active_client->takeFocus();
}
2011-01-30 14:34:42 +00:00
}
void Workspace::clientShortcutUpdated(AbstractClient *c)
2011-01-30 14:34:42 +00:00
{
QString key = QStringLiteral("_k_session:%1").arg(c->window());
QAction *action = findChild<QAction *>(key);
2011-01-30 14:34:42 +00:00
if (!c->shortcut().isEmpty()) {
if (action == nullptr) { // new shortcut
action = new QAction(this);
kwinApp()->platform()->setupActionForGlobalAccel(action);
action->setProperty("componentName", QStringLiteral(KWIN_NAME));
action->setObjectName(key);
2011-01-30 14:34:42 +00:00
action->setText(i18n("Activate Window (%1)", c->caption()));
connect(action, &QAction::triggered, c, std::bind(&Workspace::activateClient, this, c, true));
2011-01-30 14:34:42 +00:00
}
// no autoloading, since it's configured explicitly here and is not meant to be reused
// (the key is the window id anyway, which is kind of random)
KGlobalAccel::self()->setShortcut(action, QList<QKeySequence>() << c->shortcut(),
KGlobalAccel::NoAutoloading);
action->setEnabled(true);
2011-01-30 14:34:42 +00:00
} else {
KGlobalAccel::self()->removeAllShortcuts(action);
2011-01-30 14:34:42 +00:00
delete action;
}
2011-01-30 14:34:42 +00:00
}
void Workspace::performWindowOperation(AbstractClient *c, Options::WindowOperation op)
2011-01-30 14:34:42 +00:00
{
if (!c) {
return;
}
if (op == Options::MoveOp || op == Options::UnrestrictedMoveOp) {
Cursors::self()->mouse()->setPos(c->frameGeometry().center());
}
if (op == Options::ResizeOp || op == Options::UnrestrictedResizeOp) {
Cursors::self()->mouse()->setPos(c->frameGeometry().bottomRight());
}
switch (op) {
2011-01-30 14:34:42 +00:00
case Options::MoveOp:
c->performMouseCommand(Options::MouseMove, Cursors::self()->mouse()->pos());
2011-01-30 14:34:42 +00:00
break;
case Options::UnrestrictedMoveOp:
c->performMouseCommand(Options::MouseUnrestrictedMove, Cursors::self()->mouse()->pos());
2011-01-30 14:34:42 +00:00
break;
case Options::ResizeOp:
c->performMouseCommand(Options::MouseResize, Cursors::self()->mouse()->pos());
2011-01-30 14:34:42 +00:00
break;
case Options::UnrestrictedResizeOp:
c->performMouseCommand(Options::MouseUnrestrictedResize, Cursors::self()->mouse()->pos());
2011-01-30 14:34:42 +00:00
break;
case Options::CloseOp:
QMetaObject::invokeMethod(c, &AbstractClient::closeWindow, Qt::QueuedConnection);
2011-01-30 14:34:42 +00:00
break;
case Options::MaximizeOp:
c->maximize(c->maximizeMode() == MaximizeFull
? MaximizeRestore
: MaximizeFull);
takeActivity(c, ActivityFocus | ActivityRaise);
2011-01-30 14:34:42 +00:00
break;
case Options::HMaximizeOp:
c->maximize(c->maximizeMode() ^ MaximizeHorizontal);
takeActivity(c, ActivityFocus | ActivityRaise);
2011-01-30 14:34:42 +00:00
break;
case Options::VMaximizeOp:
c->maximize(c->maximizeMode() ^ MaximizeVertical);
takeActivity(c, ActivityFocus | ActivityRaise);
2011-01-30 14:34:42 +00:00
break;
case Options::RestoreOp:
c->maximize(MaximizeRestore);
takeActivity(c, ActivityFocus | ActivityRaise);
2011-01-30 14:34:42 +00:00
break;
case Options::MinimizeOp:
c->minimize();
break;
case Options::ShadeOp:
c->performMouseCommand(Options::MouseShade, Cursors::self()->mouse()->pos());
2011-01-30 14:34:42 +00:00
break;
case Options::OnAllDesktopsOp:
c->setOnAllDesktops(!c->isOnAllDesktops());
break;
case Options::FullScreenOp:
c->setFullScreen(!c->isFullScreen(), true);
break;
case Options::NoBorderOp:
wayland: Allow setting "no border" flag even without xdg decoration Historically, noBorder() was used for two things: * as a substitute for AbstractClient::isDecorated() * to determine whether the AbstractClient should have a decoration With async decoration updates refactoring, a few things around noBorder() have changed, which exposed an existing bug in the handling of borderless maximized windows. It's possible to have a case where an initially maximized window makes an xdg_toplevel.set_maximized request before the initial commit, but creates the decoration object after the initial commit. Since XdgToplevelClient::userCanSetNoBorder() would return false when maximize() is called in XdgToplevelClient::initialize(), m_userNoBorder won't be updated and therefore the window can end up having a server side decoration. Previously, it wasn't the case because kwin would do nothing if the decoration is installed and its preferred mode changes after the initial commit but before the surface is mapped. With async decoration fixes, kwin would react as expected, which unfortunately has exposed the bug. The root cause of the problem is the fact that noBorder() is overloaded, which makes it error-prone. This patch changes how the noBorder property is treated. Now, it only indicates whether the compositor wants the window to have no borders. If noBorder() is true, it means that the compositor doesn't want the window to have a server-side decoration; on the other hand, if noBorder() is false, it doesn't imply that the window should have a decoration. BUG: 448740
2022-01-20 15:10:08 +00:00
if (c->userCanSetNoBorder()) {
c->setNoBorder(!c->noBorder());
}
2011-01-30 14:34:42 +00:00
break;
case Options::KeepAboveOp: {
StackingUpdatesBlocker blocker(this);
bool was = c->keepAbove();
c->setKeepAbove(!c->keepAbove());
if (was && !c->keepAbove()) {
2011-01-30 14:34:42 +00:00
raiseClient(c);
}
2011-01-30 14:34:42 +00:00
break;
}
case Options::KeepBelowOp: {
StackingUpdatesBlocker blocker(this);
bool was = c->keepBelow();
c->setKeepBelow(!c->keepBelow());
if (was && !c->keepBelow()) {
lowerClient(c);
}
2011-01-30 14:34:42 +00:00
break;
}
case Options::OperationsOp:
c->performMouseCommand(Options::MouseShade, Cursors::self()->mouse()->pos());
2011-01-30 14:34:42 +00:00
break;
case Options::WindowRulesOp:
RuleBook::self()->edit(c, false);
2011-01-30 14:34:42 +00:00
break;
case Options::ApplicationRulesOp:
RuleBook::self()->edit(c, true);
2011-01-30 14:34:42 +00:00
break;
case Options::SetupWindowShortcutOp:
setupWindowShortcut(c);
break;
case Options::LowerOp:
lowerClient(c);
break;
case Options::NoOp:
break;
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotActivateAttentionWindow()
2011-01-30 14:34:42 +00:00
{
if (attention_chain.count() > 0) {
2011-01-30 14:34:42 +00:00
activateClient(attention_chain.first());
}
2011-01-30 14:34:42 +00:00
}
static uint senderValue(QObject *sender)
2011-01-30 14:34:42 +00:00
{
QAction *act = qobject_cast<QAction *>(sender);
bool ok = false;
uint i = -1;
if (act) {
i = act->data().toUInt(&ok);
}
if (ok) {
return i;
}
return -1;
}
2012-02-21 17:42:09 +00:00
#define USABLE_ACTIVE_CLIENT (active_client && !(active_client->isDesktop() || active_client->isDock()))
void Workspace::slotWindowToDesktop(VirtualDesktop *desktop)
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
sendClientToDesktop(active_client, desktop->x11DesktopNumber(), true);
}
2011-01-30 14:34:42 +00:00
}
static bool screenSwitchImpossible()
{
if (!options->activeMouseScreen()) {
return false;
}
QStringList args;
args << QStringLiteral("--passivepopup") << i18n("The window manager is configured to consider the screen with the mouse on it as active one.\n"
"Therefore it is not possible to switch to a screen explicitly.")
<< QStringLiteral("20");
KProcess::startDetached(QStringLiteral("kdialog"), args);
return true;
}
2021-08-28 14:48:12 +00:00
AbstractOutput *Workspace::nextOutput(AbstractOutput *reference) const
{
const auto outputs = kwinApp()->platform()->enabledOutputs();
const int index = outputs.indexOf(reference);
Q_ASSERT(index != -1);
return outputs[(index + 1) % outputs.count()];
}
AbstractOutput *Workspace::previousOutput(AbstractOutput *reference) const
{
const auto outputs = kwinApp()->platform()->enabledOutputs();
const int index = outputs.indexOf(reference);
Q_ASSERT(index != -1);
return outputs[(index + outputs.count() - 1) % outputs.count()];
}
void Workspace::slotSwitchToScreen()
2011-01-30 14:34:42 +00:00
{
if (screenSwitchImpossible()) {
return;
}
2021-08-28 14:48:12 +00:00
AbstractOutput *output = kwinApp()->platform()->findOutput(senderValue(sender()));
if (output) {
switchToOutput(output);
2021-08-28 14:48:12 +00:00
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotSwitchToNextScreen()
2011-01-30 14:34:42 +00:00
{
if (screenSwitchImpossible()) {
return;
}
switchToOutput(nextOutput(activeOutput()));
2011-01-30 14:34:42 +00:00
}
void Workspace::slotSwitchToPrevScreen()
{
if (screenSwitchImpossible()) {
return;
}
switchToOutput(previousOutput(activeOutput()));
}
void Workspace::slotWindowToScreen()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
AbstractOutput *output = kwinApp()->platform()->findOutput(senderValue(sender()));
if (output) {
sendClientToOutput(active_client, output);
}
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowToNextScreen()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
sendClientToOutput(active_client, nextOutput(active_client->output()));
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowToPrevScreen()
{
if (USABLE_ACTIVE_CLIENT) {
sendClientToOutput(active_client, previousOutput(active_client->output()));
}
}
/**
* Maximizes the active client.
*/
void Workspace::slotWindowMaximize()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::MaximizeOp);
}
2011-01-30 14:34:42 +00:00
}
/**
* Maximizes the active client vertically.
*/
void Workspace::slotWindowMaximizeVertical()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::VMaximizeOp);
}
2011-01-30 14:34:42 +00:00
}
/**
* Maximizes the active client horiozontally.
*/
void Workspace::slotWindowMaximizeHorizontal()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::HMaximizeOp);
}
2011-01-30 14:34:42 +00:00
}
/**
* Minimizes the active client.
*/
void Workspace::slotWindowMinimize()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::MinimizeOp);
}
2011-01-30 14:34:42 +00:00
}
/**
* Shades/unshades the active client respectively.
*/
void Workspace::slotWindowShade()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::ShadeOp);
}
2011-01-30 14:34:42 +00:00
}
/**
* Raises the active client.
*/
void Workspace::slotWindowRaise()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
raiseClient(active_client);
}
2011-01-30 14:34:42 +00:00
}
/**
* Lowers the active client.
*/
void Workspace::slotWindowLower()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
lowerClient(active_client);
// As this most likely makes the window no longer visible change the
// keyboard focus to the next available window.
// activateNextClient( c ); // Doesn't work when we lower a child window
if (active_client->isActive() && options->focusPolicyIsReasonable()) {
2012-03-07 23:25:08 +00:00
if (options->isNextFocusPrefersMouse()) {
AbstractClient *next = clientUnderMouse(active_client->output());
if (next && next != active_client) {
requestFocus(next, false);
}
} else {
activateClient(topClientOnDesktop(VirtualDesktopManager::self()->currentDesktop()));
}
}
}
2011-01-30 14:34:42 +00:00
}
/**
* Does a toggle-raise-and-lower on the active client.
*/
void Workspace::slotWindowRaiseOrLower()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
raiseOrLowerClient(active_client);
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowOnAllDesktops()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
active_client->setOnAllDesktops(!active_client->isOnAllDesktops());
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowFullScreen()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::FullScreenOp);
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowNoBorder()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::NoBorderOp);
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowAbove()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::KeepAboveOp);
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowBelow()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::KeepBelowOp);
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotSetupWindowShortcut()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::SetupWindowShortcutOp);
}
2011-01-30 14:34:42 +00:00
}
/**
* Toggles show desktop.
*/
void Workspace::slotToggleShowDesktop()
2011-01-30 14:34:42 +00:00
{
setShowingDesktop(!showingDesktop());
}
template<typename Direction>
void windowToDesktop(AbstractClient *c)
{
VirtualDesktopManager *vds = VirtualDesktopManager::self();
Workspace *ws = Workspace::self();
Direction functor;
// TODO: why is options->isRollOverDesktops() not honored?
const auto desktop = functor(nullptr, true);
if (c && !c->isDesktop()
&& !c->isDock()) {
ws->setMoveResizeClient(c);
vds->setCurrent(desktop);
ws->setMoveResizeClient(nullptr);
}
}
/**
* Moves the active client to the next desktop.
*/
void Workspace::slotWindowToNextDesktop()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
windowToNextDesktop(active_client);
}
2011-01-30 14:34:42 +00:00
}
void Workspace::windowToNextDesktop(AbstractClient *c)
2011-01-30 14:34:42 +00:00
{
windowToDesktop<DesktopNext>(c);
2011-01-30 14:34:42 +00:00
}
/**
* Moves the active client to the previous desktop.
*/
void Workspace::slotWindowToPreviousDesktop()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
windowToPreviousDesktop(active_client);
}
2011-01-30 14:34:42 +00:00
}
void Workspace::windowToPreviousDesktop(AbstractClient *c)
2011-01-30 14:34:42 +00:00
{
windowToDesktop<DesktopPrevious>(c);
}
template<typename Direction>
void activeClientToDesktop()
{
VirtualDesktopManager *vds = VirtualDesktopManager::self();
Workspace *ws = Workspace::self();
VirtualDesktop *current = vds->currentDesktop();
Direction functor;
VirtualDesktop *newCurrent = functor(current, options->isRollOverDesktops());
if (newCurrent == current) {
return;
}
ws->setMoveResizeClient(ws->activeClient());
vds->setCurrent(newCurrent);
ws->setMoveResizeClient(nullptr);
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowToDesktopRight()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
activeClientToDesktop<DesktopRight>();
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowToDesktopLeft()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
activeClientToDesktop<DesktopLeft>();
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowToDesktopUp()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
activeClientToDesktop<DesktopAbove>();
}
2011-01-30 14:34:42 +00:00
}
void Workspace::slotWindowToDesktopDown()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
activeClientToDesktop<DesktopBelow>();
}
2011-01-30 14:34:42 +00:00
}
/**
* Kill Window feature, similar to xkill.
*/
void Workspace::slotKillWindow()
2011-01-30 14:34:42 +00:00
{
if (m_windowKiller.isNull()) {
m_windowKiller.reset(new KillWindow());
}
m_windowKiller->start();
2011-01-30 14:34:42 +00:00
}
/**
* Switches to the nearest window in given direction.
*/
2011-01-30 14:34:42 +00:00
void Workspace::switchWindow(Direction direction)
{
if (!active_client) {
return;
}
AbstractClient *c = active_client;
VirtualDesktop *desktop = VirtualDesktopManager::self()->currentDesktop();
// Centre of the active window
QPoint curPos(c->x() + c->width() / 2, c->y() + c->height() / 2);
if (!switchWindow(c, direction, curPos, desktop)) {
auto opposite = [&] {
switch (direction) {
case DirectionNorth:
return QPoint(curPos.x(), geometry().height());
case DirectionSouth:
return QPoint(curPos.x(), 0);
case DirectionEast:
return QPoint(0, curPos.y());
case DirectionWest:
return QPoint(geometry().width(), curPos.y());
default:
Q_UNREACHABLE();
}
};
switchWindow(c, direction, opposite(), desktop);
}
}
bool Workspace::switchWindow(AbstractClient *c, Direction direction, QPoint curPos, VirtualDesktop *desktop)
{
AbstractClient *switchTo = nullptr;
int bestScore = 0;
QList<Toplevel *> clist = stackingOrder();
for (auto i = clist.rbegin(); i != clist.rend(); ++i) {
auto t = *i;
auto client = static_cast<AbstractClient *>(t->isClient() ? t : nullptr);
if (!client) {
continue;
}
if (client->wantsTabFocus() && *i != c && client->isOnDesktop(desktop) && !client->isMinimized() && (*i)->isOnCurrentActivity()) {
// Centre of the other window
const QPoint other(client->x() + client->width() / 2, client->y() + client->height() / 2);
int distance;
int offset;
switch (direction) {
2011-01-30 14:34:42 +00:00
case DirectionNorth:
distance = curPos.y() - other.y();
offset = qAbs(other.x() - curPos.x());
break;
case DirectionEast:
distance = other.x() - curPos.x();
offset = qAbs(other.y() - curPos.y());
break;
case DirectionSouth:
distance = other.y() - curPos.y();
offset = qAbs(other.x() - curPos.x());
break;
case DirectionWest:
distance = curPos.x() - other.x();
offset = qAbs(other.y() - curPos.y());
break;
default:
distance = -1;
offset = -1;
}
2011-01-30 14:34:42 +00:00
if (distance > 0) {
// Inverse score
2011-01-30 14:34:42 +00:00
int score = distance + offset + ((offset * offset) / distance);
if (score < bestScore || !switchTo) {
switchTo = client;
bestScore = score;
}
}
}
}
if (switchTo) {
2011-01-30 14:34:42 +00:00
activateClient(switchTo);
}
return switchTo;
2011-01-30 14:34:42 +00:00
}
/**
* Shows the window operations popup menu for the active client.
*/
void Workspace::slotWindowOperations()
2011-01-30 14:34:42 +00:00
{
if (!active_client) {
return;
}
QPoint pos = active_client->pos() + active_client->clientPos();
showWindowMenu(QRect(pos, pos), active_client);
2011-01-30 14:34:42 +00:00
}
void Workspace::showWindowMenu(const QRect &pos, AbstractClient *cl)
2011-01-30 14:34:42 +00:00
{
m_userActionsMenu->show(pos, cl);
2011-01-30 14:34:42 +00:00
}
void Workspace::showApplicationMenu(const QRect &pos, AbstractClient *c, int actionId)
{
ApplicationMenu::self()->showApplicationMenu(c->pos() + pos.bottomLeft(), c, actionId);
}
/**
* Closes the active client.
*/
void Workspace::slotWindowClose()
2011-01-30 14:34:42 +00:00
{
// TODO: why?
// if ( tab_box->isVisible())
// return;
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::CloseOp);
}
2011-01-30 14:34:42 +00:00
}
/**
* Starts keyboard move mode for the active client.
*/
void Workspace::slotWindowMove()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::UnrestrictedMoveOp);
}
2011-01-30 14:34:42 +00:00
}
/**
* Starts keyboard resize mode for the active client.
*/
void Workspace::slotWindowResize()
2011-01-30 14:34:42 +00:00
{
if (USABLE_ACTIVE_CLIENT) {
performWindowOperation(active_client, Options::UnrestrictedResizeOp);
}
2011-01-30 14:34:42 +00:00
}
#undef USABLE_ACTIVE_CLIENT
void AbstractClient::setShortcut(const QString &_cut)
2011-01-30 14:34:42 +00:00
{
QString cut = rules()->checkShortcut(_cut);
auto updateShortcut = [this](const QKeySequence &cut = QKeySequence()) {
if (_shortcut == cut) {
return;
}
_shortcut = cut;
setShortcutInternal();
};
if (cut.isEmpty()) {
updateShortcut();
return;
}
if (cut == shortcut().toString()) {
return; // no change
}
// Format:
// base+(abcdef)<space>base+(abcdef)
// E.g. Alt+Ctrl+(ABCDEF);Meta+X,Meta+(ABCDEF)
if (!cut.contains(QLatin1Char('(')) && !cut.contains(QLatin1Char(')')) && !cut.contains(QLatin1String(" - "))) {
if (workspace()->shortcutAvailable(cut, this)) {
updateShortcut(QKeySequence(cut));
} else {
updateShortcut();
}
return;
2011-01-30 14:34:42 +00:00
}
const QRegularExpression reg(QStringLiteral("(.*\\+)\\((.*)\\)"));
QList<QKeySequence> keys;
QStringList groups = cut.split(QStringLiteral(" - "));
2011-01-30 14:34:42 +00:00
for (QStringList::ConstIterator it = groups.constBegin();
it != groups.constEnd();
++it) {
const QRegularExpressionMatch match = reg.match(*it);
if (match.hasMatch()) {
const QString base = match.captured(1);
const QString list = match.captured(2);
2011-01-30 14:34:42 +00:00
for (int i = 0;
i < list.length();
++i) {
QKeySequence c(base + list[i]);
if (!c.isEmpty()) {
2011-01-30 14:34:42 +00:00
keys.append(c);
}
}
} else {
// regexp doesn't match, so it should be a normal shortcut
QKeySequence c(*it);
if (!c.isEmpty()) {
keys.append(c);
}
}
2011-01-30 14:34:42 +00:00
}
for (auto it = keys.constBegin();
it != keys.constEnd();
++it) {
if (_shortcut == *it) { // current one is in the list
return;
}
2011-01-30 14:34:42 +00:00
}
for (auto it = keys.constBegin();
it != keys.constEnd();
++it) {
2011-01-30 14:34:42 +00:00
if (workspace()->shortcutAvailable(*it, this)) {
updateShortcut(*it);
return;
}
}
updateShortcut();
2011-01-30 14:34:42 +00:00
}
void AbstractClient::setShortcutInternal()
{
updateCaption();
workspace()->clientShortcutUpdated(this);
}
void X11Client::setShortcutInternal()
2011-01-30 14:34:42 +00:00
{
updateCaption();
#if 0
2011-01-30 14:34:42 +00:00
workspace()->clientShortcutUpdated(this);
#else
// Workaround for kwin<->kglobalaccel deadlock, when KWin has X grab and the kded
// kglobalaccel module tries to create the key grab. KWin should preferably grab
// they keys itself anyway :(.
QTimer::singleShot(0, this, std::bind(&Workspace::clientShortcutUpdated, workspace(), this));
#endif
2011-01-30 14:34:42 +00:00
}
bool Workspace::shortcutAvailable(const QKeySequence &cut, AbstractClient *ignore) const
2011-01-30 14:34:42 +00:00
{
if (ignore && cut == ignore->shortcut()) {
return true;
}
// Check if the shortcut is already registered
const QList<KGlobalShortcutInfo> registeredShortcuts = KGlobalAccel::globalShortcutsByKey(cut);
2022-01-04 13:00:41 +00:00
for (const auto &shortcut : registeredShortcuts) {
// Only return "not available" if is not a client activation shortcut, as it may be no longer valid
if (!shortcut.uniqueName().startsWith(QStringLiteral("_k_session:"))) {
return false;
}
}
// Check now conflicts with activation shortcuts for current clients
for (const auto client : qAsConst(m_allClients)) {
if (client != ignore && client->shortcut() == cut) {
return false;
}
}
2011-01-30 14:34:42 +00:00
return true;
}
} // namespace