- Get VPATH build to work
[rodin/chimara.git] / libchimara / chimara-glk.c
1 /* licensing and copyright information here */
2
3 #include <math.h>
4 #include <gtk/gtk.h>
5 #include <config.h>
6 #include <glib/gi18n-lib.h>
7 #include <gmodule.h>
8 #include <pango/pango.h>
9 #include "chimara-glk.h"
10 #include "chimara-glk-private.h"
11 #include "chimara-marshallers.h"
12 #include "glk.h"
13 #include "abort.h"
14 #include "window.h"
15 #include "glkstart.h"
16 #include "glkunix.h"
17 #include "init.h"
18
19 #define CHIMARA_GLK_MIN_WIDTH 0
20 #define CHIMARA_GLK_MIN_HEIGHT 0
21
22 /**
23  * SECTION:chimara-glk
24  * @short_description: Widget which executes a Glk program
25  * @stability: Unstable
26  * @include: chimara/chimara-glk.h
27  * 
28  * The #ChimaraGlk widget opens and runs a Glk program. The program must be
29  * compiled as a plugin module, with a function <function>glk_main()</function>
30  * that the Glk library can hook into.
31  *
32  * On Linux systems, this is a file with a name like 
33  * <filename>plugin.so</filename>. For portability, you can use libtool and 
34  * automake:
35  * |[
36  * pkglib_LTLIBRARIES = plugin.la
37  * plugin_la_SOURCES = plugin.c foo.c bar.c
38  * plugin_la_LDFLAGS = -module -shared -avoid-version -export-symbols-regex "^glk_main$$"
39  * ]|
40  * This will produce <filename>plugin.la</filename> which is a text file 
41  * containing the correct plugin file to open (see the relevant section of the
42  * <ulink 
43  * url="http://www.gnu.org/software/libtool/manual/html_node/Finding-the-dlname.html">
44  * Libtool manual</ulink>).
45  */
46
47 typedef void (* glk_main_t) (void);
48 typedef int (* glkunix_startup_code_t) (glkunix_startup_t*);
49
50 enum {
51     PROP_0,
52     PROP_INTERACTIVE,
53     PROP_PROTECT,
54         PROP_DEFAULT_FONT_DESCRIPTION,
55         PROP_MONOSPACE_FONT_DESCRIPTION,
56         PROP_SPACING
57 };
58
59 enum {
60         STOPPED,
61         STARTED,
62         WAITING,
63         CHAR_INPUT,
64         LINE_INPUT,
65         TEXT_BUFFER_OUTPUT,
66
67         LAST_SIGNAL
68 };
69
70 static guint chimara_glk_signals[LAST_SIGNAL] = { 0 };
71
72 G_DEFINE_TYPE(ChimaraGlk, chimara_glk, GTK_TYPE_CONTAINER);
73
74 static void
75 chimara_glk_init(ChimaraGlk *self)
76 {
77     GTK_WIDGET_SET_FLAGS(GTK_WIDGET(self), GTK_NO_WINDOW);
78
79     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(self);
80     
81     priv->self = self;
82     priv->interactive = TRUE;
83     priv->protect = FALSE;
84         priv->default_font_desc = pango_font_description_from_string("Serif");
85         priv->monospace_font_desc = pango_font_description_from_string("Monospace");
86         priv->css_file = "style.css";
87         priv->default_styles = g_new0(StyleSet,1);
88         priv->current_styles = g_new0(StyleSet,1);
89         priv->running = FALSE;
90     priv->program = NULL;
91     priv->thread = NULL;
92     priv->event_queue = g_queue_new();
93     priv->event_lock = g_mutex_new();
94     priv->event_queue_not_empty = g_cond_new();
95     priv->event_queue_not_full = g_cond_new();
96     priv->abort_lock = g_mutex_new();
97     priv->abort_signalled = FALSE;
98         priv->arrange_lock = g_mutex_new();
99         priv->rearranged = g_cond_new();
100         priv->needs_rearrange = FALSE;
101         priv->ignore_next_arrange_event = FALSE;
102         priv->char_input_queue = g_async_queue_new();
103         priv->line_input_queue = g_async_queue_new();
104         /* Should be g_async_queue_new_full(g_free); but only in GTK >= 2.16 */
105         priv->interrupt_handler = NULL;
106     priv->root_window = NULL;
107     priv->fileref_list = NULL;
108     priv->current_stream = NULL;
109     priv->stream_list = NULL;
110         priv->timer_id = 0;
111         priv->style_initialized = FALSE;
112         priv->in_startup = FALSE;
113         priv->current_dir = NULL;
114 }
115
116 static void
117 chimara_glk_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
118 {
119     ChimaraGlk *glk = CHIMARA_GLK(object);
120     
121     switch(prop_id) 
122     {
123         case PROP_INTERACTIVE:
124             chimara_glk_set_interactive( glk, g_value_get_boolean(value) );
125             break;
126         case PROP_PROTECT:
127             chimara_glk_set_protect( glk, g_value_get_boolean(value) );
128             break;
129                 case PROP_DEFAULT_FONT_DESCRIPTION:
130                         chimara_glk_set_default_font_description( glk, (PangoFontDescription *)g_value_get_pointer(value) );
131                         break;
132                 case PROP_MONOSPACE_FONT_DESCRIPTION:
133                         chimara_glk_set_monospace_font_description( glk, (PangoFontDescription *)g_value_get_pointer(value) );
134                         break;
135                 case PROP_SPACING:
136                         chimara_glk_set_spacing( glk, g_value_get_uint(value) );
137                         break;
138         default:
139             G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
140     }
141 }
142
143 static void
144 chimara_glk_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
145 {
146     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(object);
147     
148     switch(prop_id)
149     {
150         case PROP_INTERACTIVE:
151             g_value_set_boolean(value, priv->interactive);
152             break;
153         case PROP_PROTECT:
154             g_value_set_boolean(value, priv->protect);
155             break;
156                 case PROP_DEFAULT_FONT_DESCRIPTION:
157                         g_value_set_pointer(value, priv->default_font_desc);
158                         break;
159                 case PROP_MONOSPACE_FONT_DESCRIPTION:
160                         g_value_set_pointer(value, priv->monospace_font_desc);
161                         break;
162                 case PROP_SPACING:
163                         g_value_set_uint(value, priv->spacing);
164                         break;
165         default:
166             G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
167     }
168 }
169
170 static void
171 chimara_glk_free_private_data(ChimaraGlk *self)
172 {
173     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(self);
174
175     /* Free the event queue */
176     g_mutex_lock(priv->event_lock);
177         g_queue_foreach(priv->event_queue, (GFunc)g_free, NULL);
178         g_queue_free(priv->event_queue);
179         g_cond_free(priv->event_queue_not_empty);
180         g_cond_free(priv->event_queue_not_full);
181         priv->event_queue = NULL;
182         g_mutex_unlock(priv->event_lock);
183         g_mutex_free(priv->event_lock);
184         
185         /* Free the abort signaling mechanism */
186         g_mutex_lock(priv->abort_lock);
187         /* Make sure no other thread is busy with this */
188         g_mutex_unlock(priv->abort_lock);
189         g_mutex_free(priv->abort_lock);
190         priv->abort_lock = NULL;
191
192         /* Free the window arrangement signaling */
193         g_mutex_lock(priv->arrange_lock);
194         g_cond_free(priv->rearranged);
195         g_mutex_unlock(priv->arrange_lock);
196         g_mutex_free(priv->arrange_lock);
197         priv->arrange_lock = NULL;
198         
199         /* Unref input queues */
200         g_async_queue_unref(priv->char_input_queue);
201         g_async_queue_unref(priv->line_input_queue);
202         
203         /* Free styles */
204         pango_font_description_free(priv->default_font_desc);
205         pango_font_description_free(priv->monospace_font_desc);
206
207         g_free(priv->current_dir);
208         g_hash_table_destroy(priv->default_styles->text_buffer);
209         g_hash_table_destroy(priv->default_styles->text_grid);
210         g_hash_table_destroy(priv->current_styles->text_buffer);
211         g_hash_table_destroy(priv->current_styles->text_grid);
212 }
213         
214 static void
215 chimara_glk_finalize(GObject *object)
216 {
217     ChimaraGlk *self = CHIMARA_GLK(object);
218         chimara_glk_free_private_data(self);
219
220     G_OBJECT_CLASS(chimara_glk_parent_class)->finalize(object);
221 }
222
223 /**
224  * chimara_glk_reset:
225  * @self: The ChimaraGLK widget to reset
226  *
227  * Resets the widget back to it's origional state. IE: it resets all the private data.
228  */
229 void
230 chimara_glk_reset(ChimaraGlk *self)
231 {
232         chimara_glk_free_private_data(self);
233         chimara_glk_init(self);
234 }
235
236
237 /* Internal function: Recursively get the Glk window tree's size request */
238 static void
239 request_recurse(winid_t win, GtkRequisition *requisition, guint spacing)
240 {
241         if(win->type == wintype_Pair)
242         {
243                 /* Get children's size requests */
244                 GtkRequisition child1, child2;
245                 request_recurse(win->window_node->children->data, &child1, spacing);
246                 request_recurse(win->window_node->children->next->data, &child2, spacing);
247
248                 glui32 division = win->split_method & winmethod_DivisionMask;
249                 glui32 direction = win->split_method & winmethod_DirMask;
250                 
251                 /* If the split is fixed, get the size of the fixed child */
252                 if(division == winmethod_Fixed)
253                 {
254                         switch(direction)
255                         {
256                                 case winmethod_Left:
257                                         child1.width = win->key_window?
258                                                 win->constraint_size * win->key_window->unit_width
259                                                 : 0;
260                                         break;
261                                 case winmethod_Right:
262                                         child2.width = win->key_window?
263                                                 win->constraint_size * win->key_window->unit_width
264                                                 : 0;
265                                         break;
266                                 case winmethod_Above:
267                                         child1.height = win->key_window?
268                                                 win->constraint_size * win->key_window->unit_height
269                                                 : 0;
270                                         break;
271                                 case winmethod_Below:
272                                         child2.height = win->key_window?
273                                                 win->constraint_size * win->key_window->unit_height
274                                                 : 0;
275                                         break;
276                         }
277                 }
278                 
279                 /* Add the children's requests */
280                 switch(direction)
281                 {
282                         case winmethod_Left:
283                         case winmethod_Right:
284                                 requisition->width = child1.width + child2.width + spacing;
285                                 requisition->height = MAX(child1.height, child2.height);
286                                 break;
287                         case winmethod_Above:
288                         case winmethod_Below:
289                                 requisition->width = MAX(child1.width, child2.width);
290                                 requisition->height = child1.height + child2.height + spacing;
291                                 break;
292                 }
293         }
294         
295         /* For non-pair windows, just use the size that GTK requests */
296         else
297                 gtk_widget_size_request(win->frame, requisition);
298 }
299
300 /* Overrides gtk_widget_size_request */
301 static void
302 chimara_glk_size_request(GtkWidget *widget, GtkRequisition *requisition)
303 {
304     g_return_if_fail(widget);
305     g_return_if_fail(requisition);
306     g_return_if_fail(CHIMARA_IS_GLK(widget));
307     
308     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(widget);
309     
310     /* For now, just pass the size request on to the root Glk window */
311     if(priv->root_window) 
312         {
313                 request_recurse(priv->root_window->data, requisition, priv->spacing);
314                 requisition->width += 2 * GTK_CONTAINER(widget)->border_width;
315                 requisition->height += 2 * GTK_CONTAINER(widget)->border_width;
316         } 
317         else 
318         {
319         requisition->width = CHIMARA_GLK_MIN_WIDTH + 2 * GTK_CONTAINER(widget)->border_width;
320         requisition->height = CHIMARA_GLK_MIN_HEIGHT + 2 * GTK_CONTAINER(widget)->border_width;
321     }
322 }
323
324 /* Recursively give the Glk windows their allocated space. Returns a window
325  containing all children of this window that must be redrawn, or NULL if there 
326  are no children that require redrawing. */
327 static winid_t
328 allocate_recurse(winid_t win, GtkAllocation *allocation, guint spacing)
329 {
330         if(win->type == wintype_Pair)
331         {
332                 glui32 division = win->split_method & winmethod_DivisionMask;
333                 glui32 direction = win->split_method & winmethod_DirMask;
334
335                 /* If the space gets too small to honor the spacing property, then just 
336                  ignore spacing in this window and below. */
337                 if( (spacing > allocation->width && (direction == winmethod_Left || direction == winmethod_Right))
338                    || (spacing > allocation->height && (direction == winmethod_Above || direction == winmethod_Below)) )
339                         spacing = 0;
340                 
341                 GtkAllocation child1, child2;
342                 child1.x = allocation->x;
343                 child1.y = allocation->y;
344                 
345                 if(division == winmethod_Fixed)
346                 {
347                         /* If the key window has been closed, then default to 0; otherwise
348                          use the key window to determine the size */
349                         switch(direction)
350                         {
351                                 case winmethod_Left:
352                                         child1.width = win->key_window? 
353                                                 CLAMP(win->constraint_size * win->key_window->unit_width, 0, allocation->width - spacing) 
354                                                 : 0;
355                                         break;
356                                 case winmethod_Right:
357                                         child2.width = win->key_window? 
358                                                 CLAMP(win->constraint_size * win->key_window->unit_width, 0, allocation->width - spacing)
359                                                 : 0;
360                                         break;
361                                 case winmethod_Above:
362                                         child1.height = win->key_window? 
363                                                 CLAMP(win->constraint_size * win->key_window->unit_height, 0, allocation->height - spacing)
364                                                 : 0;
365                                         break;
366                                 case winmethod_Below:
367                                         child2.height = win->key_window?
368                                                 CLAMP(win->constraint_size * win->key_window->unit_height, 0, allocation->height - spacing)
369                                                 : 0;
370                                         break;
371                         }
372                 }
373                 else /* proportional */
374                 {
375                         gdouble fraction = win->constraint_size / 100.0;
376                         switch(direction)
377                         {
378                                 case winmethod_Left:
379                                         child1.width = MAX(0, (gint)ceil(fraction * (allocation->width - spacing)) );
380                                         break;
381                                 case winmethod_Right:
382                                         child2.width = MAX(0, (gint)ceil(fraction * (allocation->width - spacing)) );
383                                         break;
384                                 case winmethod_Above:
385                                         child1.height = MAX(0, (gint)ceil(fraction * (allocation->height - spacing)) );
386                                         break;
387                                 case winmethod_Below:
388                                         child2.height = MAX(0, (gint)ceil(fraction * (allocation->height - spacing)) );
389                                         break;
390                         }
391                 }
392                 
393                 /* Fill in the rest of the size requisitions according to the child specified above */
394                 switch(direction)
395                 {
396                         case winmethod_Left:
397                                 child2.width = MAX(0, allocation->width - spacing - child1.width);
398                                 child2.x = child1.x + child1.width + spacing;
399                                 child2.y = child1.y;
400                                 child1.height = child2.height = allocation->height;
401                                 break;
402                         case winmethod_Right:
403                                 child1.width = MAX(0, allocation->width - spacing - child2.width);
404                                 child2.x = child1.x + child1.width + spacing;
405                                 child2.y = child1.y;
406                                 child1.height = child2.height = allocation->height;
407                                 break;
408                         case winmethod_Above:
409                                 child2.height = MAX(0, allocation->height - spacing - child1.height);
410                                 child2.x = child1.x;
411                                 child2.y = child1.y + child1.height + spacing;
412                                 child1.width = child2.width = allocation->width;
413                                 break;
414                         case winmethod_Below:
415                                 child1.height = MAX(0, allocation->height - spacing - child2.height);
416                                 child2.x = child1.x;
417                                 child2.y = child1.y + child1.height + spacing;
418                                 child1.width = child2.width = allocation->width;
419                                 break;
420                 }
421                 
422                 /* Recurse */
423                 winid_t arrange1 = allocate_recurse(win->window_node->children->data, &child1, spacing);
424                 winid_t arrange2 = allocate_recurse(win->window_node->children->next->data, &child2, spacing);
425                 if(arrange1 == NULL)
426                         return arrange2;
427                 if(arrange2 == NULL)
428                         return arrange1;
429                 return win;
430         }
431         
432         else if(win->type == wintype_TextGrid)
433         {
434                 /* Pass the size allocation on to the framing widget */
435                 gtk_widget_size_allocate(win->frame, allocation);
436                 /* It says in the spec that when a text grid window is resized smaller,
437                  the bottom or right area is thrown away; when it is resized larger, the
438                  bottom or right area is filled with blanks. */
439                 glui32 newwidth = (glui32)(win->widget->allocation.width / win->unit_width);
440                 glui32 newheight = (glui32)(win->widget->allocation.height / win->unit_height);
441                 gint line;
442                 GtkTextBuffer *textbuffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
443                 GtkTextIter start, end;
444         
445                 for(line = 0; line < win->height; line++)
446                 {
447                         gtk_text_buffer_get_iter_at_line(textbuffer, &start, line);
448                         /* If this line is going to fall off the bottom, delete it */
449                         if(line >= newheight)
450                         {
451                                 end = start;
452                                 gtk_text_iter_forward_to_line_end(&end);
453                                 gtk_text_iter_forward_char(&end);
454                                 gtk_text_buffer_delete(textbuffer, &start, &end);
455                                 break;
456                         }
457                         /* If this line is not long enough, add spaces on the end */
458                         if(newwidth > win->width)
459                         {
460                                 gchar *spaces = g_strnfill(newwidth - win->width, ' ');
461                                 gtk_text_iter_forward_to_line_end(&start);
462                                 gtk_text_buffer_insert(textbuffer, &start, spaces, -1);
463                                 g_free(spaces);
464                         }
465                         /* But if it's too long, delete characters from the end */
466                         else if(newwidth < win->width)
467                         {
468                                 end = start;
469                                 gtk_text_iter_forward_chars(&start, newwidth);
470                                 gtk_text_iter_forward_to_line_end(&end);
471                                 gtk_text_buffer_delete(textbuffer, &start, &end);
472                         }
473                         /* Note: if the widths are equal, do nothing */
474                 }
475                 /* Add blank lines if there aren't enough lines to fit the new size */
476                 if(newheight > win->height)
477                 {
478                         gchar *blanks = g_strnfill(win->width, ' ');
479                     gchar **blanklines = g_new0(gchar *, (newheight - win->height) + 1);
480                     int count;
481                     for(count = 0; count < newheight - win->height; count++)
482                         blanklines[count] = blanks;
483                     blanklines[newheight - win->height] = NULL;
484                     gchar *text = g_strjoinv("\n", blanklines);
485                     g_free(blanklines); /* not g_strfreev() */
486                     g_free(blanks);
487                     
488                         gtk_text_buffer_get_end_iter(textbuffer, &start);
489                         gtk_text_buffer_insert(textbuffer, &start, "\n", -1);
490                     gtk_text_buffer_insert(textbuffer, &start, text, -1);
491                     g_free(text);
492                 }
493         
494                 gboolean arrange = !(win->width == newwidth && win->height == newheight);
495                 win->width = newwidth;
496                 win->height = newheight;
497                 return arrange? win : NULL;
498         }
499         
500         /* For non-pair, non-text-grid windows, just give them the size */
501         gtk_widget_size_allocate(win->frame, allocation);
502         return NULL;
503 }
504
505 /* Overrides gtk_widget_size_allocate */
506 static void
507 chimara_glk_size_allocate(GtkWidget *widget, GtkAllocation *allocation)
508 {
509     g_return_if_fail(widget);
510     g_return_if_fail(allocation);
511     g_return_if_fail(CHIMARA_IS_GLK(widget));
512     
513     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(widget);
514     
515     widget->allocation = *allocation;
516             
517     if(priv->root_window) {
518                 GtkAllocation child;
519                 child.x = allocation->x + GTK_CONTAINER(widget)->border_width;
520                 child.y = allocation->y + GTK_CONTAINER(widget)->border_width;
521                 child.width = CLAMP(allocation->width - 2 * GTK_CONTAINER(widget)->border_width, 0, allocation->width);
522                 child.height = CLAMP(allocation->height - 2 * GTK_CONTAINER(widget)->border_width, 0, allocation->height);
523                 winid_t arrange = allocate_recurse(priv->root_window->data, &child, priv->spacing);
524                 
525                 /* arrange points to a window that contains all text grid and graphics
526                  windows which have been resized */
527                 g_mutex_lock(priv->arrange_lock);
528                 if(!priv->ignore_next_arrange_event)
529                 {
530                         if(arrange)
531                                 event_throw(CHIMARA_GLK(widget), evtype_Arrange, arrange == priv->root_window->data? NULL : arrange, 0, 0);
532                 }
533                 else
534                         priv->ignore_next_arrange_event = FALSE;
535                 priv->needs_rearrange = FALSE;
536                 g_cond_signal(priv->rearranged);
537                 g_mutex_unlock(priv->arrange_lock);
538         }
539 }
540
541 /* Recursively invoke callback() on the GtkWidget of each non-pair window in the tree */
542 static void
543 forall_recurse(winid_t win, GtkCallback callback, gpointer callback_data)
544 {
545         if(win->type == wintype_Pair)
546         {
547                 forall_recurse(win->window_node->children->data, callback, callback_data);
548                 forall_recurse(win->window_node->children->next->data, callback, callback_data);
549         }
550         else
551                 (*callback)(win->frame, callback_data);
552 }
553
554 /* Overrides gtk_container_forall */
555 static void
556 chimara_glk_forall(GtkContainer *container, gboolean include_internals, GtkCallback callback, gpointer callback_data)
557 {
558     g_return_if_fail(container);
559     g_return_if_fail(CHIMARA_IS_GLK(container));
560     
561     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(container);
562     
563         /* All the children are "internal" */
564         if(!include_internals)
565                 return;
566         
567     if(priv->root_window)
568                 forall_recurse(priv->root_window->data, callback, callback_data);
569 }
570
571 static void
572 chimara_glk_stopped(ChimaraGlk *self)
573 {
574     CHIMARA_GLK_USE_PRIVATE(self, priv);
575         printf("stopped signal received\n");
576     priv->running = FALSE;
577
578     /* Free the plugin */
579         if( priv->program && !g_module_close(priv->program) )
580             g_warning( "Error closing module: %s", g_module_error() );
581 }
582
583 static void
584 chimara_glk_started(ChimaraGlk *self)
585 {
586         CHIMARA_GLK_USE_PRIVATE(self, priv);
587         printf("started signal received\n");
588         priv->running = TRUE;
589 }
590
591 static void
592 chimara_glk_waiting(ChimaraGlk *self)
593 {
594         /* Default signal handler */
595 }
596
597 static void
598 chimara_glk_char_input(ChimaraGlk *self, guint window_rock, guint keysym)
599 {
600         /* Default signal handler */
601 }
602
603 static void
604 chimara_glk_line_input(ChimaraGlk *self, guint window_rock, gchar *text)
605 {
606         /* Default signal handler */
607 }
608
609 static void
610 chimara_glk_text_buffer_output(ChimaraGlk *self, guint window_rock, gchar *text)
611 {
612         /* Default signal handler */
613 }
614
615 /* G_PARAM_STATIC_STRINGS only appeared in GTK 2.13.0 */
616 #ifndef G_PARAM_STATIC_STRINGS
617 #define G_PARAM_STATIC_STRINGS (G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)
618 #endif
619
620 static void
621 chimara_glk_class_init(ChimaraGlkClass *klass)
622 {
623     /* Override methods of parent classes */
624     GObjectClass *object_class = G_OBJECT_CLASS(klass);
625     object_class->set_property = chimara_glk_set_property;
626     object_class->get_property = chimara_glk_get_property;
627     object_class->finalize = chimara_glk_finalize;
628     
629     GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass);
630     widget_class->size_request = chimara_glk_size_request;
631     widget_class->size_allocate = chimara_glk_size_allocate;
632
633     GtkContainerClass *container_class = GTK_CONTAINER_CLASS(klass);
634     container_class->forall = chimara_glk_forall;
635
636     /* Signals */
637     klass->stopped = chimara_glk_stopped;
638     klass->started = chimara_glk_started;
639     klass->waiting = chimara_glk_waiting;
640     klass->char_input = chimara_glk_char_input;
641     klass->line_input = chimara_glk_line_input;
642     klass->text_buffer_output = chimara_glk_text_buffer_output;
643     /**
644      * ChimaraGlk::stopped:
645      * @glk: The widget that received the signal
646      *
647      * Emitted when the a Glk program finishes executing in the widget, whether
648      * it ended normally, or was interrupted.
649      */ 
650     chimara_glk_signals[STOPPED] = g_signal_new("stopped", 
651         G_OBJECT_CLASS_TYPE(klass), 0, 
652         /* FIXME: Should be G_SIGNAL_RUN_CLEANUP but that segfaults??! */
653         G_STRUCT_OFFSET(ChimaraGlkClass, stopped), NULL, NULL,
654                 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
655         /**
656          * ChimaraGlk::started:
657          * @glk: The widget that received the signal
658          *
659          * Emitted when a Glk program starts executing in the widget.
660          */
661         chimara_glk_signals[STARTED] = g_signal_new ("started",
662                 G_OBJECT_CLASS_TYPE(klass), 0,
663                 G_STRUCT_OFFSET(ChimaraGlkClass, started), NULL, NULL,
664                 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
665         /**
666          * ChimaraGlk::waiting:
667          * @glk: The widget that received the signal
668          * 
669          * Emitted when glk_select() is called by the Glk program and the event
670          * queue is empty, which means that the widget is waiting for input.
671          */
672         chimara_glk_signals[WAITING] = g_signal_new("waiting",
673                 G_OBJECT_CLASS_TYPE(klass), 0,
674                 G_STRUCT_OFFSET(ChimaraGlkClass, waiting), NULL, NULL,
675                 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
676         /**
677          * ChimaraGlk::char-input:
678          * @glk: The widget that received the signal
679          * @window_rock: The rock value of the window that received character input
680          * (see <link linkend="chimara-Rocks">Rocks</link>)
681          * @keysym: The key that was typed, in the form of a key symbol from 
682          * <filename class="headerfile">gdk/gdkkeysyms.h</filename>
683          * 
684          * Emitted when a Glk window receives character input.
685          */
686         chimara_glk_signals[CHAR_INPUT] = g_signal_new("char-input",
687                 G_OBJECT_CLASS_TYPE(klass), 0,
688                 G_STRUCT_OFFSET(ChimaraGlkClass, char_input), NULL, NULL,
689                 chimara_marshal_VOID__UINT_UINT,
690                 G_TYPE_NONE, 2, G_TYPE_UINT, G_TYPE_UINT);
691         /**
692          * ChimaraGlk::line-input:
693          * @glk: The widget that received the signal
694          * @window_rock: The rock value of the window that received line input (see
695          * <link linkend="chimara-Rocks">Rocks</link>)
696          * @text: The text that was typed
697          * 
698          * Emitted when a Glk window receives line input.
699          */
700         chimara_glk_signals[LINE_INPUT] = g_signal_new("line-input",
701                 G_OBJECT_CLASS_TYPE(klass), 0,
702                 G_STRUCT_OFFSET(ChimaraGlkClass, line_input), NULL, NULL,
703                 chimara_marshal_VOID__UINT_STRING,
704                 G_TYPE_NONE, 2, G_TYPE_UINT, G_TYPE_STRING);
705         /**
706          * ChimaraGlk::text-buffer-output:
707          * @glk: The widget that received the signal
708          * @window_rock: The rock value of the window that was printed to (see <link
709          * linkend="chimara-Rocks">Rocks</link>)
710          * 
711          * Emitted when text is printed to a text buffer window.
712          */
713         chimara_glk_signals[TEXT_BUFFER_OUTPUT] = g_signal_new("text-buffer-output",
714                 G_OBJECT_CLASS_TYPE(klass), 0,
715                 G_STRUCT_OFFSET(ChimaraGlkClass, text_buffer_output), NULL, NULL,
716                 chimara_marshal_VOID__UINT_STRING,
717                 G_TYPE_NONE, 2, G_TYPE_UINT, G_TYPE_STRING);
718
719     /* Properties */
720     /**
721      * ChimaraGlk:interactive:
722      *
723      * Sets whether the widget is interactive. A Glk widget is normally 
724      * interactive, but in non-interactive mode, keyboard and mouse input are 
725      * ignored and the Glk program is controlled by chimara_glk_feed_text(). 
726      * <quote>More</quote> prompts when a lot of text is printed to a text 
727          * buffer are also disabled. This is typically used when you wish to control
728          * an interpreter program by feeding it a predefined list of commands.
729      */
730     g_object_class_install_property( object_class, PROP_INTERACTIVE, 
731                 g_param_spec_boolean("interactive", _("Interactive"),
732         _("Whether user input is expected in the Glk program"),
733         TRUE,
734         G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_LAX_VALIDATION | G_PARAM_STATIC_STRINGS) );
735
736         /**
737      * ChimaraGlk:protect:
738      *
739      * Sets whether the Glk program is allowed to do file operations. In protect
740      * mode, all file operations will fail.
741      */
742     g_object_class_install_property(object_class, PROP_PROTECT, 
743                 g_param_spec_boolean("protect", _("Protected"),
744         _("Whether the Glk program is barred from doing file operations"),
745         FALSE,
746         G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_LAX_VALIDATION | G_PARAM_STATIC_STRINGS) );
747
748         /* We can't use G_PARAM_CONSTRUCT on these because then the constructor will
749          initialize them with NULL */
750         /**
751          * ChimaraGlk:default-font-description:
752          * 
753          * Pointer to a #PangoFontDescription describing the default proportional 
754          * font, to be used in text buffer windows for example.
755          *
756          * Default value: font description created from the string 
757          * <quote>Sans</quote>
758          */
759         g_object_class_install_property(object_class, PROP_DEFAULT_FONT_DESCRIPTION, 
760                 g_param_spec_pointer("default-font-description", _("Default Font"),
761                 _("Font description of the default proportional font"),
762                 G_PARAM_READWRITE | G_PARAM_LAX_VALIDATION | G_PARAM_STATIC_STRINGS) );
763
764         /**
765          * ChimaraGlk:monospace-font-description:
766          *
767          * Pointer to a #PangoFontDescription describing the default monospace font,
768          * to be used in text grid windows and %style_Preformatted, for example.
769          *
770          * Default value: font description created from the string 
771          * <quote>Monospace</quote>
772          */
773         g_object_class_install_property(object_class, PROP_MONOSPACE_FONT_DESCRIPTION, 
774                 g_param_spec_pointer("monospace-font-description", _("Monospace Font"),
775                 _("Font description of the default monospace font"),
776                 G_PARAM_READWRITE | G_PARAM_LAX_VALIDATION | G_PARAM_STATIC_STRINGS) );
777
778         /**
779          * ChimaraGlk:spacing:
780          *
781          * The amount of space between the Glk windows.
782          */
783         g_object_class_install_property(object_class, PROP_SPACING,
784                 g_param_spec_uint("spacing", _("Spacing"),
785                 _("The amount of space between Glk windows"),
786                 0, G_MAXUINT, 0,
787                 G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_LAX_VALIDATION | G_PARAM_STATIC_STRINGS) );
788         
789     /* Private data */
790     g_type_class_add_private(klass, sizeof(ChimaraGlkPrivate));
791 }
792
793 /* PUBLIC FUNCTIONS */
794
795 /**
796  * chimara_error_quark:
797  *
798  * The error domain for errors from Chimara widgets.
799  *
800  * Returns: The string <quote>chimara-error-quark</quote> as a <link 
801  * linkend="GQuark">GQuark</link>.
802  */
803 GQuark
804 chimara_error_quark(void)
805 {
806         chimara_init(); /* This is a library entry point */
807         return g_quark_from_static_string("chimara-error-quark");
808 }
809
810 /**
811  * chimara_glk_new:
812  *
813  * Creates and initializes a new #ChimaraGlk widget.
814  *
815  * Return value: a #ChimaraGlk widget, with a floating reference.
816  */
817 GtkWidget *
818 chimara_glk_new(void)
819 {
820         /* This is a library entry point; initialize the library */
821         chimara_init();
822
823     return GTK_WIDGET(g_object_new(CHIMARA_TYPE_GLK, NULL));
824 }
825
826 /**
827  * chimara_glk_set_interactive:
828  * @glk: a #ChimaraGlk widget
829  * @interactive: whether the widget should expect user input
830  *
831  * Sets the #ChimaraGlk:interactive property of @glk. 
832  */
833 void 
834 chimara_glk_set_interactive(ChimaraGlk *glk, gboolean interactive)
835 {
836     g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
837     
838     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
839     priv->interactive = interactive;
840 }
841
842 /**
843  * chimara_glk_get_interactive:
844  * @glk: a #ChimaraGlk widget
845  *
846  * Returns whether @glk is interactive (expecting user input). See 
847  * #ChimaraGlk:interactive.
848  *
849  * Return value: %TRUE if @glk is interactive.
850  */
851 gboolean 
852 chimara_glk_get_interactive(ChimaraGlk *glk)
853 {
854     g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
855     
856     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
857     return priv->interactive;
858 }
859
860 /**
861  * chimara_glk_set_protect:
862  * @glk: a #ChimaraGlk widget
863  * @protect: whether the widget should allow the Glk program to do file 
864  * operations
865  *
866  * Sets the #ChimaraGlk:protect property of @glk. In protect mode, the Glk 
867  * program is not allowed to do file operations.
868  */
869 void 
870 chimara_glk_set_protect(ChimaraGlk *glk, gboolean protect)
871 {
872     g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
873     
874     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
875     priv->protect = protect;
876 }
877
878 /**
879  * chimara_glk_get_protect:
880  * @glk: a #ChimaraGlk widget
881  *
882  * Returns whether @glk is in protect mode (banned from doing file operations).
883  * See #ChimaraGlk:protect.
884  *
885  * Return value: %TRUE if @glk is in protect mode.
886  */
887 gboolean 
888 chimara_glk_get_protect(ChimaraGlk *glk)
889 {
890     g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
891     
892     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
893     return priv->protect;
894 }
895
896 /**
897  * chimara_glk_set_default_font_description:
898  * @glk: a #ChimaraGlk widget
899  * @font: a #PangoFontDescription
900  *
901  * Sets @glk's default proportional font. See 
902  * #ChimaraGlk:default-font-description.
903  */
904 void 
905 chimara_glk_set_default_font_description(ChimaraGlk *glk, PangoFontDescription *font)
906 {
907         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
908         g_return_if_fail(font);
909         
910         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
911         pango_font_description_free(priv->default_font_desc);
912         priv->default_font_desc = pango_font_description_copy(font);
913         
914         /* TODO: Apply the font description to all the windows and recalculate the sizes */
915 }
916
917 /**
918  * chimara_glk_set_default_font_string:
919  * @glk: a #ChimaraGlk widget
920  * @font: string representation of a font description
921  *
922  * Sets @glk's default proportional font according to the string @font, which
923  * must be a string in the form <quote><replaceable>FAMILY-LIST</replaceable> 
924  * [<replaceable>STYLE-OPTIONS</replaceable>] 
925  * [<replaceable>SIZE</replaceable>]</quote>, such as <quote>Charter,Utopia 
926  * Italic 12</quote> or <quote>Sans</quote>. See 
927  * #ChimaraGlk:default-font-description.
928  */
929 void 
930 chimara_glk_set_default_font_string(ChimaraGlk *glk, const gchar *font)
931 {
932         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
933         g_return_if_fail(font || *font);
934         
935         PangoFontDescription *fontdesc = pango_font_description_from_string(font);
936         g_return_if_fail(fontdesc);
937         
938         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
939         pango_font_description_free(priv->default_font_desc);
940         priv->default_font_desc = fontdesc;
941         
942         /* TODO: Apply the font description to all the windows and recalculate the sizes */
943 }
944         
945 /**
946  * chimara_glk_get_default_font_description:
947  * @glk: a #ChimaraGlk widget
948  * 
949  * Returns @glk's default proportional font.
950  *
951  * Return value: a newly-allocated #PangoFontDescription which must be freed
952  * using pango_font_description_free(), or %NULL on error.
953  */
954 PangoFontDescription *
955 chimara_glk_get_default_font_description(ChimaraGlk *glk)
956 {
957         g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), NULL);
958         
959         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
960         return pango_font_description_copy(priv->default_font_desc);
961 }
962
963 /**
964  * chimara_glk_set_monospace_font_description:
965  * @glk: a #ChimaraGlk widget
966  * @font: a #PangoFontDescription
967  *
968  * Sets @glk's default monospace font. See 
969  * #ChimaraGlk:monospace-font-description.
970  */
971 void 
972 chimara_glk_set_monospace_font_description(ChimaraGlk *glk, PangoFontDescription *font)
973 {
974         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
975         g_return_if_fail(font);
976         
977         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
978         pango_font_description_free(priv->monospace_font_desc);
979         priv->monospace_font_desc = pango_font_description_copy(font);
980         
981         /* TODO: Apply the font description to all the windows and recalculate the sizes */
982 }
983
984 /**
985  * chimara_glk_set_monospace_font_string:
986  * @glk: a #ChimaraGlk widget
987  * @font: string representation of a font description
988  *
989  * Sets @glk's default monospace font according to the string @font, which must
990  * be a string in the form <quote><replaceable>FAMILY-LIST</replaceable> 
991  * [<replaceable>STYLE-OPTIONS</replaceable>] 
992  * [<replaceable>SIZE</replaceable>]</quote>, such as <quote>Courier 
993  * Bold 12</quote> or <quote>Monospace</quote>. See 
994  * #ChimaraGlk:monospace-font-description.
995  */
996 void 
997 chimara_glk_set_monospace_font_string(ChimaraGlk *glk, const gchar *font)
998 {
999         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1000         g_return_if_fail(font || *font);
1001         
1002         PangoFontDescription *fontdesc = pango_font_description_from_string(font);
1003         g_return_if_fail(fontdesc);
1004         
1005         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
1006         pango_font_description_free(priv->monospace_font_desc);
1007         priv->monospace_font_desc = fontdesc;
1008         
1009         /* TODO: Apply the font description to all the windows and recalculate the sizes */
1010 }
1011         
1012 /**
1013  * chimara_glk_get_monospace_font_description:
1014  * @glk: a #ChimaraGlk widget
1015  * 
1016  * Returns @glk's default monospace font.
1017  *
1018  * Return value: a newly-allocated #PangoFontDescription which must be freed
1019  * using pango_font_description_free(), or %NULL on error.
1020  */
1021 PangoFontDescription *
1022 chimara_glk_get_monospace_font_description(ChimaraGlk *glk)
1023 {
1024         g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), NULL);
1025         
1026         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
1027         return pango_font_description_copy(priv->monospace_font_desc);
1028 }
1029
1030 /**
1031  * chimara_glk_set_spacing:
1032  * @glk: a #ChimaraGlk widget
1033  * @spacing: the number of pixels to put between Glk windows
1034  *
1035  * Sets the #ChimaraGlk:spacing property of @glk, which is the border width in
1036  * pixels between Glk windows.
1037  */
1038 void 
1039 chimara_glk_set_spacing(ChimaraGlk *glk, guint spacing)
1040 {
1041         g_return_if_fail( glk || CHIMARA_IS_GLK(glk) );
1042         
1043         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
1044         priv->spacing = spacing;
1045 }
1046
1047 /**
1048  * chimara_glk_get_spacing:
1049  * @glk: a #ChimaraGlk widget
1050  *
1051  * Gets the value set by chimara_glk_set_spacing().
1052  *
1053  * Return value: pixels of spacing between Glk windows
1054  */
1055 guint 
1056 chimara_glk_get_spacing(ChimaraGlk *glk)
1057 {
1058         g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), 0);
1059         
1060         ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
1061         return priv->spacing;
1062 }
1063
1064 struct StartupData {
1065         glk_main_t glk_main;
1066         glkunix_startup_code_t glkunix_startup_code;
1067         glkunix_startup_t args;
1068         ChimaraGlkPrivate *glk_data;
1069 };
1070
1071 /* glk_enter() is the actual function called in the new thread in which glk_main() runs.  */
1072 static gpointer
1073 glk_enter(struct StartupData *startup)
1074 {
1075         extern GPrivate *glk_data_key;
1076         g_private_set(glk_data_key, startup->glk_data);
1077         
1078         g_async_queue_ref(startup->glk_data->char_input_queue);
1079         g_async_queue_ref(startup->glk_data->line_input_queue);
1080         
1081         /* Run startup function */
1082         if(startup->glkunix_startup_code) {
1083                 startup->glk_data->in_startup = TRUE;
1084                 int result = startup->glkunix_startup_code(&startup->args);
1085                 startup->glk_data->in_startup = FALSE;
1086                 
1087                 int i = 0;
1088                 while(i < startup->args.argc)
1089                         g_free(startup->args.argv[i++]);
1090                 g_free(startup->args.argv);
1091                 
1092                 if(!result)
1093                         return NULL;
1094         }
1095         
1096         /* Run main function */
1097     g_signal_emit_by_name(startup->glk_data->self, "started");
1098         /* FIXME: hack. should be done by the signal above but for some reason
1099          * this doesn't work */
1100         chimara_glk_started(startup->glk_data->self);
1101
1102         (startup->glk_main)();
1103
1104         g_signal_emit_by_name(startup->glk_data->self, "stopped");
1105         /* FIXME: hack. should be done by the signal above but for some reason
1106          * this doesn't work */
1107         chimara_glk_stopped(startup->glk_data->self);
1108
1109         g_slice_free(struct StartupData, startup);
1110         return NULL;
1111 }
1112
1113 /**
1114  * chimara_glk_run:
1115  * @glk: a #ChimaraGlk widget
1116  * @plugin: path to a plugin module compiled with <filename 
1117  * class="header">glk.h</filename>
1118  * @argc: Number of command line arguments in @argv
1119  * @argv: Array of command line arguments to pass to the plugin
1120  * @error: location to store a <link linkend="glib-GError">GError</link>, or 
1121  * %NULL
1122  *
1123  * Opens a Glk program compiled as a plugin. Sorts out its command line
1124  * arguments from #glkunix_arguments, calls its startup function
1125  * glkunix_startup_code(), and then calls its main function glk_main() in
1126  * a separate thread. On failure, returns %FALSE and sets @error.
1127  *
1128  * The plugin must at least export a glk_main() function; #glkunix_arguments and
1129  * glkunix_startup_code() are optional.
1130  *
1131  * Return value: %TRUE if the Glk program was started successfully.
1132  */
1133 gboolean
1134 chimara_glk_run(ChimaraGlk *glk, const gchar *plugin, int argc, char *argv[], GError **error)
1135 {
1136     g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
1137     g_return_val_if_fail(plugin, FALSE);
1138     
1139     ChimaraGlkPrivate *priv = CHIMARA_GLK_PRIVATE(glk);
1140         struct StartupData *startup = g_slice_new0(struct StartupData);
1141     
1142     /* Open the module to run */
1143     g_assert( g_module_supported() );
1144     priv->program = g_module_open(plugin, G_MODULE_BIND_LAZY);
1145     
1146     if(!priv->program)
1147     {
1148         g_set_error(error, CHIMARA_ERROR, CHIMARA_LOAD_MODULE_ERROR, _("Error opening module: %s"), g_module_error());
1149         return FALSE;
1150     }
1151     if( !g_module_symbol(priv->program, "glk_main", (gpointer *) &startup->glk_main) )
1152     {
1153         g_set_error(error, CHIMARA_ERROR, CHIMARA_NO_GLK_MAIN, _("Error finding glk_main(): %s"), g_module_error());
1154         return FALSE;
1155     }
1156
1157     if( g_module_symbol(priv->program, "glkunix_startup_code", (gpointer *) &startup->glkunix_startup_code) )
1158     {
1159                 glkunix_argumentlist_t *glkunix_arguments;
1160
1161                 if( !(g_module_symbol(priv->program, "glkunix_arguments", (gpointer *) &glkunix_arguments) 
1162                           && parse_command_line(glkunix_arguments, argc, argv, &startup->args)) )
1163                 {
1164                         /* arguments could not be parsed, so create data ourselves */
1165                         startup->args.argc = 1;
1166                         startup->args.argv = g_new0(gchar *, 1);
1167                 }
1168
1169                 /* Set the program name */
1170                 startup->args.argv[0] = g_strdup(plugin);
1171     }
1172         startup->glk_data = priv;
1173         
1174     /* Run in a separate thread */
1175         priv->thread = g_thread_create((GThreadFunc)glk_enter, startup, TRUE, error);
1176         
1177         return !(priv->thread == NULL);
1178 }
1179
1180 /**
1181  * chimara_glk_stop:
1182  * @glk: a #ChimaraGlk widget
1183  *
1184  * Signals the Glk program running in @glk to abort. Note that if the program is
1185  * caught in an infinite loop in which glk_tick() is not called, this may not
1186  * work.
1187  */
1188 void
1189 chimara_glk_stop(ChimaraGlk *glk)
1190 {
1191     g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1192     CHIMARA_GLK_USE_PRIVATE(glk, priv);
1193
1194         printf("stopping (%d)...\n", priv->running);
1195     /* Don't do anything if not running a program */
1196     if(!priv->running)
1197         return;
1198     
1199         if(priv->abort_lock) {
1200                 g_mutex_lock(priv->abort_lock);
1201                 priv->abort_signalled = TRUE;
1202                 g_mutex_unlock(priv->abort_lock);
1203                 /* Stop blocking on the event queue condition */
1204                 event_throw(glk, evtype_Abort, NULL, 0, 0);
1205         }
1206 }
1207
1208 /**
1209  * chimara_glk_wait:
1210  * @glk: a #ChimaraGlk widget
1211  *
1212  * Holds up the main thread and waits for the Glk program running in @glk to 
1213  * finish.
1214  */
1215 void
1216 chimara_glk_wait(ChimaraGlk *glk)
1217 {
1218     g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1219     CHIMARA_GLK_USE_PRIVATE(glk, priv);
1220     /* Don't do anything if not running a program */
1221     if(!priv->running)
1222         return;
1223     g_thread_join(priv->thread);
1224 }
1225
1226 /**
1227  * chimara_glk_get_running:
1228  * @glk: a #ChimaraGlk widget
1229  * 
1230  * Use this function to tell whether a program is currently running in the
1231  * widget.
1232  * 
1233  * Returns: %TRUE if @glk is executing a Glk program, %FALSE otherwise.
1234  */
1235 gboolean
1236 chimara_glk_get_running(ChimaraGlk *glk)
1237 {
1238         g_return_val_if_fail(glk || CHIMARA_IS_GLK(glk), FALSE);
1239         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1240         return priv->running;
1241 }
1242
1243 /**
1244  * chimara_glk_feed_char_input:
1245  * @glk: a #ChimaraGlk widget
1246  * @keyval: a key symbol as defined in <filename 
1247  * class="headerfile">gdk/gdkkeysyms.h</filename>
1248  * 
1249  * Pretend that a key was pressed in the Glk program as a response to a 
1250  * character input request. You can call this function even when no window has
1251  * requested character input, in which case the key will be saved for the 
1252  * following window that requests character input. This has the disadvantage 
1253  * that if more than one window has requested character input, it is arbitrary 
1254  * which one gets the key press.
1255  */
1256 void 
1257 chimara_glk_feed_char_input(ChimaraGlk *glk, guint keyval)
1258 {
1259         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1260         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1261         g_async_queue_push(priv->char_input_queue, GUINT_TO_POINTER(keyval));
1262         event_throw(glk, evtype_ForcedCharInput, NULL, 0, 0);
1263 }
1264
1265 /**
1266  * chimara_glk_feed_line_input:
1267  * @glk: a #ChimaraGlk widget
1268  * @text: text to pass to the next line input request
1269  * 
1270  * Pretend that @text was typed in the Glk program as a response to a line input
1271  * request. @text does not need to end with a newline. You can call this 
1272  * function even when no window has requested line input, in which case the text
1273  * will be saved for the following window that requests line input. This has the 
1274  * disadvantage that if more than one window has requested character input, it 
1275  * is arbitrary which one gets the text.
1276  */
1277 void 
1278 chimara_glk_feed_line_input(ChimaraGlk *glk, const gchar *text)
1279 {
1280         g_return_if_fail(glk || CHIMARA_IS_GLK(glk));
1281         g_return_if_fail(text);
1282         CHIMARA_GLK_USE_PRIVATE(glk, priv);
1283         g_async_queue_push(priv->line_input_queue, g_strdup(text));
1284         event_throw(glk, evtype_ForcedLineInput, NULL, 0, 0);
1285 }