|
@@ -12,6 +12,9 @@
|
|
#include <QKeyEvent>
|
|
#include <QKeyEvent>
|
|
#include <QObject>
|
|
#include <QObject>
|
|
|
|
|
|
|
|
+#ifdef Q_OS_WIN
|
|
|
|
+static QStringList desktopWhiteListedKeys = { "Back"};
|
|
|
|
+#else
|
|
static QStringList desktopWhiteListedKeys = { "Media Play",
|
|
static QStringList desktopWhiteListedKeys = { "Media Play",
|
|
"Media Pause",
|
|
"Media Pause",
|
|
"Media Stop",
|
|
"Media Stop",
|
|
@@ -20,6 +23,8 @@ static QStringList desktopWhiteListedKeys = { "Media Play",
|
|
"Media Rewind",
|
|
"Media Rewind",
|
|
"Media FastForward",
|
|
"Media FastForward",
|
|
"Back"};
|
|
"Back"};
|
|
|
|
+#endif
|
|
|
|
+
|
|
// These just happen to be mostly the same.
|
|
// These just happen to be mostly the same.
|
|
static QStringList win32AppcommandBlackListedKeys = desktopWhiteListedKeys;
|
|
static QStringList win32AppcommandBlackListedKeys = desktopWhiteListedKeys;
|
|
|
|
|