Part of elisa.plugins.base.models.media View In Hierarchy
Instance Variables | uri | the real URI of the playable media
(type: elisa.core.media_uri.MediaUri
) |
title | the title of the playable media
(type: unicode
) | |
allow_pause | whether the player can pause the media playback or not
(type: bool
) | |
allow_seek | whether the player can seek inside the media playback or not
(type: bool
) |
Line # | Kind | Name | Docs |
---|---|---|---|
45 | Method | __init__ | Constructor. Initialize all the fields. |
55 | Method | __eq__ | Compare two playable models. |
Inherited from Bindable (via Model):
Line # | Kind | Name | Docs |
---|---|---|---|
34 | Method | bind | Bind a local attribute to
destination_attribute of |
73 | Method | unbind | Remove the binding of attribute to
destination_attribute of |
104 | Method | unbind_object | Remove all the bindings you have for a certain
destination_object . |
118 | Method | __setattr__ | Undocumented |
136 | Method | __delattr__ | Undocumented |
Two playable models are considered equal if and only if their URIs are equal.
Parameters | other | another playable model
(type: elisa.plugins.base.models.media.PlayableModel
) |
Returns | True if the two models are equal, False otherwise
(type: bool
) |