summaryrefslogtreecommitdiff
path: root/src/gui/panels/updating-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-06-01 21:33:51 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-06-01 21:33:51 (GMT)
commitf0fa987133468d7d3cae7894d813b852782bf895 (patch)
tree51b78b6f2751c8aa0c82cf6265e0f6a87eadfae5 /src/gui/panels/updating-int.h
parente060d9a9f29c0d7708e7002c2e1fc4962020ba94 (diff)
Setup more control when updating panels.
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 40414ce..18c038e 100644
--- a/src/gui/panels/updating-int.h
+++ b/src/gui/panels/updating-int.h
@@ -32,6 +32,9 @@
/* Prépare une opération de mise à jour de panneau. */
typedef const char * (* setup_updatable_cb) (const GUpdatablePanel *, unsigned int, size_t *, void **);
+/* Obtient le groupe de travail dédié à une mise à jour. */
+typedef wgroup_id_t (* get_updatable_group_cb) (const GUpdatablePanel *);
+
/* Bascule l'affichage d'un panneau avant mise à jour. */
typedef void (* introduce_updatable_cb) (const GUpdatablePanel *, unsigned int, void *);
@@ -53,6 +56,7 @@ struct _GUpdatablePanelIface
/* Méthodes virtuelles */
setup_updatable_cb setup; /* Préparation des traitements */
+ get_updatable_group_cb get_group; /* Obtention du groupe dédié */
introduce_updatable_cb introduce; /* Changement d'affichage #0 */
process_updatable_cb process; /* Mise à jour d'affichage */
conclude_updatable_cb conclude; /* Changement d'affichage #1 */