aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg/egg-markup.c
blob: feae85a00643dc7564d1d692293305322e145402 (plain) (blame)
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#include <string.h>
#include "egg-markup.h"
#include "eggtoolbar.h"

#ifndef _
#  define _(String) (String)
#  define N_(String) (String)
#endif

typedef enum {
  STATE_START,
  STATE_ROOT,
  STATE_MENU,
  STATE_TOOLBAR,
  STATE_POPUPS,
  STATE_ITEM,
  STATE_END
} ParseState;

typedef struct _ParseContext ParseContext;
struct _ParseContext
{
  /* parser state information */
  ParseState state;
  ParseState prev_state;

  /* function to call when we finish off a toplevel widget */
  EggWidgetFunc widget_func;
  gpointer user_data;

  /* GdkAccelGroup to use for menus */
  GtkAccelGroup *accel_group;

  /* info about the widget we are constructing at the moment */
  GtkWidget *top;
  gchar *type;
  gchar *name;

  /* the current container we are working on */
  GtkWidget *current;

  /* the ActionGroup used to create menu items */
  EggActionGroup *action_group;
};

static void
start_element_handler (GMarkupParseContext *context,
               const gchar         *element_name,
               const gchar        **attribute_names,
               const gchar        **attribute_values,
               gpointer             user_data,
               GError             **error)
{
  ParseContext *ctx = user_data;
  gboolean raise_error = TRUE;
  gchar *error_attr = NULL;

  switch (element_name[0])
    {
    case 'R':
      if (ctx->state == STATE_START && !strcmp(element_name, "Root"))
    {
      ctx->state = STATE_ROOT;
      raise_error = FALSE;
    }
      break;
    case 'm':
      if (ctx->state == STATE_ROOT && !strcmp(element_name, "menu"))
    {
      ctx->state = STATE_MENU;

      ctx->top = ctx->current = gtk_menu_bar_new();
      ctx->type = "menu";
      ctx->name = NULL;

      raise_error = FALSE;
    }
      else if (ctx->state == STATE_MENU && !strcmp(element_name, "menuitem"))
    {
      gint i;
      const gchar *action_name = NULL;
      EggAction *action = NULL;

      ctx->state = STATE_ITEM;

      for (i = 0; attribute_names[i] != NULL; i++)
        {
          if (!strcmp(attribute_names[i], "verb"))
        {
          action_name = attribute_values[i];
          action = egg_action_group_get_action(ctx->action_group,
                             action_name);
        }
        }

      if (action)
        {
          GtkWidget *widget = egg_action_create_menu_item(action);

          gtk_container_add(GTK_CONTAINER(ctx->current), widget);
          gtk_widget_show(widget);
        }
      else
        {
          g_warning("could not find action '%s'",
            action_name ? action_name : "(null)");
        }

      raise_error = FALSE;
    }
      break;
    case 'd':
      if (ctx->state == STATE_ROOT && !strcmp(element_name, "dockitem"))
    {
      gint i;

      ctx->state = STATE_TOOLBAR;

      ctx->top = ctx->current = egg_toolbar_new();
      ctx->type = "toolbar";
      for (i = 0; attribute_names[i] != NULL; i++)
        {
          if (!strcmp(attribute_names[i], "name"))
        ctx->name = g_strdup(attribute_values[i]);
        }

      raise_error = FALSE;
    }
      break;
    case 'p':
      if (ctx->state == STATE_ROOT && !strcmp(element_name, "popups"))
    {
      ctx->state = STATE_POPUPS;
      raise_error = FALSE;
    }
      else if (ctx->state == STATE_POPUPS &&!strcmp(element_name, "popup"))
    {
      gint i;

      ctx->state = STATE_MENU;

      ctx->top = ctx->current = gtk_menu_new();
      gtk_menu_set_accel_group(GTK_MENU(ctx->current), ctx->accel_group);
      ctx->type = "popup";
      for (i = 0; attribute_names[i] != NULL; i++)
        {
          if (!strcmp(attribute_names[i], "name"))
        {
          ctx->name = g_strdup(attribute_values[i]);
          gtk_menu_set_title(GTK_MENU(ctx->current), ctx->name);
        }
          else if (!strcmp(attribute_names[i], "tearoff"))
        {
          GtkWidget *tearoff = gtk_tearoff_menu_item_new();

          gtk_container_add(GTK_CONTAINER(ctx->current), tearoff);
          gtk_widget_show(tearoff);
        }
        }

      raise_error = FALSE;
    }
      break;
    case 's':
      if (ctx->state == STATE_MENU && !strcmp(element_name, "submenu"))
    {
      gint i;
      const gchar *label = NULL;
      gboolean tearoff = FALSE;
      GtkWidget *widget;

      ctx->state = STATE_MENU;
      for (i = 0; attribute_names[i] != NULL; i++)
        {
          if (!strcmp(attribute_names[i], "label"))
        label = g_strdup(attribute_values[i]);
          else if (!strcmp(attribute_names[i], "tearoff"))
        tearoff = TRUE;
        }
      widget = gtk_menu_item_new_with_label(label);
      gtk_label_set_use_underline(GTK_LABEL(GTK_BIN(widget)->child), TRUE);
      gtk_container_add(GTK_CONTAINER(ctx->current), widget);
      gtk_widget_show(widget);

      ctx->current = gtk_menu_new();
      gtk_menu_set_accel_group(GTK_MENU(ctx->current), ctx->accel_group);
      gtk_menu_set_title(GTK_MENU(ctx->current), label);
      gtk_menu_item_set_submenu(GTK_MENU_ITEM(widget), ctx->current);

      if (tearoff)
        {
          GtkWidget *tearoff = gtk_tearoff_menu_item_new();

          gtk_container_add(GTK_CONTAINER(ctx->current), tearoff);
          gtk_widget_show(tearoff);
        }
      
      raise_error = FALSE;
    }
      else if ((ctx->state == STATE_MENU || ctx->state == STATE_TOOLBAR) &&
           !strcmp(element_name, "separator"))
    {
      ctx->state = STATE_ITEM;

      if (GTK_IS_MENU_SHELL(ctx->current))
        {
          GtkWidget *widget = gtk_separator_menu_item_new();
          gtk_container_add(GTK_CONTAINER(ctx->current), widget);
          gtk_widget_show(widget);
        }
      else /* toolbar */
        {
          EggToolItem *item = egg_tool_item_new ();
          egg_toolbar_insert_tool_item (EGG_TOOLBAR(ctx->current), item, -1);
          gtk_widget_show (GTK_WIDGET (item));
        }

      raise_error = FALSE;
    }
      break;
    case 't':
      if (ctx->state == STATE_TOOLBAR && !strcmp(element_name, "toolitem"))
    {
      gint i;
      const gchar *action_name = NULL;
      EggAction *action = NULL;

      ctx->state = STATE_ITEM;

      for (i = 0; attribute_names[i] != NULL; i++)
        {
          if (!strcmp(attribute_names[i], "verb"))
        {
          action_name = attribute_values[i];
          action = egg_action_group_get_action(ctx->action_group,
                             action_name);
        }
        }

      if (action)
        {
          GtkWidget *widget = egg_action_create_tool_item (action);

          gtk_container_add (GTK_CONTAINER (ctx->current), widget);
        }
      else
        {
          g_warning("could not find action '%s'",
            action_name ? action_name : "(null)");
        }

      raise_error = FALSE;
    }
      break;
    };

  if (raise_error)
    {
      gint line_number, char_number;

      g_markup_parse_context_get_position (context,
                                           &line_number, &char_number);

      if (error_attr)
    g_set_error (error,
             G_MARKUP_ERROR,
             G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE,
             _("Unknown attribute '%s' on line %d char %d"),
             error_attr,
             line_number, char_number);
      else
    g_set_error (error,
             G_MARKUP_ERROR,
             G_MARKUP_ERROR_UNKNOWN_ELEMENT,
             _("Unknown tag '%s' on line %d char %d"),
             element_name,
             line_number, char_number);
    }
}

static void
end_element_handler (GMarkupParseContext *context,
             const gchar         *element_name,
             gpointer             user_data,
             GError             **error)
{
  ParseContext *ctx = user_data;
  GtkWidget *widget;

  switch (ctx->state)
    {
    case STATE_START:
      g_warning("shouldn't get any end tags at this point");
      /* should do a GError here */
      break;
    case STATE_ROOT:
      ctx->state = STATE_END;
      break;
    case STATE_MENU:
      widget = GTK_IS_MENU(ctx->current) ?
    gtk_menu_get_attach_widget(GTK_MENU(ctx->current)) : NULL;
      if (widget) /* not back to the toplevel ... */
    {
      ctx->current = widget->parent;
      ctx->state = STATE_MENU;
    }
      else
    {
      if (GTK_IS_MENU(ctx->current)) /* must be a popup */
        ctx->state = STATE_POPUPS;
      else
        ctx->state = STATE_ROOT;

      /* notify */
      (* ctx->widget_func)(ctx->top, ctx->type, ctx->name, ctx->user_data);
      ctx->top = NULL;
      ctx->type = NULL;
      g_free(ctx->name);
      ctx->name = NULL;
      ctx->current = NULL;
    }
      break;
    case STATE_TOOLBAR:
      ctx->state = STATE_ROOT;

      /* notify */
      (* ctx->widget_func)(ctx->top, ctx->type, ctx->name, ctx->user_data);
      ctx->top = NULL;
      ctx->type = NULL;
      g_free(ctx->name);
      ctx->name = NULL;
      ctx->current = NULL;
      break;
    case STATE_POPUPS:
      ctx->state = STATE_ROOT;
      break;
    case STATE_ITEM:
      if (GTK_IS_MENU_SHELL(ctx->current))
    ctx->state = STATE_MENU;
      else
    ctx->state = STATE_TOOLBAR;
      break;
    case STATE_END:
      g_warning("shouldn't get any end tags at this point");
      /* should do a GError here */
      break;
    }
}

static void
cleanup (GMarkupParseContext *context,
     GError              *error,
     gpointer             user_data)
{
  ParseContext *ctx = user_data;

  gtk_widget_destroy(ctx->top);
  ctx->top = NULL;
  ctx->type = NULL;
  g_free(ctx->name);
  ctx->name = NULL;
  ctx->current = NULL;
}


static GMarkupParser ui_parser = {
  start_element_handler,
  end_element_handler,
  NULL,
  NULL,
  cleanup
};


gboolean
egg_create_from_string (EggActionGroup *action_group,
            EggWidgetFunc widget_func, gpointer user_data,
            GtkAccelGroup *accel_group,
            const gchar *buffer, guint length,
            GError **error)
{
  ParseContext ctx = { 0 };
  GMarkupParseContext *context;
  gboolean res = TRUE;

  g_return_val_if_fail(EGG_IS_ACTION_GROUP(action_group), FALSE);
  g_return_val_if_fail(widget_func != NULL, FALSE);
  g_return_val_if_fail(GTK_IS_ACCEL_GROUP(accel_group), FALSE);
  g_return_val_if_fail(buffer != NULL, FALSE);

  ctx.state = STATE_START;
  ctx.widget_func = widget_func;
  ctx.user_data = user_data;
  ctx.accel_group = accel_group;
  ctx.top = NULL;
  ctx.type = NULL;
  ctx.name = NULL;
  ctx.current = NULL;
  ctx.action_group = action_group;

  context = g_markup_parse_context_new(&ui_parser, 0, &ctx, NULL);
  if (length < 0)
    length = strlen(buffer);

  if (g_markup_parse_context_parse(context, buffer, length, error))
    {
      if (!g_markup_parse_context_end_parse(context, error))
    res = FALSE;
    }
  else
    res = FALSE;

  g_markup_parse_context_free (context);

  return res;
}

gboolean
egg_create_from_file (EggActionGroup *action_group,
              EggWidgetFunc widget_func,
              gpointer user_data,
              GtkAccelGroup *accel_group,
              const gchar *filename,
              GError **error)
{
  gchar *buffer;
  gint length;
  gboolean res;

  if (!g_file_get_contents (filename, &buffer, &length, error))
    return FALSE;

  res = egg_create_from_string(action_group, widget_func, user_data,
                   accel_group, buffer, length, error);
  g_free(buffer);

  return res;
}