diff options
Diffstat (limited to 'src/gtkext/panel.c')
-rw-r--r-- | src/gtkext/panel.c | 26 |
1 files changed, 26 insertions, 0 deletions
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; +} |