5c2778b16c31f2e60b84dde7f237ade4ed3772ef
[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
7 G_GNUC_INTERNAL void style_init_textbuffer(GtkTextBuffer *buffer);
8 G_GNUC_INTERNAL void style_init_textgrid(GtkTextBuffer *buffer);
9 G_GNUC_INTERNAL void style_init();
10 G_GNUC_INTERNAL PangoFontDescription* get_current_font(guint32 wintype);
11 G_GNUC_INTERNAL GtkTextTag* gtk_text_tag_copy(GtkTextTag *tag);
12
13 G_GNUC_INTERNAL void glkcolor_to_gdkcolor(glui32 val, GdkColor *color);
14
15 typedef struct StyleSet {
16         GHashTable *text_grid;
17         GHashTable *text_buffer;
18 } StyleSet;
19
20 #endif