summaryrefslogtreecommitdiff
path: root/src/glibext/glinecursor.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-16 20:11:21 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-16 20:11:21 (GMT)
commitf6e56cebfa878dd32a2405fd0c916a40140a1ff0 (patch)
tree3e364d2e2b2de19b85ab6d14f856d4b8db11737a /src/glibext/glinecursor.c
parente0d03e3eddb9d240cc21ac1b7a7ade915fd17942 (diff)
Applied a new GUI update with the new loaded panels features.
Diffstat (limited to 'src/glibext/glinecursor.c')
-rw-r--r--src/glibext/glinecursor.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/glibext/glinecursor.c b/src/glibext/glinecursor.c
index 0245ebd..64521f4 100644
--- a/src/glibext/glinecursor.c
+++ b/src/glibext/glinecursor.c
@@ -190,7 +190,7 @@ int g_line_cursor_compare(const GLineCursor *cursor, const GLineCursor *other)
* *
* Paramètres : cursor = suivi d'emplacement à consulter. *
* *
-* Description : Détermine si un suivi d'emplacement est valide ou non. *
+* Description : Détermine si la position de suivi est pertinente ou non. *
* *
* Retour : Bilan de validité. *
* *
@@ -232,6 +232,27 @@ char *g_line_cursor_build_label(const GLineCursor *cursor)
}
+/******************************************************************************
+* *
+* Paramètres : cursor = emplacement du curseur à afficher. *
+* stack = pile de statuts à mettre à jour. *
+* content = contenu contenant le curseur à représenter. *
+* *
+* Description : Affiche une position dans une barre de statut. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void g_line_cursor_show_status(const GLineCursor *cursor, GtkStatusStack *stack, GLoadedContent *content)
+{
+ G_LINE_CURSOR_GET_CLASS(cursor)->show_status(cursor, stack, content);
+
+}
+
+
/* ---------------------------------------------------------------------------------- */
/* ENCADREMENT DES TRANSFERTS DE DONEES */