Part of elisa.plugins.poblesec.player_video View In Hierarchy
Known subclasses: elisa.plugins.dvd.dvdcontroller.DvdPlayerController, elisa.plugins.poblesec.player_audio.AudioPlayerController, elisa.plugins.poblesec.player_video.VideoPlayerController
Line # | Kind | Name | Docs |
---|---|---|---|
685 | Method | __init__ | Undocumented |
763 | Method | initialize | Initialize the component. |
780 | Method | clean | Clean the component. |
800 | Method | exit | Exit the player by asking poblesec's main controller to hide it. |
1054 | Method | set_frontend | Set the frontend for the controller. |
1067 | Method | toggle_play_pause | Undocumented |
1073 | Method | go_to_pause | Undocumented |
1076 | Method | go_to_play | Undocumented |
1079 | Method | toggle_mute | Undocumented |
1089 | Method | volume_up | Undocumented |
1096 | Method | volume_down | Undocumented |
1103 | Method | show_on_screen_display | Display player's on screen display. Optionally displays ribbon |
1126 | Method | hide_on_screen_display | Hide player's on screen display including ribbon controls and mouse |
1133 | Method | handle_input | Undocumented |
787 | Method | _on_focus_changed | Undocumented |
793 | Method | _exit_clicked_cb | Undocumented |
809 | Method | _play_pause_clicked_cb | Undocumented |
816 | Method | _seeking_bar_cb | Undocumented |
825 | Method | _volume_bar_cb | Undocumented |
829 | Method | _volume_mute_cb | Undocumented |
836 | Method | _clear_osd | Undocumented |
846 | Method | _player_status_cb | Undocumented |
955 | Method | _stop_monitoring | Undocumented |
962 | Method | _monitor | Undocumented |
979 | Method | _player_missing_decoder_cb | Undocumented |
982 | Method | _check_missing_decoders_cb | Undocumented |
1017 | Method | _player_unknown_error_cb | Undocumented |
1048 | Method | _playback_ended | Undocumented |
1059 | Method | _mouse_motion_cb | Undocumented |
1211 | Method | _codec_installer_setup | Undocumented |
1224 | Method | _show_codec_installer_popup | Undocumented |
Inherited from PigmentController:
Line # | Kind | Name | Docs |
---|---|---|---|
68 | Method | set_path | Set the path for the controller. |
80 | Method | has_focus | Undocumented |
83 | Method | prepare | Called after widget is
added to the canvas. It is sensible to do
|
90 | Method | removed | Called after widget is
removed from the canvas.
|
Inherited from Component (via PigmentController, Controller):
Line # | Kind | Name | Docs |
---|---|---|---|
85 | Class | PathDescriptor | Undocumented |
97 | Class Method | create | Create and initialize the component. |
Initialize the component.
This method is called byComponent.create
to finish the
initialization of a component.
Returns | a deferred called when a component is fully initialized
(type: twisted.internet.defer.Deferred
) |
Clean the component.
This method is called when a component is not needed anymore to clean its state.Returns | a deferred called when the component has finished cleaning its state
(type: twisted.internet.defer.Deferred
) |
Parameters | frontend | frontend
(type: elisa.core.components.frontend.Frontend
) |
Parameters | with_ribbon | whether or not to display ribbon controls
(type: bool
) |
with_mouse | whether or not to display mouse controls
(type: bool
) |