]>
Commit | Line | Data |
---|---|---|
256c055e RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: media.i | |
3 | // Purpose: SWIG definitions for the wxMediaCtrl | |
4 | // | |
5 | // Author: Robin Dunn | |
6 | // | |
7 | // Created: 23-Nov-2004 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2004 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | %define DOCSTRING | |
e3f1b5b5 | 14 | "Classes for a media player control" |
256c055e RD |
15 | %enddef |
16 | ||
17 | %module(package="wx", docstring=DOCSTRING) media | |
18 | ||
19 | ||
20 | %{ | |
21 | #include "wx/wxPython/wxPython.h" | |
22 | #include "wx/wxPython/pyclasses.h" | |
23 | ||
24 | #include <wx/mediactrl.h> | |
4d5009f9 | 25 | #include <wx/uri.h> |
256c055e RD |
26 | %} |
27 | ||
28 | //---------------------------------------------------------------------- | |
29 | ||
30 | %import core.i | |
31 | %pythoncode { wx = _core } | |
32 | %pythoncode { __docfilter__ = wx.__DocFilter(globals()) } | |
33 | ||
34 | %include _media_rename.i | |
35 | ||
36 | //--------------------------------------------------------------------------- | |
37 | ||
38 | %typemap(in) wxLongLong { | |
39 | $1 = PyLong_AsLongLong($input); | |
40 | } | |
41 | ||
42 | ||
43 | %typemap(out) wxLongLong { | |
44 | $result = PyLong_FromLongLong($1.GetValue()); | |
45 | } | |
46 | ||
47 | //--------------------------------------------------------------------------- | |
48 | // Make a stubbed out class for platforms that don't have wxMediaCtrl | |
49 | %{ | |
50 | #if !wxUSE_MEDIACTRL | |
51 | enum wxMediaState | |
52 | { | |
53 | wxMEDIASTATE_STOPPED=0, | |
54 | wxMEDIASTATE_PAUSED=0, | |
55 | wxMEDIASTATE_PLAYING=0 | |
56 | }; | |
57 | ||
02b800ce RD |
58 | enum wxMediaCtrlPlayerControls |
59 | { | |
60 | wxMEDIACTRLPLAYERCONTROLS_NONE, | |
61 | wxMEDIACTRLPLAYERCONTROLS_STEP, | |
62 | wxMEDIACTRLPLAYERCONTROLS_VOLUME, | |
63 | wxMEDIACTRLPLAYERCONTROLS_DEFAULT | |
64 | }; | |
256c055e | 65 | |
02b800ce | 66 | |
63cd6e0b | 67 | class wxMediaEvent : public wxNotifyEvent |
256c055e RD |
68 | { |
69 | public: | |
4d5009f9 | 70 | wxMediaEvent(wxEventType, int ) { wxPyRaiseNotImplemented(); } |
256c055e RD |
71 | }; |
72 | ||
73 | class wxMediaCtrl : public wxControl | |
74 | { | |
75 | public: | |
6ed7f20d | 76 | wxMediaCtrl() { wxPyRaiseNotImplemented(); } |
256c055e RD |
77 | |
78 | wxMediaCtrl(wxWindow* , wxWindowID , | |
79 | const wxString& , | |
80 | const wxPoint& , | |
81 | const wxSize& , | |
82 | long style , | |
83 | const wxString& , | |
84 | const wxValidator& , | |
85 | const wxString& ) { wxPyRaiseNotImplemented(); } | |
86 | ||
256c055e RD |
87 | bool Create(wxWindow* , wxWindowID , |
88 | const wxString& , | |
89 | const wxPoint& , | |
90 | const wxSize& , | |
91 | long style , | |
92 | const wxString& , | |
93 | const wxValidator& , | |
94 | const wxString& ) { return false; } | |
95 | ||
256c055e RD |
96 | bool Play() { return false; } |
97 | bool Pause() { return false; } | |
98 | bool Stop() { return false; } | |
99 | ||
256c055e RD |
100 | wxMediaState GetState() { return wxMEDIASTATE_STOPPED; } |
101 | ||
e3f1b5b5 | 102 | double GetPlaybackRate() { return 0.0; } |
256c055e RD |
103 | bool SetPlaybackRate(double dRate) { return false; } |
104 | ||
e3f1b5b5 RD |
105 | wxFileOffset Seek(wxFileOffset where, wxSeekMode mode = wxFromStart) |
106 | { return 0; } | |
107 | ||
108 | wxFileOffset Tell() { return 0; } | |
109 | wxFileOffset Length() { return 0; } | |
6c75a4cf RD |
110 | |
111 | double GetVolume() { return 0.0; } | |
112 | bool SetVolume(double dVolume) { return false; } | |
02b800ce RD |
113 | |
114 | bool ShowPlayerControls( | |
115 | wxMediaCtrlPlayerControls flags = wxMEDIACTRLPLAYERCONTROLS_DEFAULT) | |
116 | { return false; } | |
117 | ||
118 | bool Load(const wxString& fileName) { return false; } | |
119 | bool LoadURI(const wxString& fileName) { return false; } | |
120 | bool LoadURIWithProxy(const wxString& fileName, const wxString& proxy) { return false; } | |
256c055e | 121 | }; |
4d5009f9 RD |
122 | |
123 | const wxEventType wxEVT_MEDIA_FINISHED = 0; | |
124 | const wxEventType wxEVT_MEDIA_STOP = 0; | |
095315e2 | 125 | const wxEventType wxEVT_MEDIA_LOADED = 0; |
4d5009f9 | 126 | |
256c055e RD |
127 | #endif |
128 | %} | |
129 | ||
130 | ||
131 | ||
132 | //--------------------------------------------------------------------------- | |
133 | ||
134 | enum wxMediaState | |
135 | { | |
136 | wxMEDIASTATE_STOPPED, | |
137 | wxMEDIASTATE_PAUSED, | |
138 | wxMEDIASTATE_PLAYING | |
139 | }; | |
140 | ||
256c055e RD |
141 | |
142 | ||
4d5009f9 RD |
143 | // MAKE_CONST_WXSTRING(MEDIABACKEND_DIRECTSHOW); |
144 | // MAKE_CONST_WXSTRING(MEDIABACKEND_MCI ); | |
145 | // MAKE_CONST_WXSTRING(MEDIABACKEND_QUICKTIME ); | |
256c055e RD |
146 | |
147 | //--------------------------------------------------------------------------- | |
148 | ||
149 | class wxMediaEvent : public wxNotifyEvent | |
150 | { | |
151 | public: | |
152 | wxMediaEvent(wxEventType commandType = wxEVT_NULL, int id = 0); | |
153 | }; | |
154 | ||
155 | ||
156 | //--------------------------------------------------------------------------- | |
157 | ||
158 | MAKE_CONST_WXSTRING_NOSWIG(EmptyString); | |
4d5009f9 | 159 | MAKE_CONST_WXSTRING2(MediaCtrlNameStr, wxT("mediaCtrl")); |
256c055e RD |
160 | MustHaveApp(wxMediaCtrl); |
161 | ||
162 | ||
163 | class wxMediaCtrl : public wxControl | |
164 | { | |
165 | public: | |
166 | %pythonAppend wxMediaCtrl "self._setOORInfo(self)" | |
167 | %pythonAppend wxMediaCtrl() "" | |
168 | ||
169 | ||
95262b5f RD |
170 | wxMediaCtrl(wxWindow* parent, |
171 | wxWindowID id=-1, | |
256c055e RD |
172 | const wxString& fileName = wxPyEmptyString, |
173 | const wxPoint& pos = wxDefaultPosition, | |
174 | const wxSize& size = wxDefaultSize, | |
175 | long style = 0, | |
176 | const wxString& szBackend = wxPyEmptyString, | |
177 | const wxValidator& validator = wxDefaultValidator, | |
178 | const wxString& name = wxPyMediaCtrlNameStr); | |
179 | ||
1b8c7ba6 | 180 | %RenameCtor(PreMediaCtrl, wxMediaCtrl()); |
256c055e | 181 | |
95262b5f RD |
182 | bool Create(wxWindow* parent, |
183 | wxWindowID id=-1, | |
256c055e RD |
184 | const wxString& fileName = wxPyEmptyString, |
185 | const wxPoint& pos = wxDefaultPosition, | |
186 | const wxSize& size = wxDefaultSize, | |
187 | long style = 0, | |
188 | const wxString& szBackend = wxPyEmptyString, | |
189 | const wxValidator& validator = wxDefaultValidator, | |
190 | const wxString& name = wxPyMediaCtrlNameStr); | |
191 | ||
192 | ||
193 | bool Play(); | |
194 | bool Pause(); | |
195 | bool Stop(); | |
196 | ||
256c055e RD |
197 | wxMediaState GetState(); |
198 | ||
199 | double GetPlaybackRate(); | |
200 | bool SetPlaybackRate(double dRate); | |
201 | ||
e3f1b5b5 RD |
202 | wxFileOffset Seek(wxFileOffset where, wxSeekMode mode = wxFromStart); |
203 | wxFileOffset Tell(); | |
204 | wxFileOffset Length(); | |
02b800ce RD |
205 | |
206 | double GetVolume(); | |
207 | bool SetVolume(double dVolume); | |
208 | ||
209 | bool ShowPlayerControls( | |
210 | wxMediaCtrlPlayerControls flags = wxMEDIACTRLPLAYERCONTROLS_DEFAULT); | |
211 | ||
212 | bool Load(const wxString& fileName); | |
213 | bool LoadURI(const wxString& fileName); | |
214 | bool LoadURIWithProxy(const wxString& fileName, const wxString& proxy); | |
215 | %pythoncode { LoadFromURI = LoadURI } | |
256c055e RD |
216 | }; |
217 | ||
218 | ||
219 | ||
220 | %constant wxEventType wxEVT_MEDIA_FINISHED; | |
221 | %constant wxEventType wxEVT_MEDIA_STOP; | |
095315e2 | 222 | %constant wxEventType wxEVT_MEDIA_LOADED; |
256c055e RD |
223 | |
224 | %pythoncode { | |
225 | EVT_MEDIA_FINISHED = wx.PyEventBinder( wxEVT_MEDIA_FINISHED, 1) | |
226 | EVT_MEDIA_STOP = wx.PyEventBinder( wxEVT_MEDIA_STOP, 1) | |
095315e2 | 227 | EVT_MEDIA_LOADED = wx.PyEventBinder( wxEVT_MEDIA_LOADED, 1) |
256c055e RD |
228 | } |
229 | ||
230 | //--------------------------------------------------------------------------- | |
231 | ||
232 | %init %{ | |
233 | %} | |
234 | ||
235 | //--------------------------------------------------------------------------- | |
236 |