diff options
Diffstat (limited to 'src/gtkext')
-rw-r--r-- | src/gtkext/gtkdockstation.c | 27 | ||||
-rw-r--r-- | src/gtkext/gtkdockstation.h | 11 |
2 files changed, 30 insertions, 8 deletions
diff --git a/src/gtkext/gtkdockstation.c b/src/gtkext/gtkdockstation.c index d85d11e..a91998e 100644 --- a/src/gtkext/gtkdockstation.c +++ b/src/gtkext/gtkdockstation.c @@ -275,6 +275,33 @@ void gtk_dock_panel_change_active_widget(GtkDockStation *station, GtkWidget *wid * * * Paramètres : station = plateforme GTK à compléter. * * widget = nouvel élément à intégrer. * +* * +* Description : Retire un paquet d'informations de l'affichage centralisé. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void gtk_dock_panel_remove_widget(GtkDockStation *station, GtkWidget *widget) +{ + gint index; /* Indice de l'onglet visé */ + + index = gtk_notebook_page_num(station->notebook, widget); + + gtk_notebook_remove_page(station->notebook, index); + + if (gtk_notebook_get_n_pages(station->notebook) == 0) + gtk_container_remove(gtk_widget_get_parent(GTK_WIDGET(station)), GTK_WIDGET(station)); + +} + + +/****************************************************************************** +* * +* Paramètres : station = plateforme GTK à compléter. * +* widget = nouvel élément à intégrer. * * caption = intitulé court à afficher sur les onglets. * * * * Description : Met à jour, si besoin est, le titre de l'affichage concentré.* diff --git a/src/gtkext/gtkdockstation.h b/src/gtkext/gtkdockstation.h index 770681f..c285dc7 100644 --- a/src/gtkext/gtkdockstation.h +++ b/src/gtkext/gtkdockstation.h @@ -78,6 +78,9 @@ void gtk_dock_panel_add_widget(GtkDockStation *, GtkWidget *, const char *); /* Change le contenu de l'onglet courant uniquement. */ void gtk_dock_panel_change_active_widget(GtkDockStation *, GtkWidget *); +/* Retire un paquet d'informations de l'affichage centralisé. */ +void gtk_dock_panel_remove_widget(GtkDockStation *, GtkWidget *); + /* Met à jour, si besoin est, le titre de l'affichage concentré. */ void gtk_dock_panel_update_title(GtkDockStation *, GtkWidget *, const char *); @@ -86,14 +89,6 @@ GtkWidget *gtk_dock_panel_get_widget(GtkDockStation *, gint); -/* Ajoute un nouveau composant à l'ensemble. */ -//void gtk_dock_station_add_item(GtkDockStation *, GDockItem *); - -/* Supprime un composant à l'ensemble. */ -//void gtk_dock_station_remove_item(GtkDockStation *, GDockItem *); - - - G_END_DECLS |