5cef17eee064870c5a9395e4bd4a4a738b20b9df
[rodin/chimara.git] / libchimara / window.c
1 #include <glib.h>
2 #include "window.h"
3 #include "magic.h"
4 #include "chimara-glk-private.h"
5 #include "gi_dispa.h"
6
7 extern GPrivate *glk_data_key;
8
9 static winid_t
10 window_new_common(glui32 rock)
11 {
12         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
13         winid_t win = g_new0(struct glk_window_struct, 1);
14         
15         win->magic = MAGIC_WINDOW;
16         win->rock = rock;
17         if(glk_data->register_obj)
18                 win->disprock = (*glk_data->register_obj)(win, gidisp_Class_Window);
19         
20         win->window_node = g_node_new(win);
21         
22         /* Every window has a window stream, but printing to it might have no effect */
23         win->window_stream = stream_new_common(0);
24         win->window_stream->file_mode = filemode_Write;
25         win->window_stream->type = STREAM_TYPE_WINDOW;
26         win->window_stream->window = win;
27         win->window_stream->style = "normal";
28         
29         win->echo_stream = NULL;
30         win->input_request_type = INPUT_REQUEST_NONE;
31         win->line_input_buffer = NULL;
32         win->line_input_buffer_unicode = NULL;
33         win->history = NULL;
34
35         /* Initialise the buffer */
36         win->buffer = g_string_sized_new(1024);
37
38         /* Initialise hyperlink table */
39         win->hyperlinks = g_hash_table_new_full(g_int_hash, g_direct_equal, g_free, g_object_unref);
40
41         return win;
42 }
43
44 static void
45 window_close_common(winid_t win, gboolean destroy_node)
46 {
47         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
48         
49         if(glk_data->unregister_obj) 
50         {
51         (*glk_data->unregister_obj)(win, gidisp_Class_Window, win->disprock);
52         win->disprock.ptr = NULL;
53     }
54
55         if(destroy_node)
56                 g_node_destroy(win->window_node);
57         win->magic = MAGIC_FREE;
58
59         g_list_foreach(win->history, (GFunc)g_free, NULL);
60         g_list_free(win->history);
61
62         g_string_free(win->buffer, TRUE);
63         g_hash_table_destroy(win->hyperlinks);
64         g_free(win->current_hyperlink);
65         g_free(win);
66 }
67
68 /**
69  * glk_window_iterate:
70  * @win: A window, or %NULL.
71  * @rockptr: Return location for the next window's rock, or %NULL.
72  *
73  * This function can be used to iterate through the list of all open windows
74  * (including pair windows.) See <link 
75  * linkend="chimara-Iterating-Through-Opaque-Objects">Iterating Through Opaque
76  * Objects</link>.
77  *
78  * As that section describes, the order in which windows are returned is
79  * arbitrary. The root window is not necessarily first, nor is it necessarily
80  * last.
81  *
82  * Returns: the next window, or %NULL if there are no more.
83  */
84 winid_t
85 glk_window_iterate(winid_t win, glui32 *rockptr)
86 {
87         VALID_WINDOW_OR_NULL(win, return NULL);
88         
89         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
90         GNode *retnode;
91         
92         if(win == NULL)
93                 retnode = glk_data->root_window;
94         else
95         {
96                 GNode *node = win->window_node;
97                 if( G_NODE_IS_LEAF(node) )
98                 {
99                         while(node && node->next == NULL)
100                                 node = node->parent;
101                         if(node)
102                                 retnode = node->next;
103                         else
104                                 retnode = NULL;
105                 }
106                 else
107                         retnode = g_node_first_child(node);
108         }
109         winid_t retval = retnode? (winid_t)retnode->data : NULL;
110                 
111         /* Store the window's rock in rockptr */
112         if(retval && rockptr)
113                 *rockptr = glk_window_get_rock(retval);
114                 
115         return retval;
116 }
117
118 /**
119  * glk_window_get_rock:
120  * @win: A window.
121  * 
122  * Returns @win's rock value. Pair windows always have rock 0; all other windows
123  * return whatever rock value you created them with.
124  *
125  * Returns: A rock value.
126  */
127 glui32
128 glk_window_get_rock(winid_t win)
129 {
130         VALID_WINDOW(win, return 0);
131         return win->rock;
132 }
133
134 /**
135  * glk_window_get_type:
136  * @win: A window.
137  *
138  * Returns @win's type, one of %wintype_Blank, %wintype_Pair,
139  * %wintype_TextBuffer, %wintype_TextGrid, or %wintype_Graphics.
140  *
141  * Returns: The window's type.
142  */
143 glui32
144 glk_window_get_type(winid_t win)
145 {
146         VALID_WINDOW(win, return 0);
147         return win->type;
148 }
149
150 /**
151  * glk_window_get_parent:
152  * @win: A window.
153  *
154  * Returns the window which is the parent of @win. If @win is the root window,
155  * this returns %NULL, since the root window has no parent. Remember that the
156  * parent of every window is a pair window; other window types are always
157  * childless.
158  *
159  * Returns: A window, or %NULL.
160  */
161 winid_t
162 glk_window_get_parent(winid_t win)
163 {
164         VALID_WINDOW(win, return NULL);
165         /* Value will also be NULL if win is the root window */
166         return (winid_t)win->window_node->parent->data;
167 }
168
169 /**
170  * glk_window_get_sibling:
171  * @win: A window.
172  *
173  * Returns the other child of @win's parent. If @win is the root window, this
174  * returns %NULL.
175  *
176  * Returns: A window, or %NULL.
177  */
178 winid_t
179 glk_window_get_sibling(winid_t win)
180 {
181         VALID_WINDOW(win, return NULL);
182         
183         if(G_NODE_IS_ROOT(win->window_node))
184                 return NULL;
185         if(win->window_node->next)
186                 return (winid_t)win->window_node->next;
187         return (winid_t)win->window_node->prev;
188 }
189
190 /**
191  * glk_window_get_root:
192  * 
193  * Returns the root window. If there are no windows, this returns %NULL.
194  *
195  * Returns: A window, or %NULL.
196  */
197 winid_t
198 glk_window_get_root()
199 {
200         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
201         if(glk_data->root_window == NULL)
202                 return NULL;
203         return (winid_t)glk_data->root_window->data;
204 }
205
206 /**
207  * glk_window_open:
208  * @split: The window to split to create the new window. Must be 0 if there
209  * are no windows yet.
210  * @method: Position of the new window and method of size computation. One of
211  * %winmethod_Above, %winmethod_Below, %winmethod_Left, or %winmethod_Right
212  * OR'ed with %winmethod_Fixed or %winmethod_Proportional. If @wintype is
213  * %wintype_Blank, then %winmethod_Fixed is not allowed.
214  * @size: Size of the new window, in percentage points if @method is
215  * %winmethod_Proportional, otherwise in characters if @wintype is 
216  * %wintype_TextBuffer or %wintype_TextGrid, or pixels if @wintype is
217  * %wintype_Graphics.
218  * @wintype: Type of the new window. One of %wintype_Blank, %wintype_TextGrid,
219  * %wintype_TextBuffer, or %wintype_Graphics.
220  * @rock: The new window's rock value.
221  *
222  * Creates a new window. If there are no windows, the first three arguments are
223  * meaningless. @split <emphasis>must</emphasis> be 0, and @method and @size
224  * are ignored. @wintype is the type of window you're creating, and @rock is
225  * the rock (see <link linkend="chimara-Rocks">Rocks</link>).
226  *
227  * If any windows exist, new windows must be created by splitting existing
228  * ones. @split is the window you want to split; this <emphasis>must 
229  * not</emphasis> be zero. @method is a mask of constants to specify the
230  * direction and the split method (see below). @size is the size of the split.
231  * @wintype is the type of window you're creating, and @rock is the rock.
232  *
233  * Remember that it is possible that the library will be unable to create a new
234  * window, in which case glk_window_open() will return %NULL.
235  * 
236  * <note><para>
237  *   It is acceptable to gracefully exit, if the window you are creating is an
238  *   important one &mdash; such as your first window. But you should not try to
239  *   perform any window operation on the id until you have tested to make sure
240  *   it is non-zero.
241  * </para></note>
242  * 
243  * The examples we've seen so far have the simplest kind of size control. (Yes,
244  * this is <quote>below</quote>.) Every pair is a percentage split, with 
245  * <inlineequation>
246  *   <alt>X</alt>
247  *   <mathphrase>X</mathphrase>
248  * </inlineequation>
249  * percent going to one side, and 
250  * <inlineequation>
251  *   <alt>(100-X)</alt>
252  *   <mathphrase>(100 - X)</mathphrase>
253  * </inlineequation> 
254  * percent going to the other side. If the player resizes the window, the whole
255  * mess expands, contracts, or stretches in a uniform way.
256  * 
257  * As I said above, you can also make fixed-size splits. This is a little more
258  * complicated, because you have to know how this fixed size is measured.
259  * 
260  * Sizes are measured in a way which is different for each window type. For
261  * example, a text grid window is measured by the size of its fixed-width font.
262  * You can make a text grid window which is fixed at a height of four rows, or
263  * ten columns. A text buffer window is measured by the size of its font.
264  * 
265  * <note><para>
266  *   Remember that different windows may use different size fonts. Even two
267  *   text grid windows may use fixed-size fonts of different sizes.
268  * </para></note>
269  *
270  * Graphics windows are measured in pixels, not characters. Blank windows
271  * aren't measured at all; there's no meaningful way to measure them, and
272  * therefore you can't create a blank window of a fixed size, only of a
273  * proportional (percentage) size.
274  * 
275  * So to create a text buffer window which takes the top 40% of the original
276  * window's space, you would execute
277  * |[ newwin = #glk_window_open(win, #winmethod_Above | #winmethod_Proportional, 40, #wintype_TextBuffer, 0); ]|
278  *
279  * To create a text grid which is always five lines high, at the bottom of the
280  * original window, you would do
281  * |[ newwin = #glk_window_open(win, #winmethod_Below | #winmethod_Fixed, 5, #wintype_TextGrid, 0); ]|
282  * 
283  * Note that the meaning of the @size argument depends on the @method argument.
284  * If the method is %winmethod_Fixed, it also depends on the @wintype argument.
285  * The new window is then called the <quote>key window</quote> of this split,
286  * because its window type determines how the split size is computed.
287  * 
288  * <note><para>
289  *   For %winmethod_Proportional splits, you can still call the new window the
290  *   <quote>key window</quote>. But the key window is not important for
291  *   proportional splits, because the size will always be computed as a simple
292  *   ratio of the available space, not a fixed size of one child window.
293  * </para></note>
294  * 
295  * This system is more or less peachy as long as all the constraints work out.
296  * What happens when there is a conflict? The rules are simple. Size control
297  * always flows down the tree, and the player is at the top. Let's bring out an
298  * example:
299  * <informaltable frame="none"><tgroup cols="2"><tbody><row>
300  * <entry><mediaobject><imageobject><imagedata fileref="fig5-7a.png"/>
301  * </imageobject></mediaobject></entry>
302  * <entry><mediaobject><textobject><literallayout class="monospaced">
303  *      O
304  *     / \
305  *    O   B
306  *   / \
307  *  A   C
308  * </literallayout></textobject></mediaobject></entry>
309  * </row></tbody></tgroup></informaltable>
310  * 
311  * First we split A into A and B, with a 50% proportional split. Then we split
312  * A into A and C, with C above, C being a text grid window, and C gets a fixed
313  * size of two rows (as measured in its own font size). A gets whatever remains
314  * of the 50% it had before.
315  * 
316  * Now the player stretches the window vertically.
317  * <informalfigure><mediaobject><imageobject><imagedata fileref="fig6.png"/>
318  * </imageobject></mediaobject></informalfigure>
319  * 
320  * The library figures: the topmost split, the original A/B split, is 50-50. So
321  * B gets half the screen space, and the pair window next to it (the lower
322  * <quote>O</quote>) gets the other half. Then it looks at the lower 
323  * <quote>O</quote>. C gets two rows; A gets the rest. All done.
324  * 
325  * Then the user maliciously starts squeezing the window down, in stages:
326  * <informaltable frame="none"><tgroup cols="5"><tbody><row valign="top">
327  * <entry><mediaobject><imageobject><imagedata fileref="fig5-7a.png"/>
328  * </imageobject></mediaobject></entry>
329  * <entry><mediaobject><imageobject><imagedata fileref="fig7b.png"/>
330  * </imageobject></mediaobject></entry>
331  * <entry><mediaobject><imageobject><imagedata fileref="fig7c.png"/>
332  * </imageobject></mediaobject></entry>
333  * <entry><mediaobject><imageobject><imagedata fileref="fig7d.png"/>
334  * </imageobject></mediaobject></entry>
335  * <entry><mediaobject><imageobject><imagedata fileref="fig7e.png"/>
336  * </imageobject></mediaobject></entry>
337  * </row></tbody></tgroup></informaltable>
338  * 
339  * The logic remains the same. B always gets half the space. At stage 3,
340  * there's no room left for A, so it winds up with zero height. Nothing
341  * displayed in A will be visible. At stage 4, there isn't even room in the
342  * upper 50% to give C its two rows; so it only gets one. Finally, C is
343  * squashed out of existence as well.
344  * 
345  * When a window winds up undersized, it remembers what size it should be. In
346  * the example above, A remembers that it should be two rows; if the user
347  * expands the window to the original size, it would return to the original
348  * layout.
349  * 
350  * The downward flow of control is a bit harsh. After all, in stage 4, there's
351  * room for C to have its two rows if only B would give up some of its 50%. But
352  * this does not happen.
353  * 
354  * <note><para>
355  *   This makes life much easier for the Glk library. To determine the
356  *   configuration of a window, it only needs to look at the window's
357  *   ancestors, never at its descendants. So window layout is a simple
358  *   recursive algorithm, no backtracking.
359  * </para></note>
360  * 
361  * What happens when you split a fixed-size window? The resulting pair window
362  * &mdash; that is, the two new parts together &mdash; retain the same size
363  * constraint as the original window that was split. The key window for the
364  * original split is still the key window for that split, even though it's now
365  * a grandchild instead of a child.
366  * 
367  * The easy, and correct, way to think about this is that the size constraint
368  * is stored by a window's parent, not the window itself; and a constraint
369  * consists of a pointer to a key window plus a size value.
370  * 
371  * <informaltable frame="none"><tgroup cols="6"><tbody><row>
372  * <entry><mediaobject><imageobject><imagedata fileref="fig8a.png"/>
373  * </imageobject></mediaobject></entry>
374  * <entry><mediaobject><textobject><literallayout class="monospaced">
375  *  A   
376  * </literallayout></textobject></mediaobject></entry>
377  * <entry><mediaobject><imageobject><imagedata fileref="fig8b.png"/>
378  * </imageobject></mediaobject></entry>
379  * <entry><mediaobject><textobject><literallayout class="monospaced">
380  *    O1  
381  *   / \  
382  *  A   B 
383  * </literallayout></textobject></mediaobject></entry> 
384  * <entry><mediaobject><imageobject><imagedata fileref="fig8c.png"/>
385  * </imageobject></mediaobject></entry>
386  * <entry><mediaobject><textobject><literallayout class="monospaced">
387  *      O1  
388  *     / \  
389  *    O2  B 
390  *   / \    
391  *  A   C   
392  * </literallayout></textobject></mediaobject></entry> 
393  * </row></tbody></tgroup></informaltable>
394  * After the first split, the new pair window (O1, which covers the whole
395  * screen) knows that its first child (A) is above the second, and gets 50% of
396  * its own area. (A is the key window for this split, but a proportional split
397  * doesn't care about key windows.)
398  * 
399  * After the second split, all this remains true; O1 knows that its first child
400  * gets 50% of its space, and A is O1's key window. But now O1's first child is
401  * O2 instead of A. The newer pair window (O2) knows that its first child (C)
402  * is above the second, and gets a fixed size of two rows. (As measured in C's
403  * font, because C is O2's key window.)
404  * 
405  * If we split C, now, the resulting pair will still be two C-font rows high
406  * &mdash; that is, tall enough for two lines of whatever font C displays. For
407  * the sake of example, we'll do this vertically.
408  * <informaltable frame="none"><tgroup cols="2"><tbody><row>
409  * <entry><mediaobject><imageobject><imagedata fileref="fig9.png"/>
410  * </imageobject></mediaobject></entry>
411  * <entry><mediaobject><textobject><literallayout class="monospaced">
412  *      O1
413  *     / \
414  *    O2  B
415  *   / \
416  *  A   O3
417  *     / \
418  *    C   D
419  * </literallayout></textobject></mediaobject></entry> 
420  * </row></tbody></tgroup></informaltable>
421  * 
422  * O3 now knows that its children have a 50-50 left-right split. O2 is still
423  * committed to giving its upper child, O3, two C-font rows. Again, this is
424  * because C is O2's key window. 
425  *
426  * <note><para>
427  *   This turns out to be a good idea, because it means that C, the text grid
428  *   window, is still two rows high. If O3 had been a upper-lower split, things
429  *   wouldn't work out so neatly. But the rules would still apply. If you don't
430  *   like this, don't do it.
431  * </para></note>
432  *
433  * Returns: the new window, or %NULL on error.
434  */
435 winid_t
436 glk_window_open(winid_t split, glui32 method, glui32 size, glui32 wintype, 
437                 glui32 rock)
438 {
439         VALID_WINDOW_OR_NULL(split, return NULL);
440         g_return_val_if_fail(method == (method & (winmethod_DirMask | winmethod_DivisionMask)), NULL);
441         g_return_val_if_fail(!(((method & winmethod_DivisionMask) == winmethod_Proportional) && size > 100), NULL);     
442
443         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
444         
445         if(split == NULL && glk_data->root_window != NULL)
446         {
447                 ILLEGAL("Tried to open a new root window, but there is already a root window");
448                 return NULL;
449         }
450         
451         gdk_threads_enter();
452         
453         /* Create the new window */
454         winid_t win = window_new_common(rock);
455         win->type = wintype;
456
457         switch(wintype)
458         {
459                 case wintype_Blank:
460                 {
461                         /* A blank window will be a label without any text */
462                         GtkWidget *label = gtk_label_new("");
463                         gtk_widget_show(label);
464                         
465                         win->widget = label;
466                         win->frame = label;
467                         /* A blank window has no size */
468                         win->unit_width = 0;
469                         win->unit_height = 0;
470                 }
471                         break;
472                 
473                 case wintype_TextGrid:
474                 {
475                     GtkWidget *textview = gtk_text_view_new();
476                         GtkTextBuffer *textbuffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(textview) );
477
478                     gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW(textview), GTK_WRAP_NONE );
479                     gtk_text_view_set_editable( GTK_TEXT_VIEW(textview), FALSE );
480                         gtk_widget_show(textview);
481                                 
482                         /* Create the styles available to the window stream */
483                         style_init_textgrid(textbuffer);
484                         gtk_widget_modify_font( textview, get_current_font(wintype) );
485                     
486                     win->widget = textview;
487                     win->frame = textview;
488                         
489                         /* Determine the size of a "0" character in pixels */
490                         PangoLayout *zero = gtk_widget_create_pango_layout(textview, "0");
491                         pango_layout_set_font_description( zero, get_current_font(wintype) );
492                         pango_layout_get_pixel_size(zero, &(win->unit_width), &(win->unit_height));
493                         g_object_unref(zero);
494                         /* width and height are set later */
495                         
496                         /* Connect signal handlers */
497                         win->char_input_keypress_handler = g_signal_connect(textview, "key-press-event", G_CALLBACK(on_char_input_key_press_event), win);
498                         g_signal_handler_block(textview, win->char_input_keypress_handler);
499                         win->line_input_keypress_handler = g_signal_connect(textview, "key-press-event", G_CALLBACK(on_line_input_key_press_event), win);
500                         g_signal_handler_block(textview, win->line_input_keypress_handler);
501                 }
502                     break;
503                 
504                 case wintype_TextBuffer:
505                 {
506                         GtkWidget *scrolledwindow = gtk_scrolled_window_new(NULL, NULL);
507                         GtkWidget *textview = gtk_text_view_new();
508                         GtkTextBuffer *textbuffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(textview) );
509
510                         gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(scrolledwindow), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC );
511                         
512                         gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW(textview), GTK_WRAP_WORD_CHAR );
513                         gtk_text_view_set_editable( GTK_TEXT_VIEW(textview), FALSE );
514                         gtk_text_view_set_pixels_inside_wrap( GTK_TEXT_VIEW(textview), 3 );
515                         gtk_text_view_set_left_margin( GTK_TEXT_VIEW(textview), 20 );
516                         gtk_text_view_set_right_margin( GTK_TEXT_VIEW(textview), 20 );
517
518                         gtk_container_add( GTK_CONTAINER(scrolledwindow), textview );
519                         gtk_widget_show_all(scrolledwindow);
520
521                         /* Create the styles available to the window stream */
522                         style_init_textbuffer(textbuffer);
523                         gtk_widget_modify_font( textview, get_current_font(wintype) );
524                         
525                         win->widget = textview;
526                         win->frame = scrolledwindow;
527                         
528                         /* Determine the size of a "0" character in pixels */
529                         PangoLayout *zero = gtk_widget_create_pango_layout(textview, "0");
530                         pango_layout_set_font_description( zero, get_current_font(wintype) );
531                         pango_layout_get_pixel_size(zero, &(win->unit_width), &(win->unit_height));
532                         g_object_unref(zero);
533
534                         /* Connect signal handlers */
535                         win->char_input_keypress_handler = g_signal_connect( textview, "key-press-event", G_CALLBACK(on_char_input_key_press_event), win );
536                         g_signal_handler_block(textview, win->char_input_keypress_handler);
537                         win->line_input_keypress_handler = g_signal_connect( textview, "key-press-event", G_CALLBACK(on_line_input_key_press_event), win );
538                         g_signal_handler_block(textview, win->line_input_keypress_handler);
539                         
540                         win->insert_text_handler = g_signal_connect_after( textbuffer, "insert-text", G_CALLBACK(after_window_insert_text), win );
541                         g_signal_handler_block(textbuffer, win->insert_text_handler);
542
543
544                         /* Create an editable tag to indicate uneditable parts of the window
545                         (for line input) */
546                         gtk_text_buffer_create_tag(textbuffer, "uneditable", "editable", FALSE, "editable-set", TRUE, NULL);
547
548                         /* Mark the position where the user will input text */
549                         GtkTextIter end;
550                         gtk_text_buffer_get_end_iter(textbuffer, &end);
551                         gtk_text_buffer_create_mark(textbuffer, "input_position", &end, TRUE);
552                 }
553                         break;
554                         
555                 default:
556                         gdk_threads_leave();
557                         ILLEGAL_PARAM("Unknown window type: %u", wintype);
558                         g_free(win);
559                         g_node_destroy(glk_data->root_window);
560                         glk_data->root_window = NULL;
561                         return NULL;
562         }
563
564         /* Set the minimum size to "as small as possible" so it doesn't depend on
565          the size of the window contents */
566         gtk_widget_set_size_request(win->widget, 0, 0);
567         gtk_widget_set_size_request(win->frame, 0, 0);
568         
569         if(split)
570         {
571                 /* When splitting, construct a new parent window
572                  * copying most characteristics from the window that is being split */
573                 winid_t pair = window_new_common(0);
574                 pair->type = wintype_Pair;
575
576                 /* The pair window must know about its children's split method */
577                 pair->key_window = win;
578                 pair->split_method = method;
579                 pair->constraint_size = size;
580                 
581                 /* Insert the new window into the window tree */
582                 if(split->window_node->parent == NULL)
583                         glk_data->root_window = pair->window_node;
584                 else 
585                 {
586                         if( split->window_node == g_node_first_sibling(split->window_node) )
587                                 g_node_prepend(split->window_node->parent, pair->window_node);
588                         else
589                                 g_node_append(split->window_node->parent, pair->window_node);
590                         g_node_unlink(split->window_node);
591                 }
592                 /* Place the windows in the correct order */
593                 switch(method & winmethod_DirMask)
594                 {
595                         case winmethod_Left:
596                         case winmethod_Above:
597                                 g_node_append(pair->window_node, win->window_node);
598                                 g_node_append(pair->window_node, split->window_node);
599                                 break;
600                         case winmethod_Right:
601                         case winmethod_Below:
602                                 g_node_append(pair->window_node, split->window_node);
603                                 g_node_append(pair->window_node, win->window_node);
604                                 break;
605                 }
606
607         } else {
608                 /* Set the window as root window */
609                 glk_data->root_window = win->window_node;
610         }
611
612         /* Set the window as a child of the Glk widget, don't trigger an arrange event */
613         g_mutex_lock(glk_data->arrange_lock);
614         glk_data->needs_rearrange = TRUE;
615         glk_data->ignore_next_arrange_event = TRUE;
616         g_mutex_unlock(glk_data->arrange_lock);
617         gtk_widget_set_parent(win->frame, GTK_WIDGET(glk_data->self));
618         gtk_widget_queue_resize(GTK_WIDGET(glk_data->self));
619         
620     /* For text grid windows, fill the buffer with blanks. */
621     if(wintype == wintype_TextGrid)
622     {
623         /* Create the cursor position mark */
624         GtkTextIter begin;
625         GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
626         gtk_text_buffer_get_start_iter(buffer, &begin);
627         gtk_text_buffer_create_mark(buffer, "cursor_position", &begin, TRUE);
628         }
629
630         gdk_threads_leave();
631     glk_window_clear(win);
632         return win;
633 }
634
635 /* Internal function: if node's key window is closing_win or one of its
636  children, set node's key window to NULL. */
637 static gboolean 
638 remove_key_windows(GNode *node, winid_t closing_win)
639 {
640         winid_t win = (winid_t)node->data;
641         if(win->key_window && (win->key_window == closing_win || g_node_is_ancestor(closing_win->window_node, win->key_window->window_node)))
642                 win->key_window = NULL;
643         return FALSE; /* Don't stop the traversal */
644 }
645
646 /* Internal function: destroy this window's GTK widgets, window streams, 
647  and those of all its children. GDK threads must be locked. */
648 static void
649 destroy_windows_below(winid_t win, stream_result_t *result)
650 {
651         switch(win->type)
652         {
653                 case wintype_Blank:
654             case wintype_TextGrid:
655                 case wintype_TextBuffer:
656                         gtk_widget_unparent(win->frame);
657                         break;
658
659                 case wintype_Pair:
660                         destroy_windows_below(win->window_node->children->data, NULL);
661                         destroy_windows_below(win->window_node->children->next->data, NULL);
662                         break;
663
664                 default:
665                         ILLEGAL_PARAM("Unknown window type: %u", win->type);
666                         return;
667         }
668         stream_close_common(win->window_stream, result);
669 }
670
671 /* Internal function: free the winid_t structure of this window and those of all its children */
672 static void
673 free_winids_below(winid_t win)
674 {
675         if(win->type == wintype_Pair) {
676                 free_winids_below(win->window_node->children->data);
677                 free_winids_below(win->window_node->children->next->data);
678         }
679         window_close_common(win, FALSE);
680 }
681
682 /**
683  * glk_window_close:
684  * @win: Window to close.
685  * @result: Pointer to a #stream_result_t in which to store the write count.
686  *
687  * Closes @win, which is pretty much exactly the opposite of opening a window.
688  * It is legal to close all your windows, or to close the root window (which is
689  * the same thing.) 
690  *
691  * The @result argument is filled with the output character count of the window
692  * stream. See <link linkend="chimara-Streams">Streams</link> and <link
693  * linkend="chimara-Closing-Streams">Closing Streams</link>.
694  * 
695  * When you close a window (and it is not the root window), the other window
696  * in its pair takes over all the freed-up area. Let's close D, in the current
697  * example:
698  * <informaltable frame="none"><tgroup cols="2"><tbody><row>
699  * <entry><mediaobject><imageobject><imagedata fileref="fig10.png"/>
700  * </imageobject></mediaobject></entry>
701  * <entry><mediaobject><textobject><literallayout class="monospaced">
702  *      O1
703  *     / \
704  *    O2  B
705  *   / \
706  *  A   C
707  * </literallayout></textobject></mediaobject></entry> 
708  * </row></tbody></tgroup></informaltable>
709  * 
710  * Notice what has happened. D is gone. O3 is gone, and its 50-50 left-right
711  * split has gone with it. The other size constraints are unchanged; O2 is
712  * still committed to giving its upper child two rows, as measured in the font
713  * of O2's key window, which is C. Conveniently, O2's upper child is C, just as
714  * it was before we created D. In fact, now that D is gone, everything is back
715  * to the way it was before we created D.
716  * 
717  * But what if we had closed C instead of D? We would have gotten this:
718  * <informaltable frame="none"><tgroup cols="2"><tbody><row>
719  * <entry><mediaobject><imageobject><imagedata fileref="fig11.png"/>
720  * </imageobject></mediaobject></entry>
721  * <entry><mediaobject><textobject><literallayout class="monospaced">
722  *      O1
723  *     / \
724  *    O2  B
725  *   / \
726  *  A   D
727  * </literallayout></textobject></mediaobject></entry> 
728  * </row></tbody></tgroup></informaltable>
729  * 
730  * Again, O3 is gone. But D has collapsed to zero height. This is because its
731  * height is controlled by O2, and O2's key window was C, and C is now gone. O2
732  * no longer has a key window at all, so it cannot compute a height for its
733  * upper child, so it defaults to zero.
734  * 
735  * <note><para>
736  *   This may seem to be an inconvenient choice. That is deliberate. You should
737  *   not leave a pair window with no key, and the zero-height default reminds
738  *   you not to. You can use glk_window_set_arrangement() to set a new split
739  *   measurement and key window. See <link 
740  *   linkend="chimara-Changing-Window-Constraints">Changing Window
741  *   Constraints</link>.
742  * </para></note>
743  */
744 void
745 glk_window_close(winid_t win, stream_result_t *result)
746 {
747         VALID_WINDOW(win, return);
748
749         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
750         
751         gdk_threads_enter(); /* Prevent redraw while we're trashing the window */
752         
753         /* If any pair windows have this window or its children as a key window,
754          set their key window to NULL */
755         g_node_traverse(glk_data->root_window, G_IN_ORDER, G_TRAVERSE_NON_LEAVES, -1, (GNodeTraverseFunc)remove_key_windows, win);
756         
757         /* Close all the window streams and destroy the widgets of this window
758          and below, before trashing the window tree */
759         destroy_windows_below(win, result);
760         
761         /* Then free the winid_t structures below this node, but not this one itself */
762         if(win->type == wintype_Pair) {
763                 free_winids_below(win->window_node->children->data);
764                 free_winids_below(win->window_node->children->next->data);
765         }
766         /* So now we should be left with a skeleton tree hanging off this node */       
767         
768         /* Parent window changes from a split window into the sibling window */
769         /* The parent of any window is either a pair window or NULL */
770         GNode *pair_node = win->window_node->parent;
771         /* If win was not the root window: */
772         if(pair_node != NULL)
773         {
774                 gboolean new_child_on_left = ( pair_node == g_node_first_sibling(pair_node) );
775                 GNode *sibling_node = pair_node->children; /* only one child left */
776                 GNode *new_parent_node = pair_node->parent;
777                 g_node_unlink(pair_node);
778                 g_node_unlink(sibling_node);
779                 /* pair_node and sibling_node should now be totally unconnected to the tree */
780                 
781                 if(new_parent_node == NULL)
782                 {
783                         glk_data->root_window = sibling_node;
784                 } 
785                 else 
786                 {
787                         if(new_child_on_left)
788                                 g_node_prepend(new_parent_node, sibling_node);
789                         else
790                                 g_node_append(new_parent_node, sibling_node);
791                 }
792
793                 window_close_common( (winid_t) pair_node->data, TRUE);
794         } 
795         else /* it was the root window */
796         {
797                 glk_data->root_window = NULL;
798         }
799
800         window_close_common(win, FALSE);
801
802         /* Schedule a redraw */
803         g_mutex_lock(glk_data->arrange_lock);
804         glk_data->needs_rearrange = TRUE;
805         glk_data->ignore_next_arrange_event = TRUE;
806         g_mutex_unlock(glk_data->arrange_lock);
807         gtk_widget_queue_resize( GTK_WIDGET(glk_data->self) );
808         gdk_threads_leave();
809 }
810
811 /**
812  * glk_window_clear:
813  * @win: A window.
814  *
815  * Erases @win. The meaning of this depends on the window type.
816  * <variablelist>
817  * <varlistentry>
818  *  <term>Text buffer</term>
819  *  <listitem><para>
820  *   This may do any number of things, such as delete all text in the window, or
821  *   print enough blank lines to scroll all text beyond visibility, or insert a
822  *   page-break marker which is treated specially by the display part of the
823  *   library.
824  *  </para></listitem>
825  * </varlistentry>
826  * <varlistentry>
827  *  <term>Text grid</term>
828  *  <listitem><para>
829  *   This will clear the window, filling all positions with blanks. The window
830  *   cursor is moved to the top left corner (position 0,0).
831  *  </para></listitem>
832  * </varlistentry>
833  * <varlistentry>
834  *  <term>Graphics</term>
835  *  <listitem><para>
836  *   Clears the entire window to its current background color. See <link
837  *   linkend="chimara-Graphics-Windows">Graphics Windows</link>.
838  *  </para></listitem>
839  * </varlistentry>
840  * <varlistentry>
841  *  <term>Other window types</term>
842  *  <listitem><para>No effect.</para></listitem>
843  * </varlistentry>
844  * </variablelist>
845  *
846  * It is illegal to erase a window which has line input pending. 
847  */
848 void
849 glk_window_clear(winid_t win)
850 {
851         VALID_WINDOW(win, return);
852         g_return_if_fail(win->input_request_type != INPUT_REQUEST_LINE && win->input_request_type != INPUT_REQUEST_LINE_UNICODE);
853
854         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
855         
856         switch(win->type)
857         {
858                 case wintype_Blank:
859                 case wintype_Pair:
860                         /* do nothing */
861                         break;
862                 
863                 case wintype_TextGrid:
864                     /* fill the buffer with blanks */
865                 {
866                         /* Wait for the window's size to be updated */
867                         g_mutex_lock(glk_data->arrange_lock);
868                         if(glk_data->needs_rearrange)
869                                 g_cond_wait(glk_data->rearranged, glk_data->arrange_lock);
870                         g_mutex_unlock(glk_data->arrange_lock);
871                         
872                     gdk_threads_enter();
873                     
874             /* Manually put newlines at the end of each row of characters in the buffer; manual newlines make resizing the window's grid easier. */
875             gchar *blanks = g_strnfill(win->width, ' ');
876             gchar **blanklines = g_new0(gchar *, win->height + 1);
877             int count;
878             for(count = 0; count < win->height; count++)
879                 blanklines[count] = blanks;
880             blanklines[win->height] = NULL;
881             gchar *text = g_strjoinv("\n", blanklines);
882             g_free(blanklines); /* not g_strfreev() */
883             g_free(blanks);
884             
885             GtkTextBuffer *textbuffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
886             gtk_text_buffer_set_text(textbuffer, text, -1);
887             g_free(text);
888             
889             GtkTextIter begin;
890             gtk_text_buffer_get_start_iter(textbuffer, &begin);
891             gtk_text_buffer_move_mark_by_name(textbuffer, "cursor_position", &begin);
892                     
893                     gdk_threads_leave();
894                 }
895                     break;
896                 
897                 case wintype_TextBuffer:
898                         /* delete all text in the window */
899                 {
900                         gdk_threads_enter();
901
902                         GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
903                         GtkTextIter start, end;
904                         gtk_text_buffer_get_bounds(buffer, &start, &end);
905                         gtk_text_buffer_delete(buffer, &start, &end);
906
907                         gdk_threads_leave();
908                 }
909                         break;
910                 
911                 default:
912                         ILLEGAL_PARAM("Unknown window type: %d", win->type);
913         }
914 }
915
916 /**
917  * glk_set_window:
918  * @win: A window, or %NULL.
919  *
920  * Sets the current stream to @win's window stream. It is exactly equivalent to
921  * |[ #glk_stream_set_current(#glk_window_get_stream(@win)) ]| 
922  * See <link linkend="chimara-Streams">Streams</link>.
923  *
924  * <note><title>Chimara</title>
925  * <para>
926  *   Although this is not mentioned in the specification, @win may also be 
927  *   %NULL, in which case the current stream is also set to %NULL.
928  * </para></note>
929  */
930 void
931 glk_set_window(winid_t win)
932 {
933         VALID_WINDOW_OR_NULL(win, return);
934         if(win)
935                 glk_stream_set_current( glk_window_get_stream(win) );
936         else
937                 glk_stream_set_current(NULL);
938 }
939
940 /**
941  * glk_window_get_stream:
942  * @win: A window.
943  *
944  * Returns the stream which is associated with @win. (See <link 
945  * linkend="chimara-Window-Streams">Window Streams</link>.) Every window has a
946  * stream which can be printed to, but this may not be useful, depending on the
947  * window type.
948  * 
949  * <note><para>
950  *   For example, printing to a blank window's stream has no effect.
951  * </para></note>
952  *
953  * Returns: A window stream.
954  */
955 strid_t glk_window_get_stream(winid_t win)
956 {
957         VALID_WINDOW(win, return NULL);
958         return win->window_stream;
959 }
960
961 /**
962  * glk_window_set_echo_stream:
963  * @win: A window.
964  * @str: A stream to attach to the window, or %NULL.
965  *
966  * Sets @win's echo stream to @str, which can be any valid output stream. You
967  * can reset a window to stop echoing by calling 
968  * <code>#glk_window_set_echo_stream(@win, %NULL)</code>.
969  *
970  * It is illegal to set a window's echo stream to be its 
971  * <emphasis>own</emphasis> window stream. That would create an infinite loop,
972  * and is nearly certain to crash the Glk library. It is similarly illegal to
973  * create a longer loop (two or more windows echoing to each other.)
974  */
975 void
976 glk_window_set_echo_stream(winid_t win, strid_t str)
977 {
978         VALID_WINDOW(win, return);
979         VALID_STREAM_OR_NULL(str, return);
980         
981         /* Test for an infinite loop */
982         strid_t next = str;
983         for(; next && next->type == STREAM_TYPE_WINDOW; next = next->window->echo_stream)
984         {
985                 if(next == win->window_stream)
986                 {
987                         ILLEGAL("Infinite loop detected");
988                         win->echo_stream = NULL;
989                         return;
990                 }
991         }
992         
993         win->echo_stream = str;
994 }
995
996 /**
997  * glk_window_get_echo_stream:
998  * @win: A window.
999  *
1000  * Returns the echo stream of window @win. Initially, a window has no echo
1001  * stream, so <code>#glk_window_get_echo_stream(@win)</code> will return %NULL.
1002  *
1003  * Returns: A stream, or %NULL.
1004  */
1005 strid_t
1006 glk_window_get_echo_stream(winid_t win)
1007 {
1008         VALID_WINDOW(win, return NULL);
1009         return win->echo_stream;
1010 }
1011
1012 /**
1013  * glk_window_get_size:
1014  * @win: A window.
1015  * @widthptr: Pointer to a location to store the window's width, or %NULL.
1016  * @heightptr: Pointer to a location to store the window's height, or %NULL.
1017  *
1018  * Simply returns the actual size of the window, in its measurement system.
1019  * As described in <link linkend="chimara-Other-API-Conventions">Other API 
1020  * Conventions</link>, either @widthptr or @heightptr can be %NULL, if you
1021  * only want one measurement. 
1022  *
1023  * <note><para>Or, in fact, both, if you want to waste time.</para></note>
1024  */
1025 void
1026 glk_window_get_size(winid_t win, glui32 *widthptr, glui32 *heightptr)
1027 {
1028         VALID_WINDOW(win, return);
1029
1030         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
1031         
1032     switch(win->type)
1033     {
1034         case wintype_Blank:
1035                 case wintype_Pair:
1036             if(widthptr != NULL)
1037                 *widthptr = 0;
1038             if(heightptr != NULL)
1039                 *heightptr = 0;
1040             break;
1041             
1042         case wintype_TextGrid:
1043                         /* Wait until the window's size is current */
1044                         g_mutex_lock(glk_data->arrange_lock);
1045                         if(glk_data->needs_rearrange)
1046                                 g_cond_wait(glk_data->rearranged, glk_data->arrange_lock);
1047                         g_mutex_unlock(glk_data->arrange_lock);
1048                         
1049                         gdk_threads_enter();
1050                         /* Cache the width and height */
1051                         win->width = (glui32)(win->widget->allocation.width / win->unit_width);
1052                     win->height = (glui32)(win->widget->allocation.height / win->unit_height);
1053             gdk_threads_leave();
1054                         
1055             if(widthptr != NULL)
1056                 *widthptr = win->width;
1057             if(heightptr != NULL)
1058                 *heightptr = win->height;
1059             break;
1060             
1061         case wintype_TextBuffer:
1062             /* Wait until the window's size is current */
1063                         g_mutex_lock(glk_data->arrange_lock);
1064                         if(glk_data->needs_rearrange)
1065                                 g_cond_wait(glk_data->rearranged, glk_data->arrange_lock);
1066                         g_mutex_unlock(glk_data->arrange_lock);
1067                         
1068             gdk_threads_enter();
1069             if(widthptr != NULL)
1070                 *widthptr = (glui32)(win->widget->allocation.width / win->unit_width);
1071             if(heightptr != NULL)
1072                 *heightptr = (glui32)(win->widget->allocation.height / win->unit_height);
1073             gdk_threads_leave();
1074             
1075             break;
1076             
1077         default:
1078             ILLEGAL_PARAM("Unknown window type: %u", win->type);
1079     }
1080 }
1081
1082 /**
1083  * glk_window_set_arrangement:
1084  * @win: a pair window to rearrange.
1085  * @method: new method of size computation. One of %winmethod_Above, 
1086  * %winmethod_Below, %winmethod_Left, or %winmethod_Right OR'ed with 
1087  * %winmethod_Fixed or %winmethod_Proportional.
1088  * @size: new size constraint, in percentage points if @method is
1089  * %winmethod_Proportional, otherwise in characters if @win's type is 
1090  * %wintype_TextBuffer or %wintype_TextGrid, or pixels if @win's type is
1091  * %wintype_Graphics.
1092  * @keywin: new key window, or %NULL to leave the key window unchanged.
1093  *
1094  * Changes the size of an existing split &mdash; that is, it changes the 
1095  * constraint of a given pair window.
1096  * 
1097  * Consider the example above, where D has collapsed to zero height. Say D was a
1098  * text buffer window. You could make a more useful layout by doing
1099  * |[
1100  * #winid_t o2;
1101  * o2 = #glk_window_get_parent(d);
1102  * glk_window_set_arrangement(o2, #winmethod_Above | #winmethod_Fixed, 3, d);
1103  * ]|
1104  * That would set D (the upper child of O2) to be O2's key window, and give it a
1105  * fixed size of 3 rows.
1106  * 
1107  * If you later wanted to expand D, you could do
1108  * |[ glk_window_set_arrangement(o2, #winmethod_Above | #winmethod_Fixed, 5, NULL); ]|
1109  * That expands D to five rows. Note that, since O2's key window is already set 
1110  * to D, it is not necessary to provide the @keywin argument; you can pass %NULL
1111  * to mean <quote>leave the key window unchanged.</quote>
1112  * 
1113  * If you do change the key window of a pair window, the new key window 
1114  * <emphasis>must</emphasis> be a descendant of that pair window. In the current
1115  * example, you could change O2's key window to be A, but not B. The key window
1116  * also cannot be a pair window itself.
1117  * 
1118  * |[ glk_window_set_arrangement(o2, #winmethod_Below | #winmethod_Fixed, 3, NULL); ]|
1119  * This changes the constraint to be on the <emphasis>lower</emphasis> child of 
1120  * O2, which is A. The key window is still D; so A would then be three rows high
1121  * as measured in D's font, and D would get the rest of O2's space. That may not
1122  * be what you want. To set A to be three rows high as measured in A's font, you
1123  * would do
1124  * |[ glk_window_set_arrangement(o2, #winmethod_Below | #winmethod_Fixed, 3, a); ]|
1125  * 
1126  * Or you could change O2 to a proportional split:
1127  * |[ glk_window_set_arrangement(o2, #winmethod_Below | #winmethod_Proportional, 30, NULL); ]|
1128  * or
1129  * |[ glk_window_set_arrangement(o2, #winmethod_Above | #winmethod_Proportional, 70, NULL); ]|
1130  * These do exactly the same thing, since 30&percnt; above is the same as 
1131  * 70&percnt; below. You don't need to specify a key window with a proportional
1132  * split, so the @keywin argument is %NULL. (You could actually specify either A
1133  * or D as the key window, but it wouldn't affect the result.)
1134  * 
1135  * Whatever constraint you set, glk_window_get_size() will tell you the actual 
1136  * window size you got.
1137  * 
1138  * Note that you can resize windows, but you can't flip or rotate them. You 
1139  * can't move A above D, or change O2 to a vertical split where A is left or 
1140  * right of D. 
1141  * <note><para>
1142  *   To get this effect you could close one of the windows, and re-split the 
1143  *   other one with glk_window_open().
1144  * </para></note>
1145  */
1146 void
1147 glk_window_set_arrangement(winid_t win, glui32 method, glui32 size, winid_t keywin)
1148 {
1149         VALID_WINDOW(win, return);
1150         VALID_WINDOW_OR_NULL(keywin, return);
1151         g_return_if_fail(win->type == wintype_Pair);
1152         if(keywin)
1153         {
1154                 g_return_if_fail(keywin->type != wintype_Pair);
1155                 g_return_if_fail(g_node_is_ancestor(win->window_node, keywin->window_node));
1156         }
1157         g_return_if_fail(method == (method & (winmethod_DirMask | winmethod_DivisionMask)));
1158         g_return_if_fail(!(((method & winmethod_DivisionMask) == winmethod_Proportional) && size > 100));
1159
1160         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
1161         
1162         win->split_method = method;
1163         win->constraint_size = size;
1164         if(keywin)
1165                 win->key_window = keywin;
1166
1167         /* Tell GTK to rearrange the windows */
1168         gdk_threads_enter();
1169         g_mutex_lock(glk_data->arrange_lock);
1170         glk_data->needs_rearrange = TRUE;
1171         glk_data->ignore_next_arrange_event = TRUE;
1172         g_mutex_unlock(glk_data->arrange_lock);
1173         gtk_widget_queue_resize(GTK_WIDGET(glk_data->self));
1174         gdk_threads_leave();
1175 }
1176
1177 /**
1178  * glk_window_get_arrangement:
1179  * @win: a pair window.
1180  * @methodptr: return location for the constraint flags of @win, or %NULL.
1181  * @sizeptr: return location for the constraint size of @win, or %NULL.
1182  * @keywinptr: return location for the key window of @win, or %NULL.
1183  *
1184  * Queries the constraint of a given pair window.
1185  */
1186 void
1187 glk_window_get_arrangement(winid_t win, glui32 *methodptr, glui32 *sizeptr, winid_t *keywinptr)
1188 {
1189         VALID_WINDOW(win, return);
1190         g_return_if_fail(win->type == wintype_Pair);
1191         
1192         if(methodptr)
1193                 *methodptr = win->split_method;
1194         if(sizeptr)
1195                 *sizeptr = win->constraint_size;
1196         if(keywinptr)
1197                 *keywinptr = win->key_window;
1198 }
1199
1200 /**
1201  * glk_window_move_cursor:
1202  * @win: A text grid window.
1203  * @xpos: Horizontal cursor position.
1204  * @ypos: Vertical cursor position.
1205  * 
1206  * Sets the cursor position. If you move the cursor right past the end of a 
1207  * line, it wraps; the next character which is printed will appear at the
1208  * beginning of the next line.
1209  * 
1210  * If you move the cursor below the last line, or when the cursor reaches the
1211  * end of the last line, it goes <quote>off the screen</quote> and further
1212  * output has no effect. You must call glk_window_move_cursor() or
1213  * glk_window_clear() to move the cursor back into the visible region.
1214  * 
1215  * <note><para>
1216  *  Note that the arguments of glk_window_move_cursor() are <type>unsigned 
1217  *  int</type>s. This is okay, since there are no negative positions. If you try
1218  *  to pass a negative value, Glk will interpret it as a huge positive value,
1219  *  and it will wrap or go off the last line.
1220  * </para></note>
1221  *
1222  * <note><para>
1223  *  Also note that the output cursor is not necessarily visible. In particular,
1224  *  when you are requesting line or character input in a grid window, you cannot
1225  *  rely on the cursor position to prompt the player where input is indicated.
1226  *  You should print some character prompt at that spot &mdash; a 
1227  *  <quote>&gt;</quote> character, for example.
1228  * </para></note>
1229  */
1230 void
1231 glk_window_move_cursor(winid_t win, glui32 xpos, glui32 ypos)
1232 {
1233         VALID_WINDOW(win, return);
1234         g_return_if_fail(win->type == wintype_TextGrid);
1235
1236         flush_window_buffer(win);
1237
1238         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
1239         
1240         /* Wait until the window's size is current */
1241         g_mutex_lock(glk_data->arrange_lock);
1242         if(glk_data->needs_rearrange)
1243                 g_cond_wait(glk_data->rearranged, glk_data->arrange_lock);
1244         g_mutex_unlock(glk_data->arrange_lock);
1245
1246         /* Don't do anything if the window is shrunk down to nothing */
1247         if(win->width == 0 || win->height == 0)
1248                 return;
1249         
1250         /* Calculate actual position if cursor is moved past the right edge */
1251         if(xpos >= win->width)
1252         {
1253             ypos += xpos / win->width;
1254             xpos %= win->width;
1255         }
1256
1257         /* Go to the end if the cursor is moved off the bottom edge */
1258         if(ypos >= win->height)
1259         {
1260             xpos = win->width - 1;
1261             ypos = win->height - 1;
1262         }
1263         
1264         gdk_threads_enter();
1265         
1266         GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
1267         GtkTextIter newpos;
1268         /* There must actually be a character at xpos, or the following function will choke */
1269         gtk_text_buffer_get_iter_at_line_offset(buffer, &newpos, ypos, xpos);
1270         gtk_text_buffer_move_mark_by_name(buffer, "cursor_position", &newpos);
1271         
1272         gdk_threads_leave();
1273 }