- fixed dvb scan
[enigma2.git] / lib / python / enigma_python.i
index 15bc16e232205791112dc1ffc9766b4f250b7a02..8e55b74fc8d419585d9fec77d54c6572a9d17f4c 100644 (file)
@@ -1,6 +1,48 @@
+/*
+  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 <lib/base/ebase.h>
 #include <lib/base/smartptr.h>
 #include <lib/base/eerror.h>
 #include <lib/base/econfig.h>
 #include <lib/gui/ewidgetdesktop.h>
 #include <lib/gui/eslider.h>
 #include <lib/python/connections.h>
+#include <lib/gui/elistbox.h>
+#include <lib/gui/elistboxcontent.h>
+#include <lib/service/listboxservice.h>
+
+extern void runMainloop();
+
+extern PSignal1<void,int> &keyPressedSignal();
 %}
 
+RefCount(eListboxPythonStringContent)
+
 #define DEBUG
 %include "stl.i"
 %include <lib/base/object.h>
@@ -38,6 +89,9 @@
 %include <lib/gui/ewindow.h>
 %include <lib/gui/eslider.h>
 %include <lib/gui/ewidgetdesktop.h>
+%include <lib/gui/elistbox.h>
+%include <lib/gui/elistboxcontent.h>
+%include <lib/service/listboxservice.h>
 
 template<class R> class PSignal0
 {
@@ -69,3 +123,24 @@ public:
        $1 = $input->get();
 }
 
+
+/**************  base  **************/
+
+%immutable eTimer::timeout;
+
+class eTimer
+{
+public:
+       eTimer(eMainloop *context = eApp);
+       PSignal0<void> timeout;
+
+       void start(long msec, bool singleShot=false);
+       void stop();
+       void changeInterval(long msek);
+};
+
+/**************  debug  **************/
+
+void runMainloop();
+%immutable keyPressed;
+PSignal1<void,int> &keyPressedSignal();