mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
completely hide properties widgets when nothign is selected
This commit is contained in:
parent
78120467e7
commit
685cd40fa1
1 changed files with 9 additions and 10 deletions
|
@ -110,13 +110,6 @@ void disconnect_from_title_source (GESTimelineObject * object, App * app);
|
||||||
|
|
||||||
/* UI state functions *******************************************************/
|
/* UI state functions *******************************************************/
|
||||||
|
|
||||||
static void
|
|
||||||
update_properties_sensitivity (App * app)
|
|
||||||
{
|
|
||||||
gtk_widget_set_sensitive (app->properties,
|
|
||||||
(app->n_selected == 1) && (app->state != GST_STATE_PLAYING));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
update_delete_sensitivity (App * app)
|
update_delete_sensitivity (App * app)
|
||||||
{
|
{
|
||||||
|
@ -192,9 +185,15 @@ app_selection_changed_cb (GtkTreeSelection * selection, App * app)
|
||||||
{
|
{
|
||||||
app_update_selection (app);
|
app_update_selection (app);
|
||||||
|
|
||||||
/* doesn't make sense to set properties on more than one item */
|
|
||||||
update_properties_sensitivity (app);
|
|
||||||
update_delete_sensitivity (app);
|
update_delete_sensitivity (app);
|
||||||
|
|
||||||
|
gtk_widget_set_visible (app->properties, app->n_selected > 0);
|
||||||
|
|
||||||
|
gtk_widget_set_visible (app->filesource_properties,
|
||||||
|
app->selected_type == GES_TYPE_TIMELINE_FILE_SOURCE);
|
||||||
|
|
||||||
|
gtk_widget_set_visible (app->text_properties,
|
||||||
|
app->selected_type == GES_TYPE_TIMELINE_TITLE_SOURCE);
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
|
@ -571,10 +570,10 @@ pipeline_state_changed_cb (App * app)
|
||||||
else
|
else
|
||||||
gtk_action_set_stock_id (app->play, GTK_STOCK_MEDIA_PLAY);
|
gtk_action_set_stock_id (app->play, GTK_STOCK_MEDIA_PLAY);
|
||||||
|
|
||||||
update_properties_sensitivity (app);
|
|
||||||
update_delete_sensitivity (app);
|
update_delete_sensitivity (app);
|
||||||
|
|
||||||
gtk_action_set_sensitive (app->add_file, app->state != GST_STATE_PLAYING);
|
gtk_action_set_sensitive (app->add_file, app->state != GST_STATE_PLAYING);
|
||||||
|
gtk_widget_set_sensitive (app->properties, app->state != GST_STATE_PLAYING);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue