Added buffer flush and wait for window rearrange in shutdown_glk()
[rodin/chimara.git] / libchimara / style.h
index 73cbf8caacb5aadda019a160f86d3685e8ae9526..8d7c69e104540906bd40a092b0ca0d9c0d282d60 100644 (file)
@@ -9,8 +9,17 @@
 #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();
+G_GNUC_INTERNAL PangoFontDescription* get_current_font(guint32 wintype);
+G_GNUC_INTERNAL GtkTextTag* gtk_text_tag_copy(GtkTextTag *tag);
+
+typedef struct StyleSet {
+       GHashTable *text_grid;
+       GHashTable *text_buffer;
+} StyleSet;
 
 #endif