- add "getCurrent" to service listbox
[enigma2.git] / lib / python / enigma_python.i
1 /*
2   NOTE: you have two options when adding classes so that
3   they are callable *from* python.
4   
5    - either you %include the header file
6    - or you re-declare it
7    
8   In both cases, you must #include the required
9   header file (i.e. the header file itself), otherwise
10   enigma_python_wrap.cxx won't build.
11   
12         In case you import the whole header file,
13         please make sure that no unimportant stuff
14         is wrapped, as this makes the wrapper stuff
15         much more complex and it can probably break 
16         very easily because of missing typemaps etc.
17         
18         you could make use of dizzy macros to ensure
19         that some stuff is left out when parsed as SWIG
20         definitions, but be sure to not modify the binary 
21         representation. DON'T USE #ifdef SWIG_COMPILE
22         for leaving out stuff (unless you *really* know
23         what you are doing,of course!). you WILL break it.
24                 
25         The better way (with more work) is to re-declare
26         the class. It won't be compiled, so you can
27         leave out stuff as you like.
28
29
30
31 Oh, things like "operator= is private in this context" etc.
32 is usually caused by not marking PSignals as immutable.
33
34 */
35
36 %define RefCount(...)
37 %typemap(newfree) __VA_ARGS__ * { eDebug("adding ref"); $1->AddRef(); }
38 %extend __VA_ARGS__  { ~__VA_ARGS__() { eDebug("removing ref!"); self->Release(); } }
39 %ignore __VA_ARGS__::~__VA_ARGS__();
40 %enddef
41
42 %module enigma
43 %{
44 #define SWIG_COMPILE
45 #include <lib/base/ebase.h>
46 #include <lib/base/smartptr.h>
47 #include <lib/base/eerror.h>
48 #include <lib/base/econfig.h>
49 #include <lib/service/iservice.h>
50 #include <lib/service/service.h>
51
52 #include <lib/gui/ewidget.h>
53 #include <lib/gui/elabel.h>
54 #include <lib/gui/ebutton.h>
55 #include <lib/gui/ewindow.h>
56 #include <lib/gui/ewidgetdesktop.h>
57 #include <lib/gui/eslider.h>
58 #include <lib/python/connections.h>
59 #include <lib/gui/elistbox.h>
60 #include <lib/gui/elistboxcontent.h>
61 #include <lib/service/listboxservice.h>
62 #include <lib/components/scan.h>
63 #include <lib/nav/pcore.h>
64
65 extern void runMainloop();
66 extern void quitMainloop();
67
68 extern PSignal1<void,int> &keyPressedSignal();
69 %}
70
71 RefCount(eListboxPythonStringContent)
72 RefCount(eListboxServiceContent)
73 RefCount(eComponentScan)
74
75 #define DEBUG
76 %include "stl.i"
77 %include <lib/base/object.h>
78 %include <lib/base/eerror.h>
79 %include <lib/base/econfig.h>
80 %include <lib/base/smartptr.h>
81 %include <lib/service/iservice.h>
82 %include <lib/service/service.h>
83 %template(eServiceCenterPtr) ePtr<eServiceCenter>;
84
85
86 // TODO: embed these...
87 %immutable eButton::selected;
88 %immutable eComponentScan::statusChanged;
89 %immutable pNavigation::event;
90
91 %include <lib/gdi/epoint.h>
92 %include <lib/gdi/erect.h>
93 %include <lib/gdi/esize.h>
94 %include <lib/gdi/region.h>
95 %include <lib/gui/ewidget.h>
96 %include <lib/gui/elabel.h>
97 %include <lib/gui/ebutton.h>
98 %include <lib/gui/ewindow.h>
99 %include <lib/gui/eslider.h>
100 %include <lib/gui/ewidgetdesktop.h>
101 %include <lib/gui/elistbox.h>
102 %include <lib/gui/elistboxcontent.h>
103 %include <lib/service/listboxservice.h>
104 %include <lib/components/scan.h>
105 %include <lib/nav/pcore.h>
106
107 template<class R> class PSignal0
108 {
109 public:
110         PyObject *get();
111 };
112
113 template<class R, class P0> class PSignal1
114 {
115 public:
116         PyObject *get();
117 };
118
119 template<class R, class P0, class P1> class PSignal2
120 {
121 public:
122         PyObject *get();
123 };
124
125 %template(PSignal1VI) PSignal1<void,int>;
126
127 %typemap(out) PSignal1VI {
128         $1 = $input->get();
129 }
130
131 %template(PSignal0V) PSignal0<void>;
132
133 %typemap(out) PSignal0V {
134         $1 = $input->get();
135 }
136
137
138 /**************  base  **************/
139
140 %immutable eTimer::timeout;
141
142 class eTimer
143 {
144 public:
145         eTimer(eMainloop *context = eApp);
146         PSignal0<void> timeout;
147
148         void start(long msec, bool singleShot=false);
149         void stop();
150         void changeInterval(long msek);
151 };
152
153 /**************  debug  **************/
154
155 void runMainloop();
156 void quitMainloop();
157 %immutable keyPressed;
158 PSignal1<void,int> &keyPressedSignal();