X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/dba614edd2aad3c17e244914eaef3809d8300cb1..20e411da4dda00404457eac47ca69a95cbbe2fe6:/lib/python/enigma_python.i diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index 096254f9..8b918bf0 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -44,12 +44,20 @@ 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 @@ -58,9 +66,16 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include +#include +#include +#include +#include extern void runMainloop(); extern void quitMainloop(); +extern void setLCD(const char *c); +extern void setLCDClock(const char *c); extern PSignal1 &keyPressedSignal(); %} @@ -68,11 +83,35 @@ extern PSignal1 &keyPressedSignal(); %feature("ref") iObject "$this->AddRef(); eDebug(\"AddRef (%s:%d)!\", __FILE__, __LINE__); " %feature("unref") iObject "$this->Release(); eDebug(\"Release! %s:%d\", __FILE__, __LINE__); " -%newobject eDebugClassPtr::operator->; + +/* this magic allows smartpointer to be used as OUTPUT arguments, i.e. call-by-reference-styled return value. */ + +%define %typemap_output_simple(Type) + %typemap(in,numinputs=0) Type *OUTPUT ($*1_ltype temp), + Type &OUTPUT ($*1_ltype temp) + "$1 = new Type;"; + %fragment("t_out_helper"{Type},"header", + fragment="t_output_helper") {} + %typemap(argout,fragment="t_out_helper"{Type}) Type *OUTPUT, Type &OUTPUT + "$result = t_output_helper($result, (SWIG_NewPointerObj((void*)($1), $1_descriptor, 1)));" +%enddef + +%define %typemap_output_ptr(Type) + %typemap(in,numinputs=0) Type *OUTPUT ($*1_ltype temp), + Type &OUTPUT ($*1_ltype temp) + "$1 = new Type;"; + %fragment("t_out_helper"{Type},"header", + 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)));" +%enddef + #define DEBUG %include "typemaps.i" %include "stl.i" +%include %include %include %include @@ -86,6 +125,7 @@ extern PSignal1 &keyPressedSignal(); // TODO: embed these... %immutable eButton::selected; +%immutable eInput::changed; %immutable eComponentScan::statusChanged; %immutable pNavigation::m_event; @@ -95,6 +135,10 @@ extern PSignal1 &keyPressedSignal(); %include %include %include +%include +%include +%include +%include %include %include %include @@ -102,11 +146,19 @@ extern PSignal1 &keyPressedSignal(); %include %include %include +%include +%include %include %include %include %include +%include +%include +%include +%include +%include +%include /************** eptr **************/ %template(eActionMapPtr) ePtr; @@ -145,7 +197,6 @@ public: $1 = $input->get(); } - /************** base **************/ %immutable eTimer::timeout; @@ -165,6 +216,8 @@ public: void runMainloop(); void quitMainloop(); +void setLCD(const char*); +void setLCDClock(const char*); %immutable keyPressed; PSignal1 &keyPressedSignal();