]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/media.i
Get/SetTitle only for wxTopLevelWindow (wxMGL part).
[wxWidgets.git] / wxPython / src / media.i
index bb79be117fe6ecf039d76d33f5af616b990e38e0..d2db77b6671297354980db74c5242d4d280cc967 100644 (file)
@@ -65,7 +65,7 @@ public:
 class wxMediaCtrl : public wxControl
 {
 public:
 class wxMediaCtrl : public wxControl
 {
 public:
-      wxMediaCtrl()    { wxPyRaiseNotImplemented(); }
+    wxMediaCtrl()    { wxPyRaiseNotImplemented(); }
 
     wxMediaCtrl(wxWindow* , wxWindowID ,
                 const wxString& ,
 
     wxMediaCtrl(wxWindow* , wxWindowID ,
                 const wxString& ,
@@ -102,6 +102,9 @@ public:
     
     wxFileOffset Tell()    { return 0; }
     wxFileOffset Length()    { return 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;
 };
 
 const wxEventType wxEVT_MEDIA_FINISHED = 0;
@@ -177,6 +180,9 @@ public:
     bool Pause();
     bool Stop();
 
     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) {
     bool Load(const wxString& fileName);
     %extend {
         bool LoadFromURI(const wxString& location) {