diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-11-03 14:07:03 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-11-03 14:07:03 (GMT) |
commit | 530cd02edf04a3df85a1b40f476f2b2d54793e4e (patch) | |
tree | f0616f6478c52b018679cc4cec1b06d9e37331a1 /src/gtkext/panel-int.h | |
parent | 54d05927811a59db294af8a24258c0b837360492 (diff) |
Take into account widgets provided by panels for the title bar.gtk4
Diffstat (limited to 'src/gtkext/panel-int.h')
-rw-r--r-- | src/gtkext/panel-int.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gtkext/panel-int.h b/src/gtkext/panel-int.h index 593e5b4..07ade20 100644 --- a/src/gtkext/panel-int.h +++ b/src/gtkext/panel-int.h @@ -30,6 +30,11 @@ +/* Fournit les composants adaptés pour la barre de titre. */ +typedef GListStore * (* get_tiled_panel_widgets_cb) (GtkTiledPanel *, bool); + + + /* Elément réactif pour panneaux de l'éditeur (instance) */ struct _GtkTiledPanel { @@ -42,6 +47,8 @@ struct _GtkTiledPanelClass { GtkBoxClass parent; /* A laisser en premier */ + get_tiled_panel_widgets_cb get_widgets; /* Récupération de composants */ + }; |