Massive reworking of wxMediaCtrl code - backend everything, search for backends via RTTI lookup, and more
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30527 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/mediactrl.h
|
||||
// Purpose: wxMediaCtrl class
|
||||
// Author: Ryan Norton <wxprojects@comcast.net>
|
||||
@@ -7,11 +7,285 @@
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Ryan Norton
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#if defined(__WXMSW__)
|
||||
#include "wx/msw/mediactrl.h"
|
||||
#elif defined(__WXMAC__)
|
||||
#include "wx/mac/carbon/mediactrl.h"
|
||||
// ============================================================================
|
||||
// Definitions
|
||||
// ============================================================================
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Header guard
|
||||
// ----------------------------------------------------------------------------
|
||||
#ifndef _WX_MEDIACTRL_H_
|
||||
#define _WX_MEDIACTRL_H_
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Pre-compiled header stuff
|
||||
// ----------------------------------------------------------------------------
|
||||
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
||||
#pragma interface "mediactrl.h"
|
||||
#endif
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Compilation guard
|
||||
// ----------------------------------------------------------------------------
|
||||
#if wxUSE_MEDIACTRL
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Includes
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#include "wx/control.h"
|
||||
#include "wx/uri.h"
|
||||
|
||||
// ============================================================================
|
||||
// Declarations
|
||||
// ============================================================================
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Enumerations
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
enum wxMediaState
|
||||
{
|
||||
wxMEDIASTATE_STOPPED,
|
||||
wxMEDIASTATE_PAUSED,
|
||||
wxMEDIASTATE_PLAYING
|
||||
};
|
||||
|
||||
enum wxMediaTimeFormat
|
||||
{
|
||||
wxMEDIATIMEFORMAT_TIME
|
||||
};
|
||||
|
||||
#define wxMEDIABACKEND_DIRECTSHOW wxT("wxAMMediaBackend")
|
||||
#define wxMEDIABACKEND_MCI wxT("wxMCIMediaBackend")
|
||||
#define wxMEDIABACKEND_QUICKTIME wxT("wxQTMediaBackend")
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// wxMediaCtrl
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class wxMediaCtrl : public wxControl
|
||||
{
|
||||
public:
|
||||
wxMediaCtrl() : m_imp(NULL), m_bLoaded(false), m_bLoop(false)
|
||||
{ }
|
||||
|
||||
wxMediaCtrl(wxWindow* parent, wxWindowID id,
|
||||
const wxString& fileName = wxT(""),
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = 0,
|
||||
const wxString& szBackend = wxT(""),
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxT("mediaCtrl"))
|
||||
: m_imp(NULL), m_bLoaded(false), m_bLoop(false)
|
||||
{ Create(parent, id, fileName, pos, size, style,
|
||||
szBackend, validator, name); }
|
||||
|
||||
wxMediaCtrl(wxWindow* parent, wxWindowID id,
|
||||
const wxURI& location,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = 0,
|
||||
const wxString& szBackend = wxT(""),
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxT("mediaCtrl"))
|
||||
: m_imp(NULL), m_bLoop(false)
|
||||
{ Create(parent, id, location, pos, size, style,
|
||||
szBackend, validator, name); }
|
||||
|
||||
~wxMediaCtrl();
|
||||
|
||||
bool Create(wxWindow* parent, wxWindowID id,
|
||||
const wxString& fileName = wxT(""),
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = 0,
|
||||
const wxString& szBackend = wxT(""),
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxT("mediaCtrl"));
|
||||
|
||||
bool Create(wxWindow* parent, wxWindowID id,
|
||||
const wxURI& location,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = 0,
|
||||
const wxString& szBackend = wxT(""),
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxT("mediaCtrl"));
|
||||
|
||||
bool DoCreate(wxClassInfo* instance,
|
||||
wxWindow* parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxT("mediaCtrl"));
|
||||
|
||||
static wxClassInfo* NextBackend();
|
||||
|
||||
|
||||
bool Play();
|
||||
bool Pause();
|
||||
bool Stop();
|
||||
|
||||
bool Load(const wxString& fileName);
|
||||
bool Load(const wxURI& location);
|
||||
|
||||
void Loop(bool bLoop = true);
|
||||
bool IsLooped();
|
||||
|
||||
wxMediaState GetState();
|
||||
|
||||
double GetPlaybackRate();
|
||||
bool SetPlaybackRate(double dRate);
|
||||
|
||||
bool SetPosition(wxLongLong where);
|
||||
wxLongLong GetPosition();
|
||||
wxLongLong GetDuration();
|
||||
|
||||
protected:
|
||||
void OnMediaFinished(const class wxMediaEvent& evt);
|
||||
virtual void DoMoveWindow(int x, int y, int w, int h);
|
||||
wxSize DoGetBestSize() const;
|
||||
|
||||
class wxMediaBackend* m_imp;
|
||||
bool m_bLoaded;
|
||||
bool m_bLoop;
|
||||
|
||||
DECLARE_DYNAMIC_CLASS(wxMediaCtrl);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// wxMediaBackend
|
||||
//
|
||||
// Currently an internal class - API stability not gauranteed.
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class wxMediaBackend : public wxObject
|
||||
{
|
||||
public:
|
||||
wxMediaBackend()
|
||||
{ }
|
||||
|
||||
virtual ~wxMediaBackend();
|
||||
|
||||
virtual bool CreateControl(wxControl* ctrl, wxWindow* parent,
|
||||
wxWindowID id,
|
||||
const wxPoint& pos, const wxSize& size,
|
||||
long style,
|
||||
const wxValidator& validator,
|
||||
const wxString& name)
|
||||
{ return false; }
|
||||
|
||||
virtual bool Play()
|
||||
{ return false; }
|
||||
virtual bool Pause()
|
||||
{ return false; }
|
||||
virtual bool Stop()
|
||||
{ return false; }
|
||||
|
||||
virtual bool Load(const wxString& WXUNUSED(fileName))
|
||||
{ return false; }
|
||||
virtual bool Load(const wxURI& WXUNUSED(location))
|
||||
{ return false; }
|
||||
|
||||
virtual bool SetPosition(wxLongLong WXUNUSED(where))
|
||||
{ return 0; }
|
||||
virtual wxLongLong GetPosition()
|
||||
{ return 0; }
|
||||
virtual wxLongLong GetDuration()
|
||||
{ return 0; }
|
||||
|
||||
virtual void Move(int WXUNUSED(x), int WXUNUSED(y),
|
||||
int WXUNUSED(w), int WXUNUSED(h))
|
||||
{ }
|
||||
virtual wxSize GetVideoSize() const
|
||||
{ return wxSize(0,0); }
|
||||
|
||||
virtual double GetPlaybackRate()
|
||||
{ return 0.0; }
|
||||
virtual bool SetPlaybackRate(double WXUNUSED(dRate))
|
||||
{ return false; }
|
||||
|
||||
virtual wxMediaState GetState()
|
||||
{ return wxMEDIASTATE_STOPPED; }
|
||||
|
||||
DECLARE_CLASS(wxMediaBackend)
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// wxMediaEvent
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class WXDLLEXPORT wxMediaEvent : public wxNotifyEvent
|
||||
{
|
||||
public:
|
||||
// ------------------------------------------------------------------------
|
||||
// wxMediaEvent Constructor
|
||||
//
|
||||
// Normal constructor, much the same as wxNotifyEvent
|
||||
// ------------------------------------------------------------------------
|
||||
wxMediaEvent(wxEventType commandType = wxEVT_NULL, int id = 0)
|
||||
: wxNotifyEvent(commandType, id)
|
||||
{ }
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// wxMediaEvent Copy Constructor
|
||||
//
|
||||
// Normal copy constructor, much the same as wxNotifyEvent
|
||||
// ------------------------------------------------------------------------
|
||||
wxMediaEvent(const wxMediaEvent &clone)
|
||||
: wxNotifyEvent(clone)
|
||||
{ }
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// wxMediaEvent::Clone
|
||||
//
|
||||
// Allocates a copy of this object.
|
||||
// Required for wxEvtHandler::AddPendingEvent
|
||||
// ------------------------------------------------------------------------
|
||||
virtual wxEvent *Clone() const
|
||||
{ return new wxMediaEvent(*this); }
|
||||
|
||||
|
||||
// Put this class on wxWidget's RTTI table
|
||||
DECLARE_DYNAMIC_CLASS(wxMediaEvent)
|
||||
};
|
||||
|
||||
//Event ID to give to our events
|
||||
#define wxMEDIA_FINISHED_ID 13000
|
||||
#define wxMEDIA_STOP_ID 13001
|
||||
|
||||
//Define our event types - we need to call DEFINE_EVENT_TYPE(EVT) later
|
||||
DECLARE_EVENT_TYPE(wxEVT_MEDIA_FINISHED, wxMEDIA_FINISHED_ID)
|
||||
DECLARE_EVENT_TYPE(wxEVT_MEDIA_STOP, wxMEDIA_STOP_ID)
|
||||
|
||||
//Function type(s) our events need
|
||||
typedef void (wxEvtHandler::*wxMediaEventFunction)(wxMediaEvent&);
|
||||
|
||||
//Macro for usage with message maps
|
||||
#define EVT_MEDIA_FINISHED(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MEDIA_FINISHED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMediaEventFunction) & fn, (wxObject *) NULL ),
|
||||
#define EVT_MEDIA_STOP(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MEDIA_STOP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMediaEventFunction) & fn, (wxObject *) NULL ),
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// End compilation gaurd
|
||||
// ----------------------------------------------------------------------------
|
||||
#endif // wxUSE_MEDIACTRL
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// End header guard and header itself
|
||||
// ----------------------------------------------------------------------------
|
||||
#endif // _WX_MEDIACTRL_H_
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user