You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
5.8 KiB
120 lines
5.8 KiB
Description: Avoid polluting the the x11 shortcut map
|
|
When user presses a key, but this key was not previously registered as a
|
|
shortcut, the shortcut map is polluted with "" entry.
|
|
.
|
|
This could cause an error when the shortcut is not set after clicking OK in the
|
|
keybinding editing dialog and you are told that shortcut "" is being used
|
|
instead (in the logs).
|
|
Author: Roman Kapl <code@rkapl.cz>
|
|
Origin: backport
|
|
Bug: https://github.com/lxde/lxqt-globalkeys/pull/50
|
|
Applied-Upstream: commit:c79d560
|
|
Last-Update: 2018-02-05
|
|
--- a/daemon/core.cpp
|
|
+++ b/daemon/core.cpp
|
|
@@ -1316,59 +1316,64 @@ void Core::run()
|
|
}
|
|
else
|
|
{
|
|
- QString shortcut = mShortcutByX11[qMakePair(static_cast<KeyCode>(event.xkey.keycode), event.xkey.state & allShifts)];
|
|
- log(LOG_DEBUG, "KeyPress %08x %08x %s", event.xkey.state & allShifts, event.xkey.keycode, qPrintable(shortcut));
|
|
-
|
|
- IdsByShortcut::iterator idsByShortcut = mIdsByShortcut.find(shortcut);
|
|
- if (idsByShortcut != mIdsByShortcut.end())
|
|
+ X11Shortcut shortcutKey = qMakePair(static_cast<KeyCode>(event.xkey.keycode), event.xkey.state & allShifts);
|
|
+ ShortcutByX11::const_iterator shortcutIt = mShortcutByX11.constFind(shortcutKey);
|
|
+ if(shortcutIt != mShortcutByX11.constEnd())
|
|
{
|
|
- Ids &ids = idsByShortcut.value();
|
|
- switch (mMultipleActionsBehaviour)
|
|
- {
|
|
- case MULTIPLE_ACTIONS_BEHAVIOUR_FIRST:
|
|
- {
|
|
- Ids::iterator lastIds = ids.end();
|
|
- for (Ids::iterator idi = ids.begin(); idi != lastIds; ++idi)
|
|
- if (mShortcutAndActionById[*idi].second->call())
|
|
- {
|
|
- break;
|
|
- }
|
|
- }
|
|
- break;
|
|
+ const QString& shortcut = shortcutIt.value();
|
|
+ log(LOG_DEBUG, "KeyPress %08x %08x %s", event.xkey.state & allShifts, event.xkey.keycode, qPrintable(shortcut));
|
|
|
|
- case MULTIPLE_ACTIONS_BEHAVIOUR_LAST:
|
|
+ IdsByShortcut::iterator idsByShortcut = mIdsByShortcut.find(shortcut);
|
|
+ if (idsByShortcut != mIdsByShortcut.end())
|
|
{
|
|
- Ids::iterator firstIds = ids.begin();
|
|
- for (Ids::iterator idi = ids.end(); idi != firstIds;)
|
|
+ Ids &ids = idsByShortcut.value();
|
|
+ switch (mMultipleActionsBehaviour)
|
|
{
|
|
- --idi;
|
|
- if (mShortcutAndActionById[*idi].second->call())
|
|
- {
|
|
- break;
|
|
- }
|
|
+ case MULTIPLE_ACTIONS_BEHAVIOUR_FIRST:
|
|
+ {
|
|
+ Ids::iterator lastIds = ids.end();
|
|
+ for (Ids::iterator idi = ids.begin(); idi != lastIds; ++idi)
|
|
+ if (mShortcutAndActionById[*idi].second->call())
|
|
+ {
|
|
+ break;
|
|
+ }
|
|
}
|
|
- }
|
|
- break;
|
|
+ break;
|
|
|
|
- case MULTIPLE_ACTIONS_BEHAVIOUR_NONE:
|
|
- if (ids.size() == 1)
|
|
+ case MULTIPLE_ACTIONS_BEHAVIOUR_LAST:
|
|
{
|
|
- mShortcutAndActionById[*(ids.begin())].second->call();
|
|
+ Ids::iterator firstIds = ids.begin();
|
|
+ for (Ids::iterator idi = ids.end(); idi != firstIds;)
|
|
+ {
|
|
+ --idi;
|
|
+ if (mShortcutAndActionById[*idi].second->call())
|
|
+ {
|
|
+ break;
|
|
+ }
|
|
+ }
|
|
}
|
|
break;
|
|
|
|
- case MULTIPLE_ACTIONS_BEHAVIOUR_ALL:
|
|
- {
|
|
- Ids::iterator lastIds = ids.end();
|
|
- for (Ids::iterator idi = ids.begin(); idi != lastIds; ++idi)
|
|
+ case MULTIPLE_ACTIONS_BEHAVIOUR_NONE:
|
|
+ if (ids.size() == 1)
|
|
+ {
|
|
+ mShortcutAndActionById[*(ids.begin())].second->call();
|
|
+ }
|
|
+ break;
|
|
+
|
|
+ case MULTIPLE_ACTIONS_BEHAVIOUR_ALL:
|
|
{
|
|
- mShortcutAndActionById[*idi].second->call();
|
|
+ Ids::iterator lastIds = ids.end();
|
|
+ for (Ids::iterator idi = ids.begin(); idi != lastIds; ++idi)
|
|
+ {
|
|
+ mShortcutAndActionById[*idi].second->call();
|
|
+ }
|
|
}
|
|
- }
|
|
- break;
|
|
+ break;
|
|
|
|
- default:
|
|
- ;
|
|
+ default:
|
|
+ ;
|
|
+ }
|
|
}
|
|
}
|
|
}
|