summaryrefslogtreecommitdiff
path: root/src/gtkext/dockstation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gtkext/dockstation.h')
-rw-r--r--src/gtkext/dockstation.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gtkext/dockstation.h b/src/gtkext/dockstation.h
index a857626..3106dae 100644
--- a/src/gtkext/dockstation.h
+++ b/src/gtkext/dockstation.h
@@ -28,6 +28,7 @@
#include <gtk/gtk.h>
+#include "panel.h"
#include "../glibext/helpers.h"
@@ -40,8 +41,14 @@ DECLARE_GTYPE(GtkDockStation, gtk_dock_station, GTK, DOCK_STATION);
/* Crée un nouveau composant pour support d'affichage concentré. */
GtkWidget *gtk_dock_station_new(void);
+/* Ajoute un panneau à un groupe de tuiles. */
+void gtk_dock_station_add_panel(GtkDockStation *, GtkTiledPanel *);
+/* Ajoute un panneau à conserver à un groupe de tuiles. */
+void gtk_dock_station_keep_panel(GtkDockStation *, GtkTiledPanel *);
+/* Indique si la station d'accueil contient au moins un panneau. */
+bool gtk_dock_station_is_empty(const GtkDockStation *);