blob: 2ffa8ecef3fa47901944d3bf178a225308b06591 (
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
|
/* Chrysalide - Outil d'analyse de fichiers binaires
* buffercache-int.h - définitions internes d'affichage à la demande d'un ensemble de lignes
*
* Copyright (C) 2020 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 _GLIBEXT_BUFFERCACHE_INT_H
#define _GLIBEXT_BUFFERCACHE_INT_H
#include "buffercache.h"
/* --------------------- FONCTIONS AUXILIAIRES DE MANIPULATIONS --------------------- */
/* Informations rattachées à la génération d'une ligne */
typedef struct _generator_link
{
GLineGenerator *instance; /* Fournisseur de contenu */
size_t repeat; /* Compteur de successions */
} generator_link;
/* Suivi interne de l'état d'une ligne */
typedef struct _cache_info
{
union
{
generator_link generator; /* Générateur unique */
generator_link *generators; /* Liste de générateurs */
};
size_t count; /* Taille de cette liste */
GBufferLine *line; /* Ligne en place ou NULL */
BufferLineFlags extra_flags; /* Propriétés supplémentaires */
} cache_info;
/* -------------------------- TAMPON POUR CODE DESASSEMBLE -------------------------- */
/* Tampon pour gestion de lignes optimisée (instance) */
struct _GBufferCache
{
GObject parent; /* A laisser en premier */
GBinContent *content; /* Contenu binaire global */
cache_info *lines; /* Liste des lignes intégrées */
size_t count; /* Quantité en cache */
size_t used; /* Quantité utilisée */
GWidthTracker *tracker; /* Suivi des largeurs */
};
/* Tampon pour gestion de lignes optimisée (classe) */
struct _GBufferCacheClass
{
GObjectClass parent; /* A laisser en premier */
gint line_height; /* Hauteur maximale des lignes */
gint left_margin; /* Marge gauche + espace */
gint text_pos; /* Début d'impression du code */
/* Signaux */
void (* size_changed) (GBufferCache *, bool, size_t, size_t);
void (* line_updated) (GBufferCache *, size_t);
};
#endif /* _GLIBEXT_BUFFERCACHE_INT_H */
|