summaryrefslogtreecommitdiff
path: root/src/gtkext/area.c
blob: 3c59a59ab8b027adaa06c427a20e2678ec5fe6b7 (plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230

/* Chrysalide - Outil d'analyse de fichiers binaires
 * area.c - définition d'un sous-composant de rendu
 *
 * Copyright (C) 2024 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/>.
 */


#include "area.h"


#include "area-int.h"



/* ------------------------ BASES D'UN NOUVEAU COMPOSANT GTK ------------------------ */


/* Procède à l'initialisation de l'afficheur générique. */
static void gtk_composing_area_class_init(GtkComposingAreaClass *);

/* Procède à l'initialisation de l'afficheur générique. */
static void gtk_composing_area_init(GtkComposingArea *);

/* Supprime toutes les références externes. */
static void gtk_composing_area_dispose(GtkComposingArea *);

/* Procède à la libération totale de la mémoire. */
static void gtk_composing_area_finalize(GtkComposingArea *);


/* --------------------- IMPLEMENTATION DES FONCTIONS DE CLASSE --------------------- */


/* Procède à l'actualisation de l'affichage d'un composant. */
static void gtk_composing_area_snapshot(GtkWidget *, GtkSnapshot *);



/* ---------------------------------------------------------------------------------- */
/*                          BASES D'UN NOUVEAU COMPOSANT GTK                          */
/* ---------------------------------------------------------------------------------- */


/* Détermine le type du composant d'affichage générique. */
G_DEFINE_TYPE(GtkComposingArea, gtk_composing_area, GTK_TYPE_WIDGET);


/******************************************************************************
*                                                                             *
*  Paramètres  : class = classe GTK à initialiser.                            *
*                                                                             *
*  Description : Procède à l'initialisation de l'afficheur générique.         *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void gtk_composing_area_class_init(GtkComposingAreaClass *class)
{
    GObjectClass *object;                   /* Plus haut niveau équivalent */
    GtkWidgetClass *widget;                 /* Classe de haut niveau       */

    object = G_OBJECT_CLASS(class);

    object->dispose = (GObjectFinalizeFunc/* ! */)gtk_composing_area_dispose;
    object->finalize = (GObjectFinalizeFunc)gtk_composing_area_finalize;

    widget = GTK_WIDGET_CLASS(class);

    widget->snapshot = gtk_composing_area_snapshot;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : area = composant GTK à initialiser.                          *
*                                                                             *
*  Description : Procède à l'initialisation de l'afficheur générique.         *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void gtk_composing_area_init(GtkComposingArea *area)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : area = instance d'objet GLib à traiter.                      *
*                                                                             *
*  Description : Supprime toutes les références externes.                     *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void gtk_composing_area_dispose(GtkComposingArea *area)
{
    g_clear_object(&area->snapshot_wgt);

    G_OBJECT_CLASS(gtk_composing_area_parent_class)->dispose(G_OBJECT(area));

}


/******************************************************************************
*                                                                             *
*  Paramètres  : area = instance d'objet GLib à traiter.                      *
*                                                                             *
*  Description : Procède à la libération totale de la mémoire.                *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void gtk_composing_area_finalize(GtkComposingArea *area)
{
    G_OBJECT_CLASS(gtk_composing_area_parent_class)->finalize(G_OBJECT(area));

}


/******************************************************************************
*                                                                             *
*  Paramètres  : -                                                            *
*                                                                             *
*  Description : Crée un composant de composition pour rendu principalement.  *
*                                                                             *
*  Retour      : Composant graphique pour GTK créé.                           *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GtkComposingArea *g_raw_scan_cache_builder_new(void)
{
    GtkComposingArea *result;               /* Nouvelle instance à renvoyer*/

    result = g_object_new(GTK_TYPE_COMPOSING_AREA, NULL);

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : area = sous-composant dont la définition est à compléter.    *
*                cb   = procédure de sous-traitance à enregistrer.            *
*                wgt  = contexte d'appel.                                     *
*                                                                             *
*  Description : Enregistre une fonction de rappel pour le rendu du composant.*
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

void g_raw_scan_cache_register_snapshot(GtkComposingArea *area, snapshot_composing_area_cb cb, GtkWidget *wgt)
{
    g_clear_object(&area->snapshot_wgt);

    area->snapshot = cb;

    if (wgt != NULL)
        ref_object(wgt);

    area->snapshot_wgt = wgt;

}



/* ---------------------------------------------------------------------------------- */
/*                       IMPLEMENTATION DES FONCTIONS DE CLASSE                       */
/* ---------------------------------------------------------------------------------- */


/******************************************************************************
*                                                                             *
*  Paramètres  : widget   = composant graphique visé par la procédure.        *
*                snapshot = gestionnaire de noeuds de rendu à solliciter.     *
*                                                                             *
*  Description : Procède à l'actualisation de l'affichage d'un composant.     *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void gtk_composing_area_snapshot(GtkWidget *widget, GtkSnapshot *snapshot)
{
    GtkComposingArea *area;                 /* Véritable instance en jeu   */

    area = GTK_COMPOSING_AREA(widget);

    if (area->snapshot != NULL)
        area->snapshot(widget, snapshot, area->snapshot_wgt);

}