X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e059d69c2ce61b1ba1ae2e0b9c75eb53bb26f1bb..4503ea2ae9eb021a1a2a665a161357305d4095f9:/lib/python/enigma_python.i diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index eef5ec17..103889b9 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -40,6 +40,7 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include #include #include #include @@ -61,12 +62,12 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include #include #include #include #include #include -#include #include #include #include @@ -90,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__); */ " @@ -121,7 +122,7 @@ extern PSignal1 &keyPressedSignal(); fragment="t_output_helper") {} %typemap(argout,fragment="t_out_helper"{Type}) Type *OUTPUT, Type &OUTPUT // generate None if smartpointer is NULL - "$result = t_output_helper($result, ((*$1) ? SWIG_NewPointerObj((void*)($1), $1_descriptor, 1) : (Py_INCREF(Py_None), Py_None)));" + "$result = t_output_helper($result, ((*$1) ? SWIG_NewPointerObj((void*)($1), $1_descriptor, 1) : (delete $1, Py_INCREF(Py_None), Py_None)));" %enddef @@ -143,7 +144,6 @@ typedef long time_t; %template(eServiceCenterPtr) ePtr; %include - // TODO: embed these... %immutable eConsoleAppContainer::appClosed; %immutable eConsoleAppContainer::dataAvail; @@ -154,8 +154,11 @@ 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 @@ -180,9 +183,9 @@ typedef long time_t; %include %include %include +%include %include %include -%include %include %include %include @@ -244,16 +247,20 @@ 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(); - %{ RESULT SwigFromPython(ePtr &result, PyObject *obj) {