diff options
Diffstat (limited to 'src/gtkext/panel-int.h')
-rw-r--r-- | src/gtkext/panel-int.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gtkext/panel-int.h b/src/gtkext/panel-int.h index 593e5b4..5398e51 100644 --- a/src/gtkext/panel-int.h +++ b/src/gtkext/panel-int.h @@ -30,6 +30,16 @@ +/* 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) (const GtkTiledPanel *, bool); + +/* Note un ajout ou un retrait de panneau principal. */ +typedef void (* notify_tiled_panel_state_cb) (GtkTiledPanel *, GtkTiledPanel *, bool); + + /* Elément réactif pour panneaux de l'éditeur (instance) */ struct _GtkTiledPanel { @@ -42,6 +52,11 @@ 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 */ + + notify_tiled_panel_state_cb notify; /* Note d'un ajout ou retrait */ + }; |