class wxMediaCtrl : public wxControl
{
public:
- wxMediaCtrl() { wxPyRaiseNotImplemented(); }
+ wxMediaCtrl() { wxPyRaiseNotImplemented(); }
wxMediaCtrl(wxWindow* , wxWindowID ,
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 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; }
wxFileOffset Tell() { return 0; }
wxFileOffset Length() { return 0; }
+
+ double GetVolume() { return 0.0; }
+ bool SetVolume(double dVolume) { return false; }
};
const wxEventType wxEVT_MEDIA_FINISHED = 0;
%RenameCtor(PreMediaCtrl, wxMediaCtrl());
-// %extend {
-// %RenameCtor(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,
bool Pause();
bool Stop();
+ double GetVolume(); //DirectShow only
+ bool SetVolume(double dVolume); //DirectShow only
+
bool Load(const wxString& fileName);
%extend {
bool LoadFromURI(const wxString& location) {
}
}
- void Loop(bool bLoop = true);
- bool IsLooped();
-
wxMediaState GetState();
double GetPlaybackRate();