summaryrefslogtreecommitdiff
path: root/src/gtkext/panel-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2025-04-16 08:38:25 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2025-04-16 08:38:25 (GMT)
commit597ccba5285e5423bfe63d010b23293b62b452d4 (patch)
tree73b783e0259f6609b282c7f3fdc6ab62245256a1 /src/gtkext/panel-int.h
parent91ff093198c22d474d3fe0fd6fa290d95dbffb79 (diff)
Rewrite the tiling layout using widgets.
Diffstat (limited to 'src/gtkext/panel-int.h')
-rw-r--r--src/gtkext/panel-int.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gtkext/panel-int.h b/src/gtkext/panel-int.h
index 07ade20..cb210d9 100644
--- a/src/gtkext/panel-int.h
+++ b/src/gtkext/panel-int.h
@@ -30,8 +30,11 @@
+/* Indique l'emplacement par défaut pour un affichage. */
+typedef char * (* get_tiled_panel_path) (const GtkTiledPanel *);
+
/* Fournit les composants adaptés pour la barre de titre. */
-typedef GListStore * (* get_tiled_panel_widgets_cb) (GtkTiledPanel *, bool);
+typedef GListStore * (* get_tiled_panel_widgets_cb) (const GtkTiledPanel *, bool);
@@ -47,6 +50,7 @@ struct _GtkTiledPanelClass
{
GtkBoxClass parent; /* A laisser en premier */
+ get_tiled_panel_path get_default_path; /* Localisation de l'affichage */
get_tiled_panel_widgets_cb get_widgets; /* Récupération de composants */
};