1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
|
/**
* @file
* "Format" expression-related functions of the \e GtkExperimentTranscript
* widget
*/
/*
* Copyright (C) 2012 Otto-von-Guericke-Universität Magdeburg
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <glib.h>
#include <glib/gprintf.h>
#include <glib/gstdio.h>
#include <gtk/gtk.h>
#include "gtk-experiment-transcript-private.h"
#define FORMAT_REGEX_COMPILE_FLAGS (G_REGEX_CASELESS)
#define FORMAT_REGEX_MATCH_FLAGS (0)
static gboolean
gtk_experiment_transcript_parse_format(GtkExperimentTranscriptFormat *fmt,
const gchar *str)
{
PangoAttrIterator *iter;
gchar *pattern, pattern_captures[255], *p;
gint capture_count = 0;
if (!pango_parse_markup(str, -1, 0, &fmt->attribs, &pattern,
NULL, NULL))
return TRUE;
p = pattern_captures;
iter = pango_attr_list_get_iterator(fmt->attribs);
do {
gint start, end;
pango_attr_iterator_range(iter, &start, &end);
if (end < G_MAXINT) {
*p++ = '(';
strncpy(p, pattern + start, end - start);
p += end - start;
*p++ = ')';
capture_count++;
}
} while (pango_attr_iterator_next(iter));
pango_attr_iterator_destroy(iter);
*p = '\0';
g_free(pattern);
fmt->regexp = g_regex_new(pattern_captures,
FORMAT_REGEX_COMPILE_FLAGS, 0, NULL);
if (fmt->regexp == NULL ||
g_regex_get_capture_count(fmt->regexp) != capture_count) {
gtk_experiment_transcript_free_format(fmt);
fmt->regexp = NULL;
fmt->attribs = NULL;
return TRUE;
}
return FALSE;
}
/** @private */
void
gtk_experiment_transcript_apply_format(GtkExperimentTranscriptFormat *fmt,
const gchar *text,
PangoAttrList *attrib_list)
{
GMatchInfo *match_info;
if (fmt->regexp == NULL || fmt->attribs == NULL)
return;
g_regex_match(fmt->regexp, text, FORMAT_REGEX_MATCH_FLAGS, &match_info);
while (g_match_info_matches(match_info)) {
PangoAttrIterator *iter;
gint match_num = 1;
iter = pango_attr_list_get_iterator(fmt->attribs);
do {
gint start, end;
pango_attr_iterator_range(iter, &start, &end);
if (end == G_MAXINT)
continue;
start = end = -1;
g_match_info_fetch_pos(match_info, match_num,
&start, &end);
if (start >= 0 && end >= 0) {
GSList *attribs;
attribs = pango_attr_iterator_get_attrs(iter);
for (GSList *cur = attribs; cur != NULL; cur = cur->next) {
PangoAttribute *attrib;
attrib = pango_attribute_copy((PangoAttribute *)cur->data);
attrib->start_index = (guint)start;
attrib->end_index = (guint)end;
pango_attr_list_change(attrib_list, attrib);
}
g_slist_free(attribs);
}
match_num++;
} while (pango_attr_iterator_next(iter));
pango_attr_iterator_destroy(iter);
g_match_info_next(match_info, NULL);
}
g_match_info_free(match_info);
}
/** @private */
void
gtk_experiment_transcript_free_formats(GSList *formats)
{
for (GSList *cur = formats; cur != NULL; cur = cur->next) {
GtkExperimentTranscriptFormat *fmt =
(GtkExperimentTranscriptFormat *)cur->data;
gtk_experiment_transcript_free_format(fmt);
g_free(fmt);
}
g_slist_free(formats);
}
/*
* API
*/
/**
* @brief Load a format file to use with the transcript widget
*
* Loading a format file applies additional formattings (highlighting) to the
* transcript's contributions according to the rules specified in the file.
* For information about the format file syntax and semantics, refer to the
* "Experiment Player" manual.
*
* The format file is parsed and and compiled to an internal representation.
*
* @param trans Widget instance
* @param filename File name of format file to load (\c NULL or empty string
* resets any formattings of a previously loaded file)
* @return \c TRUE on error, else \c FALSE
*/
/** @todo report errors using GError */
gboolean
gtk_experiment_transcript_load_formats(GtkExperimentTranscript *trans,
const gchar *filename)
{
FILE *file;
gchar buf[255];
gboolean res = TRUE;
gtk_experiment_transcript_free_formats(trans->priv->formats);
trans->priv->formats = NULL;
if (filename == NULL || !*filename) {
res = FALSE;
goto redraw;
}
if ((file = g_fopen(filename, "r")) == NULL)
goto redraw;
while (fgets((char *)buf, sizeof(buf)-1, file) != NULL) {
GtkExperimentTranscriptFormat *fmt;
g_strchug(buf);
switch (*buf) {
case '#':
case '\r':
case '\n':
case '\0':
continue;
}
fmt = g_new(GtkExperimentTranscriptFormat, 1);
if (gtk_experiment_transcript_parse_format(fmt, buf)) {
g_free(fmt);
fclose(file);
gtk_experiment_transcript_free_formats(trans->priv->formats);
trans->priv->formats = NULL;
goto redraw;
}
trans->priv->formats = g_slist_prepend(trans->priv->formats, fmt);
}
trans->priv->formats = g_slist_reverse(trans->priv->formats);
fclose(file);
res = FALSE;
redraw:
gtk_experiment_transcript_text_layer_redraw(trans);
return res;
}
/**
* @brief Specify an interactive format string for a transcript widget
*
* Associates a single format rule with a transcript widget. The formatting
* changes are cumulatively applied after any changes introduced by a format
* file loaded into the widget. The interactive format rule is independant of
* any format file rules, that is it is not reset when format file rules are
* reset.
* A rule may also be given without Pango markup (plain regular expression),
* applying default formattings for that regular expression. Default formattings
* may be configured via public instance attributes of the widget.
* For information about the format rule syntax and semantics, refer to the
* "Experiment Player" manual.
*
* @sa gtk_experiment_transcript_load_formats
*
* @param trans Widget instance
* @param format_str Format rule string (with or without markup)
* @param with_markup Must be \c TRUE if the format_str contains Pango markup,
* else \c FALSE
* @return \c TRUE on error, else \c FALSE
*/
gboolean
gtk_experiment_transcript_set_interactive_format(GtkExperimentTranscript *trans,
const gchar *format_str,
gboolean with_markup)
{
GtkExperimentTranscriptFormat *fmt = &trans->priv->interactive_format;
gchar *pattern;
PangoAttribute *attrib;
gboolean res = TRUE;
gtk_experiment_transcript_free_format(fmt);
fmt->regexp = NULL;
fmt->attribs = NULL;
if (format_str == NULL || !*format_str) {
res = FALSE;
goto redraw;
}
if (with_markup) {
res = gtk_experiment_transcript_parse_format(fmt, format_str);
goto redraw;
}
/* else if (!with_markup) */
fmt->attribs = pango_attr_list_new();
if (fmt->attribs == NULL)
goto redraw;
if (trans->interactive_format.default_font != NULL) {
attrib = pango_attr_font_desc_new(trans->interactive_format.default_font);
attrib->end_index = 1;
pango_attr_list_insert(fmt->attribs, attrib);
}
if (trans->interactive_format.default_text_color != NULL) {
GdkColor *color = trans->interactive_format.default_text_color;
attrib = pango_attr_foreground_new(color->red,
color->green,
color->blue);
attrib->end_index = 1;
pango_attr_list_insert(fmt->attribs, attrib);
}
if (trans->interactive_format.default_bg_color != NULL) {
GdkColor *color = trans->interactive_format.default_bg_color;
attrib = pango_attr_background_new(color->red,
color->green,
color->blue);
attrib->end_index = 1;
pango_attr_list_insert(fmt->attribs, attrib);
}
pattern = g_strconcat("(", format_str, ")", NULL);
fmt->regexp = g_regex_new(pattern, FORMAT_REGEX_COMPILE_FLAGS, 0, NULL);
g_free(pattern);
if (fmt->regexp == NULL ||
g_regex_get_capture_count(fmt->regexp) != 1) {
gtk_experiment_transcript_free_format(fmt);
fmt->regexp = NULL;
fmt->attribs = NULL;
goto redraw;
}
res = FALSE;
redraw:
gtk_experiment_transcript_text_layer_redraw(trans);
return res;
}
|