diff options
author | Bastien Nocera <hadess@hadess.net> | 2007-11-25 01:17:47 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@src.gnome.org> | 2007-11-25 01:17:47 +0000 |
commit | 883b19662144e8c2a89b9d6d68c7e5c5fefc3b7b (patch) | |
tree | 3c685967850a0d64789ff6bce05906d85309d08b /bindings | |
parent | bdebaccb0d3412ee4f7592384a1ad727ad9ada6f (diff) | |
download | totem-883b19662144e8c2a89b9d6d68c7e5c5fefc3b7b.tar.gz |
Remove row_activated signal, it's already implemented in the list view
2007-11-25 Bastien Nocera <hadess@hadess.net>
* src/plugins/mythtv/totem-mythtv.c: (create_treeview):
Remove row_activated signal, it's already implemented in
the list view
* bindings/python/totem.defs:
* data/playlist.ui:
* src/totem-menu.c: (clear_playlist_action_callback):
* src/totem-object.c: (totem_add_to_playlist_and_play):
* src/totem-playlist.c: (playlist_select_subtitle_action_callback),
(playlist_copy_location_action_callback),
(playlist_show_popup_menu), (totem_playlist_set_reorderable),
(update_current_from_playlist), (totem_playlist_add_files),
(playlist_remove_files), (init_treeview),
(totem_playlist_add_one_mrl), (totem_playlist_add_mrl),
(totem_playlist_clear), (totem_playlist_get_current_mrl),
(totem_playlist_get_current_title), (totem_playlist_set_previous),
(totem_playlist_class_init):
* src/totem-playlist.h:
* src/totem-session.c: (totem_session_restore):
* src/totem-uri.c: (totem_setup_file_filters),
(totem_add_subtitle), (totem_add_files):
* src/totem-uri.h:
* src/totem.c: (totem_action_set_mrl_and_play),
(totem_action_open_dialog), (totem_action_load_media),
(totem_action_play_media_device), (totem_action_play_media),
(totem_action_play_pause), (window_state_event_cb),
(totem_open_location_response_cb),
(totem_action_set_mrl_with_warning), (totem_action_set_mrl),
(totem_action_direction), (totem_action_drop_files),
(on_got_redirect), (totem_action_set_playlist_index),
(totem_action_remote), (playlist_changed_cb), (current_removed_cb),
(subtitle_changed_cb), (on_eos_event),
(totem_action_handle_key_press), (playlist_widget_setup), (main):
* src/totem.h:
Add big patch by Kamil Pawlowski <kamilpe@gmail.com>, adds text
subtitle selection in the UI via right-clicking on the playlist
item (Closes: #165981)
svn path=/trunk/; revision=4901
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/python/totem.defs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bindings/python/totem.defs b/bindings/python/totem.defs index 963fa81d0..6035dd83b 100644 --- a/bindings/python/totem.defs +++ b/bindings/python/totem.defs @@ -275,6 +275,7 @@ (return-type "gboolean") (parameters '("const-char*" "mrl") + '("const-char*" "subtitle") ) ) @@ -284,6 +285,7 @@ (return-type "none") (parameters '("const-char*" "mrl") + '("const-char*" "subtitle") ) ) @@ -293,6 +295,7 @@ (return-type "gboolean") (parameters '("const-char*" "mrl") + '("const-char*" "subtitle") '("gboolean" "warn") ) ) |