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 | |
parent | 54d05927811a59db294af8a24258c0b837360492 (diff) |
Take into account widgets provided by panels for the title bar.gtk4
Diffstat (limited to 'src/gtkext')
-rw-r--r-- | src/gtkext/panel-int.h | 7 | ||||
-rw-r--r-- | src/gtkext/panel.c | 26 | ||||
-rw-r--r-- | src/gtkext/panel.h | 3 |
3 files changed, 36 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 */ + }; diff --git a/src/gtkext/panel.c b/src/gtkext/panel.c index daaa3cf..de55917 100644 --- a/src/gtkext/panel.c +++ b/src/gtkext/panel.c @@ -134,8 +134,34 @@ static void gtk_tiled_panel_finalize(GtkTiledPanel *panel) } +/****************************************************************************** +* * +* Paramètres : panel = panneau graphique à consulter. * +* left = indication quant au côté ciblé. * +* * +* Description : Fournit les composants adaptés pour la barre de titre. * +* * +* Retour : Liste de Composants GTK mis en place. * +* * +* Remarques : - * +* * +******************************************************************************/ +GListStore *gtk_tiled_panel_get_title_widgets(GtkTiledPanel *panel, bool left) +{ + GListStore *result; /* Composant(s) à retourner */ + GtkTiledPanelClass *class; /* Classe à actionner */ + + class = GTK_TILED_PANEL_GET_CLASS(panel); + + if (class->get_widgets != NULL) + result = class->get_widgets(panel, left); + else + result = NULL; + + return result; +} diff --git a/src/gtkext/panel.h b/src/gtkext/panel.h index 407cb06..d2259ef 100644 --- a/src/gtkext/panel.h +++ b/src/gtkext/panel.h @@ -38,6 +38,9 @@ DECLARE_GTYPE(GtkTiledPanel, gtk_tiled_panel, GTK, TILED_PANEL); +/* Fournit les composants adaptés pour la barre de titre. */ +GListStore *gtk_tiled_panel_get_title_widgets(GtkTiledPanel *, bool); + |