diff options
Diffstat (limited to 'src/gtkext/gtkdockstation.h')
-rw-r--r-- | src/gtkext/gtkdockstation.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gtkext/gtkdockstation.h b/src/gtkext/gtkdockstation.h index 7cc2263..d64a0b8 100644 --- a/src/gtkext/gtkdockstation.h +++ b/src/gtkext/gtkdockstation.h @@ -28,6 +28,10 @@ #include <gtk/gtk.h> +#include "gtkdockable.h" + + + //G_BEGIN_DECLS @@ -76,7 +80,7 @@ GType gtk_dock_station_get_type(void); GtkWidget *gtk_dock_station_new(void); /* Ajoute un paquet d'informations à l'affichage centralisé. */ -void gtk_dock_panel_add_widget(GtkDockStation *, GtkWidget *, const char *, const char *); +void gtk_dock_station_add_dockable(GtkDockStation *, GtkDockable *); /* Change le contenu de l'onglet courant uniquement. */ void gtk_dock_panel_change_active_widget(GtkDockStation *, GtkWidget *); @@ -84,9 +88,6 @@ 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 *); - /* Renvoie un composant intégré dans l'affichage centralisé. */ GtkWidget *gtk_dock_panel_get_widget(GtkDockStation *, gint); |