X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/c4f2b9b542581bf518bc36476e11ec15074f99b4..954106887a9b77a26753c5613ff368ce4c997044:/lib/python/enigma_python.i diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index 4572243a..89aef414 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -40,10 +40,12 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include #include #include #include #include +#include #include #include #include @@ -60,17 +62,21 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include #include #include #include #include #include -#include +#include #include #include #include #include #include +#include +#include +#include #include #include #include @@ -85,11 +91,11 @@ is usually caused by not marking PSignals as immutable. extern void runMainloop(); extern void quitMainloop(int exit_code); -extern void setLCD(const char *c); -extern void setLCDClock(const char *c); extern eApplication *getApplication(); - -extern PSignal1 &keyPressedSignal(); +extern int getPrevAsciiCode(); +extern int isUTF8(const std::string &); +extern std::string convertUTF8DVB(const std::string &, int); +extern std::string convertDVBUTF8(const unsigned char *data, int len, int table, int tsidonid); %} %feature("ref") iObject "$this->AddRef(); /* eDebug(\"AddRef (%s:%d)!\", __FILE__, __LINE__); */ " @@ -138,7 +144,6 @@ typedef long time_t; %template(eServiceCenterPtr) ePtr; %include - // TODO: embed these... %immutable eConsoleAppContainer::appClosed; %immutable eConsoleAppContainer::dataAvail; @@ -149,9 +154,13 @@ typedef long time_t; %immutable eComponentScan::newService; %immutable pNavigation::m_event; %immutable eListbox::selectionChanged; +%immutable eDVBCI_UI::ciStateChanged; +%immutable eDVBResourceManager::frontendUseMaskChanged; %include +%include %include +%include %include %include %include @@ -174,9 +183,10 @@ typedef long time_t; %include %include %include +%include %include %include -%include +%include %include %include %include @@ -186,6 +196,9 @@ typedef long time_t; %include %include %include +%include +%include +%include %include %include %include @@ -234,17 +247,31 @@ public: PyObject *get(); }; +/************** temp *****************/ + + /* need a better place for this, i agree. */ +%{ +void addFont(const char *filename, const char *alias, int scale_factor, int is_replacement); +%} +void addFont(const char *filename, const char *alias, int scale_factor, int is_replacement); + /************** debug **************/ +int getPrevAsciiCode(); void runMainloop(); void quitMainloop(int exit_code); -void setLCD(const char*); -void setLCDClock(const char*); eApplication *getApplication(); -%immutable keyPressed; -PSignal1 &keyPressedSignal(); - +int isUTF8(const std::string &); +std::string convertUTF8DVB(const std::string &, int); +std::string convertDVBUTF8(std::string text, int table); %{ + +std::string convertDVBUTF8(std::string text, int table) +{ + int len = text.length(); + return convertDVBUTF8(len?(unsigned char*)text.c_str():(unsigned char*)"", len, table, 0); +} + RESULT SwigFromPython(ePtr &result, PyObject *obj) { ePtr *res;