X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/56e40b4b0f436dc7d9214fd3a96a621c15bd9f10..79de1c2ae4ba012707b99336dc4ce9e74734c6f9:/lib/python/enigma_python.i diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index 0ca55bb9..21c0664a 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -88,12 +88,16 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include +#include extern void runMainloop(); extern void quitMainloop(int exit_code); 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__); */ " @@ -120,7 +124,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 @@ -142,7 +146,6 @@ typedef long time_t; %template(eServiceCenterPtr) ePtr; %include - // TODO: embed these... %immutable eConsoleAppContainer::appClosed; %immutable eConsoleAppContainer::dataAvail; @@ -152,7 +155,11 @@ typedef long time_t; %immutable eComponentScan::statusChanged; %immutable eComponentScan::newService; %immutable pNavigation::m_event; +%immutable pNavigation::m_record_event; %immutable eListbox::selectionChanged; +%immutable eDVBCI_UI::ciStateChanged; +%immutable eDVBResourceManager::frontendUseMaskChanged; +%immutable eAVSwitch::vcr_sb_notifier; %include %include @@ -203,6 +210,8 @@ typedef long time_t; %include %include %include +%include +%include /************** eptr **************/ %template(eActionMapPtr) ePtr; @@ -244,6 +253,12 @@ public: PyObject *get(); }; +%template(PSignal2VoidIRecordableServiceInt) PSignal2&,int>; + +%typemap(out) PSignal2VoidIRecordableServiceInt { + $1 = $input->get(); +} + /************** temp *****************/ /* need a better place for this, i agree. */ @@ -254,12 +269,10 @@ void addFont(const char *filename, const char *alias, int scale_factor, int is_r /************** debug **************/ +int getPrevAsciiCode(); void runMainloop(); void quitMainloop(int exit_code); eApplication *getApplication(); -%immutable keyPressed; -PSignal1 &keyPressedSignal(); - %{ RESULT SwigFromPython(ePtr &result, PyObject *obj) { @@ -284,4 +297,9 @@ PyObject *New_eServiceReference(const eServiceReference &ref) eServiceReference *result = new eServiceReference(ref); return SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_eServiceReference, 1); } +PyObject *New_iRecordableServicePtr(const ePtr &ptr) +{ + ePtr *result = new ePtr(ptr); + return SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_ePtrTiRecordableService_t, 1); +} %}