aboutsummaryrefslogtreecommitdiff
path: root/lib/gui/einput.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-06-07 15:31:51 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-06-07 15:31:51 +0000
commitfce04ebed510a97e17f019a35c327dce78b6d916 (patch)
treeca21275f30cedcd9e2b7627dea7a0e5d9f27d812 /lib/gui/einput.h
parent45442377fc854e7224605085375e75f958aa5722 (diff)
downloadenigma2-fce04ebed510a97e17f019a35c327dce78b6d916.tar.gz
enigma2-fce04ebed510a97e17f019a35c327dce78b6d916.zip
more work on keyboard support
Diffstat (limited to 'lib/gui/einput.h')
-rw-r--r--lib/gui/einput.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/gui/einput.h b/lib/gui/einput.h
index 7c65cc13..ae838978 100644
--- a/lib/gui/einput.h
+++ b/lib/gui/einput.h
@@ -14,7 +14,12 @@ public:
PSignal0<void> changed;
int m_cursor;
-
+
+ enum {
+ INPUT_ACTIONS,
+ ASCII_ACTIONS
+ };
+
enum InputActions {
moveLeft,
moveRight,
@@ -25,7 +30,11 @@ public:
toggleOverwrite,
accept
};
-
+
+ enum AsciiActions {
+ gotAsciiCode
+ };
+
void setContent(eInputContent *cnt);
void setOverwriteMode(int o);