aboutsummaryrefslogtreecommitdiff
path: root/lumina-config/mainUI.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-12-03 11:29:04 -0500
committerKen Moore <moorekou@gmail.com>2015-12-03 11:29:04 -0500
commit2ff60bb1b3f2de6e5a0da09cbe53fc72205fb640 (patch)
tree06ee5ff9ffecac1b0e2426308d8802fe4800b4bd /lumina-config/mainUI.h
parentOops, forgot to append the ".note" suffix before running the new name through... (diff)
downloadlumina-2ff60bb1b3f2de6e5a0da09cbe53fc72205fb640.tar.gz
lumina-2ff60bb1b3f2de6e5a0da09cbe53fc72205fb640.tar.bz2
lumina-2ff60bb1b3f2de6e5a0da09cbe53fc72205fb640.zip
Replace the "KeyCatch" dialog with a QKeySequenceEdit (added in Qt 5.2). The keycatch dialog is still there in source (just commented out) until we can verify that the Qt widget picks up all the special keys properly.
Diffstat (limited to 'lumina-config/mainUI.h')
-rw-r--r--lumina-config/mainUI.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/lumina-config/mainUI.h b/lumina-config/mainUI.h
index 1810c7b6..2dbcc2ab 100644
--- a/lumina-config/mainUI.h
+++ b/lumina-config/mainUI.h
@@ -31,7 +31,7 @@
// local includes
#include "LPlugins.h"
-#include "KeyCatch.h"
+//#include "KeyCatch.h"
#include "AppDialog.h"
#include "ColorDialog.h"
#include "ThemeDialog.h"
@@ -128,7 +128,9 @@ private slots:
void loadKeyboardShortcuts();
void saveKeyboardShortcuts();
void clearKeyBinding();
- void getKeyPress();
+ void applyKeyBinding();
+ void updateKeyConfig();
+ //void getKeyPress();
//Defaults Page
void changeDefaultBrowser();
bgstack15