summaryrefslogtreecommitdiff
path: root/noncore/apps/keyz-cfg/zkbnames.h
authoralwin <alwin>2004-02-26 15:33:31 (UTC)
committer alwin <alwin>2004-02-26 15:33:31 (UTC)
commit42eb413737eb6e911867e1b9c0f5b6cf81c677fd (patch) (side-by-side diff)
treeb32284f8cec0f584151f0826fd121c153fc07601 /noncore/apps/keyz-cfg/zkbnames.h
parentd26a7814b7b454583a136a78aeb7016467ec9ff8 (diff)
downloadopie-42eb413737eb6e911867e1b9c0f5b6cf81c677fd.zip
opie-42eb413737eb6e911867e1b9c0f5b6cf81c677fd.tar.gz
opie-42eb413737eb6e911867e1b9c0f5b6cf81c677fd.tar.bz2
Yeah - zkb fixed and working within OPIE.
Diffstat (limited to 'noncore/apps/keyz-cfg/zkbnames.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/keyz-cfg/zkbnames.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/noncore/apps/keyz-cfg/zkbnames.h b/noncore/apps/keyz-cfg/zkbnames.h
new file mode 100644
index 0000000..58462ff
--- a/dev/null
+++ b/noncore/apps/keyz-cfg/zkbnames.h
@@ -0,0 +1,27 @@
+#ifndef ZKBNAMES_H
+#define ZKBNAMES_H
+
+#ifdef USE_ZKB_NAMES
+
+#include <qstring.h>
+
+class KeyNames {
+public:
+ static int find(const QString& key);
+ static const QString& find(int);
+};
+
+class KeycodeNames {
+public:
+ static int find(const QString& key);
+ static const QString& find(int);
+};
+
+class ModifierNames {
+public:
+ static int find(const QString& key);
+ static const QString& find(int);
+};
+
+#endif
+#endif