summaryrefslogtreecommitdiffhomepage
path: root/qxt-mini/x11-keymap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'qxt-mini/x11-keymap.hpp')
-rw-r--r--qxt-mini/x11-keymap.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/qxt-mini/x11-keymap.hpp b/qxt-mini/x11-keymap.hpp
new file mode 100644
index 00000000..b35097bc
--- /dev/null
+++ b/qxt-mini/x11-keymap.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#ifndef BUILD_QXT_MINI
+# error "internal header"
+#endif
+
+#ifndef __APPLE__
+
+#include <Qt>
+#include <QDebug>
+#include <X11/Xlib.h>
+
+unsigned qt_key_to_x11(Display* disp, Qt::Key k);
+
+#endif