fix handy like jumping in sorted service list
[enigma2.git] / lib / dvb_ci / dvbci_ui.h
index 680b7897c070b138160c939e10706e55fcd1cf8e..1974d6539fe4b513955ca25111a3b7228b66e559 100644 (file)
@@ -2,6 +2,7 @@
 #define __dvbci_ui_h
 
 #include <string>
+#include <Python.h>
 
 #define MAX_SLOTS      2       
 
@@ -25,7 +26,22 @@ public:
        int initialize(int slot);
        int startMMI(int slot);
        int stopMMI(int slot);
-       int answerMMI(int slot, int answer, char *val);
+       int availableMMI(int slot);
+       int getMMIState(int slot);
+
+       int answerMenu(int slot, int answer);
+       int answerEnq(int slot, char *val);
+       int cancelEnq(int slot);
+
+       PyObject *eDVBCI_UI::getMMIScreen(int slot);
+       PyObject *mmiScreen;
+       int mmiTuplePos;
+       int mmiScreenReady;
+
+       int mmiScreenEnq(int slot, int blind, int answerLen, char *text);
+       int mmiScreenBegin(int slot, int listmenu);
+       int mmiScreenAddText(int slot, int type, char *value);
+       int mmiScreenFinish(int slot);
 };
 
 #endif