Merge branch 'master' of ssh://git.stderr.nl/projects/chimara/chimara
[projects/chimara/chimara.git] / libchimara / input.c
1 #include "charset.h"
2 #include "magic.h"
3 #include "input.h"
4 #include "pager.h"
5 #include "chimara-glk-private.h"
6 #include "garglk.h"
7
8 extern GPrivate *glk_data_key;
9
10 /* Forward declarations */
11 static int finish_text_buffer_line_input(winid_t win, gboolean emit_signal);
12 static int finish_text_grid_line_input(winid_t win, gboolean emit_signal);
13 static void cancel_old_input_request(winid_t win);
14
15 /* Internal function: code common to both flavors of char event request */
16 void
17 request_char_event_common(winid_t win, gboolean unicode)
18 {
19         VALID_WINDOW(win, return);
20         g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
21
22         cancel_old_input_request(win);
23
24         flush_window_buffer(win);
25
26         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
27
28         win->input_request_type = unicode? INPUT_REQUEST_CHARACTER_UNICODE : INPUT_REQUEST_CHARACTER;
29         g_signal_handler_unblock( win->widget, win->char_input_keypress_handler );
30
31         gdk_threads_enter();
32         gtk_widget_grab_focus( GTK_WIDGET(win->widget) );
33         gdk_threads_leave();
34
35         /* Emit the "waiting" signal to let listeners know we are ready for input */
36         g_signal_emit_by_name(glk_data->self, "waiting");
37 }
38
39 /**
40  * glk_request_char_event:
41  * @win: A window to request char events from.
42  *
43  * Request input of a Latin-1 character or special key. A window cannot have
44  * requests for both character and line input at the same time. Nor can it have
45  * requests for character input of both types (Latin-1 and Unicode). It is
46  * illegal to call glk_request_char_event() if the window already has a pending
47  * request for either character or line input.
48  */
49 void
50 glk_request_char_event(winid_t win)
51 {
52         request_char_event_common(win, FALSE);
53 }
54
55 /**
56  * glk_request_char_event_uni:
57  * @win: A window to request char events from.
58  *
59  * Request input of a Unicode character or special key. See
60  * glk_request_char_event().
61  */
62 void
63 glk_request_char_event_uni(winid_t win)
64 {
65         request_char_event_common(win, TRUE);
66 }
67
68 /**
69  * glk_cancel_char_event:
70  * @win: A window to cancel the latest char event request on.
71  *
72  * This cancels a pending request for character input. (Either Latin-1 or
73  * Unicode.) For convenience, it is legal to call glk_cancel_char_event() even
74  * if there is no charcter input request on that window. Glk will ignore the
75  * call in this case.
76  */
77 void
78 glk_cancel_char_event(winid_t win)
79 {
80         VALID_WINDOW(win, return);
81         g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
82
83         if(win->input_request_type == INPUT_REQUEST_CHARACTER || win->input_request_type == INPUT_REQUEST_CHARACTER_UNICODE)
84         {
85                 win->input_request_type = INPUT_REQUEST_NONE;
86                 g_signal_handler_block( win->widget, win->char_input_keypress_handler );
87         }
88 }
89
90 /* Internal function: Request either latin-1 or unicode line input, in a text grid window. */
91 static void
92 text_grid_request_line_event_common(winid_t win, glui32 maxlen, gboolean insert, gchar *inserttext)
93 {
94         gdk_threads_enter();
95
96         GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
97
98     GtkTextMark *cursor = gtk_text_buffer_get_mark(buffer, "cursor_position");
99     GtkTextIter start_iter, end_iter;
100     gtk_text_buffer_get_iter_at_mark(buffer, &start_iter, cursor);
101
102     /* Determine the maximum length of the line input */
103     gint cursorpos = gtk_text_iter_get_line_offset(&start_iter);
104     /* Odd; the Glk spec says the maximum input length is
105     windowwidth - 1 - cursorposition. I say no, because if cursorposition is
106     zero, then the input should fill the whole line. FIXME??? */
107     win->input_length = MIN(win->width - cursorpos, win->line_input_buffer_max_len);
108     end_iter = start_iter;
109     gtk_text_iter_set_line_offset(&end_iter, cursorpos + win->input_length);
110
111         /* If the buffer currently has a selection with one bound in the middle of
112         the input field, then deselect it. Otherwise the input field gets trashed */
113         GtkTextIter start_sel, end_sel;
114         if( gtk_text_buffer_get_selection_bounds(buffer, &start_sel, &end_sel) )
115         {
116                 if( gtk_text_iter_in_range(&start_sel, &start_iter, &end_iter) )
117                         gtk_text_buffer_place_cursor(buffer, &end_sel);
118                 if( gtk_text_iter_in_range(&end_sel, &start_iter, &end_iter) )
119                         gtk_text_buffer_place_cursor(buffer, &start_sel);
120         }
121
122     /* Erase the text currently in the input field and replace it with a GtkEntry */
123     gtk_text_buffer_delete(buffer, &start_iter, &end_iter);
124     win->input_anchor = gtk_text_buffer_create_child_anchor(buffer, &start_iter);
125     win->input_entry = gtk_entry_new();
126         /* Set the entry's font to match that of the window */
127     GtkRcStyle *style = gtk_widget_get_modifier_style(win->widget);     /* Don't free */
128         gtk_widget_modify_font(win->input_entry, style->font_desc);
129         /* Make the entry as small as possible to fit with the text */
130         gtk_entry_set_has_frame(GTK_ENTRY(win->input_entry), FALSE);
131         GtkBorder border = { 0, 0, 0, 0 };
132
133         /* COMPAT: */
134 #if GTK_CHECK_VERSION(2,10,0)
135         gtk_entry_set_inner_border(GTK_ENTRY(win->input_entry), &border);
136 #endif
137     gtk_entry_set_max_length(GTK_ENTRY(win->input_entry), win->input_length);
138     gtk_entry_set_width_chars(GTK_ENTRY(win->input_entry), win->input_length);
139
140     /* Insert pre-entered text if needed */
141     if(insert)
142         gtk_entry_set_text(GTK_ENTRY(win->input_entry), inserttext);
143
144     /* Set background color of entry (TODO: implement as property) */
145     GdkColor background;
146         gdk_color_parse("grey", &background);
147     gtk_widget_modify_base(win->input_entry, GTK_STATE_NORMAL, &background);
148
149     g_signal_connect(win->input_entry, "activate", G_CALLBACK(on_input_entry_activate), win);
150     g_signal_connect(win->input_entry, "key-press-event", G_CALLBACK(on_input_entry_key_press_event), win);
151     win->line_input_entry_changed = g_signal_connect(win->input_entry, "changed", G_CALLBACK(on_input_entry_changed), win);
152
153     gtk_widget_show(win->input_entry);
154     gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(win->widget), win->input_entry, win->input_anchor);
155
156         gtk_widget_grab_focus(win->input_entry);
157
158         gdk_threads_leave();
159 }
160
161 /* Internal function: Request either latin-1 or unicode line input, in a text buffer window. */
162 static void
163 text_buffer_request_line_event_common(winid_t win, glui32 maxlen, gboolean insert, gchar *inserttext)
164 {
165         flush_window_buffer(win);
166
167         gdk_threads_enter();
168
169         GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
170
171     /* Move the input_position mark to the end of the window_buffer */
172     GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
173     GtkTextIter end_iter;
174     gtk_text_buffer_get_end_iter(buffer, &end_iter);
175     gtk_text_buffer_move_mark(buffer, input_position, &end_iter);
176
177     /* Set the entire contents of the window_buffer as uneditable
178      * (so input can only be entered at the end) */
179     GtkTextIter start_iter;
180     gtk_text_buffer_get_start_iter(buffer, &start_iter);
181     gtk_text_buffer_remove_tag_by_name(buffer, "uneditable", &start_iter, &end_iter);
182     gtk_text_buffer_apply_tag_by_name(buffer, "uneditable", &start_iter, &end_iter);
183
184     /* Insert pre-entered text if needed */
185     if(insert) {
186         gtk_text_buffer_insert(buffer, &end_iter, inserttext, -1);
187                 gtk_text_buffer_get_end_iter(buffer, &end_iter); /* update after text insertion */
188         }
189
190         /* Apply the correct style to the input prompt */
191         GtkTextIter input_iter;
192     gtk_text_buffer_get_iter_at_mark(buffer, &input_iter, input_position);
193     gtk_text_buffer_apply_tag_by_name(buffer, "input", &input_iter, &end_iter);
194
195     gtk_text_view_set_editable(GTK_TEXT_VIEW(win->widget), TRUE);
196
197         g_signal_handler_unblock(buffer, win->insert_text_handler);
198         gtk_widget_grab_focus(win->widget);
199
200         gdk_threads_leave();
201 }
202
203 /**
204  * glk_request_line_event:
205  * @win: A text buffer or text grid window to request line input on.
206  * @buf: A buffer of at least @maxlen bytes.
207  * @maxlen: Length of the buffer.
208  * @initlen: The number of characters in @buf to pre-enter.
209  *
210  * Requests input of a line of Latin-1 characters. A window cannot have requests
211  * for both character and line input at the same time. Nor can it have requests
212  * for line input of both types (Latin-1 and Unicode). It is illegal to call
213  * glk_request_line_event() if the window already has a pending request for
214  * either character or line input.
215  *
216  * The @buf argument is a pointer to space where the line input will be stored.
217  * (This may not be %NULL.) @maxlen is the length of this space, in bytes; the
218  * library will not accept more characters than this. If @initlen is nonzero,
219  * then the first @initlen bytes of @buf will be entered as pre-existing input
220  * — just as if the player had typed them himself. (The player can continue
221  * composing after this pre-entered input, or delete it or edit as usual.)
222  *
223  * The contents of the buffer are undefined until the input is completed (either
224  * by a line input event, or glk_cancel_line_event(). The library may or may not
225  * fill in the buffer as the player composes, while the input is still pending;
226  * it is illegal to change the contents of the buffer yourself.
227  */
228 void
229 glk_request_line_event(winid_t win, char *buf, glui32 maxlen, glui32 initlen)
230 {
231         VALID_WINDOW(win, return);
232         g_return_if_fail(buf);
233         g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
234         g_return_if_fail(initlen <= maxlen);
235
236         cancel_old_input_request(win);
237
238         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
239
240         /* Register the buffer */
241         if(glk_data->register_arr)
242         win->buffer_rock = (*glk_data->register_arr)(buf, maxlen, "&+#!Cn");
243
244         win->input_request_type = INPUT_REQUEST_LINE;
245         win->line_input_buffer = buf;
246         win->line_input_buffer_max_len = maxlen;
247         win->echo_current_line_input = win->echo_line_input;
248         win->current_extra_line_terminators = g_slist_copy(win->extra_line_terminators);
249
250         gchar *inserttext = (initlen > 0)? g_strndup(buf, initlen) : g_strdup("");
251         switch(win->type)
252         {
253             case wintype_TextBuffer:
254                 text_buffer_request_line_event_common(win, maxlen, (initlen > 0), inserttext);
255                 break;
256             case wintype_TextGrid:
257                 text_grid_request_line_event_common(win, maxlen, (initlen > 0), inserttext);
258                 break;
259     }
260         g_free(inserttext);
261         g_signal_handler_unblock(win->widget, win->line_input_keypress_handler);
262
263         /* Emit the "waiting" signal to let listeners know we are ready for input */
264         g_signal_emit_by_name(glk_data->self, "waiting");
265 }
266
267 /**
268  * glk_request_line_event_uni:
269  * @win: A text buffer or text grid window to request line input on.
270  * @buf: A buffer of at least @maxlen characters.
271  * @maxlen: Length of the buffer.
272  * @initlen: The number of characters in @buf to pre-enter.
273  *
274  * Request input of a line of Unicode characters. This works the same as
275  * glk_request_line_event(), except the result is stored in an array of
276  * <type>glui32</type> values instead of an array of characters, and the values
277  * may be any valid Unicode code points.
278  *
279  * If possible, the library should return fully composed Unicode characters,
280  * rather than strings of base and composition characters.
281  *
282  * <note><para>
283  *   Fully-composed characters are the norm for Unicode text, so an
284  *   implementation that ignores this issue will probably produce the right
285  *   result. However, the game may not want to rely on that. Another factor is
286  *   that case-folding can (occasionally) produce non-normalized text.
287  *   Therefore, to cover all its bases, a game should call
288  *   glk_buffer_to_lower_case_uni(), followed by
289  *   glk_buffer_canon_normalize_uni(), before parsing.
290  * </para></note>
291  *
292  * <note><para>
293  *   Earlier versions of this spec said that line input must always be in
294  *   Unicode Normalization Form C. However, this has not been universally
295  *   implemented. It is also somewhat redundant, for the results noted above.
296  *   Therefore, we now merely recommend that line input be fully composed. The
297  *   game is ultimately responsible for all case-folding and normalization. See
298  *   <link linkend="chimara-Unicode-String-Normalization">Unicode String
299  *   Normalization</link>.
300  * </para></note>
301  */
302 void
303 glk_request_line_event_uni(winid_t win, glui32 *buf, glui32 maxlen, glui32 initlen)
304 {
305         VALID_WINDOW(win, return);
306         g_return_if_fail(buf);
307         g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
308         g_return_if_fail(initlen <= maxlen);
309
310         cancel_old_input_request(win);
311         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
312
313         /* Register the buffer */
314         if(glk_data->register_arr)
315         win->buffer_rock = (*glk_data->register_arr)(buf, maxlen, "&+#!Iu");
316
317         win->input_request_type = INPUT_REQUEST_LINE_UNICODE;
318         win->line_input_buffer_unicode = buf;
319         win->line_input_buffer_max_len = maxlen;
320         win->echo_current_line_input = win->echo_line_input;
321         win->current_extra_line_terminators = g_slist_copy(win->extra_line_terminators);
322
323         gchar *utf8;
324         if(initlen > 0) {
325                 utf8 = convert_ucs4_to_utf8(buf, initlen);
326                 if(utf8 == NULL)
327                         return;
328         }
329         else
330                 utf8 = g_strdup("");
331
332     switch(win->type)
333         {
334             case wintype_TextBuffer:
335                 text_buffer_request_line_event_common(win, maxlen, (initlen > 0), utf8);
336                 break;
337             case wintype_TextGrid:
338                 text_grid_request_line_event_common(win, maxlen, (initlen > 0), utf8);
339                 break;
340     }
341     g_signal_handler_unblock(win->widget, win->line_input_keypress_handler);
342         g_free(utf8);
343
344         /* Emit the "waiting" signal to let listeners know we are ready for input */
345         g_signal_emit_by_name(glk_data->self, "waiting");
346 }
347
348 /**
349  * glk_cancel_line_event:
350  * @win: A text buffer or text grid window to cancel line input on.
351  * @event: Will be filled in if the user had already input something.
352  *
353  * This cancels a pending request for line input. (Either Latin-1 or Unicode.)
354  *
355  * The event pointed to by the event argument will be filled in as if the
356  * player had hit <keycap>enter</keycap>, and the input composed so far will be
357  * stored in the buffer; see below. If you do not care about this information,
358  * pass %NULL as the @event argument. (The buffer will still be filled.)
359  *
360  * For convenience, it is legal to call glk_cancel_line_event() even if there
361  * is no line input request on that window. The event type will be set to
362  * %evtype_None in this case.
363  */
364 void
365 glk_cancel_line_event(winid_t win, event_t *event)
366 {
367         VALID_WINDOW(win, return);
368         g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
369
370         if(event != NULL) {
371                 event->type = evtype_None;
372                 event->win = win;
373                 event->val1 = 0;
374                 event->val2 = 0;
375         }
376
377         if(win->input_request_type != INPUT_REQUEST_LINE && win->input_request_type != INPUT_REQUEST_LINE_UNICODE)
378                 return;
379
380         g_signal_handler_block( win->widget, win->line_input_keypress_handler );
381
382         int chars_written = 0;
383
384         gdk_threads_enter();
385         if(win->type == wintype_TextGrid) {
386                 chars_written = finish_text_grid_line_input(win, FALSE);
387         } else if(win->type == wintype_TextBuffer) {
388                 gtk_text_view_set_editable( GTK_TEXT_VIEW(win->widget), FALSE );
389                 GtkTextBuffer *window_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
390                 g_signal_handler_block(window_buffer, win->insert_text_handler);
391                 chars_written = finish_text_buffer_line_input(win, FALSE);
392         }
393         gdk_threads_leave();
394
395         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
396         if(glk_data->unregister_arr)
397         {
398                 if(win->input_request_type == INPUT_REQUEST_LINE_UNICODE)
399                         (*glk_data->unregister_arr)(win->line_input_buffer_unicode, win->line_input_buffer_max_len, "&+#!Iu", win->buffer_rock);
400                 else
401                 (*glk_data->unregister_arr)(win->line_input_buffer, win->line_input_buffer_max_len, "&+#!Cn", win->buffer_rock);
402     }
403
404         if(event != NULL && chars_written > 0) {
405                 event->type = evtype_LineInput;
406                 event->val1 = chars_written;
407         }
408 }
409
410 /* Helper function: Turn off shutdown key-press-event signal handler */
411 static gboolean
412 turn_off_handler(GNode *node)
413 {
414         winid_t win = node->data;
415         g_signal_handler_block(win->widget, win->shutdown_keypress_handler);
416         return FALSE; /* don't stop */
417 }
418
419 /* Internal function: Callback for signal key-press-event while waiting for shutdown. */
420 gboolean
421 on_shutdown_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win)
422 {
423         ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(widget, CHIMARA_TYPE_GLK));
424         g_assert(glk);
425         CHIMARA_GLK_USE_PRIVATE(glk, priv);
426         
427         /* Turn off all the signal handlers */
428         if(priv->root_window)
429                 g_node_traverse(priv->root_window, G_IN_ORDER, G_TRAVERSE_LEAVES, -1, (GNodeTraverseFunc)turn_off_handler, NULL);
430         
431         /* Signal the Glk library that it can shut everything down now */
432         g_mutex_lock(priv->shutdown_lock);
433         g_cond_signal(priv->shutdown_key_pressed);
434         g_mutex_unlock(priv->shutdown_lock);
435         
436         return TRUE; /* block the event */
437 }
438
439 /* Internal function: General callback for signal key-press-event on a text buffer or text grid window. Used in character input on both text buffers and grids. Blocked when not in use. */
440 gboolean
441 on_char_input_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win)
442 {
443         /* Ignore modifier keys, otherwise the char input will already trigger on 
444         the shift key when the user tries to type a capital letter */
445         if(event->is_modifier)
446                 return FALSE; /* don't stop the event */
447
448         /* All text up to the input position is now regarded as being read by the user */
449         if(win->type == wintype_TextBuffer)
450                 pager_update(win);
451         
452         glui32 keycode = keyval_to_glk_keycode(event->keyval, win->input_request_type == INPUT_REQUEST_CHARACTER_UNICODE);
453
454         ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(widget, CHIMARA_TYPE_GLK));
455         g_assert(glk);
456         event_throw(glk, evtype_CharInput, win, keycode, 0);
457         g_signal_emit_by_name(glk, "char-input", win->rock, event->keyval);
458
459         /* Only one keypress will be handled */
460         win->input_request_type = INPUT_REQUEST_NONE;
461         g_signal_handler_block(win->widget, win->char_input_keypress_handler);
462
463         return TRUE;
464 }
465
466 gboolean
467 on_line_input_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win)
468 {
469         switch(win->type)
470         {
471                 case wintype_TextBuffer:
472                 {
473                         /* All text up to the input position is now regarded as being read by the user */
474                         pager_update(win);
475
476                         GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(win->widget));
477
478                         /* History up/down */
479                         if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up
480                                 || event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
481                         {
482                                 /* Prevent falling off the end of the history list */
483                                 if(win->history == NULL)
484                                         return TRUE;
485                                 if( (event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
486                                         && win->history_pos && win->history_pos->next == NULL)
487                                         return TRUE;
488                                 if( (event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
489                                         && (win->history_pos == NULL || win->history_pos->prev == NULL) )
490                                         return TRUE;
491
492                                 GtkTextIter start, end;
493                                 /* Erase any text that was already typed */
494                                 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
495                                 gtk_text_buffer_get_iter_at_mark(buffer, &start, input_position);
496                                 gtk_text_buffer_get_end_iter(buffer, &end);
497
498                                 if(win->history_pos == NULL) {
499                                         gchar *current_input = gtk_text_buffer_get_text(buffer, &start, &end, FALSE);
500                                         win->history = g_list_prepend(win->history, current_input);
501                                         win->history_pos = win->history;
502                                 }
503
504                                 gtk_text_buffer_delete(buffer, &start, &end);
505
506                                 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
507                                 {
508                                         if(win->history_pos)
509                                                 win->history_pos = g_list_next(win->history_pos);
510                                         else
511                                                 win->history_pos = win->history;
512                                 }
513                                 else /* down */
514                                         win->history_pos = g_list_previous(win->history_pos);
515
516                                 /* Insert the history item into the window */
517                                 gtk_text_buffer_get_end_iter(buffer, &end);
518
519                                 g_signal_handler_block(buffer, win->insert_text_handler);
520                                 gtk_text_buffer_insert_with_tags_by_name(buffer, &end, win->history_pos->data, -1, "default", "input", NULL);
521                                 g_signal_handler_unblock(buffer, win->insert_text_handler);
522                                 return TRUE;
523                         }
524
525                         /* Move to beginning/end of input field */
526                         else if(event->keyval == GDK_Home) {
527                                 GtkTextIter input_iter;
528                                 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
529                                 gtk_text_buffer_get_iter_at_mark(buffer, &input_iter, input_position);
530                                 gtk_text_buffer_place_cursor(buffer, &input_iter);
531                                 return TRUE;
532                         }
533                         else if(event->keyval == GDK_End) {
534                                 GtkTextIter end_iter;
535                                 gtk_text_buffer_get_end_iter(buffer, &end_iter);
536                                 gtk_text_buffer_place_cursor(buffer, &end_iter);
537                                 return TRUE;
538                         }
539
540                         /* Handle the line terminators */
541                         else if(event->keyval == GDK_Return || event->keyval == GDK_KP_Enter
542                            || g_slist_find(win->current_extra_line_terminators, GUINT_TO_POINTER(event->keyval)))
543                         {
544                                 /* Remove signal handlers */
545                                 g_signal_handler_block(buffer, win->insert_text_handler);
546                                 g_signal_handler_block(win->widget, win->line_input_keypress_handler);
547
548                                 /* Insert a newline (even if line input was terminated with a different key */
549                                 GtkTextIter end;
550                                 gtk_text_buffer_get_end_iter(buffer, &end);
551                                 gtk_text_buffer_insert(buffer, &end, "\n", 1);
552                                 gtk_text_buffer_place_cursor(buffer, &end);
553
554                                 /* Make the window uneditable again and retrieve the text that was input */
555                                 gtk_text_view_set_editable(GTK_TEXT_VIEW(win->widget), FALSE);
556
557                                 int chars_written = finish_text_buffer_line_input(win, TRUE);
558                                 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
559                                 event_throw(glk, evtype_LineInput, win, chars_written, 0);
560                                 return TRUE;
561                         }
562                 }
563                         return FALSE;
564
565                 /* If this is a text grid window, then redirect the key press to the line input GtkEntry */
566                 case wintype_TextGrid:
567                 {
568                         if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up
569                                 || event->keyval == GDK_Down || event->keyval == GDK_KP_Down
570                                 || event->keyval == GDK_Left || event->keyval == GDK_KP_Left
571                                 || event->keyval == GDK_Right || event->keyval == GDK_KP_Right
572                                 || event->keyval == GDK_Tab || event->keyval == GDK_KP_Tab
573                                 || event->keyval == GDK_Page_Up || event->keyval == GDK_KP_Page_Up
574                                 || event->keyval == GDK_Page_Down || event->keyval == GDK_KP_Page_Down
575                                 || event->keyval == GDK_Home || event->keyval == GDK_KP_Home
576                                 || event->keyval == GDK_End || event->keyval == GDK_KP_End)
577                                 return FALSE; /* Don't redirect these keys */
578                         gtk_widget_grab_focus(win->input_entry);
579                         gtk_editable_set_position(GTK_EDITABLE(win->input_entry), -1);
580                         gboolean retval = TRUE;
581                         g_signal_emit_by_name(win->input_entry, "key-press-event", event, &retval);
582                         return retval; /* Block this key event if the entry handled it */
583                 }
584         }
585         return FALSE;
586 }
587
588 /* Internal function: finish handling a line input request, for both text grid and text buffer windows. */
589 static int
590 write_to_window_buffer(winid_t win, const gchar *inserted_text)
591 {
592         int copycount = 0;
593
594     /* Convert the string from UTF-8 to Latin-1 or Unicode */
595     if(win->input_request_type == INPUT_REQUEST_LINE)
596     {
597         gsize bytes_written;
598         gchar *latin1 = convert_utf8_to_latin1(inserted_text, &bytes_written);
599
600         if(latin1 == NULL)
601             return 0;
602
603         /* Place input in the echo stream */
604         if(win->echo_stream != NULL)
605             glk_put_string_stream(win->echo_stream, latin1);
606
607         /* Copy the string (bytes_written does not include the NULL at the end) */
608         copycount = MIN(win->line_input_buffer_max_len, bytes_written);
609         memcpy(win->line_input_buffer, latin1, copycount);
610         g_free(latin1);
611     }
612     else if(win->input_request_type == INPUT_REQUEST_LINE_UNICODE)
613     {
614         glong items_written;
615         gunichar *unicode = convert_utf8_to_ucs4(inserted_text, &items_written);
616
617         if(unicode == NULL)
618             return 0;
619
620         /* Place input in the echo stream */
621         if(win->echo_stream != NULL)
622             glk_put_string_stream_uni(win->echo_stream, unicode);
623
624         /* Copy the string (but not the NULL at the end) */
625         copycount = MIN(win->line_input_buffer_max_len, items_written);
626         memcpy(win->line_input_buffer_unicode, unicode, copycount * sizeof(gunichar));
627         g_free(unicode);
628     }
629     else
630         WARNING("Wrong input request type");
631
632     win->input_request_type = INPUT_REQUEST_NONE;
633         return copycount;
634 }
635
636 /* Internal function: Retrieves the input of a TextBuffer window and stores it in the window buffer.
637  * Returns the number of characters written, suitable for inclusion in a line input event. */
638 static int
639 finish_text_buffer_line_input(winid_t win, gboolean emit_signal)
640 {
641         VALID_WINDOW(win, return 0);
642         g_return_val_if_fail(win->type == wintype_TextBuffer, 0);
643
644         GtkTextIter start_iter, end_iter;
645
646         GtkTextBuffer *window_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
647         GtkTextMark *input_position = gtk_text_buffer_get_mark(window_buffer, "input_position");
648         gtk_text_buffer_get_iter_at_mark(window_buffer, &start_iter, input_position);
649         gtk_text_buffer_get_end_iter(window_buffer, &end_iter);
650
651         gchar *inserted_text = gtk_text_buffer_get_text(window_buffer, &start_iter, &end_iter, FALSE);
652
653         /* If echoing is turned off, remove the text from the window */
654         if(!win->echo_current_line_input)
655                 gtk_text_buffer_delete(window_buffer, &start_iter, &end_iter);
656
657         /* Don't include the newline in the input */
658         char *last_char = inserted_text + strlen(inserted_text) - 1;
659         if(*last_char == '\n')
660                 *last_char = '\0';
661
662         int chars_written = write_to_window_buffer(win, inserted_text);
663         if(emit_signal)
664         {
665                 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
666                 g_assert(glk);
667                 g_signal_emit_by_name(glk, "line-input", win->rock, inserted_text);
668         }
669
670         /* Add the text to the window input history */
671         if(win->history_pos != NULL)
672         {
673                 g_free(win->history->data);
674                 win->history = g_list_delete_link(win->history, win->history);
675         }
676         if(*inserted_text != 0)
677                 win->history = g_list_prepend(win->history, g_strdup(inserted_text));
678
679         win->history_pos = NULL;
680
681         g_free(inserted_text);
682
683         return chars_written;
684 }
685
686 /* Internal function: Retrieves the input of a TextGrid window and stores it in the window buffer.
687  * Returns the number of characters written, suitable for inclusion in a line input event. */
688 static int
689 finish_text_grid_line_input(winid_t win, gboolean emit_signal)
690 {
691         VALID_WINDOW(win, return 0);
692         g_return_val_if_fail(win->type == wintype_TextGrid, 0);
693
694         GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
695
696         gchar *text = g_strdup( gtk_entry_get_text(GTK_ENTRY(win->input_entry)) );
697         /* Move the focus back into the text view */
698         gtk_widget_grab_focus(win->widget);
699         /* Remove entry widget from text view */
700         /* Should be ok even though this is the widget's own signal handler */
701         gtk_container_remove( GTK_CONTAINER(win->widget), GTK_WIDGET(win->input_entry) );
702         win->input_entry = NULL;
703         /* Delete the child anchor */
704         GtkTextIter start, end;
705         gtk_text_buffer_get_iter_at_child_anchor(buffer, &start, win->input_anchor);
706         end = start;
707         gtk_text_iter_forward_char(&end); /* Point after the child anchor */
708         gtk_text_buffer_delete(buffer, &start, &end);
709         win->input_anchor = NULL;
710
711     gchar *spaces = g_strnfill(win->input_length - g_utf8_strlen(text, -1), ' ');
712     gchar *text_to_insert = g_strconcat(text, spaces, NULL);
713         g_free(spaces);
714     gtk_text_buffer_insert(buffer, &start, text_to_insert, -1);
715     g_free(text_to_insert);
716
717     int chars_written = write_to_window_buffer(win, text);
718     if(emit_signal)
719     {
720                 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
721                 g_assert(glk);
722                 g_signal_emit_by_name(glk, "line-input", win->rock, text);
723     }
724
725         /* Add the text to the window input history */
726         if(win->history_pos != NULL)
727         {
728                 g_free(win->history->data);
729                 win->history = g_list_delete_link(win->history, win->history);
730         }
731         if(*text != 0)
732                 win->history = g_list_prepend(win->history, g_strdup(text));
733         win->history_pos = NULL;
734
735         g_free(text);
736         return chars_written;
737 }
738
739 /* Internal function: Callback for signal insert-text on a text buffer window.
740 Runs after the default handler has already inserted the text. */
741 void
742 after_window_insert_text(GtkTextBuffer *textbuffer, GtkTextIter *location, gchar *text, gint len, winid_t win)
743 {
744         GtkTextBuffer *window_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
745
746         /* Set the history position to NULL and erase the text we were already editing */
747         if(win->history_pos != NULL)
748         {
749                 g_free(win->history->data);
750                 win->history = g_list_delete_link(win->history, win->history);
751                 win->history_pos = NULL;
752         }
753
754         /* Apply the 'input' style to the text that was entered */
755         GtkTextIter end_iter;
756         gtk_text_buffer_get_end_iter(window_buffer, &end_iter);
757         GtkTextIter input_iter;
758         GtkTextMark *input_position = gtk_text_buffer_get_mark(window_buffer, "input_position");
759         gtk_text_buffer_get_iter_at_mark(window_buffer, &input_iter, input_position);
760         gtk_text_buffer_apply_tag_by_name(window_buffer, "input", &input_iter, &end_iter);
761 }
762
763 /* Internal function: Callback for signal activate on the line input GtkEntry
764 in a text grid window. */
765 void
766 on_input_entry_activate(GtkEntry *input_entry, winid_t win)
767 {
768         g_signal_handler_block(win->widget, win->line_input_keypress_handler);
769
770         int chars_written = finish_text_grid_line_input(win, TRUE);
771         ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
772         event_throw(glk, evtype_LineInput, win, chars_written, 0);
773 }
774
775 /* Internal function: Callback for signal key-press-event on the line input
776 GtkEntry in a text grid window. */
777 gboolean
778 on_input_entry_key_press_event(GtkEntry *input_entry, GdkEventKey *event, winid_t win)
779 {
780         if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up
781                 || event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
782         {
783                 /* Prevent falling off the end of the history list */
784                 if( (event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
785                         && win->history_pos && win->history_pos->next == NULL)
786                         return TRUE;
787                 if( (event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
788                         && (win->history_pos == NULL || win->history_pos->prev == NULL) )
789                         return TRUE;
790
791                 if(win->history_pos == NULL)
792                 {
793                         const gchar *current_input = gtk_entry_get_text(input_entry);
794                         win->history = g_list_prepend(win->history, g_strdup(current_input));
795                         win->history_pos = win->history;
796                 }
797
798                 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
799                 {
800                         if(win->history_pos)
801                                 win->history_pos = g_list_next(win->history_pos);
802                         else
803                                 win->history_pos = win->history;
804                 }
805                 else /* down */
806                         win->history_pos = g_list_previous(win->history_pos);
807
808                 /* Insert the history item into the window */
809                 g_signal_handler_block(input_entry, win->line_input_entry_changed);
810                 gtk_entry_set_text(input_entry, win->history_pos->data);
811                 g_signal_handler_unblock(input_entry, win->line_input_entry_changed);
812                 return TRUE;
813         }
814         return FALSE;
815 }
816
817 void
818 on_input_entry_changed(GtkEditable *editable, winid_t win)
819 {
820         /* Set the history position to NULL and erase the text we were already editing */
821         if(win->history_pos != NULL)
822         {
823                 g_free(win->history->data);
824                 win->history = g_list_delete_link(win->history, win->history);
825                 win->history_pos = NULL;
826         }
827 }
828
829 glui32
830 keyval_to_glk_keycode(guint keyval, gboolean unicode)
831 {
832         glui32 keycode;
833         switch(keyval) {
834                 case GDK_Up:
835                 case GDK_KP_Up: return keycode_Up;
836                 case GDK_Down:
837                 case GDK_KP_Down: return keycode_Down;
838                 case GDK_Left:
839                 case GDK_KP_Left: return keycode_Left;
840                 case GDK_Right:
841                 case GDK_KP_Right: return keycode_Right;
842                 case GDK_Linefeed:
843                 case GDK_Return:
844                 case GDK_KP_Enter: return keycode_Return;
845                 case GDK_Delete:
846                 case GDK_BackSpace:
847                 case GDK_KP_Delete: return keycode_Delete;
848                 case GDK_Escape: return keycode_Escape;
849                 case GDK_Tab:
850                 case GDK_KP_Tab: return keycode_Tab;
851                 case GDK_Page_Up:
852                 case GDK_KP_Page_Up: return keycode_PageUp;
853                 case GDK_Page_Down:
854                 case GDK_KP_Page_Down: return keycode_PageDown;
855                 case GDK_Home:
856                 case GDK_KP_Home: return keycode_Home;
857                 case GDK_End:
858                 case GDK_KP_End: return keycode_End;
859                 case GDK_F1:
860                 case GDK_KP_F1: return keycode_Func1;
861                 case GDK_F2:
862                 case GDK_KP_F2: return keycode_Func2;
863                 case GDK_F3:
864                 case GDK_KP_F3: return keycode_Func3;
865                 case GDK_F4:
866                 case GDK_KP_F4: return keycode_Func4;
867                 case GDK_F5: return keycode_Func5;
868                 case GDK_F6: return keycode_Func6;
869                 case GDK_F7: return keycode_Func7;
870                 case GDK_F8: return keycode_Func8;
871                 case GDK_F9: return keycode_Func9;
872                 case GDK_F10: return keycode_Func10;
873                 case GDK_F11: return keycode_Func11;
874                 case GDK_F12: return keycode_Func12;
875                 default:
876                         keycode = gdk_keyval_to_unicode(keyval);
877                         /* If keycode is 0, then keyval was not recognized; also return
878                         unknown if Latin-1 input was requested and the character is not in
879                         Latin-1 */
880                         if(keycode == 0 || (!unicode && keycode > 255))
881                                 return keycode_Unknown;
882                         return keycode;
883         }
884 }
885
886 void
887 force_char_input_from_queue(winid_t win, event_t *event)
888 {
889         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
890         guint keyval = GPOINTER_TO_UINT(g_async_queue_pop(glk_data->char_input_queue));
891
892         glk_cancel_char_event(win);
893
894         gdk_threads_enter();
895         ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
896         g_assert(glk);
897         g_signal_emit_by_name(glk, "char-input", win->rock, keyval);
898         gdk_threads_leave();
899
900         event->type = evtype_CharInput;
901         event->win = win;
902         event->val1 = keyval_to_glk_keycode(keyval, win->input_request_type == INPUT_REQUEST_CHARACTER_UNICODE);
903         event->val2 = 0;
904 }
905
906 void
907 force_line_input_from_queue(winid_t win, event_t *event)
908 {
909         ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
910         const gchar *text = g_async_queue_pop(glk_data->line_input_queue);
911         glui32 chars_written = 0;
912
913         gdk_threads_enter();
914         if(win->type == wintype_TextBuffer)
915         {
916                 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
917                 GtkTextIter start, end;
918
919                 /* Remove signal handlers so the line input doesn't get picked up again */
920                 g_signal_handler_block(buffer, win->insert_text_handler);
921                 g_signal_handler_block(win->widget, win->line_input_keypress_handler);
922
923                 /* Erase any text that was already typed */
924                 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
925                 gtk_text_buffer_get_iter_at_mark(buffer, &start, input_position);
926                 gtk_text_buffer_get_end_iter(buffer, &end);
927                 gtk_text_buffer_delete(buffer, &start, &end);
928
929                 /* Make the window uneditable again */
930                 gtk_text_view_set_editable(GTK_TEXT_VIEW(win->widget), FALSE);
931
932                 /* Insert the forced input into the window */
933                 if(win->echo_current_line_input)
934                 {
935                         gtk_text_buffer_get_end_iter(buffer, &end);
936                         gchar *text_to_insert = g_strconcat(text, "\n", NULL);
937                         gtk_text_buffer_insert_with_tags_by_name(buffer, &end, text_to_insert, -1, "default", "input", NULL);
938                 }
939
940                 chars_written = finish_text_buffer_line_input(win, TRUE);
941         }
942         else if(win->type == wintype_TextGrid)
943         {
944                 /* Remove signal handlers so the line input doesn't get picked up again */
945                 g_signal_handler_block(win->widget, win->char_input_keypress_handler);
946
947                 /* Insert the forced input into the window */
948                 gtk_entry_set_text(GTK_ENTRY(win->input_entry), text);
949                 chars_written = finish_text_grid_line_input(win, TRUE);
950         }
951         gdk_threads_leave();
952
953         event->type = evtype_LineInput;
954         event->win = win;
955         event->val1 = chars_written;
956         event->val2 = 0;
957 }
958
959 /*** Internal function: cancels any pending input requests on the window and presents a warning if not INPUT_REQUEST_NONE ***/
960 void
961 cancel_old_input_request(winid_t win)
962 {
963         switch(win->input_request_type) {
964         case INPUT_REQUEST_NONE:
965                 break; /* All is well */
966         case INPUT_REQUEST_CHARACTER:
967         case INPUT_REQUEST_CHARACTER_UNICODE:
968                 glk_cancel_char_event(win);
969                 WARNING("Cancelling pending char event");
970                 break;
971         case INPUT_REQUEST_LINE:
972         case INPUT_REQUEST_LINE_UNICODE:
973                 glk_cancel_line_event(win, NULL);
974                 WARNING("Cancelling pending line event");
975                 break;
976         default:
977                 WARNING("Could not cancel pending input request: unknown input request");
978         }
979 }
980
981 /**
982  * glk_set_echo_line_event:
983  * @win: The window in which to change the echoing behavior.
984  * @val: Zero to turn off echoing, nonzero for normal echoing.
985  *
986  * Normally, after line input is completed or cancelled in a buffer window, the
987  * library ensures that the complete input line (or its latest state, after
988  * cancelling) is displayed at the end of the buffer, followed by a newline.
989  * This call allows you to suppress this behavior. If the @val argument is zero,
990  * all <emphasis>subsequent</emphasis> line input requests in the given window
991  * will leave the buffer unchanged after the input is completed or cancelled;
992  * the player's input will not be printed. If @val is nonzero, subsequent input
993  * requests will have the normal printing behavior.
994  *
995  * <note><para>
996  *   Note that this feature is unrelated to the window's echo stream.
997  * </para></note>
998  *
999  * If you turn off line input echoing, you can reproduce the standard input
1000  * behavior by following each line input event (or line input cancellation) by
1001  * printing the input line, in the Input style, followed by a newline in the
1002  * original style.
1003  *
1004  * The glk_set_echo_line_event() does not affect a pending line input request.
1005  * It also has no effect in non-buffer windows.
1006  * <note><para>
1007  *   In a grid window, the game can overwrite the input area at will, so there
1008  *   is no need for this distinction.
1009  * </para></note>
1010  *
1011  * Not all libraries support this feature. You can test for it with
1012  * %gestalt_LineInputEcho.
1013  */
1014 void
1015 glk_set_echo_line_event(winid_t win, glui32 val)
1016 {
1017         VALID_WINDOW(win, return);
1018
1019         if(win->type != wintype_TextBuffer)
1020                 return; /* Quietly do nothing */
1021
1022         win->echo_line_input = val? TRUE : FALSE;
1023 }
1024
1025 /* Internal function to convert from a Glk keycode to a GDK keyval. */
1026 static unsigned
1027 keycode_to_gdk_keyval(glui32 keycode)
1028 {
1029         switch (keycode)
1030         {
1031                 case keycode_Left:
1032                         return GDK_Left;
1033                 case keycode_Right:
1034                         return GDK_Right;
1035                 case keycode_Up:
1036                         return GDK_Up;
1037                 case keycode_Down:
1038                         return GDK_Down;
1039                 case keycode_Return:
1040                         return GDK_Return;
1041                 case keycode_Delete:
1042                         return GDK_Delete;
1043                 case keycode_Escape:
1044                         return GDK_Escape;
1045                 case keycode_Tab:
1046                         return GDK_Tab;
1047                 case keycode_PageUp:
1048                         return GDK_Page_Up;
1049                 case keycode_PageDown:
1050                         return GDK_Page_Down;
1051                 case keycode_Home:
1052                         return GDK_Home;
1053                 case keycode_End:
1054                         return GDK_End;
1055                 case keycode_Func1:
1056                         return GDK_F1;
1057                 case keycode_Func2:
1058                         return GDK_F2;
1059                 case keycode_Func3:
1060                         return GDK_F3;
1061                 case keycode_Func4:
1062                         return GDK_F4;
1063                 case keycode_Func5:
1064                         return GDK_F5;
1065                 case keycode_Func6:
1066                         return GDK_F6;
1067                 case keycode_Func7:
1068                         return GDK_F7;
1069                 case keycode_Func8:
1070                         return GDK_F8;
1071                 case keycode_Func9:
1072                         return GDK_F9;
1073                 case keycode_Func10:
1074                         return GDK_F10;
1075                 case keycode_Func11:
1076                         return GDK_F11;
1077                 case keycode_Func12:
1078                         return GDK_F12;
1079                 case keycode_Erase:
1080                         return GDK_BackSpace;
1081         }
1082         unsigned keyval = gdk_unicode_to_keyval(keycode);
1083         if(keyval < 0x01000000) /* magic number meaning illegal unicode point */
1084                 return keyval;
1085         return 0;
1086 }
1087
1088 /* Internal function to decide whether @keycode is a valid line terminator. */
1089 gboolean
1090 is_valid_line_terminator(glui32 keycode)
1091 {
1092         switch(keycode) {
1093                 case keycode_Escape:
1094                 case keycode_Func1:
1095                 case keycode_Func2:
1096                 case keycode_Func3:
1097                 case keycode_Func4:
1098                 case keycode_Func5:
1099                 case keycode_Func6:
1100                 case keycode_Func7:
1101                 case keycode_Func8:
1102                 case keycode_Func9:
1103                 case keycode_Func10:
1104                 case keycode_Func11:
1105                 case keycode_Func12:
1106                         return TRUE;
1107         }
1108         return FALSE;
1109 }
1110
1111 /**
1112  * glk_set_terminators_line_event:
1113  * @win: The window for which to set the line input terminator keys.
1114  * @keycodes: An array of <code>keycode_</code> constants, of length @count.
1115  * @count: The array length of @keycodes.
1116  *
1117  * It is possible to request that other keystrokes complete line input as well.
1118  * (This allows a game to intercept function keys or other special keys during
1119  * line input.) To do this, call glk_set_terminators_line_event(), and pass an
1120  * array of @count keycodes. These must all be special keycodes (see <link
1121  * linkend="chimara-Character-Input">Character Input</link>). Do not include
1122  * regular printable characters in the array, nor %keycode_Return (which
1123  * represents the default <keycap>enter</keycap> key and will always be
1124  * recognized). To return to the default behavior, pass a %NULL or empty array.
1125  *
1126  * The glk_set_terminators_line_event() affects <emphasis>subsequent</emphasis>
1127  * line input requests in the given window. It does not affect a pending line
1128  * input request.
1129  *
1130  * <note><para>
1131  *   This distinction makes life easier for interpreters that set up UI
1132  *   callbacks only at the start of input.
1133  * </para></note>
1134  *
1135  * A library may not support this feature; if it does, it may not support all
1136  * special keys as terminators. (Some keystrokes are reserved for OS or
1137  * interpreter control.) You can test for this with %gestalt_LineTerminators and
1138  * %gestalt_LineTerminatorKey.
1139  */
1140 void
1141 glk_set_terminators_line_event(winid_t win, glui32 *keycodes, glui32 count)
1142 {
1143         VALID_WINDOW(win, return);
1144
1145         g_slist_free(win->extra_line_terminators);
1146         win->extra_line_terminators = NULL;
1147
1148         if(keycodes == NULL || count == 0)
1149                 return;
1150
1151         int i;
1152         for(i = 0; i < count; i++)
1153         {
1154                 unsigned key = keycode_to_gdk_keyval(keycodes[i]);
1155                 if(is_valid_line_terminator(keycodes[i]))
1156                         win->extra_line_terminators = g_slist_prepend(win->extra_line_terminators, GUINT_TO_POINTER(key));
1157                 else
1158                    WARNING_S("Ignoring invalid line terminator", gdk_keyval_name(key));
1159         }
1160 }