X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/36ed4f517fcf3d9485f6d29c82eb44d917fb8a88..d0ee33f5c6908b4ac5e1364381f0ef00942e3936:/wxPython/src/mac/media.py diff --git a/wxPython/src/mac/media.py b/wxPython/src/mac/media.py index 4ce79ece34..a747b41bf0 100644 --- a/wxPython/src/mac/media.py +++ b/wxPython/src/mac/media.py @@ -112,6 +112,14 @@ class MediaCtrl(_core.Control): """Stop(self) -> bool""" return _media.MediaCtrl_Stop(*args, **kwargs) + def GetVolume(*args, **kwargs): + """GetVolume(self) -> double""" + return _media.MediaCtrl_GetVolume(*args, **kwargs) + + def SetVolume(*args, **kwargs): + """SetVolume(self, double dVolume) -> bool""" + return _media.MediaCtrl_SetVolume(*args, **kwargs) + def Load(*args, **kwargs): """Load(self, String fileName) -> bool""" return _media.MediaCtrl_Load(*args, **kwargs) @@ -120,14 +128,6 @@ class MediaCtrl(_core.Control): """LoadFromURI(self, String location) -> bool""" return _media.MediaCtrl_LoadFromURI(*args, **kwargs) - def Loop(*args, **kwargs): - """Loop(self, bool bLoop=True)""" - return _media.MediaCtrl_Loop(*args, **kwargs) - - def IsLooped(*args, **kwargs): - """IsLooped(self) -> bool""" - return _media.MediaCtrl_IsLooped(*args, **kwargs) - def GetState(*args, **kwargs): """GetState(self) -> int""" return _media.MediaCtrl_GetState(*args, **kwargs)