]> git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/mediactrl.cpp
Merged wxRichTextAttr and wxTextAttrEx into wxTextAttr, and added a font table
[wxWidgets.git] / src / mac / carbon / mediactrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/mediactrl.cpp
3 // Purpose: Built-in Media Backends for Mac
4 // Author: Ryan Norton <wxprojects@comcast.net>
5 // Modified by:
6 // Created: 11/07/04
7 // RCS-ID: $Id$
8 // Copyright: (c) 2004-2006 Ryan Norton
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13 // OK, a casual overseer of this file may wonder why we don't use
14 // either CreateMovieControl or HIMovieView...
15 //
16 // CreateMovieControl
17 // 1) Need to dispose and create each time a new movie is loaded
18 // 2) Not that many real advantages
19 // 3) Progressively buggier in higher OSX versions
20 // (see main.c of QTCarbonShell sample for details)
21 // HIMovieView
22 // 1) Crashes on destruction in ALL cases on quite a few systems!
23 // (With the only real "alternative" is to simply not
24 // dispose of it and let it leak...)
25 // 2) Massive refreshing bugs with its movie controller between
26 // movies
27 //
28 // At one point we had a complete implementation for CreateMovieControl
29 // and on my (RN) local copy I had one for HIMovieView - but they
30 // were simply deemed to be too buggy/unuseful. HIMovieView could
31 // have been useful as well because it uses OpenGL contexts instead
32 // of GWorlds. Perhaps someday when someone comes out with some
33 // ingenious workarounds :).
34 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35
36 // For compilers that support precompilation, includes "wx.h".
37 #include "wx/wxprec.h"
38
39 #if wxUSE_MEDIACTRL
40
41 #include "wx/mediactrl.h"
42
43 #ifndef WX_PRECOMP
44 #include "wx/log.h"
45 #include "wx/timer.h"
46 #endif
47
48 // uma is for wxMacFSSpec
49 #include "wx/mac/uma.h"
50
51 // standard QT stuff
52 #ifndef __DARWIN__
53 #include <Movies.h>
54 #include <Gestalt.h>
55 #include <QuickTimeComponents.h>
56 #else
57 #include <QuickTime/QuickTimeComponents.h>
58 #endif
59
60 //---------------------------------------------------------------------------
61 // Height and Width of movie controller in the movie control (apple samples)
62 //---------------------------------------------------------------------------
63 #define wxMCWIDTH 320
64 #define wxMCHEIGHT 16
65
66 //===========================================================================
67 // BACKEND DECLARATIONS
68 //===========================================================================
69
70 //---------------------------------------------------------------------------
71 // wxQTMediaBackend
72 //---------------------------------------------------------------------------
73
74 class WXDLLIMPEXP_MEDIA wxQTMediaBackend : public wxMediaBackendCommonBase
75 {
76 public:
77 wxQTMediaBackend();
78 virtual ~wxQTMediaBackend();
79
80 virtual bool CreateControl(wxControl* ctrl, wxWindow* parent,
81 wxWindowID id,
82 const wxPoint& pos,
83 const wxSize& size,
84 long style,
85 const wxValidator& validator,
86 const wxString& name);
87
88 virtual bool Load(const wxString& fileName);
89 virtual bool Load(const wxURI& location);
90
91 virtual bool Play();
92 virtual bool Pause();
93 virtual bool Stop();
94
95 virtual wxMediaState GetState();
96
97 virtual bool SetPosition(wxLongLong where);
98 virtual wxLongLong GetPosition();
99 virtual wxLongLong GetDuration();
100
101 virtual void Move(int x, int y, int w, int h);
102 wxSize GetVideoSize() const;
103
104 virtual double GetPlaybackRate();
105 virtual bool SetPlaybackRate(double dRate);
106
107 virtual double GetVolume();
108 virtual bool SetVolume(double);
109
110 void Cleanup();
111 void FinishLoad();
112
113 virtual bool ShowPlayerControls(wxMediaCtrlPlayerControls flags);
114
115 virtual wxLongLong GetDownloadProgress();
116 virtual wxLongLong GetDownloadTotal();
117
118 virtual void MacVisibilityChanged();
119
120 //
121 // ------ Implementation from now on --------
122 //
123 bool DoPause();
124 bool DoStop();
125
126 void DoLoadBestSize();
127 void DoSetControllerVisible(wxMediaCtrlPlayerControls flags);
128
129 wxLongLong GetDataSizeFromStart(TimeValue end);
130
131 Boolean IsQuickTime4Installed();
132 void DoNewMovieController();
133
134 static pascal void PPRMProc(
135 Movie theMovie, OSErr theErr, void* theRefCon);
136
137 //TODO: Last param actually long - does this work on 64bit machines?
138 static pascal Boolean MCFilterProc(MovieController theController,
139 short action, void *params, long refCon);
140
141 static pascal OSStatus WindowEventHandler(
142 EventHandlerCallRef inHandlerCallRef,
143 EventRef inEvent, void *inUserData );
144
145 wxSize m_bestSize; // Original movie size
146 Movie m_movie; // Movie instance
147 bool m_bPlaying; // Whether media is playing or not
148 class wxTimer* m_timer; // Timer for streaming the movie
149 MovieController m_mc; // MovieController instance
150 wxMediaCtrlPlayerControls m_interfaceflags; // Saved interface flags
151
152 // Event handlers and UPPs/Callbacks
153 EventHandlerRef m_windowEventHandler;
154 EventHandlerUPP m_windowUPP;
155
156 MoviePrePrerollCompleteUPP m_preprerollupp;
157 MCActionFilterWithRefConUPP m_mcactionupp;
158
159 GWorldPtr m_movieWorld; //Offscreen movie GWorld
160
161 friend class wxQTMediaEvtHandler;
162
163 DECLARE_DYNAMIC_CLASS(wxQTMediaBackend)
164 };
165
166 // helper to hijack background erasing for the QT window
167 class WXDLLIMPEXP_MEDIA wxQTMediaEvtHandler : public wxEvtHandler
168 {
169 public:
170 wxQTMediaEvtHandler(wxQTMediaBackend *qtb)
171 {
172 m_qtb = qtb;
173
174 qtb->m_ctrl->Connect(
175 qtb->m_ctrl->GetId(), wxEVT_ERASE_BACKGROUND,
176 wxEraseEventHandler(wxQTMediaEvtHandler::OnEraseBackground),
177 NULL, this);
178 }
179
180 void OnEraseBackground(wxEraseEvent& event);
181
182 private:
183 wxQTMediaBackend *m_qtb;
184
185 DECLARE_NO_COPY_CLASS(wxQTMediaEvtHandler)
186 };
187
188 //===========================================================================
189 // IMPLEMENTATION
190 //===========================================================================
191
192
193 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
194 //
195 // wxQTMediaBackend
196 //
197 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
198
199 IMPLEMENT_DYNAMIC_CLASS(wxQTMediaBackend, wxMediaBackend)
200
201 //Time between timer calls - this is the Apple recommondation to the TCL
202 //team I believe
203 #define MOVIE_DELAY 20
204
205 //---------------------------------------------------------------------------
206 // wxQTMediaLoadTimer
207 //
208 // QT, esp. QT for Windows is very picky about how you go about
209 // async loading. If you were to go through a Windows message loop
210 // or a MoviesTask or both and then check the movie load state
211 // it would still return 1000 (loading)... even (pre)prerolling doesn't
212 // help. However, making a load timer like this works
213 //---------------------------------------------------------------------------
214 class wxQTMediaLoadTimer : public wxTimer
215 {
216 public:
217 wxQTMediaLoadTimer(wxQTMediaBackend* parent) :
218 m_parent(parent) {}
219
220 void Notify()
221 {
222 ::MCIdle(m_parent->m_mc);
223
224 // kMovieLoadStatePlayable is not enough on MAC:
225 // it plays, but IsMovieDone might return true (!)
226 // sure we need to wait until kMovieLoadStatePlaythroughOK
227 if (::GetMovieLoadState(m_parent->m_movie) >= 20000)
228 {
229 m_parent->FinishLoad();
230 delete this;
231 }
232 }
233
234 protected:
235 wxQTMediaBackend *m_parent; // Backend pointer
236 };
237
238 // --------------------------------------------------------------------------
239 // wxQTMediaPlayTimer - Handle Asyncronous Playing
240 //
241 // 1) Checks to see if the movie is done, and if not continues
242 // streaming the movie
243 // 2) Sends the wxEVT_MEDIA_STOP event if we have reached the end of
244 // the movie.
245 // --------------------------------------------------------------------------
246 class wxQTMediaPlayTimer : public wxTimer
247 {
248 public:
249 wxQTMediaPlayTimer(wxQTMediaBackend* parent) :
250 m_parent(parent) {}
251
252 void Notify()
253 {
254 //
255 // OK, a little explaining - basically originally
256 // we only called MoviesTask if the movie was actually
257 // playing (not paused or stopped)... this was before
258 // we realized MoviesTask actually handles repainting
259 // of the current frame - so if you were to resize
260 // or something it would previously not redraw that
261 // portion of the movie.
262 //
263 // So now we call MoviesTask always so that it repaints
264 // correctly.
265 //
266 ::MCIdle(m_parent->m_mc);
267
268 //
269 // Handle the stop event - if the movie has reached
270 // the end, notify our handler
271 //
272 if (::IsMovieDone(m_parent->m_movie))
273 {
274 if ( m_parent->SendStopEvent() )
275 {
276 m_parent->Stop();
277 wxASSERT(::GetMoviesError() == noErr);
278
279 m_parent->QueueFinishEvent();
280 }
281 }
282 }
283
284 protected:
285 wxQTMediaBackend* m_parent; // Backend pointer
286 };
287
288
289 //---------------------------------------------------------------------------
290 // wxQTMediaBackend Constructor
291 //
292 // Sets m_timer to NULL signifying we havn't loaded anything yet
293 //---------------------------------------------------------------------------
294 wxQTMediaBackend::wxQTMediaBackend()
295 : m_movie(NULL), m_bPlaying(false), m_timer(NULL)
296 , m_mc(NULL), m_interfaceflags(wxMEDIACTRLPLAYERCONTROLS_NONE)
297 , m_preprerollupp(NULL), m_movieWorld(NULL)
298 {
299 }
300
301 //---------------------------------------------------------------------------
302 // wxQTMediaBackend Destructor
303 //
304 // 1) Cleans up the QuickTime movie instance
305 // 2) Decrements the QuickTime reference counter - if this reaches
306 // 0, QuickTime shuts down
307 // 3) Decrements the QuickTime Windows Media Layer reference counter -
308 // if this reaches 0, QuickTime shuts down the Windows Media Layer
309 //---------------------------------------------------------------------------
310 wxQTMediaBackend::~wxQTMediaBackend()
311 {
312 if (m_movie)
313 Cleanup();
314
315 // Cleanup for moviecontroller
316 if (m_mc)
317 {
318 // destroy wxQTMediaEvtHandler we pushed on it
319 m_ctrl->PopEventHandler(true);
320 RemoveEventHandler(m_windowEventHandler);
321 DisposeEventHandlerUPP(m_windowUPP);
322
323 // Dispose of the movie controller
324 ::DisposeMovieController(m_mc);
325 m_mc = NULL;
326
327 // Dispose of offscreen GWorld
328 ::DisposeGWorld(m_movieWorld);
329 }
330
331 // Note that ExitMovies() is not necessary...
332 ExitMovies();
333 }
334
335 //---------------------------------------------------------------------------
336 // wxQTMediaBackend::CreateControl
337 //
338 // 1) Intializes QuickTime
339 // 2) Creates the control window
340 //---------------------------------------------------------------------------
341 bool wxQTMediaBackend::CreateControl(
342 wxControl* ctrl,
343 wxWindow* parent,
344 wxWindowID id,
345 const wxPoint& pos,
346 const wxSize& size,
347 long style,
348 const wxValidator& validator,
349 const wxString& name)
350 {
351 if (!IsQuickTime4Installed())
352 return false;
353
354 EnterMovies();
355
356 wxMediaCtrl* mediactrl = (wxMediaCtrl*)ctrl;
357
358 //
359 // Create window
360 // By default wxWindow(s) is created with a border -
361 // so we need to get rid of those
362 //
363 // Since we don't have a child window like most other
364 // backends, we don't need wxCLIP_CHILDREN
365 //
366 if ( !mediactrl->wxControl::Create(
367 parent, id, pos, size,
368 wxWindow::MacRemoveBordersFromStyle(style),
369 validator, name))
370 {
371 return false;
372 }
373
374 #if wxUSE_VALIDATORS
375 mediactrl->SetValidator(validator);
376 #endif
377
378 m_ctrl = mediactrl;
379 return true;
380 }
381
382 //---------------------------------------------------------------------------
383 // wxQTMediaBackend::IsQuickTime4Installed
384 //
385 // Determines whether version 4 of QT is installed
386 // (Pretty much for Classic only)
387 //---------------------------------------------------------------------------
388 Boolean wxQTMediaBackend::IsQuickTime4Installed()
389 {
390 OSErr error;
391 long result;
392
393 error = Gestalt(gestaltQuickTime, &result);
394 return (error == noErr) && (((result >> 16) & 0xffff) >= 0x0400);
395 }
396
397 //---------------------------------------------------------------------------
398 // wxQTMediaBackend::Load (file version)
399 //
400 // 1) Get an FSSpec from the Windows path name
401 // 2) Open the movie
402 // 3) Obtain the movie instance from the movie resource
403 // 4) Close the movie resource
404 // 5) Finish loading
405 //---------------------------------------------------------------------------
406 bool wxQTMediaBackend::Load(const wxString& fileName)
407 {
408 if (m_movie)
409 Cleanup();
410
411 ::ClearMoviesStickyError(); // clear previous errors so
412 // GetMoviesStickyError is useful
413
414 OSErr err = noErr;
415 short movieResFile;
416 FSSpec sfFile;
417
418 wxMacFilename2FSSpec( fileName, &sfFile );
419 if (OpenMovieFile( &sfFile, &movieResFile, fsRdPerm ) != noErr)
420 return false;
421
422 short movieResID = 0;
423 Str255 movieName;
424
425 err = NewMovieFromFile(
426 &m_movie,
427 movieResFile,
428 &movieResID,
429 movieName,
430 newMovieActive,
431 NULL); // wasChanged
432
433 // Do not use ::GetMoviesStickyError() here because it returns -2009
434 // a.k.a. invalid track on valid mpegs
435 if (err == noErr && ::GetMoviesError() == noErr)
436 {
437 ::CloseMovieFile(movieResFile);
438
439 // Create movie controller/control
440 DoNewMovieController();
441
442 FinishLoad();
443 return true;
444 }
445
446 return false;
447 }
448
449 //---------------------------------------------------------------------------
450 // wxQTMediaBackend::Load (URL Version)
451 //
452 // 1) Build an escaped URI from location
453 // 2) Create a handle to store the URI string
454 // 3) Put the URI string inside the handle
455 // 4) Make a QuickTime URL data ref from the handle with the URI in it
456 // 5) Clean up the URI string handle
457 // 6) Do some prerolling
458 // 7) Finish Loading
459 //---------------------------------------------------------------------------
460 bool wxQTMediaBackend::Load(const wxURI& location)
461 {
462 if (m_movie)
463 Cleanup();
464
465 ::ClearMoviesStickyError(); // clear previous errors so
466 // GetMoviesStickyError is useful
467
468 wxString theURI = location.BuildURI();
469 OSErr err;
470
471 size_t len;
472 const char* theURIString;
473
474 #if wxUSE_UNICODE
475 wxCharBuffer buf = wxConvLocal.cWC2MB(theURI, theURI.length(), &len);
476 theURIString = buf;
477 #else
478 theURIString = theURI;
479 len = theURI.length();
480 #endif
481
482 Handle theHandle = ::NewHandleClear(len + 1);
483 wxASSERT(theHandle);
484
485 ::BlockMoveData(theURIString, *theHandle, len + 1);
486
487 // create the movie from the handle that refers to the URI
488 err = ::NewMovieFromDataRef(
489 &m_movie,
490 newMovieActive | newMovieAsyncOK /* | newMovieIdleImportOK*/,
491 NULL, theHandle,
492 URLDataHandlerSubType);
493
494 ::DisposeHandle(theHandle);
495
496 if (err == noErr && ::GetMoviesStickyError() == noErr)
497 {
498 // Movie controller resets prerolling, so we must create first
499 DoNewMovieController();
500
501 long timeNow;
502 Fixed playRate;
503
504 timeNow = ::GetMovieTime(m_movie, NULL);
505 wxASSERT(::GetMoviesError() == noErr);
506
507 playRate = ::GetMoviePreferredRate(m_movie);
508 wxASSERT(::GetMoviesError() == noErr);
509
510 //
511 // Note that the callback here is optional,
512 // but without it PrePrerollMovie can be buggy
513 // (see Apple ml). Also, some may wonder
514 // why we need this at all - this is because
515 // Apple docs say QuickTime streamed movies
516 // require it if you don't use a Movie Controller,
517 // which we don't by default.
518 //
519 m_preprerollupp = wxQTMediaBackend::PPRMProc;
520 ::PrePrerollMovie( m_movie, timeNow, playRate,
521 m_preprerollupp, (void*)this);
522
523 return true;
524 }
525
526 return false;
527 }
528
529 //---------------------------------------------------------------------------
530 // wxQTMediaBackend::DoNewMovieController
531 //
532 // Attaches movie to moviecontroller or creates moviecontroller
533 // if not created yet
534 //---------------------------------------------------------------------------
535 void wxQTMediaBackend::DoNewMovieController()
536 {
537 if (!m_mc)
538 {
539 // Get top level window ref for some mac functions
540 WindowRef wrTLW = (WindowRef) m_ctrl->MacGetTopLevelWindowRef();
541
542 // MovieController not set up yet, so we need to create a new one.
543 // You have to pass a valid movie to NewMovieController, evidently
544 ::SetMovieGWorld(m_movie,
545 (CGrafPtr) GetWindowPort(wrTLW),
546 NULL);
547 wxASSERT(::GetMoviesError() == noErr);
548
549 Rect bounds = wxMacGetBoundsForControl(
550 m_ctrl,
551 m_ctrl->GetPosition(),
552 m_ctrl->GetSize());
553
554 m_mc = ::NewMovieController(
555 m_movie, &bounds,
556 mcTopLeftMovie | mcNotVisible /* | mcWithFrame */ );
557 wxASSERT(::GetMoviesError() == noErr);
558
559 ::MCDoAction(m_mc, 32, (void*)true); // mcActionSetKeysEnabled
560 wxASSERT(::GetMoviesError() == noErr);
561
562 // Setup a callback so we can tell when the user presses
563 // play on the player controls
564 m_mcactionupp = wxQTMediaBackend::MCFilterProc;
565 ::MCSetActionFilterWithRefCon( m_mc, m_mcactionupp, (long)this );
566 wxASSERT(::GetMoviesError() == noErr);
567
568 // Part of a suggestion from Greg Hazel to repaint movie when idle
569 m_ctrl->PushEventHandler(new wxQTMediaEvtHandler(this));
570
571 // Create offscreen GWorld for where to "show" when window is hidden
572 Rect worldRect;
573 worldRect.left = worldRect.top = 0;
574 worldRect.right = worldRect.bottom = 1;
575 ::NewGWorld(&m_movieWorld, 0, &worldRect, NULL, NULL, 0);
576
577 // Catch window messages:
578 // if we do not do this and if the user clicks the play
579 // button on the controller, for instance, nothing will happen...
580 EventTypeSpec theWindowEventTypes[] =
581 {
582 { kEventClassMouse, kEventMouseDown },
583 { kEventClassMouse, kEventMouseUp },
584 { kEventClassMouse, kEventMouseDragged },
585 { kEventClassKeyboard, kEventRawKeyDown },
586 { kEventClassKeyboard, kEventRawKeyRepeat },
587 { kEventClassKeyboard, kEventRawKeyUp },
588 { kEventClassWindow, kEventWindowUpdate },
589 { kEventClassWindow, kEventWindowActivated },
590 { kEventClassWindow, kEventWindowDeactivated }
591 };
592 m_windowUPP =
593 NewEventHandlerUPP( wxQTMediaBackend::WindowEventHandler );
594 InstallWindowEventHandler(
595 wrTLW,
596 m_windowUPP,
597 GetEventTypeCount( theWindowEventTypes ), theWindowEventTypes,
598 this,
599 &m_windowEventHandler );
600 }
601 else
602 {
603 // MovieController already created:
604 // Just change the movie in it and we're good to go
605 Point thePoint;
606 thePoint.h = thePoint.v = 0;
607 ::MCSetMovie(m_mc, m_movie,
608 (WindowRef)m_ctrl->MacGetTopLevelWindowRef(),
609 thePoint);
610 wxASSERT(::GetMoviesError() == noErr);
611 }
612 }
613
614 //---------------------------------------------------------------------------
615 // wxQTMediaBackend::FinishLoad
616 //
617 // Performs operations after a movie ready to play/loaded.
618 //---------------------------------------------------------------------------
619 void wxQTMediaBackend::FinishLoad()
620 {
621 // get the real size of the movie
622 DoLoadBestSize();
623
624 // show the player controls if the user wants to
625 if (m_interfaceflags)
626 DoSetControllerVisible(m_interfaceflags);
627
628 // we want millisecond precision
629 ::SetMovieTimeScale(m_movie, 1000);
630 wxASSERT(::GetMoviesError() == noErr);
631
632 // start movie progress timer
633 m_timer = new wxQTMediaPlayTimer(this);
634 wxASSERT(m_timer);
635 m_timer->Start(MOVIE_DELAY, wxTIMER_CONTINUOUS);
636
637 // send loaded event and refresh size
638 NotifyMovieLoaded();
639 }
640
641 //---------------------------------------------------------------------------
642 // wxQTMediaBackend::DoLoadBestSize
643 //
644 // Sets the best size of the control from the real size of the movie
645 //---------------------------------------------------------------------------
646 void wxQTMediaBackend::DoLoadBestSize()
647 {
648 // get the real size of the movie
649 Rect outRect;
650 ::GetMovieNaturalBoundsRect(m_movie, &outRect);
651 wxASSERT(::GetMoviesError() == noErr);
652
653 // determine best size
654 m_bestSize.x = outRect.right - outRect.left;
655 m_bestSize.y = outRect.bottom - outRect.top;
656 }
657
658 //---------------------------------------------------------------------------
659 // wxQTMediaBackend::Play
660 //
661 // Start the QT movie
662 // (Apple recommends mcActionPrerollAndPlay but that's QT 4.1+)
663 //---------------------------------------------------------------------------
664 bool wxQTMediaBackend::Play()
665 {
666 Fixed fixRate = (Fixed) (wxQTMediaBackend::GetPlaybackRate() * 0x10000);
667 if (!fixRate)
668 fixRate = ::GetMoviePreferredRate(m_movie);
669
670 wxASSERT(fixRate != 0);
671
672 if (!m_bPlaying)
673 ::MCDoAction( m_mc, 8 /* mcActionPlay */, (void*) fixRate);
674
675 bool result = (::GetMoviesError() == noErr);
676 if (result)
677 {
678 m_bPlaying = true;
679 QueuePlayEvent();
680 }
681
682 return result;
683 }
684
685 //---------------------------------------------------------------------------
686 // wxQTMediaBackend::Pause
687 //
688 // Stop the movie
689 //---------------------------------------------------------------------------
690 bool wxQTMediaBackend::DoPause()
691 {
692 // Stop the movie A.K.A. ::StopMovie(m_movie);
693 if (m_bPlaying)
694 {
695 ::MCDoAction( m_mc, 8 /*mcActionPlay*/, (void *) 0);
696 m_bPlaying = false;
697 return ::GetMoviesError() == noErr;
698 }
699
700 // already paused
701 return true;
702 }
703
704 bool wxQTMediaBackend::Pause()
705 {
706 bool bSuccess = DoPause();
707 if (bSuccess)
708 this->QueuePauseEvent();
709
710 return bSuccess;
711 }
712
713 //---------------------------------------------------------------------------
714 // wxQTMediaBackend::Stop
715 //
716 // 1) Stop the movie
717 // 2) Seek to the beginning of the movie
718 //---------------------------------------------------------------------------
719 bool wxQTMediaBackend::DoStop()
720 {
721 if (!wxQTMediaBackend::DoPause())
722 return false;
723
724 ::GoToBeginningOfMovie(m_movie);
725 return ::GetMoviesError() == noErr;
726 }
727
728 bool wxQTMediaBackend::Stop()
729 {
730 bool bSuccess = DoStop();
731 if (bSuccess)
732 QueueStopEvent();
733
734 return bSuccess;
735 }
736
737 //---------------------------------------------------------------------------
738 // wxQTMediaBackend::GetPlaybackRate
739 //
740 // 1) Get the movie playback rate from ::GetMovieRate
741 //---------------------------------------------------------------------------
742 double wxQTMediaBackend::GetPlaybackRate()
743 {
744 return ( ((double)::GetMovieRate(m_movie)) / 0x10000);
745 }
746
747 //---------------------------------------------------------------------------
748 // wxQTMediaBackend::SetPlaybackRate
749 //
750 // 1) Convert dRate to Fixed and Set the movie rate through SetMovieRate
751 //---------------------------------------------------------------------------
752 bool wxQTMediaBackend::SetPlaybackRate(double dRate)
753 {
754 ::SetMovieRate(m_movie, (Fixed) (dRate * 0x10000));
755 return ::GetMoviesError() == noErr;
756 }
757
758 //---------------------------------------------------------------------------
759 // wxQTMediaBackend::SetPosition
760 //
761 // 1) Create a time record struct (TimeRecord) with appropriate values
762 // 2) Pass struct to SetMovieTime
763 //---------------------------------------------------------------------------
764 bool wxQTMediaBackend::SetPosition(wxLongLong where)
765 {
766 TimeRecord theTimeRecord;
767 memset(&theTimeRecord, 0, sizeof(TimeRecord));
768 theTimeRecord.value.lo = where.GetValue();
769 theTimeRecord.scale = ::GetMovieTimeScale(m_movie);
770 theTimeRecord.base = ::GetMovieTimeBase(m_movie);
771 ::SetMovieTime(m_movie, &theTimeRecord);
772
773 if (::GetMoviesError() != noErr)
774 return false;
775
776 return true;
777 }
778
779 //---------------------------------------------------------------------------
780 // wxQTMediaBackend::GetPosition
781 //
782 // Calls GetMovieTime
783 //---------------------------------------------------------------------------
784 wxLongLong wxQTMediaBackend::GetPosition()
785 {
786 return ::GetMovieTime(m_movie, NULL);
787 }
788
789 //---------------------------------------------------------------------------
790 // wxQTMediaBackend::GetVolume
791 //
792 // Gets the volume through GetMovieVolume - which returns a 16 bit short -
793 //
794 // +--------+--------+
795 // + (1) + (2) +
796 // +--------+--------+
797 //
798 // (1) first 8 bits are value before decimal
799 // (2) second 8 bits are value after decimal
800 //
801 // Volume ranges from -1.0 (gain but no sound), 0 (no sound and no gain) to
802 // 1 (full gain and sound)
803 //---------------------------------------------------------------------------
804 double wxQTMediaBackend::GetVolume()
805 {
806 short sVolume = ::GetMovieVolume(m_movie);
807
808 if (sVolume & (128 << 8)) //negative - no sound
809 return 0.0;
810
811 return sVolume / 256.0;
812 }
813
814 //---------------------------------------------------------------------------
815 // wxQTMediaBackend::SetVolume
816 //
817 // Sets the volume through SetMovieVolume - which takes a 16 bit short -
818 //
819 // +--------+--------+
820 // + (1) + (2) +
821 // +--------+--------+
822 //
823 // (1) first 8 bits are value before decimal
824 // (2) second 8 bits are value after decimal
825 //
826 // Volume ranges from -1.0 (gain but no sound), 0 (no sound and no gain) to
827 // 1 (full gain and sound)
828 //---------------------------------------------------------------------------
829 bool wxQTMediaBackend::SetVolume(double dVolume)
830 {
831 ::SetMovieVolume(m_movie, (short) (dVolume * 256));
832 return true;
833 }
834
835 //---------------------------------------------------------------------------
836 // wxQTMediaBackend::GetDuration
837 //
838 // Calls GetMovieDuration
839 //---------------------------------------------------------------------------
840 wxLongLong wxQTMediaBackend::GetDuration()
841 {
842 return ::GetMovieDuration(m_movie);
843 }
844
845 //---------------------------------------------------------------------------
846 // wxQTMediaBackend::GetState
847 //
848 // Determines the current state - the timer keeps track of whether or not
849 // we are paused or stopped (if the timer is running we are playing)
850 //---------------------------------------------------------------------------
851 wxMediaState wxQTMediaBackend::GetState()
852 {
853 // Could use
854 // GetMovieActive/IsMovieDone/SetMovieActive
855 // combo if implemented that way
856 if (m_bPlaying)
857 return wxMEDIASTATE_PLAYING;
858 else if (!m_movie || wxQTMediaBackend::GetPosition() == 0)
859 return wxMEDIASTATE_STOPPED;
860 else
861 return wxMEDIASTATE_PAUSED;
862 }
863
864 //---------------------------------------------------------------------------
865 // wxQTMediaBackend::Cleanup
866 //
867 // Diposes of the movie timer, Control if native, and stops and disposes
868 // of the QT movie
869 //---------------------------------------------------------------------------
870 void wxQTMediaBackend::Cleanup()
871 {
872 m_bPlaying = false;
873 if (m_timer)
874 {
875 delete m_timer;
876 m_timer = NULL;
877 }
878
879 // Stop the movie:
880 // Apple samples with CreateMovieControl typically
881 // install a event handler and do this on the dispose
882 // event, but we do it here for simplicity
883 // (It might keep playing for several seconds after
884 // control destruction if not)
885 wxQTMediaBackend::Pause();
886
887 // Dispose of control or remove movie from MovieController
888 Point thePoint;
889 thePoint.h = thePoint.v = 0;
890 ::MCSetVisible(m_mc, false);
891 ::MCSetMovie(m_mc, NULL, NULL, thePoint);
892
893 ::DisposeMovie(m_movie);
894 m_movie = NULL;
895 }
896
897 //---------------------------------------------------------------------------
898 // wxQTMediaBackend::GetVideoSize
899 //
900 // Returns the actual size of the QT movie
901 //---------------------------------------------------------------------------
902 wxSize wxQTMediaBackend::GetVideoSize() const
903 {
904 return m_bestSize;
905 }
906
907 //---------------------------------------------------------------------------
908 // wxQTMediaBackend::Move
909 //
910 // Move the movie controller or movie control
911 // (we need to actually move the movie control manually...)
912 // Top 10 things to do with quicktime in March 93's issue
913 // of DEVELOP - very useful
914 // http:// www.mactech.com/articles/develop/issue_13/031-033_QuickTime_column.html
915 // OLD NOTE: Calling MCSetControllerBoundsRect without detaching
916 // supposively resulted in a crash back then. Current code even
917 // with CFM classic runs fine. If there is ever a problem,
918 // take out the if 0 lines below
919 //---------------------------------------------------------------------------
920 void wxQTMediaBackend::Move(int x, int y, int w, int h)
921 {
922 if (m_timer)
923 {
924 m_ctrl->GetParent()->MacWindowToRootWindow(&x, &y);
925 Rect theRect = {y, x, y + h, x + w};
926
927 #if 0 // see note above
928 ::MCSetControllerAttached(m_mc, false);
929 wxASSERT(::GetMoviesError() == noErr);
930 #endif
931
932 ::MCSetControllerBoundsRect(m_mc, &theRect);
933 wxASSERT(::GetMoviesError() == noErr);
934
935 #if 0 // see note above
936 if (m_interfaceflags)
937 {
938 ::MCSetVisible(m_mc, true);
939 wxASSERT(::GetMoviesError() == noErr);
940 }
941 #endif
942 }
943 }
944
945 //---------------------------------------------------------------------------
946 // wxQTMediaBackend::DoSetControllerVisible
947 //
948 // Utility function that takes care of showing the moviecontroller
949 // and showing/hiding the particular controls on it
950 //---------------------------------------------------------------------------
951 void wxQTMediaBackend::DoSetControllerVisible(
952 wxMediaCtrlPlayerControls flags)
953 {
954 ::MCSetVisible(m_mc, true);
955
956 // Take care of subcontrols
957 if (::GetMoviesError() == noErr)
958 {
959 long mcFlags = 0;
960 ::MCDoAction(m_mc, 39/*mcActionGetFlags*/, (void*)&mcFlags);
961
962 if (::GetMoviesError() == noErr)
963 {
964 mcFlags |= ( //(1<<0)/*mcFlagSuppressMovieFrame*/ |
965 (1 << 3)/*mcFlagsUseWindowPalette*/
966 | ((flags & wxMEDIACTRLPLAYERCONTROLS_STEP)
967 ? 0 : (1 << 1)/*mcFlagSuppressStepButtons*/)
968 | ((flags & wxMEDIACTRLPLAYERCONTROLS_VOLUME)
969 ? 0 : (1 << 2)/*mcFlagSuppressSpeakerButton*/)
970 //if we take care of repainting ourselves
971 // | (1 << 4) /*mcFlagDontInvalidate*/
972 );
973
974 ::MCDoAction(m_mc, 38/*mcActionSetFlags*/, (void*)mcFlags);
975 }
976 }
977
978 // Adjust height and width of best size for movie controller
979 // if the user wants it shown
980 m_bestSize.x = m_bestSize.x > wxMCWIDTH ? m_bestSize.x : wxMCWIDTH;
981 m_bestSize.y += wxMCHEIGHT;
982 }
983
984 //---------------------------------------------------------------------------
985 // wxQTMediaBackend::ShowPlayerControls
986 //
987 // Shows/Hides subcontrols on the media control
988 //---------------------------------------------------------------------------
989 bool wxQTMediaBackend::ShowPlayerControls(wxMediaCtrlPlayerControls flags)
990 {
991 if (!m_mc)
992 return false; // no movie controller...
993
994 bool bSizeChanged = false;
995
996 // if the controller is visible and we want to hide it do so
997 if (m_interfaceflags && !flags)
998 {
999 bSizeChanged = true;
1000 DoLoadBestSize();
1001 ::MCSetVisible(m_mc, false);
1002 }
1003 else if (!m_interfaceflags && flags) // show controller if hidden
1004 {
1005 bSizeChanged = true;
1006 DoSetControllerVisible(flags);
1007 }
1008
1009 // readjust parent sizers
1010 if (bSizeChanged)
1011 {
1012 NotifyMovieSizeChanged();
1013
1014 // remember state in case of loading new media
1015 m_interfaceflags = flags;
1016 }
1017
1018 return ::GetMoviesError() == noErr;
1019 }
1020
1021 //---------------------------------------------------------------------------
1022 // wxQTMediaBackend::GetDataSizeFromStart
1023 //
1024 // Calls either GetMovieDataSize or GetMovieDataSize64 with a value
1025 // of 0 for the starting value
1026 //---------------------------------------------------------------------------
1027 wxLongLong wxQTMediaBackend::GetDataSizeFromStart(TimeValue end)
1028 {
1029 #if 0 // old pre-qt4 way
1030 return ::GetMovieDataSize(m_movie, 0, end)
1031 #else // qt4 way
1032 wide llDataSize;
1033 ::GetMovieDataSize64(m_movie, 0, end, &llDataSize);
1034 return wxLongLong(llDataSize.hi, llDataSize.lo);
1035 #endif
1036 }
1037
1038 //---------------------------------------------------------------------------
1039 // wxQTMediaBackend::GetDownloadProgress
1040 //---------------------------------------------------------------------------
1041 wxLongLong wxQTMediaBackend::GetDownloadProgress()
1042 {
1043 #if 0 // hackish and slow
1044 Handle hMovie = NewHandle(0);
1045 PutMovieIntoHandle(m_movie, hMovie);
1046 long lSize = GetHandleSize(hMovie);
1047 DisposeHandle(hMovie);
1048
1049 return lSize;
1050 #else
1051 TimeValue tv;
1052 if (::GetMaxLoadedTimeInMovie(m_movie, &tv) != noErr)
1053 {
1054 wxLogDebug(wxT("GetMaxLoadedTimeInMovie failed"));
1055 return 0;
1056 }
1057
1058 return wxQTMediaBackend::GetDataSizeFromStart(tv);
1059 #endif
1060 }
1061
1062 //---------------------------------------------------------------------------
1063 // wxQTMediaBackend::GetDownloadTotal
1064 //---------------------------------------------------------------------------
1065 wxLongLong wxQTMediaBackend::GetDownloadTotal()
1066 {
1067 return wxQTMediaBackend::GetDataSizeFromStart(
1068 ::GetMovieDuration(m_movie)
1069 );
1070 }
1071
1072 //---------------------------------------------------------------------------
1073 // wxQTMediaBackend::MacVisibilityChanged
1074 //
1075 // The main problem here is that Windows quicktime, for example,
1076 // renders more directly to a HWND. Mac quicktime does not do this
1077 // and instead renders to the port of the WindowRef/WindowPtr on top
1078 // of everything else/all other windows.
1079 //
1080 // So, for example, if you were to have a CreateTabsControl/wxNotebook
1081 // and change pages, even if you called HIViewSetVisible/SetControlVisibility
1082 // directly the movie will still continue playing on top of everything else
1083 // if you went to a different tab.
1084 //
1085 // Note that another issue, and why we call MCSetControllerPort instead
1086 // of SetMovieGWorld directly, is that in addition to rendering on
1087 // top of everything else the last created controller steals mouse and
1088 // other input from everything else in the window, including other
1089 // controllers. Setting the port of it releases this behaviour.
1090 //---------------------------------------------------------------------------
1091 void wxQTMediaBackend::MacVisibilityChanged()
1092 {
1093 if(!m_mc || !m_ctrl->m_bLoaded)
1094 return; //not initialized yet
1095
1096 if(m_ctrl->MacIsReallyShown())
1097 {
1098 //The window is being shown again, so set the GWorld of the
1099 //controller back to the port of the parent WindowRef
1100 WindowRef wrTLW =
1101 (WindowRef) m_ctrl->MacGetTopLevelWindowRef();
1102
1103 ::MCSetControllerPort(m_mc, (CGrafPtr) GetWindowPort(wrTLW));
1104 wxASSERT(::GetMoviesError() == noErr);
1105 }
1106 else
1107 {
1108 //We are being hidden - set the GWorld of the controller
1109 //to the offscreen GWorld
1110 ::MCSetControllerPort(m_mc, m_movieWorld);
1111 wxASSERT(::GetMoviesError() == noErr);
1112 }
1113 }
1114
1115 //---------------------------------------------------------------------------
1116 // wxQTMediaBackend::OnEraseBackground
1117 //
1118 // Suggestion from Greg Hazel to repaint the movie when idle
1119 // (on pause also)
1120 //---------------------------------------------------------------------------
1121 void wxQTMediaEvtHandler::OnEraseBackground(wxEraseEvent& evt)
1122 {
1123 // Work around Nasty OSX drawing bug:
1124 // http://lists.apple.com/archives/QuickTime-API/2002/Feb/msg00311.html
1125 WindowRef wrTLW = (WindowRef) m_qtb->m_ctrl->MacGetTopLevelWindowRef();
1126
1127 RgnHandle region = ::MCGetControllerBoundsRgn(m_qtb->m_mc);
1128 ::MCInvalidate(m_qtb->m_mc, wrTLW, region);
1129 ::MCIdle(m_qtb->m_mc);
1130 }
1131
1132 //---------------------------------------------------------------------------
1133 // wxQTMediaBackend::PPRMProc (static)
1134 //
1135 // Called when done PrePrerolling the movie.
1136 // Note that in 99% of the cases this does nothing...
1137 // Anyway we set up the loading timer here to tell us when the movie is done
1138 //---------------------------------------------------------------------------
1139 pascal void wxQTMediaBackend::PPRMProc(
1140 Movie theMovie,
1141 OSErr WXUNUSED_UNLESS_DEBUG(theErr),
1142 void* theRefCon)
1143 {
1144 wxASSERT( theMovie );
1145 wxASSERT( theRefCon );
1146 wxASSERT( theErr == noErr );
1147
1148 wxQTMediaBackend* pBE = (wxQTMediaBackend*) theRefCon;
1149
1150 long lTime = ::GetMovieTime(theMovie,NULL);
1151 Fixed rate = ::GetMoviePreferredRate(theMovie);
1152 ::PrerollMovie(theMovie,lTime,rate);
1153 pBE->m_timer = new wxQTMediaLoadTimer(pBE);
1154 pBE->m_timer->Start(MOVIE_DELAY);
1155 }
1156
1157 //---------------------------------------------------------------------------
1158 // wxQTMediaBackend::MCFilterProc (static)
1159 //
1160 // Callback for when the movie controller recieves a message
1161 //---------------------------------------------------------------------------
1162 pascal Boolean wxQTMediaBackend::MCFilterProc(
1163 MovieController WXUNUSED(theController),
1164 short action,
1165 void * WXUNUSED(params),
1166 long refCon)
1167 {
1168 wxQTMediaBackend* pThis = (wxQTMediaBackend*)refCon;
1169
1170 switch (action)
1171 {
1172 case 1:
1173 // don't process idle events
1174 break;
1175
1176 case 8:
1177 // play button triggered - MC will set movie to opposite state
1178 // of current - playing ? paused : playing
1179 pThis->m_bPlaying = !(pThis->m_bPlaying);
1180 break;
1181
1182 default:
1183 break;
1184 }
1185
1186 return 0;
1187 }
1188
1189 //---------------------------------------------------------------------------
1190 // wxQTMediaBackend::WindowEventHandler [static]
1191 //
1192 // Event callback for the top level window of our control that passes
1193 // messages to our moviecontroller so it can receive mouse clicks etc.
1194 //---------------------------------------------------------------------------
1195 pascal OSStatus wxQTMediaBackend::WindowEventHandler(
1196 EventHandlerCallRef inHandlerCallRef,
1197 EventRef inEvent,
1198 void *inUserData)
1199 {
1200 wxQTMediaBackend* be = (wxQTMediaBackend*) inUserData;
1201
1202 // Only process keyboard messages on this window if it actually
1203 // has focus, otherwise it will steal keystrokes from other windows!
1204 // As well as when it is not loaded properly as it
1205 // will crash in MCIsPlayerEvent
1206 if((GetEventClass(inEvent) == kEventClassKeyboard &&
1207 wxWindow::FindFocus() != be->m_ctrl)
1208 || !be->m_ctrl->m_bLoaded)
1209 return eventNotHandledErr;
1210
1211 // Pass the event onto the movie controller
1212 EventRecord theEvent;
1213 ConvertEventRefToEventRecord( inEvent, &theEvent );
1214 OSStatus err;
1215
1216 // TODO: Apple says MCIsPlayerEvent is depreciated and
1217 // MCClick, MCKey, MCIdle etc. should be used
1218 // (RN: Of course that's what they say about
1219 // CreateMovieControl and HIMovieView as well, LOL!)
1220 err = ::MCIsPlayerEvent( be->m_mc, &theEvent );
1221
1222 // Pass on to other event handlers if not handled- i.e. wx
1223 if (err != noErr)
1224 return noErr;
1225 else
1226 return eventNotHandledErr;
1227 }
1228
1229 // in source file that contains stuff you don't directly use
1230 #include "wx/html/forcelnk.h"
1231 FORCE_LINK_ME(basewxmediabackends)
1232
1233 #endif // wxUSE_MEDIACTRL