Implemented output buffering.
[rodin/chimara.git] / libchimara / style.h
index 73cbf8caacb5aadda019a160f86d3685e8ae9526..7b56760fc1fd5a9b4e8af154188f050a9e733887 100644 (file)
@@ -9,8 +9,15 @@
 #include "magic.h"
 #include "chimara-glk-private.h"
 #include "stream.h"
+#include "strio.h"
 
 G_GNUC_INTERNAL void style_init_textbuffer(GtkTextBuffer *buffer);
+G_GNUC_INTERNAL void style_init_textgrid(GtkTextBuffer *buffer);
 G_GNUC_INTERNAL void style_init();
 
+typedef struct StyleSet {
+       GHashTable *text_grid;
+       GHashTable *text_buffer;
+} StyleSet;
+
 #endif