X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2Fenigma_python.i;h=33fc0a1444206cacdeda34d8c3c2e8da2d1b3ab6;hb=1cdf6cb021fcaa6548b90ba7b6765cf1e8b8b37b;hp=67244f1075b296884852dd2bcc2fdf4f23b94e25;hpb=ddc3964ed95d01e72229dc9af968a327cd84e56c;p=vuplus_dvbapp diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index 67244f1..33fc0a1 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -1,14 +1,80 @@ +/* + 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. +*/ + +%define RefCount(...) +%typemap(newfree) __VA_ARGS__ * { eDebug("adding ref"); $1->AddRef(); } +%extend __VA_ARGS__ { ~__VA_ARGS__() { eDebug("removing ref!"); self->Release(); } } +%ignore __VA_ARGS__::~__VA_ARGS__(); +%enddef + %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 + +extern void runMainloop(); +extern void quitMainloop(); + +extern PSignal1 &keyPressedSignal(); %} +RefCount(eListboxPythonStringContent) +RefCount(eListboxServiceContent) +RefCount(eComponentScan) + #define DEBUG +%include "typemaps.i" %include "stl.i" %include %include @@ -17,7 +83,89 @@ %include %include %template(eServiceCenterPtr) ePtr; -%template(iPlayableServicePtr) ePtr; -%template(iPauseableServicePtr) ePtr; -%template(iRecordableServicePtr) ePtr; -%template(iListableServicePtr) ePtr; +%include + + +// TODO: embed these... +%immutable eButton::selected; +%immutable eComponentScan::statusChanged; +%immutable pNavigation::m_event; + +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include +%include + +/************** eptr **************/ + +%template(eActionMapPtr) ePtr; +RefCount(eActionMap) +%apply eActionMapPtr OUTPUT { eActionMapPtr &ptr } +%apply eActionMap* *OUTPUT { eActionMap **ptr } + +/************** signals **************/ + +template class PSignal0 +{ +public: + PyObject *get(); +}; + +template class PSignal1 +{ +public: + PyObject *get(); +}; + +template class PSignal2 +{ +public: + PyObject *get(); +}; + +%template(PSignal1VI) PSignal1; + +%typemap(out) PSignal1VI { + $1 = $input->get(); +} + +%template(PSignal0V) PSignal0; + +%typemap(out) PSignal0V { + $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(); +%immutable keyPressed; +PSignal1 &keyPressedSignal();