2 * This file is part of DisOrder
3 * Copyright (C) 2007 Richard Kettlewell
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 #include "disobedience.h"
26 VECTOR_TYPE(markstack, GtkTextMark *, xrealloc);
28 /** @brief Known tag type */
30 /** @brief HTML tag name */
33 /** @brief Called to set up the tag */
34 void (*init)(GtkTextTag *tag);
36 /** @brief GTK+ tag object */
40 static void init_bold(GtkTextTag *tag) {
41 g_object_set(G_OBJECT(tag), "weight", PANGO_WEIGHT_BOLD, (char *)0);
44 static void init_italic(GtkTextTag *tag) {
45 g_object_set(G_OBJECT(tag), "style", PANGO_STYLE_ITALIC, (char *)0);
48 static void init_pre(GtkTextTag *tag) {
49 g_object_set(G_OBJECT(tag), "family", "monospace", (char *)0);
51 /** @brief Table of known tags
53 * Keep in alphabetical order
55 static struct tag tags[] = {
56 { "b", init_bold, 0 },
57 { "i", init_italic, 0 },
58 { "pre", init_pre, 0 }
61 /** @brief Number of known tags */
62 #define NTAGS (sizeof tags / sizeof *tags)
64 /** @brief State structure for insert_html() */
66 /** @brief The buffer to insert into */
67 GtkTextBuffer *buffer;
69 /** @brief True if we are inside <body> */
72 /** @brief True if inside <pre> */
75 /** @brief True if a space is required before any non-space */
78 /** @brief Stack of marks corresponding to tags */
79 struct markstack marks[1];
83 /** @brief Called for an open tag */
84 static void html_open(const char *tag,
85 hash attribute((unused)) *attrs,
87 struct state *const s = u;
90 if(!strcmp(tag, "body"))
92 else if(!strcmp(tag, "pre"))
96 /* push a mark for the start of the region */
97 gtk_text_buffer_get_iter_at_mark(s->buffer, iter,
98 gtk_text_buffer_get_insert(s->buffer));
99 markstack_append(s->marks,
100 gtk_text_buffer_create_mark(s->buffer,
103 TRUE/*left_gravity*/));
106 /** @brief Called for a close tag */
107 static void html_close(const char *tag,
109 struct state *const s = u;
110 GtkTextIter start[1], end[1];
113 if(!strcmp(tag, "body"))
115 else if(!strcmp(tag, "pre")) {
121 /* see if this is a known tag */
122 if((n = TABLE_FIND(tags, struct tag, name, tag)) < 0)
124 /* pop the mark at the start of the region */
125 assert(s->marks->nvec > 0);
126 gtk_text_buffer_get_iter_at_mark(s->buffer, start,
127 s->marks->vec[--s->marks->nvec]);
128 gtk_text_buffer_get_iter_at_mark(s->buffer, end,
129 gtk_text_buffer_get_insert(s->buffer));
131 gtk_text_buffer_apply_tag(s->buffer, tags[n].tag, start, end);
132 /* don't need the start mark any more */
133 gtk_text_buffer_delete_mark(s->buffer, s->marks->vec[s->marks->nvec]);
136 /** @brief Called for text */
137 static void html_text(const char *text,
139 struct state *const s = u;
145 char *formatted = xmalloc(strlen(text) + 1), *t = formatted;
146 /* normalize spacing */
148 if(isspace((unsigned char)*text)) {
162 gtk_text_buffer_insert_at_cursor(s->buffer, text, strlen(text));
165 /** @brief Callbacks for insert_html() */
166 static const struct html_parser_callbacks insert_html_callbacks = {
172 /** @brief Insert @p html into @p buffer at cursor */
173 static void insert_html(GtkTextBuffer *buffer,
177 GtkTextTagTable *tagtable;
179 memset(s, 0, sizeof *s);
181 markstack_init(s->marks);
182 /* initialize tags */
184 for(n = 0; n < NTAGS; ++n)
185 tags[n].init(tags[n].tag = gtk_text_tag_new(0));
186 /* add tags to this buffer */
187 tagtable = gtk_text_buffer_get_tag_table(s->buffer);
188 for(n = 0; n < NTAGS; ++n)
189 gtk_text_tag_table_add(tagtable, tags[n].tag);
190 /* convert the input */
191 html_parse(&insert_html_callbacks, html, s);
194 static GtkTextBuffer *html_buffer(const char *html) {
195 GtkTextBuffer *buffer = gtk_text_buffer_new(NULL);
197 insert_html(buffer, html);
201 static GtkWidget *help_window;
203 void popup_help(void) {
207 gtk_window_present(GTK_WINDOW(help_window));
210 help_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
211 g_signal_connect(help_window, "destroy",
212 G_CALLBACK(gtk_widget_destroyed), &help_window);
213 gtk_window_set_title(GTK_WINDOW(help_window), "Disobedience Manual");
214 view = gtk_text_view_new_with_buffer(html_buffer(manual));
215 gtk_text_view_set_editable(GTK_TEXT_VIEW(view), FALSE);
216 gtk_container_add(GTK_CONTAINER(help_window),
219 gtk_window_set_default_size(GTK_WINDOW(help_window), 480, 512);
220 gtk_widget_show_all(help_window);