summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qkeysequence_p.h
diff options
context:
space:
mode:
authorDavid Edmundson <davidedmundson@kde.org>2013-08-08 17:33:35 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-20 22:22:21 +0200
commit725bdc3fd2f88c7f49f59a151579fd128cf543dc (patch)
treec9b472af22114805a5e6a132989e0d98920e4bea /src/gui/kernel/qkeysequence_p.h
parente2322c885f6dd67834c5110c6b7e2b63ea8b6186 (diff)
Fetch StandardKey shortcuts from QPlatformTheme
This allows platforms to dynamically alter their keyboard shortcuts, for example if they are user-configurable on that platform. Current behavior remains the same. QEvent previously used the hardcoded values in QKeySequencePrivate so this was modified to use QKeySequence::keyBindings(). In order to keep the speed of QEvent's former binary search, we moved this code to QPlatformTheme::keyBindings(), making it faster for all keyBinding lookups. As we now need to search by StandardKey instead of by shortcut the list is reordered and a test is changed to reflect that. Change-Id: Iefb402fbbe8768be2208ce036f3c2deed72dcc6c Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
Diffstat (limited to 'src/gui/kernel/qkeysequence_p.h')
-rw-r--r--src/gui/kernel/qkeysequence_p.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gui/kernel/qkeysequence_p.h b/src/gui/kernel/qkeysequence_p.h
index e28a7e526c..eac0d4b0a6 100644
--- a/src/gui/kernel/qkeysequence_p.h
+++ b/src/gui/kernel/qkeysequence_p.h
@@ -84,11 +84,6 @@ public:
int key[4];
static QString encodeString(int key, QKeySequence::SequenceFormat format);
static int decodeString(const QString &keyStr, QKeySequence::SequenceFormat format);
-
- static const QKeyBinding keyBindings[];
- static const uint numberOfKeyBindings;
-
- static unsigned currentKeyPlatforms();
};
#endif // QT_NO_SHORTCUT