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
|
/* OpenIDA - Outil d'analyse de fichiers binaires
* exporter-int.h - prototypes pour la traduction humaine des lignes de rendus
*
* Copyright (C) 2009 Cyrille Bagard
*
* This file is part of OpenIDA.
*
* OpenIDA 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.
*
* OpenIDA 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _ANALYSIS_EXPORTER_INT_H
#define _ANALYSIS_EXPORTER_INT_H
#include "exporter.h"
/* Ajoute du texte simple à un fichier ouvert en écriture. */
typedef void (* add_text_fc) (GContentExporter *, GRenderingOptions *, MainRendering, FILE *);
/* Ajoute à un texte GTK le contenu de la ligne de rendu. */
typedef void (* export_buffer_fc) (GContentExporter *, GBufferLine *, GRenderingOptions *);
/* Exportation de contenu (instance) */
struct _GContentExporter
{
GObject parent; /* A laisser en premier */
add_text_fc add_text; /* Remplissage simple */
export_buffer_fc export_buffer; /* Constitution du texte GLib */
};
/* Exportation de contenu (classe) */
struct _GContentExporterClass
{
GObjectClass parent; /* A laisser en premier */
PangoContext *context; /* Contexte graphique Pango */
PangoAttrList *attribs[RTT_COUNT]; /* Décorateurs pour tampons */
};
/* Ajoute du texte simple à un fichier ouvert en écriture. */
void g_content_exporter_insert_text(GContentExporter *, FILE *, const char *, size_t, RenderingTagType);
/* Ajoute du texte à un tampon de code via l'instance spécifiée. */
void g_content_exporter_insert_into_buffer(GContentExporter *, GBufferLine *, BufferLineColumn, const char *, size_t, RenderingTagType);
#endif /* _ANALYSIS_EXPORTER_INT_H */
|