8d7c69e104540906bd40a092b0ca0d9c0d282d60
[rodin/chimara.git] / libchimara / style.h
1 #ifndef STYLE_H
2 #define STYLE_H
3
4 #include <gtk/gtk.h>
5 #include <glib.h>
6 #include <glib/gstdio.h>
7 #include <stdio.h>
8 #include "glk.h"
9 #include "magic.h"
10 #include "chimara-glk-private.h"
11 #include "stream.h"
12 #include "strio.h"
13
14 G_GNUC_INTERNAL void style_init_textbuffer(GtkTextBuffer *buffer);
15 G_GNUC_INTERNAL void style_init_textgrid(GtkTextBuffer *buffer);
16 G_GNUC_INTERNAL void style_init();
17 G_GNUC_INTERNAL PangoFontDescription* get_current_font(guint32 wintype);
18 G_GNUC_INTERNAL GtkTextTag* gtk_text_tag_copy(GtkTextTag *tag);
19
20 typedef struct StyleSet {
21         GHashTable *text_grid;
22         GHashTable *text_buffer;
23 } StyleSet;
24
25 #endif