aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/terminal/shortcutmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/terminal/shortcutmap.h')
-rw-r--r--src/plugins/terminal/shortcutmap.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/plugins/terminal/shortcutmap.h b/src/plugins/terminal/shortcutmap.h
new file mode 100644
index 0000000000..e3de7e01bd
--- /dev/null
+++ b/src/plugins/terminal/shortcutmap.h
@@ -0,0 +1,52 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+// COPIED FROM shortcutmap_p.h
+#pragma once
+
+#include <QKeySequence>
+#include <QObject>
+
+class QKeyEvent;
+class QObject;
+
+namespace Terminal::Internal {
+
+struct ShortcutEntry;
+class ShortcutMapPrivate;
+
+class ShortcutMap
+{
+ Q_DECLARE_PRIVATE(ShortcutMap)
+public:
+ ShortcutMap();
+ ~ShortcutMap();
+
+ typedef bool (*ContextMatcher)(QObject *object, Qt::ShortcutContext context);
+
+ int addShortcut(QObject *owner,
+ const QKeySequence &key,
+ Qt::ShortcutContext context,
+ ContextMatcher matcher);
+ int removeShortcut(int id, QObject *owner, const QKeySequence &key = QKeySequence());
+
+ QKeySequence::SequenceMatch state();
+
+ bool tryShortcut(QKeyEvent *e);
+ bool hasShortcutForKeySequence(const QKeySequence &seq) const;
+
+private:
+ void resetState();
+ QKeySequence::SequenceMatch nextState(QKeyEvent *e);
+ void dispatchEvent(QKeyEvent *e);
+
+ QKeySequence::SequenceMatch find(QKeyEvent *e, int ignoredModifiers = 0);
+ QKeySequence::SequenceMatch matches(const QKeySequence &seq1, const QKeySequence &seq2) const;
+ QList<const ShortcutEntry *> matches() const;
+ void createNewSequences(QKeyEvent *e, QList<QKeySequence> &ksl, int ignoredModifiers);
+ void clearSequence(QList<QKeySequence> &ksl);
+
+ QScopedPointer<ShortcutMapPrivate> d_ptr;
+};
+
+} // namespace Terminal::Internal