X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2Fenigma_python.i;h=79f9296e3251e1abac39ac38ae9fe929561a1af4;hp=15bc16e232205791112dc1ffc9766b4f250b7a02;hb=d1ba8203832c54b4a98978c6033296183a24b4d0;hpb=7c12c1089cfbee5b0a390d5f3de37f85de210263 diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index 15bc16e..79f9296 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -1,32 +1,122 @@ +/* + NOTE: you have two options when adding classes so that + they are callable *from* python. + + - either you %include the header file + - or you re-declare it + + In both cases, you must #include the required + header file (i.e. the header file itself), otherwise + enigma_python_wrap.cxx won't build. + + In case you import the whole header file, + please make sure that no unimportant stuff + is wrapped, as this makes the wrapper stuff + much more complex and it can probably break + very easily because of missing typemaps etc. + + you could make use of dizzy macros to ensure + that some stuff is left out when parsed as SWIG + definitions, but be sure to not modify the binary + representation. DON'T USE #ifdef SWIG_COMPILE + for leaving out stuff (unless you *really* know + what you are doing,of course!). you WILL break it. + + The better way (with more work) is to re-declare + the class. It won't be compiled, so you can + leave out stuff as you like. + + + +Oh, things like "operator= is private in this context" etc. +is usually caused by not marking PSignals as immutable. +*/ + %module enigma %{ + #define SWIG_COMPILE +#include #include #include #include #include #include +#include + +#include #include #include +#include +#include +#include +#include #include #include #include +#include +#include +#include #include #include +#include +#include +#include +#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(); %} +%feature("ref") iObject "$this->AddRef(); eDebug(\"AddRef (%s:%d)!\", __FILE__, __LINE__); " +%feature("unref") iObject "$this->Release(); eDebug(\"Release! %s:%d\", __FILE__, __LINE__); " + +/* this magic allows smartpointer to be used as OUTPUT arguments, i.e. call-by-reference-styled return value. */ + +%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 + "$result = t_output_helper($result, (SWIG_NewPointerObj((void*)($1), $1_descriptor, 1)));" +%enddef + +%newobject eDebugClassPtr::operator->; + #define DEBUG +%include "typemaps.i" %include "stl.i" +%include %include %include %include %include %include %include + %template(eServiceCenterPtr) ePtr; +%include + +// TODO: embed these... %immutable eButton::selected; +%immutable eInput::changed; +%immutable eComponentScan::statusChanged; +%immutable pNavigation::m_event; %include %include @@ -34,10 +124,37 @@ %include %include %include +%include +%include +%include +%include %include %include %include %include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include + +%include +/************** eptr **************/ + +%template(eActionMapPtr) ePtr; +%apply eActionMapPtr OUTPUT { eActionMapPtr &ptr } +%apply eActionMap* *OUTPUT { eActionMap **ptr } + +/************** signals **************/ template class PSignal0 { @@ -69,3 +186,27 @@ public: $1 = $input->get(); } +/************** base **************/ + +%immutable eTimer::timeout; + +class eTimer +{ +public: + eTimer(eMainloop *context = eApp); + PSignal0 timeout; + + void start(long msec, bool singleShot=false); + void stop(); + void changeInterval(long msek); +}; + +/************** debug **************/ + +void runMainloop(); +void quitMainloop(); +void setLCD(const char*); +void setLCDClock(const char*); +%immutable keyPressed; +PSignal1 &keyPressedSignal(); +