summaryrefslogtreecommitdiff
path: root/src/analysis/loaded-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-20 16:43:23 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-20 16:43:23 (GMT)
commita809d3517eb928d5d7a03d96a85f8af96daa1047 (patch)
tree451decffd5fc20d1a5237b2aa814a62aaba99316 /src/analysis/loaded-int.h
parent5093663eb4e4aa17edd97cbd864ccb4a3d48a803 (diff)
Included dynamic items in the view menu.
Diffstat (limited to 'src/analysis/loaded-int.h')
-rw-r--r--src/analysis/loaded-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/analysis/loaded-int.h b/src/analysis/loaded-int.h
index 044dad7..ed7d84a 100644
--- a/src/analysis/loaded-int.h
+++ b/src/analysis/loaded-int.h
@@ -51,6 +51,9 @@ typedef const char * (* describe_loaded_fc) (const GLoadedContent *, bool);
/* Détermine le nombre de vues disponibles pour un contenu. */
typedef unsigned int (* count_loaded_views_fc) (const GLoadedContent *);
+/* Fournit le nom d'une vue donnée d'un contenu chargé. */
+typedef const char * (* get_loaded_view_name_fc) (const GLoadedContent *, unsigned int);
+
/* Met en place la vue demandée pour un contenu chargé. */
typedef GtkWidget * (* build_loaded_view_fc) (GLoadedContent *, unsigned int);
@@ -79,6 +82,7 @@ struct _GLoadedContentIface
describe_loaded_fc describe; /* Description de contenu */
count_loaded_views_fc count_views; /* Compteur de vues */
+ get_loaded_view_name_fc get_view_name; /* Désignation d'une vue donnée*/
build_loaded_view_fc build_view; /* Mise en place de vues */
get_loaded_view_index_fc get_view_index;/* Récupération d'indice de vue*/