projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add instructions for upgrading third party libraries.
[wxWidgets.git]
/
src
/
cocoa
/
mediactrl.mm
diff --git
a/src/cocoa/mediactrl.mm
b/src/cocoa/mediactrl.mm
index 0d09279525842935e94e84de9072023aeca4600f..62348e03927a963561da148a0fbf53e78b939ced 100644
(file)
--- a/
src/cocoa/mediactrl.mm
+++ b/
src/cocoa/mediactrl.mm
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name:
mac/cocoa/mediactrl.cpp
+// Name:
src/cocoa/mediactrl.mm
// Purpose: Built-in Media Backends for Cocoa
// Author: Ryan Norton <wxprojects@comcast.net>
// Modified by:
// Purpose: Built-in Media Backends for Cocoa
// Author: Ryan Norton <wxprojects@comcast.net>
// Modified by:
@@
-17,10
+17,6
@@
// Pre-compiled header stuff
//---------------------------------------------------------------------------
// Pre-compiled header stuff
//---------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "mediactrl.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
@@
-28,16
+24,17
@@
#pragma hdrstop
#endif
#pragma hdrstop
#endif
-//---------------------------------------------------------------------------
-// Includes
-//---------------------------------------------------------------------------
-#include "wx/mediactrl.h"
-
//---------------------------------------------------------------------------
// Compilation guard
//---------------------------------------------------------------------------
#if wxUSE_MEDIACTRL
//---------------------------------------------------------------------------
// Compilation guard
//---------------------------------------------------------------------------
#if wxUSE_MEDIACTRL
+#include "wx/mediactrl.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/timer.h"
+#endif
+
//===========================================================================
// BACKEND DECLARATIONS
//===========================================================================
//===========================================================================
// BACKEND DECLARATIONS
//===========================================================================
@@
-51,7
+48,6
@@
//---------------------------------------------------------------------------
// QT Includes
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// QT Includes
//---------------------------------------------------------------------------
-#include "wx/timer.h"
#include <QuickTime/QuickTime.h>
#include "wx/cocoa/autorelease.h"
#include <QuickTime/QuickTime.h>
#include "wx/cocoa/autorelease.h"
@@
-68,11
+64,11
@@
public:
wxQTMediaBackend();
~wxQTMediaBackend();
wxQTMediaBackend();
~wxQTMediaBackend();
- virtual bool CreateControl(wxControl* ctrl, wxWindow* parent,
+ virtual bool CreateControl(wxControl* ctrl, wxWindow* parent,
wxWindowID id,
wxWindowID id,
- const wxPoint& pos,
+ const wxPoint& pos,
const wxSize& size,
const wxSize& size,
- long style,
+ long style,
const wxValidator& validator,
const wxString& name);
const wxValidator& validator,
const wxString& name);
@@
-99,7
+95,7
@@
public:
void FinishLoad();
wxSize m_bestSize; //Original movie size
void FinishLoad();
wxSize m_bestSize; //Original movie size
- Movie m_movie;
//QT Movie handle/instance
+ Movie m_movie; //QT Movie handle/instance
NSMovieView* m_movieview; //NSMovieView instance
wxControl* m_ctrl; //Parent control
bool m_bVideo; //Whether or not we have video
NSMovieView* m_movieview; //NSMovieView instance
wxControl* m_ctrl; //Parent control
bool m_bVideo; //Whether or not we have video
@@
-112,7
+108,7
@@
public:
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// wxQTMediaBackend
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// wxQTMediaBackend
-//
+//
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
IMPLEMENT_DYNAMIC_CLASS(wxQTMediaBackend, wxMediaBackend);
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
IMPLEMENT_DYNAMIC_CLASS(wxQTMediaBackend, wxMediaBackend);
@@
-151,10
+147,10
@@
public:
if (!m_bPaused)
{
if(!IsMovieDone(m_movie))
if (!m_bPaused)
{
if(!IsMovieDone(m_movie))
- MoviesTask(m_movie, MOVIE_DELAY);
+ MoviesTask(m_movie, MOVIE_DELAY);
else
{
else
{
- wxMediaEvent theEvent(wxEVT_MEDIA_STOP,
+ wxMediaEvent theEvent(wxEVT_MEDIA_STOP,
m_parent->m_ctrl->GetId());
m_parent->m_ctrl->ProcessEvent(theEvent);
m_parent->m_ctrl->GetId());
m_parent->m_ctrl->ProcessEvent(theEvent);
@@
-165,7
+161,7
@@
public:
wxASSERT(::GetMoviesError() == noErr);
//send the event to our child
wxASSERT(::GetMoviesError() == noErr);
//send the event to our child
- wxMediaEvent theEvent(wxEVT_MEDIA_FINISHED,
+ wxMediaEvent theEvent(wxEVT_MEDIA_FINISHED,
m_parent->m_ctrl->GetId());
m_parent->m_ctrl->ProcessEvent(theEvent);
}
m_parent->m_ctrl->GetId());
m_parent->m_ctrl->ProcessEvent(theEvent);
}
@@
-202,7
+198,7
@@
wxQTMediaBackend::~wxQTMediaBackend()
if(m_timer)
Cleanup();
if(m_timer)
Cleanup();
- //Note that ExitMovies() is not nec
c
essary...
+ //Note that ExitMovies() is not necessary...
ExitMovies();
}
ExitMovies();
}
@@
-212,24
+208,24
@@
wxQTMediaBackend::~wxQTMediaBackend()
// 1) Intializes QuickTime
// 2) Creates the control window
//---------------------------------------------------------------------------
// 1) Intializes QuickTime
// 2) Creates the control window
//---------------------------------------------------------------------------
-bool wxQTMediaBackend::CreateControl(wxControl* inctrl, wxWindow* parent,
+bool wxQTMediaBackend::CreateControl(wxControl* inctrl, wxWindow* parent,
wxWindowID wid,
wxWindowID wid,
- const wxPoint& pos,
+ const wxPoint& pos,
const wxSize& size,
const wxSize& size,
- long style,
+ long style,
const wxValidator& validator,
const wxString& name)
{
EnterMovies();
const wxValidator& validator,
const wxString& name)
{
EnterMovies();
-
+
wxMediaCtrl* ctrl = (wxMediaCtrl*) inctrl;
//Create the control base
wxMediaCtrl* ctrl = (wxMediaCtrl*) inctrl;
//Create the control base
- wxASSERT(ctrl->CreateBase(parent,wid,pos,size,style, validator,
siz
e));
-
+ wxASSERT(ctrl->CreateBase(parent,wid,pos,size,style, validator,
nam
e));
+
//Create the NSMovieView
ctrl->SetNSView(NULL);
//Create the NSMovieView
ctrl->SetNSView(NULL);
- NSView* theView = [[NSMovieView alloc] initWithFrame: ctrl->MakeDefaultNSRect(size)];
+ NS
Movie
View* theView = [[NSMovieView alloc] initWithFrame: ctrl->MakeDefaultNSRect(size)];
ctrl->SetNSView(theView);
[theView release];
ctrl->SetNSView(theView);
[theView release];
@@
-239,7
+235,8
@@
bool wxQTMediaBackend::CreateControl(wxControl* inctrl, wxWindow* parent,
parent->CocoaAddChild(ctrl);
ctrl->SetInitialFrameRect(pos,size);
}
parent->CocoaAddChild(ctrl);
ctrl->SetInitialFrameRect(pos,size);
}
-
+
+ [theView showController:false adjustingSize:true];
m_movieview = theView;
m_ctrl = ctrl;
return true;
m_movieview = theView;
m_ctrl = ctrl;
return true;
@@
-254,7
+251,7
@@
bool wxQTMediaBackend::Load(const wxString& fileName)
{
return Load(
wxURI(
{
return Load(
wxURI(
- wxString( wxT("file://") ) + fileName
+ wxString( wxT("file://") ) + fileName
)
);
}
)
);
}
@@
-323,7
+320,7
@@
void wxQTMediaBackend::FinishLoad()
//
//Here, if the parent of the control has a sizer - we
//tell it to recalculate the size of this control since
//
//Here, if the parent of the control has a sizer - we
//tell it to recalculate the size of this control since
- //the user opened a sep
e
rate media file
+ //the user opened a sep
a
rate media file
//
m_ctrl->InvalidateBestSize();
m_ctrl->GetParent()->Layout();
//
m_ctrl->InvalidateBestSize();
m_ctrl->GetParent()->Layout();
@@
-374,7
+371,7
@@
bool wxQTMediaBackend::Stop()
::StopMovie(m_movie);
if(::GetMoviesError() != noErr)
return false;
::StopMovie(m_movie);
if(::GetMoviesError() != noErr)
return false;
-
+
::GoToBeginningOfMovie(m_movie);
return ::GetMoviesError() == noErr;
}
::GoToBeginningOfMovie(m_movie);
return ::GetMoviesError() == noErr;
}
@@
-449,7
+446,7
@@
wxLongLong wxQTMediaBackend::GetDuration()
//---------------------------------------------------------------------------
wxMediaState wxQTMediaBackend::GetState()
{
//---------------------------------------------------------------------------
wxMediaState wxQTMediaBackend::GetState()
{
- if ( !m_timer || (m_timer->IsRunning() == false &&
+ if ( !m_timer || (m_timer->IsRunning() == false &&
m_timer->GetPaused() == false) )
return wxMEDIASTATE_STOPPED;
m_timer->GetPaused() == false) )
return wxMEDIASTATE_STOPPED;
@@
-495,12
+492,7
@@
void wxQTMediaBackend::Move(int x, int y, int w, int h)
//in source file that contains stuff you don't directly use
//in source file that contains stuff you don't directly use
-#include
<wx/html/forcelnk.h>
+#include
"wx/html/forcelnk.h"
FORCE_LINK_ME(basewxmediabackends);
#endif //wxUSE_MEDIACTRL
FORCE_LINK_ME(basewxmediabackends);
#endif //wxUSE_MEDIACTRL
-
-
-
-
-