summaryrefslogtreecommitdiffhomepage
path: root/opentrack/shortcuts.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-10-21 10:10:56 +0200
committerStanislaw Halik <sthalik@misaki.pl>2014-10-21 10:29:17 +0200
commitf6d8fbbf3f4bc6984020de776285a38ad45c3631 (patch)
tree8d9b297e09de1053878a01ee1bf198803daa7967 /opentrack/shortcuts.h
parenta1ce590fb13ce34a3051f619f0d9cdbc1d2dffa5 (diff)
workaround qxt-mini "shortcut failed to unregister"
Diffstat (limited to 'opentrack/shortcuts.h')
-rw-r--r--opentrack/shortcuts.h38
1 files changed, 27 insertions, 11 deletions
diff --git a/opentrack/shortcuts.h b/opentrack/shortcuts.h
index 54305a52..8fe1a39b 100644
--- a/opentrack/shortcuts.h
+++ b/opentrack/shortcuts.h
@@ -19,6 +19,7 @@ extern QList<QString> global_key_sequences;
struct key_opts {
value<int> key_index;
value<bool> ctrl, alt, shift;
+
key_opts(pbundle b, const QString& name) :
key_index(b, QString("key-index-%1").arg(name), 0),
ctrl(b, QString("key-ctrl-%1").arg(name), 0),
@@ -78,7 +79,7 @@ signals:
struct Shortcuts {
using K =
#ifndef _WIN32
- QxtGlobalShortcut
+ ptr<QxtGlobalShortcut>
#else
Key
#endif
@@ -86,6 +87,8 @@ struct Shortcuts {
K keyCenter;
K keyToggle;
+
+ WId handle;
#ifdef _WIN32
ptr<KeybindingWorker> keybindingWorker;
#endif
@@ -99,23 +102,36 @@ struct Shortcuts {
toggle(b, "toggle")
{}
} s;
-
-#ifdef _WIN32
- Shortcuts(WId handle)
-#else
- Shortcuts(WId)
-#endif
+
+ Shortcuts(WId handle) : handle(handle)
{
+ reload();
+ }
+
+ void reload()
+ {
+#ifndef _WIN32
+ if (keyCenter)
+ {
+ keyCenter->setShortcut(QKeySequence::UnknownKey);
+ keyCenter->setEnabled(false);
+ }
+ if (keyToggle)
+ {
+ keyToggle->setShortcut(QKeySequence::UnknownKey);
+ keyToggle->setEnabled(false);
+ }
+#endif
bind_keyboard_shortcut(keyCenter, s.center);
bind_keyboard_shortcut(keyToggle, s.toggle);
#ifdef _WIN32
keybindingWorker = nullptr;
keybindingWorker = std::make_shared<KeybindingWorker>(keyCenter, keyToggle, handle);
keybindingWorker->start();
-#endif
+#endif
}
private:
- void bind_keyboard_shortcut(K& key, key_opts& k);
+ void bind_keyboard_shortcut(K &key, key_opts& k);
};
class KeyboardShortcutDialog: public QWidget
@@ -124,7 +140,7 @@ class KeyboardShortcutDialog: public QWidget
public:
KeyboardShortcutDialog();
private:
- Ui::UICKeyboardShortcutDialog ui;
+ Ui::UICKeyboardShortcutDialog ui;
Shortcuts::settings s;
ptr<Shortcuts> sc;
signals:
@@ -132,4 +148,4 @@ signals:
private slots:
void doOK();
void doCancel();
-}; \ No newline at end of file
+};