]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - unix/gtkwin.c
Switch to using gtk_window_parse_geometry in GTK 2.
[PuTTY.git] / unix / gtkwin.c
1 /*
2  * gtkwin.c: the main code that runs a PuTTY terminal emulator and
3  * backend in a GTK window.
4  */
5
6 #define _GNU_SOURCE
7
8 #include <string.h>
9 #include <assert.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <signal.h>
13 #include <stdio.h>
14 #include <time.h>
15 #include <errno.h>
16 #include <locale.h>
17 #include <fcntl.h>
18 #include <unistd.h>
19 #include <sys/types.h>
20 #include <sys/wait.h>
21 #include <gtk/gtk.h>
22 #if !GTK_CHECK_VERSION(3,0,0)
23 #include <gdk/gdkkeysyms.h>
24 #endif
25 #ifndef NOT_X_WINDOWS
26 #include <gdk/gdkx.h>
27 #include <X11/Xlib.h>
28 #include <X11/Xutil.h>
29 #include <X11/Xatom.h>
30 #endif
31
32 #if GTK_CHECK_VERSION(2,0,0)
33 #include <gtk/gtkimmodule.h>
34 #endif
35
36 #define PUTTY_DO_GLOBALS               /* actually _define_ globals */
37
38 #define MAY_REFER_TO_GTK_IN_HEADERS
39
40 #include "putty.h"
41 #include "terminal.h"
42 #include "gtkcompat.h"
43 #include "gtkfont.h"
44
45 #define CAT2(x,y) x ## y
46 #define CAT(x,y) CAT2(x,y)
47 #define ASSERT(x) enum {CAT(assertion_,__LINE__) = 1 / (x)}
48
49 #if GTK_CHECK_VERSION(2,0,0)
50 ASSERT(sizeof(long) <= sizeof(gsize));
51 #define LONG_TO_GPOINTER(l) GSIZE_TO_POINTER(l)
52 #define GPOINTER_TO_LONG(p) GPOINTER_TO_SIZE(p)
53 #else /* Gtk 1.2 */
54 ASSERT(sizeof(long) <= sizeof(gpointer));
55 #define LONG_TO_GPOINTER(l) ((gpointer)(long)(l))
56 #define GPOINTER_TO_LONG(p) ((long)(p))
57 #endif
58
59 /* Colours come in two flavours: configurable, and xterm-extended. */
60 #define NEXTCOLOURS 240 /* 216 colour-cube plus 24 shades of grey */
61 #define NALLCOLOURS (NCFGCOLOURS + NEXTCOLOURS)
62
63 GdkAtom compound_text_atom, utf8_string_atom;
64
65 extern char **pty_argv;        /* declared in pty.c */
66 extern int use_pty_argv;
67
68 /*
69  * Timers are global across all sessions (even if we were handling
70  * multiple sessions, which we aren't), so the current timer ID is
71  * a global variable.
72  */
73 static guint timer_id = 0;
74
75 struct gui_data {
76     GtkWidget *window, *area, *sbar;
77     GtkBox *hbox;
78     GtkAdjustment *sbar_adjust;
79     GtkWidget *menu, *specialsmenu, *specialsitem1, *specialsitem2,
80         *restartitem;
81     GtkWidget *sessionsmenu;
82     GdkPixmap *pixmap;
83 #if GTK_CHECK_VERSION(2,0,0)
84     GtkIMContext *imc;
85 #endif
86     unifont *fonts[4];                 /* normal, bold, wide, widebold */
87 #if GTK_CHECK_VERSION(2,0,0)
88     const char *geometry;
89 #else
90     int xpos, ypos, gotpos, gravity;
91 #endif
92     GdkCursor *rawcursor, *textcursor, *blankcursor, *waitcursor, *currcursor;
93     GdkColor cols[NALLCOLOURS];
94     GdkColormap *colmap;
95     wchar_t *pastein_data;
96     int direct_to_font;
97     int pastein_data_len;
98     char *pasteout_data, *pasteout_data_ctext, *pasteout_data_utf8;
99     int pasteout_data_len, pasteout_data_ctext_len, pasteout_data_utf8_len;
100     int font_width, font_height;
101     int width, height;
102     int ignore_sbar;
103     int mouseptr_visible;
104     int busy_status;
105     guint toplevel_callback_idle_id;
106     int idle_fn_scheduled, quit_fn_scheduled;
107     int alt_keycode;
108     int alt_digits;
109     char *wintitle;
110     char *icontitle;
111     int master_fd, master_func_id;
112     void *ldisc;
113     Backend *back;
114     void *backhandle;
115     Terminal *term;
116     void *logctx;
117     int exited;
118     struct unicode_data ucsdata;
119     Conf *conf;
120     void *eventlogstuff;
121     char *progname, **gtkargvstart;
122     int ngtkargs;
123     guint32 input_event_time; /* Timestamp of the most recent input event. */
124     int reconfiguring;
125     /* Cached things out of conf that we refer to a lot */
126     int bold_style;
127     int window_border;
128     int cursor_type;
129 };
130
131 static void cache_conf_values(struct gui_data *inst)
132 {
133     inst->bold_style = conf_get_int(inst->conf, CONF_bold_style);
134     inst->window_border = conf_get_int(inst->conf, CONF_window_border);
135     inst->cursor_type = conf_get_int(inst->conf, CONF_cursor_type);
136 }
137
138 struct draw_ctx {
139     GdkGC *gc;
140     struct gui_data *inst;
141 };
142
143 static int send_raw_mouse;
144
145 static const char *app_name = "pterm";
146
147 static void start_backend(struct gui_data *inst);
148 static void exit_callback(void *vinst);
149
150 char *x_get_default(const char *key)
151 {
152 #ifndef NOT_X_WINDOWS
153     return XGetDefault(GDK_DISPLAY(), app_name, key);
154 #else
155     return NULL;
156 #endif
157 }
158
159 void connection_fatal(void *frontend, const char *p, ...)
160 {
161     struct gui_data *inst = (struct gui_data *)frontend;
162
163     va_list ap;
164     char *msg;
165     va_start(ap, p);
166     msg = dupvprintf(p, ap);
167     va_end(ap);
168     fatal_message_box(inst->window, msg);
169     sfree(msg);
170
171     queue_toplevel_callback(exit_callback, inst);
172 }
173
174 /*
175  * Default settings that are specific to pterm.
176  */
177 FontSpec *platform_default_fontspec(const char *name)
178 {
179     if (!strcmp(name, "Font"))
180         return fontspec_new("server:fixed");
181     else
182         return fontspec_new("");
183 }
184
185 Filename *platform_default_filename(const char *name)
186 {
187     if (!strcmp(name, "LogFileName"))
188         return filename_from_str("putty.log");
189     else
190         return filename_from_str("");
191 }
192
193 char *platform_default_s(const char *name)
194 {
195     if (!strcmp(name, "SerialLine"))
196         return dupstr("/dev/ttyS0");
197     return NULL;
198 }
199
200 int platform_default_i(const char *name, int def)
201 {
202     if (!strcmp(name, "CloseOnExit"))
203         return 2;  /* maps to FORCE_ON after painful rearrangement :-( */
204     if (!strcmp(name, "WinNameAlways"))
205         return 0;  /* X natively supports icon titles, so use 'em by default */
206     return def;
207 }
208
209 /* Dummy routine, only required in plink. */
210 void frontend_echoedit_update(void *frontend, int echo, int edit)
211 {
212 }
213
214 char *get_ttymode(void *frontend, const char *mode)
215 {
216     struct gui_data *inst = (struct gui_data *)frontend;
217     return term_get_ttymode(inst->term, mode);
218 }
219
220 int from_backend(void *frontend, int is_stderr, const char *data, int len)
221 {
222     struct gui_data *inst = (struct gui_data *)frontend;
223     return term_data(inst->term, is_stderr, data, len);
224 }
225
226 int from_backend_untrusted(void *frontend, const char *data, int len)
227 {
228     struct gui_data *inst = (struct gui_data *)frontend;
229     return term_data_untrusted(inst->term, data, len);
230 }
231
232 int from_backend_eof(void *frontend)
233 {
234     return TRUE;   /* do respond to incoming EOF with outgoing */
235 }
236
237 int get_userpass_input(prompts_t *p, const unsigned char *in, int inlen)
238 {
239     struct gui_data *inst = (struct gui_data *)p->frontend;
240     int ret;
241     ret = cmdline_get_passwd_input(p, in, inlen);
242     if (ret == -1)
243         ret = term_get_userpass_input(inst->term, p, in, inlen);
244     return ret;
245 }
246
247 void logevent(void *frontend, const char *string)
248 {
249     struct gui_data *inst = (struct gui_data *)frontend;
250
251     log_eventlog(inst->logctx, string);
252
253     logevent_dlg(inst->eventlogstuff, string);
254 }
255
256 int font_dimension(void *frontend, int which)/* 0 for width, 1 for height */
257 {
258     struct gui_data *inst = (struct gui_data *)frontend;
259
260     if (which)
261         return inst->font_height;
262     else
263         return inst->font_width;
264 }
265
266 /*
267  * Translate a raw mouse button designation (LEFT, MIDDLE, RIGHT)
268  * into a cooked one (SELECT, EXTEND, PASTE).
269  * 
270  * In Unix, this is not configurable; the X button arrangement is
271  * rock-solid across all applications, everyone has a three-button
272  * mouse or a means of faking it, and there is no need to switch
273  * buttons around at all.
274  */
275 static Mouse_Button translate_button(Mouse_Button button)
276 {
277     /* struct gui_data *inst = (struct gui_data *)frontend; */
278
279     if (button == MBT_LEFT)
280         return MBT_SELECT;
281     if (button == MBT_MIDDLE)
282         return MBT_PASTE;
283     if (button == MBT_RIGHT)
284         return MBT_EXTEND;
285     return 0;                          /* shouldn't happen */
286 }
287
288 /*
289  * Return the top-level GtkWindow associated with a particular
290  * front end instance.
291  */
292 void *get_window(void *frontend)
293 {
294     struct gui_data *inst = (struct gui_data *)frontend;
295     return inst->window;
296 }
297
298 /*
299  * Minimise or restore the window in response to a server-side
300  * request.
301  */
302 void set_iconic(void *frontend, int iconic)
303 {
304     /*
305      * GTK 1.2 doesn't know how to do this.
306      */
307 #if GTK_CHECK_VERSION(2,0,0)
308     struct gui_data *inst = (struct gui_data *)frontend;
309     if (iconic)
310         gtk_window_iconify(GTK_WINDOW(inst->window));
311     else
312         gtk_window_deiconify(GTK_WINDOW(inst->window));
313 #endif
314 }
315
316 /*
317  * Move the window in response to a server-side request.
318  */
319 void move_window(void *frontend, int x, int y)
320 {
321     struct gui_data *inst = (struct gui_data *)frontend;
322     /*
323      * I assume that when the GTK version of this call is available
324      * we should use it. Not sure how it differs from the GDK one,
325      * though.
326      */
327 #if GTK_CHECK_VERSION(2,0,0)
328     gtk_window_move(GTK_WINDOW(inst->window), x, y);
329 #else
330     gdk_window_move(gtk_widget_get_window(inst->window), x, y);
331 #endif
332 }
333
334 /*
335  * Move the window to the top or bottom of the z-order in response
336  * to a server-side request.
337  */
338 void set_zorder(void *frontend, int top)
339 {
340     struct gui_data *inst = (struct gui_data *)frontend;
341     if (top)
342         gdk_window_raise(gtk_widget_get_window(inst->window));
343     else
344         gdk_window_lower(gtk_widget_get_window(inst->window));
345 }
346
347 /*
348  * Refresh the window in response to a server-side request.
349  */
350 void refresh_window(void *frontend)
351 {
352     struct gui_data *inst = (struct gui_data *)frontend;
353     term_invalidate(inst->term);
354 }
355
356 /*
357  * Maximise or restore the window in response to a server-side
358  * request.
359  */
360 void set_zoomed(void *frontend, int zoomed)
361 {
362     /*
363      * GTK 1.2 doesn't know how to do this.
364      */
365 #if GTK_CHECK_VERSION(2,0,0)
366     struct gui_data *inst = (struct gui_data *)frontend;
367     if (zoomed)
368         gtk_window_maximize(GTK_WINDOW(inst->window));
369     else
370         gtk_window_unmaximize(GTK_WINDOW(inst->window));
371 #endif
372 }
373
374 /*
375  * Report whether the window is iconic, for terminal reports.
376  */
377 int is_iconic(void *frontend)
378 {
379     struct gui_data *inst = (struct gui_data *)frontend;
380     return !gdk_window_is_viewable(gtk_widget_get_window(inst->window));
381 }
382
383 /*
384  * Report the window's position, for terminal reports.
385  */
386 void get_window_pos(void *frontend, int *x, int *y)
387 {
388     struct gui_data *inst = (struct gui_data *)frontend;
389     /*
390      * I assume that when the GTK version of this call is available
391      * we should use it. Not sure how it differs from the GDK one,
392      * though.
393      */
394 #if GTK_CHECK_VERSION(2,0,0)
395     gtk_window_get_position(GTK_WINDOW(inst->window), x, y);
396 #else
397     gdk_window_get_position(gtk_widget_get_window(inst->window), x, y);
398 #endif
399 }
400
401 /*
402  * Report the window's pixel size, for terminal reports.
403  */
404 void get_window_pixels(void *frontend, int *x, int *y)
405 {
406     struct gui_data *inst = (struct gui_data *)frontend;
407     /*
408      * I assume that when the GTK version of this call is available
409      * we should use it. Not sure how it differs from the GDK one,
410      * though.
411      */
412 #if GTK_CHECK_VERSION(2,0,0)
413     gtk_window_get_size(GTK_WINDOW(inst->window), x, y);
414 #else
415     gdk_window_get_size(gtk_widget_get_window(inst->window), x, y);
416 #endif
417 }
418
419 /*
420  * Return the window or icon title.
421  */
422 char *get_window_title(void *frontend, int icon)
423 {
424     struct gui_data *inst = (struct gui_data *)frontend;
425     return icon ? inst->icontitle : inst->wintitle;
426 }
427
428 gint delete_window(GtkWidget *widget, GdkEvent *event, gpointer data)
429 {
430     struct gui_data *inst = (struct gui_data *)data;
431     if (!inst->exited && conf_get_int(inst->conf, CONF_warn_on_close)) {
432         if (!reallyclose(inst))
433             return TRUE;
434     }
435     return FALSE;
436 }
437
438 static void update_mouseptr(struct gui_data *inst)
439 {
440     switch (inst->busy_status) {
441       case BUSY_NOT:
442         if (!inst->mouseptr_visible) {
443             gdk_window_set_cursor(gtk_widget_get_window(inst->area),
444                                   inst->blankcursor);
445         } else if (send_raw_mouse) {
446             gdk_window_set_cursor(gtk_widget_get_window(inst->area),
447                                   inst->rawcursor);
448         } else {
449             gdk_window_set_cursor(gtk_widget_get_window(inst->area),
450                                   inst->textcursor);
451         }
452         break;
453       case BUSY_WAITING:    /* XXX can we do better? */
454       case BUSY_CPU:
455         /* We always display these cursors. */
456         gdk_window_set_cursor(gtk_widget_get_window(inst->area),
457                               inst->waitcursor);
458         break;
459       default:
460         assert(0);
461     }
462 }
463
464 static void show_mouseptr(struct gui_data *inst, int show)
465 {
466     if (!conf_get_int(inst->conf, CONF_hide_mouseptr))
467         show = 1;
468     inst->mouseptr_visible = show;
469     update_mouseptr(inst);
470 }
471
472 void draw_backing_rect(struct gui_data *inst)
473 {
474     GdkGC *gc = gdk_gc_new(gtk_widget_get_window(inst->area));
475     gdk_gc_set_foreground(gc, &inst->cols[258]);    /* default background */
476     gdk_draw_rectangle(inst->pixmap, gc, 1, 0, 0,
477                        inst->width * inst->font_width + 2*inst->window_border,
478                        inst->height * inst->font_height + 2*inst->window_border);
479     gdk_gc_unref(gc);
480 }
481
482 gint configure_area(GtkWidget *widget, GdkEventConfigure *event, gpointer data)
483 {
484     struct gui_data *inst = (struct gui_data *)data;
485     int w, h, need_size = 0;
486
487     /*
488      * See if the terminal size has changed, in which case we must
489      * let the terminal know.
490      */
491     w = (event->width - 2*inst->window_border) / inst->font_width;
492     h = (event->height - 2*inst->window_border) / inst->font_height;
493     if (w != inst->width || h != inst->height) {
494         inst->width = w;
495         inst->height = h;
496         conf_set_int(inst->conf, CONF_width, inst->width);
497         conf_set_int(inst->conf, CONF_height, inst->height);
498         need_size = 1;
499     }
500
501     if (inst->pixmap) {
502         gdk_pixmap_unref(inst->pixmap);
503         inst->pixmap = NULL;
504     }
505
506     inst->pixmap = gdk_pixmap_new(gtk_widget_get_window(widget),
507                                   (w * inst->font_width + 2*inst->window_border),
508                                   (h * inst->font_height + 2*inst->window_border), -1);
509
510     draw_backing_rect(inst);
511
512     if (need_size && inst->term) {
513         term_size(inst->term, h, w, conf_get_int(inst->conf, CONF_savelines));
514     }
515
516     if (inst->term)
517         term_invalidate(inst->term);
518
519 #if GTK_CHECK_VERSION(2,0,0)
520     gtk_im_context_set_client_window(inst->imc, gtk_widget_get_window(widget));
521 #endif
522
523     return TRUE;
524 }
525
526 gint expose_area(GtkWidget *widget, GdkEventExpose *event, gpointer data)
527 {
528     struct gui_data *inst = (struct gui_data *)data;
529
530     /*
531      * Pass the exposed rectangle to terminal.c, which will call us
532      * back to do the actual painting.
533      */
534     if (inst->pixmap) {
535         gdk_draw_pixmap(gtk_widget_get_window(widget),
536                         (gtk_widget_get_style(widget)->fg_gc
537                          [gtk_widget_get_state(widget)]),
538                         inst->pixmap,
539                         event->area.x, event->area.y,
540                         event->area.x, event->area.y,
541                         event->area.width, event->area.height);
542     }
543     return TRUE;
544 }
545
546 #define KEY_PRESSED(k) \
547     (inst->keystate[(k) / 32] & (1 << ((k) % 32)))
548
549 gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data)
550 {
551     struct gui_data *inst = (struct gui_data *)data;
552     char output[256];
553     wchar_t ucsoutput[2];
554     int ucsval, start, end, special, output_charset, use_ucsoutput;
555     int nethack_mode, app_keypad_mode;
556
557     /* Remember the timestamp. */
558     inst->input_event_time = event->time;
559
560     /* By default, nothing is generated. */
561     end = start = 0;
562     special = use_ucsoutput = FALSE;
563     output_charset = CS_ISO8859_1;
564
565     /*
566      * If Alt is being released after typing an Alt+numberpad
567      * sequence, we should generate the code that was typed.
568      * 
569      * Note that we only do this if more than one key was actually
570      * pressed - I don't think Alt+NumPad4 should be ^D or that
571      * Alt+NumPad3 should be ^C, for example. There's no serious
572      * inconvenience in having to type a zero before a single-digit
573      * character code.
574      */
575     if (event->type == GDK_KEY_RELEASE) {
576         if ((event->keyval == GDK_KEY_Meta_L ||
577              event->keyval == GDK_KEY_Meta_R ||
578              event->keyval == GDK_KEY_Alt_L ||
579              event->keyval == GDK_KEY_Alt_R) &&
580             inst->alt_keycode >= 0 && inst->alt_digits > 1) {
581 #ifdef KEY_DEBUGGING
582             printf("Alt key up, keycode = %d\n", inst->alt_keycode);
583 #endif
584             /*
585              * FIXME: we might usefully try to do something clever here
586              * about interpreting the generated key code in a way that's
587              * appropriate to the line code page.
588              */
589             output[0] = inst->alt_keycode;
590             end = 1;
591             goto done;
592         }
593 #if GTK_CHECK_VERSION(2,0,0)
594         if (gtk_im_context_filter_keypress(inst->imc, event))
595             return TRUE;
596 #endif
597     }
598
599     if (event->type == GDK_KEY_PRESS) {
600 #ifdef KEY_DEBUGGING
601         {
602             int i;
603             printf("keypress: keyval = %04x, state = %08x; string =",
604                    event->keyval, event->state);
605             for (i = 0; event->string[i]; i++)
606                 printf(" %02x", (unsigned char) event->string[i]);
607             printf("\n");
608         }
609 #endif
610
611         /*
612          * NYI: Compose key (!!! requires Unicode faff before even trying)
613          */
614
615         /*
616          * If Alt has just been pressed, we start potentially
617          * accumulating an Alt+numberpad code. We do this by
618          * setting alt_keycode to -1 (nothing yet but plausible).
619          */
620         if ((event->keyval == GDK_KEY_Meta_L ||
621              event->keyval == GDK_KEY_Meta_R ||
622              event->keyval == GDK_KEY_Alt_L ||
623              event->keyval == GDK_KEY_Alt_R)) {
624             inst->alt_keycode = -1;
625             inst->alt_digits = 0;
626             goto done;                 /* this generates nothing else */
627         }
628
629         /*
630          * If we're seeing a numberpad key press with Mod1 down,
631          * consider adding it to alt_keycode if that's sensible.
632          * Anything _else_ with Mod1 down cancels any possibility
633          * of an ALT keycode: we set alt_keycode to -2.
634          */
635         if ((event->state & GDK_MOD1_MASK) && inst->alt_keycode != -2) {
636             int digit = -1;
637             switch (event->keyval) {
638               case GDK_KEY_KP_0: case GDK_KEY_KP_Insert: digit = 0; break;
639               case GDK_KEY_KP_1: case GDK_KEY_KP_End: digit = 1; break;
640               case GDK_KEY_KP_2: case GDK_KEY_KP_Down: digit = 2; break;
641               case GDK_KEY_KP_3: case GDK_KEY_KP_Page_Down: digit = 3; break;
642               case GDK_KEY_KP_4: case GDK_KEY_KP_Left: digit = 4; break;
643               case GDK_KEY_KP_5: case GDK_KEY_KP_Begin: digit = 5; break;
644               case GDK_KEY_KP_6: case GDK_KEY_KP_Right: digit = 6; break;
645               case GDK_KEY_KP_7: case GDK_KEY_KP_Home: digit = 7; break;
646               case GDK_KEY_KP_8: case GDK_KEY_KP_Up: digit = 8; break;
647               case GDK_KEY_KP_9: case GDK_KEY_KP_Page_Up: digit = 9; break;
648             }
649             if (digit < 0)
650                 inst->alt_keycode = -2;   /* it's invalid */
651             else {
652 #ifdef KEY_DEBUGGING
653                 printf("Adding digit %d to keycode %d", digit,
654                        inst->alt_keycode);
655 #endif
656                 if (inst->alt_keycode == -1)
657                     inst->alt_keycode = digit;   /* one-digit code */
658                 else
659                     inst->alt_keycode = inst->alt_keycode * 10 + digit;
660                 inst->alt_digits++;
661 #ifdef KEY_DEBUGGING
662                 printf(" gives new code %d\n", inst->alt_keycode);
663 #endif
664                 /* Having used this digit, we now do nothing more with it. */
665                 goto done;
666             }
667         }
668
669         /*
670          * Shift-PgUp and Shift-PgDn don't even generate keystrokes
671          * at all.
672          */
673         if (event->keyval == GDK_KEY_Page_Up &&
674             (event->state & GDK_SHIFT_MASK)) {
675             term_scroll(inst->term, 0, -inst->height/2);
676             return TRUE;
677         }
678         if (event->keyval == GDK_KEY_Page_Up &&
679             (event->state & GDK_CONTROL_MASK)) {
680             term_scroll(inst->term, 0, -1);
681             return TRUE;
682         }
683         if (event->keyval == GDK_KEY_Page_Down &&
684             (event->state & GDK_SHIFT_MASK)) {
685             term_scroll(inst->term, 0, +inst->height/2);
686             return TRUE;
687         }
688         if (event->keyval == GDK_KEY_Page_Down &&
689             (event->state & GDK_CONTROL_MASK)) {
690             term_scroll(inst->term, 0, +1);
691             return TRUE;
692         }
693
694         /*
695          * Neither does Shift-Ins.
696          */
697         if (event->keyval == GDK_KEY_Insert &&
698             (event->state & GDK_SHIFT_MASK)) {
699             request_paste(inst);
700             return TRUE;
701         }
702
703         special = FALSE;
704         use_ucsoutput = FALSE;
705
706         nethack_mode = conf_get_int(inst->conf, CONF_nethack_keypad);
707         app_keypad_mode = (inst->term->app_keypad_keys &&
708                            !conf_get_int(inst->conf, CONF_no_applic_k));
709
710         /* ALT+things gives leading Escape. */
711         output[0] = '\033';
712 #if !GTK_CHECK_VERSION(2,0,0)
713         /*
714          * In vanilla X, and hence also GDK 1.2, the string received
715          * as part of a keyboard event is assumed to be in
716          * ISO-8859-1. (Seems woefully shortsighted in i18n terms,
717          * but it's true: see the man page for XLookupString(3) for
718          * confirmation.)
719          */
720         output_charset = CS_ISO8859_1;
721         strncpy(output+1, event->string, lenof(output)-1);
722 #else
723         /*
724          * Most things can now be passed to
725          * gtk_im_context_filter_keypress without breaking anything
726          * below this point. An exception is the numeric keypad if
727          * we're in Nethack or application mode: the IM will eat
728          * numeric keypad presses if Num Lock is on, but we don't want
729          * it to.
730          */
731         if (app_keypad_mode &&
732             (event->keyval == GDK_KEY_Num_Lock ||
733              event->keyval == GDK_KEY_KP_Divide ||
734              event->keyval == GDK_KEY_KP_Multiply ||
735              event->keyval == GDK_KEY_KP_Subtract ||
736              event->keyval == GDK_KEY_KP_Add ||
737              event->keyval == GDK_KEY_KP_Enter ||
738              event->keyval == GDK_KEY_KP_0 ||
739              event->keyval == GDK_KEY_KP_Insert ||
740              event->keyval == GDK_KEY_KP_1 ||
741              event->keyval == GDK_KEY_KP_End ||
742              event->keyval == GDK_KEY_KP_2 ||
743              event->keyval == GDK_KEY_KP_Down ||
744              event->keyval == GDK_KEY_KP_3 ||
745              event->keyval == GDK_KEY_KP_Page_Down ||
746              event->keyval == GDK_KEY_KP_4 ||
747              event->keyval == GDK_KEY_KP_Left ||
748              event->keyval == GDK_KEY_KP_5 ||
749              event->keyval == GDK_KEY_KP_Begin ||
750              event->keyval == GDK_KEY_KP_6 ||
751              event->keyval == GDK_KEY_KP_Right ||
752              event->keyval == GDK_KEY_KP_7 ||
753              event->keyval == GDK_KEY_KP_Home ||
754              event->keyval == GDK_KEY_KP_8 ||
755              event->keyval == GDK_KEY_KP_Up ||
756              event->keyval == GDK_KEY_KP_9 ||
757              event->keyval == GDK_KEY_KP_Page_Up ||
758              event->keyval == GDK_KEY_KP_Decimal ||
759              event->keyval == GDK_KEY_KP_Delete)) {
760             /* app keypad; do nothing */
761         } else if (nethack_mode &&
762                    (event->keyval == GDK_KEY_KP_1 ||
763                     event->keyval == GDK_KEY_KP_End ||
764                     event->keyval == GDK_KEY_KP_2 ||
765                     event->keyval == GDK_KEY_KP_Down ||
766                     event->keyval == GDK_KEY_KP_3 ||
767                     event->keyval == GDK_KEY_KP_Page_Down ||
768                     event->keyval == GDK_KEY_KP_4 ||
769                     event->keyval == GDK_KEY_KP_Left ||
770                     event->keyval == GDK_KEY_KP_5 ||
771                     event->keyval == GDK_KEY_KP_Begin ||
772                     event->keyval == GDK_KEY_KP_6 ||
773                     event->keyval == GDK_KEY_KP_Right ||
774                     event->keyval == GDK_KEY_KP_7 ||
775                     event->keyval == GDK_KEY_KP_Home ||
776                     event->keyval == GDK_KEY_KP_8 ||
777                     event->keyval == GDK_KEY_KP_Up ||
778                     event->keyval == GDK_KEY_KP_9 ||
779                     event->keyval == GDK_KEY_KP_Page_Up)) {
780             /* nethack mode; do nothing */
781         } else {
782             if (gtk_im_context_filter_keypress(inst->imc, event))
783                 return TRUE;
784         }
785
786         /*
787          * GDK 2.0 arranges to have done some translation for us: in
788          * GDK 2.0, event->string is encoded in the current locale.
789          *
790          * So we use the standard C library function mbstowcs() to
791          * convert from the current locale into Unicode; from there
792          * we can convert to whatever PuTTY is currently working in.
793          * (In fact I convert straight back to UTF-8 from
794          * wide-character Unicode, for the sake of simplicity: that
795          * way we can still use exactly the same code to manipulate
796          * the string, such as prefixing ESC.)
797          */
798         output_charset = CS_UTF8;
799         {
800             wchar_t widedata[32];
801             const wchar_t *wp;
802             int wlen;
803             int ulen;
804
805             wlen = mb_to_wc(DEFAULT_CODEPAGE, 0,
806                             event->string, strlen(event->string),
807                             widedata, lenof(widedata)-1);
808
809             wp = widedata;
810             ulen = charset_from_unicode(&wp, &wlen, output+1, lenof(output)-2,
811                                         CS_UTF8, NULL, NULL, 0);
812             output[1+ulen] = '\0';
813         }
814 #endif
815
816         if (!output[1] &&
817             (ucsval = keysym_to_unicode(event->keyval)) >= 0) {
818             ucsoutput[0] = '\033';
819             ucsoutput[1] = ucsval;
820             use_ucsoutput = TRUE;
821             end = 2;
822         } else {
823             output[lenof(output)-1] = '\0';
824             end = strlen(output);
825         }
826         if (event->state & GDK_MOD1_MASK) {
827             start = 0;
828             if (end == 1) end = 0;
829         } else
830             start = 1;
831
832         /* Control-` is the same as Control-\ (unless gtk has a better idea) */
833         if (!output[1] && event->keyval == '`' &&
834             (event->state & GDK_CONTROL_MASK)) {
835             output[1] = '\x1C';
836             use_ucsoutput = FALSE;
837             end = 2;
838         }
839
840         /* Control-Break sends a Break special to the backend */
841         if (event->keyval == GDK_KEY_Break &&
842             (event->state & GDK_CONTROL_MASK)) {
843             if (inst->back)
844                 inst->back->special(inst->backhandle, TS_BRK);
845             return TRUE;
846         }
847
848         /* We handle Return ourselves, because it needs to be flagged as
849          * special to ldisc. */
850         if (event->keyval == GDK_KEY_Return) {
851             output[1] = '\015';
852             use_ucsoutput = FALSE;
853             end = 2;
854             special = TRUE;
855         }
856
857         /* Control-2, Control-Space and Control-@ are NUL */
858         if (!output[1] &&
859             (event->keyval == ' ' || event->keyval == '2' ||
860              event->keyval == '@') &&
861             (event->state & (GDK_SHIFT_MASK |
862                              GDK_CONTROL_MASK)) == GDK_CONTROL_MASK) {
863             output[1] = '\0';
864             use_ucsoutput = FALSE;
865             end = 2;
866         }
867
868         /* Control-Shift-Space is 160 (ISO8859 nonbreaking space) */
869         if (!output[1] && event->keyval == ' ' &&
870             (event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) ==
871             (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) {
872             output[1] = '\240';
873             output_charset = CS_ISO8859_1;
874             use_ucsoutput = FALSE;
875             end = 2;
876         }
877
878         /* We don't let GTK tell us what Backspace is! We know better. */
879         if (event->keyval == GDK_KEY_BackSpace &&
880             !(event->state & GDK_SHIFT_MASK)) {
881             output[1] = conf_get_int(inst->conf, CONF_bksp_is_delete) ?
882                 '\x7F' : '\x08';
883             use_ucsoutput = FALSE;
884             end = 2;
885             special = TRUE;
886         }
887         /* For Shift Backspace, do opposite of what is configured. */
888         if (event->keyval == GDK_KEY_BackSpace &&
889             (event->state & GDK_SHIFT_MASK)) {
890             output[1] = conf_get_int(inst->conf, CONF_bksp_is_delete) ?
891                 '\x08' : '\x7F';
892             use_ucsoutput = FALSE;
893             end = 2;
894             special = TRUE;
895         }
896
897         /* Shift-Tab is ESC [ Z */
898         if (event->keyval == GDK_KEY_ISO_Left_Tab ||
899             (event->keyval == GDK_KEY_Tab &&
900              (event->state & GDK_SHIFT_MASK))) {
901             end = 1 + sprintf(output+1, "\033[Z");
902             use_ucsoutput = FALSE;
903         }
904         /* And normal Tab is Tab, if the keymap hasn't already told us.
905          * (Curiously, at least one version of the MacOS 10.5 X server
906          * doesn't translate Tab for us. */
907         if (event->keyval == GDK_KEY_Tab && end <= 1) {
908             output[1] = '\t';
909             end = 2;
910         }
911
912         /*
913          * NetHack keypad mode.
914          */
915         if (nethack_mode) {
916             const char *keys = NULL;
917             switch (event->keyval) {
918               case GDK_KEY_KP_1: case GDK_KEY_KP_End:
919                 keys = "bB\002"; break;
920               case GDK_KEY_KP_2: case GDK_KEY_KP_Down:
921                 keys = "jJ\012"; break;
922               case GDK_KEY_KP_3: case GDK_KEY_KP_Page_Down:
923                 keys = "nN\016"; break;
924               case GDK_KEY_KP_4: case GDK_KEY_KP_Left:
925                 keys = "hH\010"; break;
926               case GDK_KEY_KP_5: case GDK_KEY_KP_Begin:
927                 keys = "..."; break;
928               case GDK_KEY_KP_6: case GDK_KEY_KP_Right:
929                 keys = "lL\014"; break;
930               case GDK_KEY_KP_7: case GDK_KEY_KP_Home:
931                 keys = "yY\031"; break;
932               case GDK_KEY_KP_8: case GDK_KEY_KP_Up:
933                 keys = "kK\013"; break;
934               case GDK_KEY_KP_9: case GDK_KEY_KP_Page_Up:
935                 keys = "uU\025"; break;
936             }
937             if (keys) {
938                 end = 2;
939                 if (event->state & GDK_CONTROL_MASK)
940                     output[1] = keys[2];
941                 else if (event->state & GDK_SHIFT_MASK)
942                     output[1] = keys[1];
943                 else
944                     output[1] = keys[0];
945                 use_ucsoutput = FALSE;
946                 goto done;
947             }
948         }
949
950         /*
951          * Application keypad mode.
952          */
953         if (app_keypad_mode) {
954             int xkey = 0;
955             switch (event->keyval) {
956               case GDK_KEY_Num_Lock: xkey = 'P'; break;
957               case GDK_KEY_KP_Divide: xkey = 'Q'; break;
958               case GDK_KEY_KP_Multiply: xkey = 'R'; break;
959               case GDK_KEY_KP_Subtract: xkey = 'S'; break;
960                 /*
961                  * Keypad + is tricky. It covers a space that would
962                  * be taken up on the VT100 by _two_ keys; so we
963                  * let Shift select between the two. Worse still,
964                  * in xterm function key mode we change which two...
965                  */
966               case GDK_KEY_KP_Add:
967                 if (conf_get_int(inst->conf, CONF_funky_type) == FUNKY_XTERM) {
968                     if (event->state & GDK_SHIFT_MASK)
969                         xkey = 'l';
970                     else
971                         xkey = 'k';
972                 } else if (event->state & GDK_SHIFT_MASK)
973                         xkey = 'm';
974                 else
975                     xkey = 'l';
976                 break;
977               case GDK_KEY_KP_Enter: xkey = 'M'; break;
978               case GDK_KEY_KP_0: case GDK_KEY_KP_Insert: xkey = 'p'; break;
979               case GDK_KEY_KP_1: case GDK_KEY_KP_End: xkey = 'q'; break;
980               case GDK_KEY_KP_2: case GDK_KEY_KP_Down: xkey = 'r'; break;
981               case GDK_KEY_KP_3: case GDK_KEY_KP_Page_Down: xkey = 's'; break;
982               case GDK_KEY_KP_4: case GDK_KEY_KP_Left: xkey = 't'; break;
983               case GDK_KEY_KP_5: case GDK_KEY_KP_Begin: xkey = 'u'; break;
984               case GDK_KEY_KP_6: case GDK_KEY_KP_Right: xkey = 'v'; break;
985               case GDK_KEY_KP_7: case GDK_KEY_KP_Home: xkey = 'w'; break;
986               case GDK_KEY_KP_8: case GDK_KEY_KP_Up: xkey = 'x'; break;
987               case GDK_KEY_KP_9: case GDK_KEY_KP_Page_Up: xkey = 'y'; break;
988               case GDK_KEY_KP_Decimal: case GDK_KEY_KP_Delete:
989                 xkey = 'n'; break;
990             }
991             if (xkey) {
992                 if (inst->term->vt52_mode) {
993                     if (xkey >= 'P' && xkey <= 'S')
994                         end = 1 + sprintf(output+1, "\033%c", xkey);
995                     else
996                         end = 1 + sprintf(output+1, "\033?%c", xkey);
997                 } else
998                     end = 1 + sprintf(output+1, "\033O%c", xkey);
999                 use_ucsoutput = FALSE;
1000                 goto done;
1001             }
1002         }
1003
1004         /*
1005          * Next, all the keys that do tilde codes. (ESC '[' nn '~',
1006          * for integer decimal nn.)
1007          *
1008          * We also deal with the weird ones here. Linux VCs replace F1
1009          * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
1010          * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
1011          * respectively.
1012          */
1013         {
1014             int code = 0;
1015             int funky_type = conf_get_int(inst->conf, CONF_funky_type);
1016             switch (event->keyval) {
1017               case GDK_KEY_F1:
1018                 code = (event->state & GDK_SHIFT_MASK ? 23 : 11);
1019                 break;
1020               case GDK_KEY_F2:
1021                 code = (event->state & GDK_SHIFT_MASK ? 24 : 12);
1022                 break;
1023               case GDK_KEY_F3:
1024                 code = (event->state & GDK_SHIFT_MASK ? 25 : 13);
1025                 break;
1026               case GDK_KEY_F4:
1027                 code = (event->state & GDK_SHIFT_MASK ? 26 : 14);
1028                 break;
1029               case GDK_KEY_F5:
1030                 code = (event->state & GDK_SHIFT_MASK ? 28 : 15);
1031                 break;
1032               case GDK_KEY_F6:
1033                 code = (event->state & GDK_SHIFT_MASK ? 29 : 17);
1034                 break;
1035               case GDK_KEY_F7:
1036                 code = (event->state & GDK_SHIFT_MASK ? 31 : 18);
1037                 break;
1038               case GDK_KEY_F8:
1039                 code = (event->state & GDK_SHIFT_MASK ? 32 : 19);
1040                 break;
1041               case GDK_KEY_F9:
1042                 code = (event->state & GDK_SHIFT_MASK ? 33 : 20);
1043                 break;
1044               case GDK_KEY_F10:
1045                 code = (event->state & GDK_SHIFT_MASK ? 34 : 21);
1046                 break;
1047               case GDK_KEY_F11:
1048                 code = 23;
1049                 break;
1050               case GDK_KEY_F12:
1051                 code = 24;
1052                 break;
1053               case GDK_KEY_F13:
1054                 code = 25;
1055                 break;
1056               case GDK_KEY_F14:
1057                 code = 26;
1058                 break;
1059               case GDK_KEY_F15:
1060                 code = 28;
1061                 break;
1062               case GDK_KEY_F16:
1063                 code = 29;
1064                 break;
1065               case GDK_KEY_F17:
1066                 code = 31;
1067                 break;
1068               case GDK_KEY_F18:
1069                 code = 32;
1070                 break;
1071               case GDK_KEY_F19:
1072                 code = 33;
1073                 break;
1074               case GDK_KEY_F20:
1075                 code = 34;
1076                 break;
1077             }
1078             if (!(event->state & GDK_CONTROL_MASK)) switch (event->keyval) {
1079               case GDK_KEY_Home: case GDK_KEY_KP_Home:
1080                 code = 1;
1081                 break;
1082               case GDK_KEY_Insert: case GDK_KEY_KP_Insert:
1083                 code = 2;
1084                 break;
1085               case GDK_KEY_Delete: case GDK_KEY_KP_Delete:
1086                 code = 3;
1087                 break;
1088               case GDK_KEY_End: case GDK_KEY_KP_End:
1089                 code = 4;
1090                 break;
1091               case GDK_KEY_Page_Up: case GDK_KEY_KP_Page_Up:
1092                 code = 5;
1093                 break;
1094               case GDK_KEY_Page_Down: case GDK_KEY_KP_Page_Down:
1095                 code = 6;
1096                 break;
1097             }
1098             /* Reorder edit keys to physical order */
1099             if (funky_type == FUNKY_VT400 && code <= 6)
1100                 code = "\0\2\1\4\5\3\6"[code];
1101
1102             if (inst->term->vt52_mode && code > 0 && code <= 6) {
1103                 end = 1 + sprintf(output+1, "\x1B%c", " HLMEIG"[code]);
1104                 use_ucsoutput = FALSE;
1105                 goto done;
1106             }
1107
1108             if (funky_type == FUNKY_SCO &&     /* SCO function keys */
1109                 code >= 11 && code <= 34) {
1110                 char codes[] = "MNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@[\\]^_`{";
1111                 int index = 0;
1112                 switch (event->keyval) {
1113                   case GDK_KEY_F1: index = 0; break;
1114                   case GDK_KEY_F2: index = 1; break;
1115                   case GDK_KEY_F3: index = 2; break;
1116                   case GDK_KEY_F4: index = 3; break;
1117                   case GDK_KEY_F5: index = 4; break;
1118                   case GDK_KEY_F6: index = 5; break;
1119                   case GDK_KEY_F7: index = 6; break;
1120                   case GDK_KEY_F8: index = 7; break;
1121                   case GDK_KEY_F9: index = 8; break;
1122                   case GDK_KEY_F10: index = 9; break;
1123                   case GDK_KEY_F11: index = 10; break;
1124                   case GDK_KEY_F12: index = 11; break;
1125                 }
1126                 if (event->state & GDK_SHIFT_MASK) index += 12;
1127                 if (event->state & GDK_CONTROL_MASK) index += 24;
1128                 end = 1 + sprintf(output+1, "\x1B[%c", codes[index]);
1129                 use_ucsoutput = FALSE;
1130                 goto done;
1131             }
1132             if (funky_type == FUNKY_SCO &&     /* SCO small keypad */
1133                 code >= 1 && code <= 6) {
1134                 char codes[] = "HL.FIG";
1135                 if (code == 3) {
1136                     output[1] = '\x7F';
1137                     end = 2;
1138                 } else {
1139                     end = 1 + sprintf(output+1, "\x1B[%c", codes[code-1]);
1140                 }
1141                 use_ucsoutput = FALSE;
1142                 goto done;
1143             }
1144             if ((inst->term->vt52_mode || funky_type == FUNKY_VT100P) &&
1145                 code >= 11 && code <= 24) {
1146                 int offt = 0;
1147                 if (code > 15)
1148                     offt++;
1149                 if (code > 21)
1150                     offt++;
1151                 if (inst->term->vt52_mode)
1152                     end = 1 + sprintf(output+1,
1153                                       "\x1B%c", code + 'P' - 11 - offt);
1154                 else
1155                     end = 1 + sprintf(output+1,
1156                                       "\x1BO%c", code + 'P' - 11 - offt);
1157                 use_ucsoutput = FALSE;
1158                 goto done;
1159             }
1160             if (funky_type == FUNKY_LINUX && code >= 11 && code <= 15) {
1161                 end = 1 + sprintf(output+1, "\x1B[[%c", code + 'A' - 11);
1162                 use_ucsoutput = FALSE;
1163                 goto done;
1164             }
1165             if (funky_type == FUNKY_XTERM && code >= 11 && code <= 14) {
1166                 if (inst->term->vt52_mode)
1167                     end = 1 + sprintf(output+1, "\x1B%c", code + 'P' - 11);
1168                 else
1169                     end = 1 + sprintf(output+1, "\x1BO%c", code + 'P' - 11);
1170                 use_ucsoutput = FALSE;
1171                 goto done;
1172             }
1173             if ((code == 1 || code == 4) &&
1174                 conf_get_int(inst->conf, CONF_rxvt_homeend)) {
1175                 end = 1 + sprintf(output+1, code == 1 ? "\x1B[H" : "\x1BOw");
1176                 use_ucsoutput = FALSE;
1177                 goto done;
1178             }
1179             if (code) {
1180                 end = 1 + sprintf(output+1, "\x1B[%d~", code);
1181                 use_ucsoutput = FALSE;
1182                 goto done;
1183             }
1184         }
1185
1186         /*
1187          * Cursor keys. (This includes the numberpad cursor keys,
1188          * if we haven't already done them due to app keypad mode.)
1189          * 
1190          * Here we also process un-numlocked un-appkeypadded KP5,
1191          * which sends ESC [ G.
1192          */
1193         {
1194             int xkey = 0;
1195             switch (event->keyval) {
1196               case GDK_KEY_Up: case GDK_KEY_KP_Up: xkey = 'A'; break;
1197               case GDK_KEY_Down: case GDK_KEY_KP_Down: xkey = 'B'; break;
1198               case GDK_KEY_Right: case GDK_KEY_KP_Right: xkey = 'C'; break;
1199               case GDK_KEY_Left: case GDK_KEY_KP_Left: xkey = 'D'; break;
1200               case GDK_KEY_Begin: case GDK_KEY_KP_Begin: xkey = 'G'; break;
1201             }
1202             if (xkey) {
1203                 end = 1 + format_arrow_key(output+1, inst->term, xkey,
1204                                            event->state & GDK_CONTROL_MASK);
1205                 use_ucsoutput = FALSE;
1206                 goto done;
1207             }
1208         }
1209         goto done;
1210     }
1211
1212     done:
1213
1214     if (end-start > 0) {
1215 #ifdef KEY_DEBUGGING
1216         int i;
1217         printf("generating sequence:");
1218         for (i = start; i < end; i++)
1219             printf(" %02x", (unsigned char) output[i]);
1220         printf("\n");
1221 #endif
1222
1223         if (special) {
1224             /*
1225              * For special control characters, the character set
1226              * should never matter.
1227              */
1228             output[end] = '\0';        /* NUL-terminate */
1229             if (inst->ldisc)
1230                 ldisc_send(inst->ldisc, output+start, -2, 1);
1231         } else if (!inst->direct_to_font) {
1232             if (!use_ucsoutput) {
1233                 if (inst->ldisc)
1234                     lpage_send(inst->ldisc, output_charset, output+start,
1235                                end-start, 1);
1236             } else {
1237                 /*
1238                  * We generated our own Unicode key data from the
1239                  * keysym, so use that instead.
1240                  */
1241                 if (inst->ldisc)
1242                     luni_send(inst->ldisc, ucsoutput+start, end-start, 1);
1243             }
1244         } else {
1245             /*
1246              * In direct-to-font mode, we just send the string
1247              * exactly as we received it.
1248              */
1249             if (inst->ldisc)
1250                 ldisc_send(inst->ldisc, output+start, end-start, 1);
1251         }
1252
1253         show_mouseptr(inst, 0);
1254         term_seen_key_event(inst->term);
1255     }
1256
1257     return TRUE;
1258 }
1259
1260 #if GTK_CHECK_VERSION(2,0,0)
1261 void input_method_commit_event(GtkIMContext *imc, gchar *str, gpointer data)
1262 {
1263     struct gui_data *inst = (struct gui_data *)data;
1264     if (inst->ldisc)
1265         lpage_send(inst->ldisc, CS_UTF8, str, strlen(str), 1);
1266     show_mouseptr(inst, 0);
1267     term_seen_key_event(inst->term);
1268 }
1269 #endif
1270
1271 gboolean button_internal(struct gui_data *inst, guint32 timestamp,
1272                          GdkEventType type, guint ebutton, guint state,
1273                          gdouble ex, gdouble ey)
1274 {
1275     int shift, ctrl, alt, x, y, button, act, raw_mouse_mode;
1276
1277     /* Remember the timestamp. */
1278     inst->input_event_time = timestamp;
1279
1280     show_mouseptr(inst, 1);
1281
1282     shift = state & GDK_SHIFT_MASK;
1283     ctrl = state & GDK_CONTROL_MASK;
1284     alt = state & GDK_MOD1_MASK;
1285
1286     raw_mouse_mode =
1287         send_raw_mouse && !(shift && conf_get_int(inst->conf,
1288                                                   CONF_mouse_override));
1289
1290     if (!raw_mouse_mode) {
1291         if (ebutton == 4 && type == GDK_BUTTON_PRESS) {
1292             term_scroll(inst->term, 0, -5);
1293             return TRUE;
1294         }
1295         if (ebutton == 5 && type == GDK_BUTTON_PRESS) {
1296             term_scroll(inst->term, 0, +5);
1297             return TRUE;
1298         }
1299     }
1300
1301     if (ebutton == 3 && ctrl) {
1302         gtk_menu_popup(GTK_MENU(inst->menu), NULL, NULL, NULL, NULL,
1303                        ebutton, timestamp);
1304         return TRUE;
1305     }
1306
1307     if (ebutton == 1)
1308         button = MBT_LEFT;
1309     else if (ebutton == 2)
1310         button = MBT_MIDDLE;
1311     else if (ebutton == 3)
1312         button = MBT_RIGHT;
1313     else if (ebutton == 4)
1314         button = MBT_WHEEL_UP;
1315     else if (ebutton == 5)
1316         button = MBT_WHEEL_DOWN;
1317     else
1318         return FALSE;                  /* don't even know what button! */
1319
1320     switch (type) {
1321       case GDK_BUTTON_PRESS: act = MA_CLICK; break;
1322       case GDK_BUTTON_RELEASE: act = MA_RELEASE; break;
1323       case GDK_2BUTTON_PRESS: act = MA_2CLK; break;
1324       case GDK_3BUTTON_PRESS: act = MA_3CLK; break;
1325       default: return FALSE;           /* don't know this event type */
1326     }
1327
1328     if (raw_mouse_mode && act != MA_CLICK && act != MA_RELEASE)
1329         return TRUE;                   /* we ignore these in raw mouse mode */
1330
1331     x = (ex - inst->window_border) / inst->font_width;
1332     y = (ey - inst->window_border) / inst->font_height;
1333
1334     term_mouse(inst->term, button, translate_button(button), act,
1335                x, y, shift, ctrl, alt);
1336
1337     return TRUE;
1338 }
1339
1340 gboolean button_event(GtkWidget *widget, GdkEventButton *event, gpointer data)
1341 {
1342     struct gui_data *inst = (struct gui_data *)data;
1343     return button_internal(inst, event->time, event->type, event->button,
1344                            event->state, event->x, event->y);
1345 }
1346
1347 #if GTK_CHECK_VERSION(2,0,0)
1348 /*
1349  * In GTK 2, mouse wheel events have become a new type of event.
1350  * This handler translates them back into button-4 and button-5
1351  * presses so that I don't have to change my old code too much :-)
1352  */
1353 gboolean scroll_event(GtkWidget *widget, GdkEventScroll *event, gpointer data)
1354 {
1355     struct gui_data *inst = (struct gui_data *)data;
1356     guint button;
1357
1358     if (event->direction == GDK_SCROLL_UP)
1359         button = 4;
1360     else if (event->direction == GDK_SCROLL_DOWN)
1361         button = 5;
1362     else
1363         return FALSE;
1364
1365     return button_internal(inst, event->time, GDK_BUTTON_PRESS,
1366                            button, event->state, event->x, event->y);
1367 }
1368 #endif
1369
1370 gint motion_event(GtkWidget *widget, GdkEventMotion *event, gpointer data)
1371 {
1372     struct gui_data *inst = (struct gui_data *)data;
1373     int shift, ctrl, alt, x, y, button;
1374
1375     /* Remember the timestamp. */
1376     inst->input_event_time = event->time;
1377
1378     show_mouseptr(inst, 1);
1379
1380     shift = event->state & GDK_SHIFT_MASK;
1381     ctrl = event->state & GDK_CONTROL_MASK;
1382     alt = event->state & GDK_MOD1_MASK;
1383     if (event->state & GDK_BUTTON1_MASK)
1384         button = MBT_LEFT;
1385     else if (event->state & GDK_BUTTON2_MASK)
1386         button = MBT_MIDDLE;
1387     else if (event->state & GDK_BUTTON3_MASK)
1388         button = MBT_RIGHT;
1389     else
1390         return FALSE;                  /* don't even know what button! */
1391
1392     x = (event->x - inst->window_border) / inst->font_width;
1393     y = (event->y - inst->window_border) / inst->font_height;
1394
1395     term_mouse(inst->term, button, translate_button(button), MA_DRAG,
1396                x, y, shift, ctrl, alt);
1397
1398     return TRUE;
1399 }
1400
1401 void frontend_keypress(void *handle)
1402 {
1403     struct gui_data *inst = (struct gui_data *)handle;
1404
1405     /*
1406      * If our child process has exited but not closed, terminate on
1407      * any keypress.
1408      */
1409     if (inst->exited)
1410         cleanup_exit(0);
1411 }
1412
1413 static void exit_callback(void *vinst)
1414 {
1415     struct gui_data *inst = (struct gui_data *)vinst;
1416     int exitcode, close_on_exit;
1417
1418     if (!inst->exited &&
1419         (exitcode = inst->back->exitcode(inst->backhandle)) >= 0) {
1420         inst->exited = TRUE;
1421         close_on_exit = conf_get_int(inst->conf, CONF_close_on_exit);
1422         if (close_on_exit == FORCE_ON ||
1423             (close_on_exit == AUTO && exitcode == 0))
1424             gtk_main_quit();           /* just go */
1425         if (inst->ldisc) {
1426             ldisc_free(inst->ldisc);
1427             inst->ldisc = NULL;
1428         }
1429         inst->back->free(inst->backhandle);
1430         inst->backhandle = NULL;
1431         inst->back = NULL;
1432         term_provide_resize_fn(inst->term, NULL, NULL);
1433         update_specials_menu(inst);
1434         gtk_widget_set_sensitive(inst->restartitem, TRUE);
1435     }
1436 }
1437
1438 void notify_remote_exit(void *frontend)
1439 {
1440     struct gui_data *inst = (struct gui_data *)frontend;
1441
1442     queue_toplevel_callback(exit_callback, inst);
1443 }
1444
1445 static void notify_toplevel_callback(void *frontend);
1446
1447 static gint quit_toplevel_callback_func(gpointer data)
1448 {
1449     struct gui_data *inst = (struct gui_data *)data;
1450
1451     notify_toplevel_callback(inst);
1452
1453     inst->quit_fn_scheduled = FALSE;
1454
1455     return 0;
1456 }
1457
1458 static gint idle_toplevel_callback_func(gpointer data)
1459 {
1460     struct gui_data *inst = (struct gui_data *)data;
1461
1462     if (gtk_main_level() > 1) {
1463         /*
1464          * We don't run the callbacks if we're in the middle of a
1465          * subsidiary gtk_main. Instead, ask for a callback when we
1466          * get back out of the subsidiary main loop (if we haven't
1467          * already arranged one), so we can reschedule ourself then.
1468          */
1469         if (!inst->quit_fn_scheduled) {
1470             gtk_quit_add(2, quit_toplevel_callback_func, inst);
1471             inst->quit_fn_scheduled = TRUE;
1472         }
1473         /*
1474          * And unschedule this idle function, since we've now done
1475          * everything we can until the innermost gtk_main has quit and
1476          * can reschedule us with a chance of actually taking action.
1477          */
1478         if (inst->idle_fn_scheduled) { /* double-check, just in case */
1479             gtk_idle_remove(inst->toplevel_callback_idle_id);
1480             inst->idle_fn_scheduled = FALSE;
1481         }
1482     } else {
1483         run_toplevel_callbacks();
1484     }
1485
1486     /*
1487      * If we've emptied our toplevel callback queue, unschedule
1488      * ourself. Otherwise, leave ourselves pending so we'll be called
1489      * again to deal with more callbacks after another round of the
1490      * event loop.
1491      */
1492     if (!toplevel_callback_pending() && inst->idle_fn_scheduled) {
1493         gtk_idle_remove(inst->toplevel_callback_idle_id);
1494         inst->idle_fn_scheduled = FALSE;
1495     }
1496
1497     return TRUE;
1498 }
1499
1500 static void notify_toplevel_callback(void *frontend)
1501 {
1502     struct gui_data *inst = (struct gui_data *)frontend;
1503
1504     if (!inst->idle_fn_scheduled) {
1505         inst->toplevel_callback_idle_id =
1506             gtk_idle_add(idle_toplevel_callback_func, inst);
1507         inst->idle_fn_scheduled = TRUE;
1508     }
1509 }
1510
1511 static gint timer_trigger(gpointer data)
1512 {
1513     unsigned long now = GPOINTER_TO_LONG(data);
1514     unsigned long next, then;
1515     long ticks;
1516
1517     /*
1518      * Destroy the timer we got here on.
1519      */
1520     if (timer_id) {
1521         gtk_timeout_remove(timer_id);
1522         timer_id = 0;
1523     }
1524
1525     /*
1526      * run_timers() may cause a call to timer_change_notify, in which
1527      * case a new timer will already have been set up and left in
1528      * timer_id. If it hasn't, and run_timers reports that some timing
1529      * still needs to be done, we do it ourselves.
1530      */
1531     if (run_timers(now, &next) && !timer_id) {
1532         then = now;
1533         now = GETTICKCOUNT();
1534         if (now - then > next - then)
1535             ticks = 0;
1536         else
1537             ticks = next - now;
1538         timer_id = gtk_timeout_add(ticks, timer_trigger,
1539                                    LONG_TO_GPOINTER(next));
1540     }
1541
1542     /*
1543      * Returning FALSE means 'don't call this timer again', which
1544      * _should_ be redundant given that we removed it above, but just
1545      * in case, return FALSE anyway.
1546      */
1547     return FALSE;
1548 }
1549
1550 void timer_change_notify(unsigned long next)
1551 {
1552     long ticks;
1553
1554     if (timer_id)
1555         gtk_timeout_remove(timer_id);
1556
1557     ticks = next - GETTICKCOUNT();
1558     if (ticks <= 0)
1559         ticks = 1;                     /* just in case */
1560
1561     timer_id = gtk_timeout_add(ticks, timer_trigger,
1562                                LONG_TO_GPOINTER(next));
1563 }
1564
1565 void fd_input_func(gpointer data, gint sourcefd, GdkInputCondition condition)
1566 {
1567     /*
1568      * We must process exceptional notifications before ordinary
1569      * readability ones, or we may go straight past the urgent
1570      * marker.
1571      */
1572     if (condition & GDK_INPUT_EXCEPTION)
1573         select_result(sourcefd, 4);
1574     if (condition & GDK_INPUT_READ)
1575         select_result(sourcefd, 1);
1576     if (condition & GDK_INPUT_WRITE)
1577         select_result(sourcefd, 2);
1578 }
1579
1580 void destroy(GtkWidget *widget, gpointer data)
1581 {
1582     gtk_main_quit();
1583 }
1584
1585 gint focus_event(GtkWidget *widget, GdkEventFocus *event, gpointer data)
1586 {
1587     struct gui_data *inst = (struct gui_data *)data;
1588     term_set_focus(inst->term, event->in);
1589     term_update(inst->term);
1590     show_mouseptr(inst, 1);
1591     return FALSE;
1592 }
1593
1594 void set_busy_status(void *frontend, int status)
1595 {
1596     struct gui_data *inst = (struct gui_data *)frontend;
1597     inst->busy_status = status;
1598     update_mouseptr(inst);
1599 }
1600
1601 /*
1602  * set or clear the "raw mouse message" mode
1603  */
1604 void set_raw_mouse_mode(void *frontend, int activate)
1605 {
1606     struct gui_data *inst = (struct gui_data *)frontend;
1607     activate = activate && !conf_get_int(inst->conf, CONF_no_mouse_rep);
1608     send_raw_mouse = activate;
1609     update_mouseptr(inst);
1610 }
1611
1612 void request_resize(void *frontend, int w, int h)
1613 {
1614     struct gui_data *inst = (struct gui_data *)frontend;
1615     int large_x, large_y;
1616     int offset_x, offset_y;
1617     int area_x, area_y;
1618     GtkRequisition inner, outer;
1619
1620     /*
1621      * This is a heinous hack dreamed up by the gnome-terminal
1622      * people to get around a limitation in gtk. The problem is
1623      * that in order to set the size correctly we really need to be
1624      * calling gtk_window_resize - but that needs to know the size
1625      * of the _whole window_, not the drawing area. So what we do
1626      * is to set an artificially huge size request on the drawing
1627      * area, recompute the resulting size request on the window,
1628      * and look at the difference between the two. That gives us
1629      * the x and y offsets we need to translate drawing area size
1630      * into window size for real, and then we call
1631      * gtk_window_resize.
1632      */
1633
1634     /*
1635      * We start by retrieving the current size of the whole window.
1636      * Adding a bit to _that_ will give us a value we can use as a
1637      * bogus size request which guarantees to be bigger than the
1638      * current size of the drawing area.
1639      */
1640     get_window_pixels(inst, &large_x, &large_y);
1641     large_x += 32;
1642     large_y += 32;
1643
1644 #if GTK_CHECK_VERSION(2,0,0)
1645     gtk_widget_set_size_request(inst->area, large_x, large_y);
1646 #else
1647     gtk_widget_set_usize(inst->area, large_x, large_y);
1648 #endif
1649     gtk_widget_size_request(inst->area, &inner);
1650     gtk_widget_size_request(inst->window, &outer);
1651
1652     offset_x = outer.width - inner.width;
1653     offset_y = outer.height - inner.height;
1654
1655     area_x = inst->font_width * w + 2*inst->window_border;
1656     area_y = inst->font_height * h + 2*inst->window_border;
1657
1658     /*
1659      * Now we must set the size request on the drawing area back to
1660      * something sensible before we commit the real resize. Best
1661      * way to do this, I think, is to set it to what the size is
1662      * really going to end up being.
1663      */
1664 #if GTK_CHECK_VERSION(2,0,0)
1665     gtk_widget_set_size_request(inst->area, area_x, area_y);
1666     gtk_window_resize(GTK_WINDOW(inst->window),
1667                       area_x + offset_x, area_y + offset_y);
1668 #else
1669     gtk_widget_set_usize(inst->area, area_x, area_y);
1670     gtk_drawing_area_size(GTK_DRAWING_AREA(inst->area), area_x, area_y);
1671     /*
1672      * I can no longer remember what this call to
1673      * gtk_container_dequeue_resize_handler is for. It was
1674      * introduced in r3092 with no comment, and the commit log
1675      * message was uninformative. I'm _guessing_ its purpose is to
1676      * prevent gratuitous resize processing on the window given
1677      * that we're about to resize it anyway, but I have no idea
1678      * why that's so incredibly vital.
1679      * 
1680      * I've tried removing the call, and nothing seems to go
1681      * wrong. I've backtracked to r3092 and tried removing the
1682      * call there, and still nothing goes wrong. So I'm going to
1683      * adopt the working hypothesis that it's superfluous; I won't
1684      * actually remove it from the GTK 1.2 code, but I won't
1685      * attempt to replicate its functionality in the GTK 2 code
1686      * above.
1687      */
1688     gtk_container_dequeue_resize_handler(GTK_CONTAINER(inst->window));
1689     gdk_window_resize(gtk_widget_get_window(inst->window),
1690                       area_x + offset_x, area_y + offset_y);
1691 #endif
1692 }
1693
1694 static void real_palette_set(struct gui_data *inst, int n, int r, int g, int b)
1695 {
1696     gboolean success[1];
1697
1698     inst->cols[n].red = r * 0x0101;
1699     inst->cols[n].green = g * 0x0101;
1700     inst->cols[n].blue = b * 0x0101;
1701
1702     gdk_colormap_free_colors(inst->colmap, inst->cols + n, 1);
1703     gdk_colormap_alloc_colors(inst->colmap, inst->cols + n, 1,
1704                               FALSE, TRUE, success);
1705     if (!success[0])
1706         g_error("%s: couldn't allocate colour %d (#%02x%02x%02x)\n", appname,
1707                 n, r, g, b);
1708 }
1709
1710 void set_window_background(struct gui_data *inst)
1711 {
1712     if (inst->area && gtk_widget_get_window(inst->area))
1713         gdk_window_set_background(gtk_widget_get_window(inst->area),
1714                                   &inst->cols[258]);
1715     if (inst->window && gtk_widget_get_window(inst->window))
1716         gdk_window_set_background(gtk_widget_get_window(inst->window),
1717                                   &inst->cols[258]);
1718 }
1719
1720 void palette_set(void *frontend, int n, int r, int g, int b)
1721 {
1722     struct gui_data *inst = (struct gui_data *)frontend;
1723     if (n >= 16)
1724         n += 256 - 16;
1725     if (n >= NALLCOLOURS)
1726         return;
1727     real_palette_set(inst, n, r, g, b);
1728     if (n == 258) {
1729         /* Default Background changed. Ensure space between text area and
1730          * window border is redrawn */
1731         set_window_background(inst);
1732         draw_backing_rect(inst);
1733         gtk_widget_queue_draw(inst->area);
1734     }
1735 }
1736
1737 void palette_reset(void *frontend)
1738 {
1739     struct gui_data *inst = (struct gui_data *)frontend;
1740     /* This maps colour indices in inst->conf to those used in inst->cols. */
1741     static const int ww[] = {
1742         256, 257, 258, 259, 260, 261,
1743         0, 8, 1, 9, 2, 10, 3, 11,
1744         4, 12, 5, 13, 6, 14, 7, 15
1745     };
1746     gboolean success[NALLCOLOURS];
1747     int i;
1748
1749     assert(lenof(ww) == NCFGCOLOURS);
1750
1751     if (!inst->colmap) {
1752         inst->colmap = gdk_colormap_get_system();
1753     } else {
1754         gdk_colormap_free_colors(inst->colmap, inst->cols, NALLCOLOURS);
1755     }
1756
1757     for (i = 0; i < NCFGCOLOURS; i++) {
1758         inst->cols[ww[i]].red =
1759             conf_get_int_int(inst->conf, CONF_colours, i*3+0) * 0x0101;
1760         inst->cols[ww[i]].green =
1761             conf_get_int_int(inst->conf, CONF_colours, i*3+1) * 0x0101;
1762         inst->cols[ww[i]].blue = 
1763             conf_get_int_int(inst->conf, CONF_colours, i*3+2) * 0x0101;
1764     }
1765
1766     for (i = 0; i < NEXTCOLOURS; i++) {
1767         if (i < 216) {
1768             int r = i / 36, g = (i / 6) % 6, b = i % 6;
1769             inst->cols[i+16].red = r ? r * 0x2828 + 0x3737 : 0;
1770             inst->cols[i+16].green = g ? g * 0x2828 + 0x3737 : 0;
1771             inst->cols[i+16].blue = b ? b * 0x2828 + 0x3737 : 0;
1772         } else {
1773             int shade = i - 216;
1774             shade = shade * 0x0a0a + 0x0808;
1775             inst->cols[i+16].red = inst->cols[i+16].green =
1776                 inst->cols[i+16].blue = shade;
1777         }
1778     }
1779
1780     gdk_colormap_alloc_colors(inst->colmap, inst->cols, NALLCOLOURS,
1781                               FALSE, TRUE, success);
1782     for (i = 0; i < NALLCOLOURS; i++) {
1783         if (!success[i])
1784             g_error("%s: couldn't allocate colour %d (#%02x%02x%02x)\n",
1785                     appname, i,
1786                     conf_get_int_int(inst->conf, CONF_colours, i*3+0),
1787                     conf_get_int_int(inst->conf, CONF_colours, i*3+1),
1788                     conf_get_int_int(inst->conf, CONF_colours, i*3+2));
1789     }
1790
1791     /* Since Default Background may have changed, ensure that space
1792      * between text area and window border is refreshed. */
1793     set_window_background(inst);
1794     if (inst->area && gtk_widget_get_window(inst->area)) {
1795         draw_backing_rect(inst);
1796         gtk_widget_queue_draw(inst->area);
1797     }
1798 }
1799
1800 /* Ensure that all the cut buffers exist - according to the ICCCM, we must
1801  * do this before we start using cut buffers.
1802  */
1803 void init_cutbuffers()
1804 {
1805 #ifndef NOT_X_WINDOWS
1806     unsigned char empty[] = "";
1807     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1808                     XA_CUT_BUFFER0, XA_STRING, 8, PropModeAppend, empty, 0);
1809     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1810                     XA_CUT_BUFFER1, XA_STRING, 8, PropModeAppend, empty, 0);
1811     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1812                     XA_CUT_BUFFER2, XA_STRING, 8, PropModeAppend, empty, 0);
1813     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1814                     XA_CUT_BUFFER3, XA_STRING, 8, PropModeAppend, empty, 0);
1815     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1816                     XA_CUT_BUFFER4, XA_STRING, 8, PropModeAppend, empty, 0);
1817     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1818                     XA_CUT_BUFFER5, XA_STRING, 8, PropModeAppend, empty, 0);
1819     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1820                     XA_CUT_BUFFER6, XA_STRING, 8, PropModeAppend, empty, 0);
1821     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1822                     XA_CUT_BUFFER7, XA_STRING, 8, PropModeAppend, empty, 0);
1823 #endif
1824 }
1825
1826 /* Store the data in a cut-buffer. */
1827 void store_cutbuffer(char * ptr, int len)
1828 {
1829 #ifndef NOT_X_WINDOWS
1830     /* ICCCM says we must rotate the buffers before storing to buffer 0. */
1831     XRotateBuffers(GDK_DISPLAY(), 1);
1832     XStoreBytes(GDK_DISPLAY(), ptr, len);
1833 #endif
1834 }
1835
1836 /* Retrieve data from a cut-buffer.
1837  * Returned data needs to be freed with XFree().
1838  */
1839 char * retrieve_cutbuffer(int * nbytes)
1840 {
1841 #ifndef NOT_X_WINDOWS
1842     char * ptr;
1843     ptr = XFetchBytes(GDK_DISPLAY(), nbytes);
1844     if (*nbytes <= 0 && ptr != 0) {
1845         XFree(ptr);
1846         ptr = 0;
1847     }
1848     return ptr;
1849 #else
1850     return NULL;
1851 #endif
1852 }
1853
1854 void write_clip(void *frontend, wchar_t * data, int *attr, int len, int must_deselect)
1855 {
1856     struct gui_data *inst = (struct gui_data *)frontend;
1857     if (inst->pasteout_data)
1858         sfree(inst->pasteout_data);
1859     if (inst->pasteout_data_ctext)
1860         sfree(inst->pasteout_data_ctext);
1861     if (inst->pasteout_data_utf8)
1862         sfree(inst->pasteout_data_utf8);
1863
1864     /*
1865      * Set up UTF-8 and compound text paste data. This only happens
1866      * if we aren't in direct-to-font mode using the D800 hack.
1867      */
1868     if (!inst->direct_to_font) {
1869         const wchar_t *tmp = data;
1870         int tmplen = len;
1871 #ifndef NOT_X_WINDOWS
1872         XTextProperty tp;
1873         char *list[1];
1874 #endif
1875
1876         inst->pasteout_data_utf8 = snewn(len*6, char);
1877         inst->pasteout_data_utf8_len = len*6;
1878         inst->pasteout_data_utf8_len =
1879             charset_from_unicode(&tmp, &tmplen, inst->pasteout_data_utf8,
1880                                  inst->pasteout_data_utf8_len,
1881                                  CS_UTF8, NULL, NULL, 0);
1882         if (inst->pasteout_data_utf8_len == 0) {
1883             sfree(inst->pasteout_data_utf8);
1884             inst->pasteout_data_utf8 = NULL;
1885         } else {
1886             inst->pasteout_data_utf8 =
1887                 sresize(inst->pasteout_data_utf8,
1888                         inst->pasteout_data_utf8_len + 1, char);
1889             inst->pasteout_data_utf8[inst->pasteout_data_utf8_len] = '\0';
1890         }
1891
1892         /*
1893          * Now let Xlib convert our UTF-8 data into compound text.
1894          */
1895 #ifndef NOT_X_WINDOWS
1896         list[0] = inst->pasteout_data_utf8;
1897         if (Xutf8TextListToTextProperty(GDK_DISPLAY(), list, 1,
1898                                         XCompoundTextStyle, &tp) == 0) {
1899             inst->pasteout_data_ctext = snewn(tp.nitems+1, char);
1900             memcpy(inst->pasteout_data_ctext, tp.value, tp.nitems);
1901             inst->pasteout_data_ctext_len = tp.nitems;
1902             XFree(tp.value);
1903         } else
1904 #endif
1905         {
1906             inst->pasteout_data_ctext = NULL;
1907             inst->pasteout_data_ctext_len = 0;
1908         }
1909     } else {
1910         inst->pasteout_data_utf8 = NULL;
1911         inst->pasteout_data_utf8_len = 0;
1912         inst->pasteout_data_ctext = NULL;
1913         inst->pasteout_data_ctext_len = 0;
1914     }
1915
1916     inst->pasteout_data = snewn(len*6, char);
1917     inst->pasteout_data_len = len*6;
1918     inst->pasteout_data_len = wc_to_mb(inst->ucsdata.line_codepage, 0,
1919                                        data, len, inst->pasteout_data,
1920                                        inst->pasteout_data_len,
1921                                        NULL, NULL, NULL);
1922     if (inst->pasteout_data_len == 0) {
1923         sfree(inst->pasteout_data);
1924         inst->pasteout_data = NULL;
1925     } else {
1926         inst->pasteout_data =
1927             sresize(inst->pasteout_data, inst->pasteout_data_len, char);
1928     }
1929
1930     store_cutbuffer(inst->pasteout_data, inst->pasteout_data_len);
1931
1932     if (gtk_selection_owner_set(inst->area, GDK_SELECTION_PRIMARY,
1933                                 inst->input_event_time)) {
1934 #if GTK_CHECK_VERSION(2,0,0)
1935         gtk_selection_clear_targets(inst->area, GDK_SELECTION_PRIMARY);
1936 #endif
1937         gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1938                                  GDK_SELECTION_TYPE_STRING, 1);
1939         if (inst->pasteout_data_ctext)
1940             gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1941                                      compound_text_atom, 1);
1942         if (inst->pasteout_data_utf8)
1943             gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1944                                      utf8_string_atom, 1);
1945     }
1946
1947     if (must_deselect)
1948         term_deselect(inst->term);
1949 }
1950
1951 void selection_get(GtkWidget *widget, GtkSelectionData *seldata,
1952                    guint info, guint time_stamp, gpointer data)
1953 {
1954     struct gui_data *inst = (struct gui_data *)data;
1955     GdkAtom target = gtk_selection_data_get_target(seldata);
1956     if (target == utf8_string_atom)
1957         gtk_selection_data_set(seldata, target, 8,
1958                                (unsigned char *)inst->pasteout_data_utf8,
1959                                inst->pasteout_data_utf8_len);
1960     else if (target == compound_text_atom)
1961         gtk_selection_data_set(seldata, target, 8,
1962                                (unsigned char *)inst->pasteout_data_ctext,
1963                                inst->pasteout_data_ctext_len);
1964     else
1965         gtk_selection_data_set(seldata, target, 8,
1966                                (unsigned char *)inst->pasteout_data,
1967                                inst->pasteout_data_len);
1968 }
1969
1970 gint selection_clear(GtkWidget *widget, GdkEventSelection *seldata,
1971                      gpointer data)
1972 {
1973     struct gui_data *inst = (struct gui_data *)data;
1974
1975     term_deselect(inst->term);
1976     if (inst->pasteout_data)
1977         sfree(inst->pasteout_data);
1978     if (inst->pasteout_data_ctext)
1979         sfree(inst->pasteout_data_ctext);
1980     if (inst->pasteout_data_utf8)
1981         sfree(inst->pasteout_data_utf8);
1982     inst->pasteout_data = NULL;
1983     inst->pasteout_data_len = 0;
1984     inst->pasteout_data_ctext = NULL;
1985     inst->pasteout_data_ctext_len = 0;
1986     inst->pasteout_data_utf8 = NULL;
1987     inst->pasteout_data_utf8_len = 0;
1988     return TRUE;
1989 }
1990
1991 void request_paste(void *frontend)
1992 {
1993     struct gui_data *inst = (struct gui_data *)frontend;
1994     /*
1995      * In Unix, pasting is asynchronous: all we can do at the
1996      * moment is to call gtk_selection_convert(), and when the data
1997      * comes back _then_ we can call term_do_paste().
1998      */
1999
2000     if (!inst->direct_to_font) {
2001         /*
2002          * First we attempt to retrieve the selection as a UTF-8
2003          * string (which we will convert to the correct code page
2004          * before sending to the session, of course). If that
2005          * fails, selection_received() will be informed and will
2006          * fall back to an ordinary string.
2007          */
2008         gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2009                               utf8_string_atom,
2010                               inst->input_event_time);
2011     } else {
2012         /*
2013          * If we're in direct-to-font mode, we disable UTF-8
2014          * pasting, and go straight to ordinary string data.
2015          */
2016         gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2017                               GDK_SELECTION_TYPE_STRING,
2018                               inst->input_event_time);
2019     }
2020 }
2021
2022 gint idle_paste_func(gpointer data);   /* forward ref */
2023
2024 void selection_received(GtkWidget *widget, GtkSelectionData *seldata,
2025                         guint time, gpointer data)
2026 {
2027     struct gui_data *inst = (struct gui_data *)data;
2028     char *text;
2029     int length;
2030 #ifndef NOT_X_WINDOWS
2031     char **list;
2032     int free_list_required = 0;
2033     int free_required = 0;
2034 #endif
2035     int charset;
2036     GdkAtom seldata_target = gtk_selection_data_get_target(seldata);
2037     GdkAtom seldata_type = gtk_selection_data_get_data_type(seldata);
2038     const guchar *seldata_data = gtk_selection_data_get_data(seldata);
2039     gint seldata_length = gtk_selection_data_get_length(seldata);
2040
2041     if (seldata_target == utf8_string_atom && seldata_length <= 0) {
2042         /*
2043          * Failed to get a UTF-8 selection string. Try compound
2044          * text next.
2045          */
2046         gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2047                               compound_text_atom,
2048                               inst->input_event_time);
2049         return;
2050     }
2051
2052     if (seldata_target == compound_text_atom && seldata_length <= 0) {
2053         /*
2054          * Failed to get UTF-8 or compound text. Try an ordinary
2055          * string.
2056          */
2057         gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2058                               GDK_SELECTION_TYPE_STRING,
2059                               inst->input_event_time);
2060         return;
2061     }
2062
2063     /*
2064      * If we have data, but it's not of a type we can deal with,
2065      * we have to ignore the data.
2066      */
2067     if (seldata_length > 0 &&
2068         seldata_type != GDK_SELECTION_TYPE_STRING &&
2069         seldata_type != compound_text_atom &&
2070         seldata_type != utf8_string_atom)
2071         return;
2072
2073     /*
2074      * If we have no data, try looking in a cut buffer.
2075      */
2076     if (seldata_length <= 0) {
2077 #ifndef NOT_X_WINDOWS
2078         text = retrieve_cutbuffer(&length);
2079         if (length == 0)
2080             return;
2081         /* Xterm is rumoured to expect Latin-1, though I havn't checked the
2082          * source, so use that as a de-facto standard. */
2083         charset = CS_ISO8859_1;
2084         free_required = 1;
2085 #else
2086         return;
2087 #endif
2088     } else {
2089         /*
2090          * Convert COMPOUND_TEXT into UTF-8.
2091          */
2092         if (seldata_type == compound_text_atom) {
2093 #ifndef NOT_X_WINDOWS
2094             XTextProperty tp;
2095             int ret, count;
2096
2097             tp.value = (unsigned char *)seldata_data;
2098             tp.encoding = (Atom) seldata_type;
2099             tp.format = gtk_selection_data_get_format(seldata);
2100             tp.nitems = seldata_length;
2101             ret = Xutf8TextPropertyToTextList(GDK_DISPLAY(), &tp,
2102                                               &list, &count);
2103             if (ret == 0 && count == 1) {
2104                 text = list[0];
2105                 length = strlen(list[0]);
2106                 charset = CS_UTF8;
2107                 free_list_required = 1;
2108             } else
2109 #endif
2110             {
2111                 /*
2112                  * Compound text failed; fall back to STRING.
2113                  */
2114                 gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2115                                       GDK_SELECTION_TYPE_STRING,
2116                                       inst->input_event_time);
2117                 return;
2118             }
2119         } else {
2120             text = (char *)seldata_data;
2121             length = seldata_length;
2122             charset = (seldata_type == utf8_string_atom ?
2123                        CS_UTF8 : inst->ucsdata.line_codepage);
2124         }
2125     }
2126
2127     if (inst->pastein_data)
2128         sfree(inst->pastein_data);
2129
2130     inst->pastein_data = snewn(length, wchar_t);
2131     inst->pastein_data_len = length;
2132     inst->pastein_data_len =
2133         mb_to_wc(charset, 0, text, length,
2134                  inst->pastein_data, inst->pastein_data_len);
2135
2136     term_do_paste(inst->term);
2137
2138 #ifndef NOT_X_WINDOWS
2139     if (free_list_required)
2140         XFreeStringList(list);
2141     if (free_required)
2142         XFree(text);
2143 #endif
2144 }
2145
2146 void get_clip(void *frontend, wchar_t ** p, int *len)
2147 {
2148     struct gui_data *inst = (struct gui_data *)frontend;
2149
2150     if (p) {
2151         *p = inst->pastein_data;
2152         *len = inst->pastein_data_len;
2153     }
2154 }
2155
2156 static void set_window_titles(struct gui_data *inst)
2157 {
2158     /*
2159      * We must always call set_icon_name after calling set_title,
2160      * since set_title will write both names. Irritating, but such
2161      * is life.
2162      */
2163     gtk_window_set_title(GTK_WINDOW(inst->window), inst->wintitle);
2164     if (!conf_get_int(inst->conf, CONF_win_name_always))
2165         gdk_window_set_icon_name(gtk_widget_get_window(inst->window),
2166                                  inst->icontitle);
2167 }
2168
2169 void set_title(void *frontend, char *title)
2170 {
2171     struct gui_data *inst = (struct gui_data *)frontend;
2172     sfree(inst->wintitle);
2173     inst->wintitle = dupstr(title);
2174     set_window_titles(inst);
2175 }
2176
2177 void set_icon(void *frontend, char *title)
2178 {
2179     struct gui_data *inst = (struct gui_data *)frontend;
2180     sfree(inst->icontitle);
2181     inst->icontitle = dupstr(title);
2182     set_window_titles(inst);
2183 }
2184
2185 void set_title_and_icon(void *frontend, char *title, char *icon)
2186 {
2187     struct gui_data *inst = (struct gui_data *)frontend;
2188     sfree(inst->wintitle);
2189     inst->wintitle = dupstr(title);
2190     sfree(inst->icontitle);
2191     inst->icontitle = dupstr(icon);
2192     set_window_titles(inst);
2193 }
2194
2195 void set_sbar(void *frontend, int total, int start, int page)
2196 {
2197     struct gui_data *inst = (struct gui_data *)frontend;
2198     if (!conf_get_int(inst->conf, CONF_scrollbar))
2199         return;
2200     gtk_adjustment_set_lower(inst->sbar_adjust, 0);
2201     gtk_adjustment_set_upper(inst->sbar_adjust, total);
2202     gtk_adjustment_set_value(inst->sbar_adjust, start);
2203     gtk_adjustment_set_page_size(inst->sbar_adjust, page);
2204     gtk_adjustment_set_step_increment(inst->sbar_adjust, 1);
2205     gtk_adjustment_set_page_increment(inst->sbar_adjust, page/2);
2206     inst->ignore_sbar = TRUE;
2207     gtk_adjustment_changed(inst->sbar_adjust);
2208     inst->ignore_sbar = FALSE;
2209 }
2210
2211 void scrollbar_moved(GtkAdjustment *adj, gpointer data)
2212 {
2213     struct gui_data *inst = (struct gui_data *)data;
2214
2215     if (!conf_get_int(inst->conf, CONF_scrollbar))
2216         return;
2217     if (!inst->ignore_sbar)
2218         term_scroll(inst->term, 1, (int)gtk_adjustment_get_value(adj));
2219 }
2220
2221 void sys_cursor(void *frontend, int x, int y)
2222 {
2223     /*
2224      * This is meaningless under X.
2225      */
2226 }
2227
2228 /*
2229  * This is still called when mode==BELL_VISUAL, even though the
2230  * visual bell is handled entirely within terminal.c, because we
2231  * may want to perform additional actions on any kind of bell (for
2232  * example, taskbar flashing in Windows).
2233  */
2234 void do_beep(void *frontend, int mode)
2235 {
2236     if (mode == BELL_DEFAULT)
2237         gdk_beep();
2238 }
2239
2240 int char_width(Context ctx, int uc)
2241 {
2242     /*
2243      * Under X, any fixed-width font really _is_ fixed-width.
2244      * Double-width characters will be dealt with using a separate
2245      * font. For the moment we can simply return 1.
2246      * 
2247      * FIXME: but is that also true of Pango?
2248      */
2249     return 1;
2250 }
2251
2252 Context get_ctx(void *frontend)
2253 {
2254     struct gui_data *inst = (struct gui_data *)frontend;
2255     struct draw_ctx *dctx;
2256
2257     if (!gtk_widget_get_window(inst->area))
2258         return NULL;
2259
2260     dctx = snew(struct draw_ctx);
2261     dctx->inst = inst;
2262     dctx->gc = gdk_gc_new(gtk_widget_get_window(inst->area));
2263     return dctx;
2264 }
2265
2266 void free_ctx(Context ctx)
2267 {
2268     struct draw_ctx *dctx = (struct draw_ctx *)ctx;
2269     /* struct gui_data *inst = dctx->inst; */
2270     GdkGC *gc = dctx->gc;
2271     gdk_gc_unref(gc);
2272     sfree(dctx);
2273 }
2274
2275 /*
2276  * Draw a line of text in the window, at given character
2277  * coordinates, in given attributes.
2278  *
2279  * We are allowed to fiddle with the contents of `text'.
2280  */
2281 void do_text_internal(Context ctx, int x, int y, wchar_t *text, int len,
2282                       unsigned long attr, int lattr)
2283 {
2284     struct draw_ctx *dctx = (struct draw_ctx *)ctx;
2285     struct gui_data *inst = dctx->inst;
2286     GdkGC *gc = dctx->gc;
2287     int ncombining, combining;
2288     int nfg, nbg, t, fontid, shadow, rlen, widefactor, bold;
2289     int monochrome =
2290         gdk_visual_get_depth(gtk_widget_get_visual(inst->area)) == 1;
2291
2292     if (attr & TATTR_COMBINING) {
2293         ncombining = len;
2294         len = 1;
2295     } else
2296         ncombining = 1;
2297
2298     nfg = ((monochrome ? ATTR_DEFFG : (attr & ATTR_FGMASK)) >> ATTR_FGSHIFT);
2299     nbg = ((monochrome ? ATTR_DEFBG : (attr & ATTR_BGMASK)) >> ATTR_BGSHIFT);
2300     if (!!(attr & ATTR_REVERSE) ^ (monochrome && (attr & TATTR_ACTCURS))) {
2301         t = nfg;
2302         nfg = nbg;
2303         nbg = t;
2304     }
2305     if ((inst->bold_style & 2) && (attr & ATTR_BOLD)) {
2306         if (nfg < 16) nfg |= 8;
2307         else if (nfg >= 256) nfg |= 1;
2308     }
2309     if ((inst->bold_style & 2) && (attr & ATTR_BLINK)) {
2310         if (nbg < 16) nbg |= 8;
2311         else if (nbg >= 256) nbg |= 1;
2312     }
2313     if ((attr & TATTR_ACTCURS) && !monochrome) {
2314         nfg = 260;
2315         nbg = 261;
2316     }
2317
2318     fontid = shadow = 0;
2319
2320     if (attr & ATTR_WIDE) {
2321         widefactor = 2;
2322         fontid |= 2;
2323     } else {
2324         widefactor = 1;
2325     }
2326
2327     if ((attr & ATTR_BOLD) && (inst->bold_style & 1)) {
2328         bold = 1;
2329         fontid |= 1;
2330     } else {
2331         bold = 0;
2332     }
2333
2334     if (!inst->fonts[fontid]) {
2335         int i;
2336         /*
2337          * Fall back through font ids with subsets of this one's
2338          * set bits, in order.
2339          */
2340         for (i = fontid; i-- > 0 ;) {
2341             if (i & ~fontid)
2342                 continue;              /* some other bit is set */
2343             if (inst->fonts[i]) {
2344                 fontid = i;
2345                 break;
2346             }
2347         }
2348         assert(inst->fonts[fontid]);   /* we should at least have hit zero */
2349     }
2350
2351     if ((lattr & LATTR_MODE) != LATTR_NORM) {
2352         x *= 2;
2353         if (x >= inst->term->cols)
2354             return;
2355         if (x + len*2*widefactor > inst->term->cols)
2356             len = (inst->term->cols-x)/2/widefactor;/* trim to LH half */
2357         rlen = len * 2;
2358     } else
2359         rlen = len;
2360
2361     {
2362         GdkRectangle r;
2363
2364         r.x = x*inst->font_width+inst->window_border;
2365         r.y = y*inst->font_height+inst->window_border;
2366         r.width = rlen*widefactor*inst->font_width;
2367         r.height = inst->font_height;
2368         gdk_gc_set_clip_rectangle(gc, &r);
2369     }
2370
2371     gdk_gc_set_foreground(gc, &inst->cols[nbg]);
2372     gdk_draw_rectangle(inst->pixmap, gc, 1,
2373                        x*inst->font_width+inst->window_border,
2374                        y*inst->font_height+inst->window_border,
2375                        rlen*widefactor*inst->font_width, inst->font_height);
2376
2377     gdk_gc_set_foreground(gc, &inst->cols[nfg]);
2378     for (combining = 0; combining < ncombining; combining++) {
2379         unifont_draw_text(inst->pixmap, gc, inst->fonts[fontid],
2380                           x*inst->font_width+inst->window_border,
2381                           y*inst->font_height+inst->window_border+inst->fonts[0]->ascent,
2382                           text + combining, len, widefactor > 1,
2383                           bold, inst->font_width);
2384     }
2385
2386     if (attr & ATTR_UNDER) {
2387         int uheight = inst->fonts[0]->ascent + 1;
2388         if (uheight >= inst->font_height)
2389             uheight = inst->font_height - 1;
2390         gdk_draw_line(inst->pixmap, gc, x*inst->font_width+inst->window_border,
2391                       y*inst->font_height + uheight + inst->window_border,
2392                       (x+len)*widefactor*inst->font_width-1+inst->window_border,
2393                       y*inst->font_height + uheight + inst->window_border);
2394     }
2395
2396     if ((lattr & LATTR_MODE) != LATTR_NORM) {
2397         /*
2398          * I can't find any plausible StretchBlt equivalent in the
2399          * X server, so I'm going to do this the slow and painful
2400          * way. This will involve repeated calls to
2401          * gdk_draw_pixmap() to stretch the text horizontally. It's
2402          * O(N^2) in time and O(N) in network bandwidth, but you
2403          * try thinking of a better way. :-(
2404          */
2405         int i;
2406         for (i = 0; i < len * widefactor * inst->font_width; i++) {
2407             gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
2408                             x*inst->font_width+inst->window_border + 2*i,
2409                             y*inst->font_height+inst->window_border,
2410                             x*inst->font_width+inst->window_border + 2*i+1,
2411                             y*inst->font_height+inst->window_border,
2412                             len * widefactor * inst->font_width - i, inst->font_height);
2413         }
2414         len *= 2;
2415         if ((lattr & LATTR_MODE) != LATTR_WIDE) {
2416             int dt, db;
2417             /* Now stretch vertically, in the same way. */
2418             if ((lattr & LATTR_MODE) == LATTR_BOT)
2419                 dt = 0, db = 1;
2420             else
2421                 dt = 1, db = 0;
2422             for (i = 0; i < inst->font_height; i+=2) {
2423                 gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
2424                                 x*inst->font_width+inst->window_border,
2425                                 y*inst->font_height+inst->window_border+dt*i+db,
2426                                 x*inst->font_width+inst->window_border,
2427                                 y*inst->font_height+inst->window_border+dt*(i+1),
2428                                 len * widefactor * inst->font_width, inst->font_height-i-1);
2429             }
2430         }
2431     }
2432 }
2433
2434 void do_text(Context ctx, int x, int y, wchar_t *text, int len,
2435              unsigned long attr, int lattr)
2436 {
2437     struct draw_ctx *dctx = (struct draw_ctx *)ctx;
2438     struct gui_data *inst = dctx->inst;
2439     GdkGC *gc = dctx->gc;
2440     int widefactor;
2441
2442     do_text_internal(ctx, x, y, text, len, attr, lattr);
2443
2444     if (attr & ATTR_WIDE) {
2445         widefactor = 2;
2446     } else {
2447         widefactor = 1;
2448     }
2449
2450     if ((lattr & LATTR_MODE) != LATTR_NORM) {
2451         x *= 2;
2452         if (x >= inst->term->cols)
2453             return;
2454         if (x + len*2*widefactor > inst->term->cols)
2455             len = (inst->term->cols-x)/2/widefactor;/* trim to LH half */
2456         len *= 2;
2457     }
2458
2459     gdk_draw_pixmap(gtk_widget_get_window(inst->area), gc, inst->pixmap,
2460                     x*inst->font_width+inst->window_border,
2461                     y*inst->font_height+inst->window_border,
2462                     x*inst->font_width+inst->window_border,
2463                     y*inst->font_height+inst->window_border,
2464                     len*widefactor*inst->font_width, inst->font_height);
2465 }
2466
2467 void do_cursor(Context ctx, int x, int y, wchar_t *text, int len,
2468                unsigned long attr, int lattr)
2469 {
2470     struct draw_ctx *dctx = (struct draw_ctx *)ctx;
2471     struct gui_data *inst = dctx->inst;
2472     GdkGC *gc = dctx->gc;
2473
2474     int active, passive, widefactor;
2475
2476     if (attr & TATTR_PASCURS) {
2477         attr &= ~TATTR_PASCURS;
2478         passive = 1;
2479     } else
2480         passive = 0;
2481     if ((attr & TATTR_ACTCURS) && inst->cursor_type != 0) {
2482         attr &= ~TATTR_ACTCURS;
2483         active = 1;
2484     } else
2485         active = 0;
2486     do_text_internal(ctx, x, y, text, len, attr, lattr);
2487
2488     if (attr & TATTR_COMBINING)
2489         len = 1;
2490
2491     if (attr & ATTR_WIDE) {
2492         widefactor = 2;
2493     } else {
2494         widefactor = 1;
2495     }
2496
2497     if ((lattr & LATTR_MODE) != LATTR_NORM) {
2498         x *= 2;
2499         if (x >= inst->term->cols)
2500             return;
2501         if (x + len*2*widefactor > inst->term->cols)
2502             len = (inst->term->cols-x)/2/widefactor;/* trim to LH half */
2503         len *= 2;
2504     }
2505
2506     if (inst->cursor_type == 0) {
2507         /*
2508          * An active block cursor will already have been done by
2509          * the above do_text call, so we only need to do anything
2510          * if it's passive.
2511          */
2512         if (passive) {
2513             gdk_gc_set_foreground(gc, &inst->cols[261]);
2514             gdk_draw_rectangle(inst->pixmap, gc, 0,
2515                                x*inst->font_width+inst->window_border,
2516                                y*inst->font_height+inst->window_border,
2517                                len*widefactor*inst->font_width-1, inst->font_height-1);
2518         }
2519     } else {
2520         int uheight;
2521         int startx, starty, dx, dy, length, i;
2522
2523         int char_width;
2524
2525         if ((attr & ATTR_WIDE) || (lattr & LATTR_MODE) != LATTR_NORM)
2526             char_width = 2*inst->font_width;
2527         else
2528             char_width = inst->font_width;
2529
2530         if (inst->cursor_type == 1) {
2531             uheight = inst->fonts[0]->ascent + 1;
2532             if (uheight >= inst->font_height)
2533                 uheight = inst->font_height - 1;
2534
2535             startx = x * inst->font_width + inst->window_border;
2536             starty = y * inst->font_height + inst->window_border + uheight;
2537             dx = 1;
2538             dy = 0;
2539             length = len * widefactor * char_width;
2540         } else {
2541             int xadjust = 0;
2542             if (attr & TATTR_RIGHTCURS)
2543                 xadjust = char_width - 1;
2544             startx = x * inst->font_width + inst->window_border + xadjust;
2545             starty = y * inst->font_height + inst->window_border;
2546             dx = 0;
2547             dy = 1;
2548             length = inst->font_height;
2549         }
2550
2551         gdk_gc_set_foreground(gc, &inst->cols[261]);
2552         if (passive) {
2553             for (i = 0; i < length; i++) {
2554                 if (i % 2 == 0) {
2555                     gdk_draw_point(inst->pixmap, gc, startx, starty);
2556                 }
2557                 startx += dx;
2558                 starty += dy;
2559             }
2560         } else if (active) {
2561             gdk_draw_line(inst->pixmap, gc, startx, starty,
2562                           startx + (length-1) * dx, starty + (length-1) * dy);
2563         } /* else no cursor (e.g., blinked off) */
2564     }
2565
2566     gdk_draw_pixmap(gtk_widget_get_window(inst->area), gc, inst->pixmap,
2567                     x*inst->font_width+inst->window_border,
2568                     y*inst->font_height+inst->window_border,
2569                     x*inst->font_width+inst->window_border,
2570                     y*inst->font_height+inst->window_border,
2571                     len*widefactor*inst->font_width, inst->font_height);
2572
2573 #if GTK_CHECK_VERSION(2,0,0)
2574     {
2575         GdkRectangle cursorrect;
2576         cursorrect.x = x*inst->font_width+inst->window_border;
2577         cursorrect.y = y*inst->font_height+inst->window_border;
2578         cursorrect.width = len*widefactor*inst->font_width;
2579         cursorrect.height = inst->font_height;
2580         gtk_im_context_set_cursor_location(inst->imc, &cursorrect);
2581     }
2582 #endif
2583 }
2584
2585 GdkCursor *make_mouse_ptr(struct gui_data *inst, int cursor_val)
2586 {
2587     /*
2588      * Truly hideous hack: GTK doesn't allow us to set the mouse
2589      * cursor foreground and background colours unless we've _also_
2590      * created our own cursor from bitmaps. Therefore, I need to
2591      * load the `cursor' font and draw glyphs from it on to
2592      * pixmaps, in order to construct my cursors with the fg and bg
2593      * I want. This is a gross hack, but it's more self-contained
2594      * than linking in Xlib to find the X window handle to
2595      * inst->area and calling XRecolorCursor, and it's more
2596      * futureproof than hard-coding the shapes as bitmap arrays.
2597      */
2598     static GdkFont *cursor_font = NULL;
2599     GdkPixmap *source, *mask;
2600     GdkGC *gc;
2601     GdkColor cfg = { 0, 65535, 65535, 65535 };
2602     GdkColor cbg = { 0, 0, 0, 0 };
2603     GdkColor dfg = { 1, 65535, 65535, 65535 };
2604     GdkColor dbg = { 0, 0, 0, 0 };
2605     GdkCursor *ret;
2606     gchar text[2];
2607     gint lb, rb, wid, asc, desc, w, h, x, y;
2608
2609     if (cursor_val == -2) {
2610         gdk_font_unref(cursor_font);
2611         return NULL;
2612     }
2613
2614     if (cursor_val >= 0 && !cursor_font) {
2615         cursor_font = gdk_font_load("cursor");
2616         if (cursor_font)
2617             gdk_font_ref(cursor_font);
2618     }
2619
2620     /*
2621      * Get the text extent of the cursor in question. We use the
2622      * mask character for this, because it's typically slightly
2623      * bigger than the main character.
2624      */
2625     if (cursor_val >= 0) {
2626         text[1] = '\0';
2627         text[0] = (char)cursor_val + 1;
2628         gdk_string_extents(cursor_font, text, &lb, &rb, &wid, &asc, &desc);
2629         w = rb-lb; h = asc+desc; x = -lb; y = asc;
2630     } else {
2631         w = h = 1;
2632         x = y = 0;
2633     }
2634
2635     source = gdk_pixmap_new(NULL, w, h, 1);
2636     mask = gdk_pixmap_new(NULL, w, h, 1);
2637
2638     /*
2639      * Draw the mask character on the mask pixmap.
2640      */
2641     gc = gdk_gc_new(mask);
2642     gdk_gc_set_foreground(gc, &dbg);
2643     gdk_draw_rectangle(mask, gc, 1, 0, 0, w, h);
2644     if (cursor_val >= 0) {
2645         text[1] = '\0';
2646         text[0] = (char)cursor_val + 1;
2647         gdk_gc_set_foreground(gc, &dfg);
2648         gdk_draw_text(mask, cursor_font, gc, x, y, text, 1);
2649     }
2650     gdk_gc_unref(gc);
2651
2652     /*
2653      * Draw the main character on the source pixmap.
2654      */
2655     gc = gdk_gc_new(source);
2656     gdk_gc_set_foreground(gc, &dbg);
2657     gdk_draw_rectangle(source, gc, 1, 0, 0, w, h);
2658     if (cursor_val >= 0) {
2659         text[1] = '\0';
2660         text[0] = (char)cursor_val;
2661         gdk_gc_set_foreground(gc, &dfg);
2662         gdk_draw_text(source, cursor_font, gc, x, y, text, 1);
2663     }
2664     gdk_gc_unref(gc);
2665
2666     /*
2667      * Create the cursor.
2668      */
2669     ret = gdk_cursor_new_from_pixmap(source, mask, &cfg, &cbg, x, y);
2670
2671     /*
2672      * Clean up.
2673      */
2674     gdk_pixmap_unref(source);
2675     gdk_pixmap_unref(mask);
2676
2677     return ret;
2678 }
2679
2680 void modalfatalbox(const char *p, ...)
2681 {
2682     va_list ap;
2683     fprintf(stderr, "FATAL ERROR: ");
2684     va_start(ap, p);
2685     vfprintf(stderr, p, ap);
2686     va_end(ap);
2687     fputc('\n', stderr);
2688     exit(1);
2689 }
2690
2691 void cmdline_error(const char *p, ...)
2692 {
2693     va_list ap;
2694     fprintf(stderr, "%s: ", appname);
2695     va_start(ap, p);
2696     vfprintf(stderr, p, ap);
2697     va_end(ap);
2698     fputc('\n', stderr);
2699     exit(1);
2700 }
2701
2702 char *get_x_display(void *frontend)
2703 {
2704     return gdk_get_display();
2705 }
2706
2707 #ifndef NOT_X_WINDOWS
2708 long get_windowid(void *frontend)
2709 {
2710     struct gui_data *inst = (struct gui_data *)frontend;
2711     return (long)GDK_WINDOW_XWINDOW(gtk_widget_get_window(inst->area));
2712 }
2713 #endif
2714
2715 static void help(FILE *fp) {
2716     if(fprintf(fp,
2717 "pterm option summary:\n"
2718 "\n"
2719 "  --display DISPLAY         Specify X display to use (note '--')\n"
2720 "  -name PREFIX              Prefix when looking up resources (default: pterm)\n"
2721 "  -fn FONT                  Normal text font\n"
2722 "  -fb FONT                  Bold text font\n"
2723 "  -geometry GEOMETRY        Position and size of window (size in characters)\n"
2724 "  -sl LINES                 Number of lines of scrollback\n"
2725 "  -fg COLOUR, -bg COLOUR    Foreground/background colour\n"
2726 "  -bfg COLOUR, -bbg COLOUR  Foreground/background bold colour\n"
2727 "  -cfg COLOUR, -bfg COLOUR  Foreground/background cursor colour\n"
2728 "  -T TITLE                  Window title\n"
2729 "  -ut, +ut                  Do(default) or do not update utmp\n"
2730 "  -ls, +ls                  Do(default) or do not make shell a login shell\n"
2731 "  -sb, +sb                  Do(default) or do not display a scrollbar\n"
2732 "  -log PATH                 Log all output to a file\n"
2733 "  -nethack                  Map numeric keypad to hjklyubn direction keys\n"
2734 "  -xrm RESOURCE-STRING      Set an X resource\n"
2735 "  -e COMMAND [ARGS...]      Execute command (consumes all remaining args)\n"
2736          ) < 0 || fflush(fp) < 0) {
2737         perror("output error");
2738         exit(1);
2739     }
2740 }
2741
2742 static void version(FILE *fp) {
2743     if(fprintf(fp, "%s: %s\n", appname, ver) < 0 || fflush(fp) < 0) {
2744         perror("output error");
2745         exit(1);
2746     }
2747 }
2748
2749 int do_cmdline(int argc, char **argv, int do_everything, int *allow_launch,
2750                struct gui_data *inst, Conf *conf)
2751 {
2752     int err = 0;
2753     char *val;
2754
2755     /*
2756      * Macros to make argument handling easier. Note that because
2757      * they need to call `continue', they cannot be contained in
2758      * the usual do {...} while (0) wrapper to make them
2759      * syntactically single statements; hence it is not legal to
2760      * use one of these macros as an unbraced statement between
2761      * `if' and `else'.
2762      */
2763 #define EXPECTS_ARG { \
2764     if (--argc <= 0) { \
2765         err = 1; \
2766         fprintf(stderr, "%s: %s expects an argument\n", appname, p); \
2767         continue; \
2768     } else \
2769         val = *++argv; \
2770 }
2771 #define SECOND_PASS_ONLY { if (!do_everything) continue; }
2772
2773     while (--argc > 0) {
2774         const char *p = *++argv;
2775         int ret;
2776
2777         /*
2778          * Shameless cheating. Debian requires all X terminal
2779          * emulators to support `-T title'; but
2780          * cmdline_process_param will eat -T (it means no-pty) and
2781          * complain that pterm doesn't support it. So, in pterm
2782          * only, we convert -T into -title.
2783          */
2784         if ((cmdline_tooltype & TOOLTYPE_NONNETWORK) &&
2785             !strcmp(p, "-T"))
2786             p = "-title";
2787
2788         ret = cmdline_process_param(p, (argc > 1 ? argv[1] : NULL),
2789                                     do_everything ? 1 : -1, conf);
2790
2791         if (ret == -2) {
2792             cmdline_error("option \"%s\" requires an argument", p);
2793         } else if (ret == 2) {
2794             --argc, ++argv;            /* skip next argument */
2795             continue;
2796         } else if (ret == 1) {
2797             continue;
2798         }
2799
2800         if (!strcmp(p, "-fn") || !strcmp(p, "-font")) {
2801             FontSpec *fs;
2802             EXPECTS_ARG;
2803             SECOND_PASS_ONLY;
2804             fs = fontspec_new(val);
2805             conf_set_fontspec(conf, CONF_font, fs);
2806             fontspec_free(fs);
2807
2808         } else if (!strcmp(p, "-fb")) {
2809             FontSpec *fs;
2810             EXPECTS_ARG;
2811             SECOND_PASS_ONLY;
2812             fs = fontspec_new(val);
2813             conf_set_fontspec(conf, CONF_boldfont, fs);
2814             fontspec_free(fs);
2815
2816         } else if (!strcmp(p, "-fw")) {
2817             FontSpec *fs;
2818             EXPECTS_ARG;
2819             SECOND_PASS_ONLY;
2820             fs = fontspec_new(val);
2821             conf_set_fontspec(conf, CONF_widefont, fs);
2822             fontspec_free(fs);
2823
2824         } else if (!strcmp(p, "-fwb")) {
2825             FontSpec *fs;
2826             EXPECTS_ARG;
2827             SECOND_PASS_ONLY;
2828             fs = fontspec_new(val);
2829             conf_set_fontspec(conf, CONF_wideboldfont, fs);
2830             fontspec_free(fs);
2831
2832         } else if (!strcmp(p, "-cs")) {
2833             EXPECTS_ARG;
2834             SECOND_PASS_ONLY;
2835             conf_set_str(conf, CONF_line_codepage, val);
2836
2837         } else if (!strcmp(p, "-geometry")) {
2838             EXPECTS_ARG;
2839             SECOND_PASS_ONLY;
2840
2841 #if GTK_CHECK_VERSION(2,0,0)
2842             inst->geometry = val;
2843 #else
2844             /* On GTK 1, we have to do this using raw Xlib */
2845             {
2846                 int flags, x, y;
2847                 unsigned int w, h;
2848                 flags = XParseGeometry(val, &x, &y, &w, &h);
2849                 if (flags & WidthValue)
2850                     conf_set_int(conf, CONF_width, w);
2851                 if (flags & HeightValue)
2852                     conf_set_int(conf, CONF_height, h);
2853
2854                 if (flags & (XValue | YValue)) {
2855                     inst->xpos = x;
2856                     inst->ypos = y;
2857                     inst->gotpos = TRUE;
2858                     inst->gravity = ((flags & XNegative ? 1 : 0) |
2859                                      (flags & YNegative ? 2 : 0));
2860                 }
2861             }
2862 #endif
2863
2864         } else if (!strcmp(p, "-sl")) {
2865             EXPECTS_ARG;
2866             SECOND_PASS_ONLY;
2867             conf_set_int(conf, CONF_savelines, atoi(val));
2868
2869         } else if (!strcmp(p, "-fg") || !strcmp(p, "-bg") ||
2870                    !strcmp(p, "-bfg") || !strcmp(p, "-bbg") ||
2871                    !strcmp(p, "-cfg") || !strcmp(p, "-cbg")) {
2872             GdkColor col;
2873
2874             EXPECTS_ARG;
2875             SECOND_PASS_ONLY;
2876             if (!gdk_color_parse(val, &col)) {
2877                 err = 1;
2878                 fprintf(stderr, "%s: unable to parse colour \"%s\"\n",
2879                         appname, val);
2880             } else {
2881                 int index;
2882                 index = (!strcmp(p, "-fg") ? 0 :
2883                          !strcmp(p, "-bg") ? 2 :
2884                          !strcmp(p, "-bfg") ? 1 :
2885                          !strcmp(p, "-bbg") ? 3 :
2886                          !strcmp(p, "-cfg") ? 4 :
2887                          !strcmp(p, "-cbg") ? 5 : -1);
2888                 assert(index != -1);
2889                 conf_set_int_int(conf, CONF_colours, index*3+0, col.red / 256);
2890                 conf_set_int_int(conf, CONF_colours, index*3+1,col.green/ 256);
2891                 conf_set_int_int(conf, CONF_colours, index*3+2, col.blue/ 256);
2892             }
2893
2894         } else if (use_pty_argv && !strcmp(p, "-e")) {
2895             /* This option swallows all further arguments. */
2896             if (!do_everything)
2897                 break;
2898
2899             if (--argc > 0) {
2900                 int i;
2901                 pty_argv = snewn(argc+1, char *);
2902                 ++argv;
2903                 for (i = 0; i < argc; i++)
2904                     pty_argv[i] = argv[i];
2905                 pty_argv[argc] = NULL;
2906                 break;                 /* finished command-line processing */
2907             } else
2908                 err = 1, fprintf(stderr, "%s: -e expects an argument\n",
2909                                  appname);
2910
2911         } else if (!strcmp(p, "-title")) {
2912             EXPECTS_ARG;
2913             SECOND_PASS_ONLY;
2914             conf_set_str(conf, CONF_wintitle, val);
2915
2916         } else if (!strcmp(p, "-log")) {
2917             Filename *fn;
2918             EXPECTS_ARG;
2919             SECOND_PASS_ONLY;
2920             fn = filename_from_str(val);
2921             conf_set_filename(conf, CONF_logfilename, fn);
2922             conf_set_int(conf, CONF_logtype, LGTYP_DEBUG);
2923             filename_free(fn);
2924
2925         } else if (!strcmp(p, "-ut-") || !strcmp(p, "+ut")) {
2926             SECOND_PASS_ONLY;
2927             conf_set_int(conf, CONF_stamp_utmp, 0);
2928
2929         } else if (!strcmp(p, "-ut")) {
2930             SECOND_PASS_ONLY;
2931             conf_set_int(conf, CONF_stamp_utmp, 1);
2932
2933         } else if (!strcmp(p, "-ls-") || !strcmp(p, "+ls")) {
2934             SECOND_PASS_ONLY;
2935             conf_set_int(conf, CONF_login_shell, 0);
2936
2937         } else if (!strcmp(p, "-ls")) {
2938             SECOND_PASS_ONLY;
2939             conf_set_int(conf, CONF_login_shell, 1);
2940
2941         } else if (!strcmp(p, "-nethack")) {
2942             SECOND_PASS_ONLY;
2943             conf_set_int(conf, CONF_nethack_keypad, 1);
2944
2945         } else if (!strcmp(p, "-sb-") || !strcmp(p, "+sb")) {
2946             SECOND_PASS_ONLY;
2947             conf_set_int(conf, CONF_scrollbar, 0);
2948
2949         } else if (!strcmp(p, "-sb")) {
2950             SECOND_PASS_ONLY;
2951             conf_set_int(conf, CONF_scrollbar, 1);
2952
2953         } else if (!strcmp(p, "-name")) {
2954             EXPECTS_ARG;
2955             app_name = val;
2956
2957         } else if (!strcmp(p, "-xrm")) {
2958             EXPECTS_ARG;
2959             provide_xrm_string(val);
2960
2961         } else if(!strcmp(p, "-help") || !strcmp(p, "--help")) {
2962             help(stdout);
2963             exit(0);
2964
2965         } else if(!strcmp(p, "-version") || !strcmp(p, "--version")) {
2966             version(stdout);
2967             exit(0);
2968
2969         } else if (!strcmp(p, "-pgpfp")) {
2970             pgp_fingerprints();
2971             exit(1);
2972
2973         } else if(p[0] != '-' && (!do_everything ||
2974                                   process_nonoption_arg(p, conf,
2975                                                         allow_launch))) {
2976             /* do nothing */
2977
2978         } else {
2979             err = 1;
2980             fprintf(stderr, "%s: unrecognized option '%s'\n", appname, p);
2981         }
2982     }
2983
2984     return err;
2985 }
2986
2987 int uxsel_input_add(int fd, int rwx) {
2988     int flags = 0;
2989     if (rwx & 1) flags |= GDK_INPUT_READ;
2990     if (rwx & 2) flags |= GDK_INPUT_WRITE;
2991     if (rwx & 4) flags |= GDK_INPUT_EXCEPTION;
2992     assert(flags);
2993     return gdk_input_add(fd, flags, fd_input_func, NULL);
2994 }
2995
2996 void uxsel_input_remove(int id) {
2997     gdk_input_remove(id);
2998 }
2999
3000 char *setup_fonts_ucs(struct gui_data *inst)
3001 {
3002     int shadowbold = conf_get_int(inst->conf, CONF_shadowbold);
3003     int shadowboldoffset = conf_get_int(inst->conf, CONF_shadowboldoffset);
3004     FontSpec *fs;
3005     unifont *fonts[4];
3006     int i;
3007
3008     fs = conf_get_fontspec(inst->conf, CONF_font);
3009     fonts[0] = multifont_create(inst->area, fs->name, FALSE, FALSE,
3010                                 shadowboldoffset, shadowbold);
3011     if (!fonts[0]) {
3012         return dupprintf("unable to load font \"%s\"", fs->name);
3013     }
3014
3015     fs = conf_get_fontspec(inst->conf, CONF_boldfont);
3016     if (shadowbold || !fs->name[0]) {
3017         fonts[1] = NULL;
3018     } else {
3019         fonts[1] = multifont_create(inst->area, fs->name, FALSE, TRUE,
3020                                     shadowboldoffset, shadowbold);
3021         if (!fonts[1]) {
3022             if (fonts[0])
3023                 unifont_destroy(fonts[0]);
3024             return dupprintf("unable to load bold font \"%s\"", fs->name);
3025         }
3026     }
3027
3028     fs = conf_get_fontspec(inst->conf, CONF_widefont);
3029     if (fs->name[0]) {
3030         fonts[2] = multifont_create(inst->area, fs->name, TRUE, FALSE,
3031                                     shadowboldoffset, shadowbold);
3032         if (!fonts[2]) {
3033             for (i = 0; i < 2; i++)
3034                 if (fonts[i])
3035                     unifont_destroy(fonts[i]);
3036             return dupprintf("unable to load wide font \"%s\"", fs->name);
3037         }
3038     } else {
3039         fonts[2] = NULL;
3040     }
3041
3042     fs = conf_get_fontspec(inst->conf, CONF_wideboldfont);
3043     if (shadowbold || !fs->name[0]) {
3044         fonts[3] = NULL;
3045     } else {
3046         fonts[3] = multifont_create(inst->area, fs->name, TRUE, TRUE,
3047                                     shadowboldoffset, shadowbold);
3048         if (!fonts[3]) {
3049             for (i = 0; i < 3; i++)
3050                 if (fonts[i])
3051                     unifont_destroy(fonts[i]);
3052             return dupprintf("unable to load wide bold font \"%s\"", fs->name);
3053         }
3054     }
3055
3056     /*
3057      * Now we've got past all the possible error conditions, we can
3058      * actually update our state.
3059      */
3060
3061     for (i = 0; i < 4; i++) {
3062         if (inst->fonts[i])
3063             unifont_destroy(inst->fonts[i]);
3064         inst->fonts[i] = fonts[i];
3065     }
3066
3067     inst->font_width = inst->fonts[0]->width;
3068     inst->font_height = inst->fonts[0]->height;
3069
3070     inst->direct_to_font = init_ucs(&inst->ucsdata,
3071                                     conf_get_str(inst->conf, CONF_line_codepage),
3072                                     conf_get_int(inst->conf, CONF_utf8_override),
3073                                     inst->fonts[0]->public_charset,
3074                                     conf_get_int(inst->conf, CONF_vtmode));
3075
3076     return NULL;
3077 }
3078
3079 void set_geom_hints(struct gui_data *inst)
3080 {
3081     GdkGeometry geom;
3082     geom.min_width = inst->font_width + 2*inst->window_border;
3083     geom.min_height = inst->font_height + 2*inst->window_border;
3084     geom.max_width = geom.max_height = -1;
3085     geom.base_width = 2*inst->window_border;
3086     geom.base_height = 2*inst->window_border;
3087     geom.width_inc = inst->font_width;
3088     geom.height_inc = inst->font_height;
3089     geom.min_aspect = geom.max_aspect = 0;
3090     gtk_window_set_geometry_hints(GTK_WINDOW(inst->window), inst->area, &geom,
3091                                   GDK_HINT_MIN_SIZE | GDK_HINT_BASE_SIZE |
3092                                   GDK_HINT_RESIZE_INC);
3093 }
3094
3095 void clear_scrollback_menuitem(GtkMenuItem *item, gpointer data)
3096 {
3097     struct gui_data *inst = (struct gui_data *)data;
3098     term_clrsb(inst->term);
3099 }
3100
3101 void reset_terminal_menuitem(GtkMenuItem *item, gpointer data)
3102 {
3103     struct gui_data *inst = (struct gui_data *)data;
3104     term_pwron(inst->term, TRUE);
3105     if (inst->ldisc)
3106         ldisc_echoedit_update(inst->ldisc);
3107 }
3108
3109 void copy_all_menuitem(GtkMenuItem *item, gpointer data)
3110 {
3111     struct gui_data *inst = (struct gui_data *)data;
3112     term_copyall(inst->term);
3113 }
3114
3115 void special_menuitem(GtkMenuItem *item, gpointer data)
3116 {
3117     struct gui_data *inst = (struct gui_data *)data;
3118     int code = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(item),
3119                                                  "user-data"));
3120
3121     if (inst->back)
3122         inst->back->special(inst->backhandle, code);
3123 }
3124
3125 void about_menuitem(GtkMenuItem *item, gpointer data)
3126 {
3127     struct gui_data *inst = (struct gui_data *)data;
3128     about_box(inst->window);
3129 }
3130
3131 void event_log_menuitem(GtkMenuItem *item, gpointer data)
3132 {
3133     struct gui_data *inst = (struct gui_data *)data;
3134     showeventlog(inst->eventlogstuff, inst->window);
3135 }
3136
3137 void change_settings_menuitem(GtkMenuItem *item, gpointer data)
3138 {
3139     /* This maps colour indices in inst->conf to those used in inst->cols. */
3140     static const int ww[] = {
3141         256, 257, 258, 259, 260, 261,
3142         0, 8, 1, 9, 2, 10, 3, 11,
3143         4, 12, 5, 13, 6, 14, 7, 15
3144     };
3145     struct gui_data *inst = (struct gui_data *)data;
3146     char *title;
3147     Conf *oldconf, *newconf;
3148     int i, j, need_size;
3149
3150     assert(lenof(ww) == NCFGCOLOURS);
3151
3152     if (inst->reconfiguring)
3153       return;
3154     else
3155       inst->reconfiguring = TRUE;
3156
3157     title = dupcat(appname, " Reconfiguration", NULL);
3158
3159     oldconf = inst->conf;
3160     newconf = conf_copy(inst->conf);
3161
3162     if (do_config_box(title, newconf, 1,
3163                       inst->back?inst->back->cfg_info(inst->backhandle):0)) {
3164         inst->conf = newconf;
3165
3166         /* Pass new config data to the logging module */
3167         log_reconfig(inst->logctx, inst->conf);
3168         /*
3169          * Flush the line discipline's edit buffer in the case
3170          * where local editing has just been disabled.
3171          */
3172         if (inst->ldisc) {
3173             ldisc_configure(inst->ldisc, inst->conf);
3174             ldisc_echoedit_update(inst->ldisc);
3175         }
3176         /* Pass new config data to the terminal */
3177         term_reconfig(inst->term, inst->conf);
3178         /* Pass new config data to the back end */
3179         if (inst->back)
3180             inst->back->reconfig(inst->backhandle, inst->conf);
3181
3182         cache_conf_values(inst);
3183
3184         /*
3185          * Just setting inst->conf is sufficient to cause colour
3186          * setting changes to appear on the next ESC]R palette
3187          * reset. But we should also check whether any colour
3188          * settings have been changed, and revert the ones that have
3189          * to the new default, on the assumption that the user is
3190          * most likely to want an immediate update.
3191          */
3192         for (i = 0; i < NCFGCOLOURS; i++) {
3193             for (j = 0; j < 3; j++)
3194                 if (conf_get_int_int(oldconf, CONF_colours, i*3+j) !=
3195                     conf_get_int_int(newconf, CONF_colours, i*3+j))
3196                     break;
3197             if (j < 3) {
3198                 real_palette_set(inst, ww[i],
3199                                  conf_get_int_int(newconf,CONF_colours,i*3+0),
3200                                  conf_get_int_int(newconf,CONF_colours,i*3+1),
3201                                  conf_get_int_int(newconf,CONF_colours,i*3+2));
3202
3203                 /*
3204                  * If the default background has changed, we must
3205                  * repaint the space in between the window border
3206                  * and the text area.
3207                  */
3208                 if (ww[i] == 258) {
3209                     set_window_background(inst);
3210                     draw_backing_rect(inst);
3211                 }
3212             }
3213         }
3214
3215         /*
3216          * If the scrollbar needs to be shown, hidden, or moved
3217          * from one end to the other of the window, do so now.
3218          */
3219         if (conf_get_int(oldconf, CONF_scrollbar) !=
3220             conf_get_int(newconf, CONF_scrollbar)) {
3221             if (conf_get_int(newconf, CONF_scrollbar))
3222                 gtk_widget_show(inst->sbar);
3223             else
3224                 gtk_widget_hide(inst->sbar);
3225         }
3226         if (conf_get_int(oldconf, CONF_scrollbar_on_left) !=
3227             conf_get_int(newconf, CONF_scrollbar_on_left)) {
3228             gtk_box_reorder_child(inst->hbox, inst->sbar,
3229                                   conf_get_int(newconf, CONF_scrollbar_on_left)
3230                                   ? 0 : 1);
3231         }
3232
3233         /*
3234          * Change the window title, if required.
3235          */
3236         if (strcmp(conf_get_str(oldconf, CONF_wintitle),
3237                    conf_get_str(newconf, CONF_wintitle)))
3238             set_title(inst, conf_get_str(newconf, CONF_wintitle));
3239         set_window_titles(inst);
3240
3241         /*
3242          * Redo the whole tangled fonts and Unicode mess if
3243          * necessary.
3244          */
3245         need_size = FALSE;
3246         if (strcmp(conf_get_fontspec(oldconf, CONF_font)->name,
3247                    conf_get_fontspec(newconf, CONF_font)->name) ||
3248             strcmp(conf_get_fontspec(oldconf, CONF_boldfont)->name,
3249                    conf_get_fontspec(newconf, CONF_boldfont)->name) ||
3250             strcmp(conf_get_fontspec(oldconf, CONF_widefont)->name,
3251                    conf_get_fontspec(newconf, CONF_widefont)->name) ||
3252             strcmp(conf_get_fontspec(oldconf, CONF_wideboldfont)->name,
3253                    conf_get_fontspec(newconf, CONF_wideboldfont)->name) ||
3254             strcmp(conf_get_str(oldconf, CONF_line_codepage),
3255                    conf_get_str(newconf, CONF_line_codepage)) ||
3256             conf_get_int(oldconf, CONF_utf8_override) !=
3257             conf_get_int(newconf, CONF_utf8_override) ||
3258             conf_get_int(oldconf, CONF_vtmode) !=
3259             conf_get_int(newconf, CONF_vtmode) ||
3260             conf_get_int(oldconf, CONF_shadowbold) !=
3261             conf_get_int(newconf, CONF_shadowbold) ||
3262             conf_get_int(oldconf, CONF_shadowboldoffset) !=
3263             conf_get_int(newconf, CONF_shadowboldoffset)) {
3264             char *errmsg = setup_fonts_ucs(inst);
3265             if (errmsg) {
3266                 char *msgboxtext =
3267                     dupprintf("Could not change fonts in terminal window: %s\n",
3268                               errmsg);
3269                 messagebox(inst->window, "Font setup error", msgboxtext,
3270                            string_width("Could not change fonts in terminal window:"),
3271                            "OK", 'o', +1, 1,
3272                            NULL);
3273                 sfree(msgboxtext);
3274                 sfree(errmsg);
3275             } else {
3276                 need_size = TRUE;
3277             }
3278         }
3279
3280         /*
3281          * Resize the window.
3282          */
3283         if (conf_get_int(oldconf, CONF_width) !=
3284             conf_get_int(newconf, CONF_width) ||
3285             conf_get_int(oldconf, CONF_height) !=
3286             conf_get_int(newconf, CONF_height) ||
3287             conf_get_int(oldconf, CONF_window_border) !=
3288             conf_get_int(newconf, CONF_window_border) ||
3289             need_size) {
3290             set_geom_hints(inst);
3291             request_resize(inst, conf_get_int(newconf, CONF_width),
3292                            conf_get_int(newconf, CONF_height));
3293         } else {
3294             /*
3295              * The above will have caused a call to term_size() for
3296              * us if it happened. If the user has fiddled with only
3297              * the scrollback size, the above will not have
3298              * happened and we will need an explicit term_size()
3299              * here.
3300              */
3301             if (conf_get_int(oldconf, CONF_savelines) !=
3302                 conf_get_int(newconf, CONF_savelines))
3303                 term_size(inst->term, inst->term->rows, inst->term->cols,
3304                           conf_get_int(newconf, CONF_savelines));
3305         }
3306
3307         term_invalidate(inst->term);
3308
3309         /*
3310          * We do an explicit full redraw here to ensure the window
3311          * border has been redrawn as well as the text area.
3312          */
3313         gtk_widget_queue_draw(inst->area);
3314
3315         conf_free(oldconf);
3316     } else {
3317         conf_free(newconf);
3318     }
3319     sfree(title);
3320     inst->reconfiguring = FALSE;
3321 }
3322
3323 void fork_and_exec_self(struct gui_data *inst, int fd_to_close, ...)
3324 {
3325     /*
3326      * Re-execing ourself is not an exact science under Unix. I do
3327      * the best I can by using /proc/self/exe if available and by
3328      * assuming argv[0] can be found on $PATH if not.
3329      * 
3330      * Note that we also have to reconstruct the elements of the
3331      * original argv which gtk swallowed, since the user wants the
3332      * new session to appear on the same X display as the old one.
3333      */
3334     char **args;
3335     va_list ap;
3336     int i, n;
3337     int pid;
3338
3339     /*
3340      * Collect the arguments with which to re-exec ourself.
3341      */
3342     va_start(ap, fd_to_close);
3343     n = 2;                             /* progname and terminating NULL */
3344     n += inst->ngtkargs;
3345     while (va_arg(ap, char *) != NULL)
3346         n++;
3347     va_end(ap);
3348
3349     args = snewn(n, char *);
3350     args[0] = inst->progname;
3351     args[n-1] = NULL;
3352     for (i = 0; i < inst->ngtkargs; i++)
3353         args[i+1] = inst->gtkargvstart[i];
3354
3355     i++;
3356     va_start(ap, fd_to_close);
3357     while ((args[i++] = va_arg(ap, char *)) != NULL);
3358     va_end(ap);
3359
3360     assert(i == n);
3361
3362     /*
3363      * Do the double fork.
3364      */
3365     pid = fork();
3366     if (pid < 0) {
3367         perror("fork");
3368         sfree(args);
3369         return;
3370     }
3371
3372     if (pid == 0) {
3373         int pid2 = fork();
3374         if (pid2 < 0) {
3375             perror("fork");
3376             _exit(1);
3377         } else if (pid2 > 0) {
3378             /*
3379              * First child has successfully forked second child. My
3380              * Work Here Is Done. Note the use of _exit rather than
3381              * exit: the latter appears to cause destroy messages
3382              * to be sent to the X server. I suspect gtk uses
3383              * atexit.
3384              */
3385             _exit(0);
3386         }
3387
3388         /*
3389          * If we reach here, we are the second child, so we now
3390          * actually perform the exec.
3391          */
3392         if (fd_to_close >= 0)
3393             close(fd_to_close);
3394
3395         execv("/proc/self/exe", args);
3396         execvp(inst->progname, args);
3397         perror("exec");
3398         _exit(127);
3399
3400     } else {
3401         int status;
3402         sfree(args);
3403         waitpid(pid, &status, 0);
3404     }
3405
3406 }
3407
3408 void dup_session_menuitem(GtkMenuItem *item, gpointer gdata)
3409 {
3410     struct gui_data *inst = (struct gui_data *)gdata;
3411     /*
3412      * For this feature we must marshal conf and (possibly) pty_argv
3413      * into a byte stream, create a pipe, and send this byte stream
3414      * to the child through the pipe.
3415      */
3416     int i, ret, sersize, size;
3417     char *data;
3418     char option[80];
3419     int pipefd[2];
3420
3421     if (pipe(pipefd) < 0) {
3422         perror("pipe");
3423         return;
3424     }
3425
3426     size = sersize = conf_serialised_size(inst->conf);
3427     if (use_pty_argv && pty_argv) {
3428         for (i = 0; pty_argv[i]; i++)
3429             size += strlen(pty_argv[i]) + 1;
3430     }
3431
3432     data = snewn(size, char);
3433     conf_serialise(inst->conf, data);
3434     if (use_pty_argv && pty_argv) {
3435         int p = sersize;
3436         for (i = 0; pty_argv[i]; i++) {
3437             strcpy(data + p, pty_argv[i]);
3438             p += strlen(pty_argv[i]) + 1;
3439         }
3440         assert(p == size);
3441     }
3442
3443     sprintf(option, "---[%d,%d]", pipefd[0], size);
3444     noncloexec(pipefd[0]);
3445     fork_and_exec_self(inst, pipefd[1], option, NULL);
3446     close(pipefd[0]);
3447
3448     i = ret = 0;
3449     while (i < size && (ret = write(pipefd[1], data + i, size - i)) > 0)
3450         i += ret;
3451     if (ret < 0)
3452         perror("write to pipe");
3453     close(pipefd[1]);
3454     sfree(data);
3455 }
3456
3457 int read_dupsession_data(struct gui_data *inst, Conf *conf, char *arg)
3458 {
3459     int fd, i, ret, size, size_used;
3460     char *data;
3461
3462     if (sscanf(arg, "---[%d,%d]", &fd, &size) != 2) {
3463         fprintf(stderr, "%s: malformed magic argument `%s'\n", appname, arg);
3464         exit(1);
3465     }
3466
3467     data = snewn(size, char);
3468     i = ret = 0;
3469     while (i < size && (ret = read(fd, data + i, size - i)) > 0)
3470         i += ret;
3471     if (ret < 0) {
3472         perror("read from pipe");
3473         exit(1);
3474     } else if (i < size) {
3475         fprintf(stderr, "%s: unexpected EOF in Duplicate Session data\n",
3476                 appname);
3477         exit(1);
3478     }
3479
3480     size_used = conf_deserialise(conf, data, size);
3481     if (use_pty_argv && size > size_used) {
3482         int n = 0;
3483         i = size_used;
3484         while (i < size) {
3485             while (i < size && data[i]) i++;
3486             if (i >= size) {
3487                 fprintf(stderr, "%s: malformed Duplicate Session data\n",
3488                         appname);
3489                 exit(1);
3490             }
3491             i++;
3492             n++;
3493         }
3494         pty_argv = snewn(n+1, char *);
3495         pty_argv[n] = NULL;
3496         n = 0;
3497         i = size_used;
3498         while (i < size) {
3499             char *p = data + i;
3500             while (i < size && data[i]) i++;
3501             assert(i < size);
3502             i++;
3503             pty_argv[n++] = dupstr(p);
3504         }
3505     }
3506
3507     sfree(data);
3508
3509     return 0;
3510 }
3511
3512 void new_session_menuitem(GtkMenuItem *item, gpointer data)
3513 {
3514     struct gui_data *inst = (struct gui_data *)data;
3515
3516     fork_and_exec_self(inst, -1, NULL);
3517 }
3518
3519 void restart_session_menuitem(GtkMenuItem *item, gpointer data)
3520 {
3521     struct gui_data *inst = (struct gui_data *)data;
3522
3523     if (!inst->back) {
3524         logevent(inst, "----- Session restarted -----");
3525         term_pwron(inst->term, FALSE);
3526         start_backend(inst);
3527         inst->exited = FALSE;
3528     }
3529 }
3530
3531 void saved_session_menuitem(GtkMenuItem *item, gpointer data)
3532 {
3533     struct gui_data *inst = (struct gui_data *)data;
3534     char *str = (char *)g_object_get_data(G_OBJECT(item), "user-data");
3535
3536     fork_and_exec_self(inst, -1, "-load", str, NULL);
3537 }
3538
3539 void saved_session_freedata(GtkMenuItem *item, gpointer data)
3540 {
3541     char *str = (char *)g_object_get_data(G_OBJECT(item), "user-data");
3542
3543     sfree(str);
3544 }
3545
3546 static void update_savedsess_menu(GtkMenuItem *menuitem, gpointer data)
3547 {
3548     struct gui_data *inst = (struct gui_data *)data;
3549     struct sesslist sesslist;
3550     int i;
3551
3552     gtk_container_foreach(GTK_CONTAINER(inst->sessionsmenu),
3553                           (GtkCallback)gtk_widget_destroy, NULL);
3554
3555     get_sesslist(&sesslist, TRUE);
3556     /* skip sesslist.sessions[0] == Default Settings */
3557     for (i = 1; i < sesslist.nsessions; i++) {
3558         GtkWidget *menuitem =
3559             gtk_menu_item_new_with_label(sesslist.sessions[i]);
3560         gtk_container_add(GTK_CONTAINER(inst->sessionsmenu), menuitem);
3561         gtk_widget_show(menuitem);
3562         g_object_set_data(G_OBJECT(menuitem), "user-data",
3563                           dupstr(sesslist.sessions[i]));
3564         g_signal_connect(G_OBJECT(menuitem), "activate",
3565                          G_CALLBACK(saved_session_menuitem),
3566                          inst);
3567         g_signal_connect(G_OBJECT(menuitem), "destroy",
3568                          G_CALLBACK(saved_session_freedata),
3569                          inst);
3570     }
3571     if (sesslist.nsessions <= 1) {
3572         GtkWidget *menuitem =
3573             gtk_menu_item_new_with_label("(No sessions)");
3574         gtk_widget_set_sensitive(menuitem, FALSE);
3575         gtk_container_add(GTK_CONTAINER(inst->sessionsmenu), menuitem);
3576         gtk_widget_show(menuitem);
3577     }
3578     get_sesslist(&sesslist, FALSE); /* free up */
3579 }
3580
3581 void set_window_icon(GtkWidget *window, const char *const *const *icon,
3582                      int n_icon)
3583 {
3584     GdkPixmap *iconpm;
3585     GdkBitmap *iconmask;
3586 #if GTK_CHECK_VERSION(2,0,0)
3587     GList *iconlist;
3588     int n;
3589 #endif
3590
3591     if (!n_icon)
3592         return;
3593
3594     gtk_widget_realize(window);
3595     iconpm = gdk_pixmap_create_from_xpm_d(gtk_widget_get_window(window),
3596                                           &iconmask, NULL, (gchar **)icon[0]);
3597     gdk_window_set_icon(gtk_widget_get_window(window), NULL, iconpm, iconmask);
3598
3599 #if GTK_CHECK_VERSION(2,0,0)
3600     iconlist = NULL;
3601     for (n = 0; n < n_icon; n++) {
3602         iconlist =
3603             g_list_append(iconlist,
3604                           gdk_pixbuf_new_from_xpm_data((const gchar **)
3605                                                        icon[n]));
3606     }
3607     gdk_window_set_icon_list(gtk_widget_get_window(window), iconlist);
3608 #endif
3609 }
3610
3611 void update_specials_menu(void *frontend)
3612 {
3613     struct gui_data *inst = (struct gui_data *)frontend;
3614
3615     const struct telnet_special *specials;
3616
3617     if (inst->back)
3618         specials = inst->back->get_specials(inst->backhandle);
3619     else
3620         specials = NULL;
3621
3622     /* I believe this disposes of submenus too. */
3623     gtk_container_foreach(GTK_CONTAINER(inst->specialsmenu),
3624                           (GtkCallback)gtk_widget_destroy, NULL);
3625     if (specials) {
3626         int i;
3627         GtkWidget *menu = inst->specialsmenu;
3628         /* A lame "stack" for submenus that will do for now. */
3629         GtkWidget *saved_menu = NULL;
3630         int nesting = 1;
3631         for (i = 0; nesting > 0; i++) {
3632             GtkWidget *menuitem = NULL;
3633             switch (specials[i].code) {
3634               case TS_SUBMENU:
3635                 assert (nesting < 2);
3636                 saved_menu = menu; /* XXX lame stacking */
3637                 menu = gtk_menu_new();
3638                 menuitem = gtk_menu_item_new_with_label(specials[i].name);
3639                 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), menu);
3640                 gtk_container_add(GTK_CONTAINER(saved_menu), menuitem);
3641                 gtk_widget_show(menuitem);
3642                 menuitem = NULL;
3643                 nesting++;
3644                 break;
3645               case TS_EXITMENU:
3646                 nesting--;
3647                 if (nesting) {
3648                     menu = saved_menu; /* XXX lame stacking */
3649                     saved_menu = NULL;
3650                 }
3651                 break;
3652               case TS_SEP:
3653                 menuitem = gtk_menu_item_new();
3654                 break;
3655               default:
3656                 menuitem = gtk_menu_item_new_with_label(specials[i].name);
3657                 g_object_set_data(G_OBJECT(menuitem), "user-data",
3658                                   GINT_TO_POINTER(specials[i].code));
3659                 g_signal_connect(G_OBJECT(menuitem), "activate",
3660                                  G_CALLBACK(special_menuitem), inst);
3661                 break;
3662             }
3663             if (menuitem) {
3664                 gtk_container_add(GTK_CONTAINER(menu), menuitem);
3665                 gtk_widget_show(menuitem);
3666             }
3667         }
3668         gtk_widget_show(inst->specialsitem1);
3669         gtk_widget_show(inst->specialsitem2);
3670     } else {
3671         gtk_widget_hide(inst->specialsitem1);
3672         gtk_widget_hide(inst->specialsitem2);
3673     }
3674 }
3675
3676 static void start_backend(struct gui_data *inst)
3677 {
3678     extern Backend *select_backend(Conf *conf);
3679     char *realhost;
3680     const char *error;
3681     char *s;
3682
3683     inst->back = select_backend(inst->conf);
3684
3685     error = inst->back->init((void *)inst, &inst->backhandle,
3686                              inst->conf,
3687                              conf_get_str(inst->conf, CONF_host),
3688                              conf_get_int(inst->conf, CONF_port),
3689                              &realhost,
3690                              conf_get_int(inst->conf, CONF_tcp_nodelay),
3691                              conf_get_int(inst->conf, CONF_tcp_keepalives));
3692
3693     if (error) {
3694         char *msg = dupprintf("Unable to open connection to %s:\n%s",
3695                               conf_get_str(inst->conf, CONF_host), error);
3696         inst->exited = TRUE;
3697         fatal_message_box(inst->window, msg);
3698         sfree(msg);
3699         exit(0);
3700     }
3701
3702     s = conf_get_str(inst->conf, CONF_wintitle);
3703     if (s[0]) {
3704         set_title_and_icon(inst, s, s);
3705     } else {
3706         char *title = make_default_wintitle(realhost);
3707         set_title_and_icon(inst, title, title);
3708         sfree(title);
3709     }
3710     sfree(realhost);
3711
3712     inst->back->provide_logctx(inst->backhandle, inst->logctx);
3713
3714     term_provide_resize_fn(inst->term, inst->back->size, inst->backhandle);
3715
3716     inst->ldisc =
3717         ldisc_create(inst->conf, inst->term, inst->back, inst->backhandle,
3718                      inst);
3719
3720     gtk_widget_set_sensitive(inst->restartitem, FALSE);
3721 }
3722
3723 int pt_main(int argc, char **argv)
3724 {
3725     extern int cfgbox(Conf *conf);
3726     struct gui_data *inst;
3727
3728     setlocale(LC_CTYPE, "");
3729
3730     /*
3731      * Create an instance structure and initialise to zeroes
3732      */
3733     inst = snew(struct gui_data);
3734     memset(inst, 0, sizeof(*inst));
3735     inst->alt_keycode = -1;            /* this one needs _not_ to be zero */
3736     inst->busy_status = BUSY_NOT;
3737     inst->conf = conf_new();
3738     inst->wintitle = inst->icontitle = NULL;
3739     inst->quit_fn_scheduled = FALSE;
3740     inst->idle_fn_scheduled = FALSE;
3741
3742     /* defer any child exit handling until we're ready to deal with
3743      * it */
3744     block_signal(SIGCHLD, 1);
3745
3746     inst->progname = argv[0];
3747     /*
3748      * Copy the original argv before letting gtk_init fiddle with
3749      * it. It will be required later.
3750      */
3751     {
3752         int i, oldargc;
3753         inst->gtkargvstart = snewn(argc-1, char *);
3754         for (i = 1; i < argc; i++)
3755             inst->gtkargvstart[i-1] = dupstr(argv[i]);
3756         oldargc = argc;
3757         gtk_init(&argc, &argv);
3758         inst->ngtkargs = oldargc - argc;
3759     }
3760
3761     if (argc > 1 && !strncmp(argv[1], "---", 3)) {
3762         read_dupsession_data(inst, inst->conf, argv[1]);
3763         /* Splatter this argument so it doesn't clutter a ps listing */
3764         smemclr(argv[1], strlen(argv[1]));
3765     } else {
3766         /* By default, we bring up the config dialog, rather than launching
3767          * a session. This gets set to TRUE if something happens to change
3768          * that (e.g., a hostname is specified on the command-line). */
3769         int allow_launch = FALSE;
3770         if (do_cmdline(argc, argv, 0, &allow_launch, inst, inst->conf))
3771             exit(1);                   /* pre-defaults pass to get -class */
3772         do_defaults(NULL, inst->conf);
3773         if (do_cmdline(argc, argv, 1, &allow_launch, inst, inst->conf))
3774             exit(1);                   /* post-defaults, do everything */
3775
3776         cmdline_run_saved(inst->conf);
3777
3778         if (loaded_session)
3779             allow_launch = TRUE;
3780
3781         if ((!allow_launch || !conf_launchable(inst->conf)) &&
3782             !cfgbox(inst->conf))
3783             exit(0);                   /* config box hit Cancel */
3784     }
3785
3786     if (!compound_text_atom)
3787         compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE);
3788     if (!utf8_string_atom)
3789         utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
3790
3791     inst->area = gtk_drawing_area_new();
3792
3793 #if GTK_CHECK_VERSION(2,0,0)
3794     inst->imc = gtk_im_multicontext_new();
3795 #endif
3796
3797     {
3798         char *errmsg = setup_fonts_ucs(inst);
3799         if (errmsg) {
3800             fprintf(stderr, "%s: %s\n", appname, errmsg);
3801             exit(1);
3802         }
3803     }
3804     init_cutbuffers();
3805
3806     inst->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3807     {
3808         const char *winclass = conf_get_str(inst->conf, CONF_winclass);
3809         if (*winclass)
3810             gtk_window_set_wmclass(GTK_WINDOW(inst->window),
3811                                    winclass, winclass);
3812     }
3813
3814     /*
3815      * Set up the colour map.
3816      */
3817     palette_reset(inst);
3818
3819     inst->width = conf_get_int(inst->conf, CONF_width);
3820     inst->height = conf_get_int(inst->conf, CONF_height);
3821     cache_conf_values(inst);
3822
3823     gtk_drawing_area_size(GTK_DRAWING_AREA(inst->area),
3824                           inst->font_width * inst->width + 2*inst->window_border,
3825                           inst->font_height * inst->height + 2*inst->window_border);
3826     inst->sbar_adjust = GTK_ADJUSTMENT(gtk_adjustment_new(0,0,0,0,0,0));
3827     inst->sbar = gtk_vscrollbar_new(inst->sbar_adjust);
3828     inst->hbox = GTK_BOX(gtk_hbox_new(FALSE, 0));
3829     /*
3830      * We always create the scrollbar; it remains invisible if
3831      * unwanted, so we can pop it up quickly if it suddenly becomes
3832      * desirable.
3833      */
3834     if (conf_get_int(inst->conf, CONF_scrollbar_on_left))
3835         gtk_box_pack_start(inst->hbox, inst->sbar, FALSE, FALSE, 0);
3836     gtk_box_pack_start(inst->hbox, inst->area, TRUE, TRUE, 0);
3837     if (!conf_get_int(inst->conf, CONF_scrollbar_on_left))
3838         gtk_box_pack_start(inst->hbox, inst->sbar, FALSE, FALSE, 0);
3839
3840     gtk_container_add(GTK_CONTAINER(inst->window), GTK_WIDGET(inst->hbox));
3841
3842     set_geom_hints(inst);
3843
3844     gtk_widget_show(inst->area);
3845     if (conf_get_int(inst->conf, CONF_scrollbar))
3846         gtk_widget_show(inst->sbar);
3847     else
3848         gtk_widget_hide(inst->sbar);
3849     gtk_widget_show(GTK_WIDGET(inst->hbox));
3850
3851 #if GTK_CHECK_VERSION(2,0,0)
3852     if (inst->geometry) {
3853         gtk_window_parse_geometry(GTK_WINDOW(inst->window), inst->geometry);
3854     }
3855 #else
3856     if (inst->gotpos) {
3857         int x = inst->xpos, y = inst->ypos;
3858         GtkRequisition req;
3859         gtk_widget_size_request(GTK_WIDGET(inst->window), &req);
3860         if (inst->gravity & 1) x += gdk_screen_width() - req.width;
3861         if (inst->gravity & 2) y += gdk_screen_height() - req.height;
3862         gtk_window_set_position(GTK_WINDOW(inst->window), GTK_WIN_POS_NONE);
3863         gtk_widget_set_uposition(GTK_WIDGET(inst->window), x, y);
3864     }
3865 #endif
3866
3867     g_signal_connect(G_OBJECT(inst->window), "destroy",
3868                      G_CALLBACK(destroy), inst);
3869     g_signal_connect(G_OBJECT(inst->window), "delete_event",
3870                      G_CALLBACK(delete_window), inst);
3871     g_signal_connect(G_OBJECT(inst->window), "key_press_event",
3872                      G_CALLBACK(key_event), inst);
3873     g_signal_connect(G_OBJECT(inst->window), "key_release_event",
3874                      G_CALLBACK(key_event), inst);
3875     g_signal_connect(G_OBJECT(inst->window), "focus_in_event",
3876                      G_CALLBACK(focus_event), inst);
3877     g_signal_connect(G_OBJECT(inst->window), "focus_out_event",
3878                      G_CALLBACK(focus_event), inst);
3879     g_signal_connect(G_OBJECT(inst->area), "configure_event",
3880                      G_CALLBACK(configure_area), inst);
3881     g_signal_connect(G_OBJECT(inst->area), "expose_event",
3882                      G_CALLBACK(expose_area), inst);
3883     g_signal_connect(G_OBJECT(inst->area), "button_press_event",
3884                      G_CALLBACK(button_event), inst);
3885     g_signal_connect(G_OBJECT(inst->area), "button_release_event",
3886                      G_CALLBACK(button_event), inst);
3887 #if GTK_CHECK_VERSION(2,0,0)
3888     g_signal_connect(G_OBJECT(inst->area), "scroll_event",
3889                      G_CALLBACK(scroll_event), inst);
3890 #endif
3891     g_signal_connect(G_OBJECT(inst->area), "motion_notify_event",
3892                      G_CALLBACK(motion_event), inst);
3893     g_signal_connect(G_OBJECT(inst->area), "selection_received",
3894                      G_CALLBACK(selection_received), inst);
3895     g_signal_connect(G_OBJECT(inst->area), "selection_get",
3896                      G_CALLBACK(selection_get), inst);
3897     g_signal_connect(G_OBJECT(inst->area), "selection_clear_event",
3898                      G_CALLBACK(selection_clear), inst);
3899 #if GTK_CHECK_VERSION(2,0,0)
3900     g_signal_connect(G_OBJECT(inst->imc), "commit",
3901                      G_CALLBACK(input_method_commit_event), inst);
3902 #endif
3903     if (conf_get_int(inst->conf, CONF_scrollbar))
3904         g_signal_connect(G_OBJECT(inst->sbar_adjust), "value_changed",
3905                          G_CALLBACK(scrollbar_moved), inst);
3906     gtk_widget_add_events(GTK_WIDGET(inst->area),
3907                           GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK |
3908                           GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
3909                           GDK_POINTER_MOTION_MASK | GDK_BUTTON_MOTION_MASK);
3910
3911     {
3912         extern const char *const *const main_icon[];
3913         extern const int n_main_icon;
3914         set_window_icon(inst->window, main_icon, n_main_icon);
3915     }
3916
3917     gtk_widget_show(inst->window);
3918
3919     set_window_background(inst);
3920
3921     /*
3922      * Set up the Ctrl+rightclick context menu.
3923      */
3924     {
3925         GtkWidget *menuitem;
3926         char *s;
3927         extern const int use_event_log, new_session, saved_sessions;
3928
3929         inst->menu = gtk_menu_new();
3930
3931 #define MKMENUITEM(title, func) do                                      \
3932         {                                                               \
3933             menuitem = gtk_menu_item_new_with_label(title);             \
3934             gtk_container_add(GTK_CONTAINER(inst->menu), menuitem);     \
3935             gtk_widget_show(menuitem);                                  \
3936             g_signal_connect(G_OBJECT(menuitem), "activate",            \
3937                              G_CALLBACK(func), inst);                   \
3938         } while (0)
3939
3940 #define MKSUBMENU(title) do                                             \
3941         {                                                               \
3942             menuitem = gtk_menu_item_new_with_label(title);             \
3943             gtk_container_add(GTK_CONTAINER(inst->menu), menuitem);     \
3944             gtk_widget_show(menuitem);                                  \
3945         } while (0)
3946
3947 #define MKSEP() do                                                      \
3948         {                                                               \
3949             menuitem = gtk_menu_item_new();                             \
3950             gtk_container_add(GTK_CONTAINER(inst->menu), menuitem);     \
3951             gtk_widget_show(menuitem);                                  \
3952         } while (0)
3953
3954         if (new_session)
3955             MKMENUITEM("New Session...", new_session_menuitem);
3956         MKMENUITEM("Restart Session", restart_session_menuitem);
3957         inst->restartitem = menuitem;
3958         gtk_widget_set_sensitive(inst->restartitem, FALSE);
3959         MKMENUITEM("Duplicate Session", dup_session_menuitem);
3960         if (saved_sessions) {
3961             inst->sessionsmenu = gtk_menu_new();
3962             /* sessionsmenu will be updated when it's invoked */
3963             /* XXX is this the right way to do dynamic menus in Gtk? */
3964             MKMENUITEM("Saved Sessions", update_savedsess_menu);
3965             gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem),
3966                                       inst->sessionsmenu);
3967         }
3968         MKSEP();
3969         MKMENUITEM("Change Settings...", change_settings_menuitem);
3970         MKSEP();
3971         if (use_event_log)
3972             MKMENUITEM("Event Log", event_log_menuitem);
3973         MKSUBMENU("Special Commands");
3974         inst->specialsmenu = gtk_menu_new();
3975         gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), inst->specialsmenu);
3976         inst->specialsitem1 = menuitem;
3977         MKSEP();
3978         inst->specialsitem2 = menuitem;
3979         gtk_widget_hide(inst->specialsitem1);
3980         gtk_widget_hide(inst->specialsitem2);
3981         MKMENUITEM("Clear Scrollback", clear_scrollback_menuitem);
3982         MKMENUITEM("Reset Terminal", reset_terminal_menuitem);
3983         MKMENUITEM("Copy All", copy_all_menuitem);
3984         MKSEP();
3985         s = dupcat("About ", appname, NULL);
3986         MKMENUITEM(s, about_menuitem);
3987         sfree(s);
3988 #undef MKMENUITEM
3989 #undef MKSUBMENU
3990 #undef MKSEP
3991     }
3992
3993     inst->textcursor = make_mouse_ptr(inst, GDK_XTERM);
3994     inst->rawcursor = make_mouse_ptr(inst, GDK_LEFT_PTR);
3995     inst->waitcursor = make_mouse_ptr(inst, GDK_WATCH);
3996     inst->blankcursor = make_mouse_ptr(inst, -1);
3997     make_mouse_ptr(inst, -2);          /* clean up cursor font */
3998     inst->currcursor = inst->textcursor;
3999     show_mouseptr(inst, 1);
4000
4001     inst->eventlogstuff = eventlogstuff_new();
4002
4003     request_callback_notifications(notify_toplevel_callback, inst);
4004
4005     inst->term = term_init(inst->conf, &inst->ucsdata, inst);
4006     inst->logctx = log_init(inst, inst->conf);
4007     term_provide_logctx(inst->term, inst->logctx);
4008
4009     uxsel_init();
4010
4011     term_size(inst->term, inst->height, inst->width,
4012               conf_get_int(inst->conf, CONF_savelines));
4013
4014     start_backend(inst);
4015
4016     ldisc_echoedit_update(inst->ldisc);     /* cause ldisc to notice changes */
4017
4018     /* now we're reday to deal with the child exit handler being
4019      * called */
4020     block_signal(SIGCHLD, 0);
4021
4022     /*
4023      * Block SIGPIPE: if we attempt Duplicate Session or similar
4024      * and it falls over in some way, we certainly don't want
4025      * SIGPIPE terminating the main pterm/PuTTY. Note that we do
4026      * this _after_ (at least pterm) forks off its child process,
4027      * since the child wants SIGPIPE handled in the usual way.
4028      */
4029     block_signal(SIGPIPE, 1);
4030
4031     inst->exited = FALSE;
4032
4033     gtk_main();
4034
4035     return 0;
4036 }