more work on keyboard support
[enigma2.git] / lib / gui / einput.h
index 7c65cc13ec6b5dd65d714d1a914339b979702e4e..ae838978beb0a3e9fe9ba42a73def041a3bdcf58 100644 (file)
@@ -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);