Small bug in get_current_font()
[rodin/chimara.git] / libchimara / style.h
index fcd53022359b8b730e7512a73f8caddda52813b7..9a16c1a7d983971e3bd2d6857f5d3f8fe6f58c50 100644 (file)
@@ -2,11 +2,23 @@
 #define STYLE_H
 
 #include <gtk/gtk.h>
+#include <glib.h>
+#include <glib/gstdio.h>
+#include <stdio.h>
 #include "glk.h"
 #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);
+
+typedef struct StyleSet {
+       GHashTable *text_grid;
+       GHashTable *text_buffer;
+} StyleSet;
 
 #endif