diff options
Diffstat (limited to 'src/analysis/exporter-int.h')
-rw-r--r-- | src/analysis/exporter-int.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/analysis/exporter-int.h b/src/analysis/exporter-int.h index 421770e..5198e4f 100644 --- a/src/analysis/exporter-int.h +++ b/src/analysis/exporter-int.h @@ -35,12 +35,6 @@ typedef void (* add_text_fc) (GContentExporter *, GRenderingOptions *, MainRende /* Ajoute à un texte GTK le contenu de la ligne de rendu. */ typedef void (* export_buffer_fc) (GContentExporter *, GBufferLine *, GRenderingOptions *); -/* Ajoute à un texte GTK le contenu de la ligne de rendu. */ -typedef void (* add_to_gtk_buffer_fc) (GContentExporter *, MainRendering, GtkTextBuffer *, GtkTextIter *, size_t [SAR_COUNT]); - -/* Traduit une instruction en version humainement lisible. */ -typedef void (* add_arch_to_gtk_buffer_fc) (const GContentExporter *, const GExeFormat *, AsmSyntax, GtkTextBuffer *, GtkTextIter *); - /* Exportation de contenu (instance) */ @@ -49,10 +43,7 @@ struct _GContentExporter GObject parent; /* A laisser en premier */ add_text_fc add_text; /* Remplissage simple */ - export_buffer_fc export_buffer; /* Constitution du texte GTK */ - add_to_gtk_buffer_fc add_to_gtk_buffer; /* Constitution du texte GTK */ - - add_arch_to_gtk_buffer_fc add_arch_to_gtk_buffer; /* Constitution... */ + export_buffer_fc export_buffer; /* Constitution du texte GLib */ }; @@ -65,8 +56,6 @@ struct _GContentExporterClass PangoContext *context; /* Contexte graphique Pango */ PangoAttrList *attribs[RTT_COUNT]; /* Décorateurs pour tampons */ - GtkTextTag *tags[RTT_COUNT]; /* Décorateurs pour les textes */ - }; @@ -76,9 +65,6 @@ void g_content_exporter_insert_text(GContentExporter *, FILE *, const char *, si /* 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); -/* Ajoute du texte à un texte GTK via l'instance spécifiée. */ -void g_content_exporter_insert_with_gtk_tag(GContentExporter *, GtkTextBuffer *, GtkTextIter *, const char *, size_t, RenderingTagType); - #endif /* _ANALYSIS_EXPORTER_INT_H */ |