/* 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 . */ #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 */