X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=libchimara%2Fstyle.h;h=4f6797339a72144e0dbc6b2f0be4733ad15371b4;hb=e4819b66649d4963a0661cba603c2967b02a6b80;hp=72af60a4083067dcda00e82eb07e842eb4614658;hpb=2ce0ccd78003fce557bb76883c87ca2cb101608d;p=rodin%2Fchimara.git diff --git a/libchimara/style.h b/libchimara/style.h index 72af60a..4f67973 100644 --- a/libchimara/style.h +++ b/libchimara/style.h @@ -11,10 +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 gboolean style_accept(GScanner *scanner, GTokenType token); -static gboolean style_accept_style_identifier(GScanner *scanner); -static gboolean style_accept_style_hint(GScanner *scanner, GtkTextTag *current_tag); -static void style_add_tag_to_textbuffer(gpointer key, gpointer tag, gpointer tag_table); + +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