blob: 3433a4d172d4049c4d96f0e2bc6a39e93caaa5df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// 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>
QT_BEGIN_NAMESPACE
class QKeyEvent;
class QObject;
QT_END_NAMESPACE
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);
bool 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
|