2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2017-02-03 16:26:51 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016, 2017 Martin Gräßlin <mgraesslin@kde.org>
|
2017-02-03 16:26:51 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2017-02-03 16:26:51 +00:00
|
|
|
#ifndef KWIN_MODIFIER_ONLY_SHORTCUTS_H
|
|
|
|
#define KWIN_MODIFIER_ONLY_SHORTCUTS_H
|
|
|
|
|
|
|
|
#include "input_event_spy.h"
|
|
|
|
#include <kwin_export.h>
|
|
|
|
|
|
|
|
#include <QObject>
|
2017-02-15 06:00:53 +00:00
|
|
|
#include <QSet>
|
2017-02-03 16:26:51 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class KWIN_EXPORT ModifierOnlyShortcuts : public QObject, public InputEventSpy
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit ModifierOnlyShortcuts();
|
|
|
|
~ModifierOnlyShortcuts() override;
|
|
|
|
|
|
|
|
void keyEvent(KeyEvent *event) override;
|
|
|
|
void pointerEvent(MouseEvent *event) override;
|
|
|
|
void wheelEvent(WheelEvent *event) override;
|
|
|
|
|
|
|
|
void reset() {
|
|
|
|
m_modifier = Qt::NoModifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Qt::KeyboardModifier m_modifier = Qt::NoModifier;
|
|
|
|
Qt::KeyboardModifiers m_cachedMods;
|
|
|
|
uint m_buttonPressCount = 0;
|
2017-02-15 06:00:53 +00:00
|
|
|
QSet<quint32> m_pressedKeys;
|
2017-02-03 16:26:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|