summaryrefslogtreecommitdiff
path: root/src/totem-sidebar.c
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2007-05-18 15:00:28 +0000
committerBastien Nocera <hadess@src.gnome.org>2007-05-18 15:00:28 +0000
commit401d43215e1eb047fdcc77a23a89ddbbad4d816e (patch)
treeb552e81d0eb0b3c10f58dc977624404389af7081 /src/totem-sidebar.c
parent5ec624d5417f1e9f5aadc013c67e2a26f6e9741b (diff)
Add a properties plugin (Closes: #428291)
2007-05-18 Bastien Nocera <hadess@hadess.net> * configure.in: * src/Makefile.am: * src/bacon-video-widget-properties.c: (bacon_video_widget_properties_update): * src/bacon-video-widget-properties.h: * src/plugins/properties/Makefile.am: * src/plugins/properties/movie-properties.totem-plugin.in: * src/plugins/properties/totem-movie-properties.c: (totem_movie_properties_plugin_class_init), (totem_movie_properties_plugin_init), (totem_movie_properties_plugin_finalize), (stream_length_notify_cb), (totem_movie_properties_plugin_file_opened), (totem_movie_properties_plugin_file_closed), (totem_movie_properties_plugin_metadata_updated), (impl_activate), (impl_deactivate): * src/plugins/skipto/totem-skipto.c: (totem_skipto_new): * src/totem-object.c: (totem_object_class_init), (totem_object_get_property), (totem_get_video_widget), (totem_get_current_time), (totem_file_opened), (totem_file_closed), (totem_metadata_updated): * src/totem-private.h: * src/totem-properties-view.c: (on_got_metadata_event): * src/totem-sidebar.c: (totem_sidebar_setup): * src/totem.c: (totem_action_set_mrl_with_warning), (on_got_redirect), (on_channels_change_event), (on_playlist_change_name), (on_got_metadata_event), (update_current_time), (totem_action_open_files_list), (main): * src/totem.h: * src/totemobject-marshal.list: Add a properties plugin (Closes: #428291) 2007-05-18 Bastien Nocera <hadess@hadess.net> * POTFILES.in: Add the properties plugin svn path=/trunk/; revision=4318
Diffstat (limited to 'src/totem-sidebar.c')
-rw-r--r--src/totem-sidebar.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/totem-sidebar.c b/src/totem-sidebar.c
index 3fa6ea9c..65368615 100644
--- a/src/totem-sidebar.c
+++ b/src/totem-sidebar.c
@@ -104,9 +104,6 @@ totem_sidebar_setup (Totem *totem, gboolean visible, const char *page_id)
ev_sidebar_add_page (EV_SIDEBAR (totem->sidebar),
"playlist", _("Playlist"),
GTK_WIDGET (totem->playlist));
- ev_sidebar_add_page (EV_SIDEBAR (totem->sidebar),
- "properties", _("Properties"),
- GTK_WIDGET (totem->properties));
if (page_id != NULL) {
ev_sidebar_set_current_page (EV_SIDEBAR (totem->sidebar),
page_id);
@@ -114,7 +111,6 @@ totem_sidebar_setup (Totem *totem, gboolean visible, const char *page_id)
ev_sidebar_set_current_page (EV_SIDEBAR (totem->sidebar),
"playlist");
}
- gtk_widget_set_sensitive (GTK_WIDGET (totem->properties), FALSE);
gtk_paned_pack2 (GTK_PANED (item), totem->sidebar, FALSE, FALSE);
totem->sidebar_shown = visible;