blob: 8bee3c29cd0dbde09a6cd6073b84ce2d1d89e24e (
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
|
/* Chrysalide - Outil d'analyse de fichiers binaires
* bufferline-int.h - prototypes pour la définition interne d'une représentation de fragments de texte en ligne
*
* 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/>.
*/
#ifndef _GLIBEXT_BUFFERLINE_INT_H
#define _GLIBEXT_BUFFERLINE_INT_H
#include "bufferline.h"
#include "linecolumn.h"
#if 0
/* Mémorisation des origines de texte */
typedef struct _content_origin
{
col_coord_t coord; /* Localisation d'attachement */
GObject *creator; /* Origine de la création */
} content_origin;
#endif
/* Représentation de fragments de texte en ligne (instance) */
struct _GBufferLine
{
GObject parent; /* A laisser en premier */
line_column_t *columns; /* Répartition du texte */
size_t col_count; /* Nombre de colonnes présentes*/
size_t merge_start; /* Début de la zone globale */
BufferLineFlags flags; /* Drapeaux particuliers */
#if 0
content_origin *origins; /* Mémorisation des origines */
size_t ocount; /* Nombre de ces mémorisations */
#endif
};
/* Représentation de fragments de texte en ligne (classe) */
struct _GBufferLineClass
{
GObjectClass parent; /* A laisser en premier */
#if 0
#ifdef INCLUDE_GTK_SUPPORT
cairo_surface_t *entrypoint_img; /* Image pour les entrées */
cairo_surface_t *bookmark_img; /* Image pour les signets */
#endif
/* Signaux */
void (* content_changed) (GBufferLine *, line_segment *);
void (* flip_flag) (GBufferLine *, BufferLineFlags, BufferLineFlags);
#endif
};
/* Met en place une nouvelle représentation de bribes de texte. */
bool g_buffer_line_create(GBufferLine *, size_t);
#endif /* _GLIBEXT_BUFFERLINE_INT_H */
|