1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/mediactrl.cpp
3 // Purpose: Built-in Media Backends for Mac
4 // Author: Ryan Norton <wxprojects@comcast.net>
7 // Copyright: (c) 2004-2006 Ryan Norton
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 // OK, a casual overseer of this file may wonder why we don't use
13 // either CreateMovieControl or HIMovieView...
16 // 1) Need to dispose and create each time a new movie is loaded
17 // 2) Not that many real advantages
18 // 3) Progressively buggier in higher OSX versions
19 // (see main.c of QTCarbonShell sample for details)
21 // 1) Crashes on destruction in ALL cases on quite a few systems!
22 // (With the only real "alternative" is to simply not
23 // dispose of it and let it leak...)
24 // 2) Massive refreshing bugs with its movie controller between
27 // At one point we had a complete implementation for CreateMovieControl
28 // and on my (RN) local copy I had one for HIMovieView - but they
29 // were simply deemed to be too buggy/unuseful. HIMovieView could
30 // have been useful as well because it uses OpenGL contexts instead
31 // of GWorlds. Perhaps someday when someone comes out with some
32 // ingenious workarounds :).
33 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35 // For compilers that support precompilation, includes "wx.h".
36 #include "wx/wxprec.h"
40 #include "wx/mediactrl.h"
48 #define USE_QUICKTIME 1
50 #define USE_QUICKTIME 0
55 #include "wx/osx/private.h"
56 #include <QuickTime/QuickTimeComponents.h>
58 //---------------------------------------------------------------------------
59 // Height and Width of movie controller in the movie control (apple samples)
60 //---------------------------------------------------------------------------
64 //===========================================================================
65 // BACKEND DECLARATIONS
66 //===========================================================================
68 //---------------------------------------------------------------------------
70 //---------------------------------------------------------------------------
72 class WXDLLIMPEXP_MEDIA wxQTMediaBackend
: public wxMediaBackendCommonBase
76 virtual ~wxQTMediaBackend();
78 virtual bool CreateControl(wxControl
* ctrl
, wxWindow
* parent
,
83 const wxValidator
& validator
,
84 const wxString
& name
);
86 virtual bool Load(const wxString
& fileName
);
87 virtual bool Load(const wxURI
& location
);
88 virtual bool Load(const wxURI
& location
,
89 const wxURI
& WXUNUSED(proxy
))
91 return Load(location
);
98 virtual wxMediaState
GetState();
100 virtual bool SetPosition(wxLongLong where
);
101 virtual wxLongLong
GetPosition();
102 virtual wxLongLong
GetDuration();
104 virtual void Move(int x
, int y
, int w
, int h
);
105 wxSize
GetVideoSize() const;
107 virtual double GetPlaybackRate();
108 virtual bool SetPlaybackRate(double dRate
);
110 virtual double GetVolume();
111 virtual bool SetVolume(double);
116 virtual bool ShowPlayerControls(wxMediaCtrlPlayerControls flags
);
118 virtual wxLongLong
GetDownloadProgress();
119 virtual wxLongLong
GetDownloadTotal();
121 virtual void MacVisibilityChanged();
124 // ------ Implementation from now on --------
129 void DoLoadBestSize();
130 void DoSetControllerVisible(wxMediaCtrlPlayerControls flags
);
132 wxLongLong
GetDataSizeFromStart(TimeValue end
);
134 Boolean
IsQuickTime4Installed();
135 void DoNewMovieController();
137 static pascal void PPRMProc(
138 Movie theMovie
, OSErr theErr
, void* theRefCon
);
140 //TODO: Last param actually long - does this work on 64bit machines?
141 static pascal Boolean
MCFilterProc(MovieController theController
,
142 short action
, void *params
, long refCon
);
144 static pascal OSStatus
WindowEventHandler(
145 EventHandlerCallRef inHandlerCallRef
,
146 EventRef inEvent
, void *inUserData
);
148 wxSize m_bestSize
; // Original movie size
149 Movie m_movie
; // Movie instance
150 bool m_bPlaying
; // Whether media is playing or not
151 class wxTimer
* m_timer
; // Timer for streaming the movie
152 MovieController m_mc
; // MovieController instance
153 wxMediaCtrlPlayerControls m_interfaceflags
; // Saved interface flags
155 // Event handlers and UPPs/Callbacks
156 EventHandlerRef m_windowEventHandler
;
157 EventHandlerUPP m_windowUPP
;
159 MoviePrePrerollCompleteUPP m_preprerollupp
;
160 MCActionFilterWithRefConUPP m_mcactionupp
;
162 GWorldPtr m_movieWorld
; //Offscreen movie GWorld
164 friend class wxQTMediaEvtHandler
;
166 DECLARE_DYNAMIC_CLASS(wxQTMediaBackend
)
169 // helper to hijack background erasing for the QT window
170 class WXDLLIMPEXP_MEDIA wxQTMediaEvtHandler
: public wxEvtHandler
173 wxQTMediaEvtHandler(wxQTMediaBackend
*qtb
)
177 qtb
->m_ctrl
->Connect(
178 qtb
->m_ctrl
->GetId(), wxEVT_ERASE_BACKGROUND
,
179 wxEraseEventHandler(wxQTMediaEvtHandler::OnEraseBackground
),
183 void OnEraseBackground(wxEraseEvent
& event
);
186 wxQTMediaBackend
*m_qtb
;
188 wxDECLARE_NO_COPY_CLASS(wxQTMediaEvtHandler
);
191 //===========================================================================
193 //===========================================================================
196 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
200 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
202 IMPLEMENT_DYNAMIC_CLASS(wxQTMediaBackend
, wxMediaBackend
)
204 //Time between timer calls - this is the Apple recommondation to the TCL
206 #define MOVIE_DELAY 20
208 //---------------------------------------------------------------------------
209 // wxQTMediaLoadTimer
211 // QT, esp. QT for Windows is very picky about how you go about
212 // async loading. If you were to go through a Windows message loop
213 // or a MoviesTask or both and then check the movie load state
214 // it would still return 1000 (loading)... even (pre)prerolling doesn't
215 // help. However, making a load timer like this works
216 //---------------------------------------------------------------------------
217 class wxQTMediaLoadTimer
: public wxTimer
220 wxQTMediaLoadTimer(wxQTMediaBackend
* parent
) :
225 ::MCIdle(m_parent
->m_mc
);
227 // kMovieLoadStatePlayable is not enough on MAC:
228 // it plays, but IsMovieDone might return true (!)
229 // sure we need to wait until kMovieLoadStatePlaythroughOK
230 if (::GetMovieLoadState(m_parent
->m_movie
) >= 20000)
232 m_parent
->FinishLoad();
238 wxQTMediaBackend
*m_parent
; // Backend pointer
241 // --------------------------------------------------------------------------
242 // wxQTMediaPlayTimer - Handle Asyncronous Playing
244 // 1) Checks to see if the movie is done, and if not continues
245 // streaming the movie
246 // 2) Sends the wxEVT_MEDIA_STOP event if we have reached the end of
248 // --------------------------------------------------------------------------
249 class wxQTMediaPlayTimer
: public wxTimer
252 wxQTMediaPlayTimer(wxQTMediaBackend
* parent
) :
258 // OK, a little explaining - basically originally
259 // we only called MoviesTask if the movie was actually
260 // playing (not paused or stopped)... this was before
261 // we realized MoviesTask actually handles repainting
262 // of the current frame - so if you were to resize
263 // or something it would previously not redraw that
264 // portion of the movie.
266 // So now we call MoviesTask always so that it repaints
269 ::MCIdle(m_parent
->m_mc
);
272 // Handle the stop event - if the movie has reached
273 // the end, notify our handler
275 if (::IsMovieDone(m_parent
->m_movie
))
277 if ( m_parent
->SendStopEvent() )
280 wxASSERT(::GetMoviesError() == noErr
);
282 m_parent
->QueueFinishEvent();
288 wxQTMediaBackend
* m_parent
; // Backend pointer
292 //---------------------------------------------------------------------------
293 // wxQTMediaBackend Constructor
295 // Sets m_timer to NULL signifying we havn't loaded anything yet
296 //---------------------------------------------------------------------------
297 wxQTMediaBackend::wxQTMediaBackend()
298 : m_movie(NULL
), m_bPlaying(false), m_timer(NULL
)
299 , m_mc(NULL
), m_interfaceflags(wxMEDIACTRLPLAYERCONTROLS_NONE
)
300 , m_preprerollupp(NULL
), m_movieWorld(NULL
)
304 //---------------------------------------------------------------------------
305 // wxQTMediaBackend Destructor
307 // 1) Cleans up the QuickTime movie instance
308 // 2) Decrements the QuickTime reference counter - if this reaches
309 // 0, QuickTime shuts down
310 // 3) Decrements the QuickTime Windows Media Layer reference counter -
311 // if this reaches 0, QuickTime shuts down the Windows Media Layer
312 //---------------------------------------------------------------------------
313 wxQTMediaBackend::~wxQTMediaBackend()
318 // Cleanup for moviecontroller
321 // destroy wxQTMediaEvtHandler we pushed on it
322 m_ctrl
->PopEventHandler(true);
323 RemoveEventHandler(m_windowEventHandler
);
324 DisposeEventHandlerUPP(m_windowUPP
);
326 // Dispose of the movie controller
327 ::DisposeMovieController(m_mc
);
330 // Dispose of offscreen GWorld
331 ::DisposeGWorld(m_movieWorld
);
334 // Note that ExitMovies() is not necessary...
338 //---------------------------------------------------------------------------
339 // wxQTMediaBackend::CreateControl
341 // 1) Intializes QuickTime
342 // 2) Creates the control window
343 //---------------------------------------------------------------------------
344 bool wxQTMediaBackend::CreateControl(
351 const wxValidator
& validator
,
352 const wxString
& name
)
354 if (!IsQuickTime4Installed())
359 wxMediaCtrl
* mediactrl
= (wxMediaCtrl
*)ctrl
;
363 // By default wxWindow(s) is created with a border -
364 // so we need to get rid of those
366 // Since we don't have a child window like most other
367 // backends, we don't need wxCLIP_CHILDREN
369 if ( !mediactrl
->wxControl::Create(
370 parent
, id
, pos
, size
,
371 wxWindow::MacRemoveBordersFromStyle(style
),
378 mediactrl
->SetValidator(validator
);
385 //---------------------------------------------------------------------------
386 // wxQTMediaBackend::IsQuickTime4Installed
388 // Determines whether version 4 of QT is installed
389 // (Pretty much for Classic only)
390 //---------------------------------------------------------------------------
391 Boolean
wxQTMediaBackend::IsQuickTime4Installed()
396 error
= Gestalt(gestaltQuickTime
, &result
);
397 return (error
== noErr
) && (((result
>> 16) & 0xffff) >= 0x0400);
400 //---------------------------------------------------------------------------
401 // wxQTMediaBackend::Load (file version)
403 // 1) Get an FSSpec from the Windows path name
405 // 3) Obtain the movie instance from the movie resource
406 // 4) Close the movie resource
408 //---------------------------------------------------------------------------
409 bool wxQTMediaBackend::Load(const wxString
& fileName
)
414 ::ClearMoviesStickyError(); // clear previous errors so
415 // GetMoviesStickyError is useful
421 wxMacFilename2FSSpec( fileName
, &sfFile
);
422 if (OpenMovieFile( &sfFile
, &movieResFile
, fsRdPerm
) != noErr
)
425 short movieResID
= 0;
428 err
= NewMovieFromFile(
436 // Do not use ::GetMoviesStickyError() here because it returns -2009
437 // a.k.a. invalid track on valid mpegs
438 if (err
== noErr
&& ::GetMoviesError() == noErr
)
440 ::CloseMovieFile(movieResFile
);
442 // Create movie controller/control
443 DoNewMovieController();
452 //---------------------------------------------------------------------------
453 // wxQTMediaBackend::Load (URL Version)
455 // 1) Build an escaped URI from location
456 // 2) Create a handle to store the URI string
457 // 3) Put the URI string inside the handle
458 // 4) Make a QuickTime URL data ref from the handle with the URI in it
459 // 5) Clean up the URI string handle
460 // 6) Do some prerolling
462 //---------------------------------------------------------------------------
463 bool wxQTMediaBackend::Load(const wxURI
& location
)
468 ::ClearMoviesStickyError(); // clear previous errors so
469 // GetMoviesStickyError is useful
471 wxString theURI
= location
.BuildURI();
475 const char* theURIString
;
478 wxCharBuffer buf
= wxConvLocal
.cWC2MB(theURI
.wc_str(), theURI
.length(), &len
);
481 theURIString
= theURI
;
482 len
= theURI
.length();
485 Handle theHandle
= ::NewHandleClear(len
+ 1);
488 ::BlockMoveData(theURIString
, *theHandle
, len
+ 1);
490 // create the movie from the handle that refers to the URI
491 err
= ::NewMovieFromDataRef(
493 newMovieActive
| newMovieAsyncOK
/* | newMovieIdleImportOK*/,
495 URLDataHandlerSubType
);
497 ::DisposeHandle(theHandle
);
499 if (err
== noErr
&& ::GetMoviesStickyError() == noErr
)
501 // Movie controller resets prerolling, so we must create first
502 DoNewMovieController();
507 timeNow
= ::GetMovieTime(m_movie
, NULL
);
508 wxASSERT(::GetMoviesError() == noErr
);
510 playRate
= ::GetMoviePreferredRate(m_movie
);
511 wxASSERT(::GetMoviesError() == noErr
);
514 // Note that the callback here is optional,
515 // but without it PrePrerollMovie can be buggy
516 // (see Apple ml). Also, some may wonder
517 // why we need this at all - this is because
518 // Apple docs say QuickTime streamed movies
519 // require it if you don't use a Movie Controller,
520 // which we don't by default.
522 m_preprerollupp
= wxQTMediaBackend::PPRMProc
;
523 ::PrePrerollMovie( m_movie
, timeNow
, playRate
,
524 m_preprerollupp
, (void*)this);
532 //---------------------------------------------------------------------------
533 // wxQTMediaBackend::DoNewMovieController
535 // Attaches movie to moviecontroller or creates moviecontroller
536 // if not created yet
537 //---------------------------------------------------------------------------
538 void wxQTMediaBackend::DoNewMovieController()
542 // Get top level window ref for some mac functions
543 WindowRef wrTLW
= (WindowRef
) m_ctrl
->MacGetTopLevelWindowRef();
545 // MovieController not set up yet, so we need to create a new one.
546 // You have to pass a valid movie to NewMovieController, evidently
547 ::SetMovieGWorld(m_movie
,
548 (CGrafPtr
) GetWindowPort(wrTLW
),
550 wxASSERT(::GetMoviesError() == noErr
);
552 Rect bounds
= wxMacGetBoundsForControl(
554 m_ctrl
->GetPosition(),
557 m_mc
= ::NewMovieController(
559 mcTopLeftMovie
| mcNotVisible
/* | mcWithFrame */ );
560 wxASSERT(::GetMoviesError() == noErr
);
562 ::MCDoAction(m_mc
, 32, (void*)true); // mcActionSetKeysEnabled
563 wxASSERT(::GetMoviesError() == noErr
);
565 // Setup a callback so we can tell when the user presses
566 // play on the player controls
567 m_mcactionupp
= wxQTMediaBackend::MCFilterProc
;
568 ::MCSetActionFilterWithRefCon( m_mc
, m_mcactionupp
, (long)this );
569 wxASSERT(::GetMoviesError() == noErr
);
571 // Part of a suggestion from Greg Hazel to repaint movie when idle
572 m_ctrl
->PushEventHandler(new wxQTMediaEvtHandler(this));
574 // Create offscreen GWorld for where to "show" when window is hidden
576 worldRect
.left
= worldRect
.top
= 0;
577 worldRect
.right
= worldRect
.bottom
= 1;
578 ::NewGWorld(&m_movieWorld
, 0, &worldRect
, NULL
, NULL
, 0);
580 // Catch window messages:
581 // if we do not do this and if the user clicks the play
582 // button on the controller, for instance, nothing will happen...
583 EventTypeSpec theWindowEventTypes
[] =
585 { kEventClassMouse
, kEventMouseDown
},
586 { kEventClassMouse
, kEventMouseUp
},
587 { kEventClassMouse
, kEventMouseDragged
},
588 { kEventClassKeyboard
, kEventRawKeyDown
},
589 { kEventClassKeyboard
, kEventRawKeyRepeat
},
590 { kEventClassKeyboard
, kEventRawKeyUp
},
591 { kEventClassWindow
, kEventWindowUpdate
},
592 { kEventClassWindow
, kEventWindowActivated
},
593 { kEventClassWindow
, kEventWindowDeactivated
}
596 NewEventHandlerUPP( wxQTMediaBackend::WindowEventHandler
);
597 InstallWindowEventHandler(
600 GetEventTypeCount( theWindowEventTypes
), theWindowEventTypes
,
602 &m_windowEventHandler
);
606 // MovieController already created:
607 // Just change the movie in it and we're good to go
609 thePoint
.h
= thePoint
.v
= 0;
610 ::MCSetMovie(m_mc
, m_movie
,
611 (WindowRef
)m_ctrl
->MacGetTopLevelWindowRef(),
613 wxASSERT(::GetMoviesError() == noErr
);
617 //---------------------------------------------------------------------------
618 // wxQTMediaBackend::FinishLoad
620 // Performs operations after a movie ready to play/loaded.
621 //---------------------------------------------------------------------------
622 void wxQTMediaBackend::FinishLoad()
624 // get the real size of the movie
627 // show the player controls if the user wants to
628 if (m_interfaceflags
)
629 DoSetControllerVisible(m_interfaceflags
);
631 // we want millisecond precision
632 ::SetMovieTimeScale(m_movie
, 1000);
633 wxASSERT(::GetMoviesError() == noErr
);
635 // start movie progress timer
636 m_timer
= new wxQTMediaPlayTimer(this);
638 m_timer
->Start(MOVIE_DELAY
, wxTIMER_CONTINUOUS
);
640 // send loaded event and refresh size
644 //---------------------------------------------------------------------------
645 // wxQTMediaBackend::DoLoadBestSize
647 // Sets the best size of the control from the real size of the movie
648 //---------------------------------------------------------------------------
649 void wxQTMediaBackend::DoLoadBestSize()
651 // get the real size of the movie
653 ::GetMovieNaturalBoundsRect(m_movie
, &outRect
);
654 wxASSERT(::GetMoviesError() == noErr
);
656 // determine best size
657 m_bestSize
.x
= outRect
.right
- outRect
.left
;
658 m_bestSize
.y
= outRect
.bottom
- outRect
.top
;
661 //---------------------------------------------------------------------------
662 // wxQTMediaBackend::Play
664 // Start the QT movie
665 // (Apple recommends mcActionPrerollAndPlay but that's QT 4.1+)
666 //---------------------------------------------------------------------------
667 bool wxQTMediaBackend::Play()
669 Fixed fixRate
= (Fixed
) (wxQTMediaBackend::GetPlaybackRate() * 0x10000);
671 fixRate
= ::GetMoviePreferredRate(m_movie
);
673 wxASSERT(fixRate
!= 0);
676 ::MCDoAction( m_mc
, 8 /* mcActionPlay */, (void*) fixRate
);
678 bool result
= (::GetMoviesError() == noErr
);
688 //---------------------------------------------------------------------------
689 // wxQTMediaBackend::Pause
692 //---------------------------------------------------------------------------
693 bool wxQTMediaBackend::DoPause()
695 // Stop the movie A.K.A. ::StopMovie(m_movie);
698 ::MCDoAction( m_mc
, 8 /*mcActionPlay*/, (void *) 0);
700 return ::GetMoviesError() == noErr
;
707 bool wxQTMediaBackend::Pause()
709 bool bSuccess
= DoPause();
711 this->QueuePauseEvent();
716 //---------------------------------------------------------------------------
717 // wxQTMediaBackend::Stop
720 // 2) Seek to the beginning of the movie
721 //---------------------------------------------------------------------------
722 bool wxQTMediaBackend::DoStop()
724 if (!wxQTMediaBackend::DoPause())
727 ::GoToBeginningOfMovie(m_movie
);
728 return ::GetMoviesError() == noErr
;
731 bool wxQTMediaBackend::Stop()
733 bool bSuccess
= DoStop();
740 //---------------------------------------------------------------------------
741 // wxQTMediaBackend::GetPlaybackRate
743 // 1) Get the movie playback rate from ::GetMovieRate
744 //---------------------------------------------------------------------------
745 double wxQTMediaBackend::GetPlaybackRate()
747 return ( ((double)::GetMovieRate(m_movie
)) / 0x10000);
750 //---------------------------------------------------------------------------
751 // wxQTMediaBackend::SetPlaybackRate
753 // 1) Convert dRate to Fixed and Set the movie rate through SetMovieRate
754 //---------------------------------------------------------------------------
755 bool wxQTMediaBackend::SetPlaybackRate(double dRate
)
757 ::SetMovieRate(m_movie
, (Fixed
) (dRate
* 0x10000));
758 return ::GetMoviesError() == noErr
;
761 //---------------------------------------------------------------------------
762 // wxQTMediaBackend::SetPosition
764 // 1) Create a time record struct (TimeRecord) with appropriate values
765 // 2) Pass struct to SetMovieTime
766 //---------------------------------------------------------------------------
767 bool wxQTMediaBackend::SetPosition(wxLongLong where
)
769 TimeRecord theTimeRecord
;
770 memset(&theTimeRecord
, 0, sizeof(TimeRecord
));
771 theTimeRecord
.value
.lo
= where
.GetLo();
772 theTimeRecord
.value
.hi
= where
.GetHi();
773 theTimeRecord
.scale
= ::GetMovieTimeScale(m_movie
);
774 theTimeRecord
.base
= ::GetMovieTimeBase(m_movie
);
775 ::SetMovieTime(m_movie
, &theTimeRecord
);
777 if (::GetMoviesError() != noErr
)
783 //---------------------------------------------------------------------------
784 // wxQTMediaBackend::GetPosition
786 // Calls GetMovieTime
787 //---------------------------------------------------------------------------
788 wxLongLong
wxQTMediaBackend::GetPosition()
790 return ::GetMovieTime(m_movie
, NULL
);
793 //---------------------------------------------------------------------------
794 // wxQTMediaBackend::GetVolume
796 // Gets the volume through GetMovieVolume - which returns a 16 bit short -
798 // +--------+--------+
800 // +--------+--------+
802 // (1) first 8 bits are value before decimal
803 // (2) second 8 bits are value after decimal
805 // Volume ranges from -1.0 (gain but no sound), 0 (no sound and no gain) to
806 // 1 (full gain and sound)
807 //---------------------------------------------------------------------------
808 double wxQTMediaBackend::GetVolume()
810 short sVolume
= ::GetMovieVolume(m_movie
);
812 if (sVolume
& (128 << 8)) //negative - no sound
815 return sVolume
/ 256.0;
818 //---------------------------------------------------------------------------
819 // wxQTMediaBackend::SetVolume
821 // Sets the volume through SetMovieVolume - which takes a 16 bit short -
823 // +--------+--------+
825 // +--------+--------+
827 // (1) first 8 bits are value before decimal
828 // (2) second 8 bits are value after decimal
830 // Volume ranges from -1.0 (gain but no sound), 0 (no sound and no gain) to
831 // 1 (full gain and sound)
832 //---------------------------------------------------------------------------
833 bool wxQTMediaBackend::SetVolume(double dVolume
)
835 ::SetMovieVolume(m_movie
, (short) (dVolume
* 256));
839 //---------------------------------------------------------------------------
840 // wxQTMediaBackend::GetDuration
842 // Calls GetMovieDuration
843 //---------------------------------------------------------------------------
844 wxLongLong
wxQTMediaBackend::GetDuration()
846 return ::GetMovieDuration(m_movie
);
849 //---------------------------------------------------------------------------
850 // wxQTMediaBackend::GetState
852 // Determines the current state - the timer keeps track of whether or not
853 // we are paused or stopped (if the timer is running we are playing)
854 //---------------------------------------------------------------------------
855 wxMediaState
wxQTMediaBackend::GetState()
858 // GetMovieActive/IsMovieDone/SetMovieActive
859 // combo if implemented that way
861 return wxMEDIASTATE_PLAYING
;
862 else if (!m_movie
|| wxQTMediaBackend::GetPosition() == 0)
863 return wxMEDIASTATE_STOPPED
;
865 return wxMEDIASTATE_PAUSED
;
868 //---------------------------------------------------------------------------
869 // wxQTMediaBackend::Cleanup
871 // Diposes of the movie timer, Control if native, and stops and disposes
873 //---------------------------------------------------------------------------
874 void wxQTMediaBackend::Cleanup()
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();
887 // Dispose of control or remove movie from MovieController
889 thePoint
.h
= thePoint
.v
= 0;
890 ::MCSetVisible(m_mc
, false);
891 ::MCSetMovie(m_mc
, NULL
, NULL
, thePoint
);
893 ::DisposeMovie(m_movie
);
897 //---------------------------------------------------------------------------
898 // wxQTMediaBackend::GetVideoSize
900 // Returns the actual size of the QT movie
901 //---------------------------------------------------------------------------
902 wxSize
wxQTMediaBackend::GetVideoSize() const
907 //---------------------------------------------------------------------------
908 // wxQTMediaBackend::Move
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
)
924 m_ctrl
->GetParent()->MacWindowToRootWindow(&x
, &y
);
925 Rect theRect
= {y
, x
, y
+ h
, x
+ w
};
927 #if 0 // see note above
928 ::MCSetControllerAttached(m_mc
, false);
929 wxASSERT(::GetMoviesError() == noErr
);
932 ::MCSetControllerBoundsRect(m_mc
, &theRect
);
933 wxASSERT(::GetMoviesError() == noErr
);
935 #if 0 // see note above
936 if (m_interfaceflags
)
938 ::MCSetVisible(m_mc
, true);
939 wxASSERT(::GetMoviesError() == noErr
);
945 //---------------------------------------------------------------------------
946 // wxQTMediaBackend::DoSetControllerVisible
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
)
954 ::MCSetVisible(m_mc
, true);
956 // Take care of subcontrols
957 if (::GetMoviesError() == noErr
)
960 ::MCDoAction(m_mc
, 39/*mcActionGetFlags*/, (void*)&mcFlags
);
962 if (::GetMoviesError() == noErr
)
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*/
974 ::MCDoAction(m_mc
, 38/*mcActionSetFlags*/, (void*)mcFlags
);
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
;
984 //---------------------------------------------------------------------------
985 // wxQTMediaBackend::ShowPlayerControls
987 // Shows/Hides subcontrols on the media control
988 //---------------------------------------------------------------------------
989 bool wxQTMediaBackend::ShowPlayerControls(wxMediaCtrlPlayerControls flags
)
992 return false; // no movie controller...
994 bool bSizeChanged
= false;
996 // if the controller is visible and we want to hide it do so
997 if (m_interfaceflags
&& !flags
)
1001 ::MCSetVisible(m_mc
, false);
1003 else if (!m_interfaceflags
&& flags
) // show controller if hidden
1005 bSizeChanged
= true;
1006 DoSetControllerVisible(flags
);
1009 // readjust parent sizers
1012 NotifyMovieSizeChanged();
1014 // remember state in case of loading new media
1015 m_interfaceflags
= flags
;
1018 return ::GetMoviesError() == noErr
;
1021 //---------------------------------------------------------------------------
1022 // wxQTMediaBackend::GetDataSizeFromStart
1024 // Calls either GetMovieDataSize or GetMovieDataSize64 with a value
1025 // of 0 for the starting value
1026 //---------------------------------------------------------------------------
1027 wxLongLong
wxQTMediaBackend::GetDataSizeFromStart(TimeValue end
)
1029 #if 0 // old pre-qt4 way
1030 return ::GetMovieDataSize(m_movie
, 0, end
)
1033 ::GetMovieDataSize64(m_movie
, 0, end
, &llDataSize
);
1034 return wxLongLong(llDataSize
.hi
, llDataSize
.lo
);
1038 //---------------------------------------------------------------------------
1039 // wxQTMediaBackend::GetDownloadProgress
1040 //---------------------------------------------------------------------------
1041 wxLongLong
wxQTMediaBackend::GetDownloadProgress()
1043 #if 0 // hackish and slow
1044 Handle hMovie
= NewHandle(0);
1045 PutMovieIntoHandle(m_movie
, hMovie
);
1046 long lSize
= GetHandleSize(hMovie
);
1047 DisposeHandle(hMovie
);
1052 if (::GetMaxLoadedTimeInMovie(m_movie
, &tv
) != noErr
)
1054 wxLogDebug(wxT("GetMaxLoadedTimeInMovie failed"));
1058 return wxQTMediaBackend::GetDataSizeFromStart(tv
);
1062 //---------------------------------------------------------------------------
1063 // wxQTMediaBackend::GetDownloadTotal
1064 //---------------------------------------------------------------------------
1065 wxLongLong
wxQTMediaBackend::GetDownloadTotal()
1067 return wxQTMediaBackend::GetDataSizeFromStart(
1068 ::GetMovieDuration(m_movie
)
1072 //---------------------------------------------------------------------------
1073 // wxQTMediaBackend::MacVisibilityChanged
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.
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.
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()
1093 if(!m_mc
|| !m_ctrl
->m_bLoaded
)
1094 return; //not initialized yet
1096 if(m_ctrl
->IsShownOnScreen())
1098 //The window is being shown again, so set the GWorld of the
1099 //controller back to the port of the parent WindowRef
1101 (WindowRef
) m_ctrl
->MacGetTopLevelWindowRef();
1103 ::MCSetControllerPort(m_mc
, (CGrafPtr
) GetWindowPort(wrTLW
));
1104 wxASSERT(::GetMoviesError() == noErr
);
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
);
1115 //---------------------------------------------------------------------------
1116 // wxQTMediaBackend::OnEraseBackground
1118 // Suggestion from Greg Hazel to repaint the movie when idle
1120 //---------------------------------------------------------------------------
1121 void wxQTMediaEvtHandler::OnEraseBackground(wxEraseEvent
& WXUNUSED(evt
))
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();
1127 RgnHandle region
= ::MCGetControllerBoundsRgn(m_qtb
->m_mc
);
1128 ::MCInvalidate(m_qtb
->m_mc
, wrTLW
, region
);
1129 ::MCIdle(m_qtb
->m_mc
);
1132 //---------------------------------------------------------------------------
1133 // wxQTMediaBackend::PPRMProc (static)
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(
1141 OSErr
WXUNUSED_UNLESS_DEBUG(theErr
),
1144 wxASSERT( theMovie
);
1145 wxASSERT( theRefCon
);
1146 wxASSERT( theErr
== noErr
);
1148 wxQTMediaBackend
* pBE
= (wxQTMediaBackend
*) theRefCon
;
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
);
1157 //---------------------------------------------------------------------------
1158 // wxQTMediaBackend::MCFilterProc (static)
1160 // Callback for when the movie controller receives a message
1161 //---------------------------------------------------------------------------
1162 pascal Boolean
wxQTMediaBackend::MCFilterProc(
1163 MovieController
WXUNUSED(theController
),
1165 void * WXUNUSED(params
),
1168 wxQTMediaBackend
* pThis
= (wxQTMediaBackend
*)refCon
;
1173 // don't process idle events
1177 // play button triggered - MC will set movie to opposite state
1178 // of current - playing ? paused : playing
1179 pThis
->m_bPlaying
= !(pThis
->m_bPlaying
);
1189 //---------------------------------------------------------------------------
1190 // wxQTMediaBackend::WindowEventHandler [static]
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
WXUNUSED(inHandlerCallRef
),
1200 wxQTMediaBackend
* be
= (wxQTMediaBackend
*) inUserData
;
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
;
1211 // Pass the event onto the movie controller
1212 EventRecord theEvent
;
1213 ConvertEventRefToEventRecord( inEvent
, &theEvent
);
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
);
1222 // Pass on to other event handlers if not handled- i.e. wx
1226 return eventNotHandledErr
;
1231 // in source file that contains stuff you don't directly use
1232 #include "wx/html/forcelnk.h"
1233 FORCE_LINK_ME(basewxmediabackends
)
1235 #endif // wxUSE_MEDIACTRL