///////////////////////////////////////////////////////////////////////////// // Name: media.i // Purpose: SWIG definitions for the wxMediaCtrl // // Author: Robin Dunn // // Created: 23-Nov-2004 // RCS-ID: $Id$ // Copyright: (c) 2004 by Total Control Software // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// %define DOCSTRING "Classes for a medai player control" %enddef %module(package="wx", docstring=DOCSTRING) media %{ #include "wx/wxPython/wxPython.h" #include "wx/wxPython/pyclasses.h" #include %} //---------------------------------------------------------------------- %import core.i %pythoncode { wx = _core } %pythoncode { __docfilter__ = wx.__DocFilter(globals()) } %include _media_rename.i //--------------------------------------------------------------------------- %typemap(in) wxLongLong { $1 = PyLong_AsLongLong($input); } %typemap(out) wxLongLong { $result = PyLong_FromLongLong($1.GetValue()); } //--------------------------------------------------------------------------- // Make a stubbed out class for platforms that don't have wxMediaCtrl %{ #if !wxUSE_MEDIACTRL enum wxMediaState { wxMEDIASTATE_STOPPED=0, wxMEDIASTATE_PAUSED=0, wxMEDIASTATE_PLAYING=0 }; enum wxMediaTimeFormat { wxMEDIATIMEFORMAT_TIME=0 }; class WXDLLIMPEXP_MEDIA wxMediaEvent : public wxNotifyEvent { public: wxMediaEvent(wxEventTypL, int ) { wxPyRaiseNotImplemented(); } }; class wxMediaCtrl : public wxControl { public: wxMediaCtrl() { wxPyRaiseNotImplemented(); } wxMediaCtrl(wxWindow* , wxWindowID , const wxString& , const wxPoint& , const wxSize& , long style , const wxString& , const wxValidator& , const wxString& ) { wxPyRaiseNotImplemented(); } wxMediaCtrl(wxWindow* , wxWindowID , const wxURI& , const wxPoint&, const wxSize& . long style, const wxString& , const wxValidator& , const wxString& ) { wxPyRaiseNotImplemented(); } bool Create(wxWindow* , wxWindowID , const wxString& , const wxPoint& , const wxSize& , long style , const wxString& , const wxValidator& , const wxString& ) { return false; } bool Create(wxWindow* , wxWindowID , const wxURI& , const wxPoint&, const wxSize& . long style, const wxString& , const wxValidator& , const wxString& ) { return false; } bool Play() { return false; } bool Pause() { return false; } bool Stop() { return false; } bool Load(const wxString& fileName) { return false; } bool Load(const wxURI& location) { return false; } void Loop(bool bLoop = true) {} bool IsLooped() { return false; } wxMediaState GetState() { return wxMEDIASTATE_STOPPED; } double GetPlaybackRate() { return 0.0; }; bool SetPlaybackRate(double dRate) { return false; } bool SetPosition(wxLongLong where) { return false; } wxLongLong GetPosition() { return 0; } wxLongLong GetDuration() { return 0; } }; #endif %} //--------------------------------------------------------------------------- enum wxMediaState { wxMEDIASTATE_STOPPED, wxMEDIASTATE_PAUSED, wxMEDIASTATE_PLAYING }; enum wxMediaTimeFormat { wxMEDIATIMEFORMAT_TIME }; MAKE_CONST_WXSTRING(MEDIABACKEND_DIRECTSHOW); MAKE_CONST_WXSTRING(MEDIABACKEND_MCI ); MAKE_CONST_WXSTRING(MEDIABACKEND_QUICKTIME ); //--------------------------------------------------------------------------- class wxMediaEvent : public wxNotifyEvent { public: wxMediaEvent(wxEventType commandType = wxEVT_NULL, int id = 0); }; //--------------------------------------------------------------------------- MAKE_CONST_WXSTRING_NOSWIG(EmptyString); MAKE_CONST_WXSTRING2(MediaCtrlNameStr, "mediaCtrl"); MustHaveApp(wxMediaCtrl); class wxMediaCtrl : public wxControl { public: %pythonAppend wxMediaCtrl "self._setOORInfo(self)" %pythonAppend wxMediaCtrl() "" wxMediaCtrl(wxWindow* parent, wxWindowID id=-1, const wxString& fileName = wxPyEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& szBackend = wxPyEmptyString, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxPyMediaCtrlNameStr); %name(PreMediaCtrl) wxMediaCtrl(); %extend { %name(MediaCtrlFromURI) wxMediaCtrl(wxWindow* parent, wxWindowID id=-1, const wxString& location=wxPyEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& szBackend = wxPyEmptyString, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxPyMediaCtrlNameStr) { return new wxMediaCtrl(parent, id, wxURI(location), pos, size, style, szBackend, validator, name); } bool CreateFromURI(wxWindow* parent, wxWindowID id=-1, const wxString& location=wxPyEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& szBackend = wxPyEmptyString, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxPyMediaCtrlNameStr) { return self->Create(parent, id, wxURI(location), pos, size, style, szBackend, validator, name); } } bool Create(wxWindow* parent, wxWindowID id=-1, const wxString& fileName = wxPyEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& szBackend = wxPyEmptyString, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxPyMediaCtrlNameStr); bool Play(); bool Pause(); bool Stop(); bool Load(const wxString& fileName); %extend { bool LoadFromURI(const wxString& location) { return self->Load(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(); }; %constant wxEventType wxEVT_MEDIA_FINISHED; %constant wxEventType wxEVT_MEDIA_STOP; %pythoncode { EVT_MEDIA_FINISHED = wx.PyEventBinder( wxEVT_MEDIA_FINISHED, 1) EVT_MEDIA_STOP = wx.PyEventBinder( wxEVT_MEDIA_STOP, 1) } //--------------------------------------------------------------------------- %init %{ %} //---------------------------------------------------------------------------