diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-07 15:31:51 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-07 15:31:51 +0000 |
| commit | fce04ebed510a97e17f019a35c327dce78b6d916 (patch) | |
| tree | ca21275f30cedcd9e2b7627dea7a0e5d9f27d812 /lib/gui/einput.h | |
| parent | 45442377fc854e7224605085375e75f958aa5722 (diff) | |
| download | enigma2-fce04ebed510a97e17f019a35c327dce78b6d916.tar.gz enigma2-fce04ebed510a97e17f019a35c327dce78b6d916.zip | |
more work on keyboard support
Diffstat (limited to 'lib/gui/einput.h')
| -rw-r--r-- | lib/gui/einput.h | 13 |
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); |
