aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-01-20 14:35:19 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-01-20 14:35:19 +0000
commit9202d4248dd7df2f6e5eb53b4154c8297ec9b1d1 (patch)
tree6be7a641506defe96a73e0279f934ac5670aba81 /lib/python
parent13b7a9b397f36ca3195aad3702feb3db4cbb2f3e (diff)
downloadenigma2-9202d4248dd7df2f6e5eb53b4154c8297ec9b1d1.tar.gz
enigma2-9202d4248dd7df2f6e5eb53b4154c8297ec9b1d1.zip
- redraw now in idle
- mainloop called from python (could be changed) - clock components manages timer - timer usuable from python
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Makefile.am5
-rw-r--r--lib/python/enigma_python.i58
-rw-r--r--lib/python/python.cpp2
3 files changed, 61 insertions, 4 deletions
diff --git a/lib/python/Makefile.am b/lib/python/Makefile.am
index c3d98c0b..e82cb650 100644
--- a/lib/python/Makefile.am
+++ b/lib/python/Makefile.am
@@ -1,12 +1,11 @@
INCLUDES = \
-I$(top_srcdir)/include \
- -I$(top_srcdir)/src \
- -I/usr/include/python2.3
+ -I$(top_srcdir)/src
noinst_LIBRARIES = libenigma_python.a
libenigma_python_a_SOURCES = \
- python.cpp enigma_python_wrap.cxx
+ python.cpp enigma_python_wrap.cxx connections.cpp
enigma_python_wrap.cxx: enigma_python.i
swig -I$(top_srcdir)/ -c++ -python enigma_python.i
diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i
index 15bc16e2..c621bb62 100644
--- a/lib/python/enigma_python.i
+++ b/lib/python/enigma_python.i
@@ -1,6 +1,43 @@
+/*
+ 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 <lib/base/ebase.h>
#include <lib/base/smartptr.h>
#include <lib/base/eerror.h>
#include <lib/base/econfig.h>
@@ -14,6 +51,8 @@
#include <lib/gui/ewidgetdesktop.h>
#include <lib/gui/eslider.h>
#include <lib/python/connections.h>
+
+extern void runMainloop();
%}
#define DEBUG
@@ -69,3 +108,22 @@ 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();
diff --git a/lib/python/python.cpp b/lib/python/python.cpp
index 9e7e5c21..14e32af6 100644
--- a/lib/python/python.cpp
+++ b/lib/python/python.cpp
@@ -103,7 +103,7 @@ void ePython::call(PyObject *pFunc, PyObject *pArgs)
pValue = PyObject_CallObject(pFunc, pArgs);
if (pValue != NULL)
{
- printf("Result of call: %ld\n", PyInt_AsLong(pValue));
+// printf("Result of call: %ld\n", PyInt_AsLong(pValue));
Py_DECREF(pValue);
} else
{