]>
Commit | Line | Data |
---|---|---|
ff4aedc5 | 1 | /////////////////////////////////////////////////////////////////////////////// |
1a680109 RN |
2 | // Name: wx/mediactrl.h |
3 | // Purpose: wxMediaCtrl class | |
4 | // Author: Ryan Norton <wxprojects@comcast.net> | |
226ec5a7 | 5 | // Modified by: |
1a680109 RN |
6 | // Created: 11/07/04 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Ryan Norton | |
9 | // Licence: wxWindows licence | |
ff4aedc5 | 10 | /////////////////////////////////////////////////////////////////////////////// |
1a680109 | 11 | |
ff4aedc5 RN |
12 | // ============================================================================ |
13 | // Definitions | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // Header guard | |
18 | // ---------------------------------------------------------------------------- | |
19 | #ifndef _WX_MEDIACTRL_H_ | |
20 | #define _WX_MEDIACTRL_H_ | |
21 | ||
22 | // ---------------------------------------------------------------------------- | |
23 | // Pre-compiled header stuff | |
24 | // ---------------------------------------------------------------------------- | |
72259e00 | 25 | |
2ecf902b WS |
26 | #include "wx/defs.h" |
27 | ||
ff4aedc5 RN |
28 | // ---------------------------------------------------------------------------- |
29 | // Compilation guard | |
30 | // ---------------------------------------------------------------------------- | |
2ecf902b | 31 | |
ff4aedc5 RN |
32 | #if wxUSE_MEDIACTRL |
33 | ||
34 | // ---------------------------------------------------------------------------- | |
35 | // Includes | |
36 | // ---------------------------------------------------------------------------- | |
37 | ||
38 | #include "wx/control.h" | |
39 | #include "wx/uri.h" | |
40 | ||
41 | // ============================================================================ | |
42 | // Declarations | |
43 | // ============================================================================ | |
44 | ||
45 | // ---------------------------------------------------------------------------- | |
46 | // | |
47 | // Enumerations | |
48 | // | |
49 | // ---------------------------------------------------------------------------- | |
50 | ||
51 | enum wxMediaState | |
52 | { | |
53 | wxMEDIASTATE_STOPPED, | |
54 | wxMEDIASTATE_PAUSED, | |
55 | wxMEDIASTATE_PLAYING | |
56 | }; | |
57 | ||
c5191fbd VZ |
58 | enum wxMediaCtrlPlayerControls |
59 | { | |
60 | wxMEDIACTRLPLAYERCONTROLS_NONE = 0, | |
4c51a665 | 61 | //Step controls like fastforward, step one frame etc. |
c5191fbd VZ |
62 | wxMEDIACTRLPLAYERCONTROLS_STEP = 1 << 0, |
63 | //Volume controls like the speaker icon, volume slider, etc. | |
64 | wxMEDIACTRLPLAYERCONTROLS_VOLUME = 1 << 1, | |
65 | wxMEDIACTRLPLAYERCONTROLS_DEFAULT = | |
66 | wxMEDIACTRLPLAYERCONTROLS_STEP | | |
67 | wxMEDIACTRLPLAYERCONTROLS_VOLUME | |
68 | }; | |
69 | ||
ff4aedc5 RN |
70 | #define wxMEDIABACKEND_DIRECTSHOW wxT("wxAMMediaBackend") |
71 | #define wxMEDIABACKEND_MCI wxT("wxMCIMediaBackend") | |
72 | #define wxMEDIABACKEND_QUICKTIME wxT("wxQTMediaBackend") | |
ce756cb0 | 73 | #define wxMEDIABACKEND_GSTREAMER wxT("wxGStreamerMediaBackend") |
557002cf VZ |
74 | #define wxMEDIABACKEND_REALPLAYER wxT("wxRealPlayerMediaBackend") |
75 | #define wxMEDIABACKEND_WMP10 wxT("wxWMP10MediaBackend") | |
c5191fbd | 76 | |
226ec5a7 WS |
77 | // ---------------------------------------------------------------------------- |
78 | // | |
79 | // wxMediaEvent | |
80 | // | |
81 | // ---------------------------------------------------------------------------- | |
82 | ||
ff2b312f | 83 | class WXDLLIMPEXP_MEDIA wxMediaEvent : public wxNotifyEvent |
226ec5a7 WS |
84 | { |
85 | public: | |
86 | // ------------------------------------------------------------------------ | |
87 | // wxMediaEvent Constructor | |
88 | // | |
89 | // Normal constructor, much the same as wxNotifyEvent | |
90 | // ------------------------------------------------------------------------ | |
4fc81cbc RN |
91 | wxMediaEvent(wxEventType commandType = wxEVT_NULL, int winid = 0) |
92 | : wxNotifyEvent(commandType, winid) | |
226ec5a7 WS |
93 | { } |
94 | ||
95 | // ------------------------------------------------------------------------ | |
96 | // wxMediaEvent Copy Constructor | |
97 | // | |
98 | // Normal copy constructor, much the same as wxNotifyEvent | |
99 | // ------------------------------------------------------------------------ | |
100 | wxMediaEvent(const wxMediaEvent &clone) | |
101 | : wxNotifyEvent(clone) | |
102 | { } | |
103 | ||
104 | // ------------------------------------------------------------------------ | |
105 | // wxMediaEvent::Clone | |
106 | // | |
107 | // Allocates a copy of this object. | |
108 | // Required for wxEvtHandler::AddPendingEvent | |
109 | // ------------------------------------------------------------------------ | |
110 | virtual wxEvent *Clone() const | |
111 | { return new wxMediaEvent(*this); } | |
112 | ||
113 | ||
114 | // Put this class on wxWidget's RTTI table | |
115 | DECLARE_DYNAMIC_CLASS(wxMediaEvent) | |
116 | }; | |
117 | ||
ff4aedc5 RN |
118 | // ---------------------------------------------------------------------------- |
119 | // | |
120 | // wxMediaCtrl | |
121 | // | |
122 | // ---------------------------------------------------------------------------- | |
123 | ||
ff2b312f | 124 | class WXDLLIMPEXP_MEDIA wxMediaCtrl : public wxControl |
ff4aedc5 RN |
125 | { |
126 | public: | |
bc036010 | 127 | wxMediaCtrl() : m_imp(NULL), m_bLoaded(false) |
ff4aedc5 RN |
128 | { } |
129 | ||
4fc81cbc | 130 | wxMediaCtrl(wxWindow* parent, wxWindowID winid, |
8b5d5223 | 131 | const wxString& fileName = wxEmptyString, |
226ec5a7 | 132 | const wxPoint& pos = wxDefaultPosition, |
ff4aedc5 | 133 | const wxSize& size = wxDefaultSize, |
226ec5a7 | 134 | long style = 0, |
8b5d5223 | 135 | const wxString& szBackend = wxEmptyString, |
ff4aedc5 RN |
136 | const wxValidator& validator = wxDefaultValidator, |
137 | const wxString& name = wxT("mediaCtrl")) | |
bc036010 | 138 | : m_imp(NULL), m_bLoaded(false) |
4fc81cbc | 139 | { Create(parent, winid, fileName, pos, size, style, |
ff4aedc5 RN |
140 | szBackend, validator, name); } |
141 | ||
4fc81cbc | 142 | wxMediaCtrl(wxWindow* parent, wxWindowID winid, |
ff4aedc5 | 143 | const wxURI& location, |
226ec5a7 | 144 | const wxPoint& pos = wxDefaultPosition, |
ff4aedc5 | 145 | const wxSize& size = wxDefaultSize, |
226ec5a7 | 146 | long style = 0, |
8b5d5223 | 147 | const wxString& szBackend = wxEmptyString, |
ff4aedc5 RN |
148 | const wxValidator& validator = wxDefaultValidator, |
149 | const wxString& name = wxT("mediaCtrl")) | |
bc036010 | 150 | : m_imp(NULL), m_bLoaded(false) |
4fc81cbc | 151 | { Create(parent, winid, location, pos, size, style, |
ff4aedc5 RN |
152 | szBackend, validator, name); } |
153 | ||
d3c7fc99 | 154 | virtual ~wxMediaCtrl(); |
ff4aedc5 | 155 | |
4fc81cbc | 156 | bool Create(wxWindow* parent, wxWindowID winid, |
8b5d5223 | 157 | const wxString& fileName = wxEmptyString, |
226ec5a7 | 158 | const wxPoint& pos = wxDefaultPosition, |
ff4aedc5 | 159 | const wxSize& size = wxDefaultSize, |
226ec5a7 | 160 | long style = 0, |
8b5d5223 | 161 | const wxString& szBackend = wxEmptyString, |
ff4aedc5 RN |
162 | const wxValidator& validator = wxDefaultValidator, |
163 | const wxString& name = wxT("mediaCtrl")); | |
164 | ||
4fc81cbc | 165 | bool Create(wxWindow* parent, wxWindowID winid, |
ff4aedc5 | 166 | const wxURI& location, |
226ec5a7 | 167 | const wxPoint& pos = wxDefaultPosition, |
ff4aedc5 | 168 | const wxSize& size = wxDefaultSize, |
226ec5a7 | 169 | long style = 0, |
8b5d5223 | 170 | const wxString& szBackend = wxEmptyString, |
ff4aedc5 | 171 | const wxValidator& validator = wxDefaultValidator, |
c5191fbd | 172 | const wxString& name = wxT("mediaCtrl")); |
ff4aedc5 | 173 | |
644cb537 | 174 | bool DoCreate(const wxClassInfo* instance, |
4fc81cbc | 175 | wxWindow* parent, wxWindowID winid, |
226ec5a7 | 176 | const wxPoint& pos = wxDefaultPosition, |
ff4aedc5 | 177 | const wxSize& size = wxDefaultSize, |
226ec5a7 | 178 | long style = 0, |
ff4aedc5 RN |
179 | const wxValidator& validator = wxDefaultValidator, |
180 | const wxString& name = wxT("mediaCtrl")); | |
181 | ||
ff4aedc5 RN |
182 | bool Play(); |
183 | bool Pause(); | |
184 | bool Stop(); | |
185 | ||
186 | bool Load(const wxString& fileName); | |
ff4aedc5 | 187 | |
ff4aedc5 RN |
188 | wxMediaState GetState(); |
189 | ||
9180b535 RN |
190 | wxFileOffset Seek(wxFileOffset where, wxSeekMode mode = wxFromStart); |
191 | wxFileOffset Tell(); //FIXME: This should be const | |
192 | wxFileOffset Length(); //FIXME: This should be const | |
973dc0a8 | 193 | |
bc036010 RN |
194 | double GetPlaybackRate(); //All but MCI & GStreamer |
195 | bool SetPlaybackRate(double dRate); //All but MCI & GStreamer | |
c5191fbd | 196 | |
c5191fbd VZ |
197 | bool Load(const wxURI& location); |
198 | bool Load(const wxURI& location, const wxURI& proxy); | |
199 | ||
557002cf VZ |
200 | wxFileOffset GetDownloadProgress(); // DirectShow only |
201 | wxFileOffset GetDownloadTotal(); // DirectShow only | |
bc036010 | 202 | |
c5191fbd VZ |
203 | double GetVolume(); |
204 | bool SetVolume(double dVolume); | |
6f8c67e7 | 205 | |
c5191fbd VZ |
206 | bool ShowPlayerControls( |
207 | wxMediaCtrlPlayerControls flags = wxMEDIACTRLPLAYERCONTROLS_DEFAULT); | |
208 | ||
209 | //helpers for the wxPython people | |
210 | bool LoadURI(const wxString& fileName) | |
211 | { return Load(wxURI(fileName)); } | |
212 | bool LoadURIWithProxy(const wxString& fileName, const wxString& proxy) | |
213 | { return Load(wxURI(fileName), wxURI(proxy)); } | |
0c81ef7f | 214 | |
ff4aedc5 | 215 | protected: |
644cb537 | 216 | static const wxClassInfo* NextBackend(wxClassInfo::const_iterator* it); |
973dc0a8 | 217 | |
226ec5a7 | 218 | void OnMediaFinished(wxMediaEvent& evt); |
ff4aedc5 RN |
219 | virtual void DoMoveWindow(int x, int y, int w, int h); |
220 | wxSize DoGetBestSize() const; | |
221 | ||
bc036010 RN |
222 | //FIXME: This is nasty... find a better way to work around |
223 | //inheritance issues | |
4954ee50 | 224 | #if defined(__WXOSX_CARBON__) |
0c81ef7f SC |
225 | virtual void MacVisibilityChanged(); |
226 | #endif | |
4954ee50 | 227 | #if defined(__WXOSX_CARBON__) || defined(__WXCOCOA__) |
4fc81cbc | 228 | friend class wxQTMediaBackend; |
3b5023b9 | 229 | #endif |
ff4aedc5 RN |
230 | class wxMediaBackend* m_imp; |
231 | bool m_bLoaded; | |
ff4aedc5 | 232 | |
3839f37e | 233 | DECLARE_DYNAMIC_CLASS(wxMediaCtrl) |
ff4aedc5 RN |
234 | }; |
235 | ||
236 | // ---------------------------------------------------------------------------- | |
237 | // | |
238 | // wxMediaBackend | |
239 | // | |
c5191fbd VZ |
240 | // Derive from this and use standard wxWidgets RTTI |
241 | // (DECLARE_DYNAMIC_CLASS and IMPLEMENT_CLASS) to make a backend | |
242 | // for wxMediaCtrl. Backends are searched alphabetically - | |
243 | // the one with the earliest letter is tried first. | |
244 | // | |
05e66a70 | 245 | // Note that this is currently not API or ABI compatible - |
c5191fbd | 246 | // so statically link or make the client compile on-site. |
ff4aedc5 RN |
247 | // |
248 | // ---------------------------------------------------------------------------- | |
249 | ||
ff2b312f | 250 | class WXDLLIMPEXP_MEDIA wxMediaBackend : public wxObject |
ff4aedc5 RN |
251 | { |
252 | public: | |
253 | wxMediaBackend() | |
254 | { } | |
255 | ||
256 | virtual ~wxMediaBackend(); | |
257 | ||
226ec5a7 WS |
258 | virtual bool CreateControl(wxControl* WXUNUSED(ctrl), |
259 | wxWindow* WXUNUSED(parent), | |
4fc81cbc | 260 | wxWindowID WXUNUSED(winid), |
226ec5a7 | 261 | const wxPoint& WXUNUSED(pos), |
78450975 | 262 | const wxSize& WXUNUSED(size), |
226ec5a7 | 263 | long WXUNUSED(style), |
78450975 RN |
264 | const wxValidator& WXUNUSED(validator), |
265 | const wxString& WXUNUSED(name)) | |
ff4aedc5 RN |
266 | { return false; } |
267 | ||
226ec5a7 | 268 | virtual bool Play() |
ff4aedc5 | 269 | { return false; } |
226ec5a7 | 270 | virtual bool Pause() |
ff4aedc5 | 271 | { return false; } |
226ec5a7 | 272 | virtual bool Stop() |
ff4aedc5 RN |
273 | { return false; } |
274 | ||
226ec5a7 | 275 | virtual bool Load(const wxString& WXUNUSED(fileName)) |
ff4aedc5 | 276 | { return false; } |
226ec5a7 | 277 | virtual bool Load(const wxURI& WXUNUSED(location)) |
ff4aedc5 RN |
278 | { return false; } |
279 | ||
226ec5a7 | 280 | virtual bool SetPosition(wxLongLong WXUNUSED(where)) |
ff4aedc5 | 281 | { return 0; } |
226ec5a7 | 282 | virtual wxLongLong GetPosition() |
ff4aedc5 | 283 | { return 0; } |
226ec5a7 | 284 | virtual wxLongLong GetDuration() |
ff4aedc5 RN |
285 | { return 0; } |
286 | ||
226ec5a7 WS |
287 | virtual void Move(int WXUNUSED(x), int WXUNUSED(y), |
288 | int WXUNUSED(w), int WXUNUSED(h)) | |
ff4aedc5 | 289 | { } |
226ec5a7 | 290 | virtual wxSize GetVideoSize() const |
c47addef | 291 | { return wxSize(0,0); } |
ff4aedc5 | 292 | |
226ec5a7 | 293 | virtual double GetPlaybackRate() |
ff4aedc5 | 294 | { return 0.0; } |
226ec5a7 | 295 | virtual bool SetPlaybackRate(double WXUNUSED(dRate)) |
ff4aedc5 RN |
296 | { return false; } |
297 | ||
298 | virtual wxMediaState GetState() | |
299 | { return wxMEDIASTATE_STOPPED; } | |
300 | ||
6f8c67e7 JS |
301 | virtual double GetVolume() |
302 | { return 0.0; } | |
303 | virtual bool SetVolume(double WXUNUSED(dVolume)) | |
304 | { return false; } | |
305 | ||
c5191fbd VZ |
306 | virtual bool Load(const wxURI& WXUNUSED(location), |
307 | const wxURI& WXUNUSED(proxy)) | |
308 | { return false; } | |
309 | ||
310 | virtual bool ShowPlayerControls( | |
311 | wxMediaCtrlPlayerControls WXUNUSED(flags)) | |
312 | { return false; } | |
313 | virtual bool IsInterfaceShown() | |
314 | { return false; } | |
315 | ||
316 | virtual wxLongLong GetDownloadProgress() | |
317 | { return 0; } | |
318 | virtual wxLongLong GetDownloadTotal() | |
319 | { return 0; } | |
320 | ||
0c81ef7f SC |
321 | virtual void MacVisibilityChanged() |
322 | { } | |
07323ed6 RN |
323 | virtual void RESERVED9() {} |
324 | ||
3839f37e | 325 | DECLARE_DYNAMIC_CLASS(wxMediaBackend) |
ff4aedc5 RN |
326 | }; |
327 | ||
bf354396 | 328 | |
c058cafa | 329 | //Our events |
9b11752c VZ |
330 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_MEDIA, wxEVT_MEDIA_FINISHED, wxMediaEvent ); |
331 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_MEDIA, wxEVT_MEDIA_STOP, wxMediaEvent ); | |
ff4aedc5 RN |
332 | |
333 | //Function type(s) our events need | |
334 | typedef void (wxEvtHandler::*wxMediaEventFunction)(wxMediaEvent&); | |
335 | ||
4153a503 | 336 | #define wxMediaEventHandler(func) \ |
3c778901 | 337 | wxEVENT_HANDLER_CAST(wxMediaEventFunction, func) |
4153a503 | 338 | |
ff4aedc5 | 339 | //Macro for usage with message maps |
a0e9a5df FM |
340 | #define EVT_MEDIA_FINISHED(winid, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_MEDIA_FINISHED, winid, wxID_ANY, wxMediaEventHandler(fn), NULL ), |
341 | #define EVT_MEDIA_STOP(winid, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_MEDIA_STOP, winid, wxID_ANY, wxMediaEventHandler(fn), NULL ), | |
557002cf | 342 | |
9b11752c | 343 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_MEDIA, wxEVT_MEDIA_LOADED, wxMediaEvent ); |
a0e9a5df | 344 | #define EVT_MEDIA_LOADED(winid, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_MEDIA_LOADED, winid, wxID_ANY, wxMediaEventHandler(fn), NULL ), |
557002cf | 345 | |
9b11752c VZ |
346 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_MEDIA, wxEVT_MEDIA_STATECHANGED, wxMediaEvent ); |
347 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_MEDIA, wxEVT_MEDIA_PLAY, wxMediaEvent ); | |
348 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_MEDIA, wxEVT_MEDIA_PAUSE, wxMediaEvent ); | |
a0e9a5df FM |
349 | #define EVT_MEDIA_STATECHANGED(winid, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_MEDIA_STATECHANGED, winid, wxID_ANY, wxMediaEventHandler(fn), NULL ), |
350 | #define EVT_MEDIA_PLAY(winid, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_MEDIA_PLAY, winid, wxID_ANY, wxMediaEventHandler(fn), NULL ), | |
351 | #define EVT_MEDIA_PAUSE(winid, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_MEDIA_PAUSE, winid, wxID_ANY, wxMediaEventHandler(fn), NULL ), | |
c5191fbd | 352 | |
bf354396 VZ |
353 | // ---------------------------------------------------------------------------- |
354 | // common backend base class used by many other backends | |
355 | // ---------------------------------------------------------------------------- | |
356 | ||
357 | class WXDLLIMPEXP_MEDIA wxMediaBackendCommonBase : public wxMediaBackend | |
358 | { | |
359 | public: | |
360 | // add a pending wxMediaEvent of the given type | |
361 | void QueueEvent(wxEventType evtType); | |
362 | ||
363 | // notify that the movie playback is finished | |
557002cf VZ |
364 | void QueueFinishEvent() |
365 | { | |
557002cf | 366 | QueueEvent(wxEVT_MEDIA_STATECHANGED); |
557002cf VZ |
367 | QueueEvent(wxEVT_MEDIA_FINISHED); |
368 | } | |
bf354396 VZ |
369 | |
370 | // send the stop event and return true if it hasn't been vetoed | |
371 | bool SendStopEvent(); | |
372 | ||
557002cf VZ |
373 | // Queue pause event |
374 | void QueuePlayEvent(); | |
375 | ||
376 | // Queue pause event | |
377 | void QueuePauseEvent(); | |
378 | ||
379 | // Queue stop event (no veto) | |
380 | void QueueStopEvent(); | |
381 | ||
bf354396 VZ |
382 | protected: |
383 | // call this when the movie size has changed but not because it has just | |
384 | // been loaded (in this case, call NotifyMovieLoaded() below) | |
385 | void NotifyMovieSizeChanged(); | |
386 | ||
387 | // call this when the movie is fully loaded | |
388 | void NotifyMovieLoaded(); | |
389 | ||
390 | ||
391 | wxMediaCtrl *m_ctrl; // parent control | |
392 | }; | |
393 | ||
ff4aedc5 | 394 | // ---------------------------------------------------------------------------- |
05e66a70 | 395 | // End compilation guard |
ff4aedc5 RN |
396 | // ---------------------------------------------------------------------------- |
397 | #endif // wxUSE_MEDIACTRL | |
398 | ||
399 | // ---------------------------------------------------------------------------- | |
400 | // End header guard and header itself | |
401 | // ---------------------------------------------------------------------------- | |
402 | #endif // _WX_MEDIACTRL_H_ | |
403 | ||
404 |