summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkdockstation.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-08-13 00:35:42 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-08-13 00:35:42 (GMT)
commit50a657889a32a6df365bf9880a6f56bf3a0e828c (patch)
treecf6218848a0119aafa4610baee73adcc1ef6c10b /src/gtkext/gtkdockstation.h
parent4c611d6f41d82603a5d37baf88b0bb213044eb60 (diff)
Improved the look of dock stations and saved screen space.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@571 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkext/gtkdockstation.h')
-rw-r--r--src/gtkext/gtkdockstation.h9
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);