1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* Chrysalide - Outil d'analyse de fichiers binaires
* updating-int.h - définitions internes propres aux mise à jour de panneaux
*
* Copyright (C) 2018 Cyrille Bagard
*
* This file is part of Chrysalide.
*
* Chrysalide is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Chrysalide is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Chrysalide. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _GUI_PANELS_UPDATING_INT_H
#define _GUI_PANELS_UPDATING_INT_H
#include "updating.h"
/* 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 *);
/* Réalise une opération de mise à jour de panneau. */
typedef void (* process_updatable_cb) (const GUpdatablePanel *, unsigned int, GtkStatusStack *, activity_id_t, void *);
/* 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
{
GTypeInterface base_iface; /* A laisser en premier */
/* 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 */
clean_updatable_data_cb clean; /* Nettoyage des données */
};
/* Redéfinition */
typedef GUpdatablePanelIface GUpdatablePanelInterface;
#endif /* _GUI_PANELS_UPDATING_INT_H */
|