summaryrefslogtreecommitdiff
path: root/src/gui/panels/updating-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-02-20 23:02:44 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-02-20 23:02:44 (GMT)
commit0769fafb253b846b58cd97c4a1df98ca7417ae1c (patch)
treec6b397d82740a26059c02b56d7b3182e5fe08927 /src/gui/panels/updating-int.h
parent738daf23eec2c114d456d13e88c51029f891fbc2 (diff)
Replaced the old symbol panel by a new improved one.
Diffstat (limited to 'src/gui/panels/updating-int.h')
-rw-r--r--src/gui/panels/updating-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/panels/updating-int.h b/src/gui/panels/updating-int.h
index eea8e3b..0007a5a 100644
--- a/src/gui/panels/updating-int.h
+++ b/src/gui/panels/updating-int.h
@@ -41,6 +41,9 @@ typedef void (* process_updatable_cb) (const GUpdatablePanel *, unsigned int, Gt
/* Bascule l'affichage d'un panneau après mise à jour. */
typedef void (* conclude_updatable_cb) (GUpdatablePanel *, unsigned int, void *);
+/* Supprime les données dynamiques utilisées à la mise à jour. */
+typedef void (* clean_updatable_data_cb) (GUpdatablePanel *, unsigned int, void *);
+
/* Mécanisme de mise à jour d'un panneau (interface) */
struct _GUpdatablePanelIface
@@ -53,6 +56,7 @@ struct _GUpdatablePanelIface
introduce_updatable_cb introduce; /* Changement d'affichage #0 */
process_updatable_cb process; /* Mise à jour d'affichage */
conclude_updatable_cb conclude; /* Changement d'affichage #1 */
+ clean_updatable_data_cb clean; /* Nettoyage des données */
};