X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e09309bd7f69dbc98f471e28e01e2ad21ab7a757..096614438df798ea2a2d2355e546f5e17174dd14:/lib/python/enigma_python.i diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index 103889b9..92484735 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -45,6 +45,7 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include #include #include #include @@ -82,12 +83,16 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include #include #include +#include #include #include #include #include +#include +#include extern void runMainloop(); extern void quitMainloop(int exit_code); @@ -96,6 +101,14 @@ 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); +PyObject *getBestPlayableServiceReference(const eServiceReference &bouquet_ref, const eServiceReference &ignore) +{ + eStaticServiceDVBBouquetInformation info; + if (info.isPlayable(bouquet_ref, ignore)) + return New_eServiceReference(info.getPlayableService()); + Py_INCREF(Py_None); + return Py_None; +} %} %feature("ref") iObject "$this->AddRef(); /* eDebug(\"AddRef (%s:%d)!\", __FILE__, __LINE__); */ " @@ -129,7 +142,7 @@ extern std::string convertDVBUTF8(const unsigned char *data, int len, int table, #define DEBUG typedef long time_t; %include "typemaps.i" -%include "stl.i" +%include "std_string.i" %include %include %include @@ -153,9 +166,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 @@ -166,7 +181,6 @@ typedef long time_t; %include %include %include -%include %include %include %include @@ -199,13 +213,17 @@ typedef long time_t; %include %include %include +%include %include %include +%include %include %include %include %include %include +%include +%include /************** eptr **************/ %template(eActionMapPtr) ePtr; @@ -247,6 +265,12 @@ public: PyObject *get(); }; +%template(PSignal2VoidIRecordableServiceInt) PSignal2&,int>; + +%typemap(out) PSignal2VoidIRecordableServiceInt { + $1 = $input->get(); +} + /************** temp *****************/ /* need a better place for this, i agree. */ @@ -261,6 +285,7 @@ int getPrevAsciiCode(); void runMainloop(); void quitMainloop(int exit_code); eApplication *getApplication(); +PyObject *getBestPlayableServiceReference(const eServiceReference &bouquet_ref, const eServiceReference &ignore); %{ RESULT SwigFromPython(ePtr &result, PyObject *obj) { @@ -285,4 +310,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); +} %}