2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2013-07-10 09:41:16 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2013 Martin Gräßlin <mgraesslin@kde.org>
|
2013-07-10 09:41:16 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2013-07-10 09:41:16 +00:00
|
|
|
// own
|
|
|
|
#include "globalshortcuts.h"
|
|
|
|
// kwin
|
2021-03-30 13:32:32 +00:00
|
|
|
#include "gestures.h"
|
2021-03-29 23:51:15 +00:00
|
|
|
#include "kwinglobals.h"
|
2015-06-26 08:51:11 +00:00
|
|
|
#include "main.h"
|
|
|
|
#include "utils.h"
|
2021-03-30 13:32:32 +00:00
|
|
|
#include <config-kwin.h>
|
2013-07-10 09:41:16 +00:00
|
|
|
// KDE
|
2015-06-26 11:47:08 +00:00
|
|
|
#include <KGlobalAccel/private/kglobalaccel_interface.h>
|
2021-03-30 13:32:32 +00:00
|
|
|
#include <KGlobalAccel/private/kglobalacceld.h>
|
2013-07-10 09:41:16 +00:00
|
|
|
// Qt
|
|
|
|
#include <QAction>
|
2021-03-29 23:51:15 +00:00
|
|
|
#include <variant>
|
2013-07-10 09:41:16 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
2021-03-30 13:32:32 +00:00
|
|
|
GlobalShortcut::GlobalShortcut(Shortcut &&sc, QAction *action)
|
|
|
|
: m_shortcut(sc)
|
|
|
|
, m_action(action)
|
2021-03-29 23:51:15 +00:00
|
|
|
{
|
2021-03-30 13:32:32 +00:00
|
|
|
static const QMap<SwipeDirection, SwipeGesture::Direction> dirs = {
|
2021-03-29 23:51:15 +00:00
|
|
|
{SwipeDirection::Up, SwipeGesture::Direction::Up},
|
|
|
|
{SwipeDirection::Down, SwipeGesture::Direction::Down},
|
|
|
|
{SwipeDirection::Left, SwipeGesture::Direction::Left},
|
|
|
|
{SwipeDirection::Right, SwipeGesture::Direction::Right},
|
|
|
|
};
|
|
|
|
if (auto swipeGesture = std::get_if<FourFingerSwipeShortcut>(&sc)) {
|
|
|
|
m_gesture.reset(new SwipeGesture);
|
|
|
|
m_gesture->setDirection(dirs[swipeGesture->swipeDirection]);
|
|
|
|
m_gesture->setMaximumFingerCount(4);
|
|
|
|
m_gesture->setMinimumFingerCount(4);
|
|
|
|
QObject::connect(m_gesture.get(), &SwipeGesture::triggered, m_action, &QAction::trigger, Qt::QueuedConnection);
|
|
|
|
}
|
2017-03-18 10:00:30 +00:00
|
|
|
}
|
|
|
|
|
2013-07-10 09:41:16 +00:00
|
|
|
GlobalShortcut::~GlobalShortcut()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-03-30 13:32:32 +00:00
|
|
|
QAction *GlobalShortcut::action() const
|
2013-07-10 09:41:16 +00:00
|
|
|
{
|
2021-03-29 23:51:15 +00:00
|
|
|
return m_action;
|
2013-07-10 09:41:16 +00:00
|
|
|
}
|
|
|
|
|
2021-03-29 23:51:15 +00:00
|
|
|
void GlobalShortcut::invoke() const
|
2013-07-14 20:52:58 +00:00
|
|
|
{
|
2021-03-29 23:51:15 +00:00
|
|
|
QMetaObject::invokeMethod(m_action, "trigger", Qt::QueuedConnection);
|
2013-07-14 20:52:58 +00:00
|
|
|
}
|
|
|
|
|
2021-03-30 13:32:32 +00:00
|
|
|
const Shortcut &GlobalShortcut::shortcut() const
|
2013-07-10 09:41:16 +00:00
|
|
|
{
|
2021-03-29 23:51:15 +00:00
|
|
|
return m_shortcut;
|
2013-07-10 09:41:16 +00:00
|
|
|
}
|
|
|
|
|
2021-03-30 13:32:32 +00:00
|
|
|
SwipeGesture *GlobalShortcut::swipeGesture() const
|
2013-07-10 09:41:16 +00:00
|
|
|
{
|
2021-03-29 23:51:15 +00:00
|
|
|
return m_gesture.get();
|
2013-07-10 09:41:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GlobalShortcutsManager::GlobalShortcutsManager(QObject *parent)
|
|
|
|
: QObject(parent)
|
2017-03-18 10:00:30 +00:00
|
|
|
, m_gestureRecognizer(new GestureRecognizer(this))
|
2013-07-10 09:41:16 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-14 20:52:58 +00:00
|
|
|
GlobalShortcutsManager::~GlobalShortcutsManager()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:47:08 +00:00
|
|
|
void GlobalShortcutsManager::init()
|
|
|
|
{
|
|
|
|
if (kwinApp()->shouldUseWaylandForCompositing()) {
|
2015-07-06 02:50:20 +00:00
|
|
|
qputenv("KGLOBALACCELD_PLATFORM", QByteArrayLiteral("org.kde.kwin"));
|
2015-06-26 11:47:08 +00:00
|
|
|
m_kglobalAccel = new KGlobalAccelD(this);
|
|
|
|
if (!m_kglobalAccel->init()) {
|
|
|
|
qCDebug(KWIN_CORE) << "Init of kglobalaccel failed";
|
|
|
|
delete m_kglobalAccel;
|
|
|
|
m_kglobalAccel = nullptr;
|
|
|
|
} else {
|
|
|
|
qCDebug(KWIN_CORE) << "KGlobalAcceld inited";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-29 23:51:15 +00:00
|
|
|
void GlobalShortcutsManager::objectDeleted(QObject *object)
|
2013-07-10 09:41:16 +00:00
|
|
|
{
|
2021-03-29 23:51:15 +00:00
|
|
|
auto it = m_shortcuts.begin();
|
|
|
|
while (it != m_shortcuts.end()) {
|
|
|
|
if (it->action() == object) {
|
|
|
|
it = m_shortcuts.erase(it);
|
|
|
|
} else {
|
|
|
|
++it;
|
2013-07-10 09:41:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-29 23:51:15 +00:00
|
|
|
bool GlobalShortcutsManager::addIfNotExists(GlobalShortcut sc)
|
2013-07-14 20:52:58 +00:00
|
|
|
{
|
2021-03-30 13:32:32 +00:00
|
|
|
for (const auto &cs : m_shortcuts) {
|
2021-03-29 23:51:15 +00:00
|
|
|
if (sc.shortcut() == cs.shortcut()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2013-07-14 20:52:58 +00:00
|
|
|
|
2021-03-29 23:51:15 +00:00
|
|
|
if (std::holds_alternative<FourFingerSwipeShortcut>(sc.shortcut())) {
|
|
|
|
m_gestureRecognizer->registerGesture(sc.swipeGesture());
|
2013-07-16 16:50:10 +00:00
|
|
|
}
|
2021-03-29 23:51:15 +00:00
|
|
|
connect(sc.action(), &QAction::destroyed, this, &GlobalShortcutsManager::objectDeleted);
|
|
|
|
m_shortcuts.push_back(std::move(sc));
|
|
|
|
return true;
|
2013-07-16 16:50:10 +00:00
|
|
|
}
|
|
|
|
|
2013-07-14 20:52:58 +00:00
|
|
|
void GlobalShortcutsManager::registerPointerShortcut(QAction *action, Qt::KeyboardModifiers modifiers, Qt::MouseButtons pointerButtons)
|
|
|
|
{
|
2021-03-30 13:32:32 +00:00
|
|
|
addIfNotExists(GlobalShortcut(PointerButtonShortcut{modifiers, pointerButtons}, action));
|
2013-07-14 20:52:58 +00:00
|
|
|
}
|
|
|
|
|
2013-07-15 09:26:56 +00:00
|
|
|
void GlobalShortcutsManager::registerAxisShortcut(QAction *action, Qt::KeyboardModifiers modifiers, PointerAxisDirection axis)
|
|
|
|
{
|
2021-03-30 13:32:32 +00:00
|
|
|
addIfNotExists(GlobalShortcut(PointerAxisShortcut{modifiers, axis}, action));
|
2013-07-15 09:26:56 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 10:00:30 +00:00
|
|
|
void GlobalShortcutsManager::registerTouchpadSwipe(QAction *action, SwipeDirection direction)
|
|
|
|
{
|
2021-03-30 13:32:32 +00:00
|
|
|
addIfNotExists(GlobalShortcut(FourFingerSwipeShortcut{direction}, action));
|
2013-07-10 09:41:16 +00:00
|
|
|
}
|
|
|
|
|
2017-07-28 19:31:09 +00:00
|
|
|
bool GlobalShortcutsManager::processKey(Qt::KeyboardModifiers mods, int keyQt)
|
2013-07-14 20:52:58 +00:00
|
|
|
{
|
2015-06-26 11:47:08 +00:00
|
|
|
if (m_kglobalAccelInterface) {
|
2018-04-21 16:35:22 +00:00
|
|
|
if (!keyQt && !mods) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-03-30 13:32:32 +00:00
|
|
|
auto check = [this](Qt::KeyboardModifiers mods, int keyQt) {
|
2016-09-15 07:02:38 +00:00
|
|
|
bool retVal = false;
|
|
|
|
QMetaObject::invokeMethod(m_kglobalAccelInterface,
|
2021-03-30 13:32:32 +00:00
|
|
|
"checkKeyPressed",
|
|
|
|
Qt::DirectConnection,
|
|
|
|
Q_RETURN_ARG(bool, retVal),
|
|
|
|
Q_ARG(int, int(mods) | keyQt));
|
2016-09-15 07:02:38 +00:00
|
|
|
return retVal;
|
|
|
|
};
|
|
|
|
if (check(mods, keyQt)) {
|
|
|
|
return true;
|
|
|
|
} else if (keyQt == Qt::Key_Backtab) {
|
|
|
|
// KGlobalAccel on X11 has some workaround for Backtab
|
|
|
|
// see kglobalaccel/src/runtime/plugins/xcb/kglobalccel_x11.cpp method x11KeyPress
|
|
|
|
// Apparently KKeySequenceWidget captures Shift+Tab instead of Backtab
|
|
|
|
// thus if the key is backtab we should adjust to add shift again and use tab
|
|
|
|
// in addition KWin registers the shortcut incorrectly as Alt+Shift+Backtab
|
|
|
|
// this should be changed to either Alt+Backtab or Alt+Shift+Tab to match KKeySequenceWidget
|
|
|
|
// trying the variants
|
|
|
|
if (check(mods | Qt::ShiftModifier, keyQt)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (check(mods | Qt::ShiftModifier, Qt::Key_Tab)) {
|
2015-06-26 11:47:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2013-07-14 20:52:58 +00:00
|
|
|
}
|
|
|
|
|
2021-03-29 23:51:15 +00:00
|
|
|
template<typename ShortcutKind, typename... Args>
|
|
|
|
bool match(QVector<GlobalShortcut> &shortcuts, Args... args)
|
|
|
|
{
|
2021-03-30 13:32:32 +00:00
|
|
|
for (auto &sc : shortcuts) {
|
2021-03-29 23:51:15 +00:00
|
|
|
if (std::holds_alternative<ShortcutKind>(sc.shortcut())) {
|
|
|
|
if (std::get<ShortcutKind>(sc.shortcut()) == ShortcutKind{args...}) {
|
|
|
|
sc.invoke();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-30 13:32:32 +00:00
|
|
|
// TODO(C++20): use ranges for a nicer way of filtering by shortcut type
|
2013-07-14 20:52:58 +00:00
|
|
|
bool GlobalShortcutsManager::processPointerPressed(Qt::KeyboardModifiers mods, Qt::MouseButtons pointerButtons)
|
|
|
|
{
|
2021-03-29 23:51:15 +00:00
|
|
|
return match<PointerButtonShortcut>(m_shortcuts, mods, pointerButtons);
|
2013-07-14 20:52:58 +00:00
|
|
|
}
|
|
|
|
|
2013-07-15 09:26:56 +00:00
|
|
|
bool GlobalShortcutsManager::processAxis(Qt::KeyboardModifiers mods, PointerAxisDirection axis)
|
|
|
|
{
|
2021-03-29 23:51:15 +00:00
|
|
|
return match<PointerAxisShortcut>(m_shortcuts, mods, axis);
|
2013-07-15 09:26:56 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 10:00:30 +00:00
|
|
|
void GlobalShortcutsManager::processSwipeStart(uint fingerCount)
|
|
|
|
{
|
|
|
|
m_gestureRecognizer->startSwipeGesture(fingerCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalShortcutsManager::processSwipeUpdate(const QSizeF &delta)
|
|
|
|
{
|
|
|
|
m_gestureRecognizer->updateSwipeGesture(delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalShortcutsManager::processSwipeCancel()
|
|
|
|
{
|
|
|
|
m_gestureRecognizer->cancelSwipeGesture();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalShortcutsManager::processSwipeEnd()
|
|
|
|
{
|
|
|
|
m_gestureRecognizer->endSwipeGesture();
|
|
|
|
// TODO: cancel on Wayland Seat if one triggered
|
|
|
|
}
|
|
|
|
|
2013-07-10 09:41:16 +00:00
|
|
|
} // namespace
|