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