X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;ds=sidebyside;f=libchimara%2Fstyle.h;h=4f6797339a72144e0dbc6b2f0be4733ad15371b4;hb=e4819b66649d4963a0661cba603c2967b02a6b80;hp=73cbf8caacb5aadda019a160f86d3685e8ae9526;hpb=b2786d791c97b51fee5f5c628d2819fc58c03d8e;p=rodin%2Fchimara.git diff --git a/libchimara/style.h b/libchimara/style.h index 73cbf8c..4f67973 100644 --- a/libchimara/style.h +++ b/libchimara/style.h @@ -11,6 +11,26 @@ #include "stream.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(); +static const gchar* TAG_NAMES[] = { + "normal", + "emphasized", + "preformatted", + "header", + "subheader", + "alert", + "note", + "block-quote", + "input", + "user1", + "user2" +}; + +typedef struct StyleSet { + GHashTable *text_grid; + GHashTable *text_buffer; +} StyleSet; + #endif