summaryrefslogtreecommitdiff
path: root/src/gtkext
diff options
context:
space:
mode:
Diffstat (limited to 'src/gtkext')
-rw-r--r--src/gtkext/panel-int.h7
-rw-r--r--src/gtkext/panel.c26
-rw-r--r--src/gtkext/panel.h3
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);
+