]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - unix/gtkwin.c
Use gtkcompat.h to slim down a few ifdefs.
[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             g_source_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         g_source_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             g_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         g_source_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 = g_timeout_add(ticks, timer_trigger, LONG_TO_GPOINTER(next));
1539     }
1540
1541     /*
1542      * Returning FALSE means 'don't call this timer again', which
1543      * _should_ be redundant given that we removed it above, but just
1544      * in case, return FALSE anyway.
1545      */
1546     return FALSE;
1547 }
1548
1549 void timer_change_notify(unsigned long next)
1550 {
1551     long ticks;
1552
1553     if (timer_id)
1554         g_source_remove(timer_id);
1555
1556     ticks = next - GETTICKCOUNT();
1557     if (ticks <= 0)
1558         ticks = 1;                     /* just in case */
1559
1560     timer_id = g_timeout_add(ticks, timer_trigger, LONG_TO_GPOINTER(next));
1561 }
1562
1563 void fd_input_func(gpointer data, gint sourcefd, GdkInputCondition condition)
1564 {
1565     /*
1566      * We must process exceptional notifications before ordinary
1567      * readability ones, or we may go straight past the urgent
1568      * marker.
1569      */
1570     if (condition & GDK_INPUT_EXCEPTION)
1571         select_result(sourcefd, 4);
1572     if (condition & GDK_INPUT_READ)
1573         select_result(sourcefd, 1);
1574     if (condition & GDK_INPUT_WRITE)
1575         select_result(sourcefd, 2);
1576 }
1577
1578 void destroy(GtkWidget *widget, gpointer data)
1579 {
1580     gtk_main_quit();
1581 }
1582
1583 gint focus_event(GtkWidget *widget, GdkEventFocus *event, gpointer data)
1584 {
1585     struct gui_data *inst = (struct gui_data *)data;
1586     term_set_focus(inst->term, event->in);
1587     term_update(inst->term);
1588     show_mouseptr(inst, 1);
1589     return FALSE;
1590 }
1591
1592 void set_busy_status(void *frontend, int status)
1593 {
1594     struct gui_data *inst = (struct gui_data *)frontend;
1595     inst->busy_status = status;
1596     update_mouseptr(inst);
1597 }
1598
1599 /*
1600  * set or clear the "raw mouse message" mode
1601  */
1602 void set_raw_mouse_mode(void *frontend, int activate)
1603 {
1604     struct gui_data *inst = (struct gui_data *)frontend;
1605     activate = activate && !conf_get_int(inst->conf, CONF_no_mouse_rep);
1606     send_raw_mouse = activate;
1607     update_mouseptr(inst);
1608 }
1609
1610 void request_resize(void *frontend, int w, int h)
1611 {
1612     struct gui_data *inst = (struct gui_data *)frontend;
1613     int large_x, large_y;
1614     int offset_x, offset_y;
1615     int area_x, area_y;
1616     GtkRequisition inner, outer;
1617
1618     /*
1619      * This is a heinous hack dreamed up by the gnome-terminal
1620      * people to get around a limitation in gtk. The problem is
1621      * that in order to set the size correctly we really need to be
1622      * calling gtk_window_resize - but that needs to know the size
1623      * of the _whole window_, not the drawing area. So what we do
1624      * is to set an artificially huge size request on the drawing
1625      * area, recompute the resulting size request on the window,
1626      * and look at the difference between the two. That gives us
1627      * the x and y offsets we need to translate drawing area size
1628      * into window size for real, and then we call
1629      * gtk_window_resize.
1630      */
1631
1632     /*
1633      * We start by retrieving the current size of the whole window.
1634      * Adding a bit to _that_ will give us a value we can use as a
1635      * bogus size request which guarantees to be bigger than the
1636      * current size of the drawing area.
1637      */
1638     get_window_pixels(inst, &large_x, &large_y);
1639     large_x += 32;
1640     large_y += 32;
1641
1642     gtk_widget_set_size_request(inst->area, large_x, large_y);
1643     gtk_widget_size_request(inst->area, &inner);
1644     gtk_widget_size_request(inst->window, &outer);
1645
1646     offset_x = outer.width - inner.width;
1647     offset_y = outer.height - inner.height;
1648
1649     area_x = inst->font_width * w + 2*inst->window_border;
1650     area_y = inst->font_height * h + 2*inst->window_border;
1651
1652     /*
1653      * Now we must set the size request on the drawing area back to
1654      * something sensible before we commit the real resize. Best
1655      * way to do this, I think, is to set it to what the size is
1656      * really going to end up being.
1657      */
1658     gtk_widget_set_size_request(inst->area, area_x, area_y);
1659 #if GTK_CHECK_VERSION(2,0,0)
1660     gtk_window_resize(GTK_WINDOW(inst->window),
1661                       area_x + offset_x, area_y + offset_y);
1662 #else
1663     gtk_drawing_area_size(GTK_DRAWING_AREA(inst->area), area_x, area_y);
1664     /*
1665      * I can no longer remember what this call to
1666      * gtk_container_dequeue_resize_handler is for. It was
1667      * introduced in r3092 with no comment, and the commit log
1668      * message was uninformative. I'm _guessing_ its purpose is to
1669      * prevent gratuitous resize processing on the window given
1670      * that we're about to resize it anyway, but I have no idea
1671      * why that's so incredibly vital.
1672      * 
1673      * I've tried removing the call, and nothing seems to go
1674      * wrong. I've backtracked to r3092 and tried removing the
1675      * call there, and still nothing goes wrong. So I'm going to
1676      * adopt the working hypothesis that it's superfluous; I won't
1677      * actually remove it from the GTK 1.2 code, but I won't
1678      * attempt to replicate its functionality in the GTK 2 code
1679      * above.
1680      */
1681     gtk_container_dequeue_resize_handler(GTK_CONTAINER(inst->window));
1682     gdk_window_resize(gtk_widget_get_window(inst->window),
1683                       area_x + offset_x, area_y + offset_y);
1684 #endif
1685 }
1686
1687 static void real_palette_set(struct gui_data *inst, int n, int r, int g, int b)
1688 {
1689     gboolean success[1];
1690
1691     inst->cols[n].red = r * 0x0101;
1692     inst->cols[n].green = g * 0x0101;
1693     inst->cols[n].blue = b * 0x0101;
1694
1695     gdk_colormap_free_colors(inst->colmap, inst->cols + n, 1);
1696     gdk_colormap_alloc_colors(inst->colmap, inst->cols + n, 1,
1697                               FALSE, TRUE, success);
1698     if (!success[0])
1699         g_error("%s: couldn't allocate colour %d (#%02x%02x%02x)\n", appname,
1700                 n, r, g, b);
1701 }
1702
1703 void set_window_background(struct gui_data *inst)
1704 {
1705     if (inst->area && gtk_widget_get_window(inst->area))
1706         gdk_window_set_background(gtk_widget_get_window(inst->area),
1707                                   &inst->cols[258]);
1708     if (inst->window && gtk_widget_get_window(inst->window))
1709         gdk_window_set_background(gtk_widget_get_window(inst->window),
1710                                   &inst->cols[258]);
1711 }
1712
1713 void palette_set(void *frontend, int n, int r, int g, int b)
1714 {
1715     struct gui_data *inst = (struct gui_data *)frontend;
1716     if (n >= 16)
1717         n += 256 - 16;
1718     if (n >= NALLCOLOURS)
1719         return;
1720     real_palette_set(inst, n, r, g, b);
1721     if (n == 258) {
1722         /* Default Background changed. Ensure space between text area and
1723          * window border is redrawn */
1724         set_window_background(inst);
1725         draw_backing_rect(inst);
1726         gtk_widget_queue_draw(inst->area);
1727     }
1728 }
1729
1730 void palette_reset(void *frontend)
1731 {
1732     struct gui_data *inst = (struct gui_data *)frontend;
1733     /* This maps colour indices in inst->conf to those used in inst->cols. */
1734     static const int ww[] = {
1735         256, 257, 258, 259, 260, 261,
1736         0, 8, 1, 9, 2, 10, 3, 11,
1737         4, 12, 5, 13, 6, 14, 7, 15
1738     };
1739     gboolean success[NALLCOLOURS];
1740     int i;
1741
1742     assert(lenof(ww) == NCFGCOLOURS);
1743
1744     if (!inst->colmap) {
1745         inst->colmap = gdk_colormap_get_system();
1746     } else {
1747         gdk_colormap_free_colors(inst->colmap, inst->cols, NALLCOLOURS);
1748     }
1749
1750     for (i = 0; i < NCFGCOLOURS; i++) {
1751         inst->cols[ww[i]].red =
1752             conf_get_int_int(inst->conf, CONF_colours, i*3+0) * 0x0101;
1753         inst->cols[ww[i]].green =
1754             conf_get_int_int(inst->conf, CONF_colours, i*3+1) * 0x0101;
1755         inst->cols[ww[i]].blue = 
1756             conf_get_int_int(inst->conf, CONF_colours, i*3+2) * 0x0101;
1757     }
1758
1759     for (i = 0; i < NEXTCOLOURS; i++) {
1760         if (i < 216) {
1761             int r = i / 36, g = (i / 6) % 6, b = i % 6;
1762             inst->cols[i+16].red = r ? r * 0x2828 + 0x3737 : 0;
1763             inst->cols[i+16].green = g ? g * 0x2828 + 0x3737 : 0;
1764             inst->cols[i+16].blue = b ? b * 0x2828 + 0x3737 : 0;
1765         } else {
1766             int shade = i - 216;
1767             shade = shade * 0x0a0a + 0x0808;
1768             inst->cols[i+16].red = inst->cols[i+16].green =
1769                 inst->cols[i+16].blue = shade;
1770         }
1771     }
1772
1773     gdk_colormap_alloc_colors(inst->colmap, inst->cols, NALLCOLOURS,
1774                               FALSE, TRUE, success);
1775     for (i = 0; i < NALLCOLOURS; i++) {
1776         if (!success[i])
1777             g_error("%s: couldn't allocate colour %d (#%02x%02x%02x)\n",
1778                     appname, i,
1779                     conf_get_int_int(inst->conf, CONF_colours, i*3+0),
1780                     conf_get_int_int(inst->conf, CONF_colours, i*3+1),
1781                     conf_get_int_int(inst->conf, CONF_colours, i*3+2));
1782     }
1783
1784     /* Since Default Background may have changed, ensure that space
1785      * between text area and window border is refreshed. */
1786     set_window_background(inst);
1787     if (inst->area && gtk_widget_get_window(inst->area)) {
1788         draw_backing_rect(inst);
1789         gtk_widget_queue_draw(inst->area);
1790     }
1791 }
1792
1793 /* Ensure that all the cut buffers exist - according to the ICCCM, we must
1794  * do this before we start using cut buffers.
1795  */
1796 void init_cutbuffers()
1797 {
1798 #ifndef NOT_X_WINDOWS
1799     unsigned char empty[] = "";
1800     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1801                     XA_CUT_BUFFER0, XA_STRING, 8, PropModeAppend, empty, 0);
1802     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1803                     XA_CUT_BUFFER1, XA_STRING, 8, PropModeAppend, empty, 0);
1804     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1805                     XA_CUT_BUFFER2, XA_STRING, 8, PropModeAppend, empty, 0);
1806     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1807                     XA_CUT_BUFFER3, XA_STRING, 8, PropModeAppend, empty, 0);
1808     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1809                     XA_CUT_BUFFER4, XA_STRING, 8, PropModeAppend, empty, 0);
1810     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1811                     XA_CUT_BUFFER5, XA_STRING, 8, PropModeAppend, empty, 0);
1812     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1813                     XA_CUT_BUFFER6, XA_STRING, 8, PropModeAppend, empty, 0);
1814     XChangeProperty(GDK_DISPLAY(), GDK_ROOT_WINDOW(),
1815                     XA_CUT_BUFFER7, XA_STRING, 8, PropModeAppend, empty, 0);
1816 #endif
1817 }
1818
1819 /* Store the data in a cut-buffer. */
1820 void store_cutbuffer(char * ptr, int len)
1821 {
1822 #ifndef NOT_X_WINDOWS
1823     /* ICCCM says we must rotate the buffers before storing to buffer 0. */
1824     XRotateBuffers(GDK_DISPLAY(), 1);
1825     XStoreBytes(GDK_DISPLAY(), ptr, len);
1826 #endif
1827 }
1828
1829 /* Retrieve data from a cut-buffer.
1830  * Returned data needs to be freed with XFree().
1831  */
1832 char * retrieve_cutbuffer(int * nbytes)
1833 {
1834 #ifndef NOT_X_WINDOWS
1835     char * ptr;
1836     ptr = XFetchBytes(GDK_DISPLAY(), nbytes);
1837     if (*nbytes <= 0 && ptr != 0) {
1838         XFree(ptr);
1839         ptr = 0;
1840     }
1841     return ptr;
1842 #else
1843     return NULL;
1844 #endif
1845 }
1846
1847 void write_clip(void *frontend, wchar_t * data, int *attr, int len, int must_deselect)
1848 {
1849     struct gui_data *inst = (struct gui_data *)frontend;
1850     if (inst->pasteout_data)
1851         sfree(inst->pasteout_data);
1852     if (inst->pasteout_data_ctext)
1853         sfree(inst->pasteout_data_ctext);
1854     if (inst->pasteout_data_utf8)
1855         sfree(inst->pasteout_data_utf8);
1856
1857     /*
1858      * Set up UTF-8 and compound text paste data. This only happens
1859      * if we aren't in direct-to-font mode using the D800 hack.
1860      */
1861     if (!inst->direct_to_font) {
1862         const wchar_t *tmp = data;
1863         int tmplen = len;
1864 #ifndef NOT_X_WINDOWS
1865         XTextProperty tp;
1866         char *list[1];
1867 #endif
1868
1869         inst->pasteout_data_utf8 = snewn(len*6, char);
1870         inst->pasteout_data_utf8_len = len*6;
1871         inst->pasteout_data_utf8_len =
1872             charset_from_unicode(&tmp, &tmplen, inst->pasteout_data_utf8,
1873                                  inst->pasteout_data_utf8_len,
1874                                  CS_UTF8, NULL, NULL, 0);
1875         if (inst->pasteout_data_utf8_len == 0) {
1876             sfree(inst->pasteout_data_utf8);
1877             inst->pasteout_data_utf8 = NULL;
1878         } else {
1879             inst->pasteout_data_utf8 =
1880                 sresize(inst->pasteout_data_utf8,
1881                         inst->pasteout_data_utf8_len + 1, char);
1882             inst->pasteout_data_utf8[inst->pasteout_data_utf8_len] = '\0';
1883         }
1884
1885         /*
1886          * Now let Xlib convert our UTF-8 data into compound text.
1887          */
1888 #ifndef NOT_X_WINDOWS
1889         list[0] = inst->pasteout_data_utf8;
1890         if (Xutf8TextListToTextProperty(GDK_DISPLAY(), list, 1,
1891                                         XCompoundTextStyle, &tp) == 0) {
1892             inst->pasteout_data_ctext = snewn(tp.nitems+1, char);
1893             memcpy(inst->pasteout_data_ctext, tp.value, tp.nitems);
1894             inst->pasteout_data_ctext_len = tp.nitems;
1895             XFree(tp.value);
1896         } else
1897 #endif
1898         {
1899             inst->pasteout_data_ctext = NULL;
1900             inst->pasteout_data_ctext_len = 0;
1901         }
1902     } else {
1903         inst->pasteout_data_utf8 = NULL;
1904         inst->pasteout_data_utf8_len = 0;
1905         inst->pasteout_data_ctext = NULL;
1906         inst->pasteout_data_ctext_len = 0;
1907     }
1908
1909     inst->pasteout_data = snewn(len*6, char);
1910     inst->pasteout_data_len = len*6;
1911     inst->pasteout_data_len = wc_to_mb(inst->ucsdata.line_codepage, 0,
1912                                        data, len, inst->pasteout_data,
1913                                        inst->pasteout_data_len,
1914                                        NULL, NULL, NULL);
1915     if (inst->pasteout_data_len == 0) {
1916         sfree(inst->pasteout_data);
1917         inst->pasteout_data = NULL;
1918     } else {
1919         inst->pasteout_data =
1920             sresize(inst->pasteout_data, inst->pasteout_data_len, char);
1921     }
1922
1923     store_cutbuffer(inst->pasteout_data, inst->pasteout_data_len);
1924
1925     if (gtk_selection_owner_set(inst->area, GDK_SELECTION_PRIMARY,
1926                                 inst->input_event_time)) {
1927 #if GTK_CHECK_VERSION(2,0,0)
1928         gtk_selection_clear_targets(inst->area, GDK_SELECTION_PRIMARY);
1929 #endif
1930         gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1931                                  GDK_SELECTION_TYPE_STRING, 1);
1932         if (inst->pasteout_data_ctext)
1933             gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1934                                      compound_text_atom, 1);
1935         if (inst->pasteout_data_utf8)
1936             gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1937                                      utf8_string_atom, 1);
1938     }
1939
1940     if (must_deselect)
1941         term_deselect(inst->term);
1942 }
1943
1944 void selection_get(GtkWidget *widget, GtkSelectionData *seldata,
1945                    guint info, guint time_stamp, gpointer data)
1946 {
1947     struct gui_data *inst = (struct gui_data *)data;
1948     GdkAtom target = gtk_selection_data_get_target(seldata);
1949     if (target == utf8_string_atom)
1950         gtk_selection_data_set(seldata, target, 8,
1951                                (unsigned char *)inst->pasteout_data_utf8,
1952                                inst->pasteout_data_utf8_len);
1953     else if (target == compound_text_atom)
1954         gtk_selection_data_set(seldata, target, 8,
1955                                (unsigned char *)inst->pasteout_data_ctext,
1956                                inst->pasteout_data_ctext_len);
1957     else
1958         gtk_selection_data_set(seldata, target, 8,
1959                                (unsigned char *)inst->pasteout_data,
1960                                inst->pasteout_data_len);
1961 }
1962
1963 gint selection_clear(GtkWidget *widget, GdkEventSelection *seldata,
1964                      gpointer data)
1965 {
1966     struct gui_data *inst = (struct gui_data *)data;
1967
1968     term_deselect(inst->term);
1969     if (inst->pasteout_data)
1970         sfree(inst->pasteout_data);
1971     if (inst->pasteout_data_ctext)
1972         sfree(inst->pasteout_data_ctext);
1973     if (inst->pasteout_data_utf8)
1974         sfree(inst->pasteout_data_utf8);
1975     inst->pasteout_data = NULL;
1976     inst->pasteout_data_len = 0;
1977     inst->pasteout_data_ctext = NULL;
1978     inst->pasteout_data_ctext_len = 0;
1979     inst->pasteout_data_utf8 = NULL;
1980     inst->pasteout_data_utf8_len = 0;
1981     return TRUE;
1982 }
1983
1984 void request_paste(void *frontend)
1985 {
1986     struct gui_data *inst = (struct gui_data *)frontend;
1987     /*
1988      * In Unix, pasting is asynchronous: all we can do at the
1989      * moment is to call gtk_selection_convert(), and when the data
1990      * comes back _then_ we can call term_do_paste().
1991      */
1992
1993     if (!inst->direct_to_font) {
1994         /*
1995          * First we attempt to retrieve the selection as a UTF-8
1996          * string (which we will convert to the correct code page
1997          * before sending to the session, of course). If that
1998          * fails, selection_received() will be informed and will
1999          * fall back to an ordinary string.
2000          */
2001         gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2002                               utf8_string_atom,
2003                               inst->input_event_time);
2004     } else {
2005         /*
2006          * If we're in direct-to-font mode, we disable UTF-8
2007          * pasting, and go straight to ordinary string data.
2008          */
2009         gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2010                               GDK_SELECTION_TYPE_STRING,
2011                               inst->input_event_time);
2012     }
2013 }
2014
2015 gint idle_paste_func(gpointer data);   /* forward ref */
2016
2017 void selection_received(GtkWidget *widget, GtkSelectionData *seldata,
2018                         guint time, gpointer data)
2019 {
2020     struct gui_data *inst = (struct gui_data *)data;
2021     char *text;
2022     int length;
2023 #ifndef NOT_X_WINDOWS
2024     char **list;
2025     int free_list_required = 0;
2026     int free_required = 0;
2027 #endif
2028     int charset;
2029     GdkAtom seldata_target = gtk_selection_data_get_target(seldata);
2030     GdkAtom seldata_type = gtk_selection_data_get_data_type(seldata);
2031     const guchar *seldata_data = gtk_selection_data_get_data(seldata);
2032     gint seldata_length = gtk_selection_data_get_length(seldata);
2033
2034     if (seldata_target == utf8_string_atom && seldata_length <= 0) {
2035         /*
2036          * Failed to get a UTF-8 selection string. Try compound
2037          * text next.
2038          */
2039         gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2040                               compound_text_atom,
2041                               inst->input_event_time);
2042         return;
2043     }
2044
2045     if (seldata_target == compound_text_atom && seldata_length <= 0) {
2046         /*
2047          * Failed to get UTF-8 or compound text. Try an ordinary
2048          * string.
2049          */
2050         gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2051                               GDK_SELECTION_TYPE_STRING,
2052                               inst->input_event_time);
2053         return;
2054     }
2055
2056     /*
2057      * If we have data, but it's not of a type we can deal with,
2058      * we have to ignore the data.
2059      */
2060     if (seldata_length > 0 &&
2061         seldata_type != GDK_SELECTION_TYPE_STRING &&
2062         seldata_type != compound_text_atom &&
2063         seldata_type != utf8_string_atom)
2064         return;
2065
2066     /*
2067      * If we have no data, try looking in a cut buffer.
2068      */
2069     if (seldata_length <= 0) {
2070 #ifndef NOT_X_WINDOWS
2071         text = retrieve_cutbuffer(&length);
2072         if (length == 0)
2073             return;
2074         /* Xterm is rumoured to expect Latin-1, though I havn't checked the
2075          * source, so use that as a de-facto standard. */
2076         charset = CS_ISO8859_1;
2077         free_required = 1;
2078 #else
2079         return;
2080 #endif
2081     } else {
2082         /*
2083          * Convert COMPOUND_TEXT into UTF-8.
2084          */
2085         if (seldata_type == compound_text_atom) {
2086 #ifndef NOT_X_WINDOWS
2087             XTextProperty tp;
2088             int ret, count;
2089
2090             tp.value = (unsigned char *)seldata_data;
2091             tp.encoding = (Atom) seldata_type;
2092             tp.format = gtk_selection_data_get_format(seldata);
2093             tp.nitems = seldata_length;
2094             ret = Xutf8TextPropertyToTextList(GDK_DISPLAY(), &tp,
2095                                               &list, &count);
2096             if (ret == 0 && count == 1) {
2097                 text = list[0];
2098                 length = strlen(list[0]);
2099                 charset = CS_UTF8;
2100                 free_list_required = 1;
2101             } else
2102 #endif
2103             {
2104                 /*
2105                  * Compound text failed; fall back to STRING.
2106                  */
2107                 gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
2108                                       GDK_SELECTION_TYPE_STRING,
2109                                       inst->input_event_time);
2110                 return;
2111             }
2112         } else {
2113             text = (char *)seldata_data;
2114             length = seldata_length;
2115             charset = (seldata_type == utf8_string_atom ?
2116                        CS_UTF8 : inst->ucsdata.line_codepage);
2117         }
2118     }
2119
2120     if (inst->pastein_data)
2121         sfree(inst->pastein_data);
2122
2123     inst->pastein_data = snewn(length, wchar_t);
2124     inst->pastein_data_len = length;
2125     inst->pastein_data_len =
2126         mb_to_wc(charset, 0, text, length,
2127                  inst->pastein_data, inst->pastein_data_len);
2128
2129     term_do_paste(inst->term);
2130
2131 #ifndef NOT_X_WINDOWS
2132     if (free_list_required)
2133         XFreeStringList(list);
2134     if (free_required)
2135         XFree(text);
2136 #endif
2137 }
2138
2139 void get_clip(void *frontend, wchar_t ** p, int *len)
2140 {
2141     struct gui_data *inst = (struct gui_data *)frontend;
2142
2143     if (p) {
2144         *p = inst->pastein_data;
2145         *len = inst->pastein_data_len;
2146     }
2147 }
2148
2149 static void set_window_titles(struct gui_data *inst)
2150 {
2151     /*
2152      * We must always call set_icon_name after calling set_title,
2153      * since set_title will write both names. Irritating, but such
2154      * is life.
2155      */
2156     gtk_window_set_title(GTK_WINDOW(inst->window), inst->wintitle);
2157     if (!conf_get_int(inst->conf, CONF_win_name_always))
2158         gdk_window_set_icon_name(gtk_widget_get_window(inst->window),
2159                                  inst->icontitle);
2160 }
2161
2162 void set_title(void *frontend, char *title)
2163 {
2164     struct gui_data *inst = (struct gui_data *)frontend;
2165     sfree(inst->wintitle);
2166     inst->wintitle = dupstr(title);
2167     set_window_titles(inst);
2168 }
2169
2170 void set_icon(void *frontend, char *title)
2171 {
2172     struct gui_data *inst = (struct gui_data *)frontend;
2173     sfree(inst->icontitle);
2174     inst->icontitle = dupstr(title);
2175     set_window_titles(inst);
2176 }
2177
2178 void set_title_and_icon(void *frontend, char *title, char *icon)
2179 {
2180     struct gui_data *inst = (struct gui_data *)frontend;
2181     sfree(inst->wintitle);
2182     inst->wintitle = dupstr(title);
2183     sfree(inst->icontitle);
2184     inst->icontitle = dupstr(icon);
2185     set_window_titles(inst);
2186 }
2187
2188 void set_sbar(void *frontend, int total, int start, int page)
2189 {
2190     struct gui_data *inst = (struct gui_data *)frontend;
2191     if (!conf_get_int(inst->conf, CONF_scrollbar))
2192         return;
2193     gtk_adjustment_set_lower(inst->sbar_adjust, 0);
2194     gtk_adjustment_set_upper(inst->sbar_adjust, total);
2195     gtk_adjustment_set_value(inst->sbar_adjust, start);
2196     gtk_adjustment_set_page_size(inst->sbar_adjust, page);
2197     gtk_adjustment_set_step_increment(inst->sbar_adjust, 1);
2198     gtk_adjustment_set_page_increment(inst->sbar_adjust, page/2);
2199     inst->ignore_sbar = TRUE;
2200     gtk_adjustment_changed(inst->sbar_adjust);
2201     inst->ignore_sbar = FALSE;
2202 }
2203
2204 void scrollbar_moved(GtkAdjustment *adj, gpointer data)
2205 {
2206     struct gui_data *inst = (struct gui_data *)data;
2207
2208     if (!conf_get_int(inst->conf, CONF_scrollbar))
2209         return;
2210     if (!inst->ignore_sbar)
2211         term_scroll(inst->term, 1, (int)gtk_adjustment_get_value(adj));
2212 }
2213
2214 void sys_cursor(void *frontend, int x, int y)
2215 {
2216     /*
2217      * This is meaningless under X.
2218      */
2219 }
2220
2221 /*
2222  * This is still called when mode==BELL_VISUAL, even though the
2223  * visual bell is handled entirely within terminal.c, because we
2224  * may want to perform additional actions on any kind of bell (for
2225  * example, taskbar flashing in Windows).
2226  */
2227 void do_beep(void *frontend, int mode)
2228 {
2229     if (mode == BELL_DEFAULT)
2230         gdk_beep();
2231 }
2232
2233 int char_width(Context ctx, int uc)
2234 {
2235     /*
2236      * Under X, any fixed-width font really _is_ fixed-width.
2237      * Double-width characters will be dealt with using a separate
2238      * font. For the moment we can simply return 1.
2239      * 
2240      * FIXME: but is that also true of Pango?
2241      */
2242     return 1;
2243 }
2244
2245 Context get_ctx(void *frontend)
2246 {
2247     struct gui_data *inst = (struct gui_data *)frontend;
2248     struct draw_ctx *dctx;
2249
2250     if (!gtk_widget_get_window(inst->area))
2251         return NULL;
2252
2253     dctx = snew(struct draw_ctx);
2254     dctx->inst = inst;
2255     dctx->gc = gdk_gc_new(gtk_widget_get_window(inst->area));
2256     return dctx;
2257 }
2258
2259 void free_ctx(Context ctx)
2260 {
2261     struct draw_ctx *dctx = (struct draw_ctx *)ctx;
2262     /* struct gui_data *inst = dctx->inst; */
2263     GdkGC *gc = dctx->gc;
2264     gdk_gc_unref(gc);
2265     sfree(dctx);
2266 }
2267
2268 /*
2269  * Draw a line of text in the window, at given character
2270  * coordinates, in given attributes.
2271  *
2272  * We are allowed to fiddle with the contents of `text'.
2273  */
2274 void do_text_internal(Context ctx, int x, int y, wchar_t *text, int len,
2275                       unsigned long attr, int lattr)
2276 {
2277     struct draw_ctx *dctx = (struct draw_ctx *)ctx;
2278     struct gui_data *inst = dctx->inst;
2279     GdkGC *gc = dctx->gc;
2280     int ncombining, combining;
2281     int nfg, nbg, t, fontid, shadow, rlen, widefactor, bold;
2282     int monochrome =
2283         gdk_visual_get_depth(gtk_widget_get_visual(inst->area)) == 1;
2284
2285     if (attr & TATTR_COMBINING) {
2286         ncombining = len;
2287         len = 1;
2288     } else
2289         ncombining = 1;
2290
2291     nfg = ((monochrome ? ATTR_DEFFG : (attr & ATTR_FGMASK)) >> ATTR_FGSHIFT);
2292     nbg = ((monochrome ? ATTR_DEFBG : (attr & ATTR_BGMASK)) >> ATTR_BGSHIFT);
2293     if (!!(attr & ATTR_REVERSE) ^ (monochrome && (attr & TATTR_ACTCURS))) {
2294         t = nfg;
2295         nfg = nbg;
2296         nbg = t;
2297     }
2298     if ((inst->bold_style & 2) && (attr & ATTR_BOLD)) {
2299         if (nfg < 16) nfg |= 8;
2300         else if (nfg >= 256) nfg |= 1;
2301     }
2302     if ((inst->bold_style & 2) && (attr & ATTR_BLINK)) {
2303         if (nbg < 16) nbg |= 8;
2304         else if (nbg >= 256) nbg |= 1;
2305     }
2306     if ((attr & TATTR_ACTCURS) && !monochrome) {
2307         nfg = 260;
2308         nbg = 261;
2309     }
2310
2311     fontid = shadow = 0;
2312
2313     if (attr & ATTR_WIDE) {
2314         widefactor = 2;
2315         fontid |= 2;
2316     } else {
2317         widefactor = 1;
2318     }
2319
2320     if ((attr & ATTR_BOLD) && (inst->bold_style & 1)) {
2321         bold = 1;
2322         fontid |= 1;
2323     } else {
2324         bold = 0;
2325     }
2326
2327     if (!inst->fonts[fontid]) {
2328         int i;
2329         /*
2330          * Fall back through font ids with subsets of this one's
2331          * set bits, in order.
2332          */
2333         for (i = fontid; i-- > 0 ;) {
2334             if (i & ~fontid)
2335                 continue;              /* some other bit is set */
2336             if (inst->fonts[i]) {
2337                 fontid = i;
2338                 break;
2339             }
2340         }
2341         assert(inst->fonts[fontid]);   /* we should at least have hit zero */
2342     }
2343
2344     if ((lattr & LATTR_MODE) != LATTR_NORM) {
2345         x *= 2;
2346         if (x >= inst->term->cols)
2347             return;
2348         if (x + len*2*widefactor > inst->term->cols)
2349             len = (inst->term->cols-x)/2/widefactor;/* trim to LH half */
2350         rlen = len * 2;
2351     } else
2352         rlen = len;
2353
2354     {
2355         GdkRectangle r;
2356
2357         r.x = x*inst->font_width+inst->window_border;
2358         r.y = y*inst->font_height+inst->window_border;
2359         r.width = rlen*widefactor*inst->font_width;
2360         r.height = inst->font_height;
2361         gdk_gc_set_clip_rectangle(gc, &r);
2362     }
2363
2364     gdk_gc_set_foreground(gc, &inst->cols[nbg]);
2365     gdk_draw_rectangle(inst->pixmap, gc, 1,
2366                        x*inst->font_width+inst->window_border,
2367                        y*inst->font_height+inst->window_border,
2368                        rlen*widefactor*inst->font_width, inst->font_height);
2369
2370     gdk_gc_set_foreground(gc, &inst->cols[nfg]);
2371     for (combining = 0; combining < ncombining; combining++) {
2372         unifont_draw_text(inst->pixmap, gc, inst->fonts[fontid],
2373                           x*inst->font_width+inst->window_border,
2374                           y*inst->font_height+inst->window_border+inst->fonts[0]->ascent,
2375                           text + combining, len, widefactor > 1,
2376                           bold, inst->font_width);
2377     }
2378
2379     if (attr & ATTR_UNDER) {
2380         int uheight = inst->fonts[0]->ascent + 1;
2381         if (uheight >= inst->font_height)
2382             uheight = inst->font_height - 1;
2383         gdk_draw_line(inst->pixmap, gc, x*inst->font_width+inst->window_border,
2384                       y*inst->font_height + uheight + inst->window_border,
2385                       (x+len)*widefactor*inst->font_width-1+inst->window_border,
2386                       y*inst->font_height + uheight + inst->window_border);
2387     }
2388
2389     if ((lattr & LATTR_MODE) != LATTR_NORM) {
2390         /*
2391          * I can't find any plausible StretchBlt equivalent in the
2392          * X server, so I'm going to do this the slow and painful
2393          * way. This will involve repeated calls to
2394          * gdk_draw_pixmap() to stretch the text horizontally. It's
2395          * O(N^2) in time and O(N) in network bandwidth, but you
2396          * try thinking of a better way. :-(
2397          */
2398         int i;
2399         for (i = 0; i < len * widefactor * inst->font_width; i++) {
2400             gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
2401                             x*inst->font_width+inst->window_border + 2*i,
2402                             y*inst->font_height+inst->window_border,
2403                             x*inst->font_width+inst->window_border + 2*i+1,
2404                             y*inst->font_height+inst->window_border,
2405                             len * widefactor * inst->font_width - i, inst->font_height);
2406         }
2407         len *= 2;
2408         if ((lattr & LATTR_MODE) != LATTR_WIDE) {
2409             int dt, db;
2410             /* Now stretch vertically, in the same way. */
2411             if ((lattr & LATTR_MODE) == LATTR_BOT)
2412                 dt = 0, db = 1;
2413             else
2414                 dt = 1, db = 0;
2415             for (i = 0; i < inst->font_height; i+=2) {
2416                 gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
2417                                 x*inst->font_width+inst->window_border,
2418                                 y*inst->font_height+inst->window_border+dt*i+db,
2419                                 x*inst->font_width+inst->window_border,
2420                                 y*inst->font_height+inst->window_border+dt*(i+1),
2421                                 len * widefactor * inst->font_width, inst->font_height-i-1);
2422             }
2423         }
2424     }
2425 }
2426
2427 void do_text(Context ctx, int x, int y, wchar_t *text, int len,
2428              unsigned long attr, int lattr)
2429 {
2430     struct draw_ctx *dctx = (struct draw_ctx *)ctx;
2431     struct gui_data *inst = dctx->inst;
2432     GdkGC *gc = dctx->gc;
2433     int widefactor;
2434
2435     do_text_internal(ctx, x, y, text, len, attr, lattr);
2436
2437     if (attr & ATTR_WIDE) {
2438         widefactor = 2;
2439     } else {
2440         widefactor = 1;
2441     }
2442
2443     if ((lattr & LATTR_MODE) != LATTR_NORM) {
2444         x *= 2;
2445         if (x >= inst->term->cols)
2446             return;
2447         if (x + len*2*widefactor > inst->term->cols)
2448             len = (inst->term->cols-x)/2/widefactor;/* trim to LH half */
2449         len *= 2;
2450     }
2451
2452     gdk_draw_pixmap(gtk_widget_get_window(inst->area), gc, inst->pixmap,
2453                     x*inst->font_width+inst->window_border,
2454                     y*inst->font_height+inst->window_border,
2455                     x*inst->font_width+inst->window_border,
2456                     y*inst->font_height+inst->window_border,
2457                     len*widefactor*inst->font_width, inst->font_height);
2458 }
2459
2460 void do_cursor(Context ctx, int x, int y, wchar_t *text, int len,
2461                unsigned long attr, int lattr)
2462 {
2463     struct draw_ctx *dctx = (struct draw_ctx *)ctx;
2464     struct gui_data *inst = dctx->inst;
2465     GdkGC *gc = dctx->gc;
2466
2467     int active, passive, widefactor;
2468
2469     if (attr & TATTR_PASCURS) {
2470         attr &= ~TATTR_PASCURS;
2471         passive = 1;
2472     } else
2473         passive = 0;
2474     if ((attr & TATTR_ACTCURS) && inst->cursor_type != 0) {
2475         attr &= ~TATTR_ACTCURS;
2476         active = 1;
2477     } else
2478         active = 0;
2479     do_text_internal(ctx, x, y, text, len, attr, lattr);
2480
2481     if (attr & TATTR_COMBINING)
2482         len = 1;
2483
2484     if (attr & ATTR_WIDE) {
2485         widefactor = 2;
2486     } else {
2487         widefactor = 1;
2488     }
2489
2490     if ((lattr & LATTR_MODE) != LATTR_NORM) {
2491         x *= 2;
2492         if (x >= inst->term->cols)
2493             return;
2494         if (x + len*2*widefactor > inst->term->cols)
2495             len = (inst->term->cols-x)/2/widefactor;/* trim to LH half */
2496         len *= 2;
2497     }
2498
2499     if (inst->cursor_type == 0) {
2500         /*
2501          * An active block cursor will already have been done by
2502          * the above do_text call, so we only need to do anything
2503          * if it's passive.
2504          */
2505         if (passive) {
2506             gdk_gc_set_foreground(gc, &inst->cols[261]);
2507             gdk_draw_rectangle(inst->pixmap, gc, 0,
2508                                x*inst->font_width+inst->window_border,
2509                                y*inst->font_height+inst->window_border,
2510                                len*widefactor*inst->font_width-1, inst->font_height-1);
2511         }
2512     } else {
2513         int uheight;
2514         int startx, starty, dx, dy, length, i;
2515
2516         int char_width;
2517
2518         if ((attr & ATTR_WIDE) || (lattr & LATTR_MODE) != LATTR_NORM)
2519             char_width = 2*inst->font_width;
2520         else
2521             char_width = inst->font_width;
2522
2523         if (inst->cursor_type == 1) {
2524             uheight = inst->fonts[0]->ascent + 1;
2525             if (uheight >= inst->font_height)
2526                 uheight = inst->font_height - 1;
2527
2528             startx = x * inst->font_width + inst->window_border;
2529             starty = y * inst->font_height + inst->window_border + uheight;
2530             dx = 1;
2531             dy = 0;
2532             length = len * widefactor * char_width;
2533         } else {
2534             int xadjust = 0;
2535             if (attr & TATTR_RIGHTCURS)
2536                 xadjust = char_width - 1;
2537             startx = x * inst->font_width + inst->window_border + xadjust;
2538             starty = y * inst->font_height + inst->window_border;
2539             dx = 0;
2540             dy = 1;
2541             length = inst->font_height;
2542         }
2543
2544         gdk_gc_set_foreground(gc, &inst->cols[261]);
2545         if (passive) {
2546             for (i = 0; i < length; i++) {
2547                 if (i % 2 == 0) {
2548                     gdk_draw_point(inst->pixmap, gc, startx, starty);
2549                 }
2550                 startx += dx;
2551                 starty += dy;
2552             }
2553         } else if (active) {
2554             gdk_draw_line(inst->pixmap, gc, startx, starty,
2555                           startx + (length-1) * dx, starty + (length-1) * dy);
2556         } /* else no cursor (e.g., blinked off) */
2557     }
2558
2559     gdk_draw_pixmap(gtk_widget_get_window(inst->area), gc, inst->pixmap,
2560                     x*inst->font_width+inst->window_border,
2561                     y*inst->font_height+inst->window_border,
2562                     x*inst->font_width+inst->window_border,
2563                     y*inst->font_height+inst->window_border,
2564                     len*widefactor*inst->font_width, inst->font_height);
2565
2566 #if GTK_CHECK_VERSION(2,0,0)
2567     {
2568         GdkRectangle cursorrect;
2569         cursorrect.x = x*inst->font_width+inst->window_border;
2570         cursorrect.y = y*inst->font_height+inst->window_border;
2571         cursorrect.width = len*widefactor*inst->font_width;
2572         cursorrect.height = inst->font_height;
2573         gtk_im_context_set_cursor_location(inst->imc, &cursorrect);
2574     }
2575 #endif
2576 }
2577
2578 GdkCursor *make_mouse_ptr(struct gui_data *inst, int cursor_val)
2579 {
2580     /*
2581      * Truly hideous hack: GTK doesn't allow us to set the mouse
2582      * cursor foreground and background colours unless we've _also_
2583      * created our own cursor from bitmaps. Therefore, I need to
2584      * load the `cursor' font and draw glyphs from it on to
2585      * pixmaps, in order to construct my cursors with the fg and bg
2586      * I want. This is a gross hack, but it's more self-contained
2587      * than linking in Xlib to find the X window handle to
2588      * inst->area and calling XRecolorCursor, and it's more
2589      * futureproof than hard-coding the shapes as bitmap arrays.
2590      */
2591     static GdkFont *cursor_font = NULL;
2592     GdkPixmap *source, *mask;
2593     GdkGC *gc;
2594     GdkColor cfg = { 0, 65535, 65535, 65535 };
2595     GdkColor cbg = { 0, 0, 0, 0 };
2596     GdkColor dfg = { 1, 65535, 65535, 65535 };
2597     GdkColor dbg = { 0, 0, 0, 0 };
2598     GdkCursor *ret;
2599     gchar text[2];
2600     gint lb, rb, wid, asc, desc, w, h, x, y;
2601
2602     if (cursor_val == -2) {
2603         gdk_font_unref(cursor_font);
2604         return NULL;
2605     }
2606
2607     if (cursor_val >= 0 && !cursor_font) {
2608         cursor_font = gdk_font_load("cursor");
2609         if (cursor_font)
2610             gdk_font_ref(cursor_font);
2611     }
2612
2613     /*
2614      * Get the text extent of the cursor in question. We use the
2615      * mask character for this, because it's typically slightly
2616      * bigger than the main character.
2617      */
2618     if (cursor_val >= 0) {
2619         text[1] = '\0';
2620         text[0] = (char)cursor_val + 1;
2621         gdk_string_extents(cursor_font, text, &lb, &rb, &wid, &asc, &desc);
2622         w = rb-lb; h = asc+desc; x = -lb; y = asc;
2623     } else {
2624         w = h = 1;
2625         x = y = 0;
2626     }
2627
2628     source = gdk_pixmap_new(NULL, w, h, 1);
2629     mask = gdk_pixmap_new(NULL, w, h, 1);
2630
2631     /*
2632      * Draw the mask character on the mask pixmap.
2633      */
2634     gc = gdk_gc_new(mask);
2635     gdk_gc_set_foreground(gc, &dbg);
2636     gdk_draw_rectangle(mask, gc, 1, 0, 0, w, h);
2637     if (cursor_val >= 0) {
2638         text[1] = '\0';
2639         text[0] = (char)cursor_val + 1;
2640         gdk_gc_set_foreground(gc, &dfg);
2641         gdk_draw_text(mask, cursor_font, gc, x, y, text, 1);
2642     }
2643     gdk_gc_unref(gc);
2644
2645     /*
2646      * Draw the main character on the source pixmap.
2647      */
2648     gc = gdk_gc_new(source);
2649     gdk_gc_set_foreground(gc, &dbg);
2650     gdk_draw_rectangle(source, gc, 1, 0, 0, w, h);
2651     if (cursor_val >= 0) {
2652         text[1] = '\0';
2653         text[0] = (char)cursor_val;
2654         gdk_gc_set_foreground(gc, &dfg);
2655         gdk_draw_text(source, cursor_font, gc, x, y, text, 1);
2656     }
2657     gdk_gc_unref(gc);
2658
2659     /*
2660      * Create the cursor.
2661      */
2662     ret = gdk_cursor_new_from_pixmap(source, mask, &cfg, &cbg, x, y);
2663
2664     /*
2665      * Clean up.
2666      */
2667     gdk_pixmap_unref(source);
2668     gdk_pixmap_unref(mask);
2669
2670     return ret;
2671 }
2672
2673 void modalfatalbox(const char *p, ...)
2674 {
2675     va_list ap;
2676     fprintf(stderr, "FATAL ERROR: ");
2677     va_start(ap, p);
2678     vfprintf(stderr, p, ap);
2679     va_end(ap);
2680     fputc('\n', stderr);
2681     exit(1);
2682 }
2683
2684 void cmdline_error(const char *p, ...)
2685 {
2686     va_list ap;
2687     fprintf(stderr, "%s: ", appname);
2688     va_start(ap, p);
2689     vfprintf(stderr, p, ap);
2690     va_end(ap);
2691     fputc('\n', stderr);
2692     exit(1);
2693 }
2694
2695 char *get_x_display(void *frontend)
2696 {
2697     return gdk_get_display();
2698 }
2699
2700 #ifndef NOT_X_WINDOWS
2701 long get_windowid(void *frontend)
2702 {
2703     struct gui_data *inst = (struct gui_data *)frontend;
2704     return (long)GDK_WINDOW_XWINDOW(gtk_widget_get_window(inst->area));
2705 }
2706 #endif
2707
2708 static void help(FILE *fp) {
2709     if(fprintf(fp,
2710 "pterm option summary:\n"
2711 "\n"
2712 "  --display DISPLAY         Specify X display to use (note '--')\n"
2713 "  -name PREFIX              Prefix when looking up resources (default: pterm)\n"
2714 "  -fn FONT                  Normal text font\n"
2715 "  -fb FONT                  Bold text font\n"
2716 "  -geometry GEOMETRY        Position and size of window (size in characters)\n"
2717 "  -sl LINES                 Number of lines of scrollback\n"
2718 "  -fg COLOUR, -bg COLOUR    Foreground/background colour\n"
2719 "  -bfg COLOUR, -bbg COLOUR  Foreground/background bold colour\n"
2720 "  -cfg COLOUR, -bfg COLOUR  Foreground/background cursor colour\n"
2721 "  -T TITLE                  Window title\n"
2722 "  -ut, +ut                  Do(default) or do not update utmp\n"
2723 "  -ls, +ls                  Do(default) or do not make shell a login shell\n"
2724 "  -sb, +sb                  Do(default) or do not display a scrollbar\n"
2725 "  -log PATH                 Log all output to a file\n"
2726 "  -nethack                  Map numeric keypad to hjklyubn direction keys\n"
2727 "  -xrm RESOURCE-STRING      Set an X resource\n"
2728 "  -e COMMAND [ARGS...]      Execute command (consumes all remaining args)\n"
2729          ) < 0 || fflush(fp) < 0) {
2730         perror("output error");
2731         exit(1);
2732     }
2733 }
2734
2735 static void version(FILE *fp) {
2736     if(fprintf(fp, "%s: %s\n", appname, ver) < 0 || fflush(fp) < 0) {
2737         perror("output error");
2738         exit(1);
2739     }
2740 }
2741
2742 int do_cmdline(int argc, char **argv, int do_everything, int *allow_launch,
2743                struct gui_data *inst, Conf *conf)
2744 {
2745     int err = 0;
2746     char *val;
2747
2748     /*
2749      * Macros to make argument handling easier. Note that because
2750      * they need to call `continue', they cannot be contained in
2751      * the usual do {...} while (0) wrapper to make them
2752      * syntactically single statements; hence it is not legal to
2753      * use one of these macros as an unbraced statement between
2754      * `if' and `else'.
2755      */
2756 #define EXPECTS_ARG { \
2757     if (--argc <= 0) { \
2758         err = 1; \
2759         fprintf(stderr, "%s: %s expects an argument\n", appname, p); \
2760         continue; \
2761     } else \
2762         val = *++argv; \
2763 }
2764 #define SECOND_PASS_ONLY { if (!do_everything) continue; }
2765
2766     while (--argc > 0) {
2767         const char *p = *++argv;
2768         int ret;
2769
2770         /*
2771          * Shameless cheating. Debian requires all X terminal
2772          * emulators to support `-T title'; but
2773          * cmdline_process_param will eat -T (it means no-pty) and
2774          * complain that pterm doesn't support it. So, in pterm
2775          * only, we convert -T into -title.
2776          */
2777         if ((cmdline_tooltype & TOOLTYPE_NONNETWORK) &&
2778             !strcmp(p, "-T"))
2779             p = "-title";
2780
2781         ret = cmdline_process_param(p, (argc > 1 ? argv[1] : NULL),
2782                                     do_everything ? 1 : -1, conf);
2783
2784         if (ret == -2) {
2785             cmdline_error("option \"%s\" requires an argument", p);
2786         } else if (ret == 2) {
2787             --argc, ++argv;            /* skip next argument */
2788             continue;
2789         } else if (ret == 1) {
2790             continue;
2791         }
2792
2793         if (!strcmp(p, "-fn") || !strcmp(p, "-font")) {
2794             FontSpec *fs;
2795             EXPECTS_ARG;
2796             SECOND_PASS_ONLY;
2797             fs = fontspec_new(val);
2798             conf_set_fontspec(conf, CONF_font, fs);
2799             fontspec_free(fs);
2800
2801         } else if (!strcmp(p, "-fb")) {
2802             FontSpec *fs;
2803             EXPECTS_ARG;
2804             SECOND_PASS_ONLY;
2805             fs = fontspec_new(val);
2806             conf_set_fontspec(conf, CONF_boldfont, fs);
2807             fontspec_free(fs);
2808
2809         } else if (!strcmp(p, "-fw")) {
2810             FontSpec *fs;
2811             EXPECTS_ARG;
2812             SECOND_PASS_ONLY;
2813             fs = fontspec_new(val);
2814             conf_set_fontspec(conf, CONF_widefont, fs);
2815             fontspec_free(fs);
2816
2817         } else if (!strcmp(p, "-fwb")) {
2818             FontSpec *fs;
2819             EXPECTS_ARG;
2820             SECOND_PASS_ONLY;
2821             fs = fontspec_new(val);
2822             conf_set_fontspec(conf, CONF_wideboldfont, fs);
2823             fontspec_free(fs);
2824
2825         } else if (!strcmp(p, "-cs")) {
2826             EXPECTS_ARG;
2827             SECOND_PASS_ONLY;
2828             conf_set_str(conf, CONF_line_codepage, val);
2829
2830         } else if (!strcmp(p, "-geometry")) {
2831             EXPECTS_ARG;
2832             SECOND_PASS_ONLY;
2833
2834 #if GTK_CHECK_VERSION(2,0,0)
2835             inst->geometry = val;
2836 #else
2837             /* On GTK 1, we have to do this using raw Xlib */
2838             {
2839                 int flags, x, y;
2840                 unsigned int w, h;
2841                 flags = XParseGeometry(val, &x, &y, &w, &h);
2842                 if (flags & WidthValue)
2843                     conf_set_int(conf, CONF_width, w);
2844                 if (flags & HeightValue)
2845                     conf_set_int(conf, CONF_height, h);
2846
2847                 if (flags & (XValue | YValue)) {
2848                     inst->xpos = x;
2849                     inst->ypos = y;
2850                     inst->gotpos = TRUE;
2851                     inst->gravity = ((flags & XNegative ? 1 : 0) |
2852                                      (flags & YNegative ? 2 : 0));
2853                 }
2854             }
2855 #endif
2856
2857         } else if (!strcmp(p, "-sl")) {
2858             EXPECTS_ARG;
2859             SECOND_PASS_ONLY;
2860             conf_set_int(conf, CONF_savelines, atoi(val));
2861
2862         } else if (!strcmp(p, "-fg") || !strcmp(p, "-bg") ||
2863                    !strcmp(p, "-bfg") || !strcmp(p, "-bbg") ||
2864                    !strcmp(p, "-cfg") || !strcmp(p, "-cbg")) {
2865             GdkColor col;
2866
2867             EXPECTS_ARG;
2868             SECOND_PASS_ONLY;
2869             if (!gdk_color_parse(val, &col)) {
2870                 err = 1;
2871                 fprintf(stderr, "%s: unable to parse colour \"%s\"\n",
2872                         appname, val);
2873             } else {
2874                 int index;
2875                 index = (!strcmp(p, "-fg") ? 0 :
2876                          !strcmp(p, "-bg") ? 2 :
2877                          !strcmp(p, "-bfg") ? 1 :
2878                          !strcmp(p, "-bbg") ? 3 :
2879                          !strcmp(p, "-cfg") ? 4 :
2880                          !strcmp(p, "-cbg") ? 5 : -1);
2881                 assert(index != -1);
2882                 conf_set_int_int(conf, CONF_colours, index*3+0, col.red / 256);
2883                 conf_set_int_int(conf, CONF_colours, index*3+1,col.green/ 256);
2884                 conf_set_int_int(conf, CONF_colours, index*3+2, col.blue/ 256);
2885             }
2886
2887         } else if (use_pty_argv && !strcmp(p, "-e")) {
2888             /* This option swallows all further arguments. */
2889             if (!do_everything)
2890                 break;
2891
2892             if (--argc > 0) {
2893                 int i;
2894                 pty_argv = snewn(argc+1, char *);
2895                 ++argv;
2896                 for (i = 0; i < argc; i++)
2897                     pty_argv[i] = argv[i];
2898                 pty_argv[argc] = NULL;
2899                 break;                 /* finished command-line processing */
2900             } else
2901                 err = 1, fprintf(stderr, "%s: -e expects an argument\n",
2902                                  appname);
2903
2904         } else if (!strcmp(p, "-title")) {
2905             EXPECTS_ARG;
2906             SECOND_PASS_ONLY;
2907             conf_set_str(conf, CONF_wintitle, val);
2908
2909         } else if (!strcmp(p, "-log")) {
2910             Filename *fn;
2911             EXPECTS_ARG;
2912             SECOND_PASS_ONLY;
2913             fn = filename_from_str(val);
2914             conf_set_filename(conf, CONF_logfilename, fn);
2915             conf_set_int(conf, CONF_logtype, LGTYP_DEBUG);
2916             filename_free(fn);
2917
2918         } else if (!strcmp(p, "-ut-") || !strcmp(p, "+ut")) {
2919             SECOND_PASS_ONLY;
2920             conf_set_int(conf, CONF_stamp_utmp, 0);
2921
2922         } else if (!strcmp(p, "-ut")) {
2923             SECOND_PASS_ONLY;
2924             conf_set_int(conf, CONF_stamp_utmp, 1);
2925
2926         } else if (!strcmp(p, "-ls-") || !strcmp(p, "+ls")) {
2927             SECOND_PASS_ONLY;
2928             conf_set_int(conf, CONF_login_shell, 0);
2929
2930         } else if (!strcmp(p, "-ls")) {
2931             SECOND_PASS_ONLY;
2932             conf_set_int(conf, CONF_login_shell, 1);
2933
2934         } else if (!strcmp(p, "-nethack")) {
2935             SECOND_PASS_ONLY;
2936             conf_set_int(conf, CONF_nethack_keypad, 1);
2937
2938         } else if (!strcmp(p, "-sb-") || !strcmp(p, "+sb")) {
2939             SECOND_PASS_ONLY;
2940             conf_set_int(conf, CONF_scrollbar, 0);
2941
2942         } else if (!strcmp(p, "-sb")) {
2943             SECOND_PASS_ONLY;
2944             conf_set_int(conf, CONF_scrollbar, 1);
2945
2946         } else if (!strcmp(p, "-name")) {
2947             EXPECTS_ARG;
2948             app_name = val;
2949
2950         } else if (!strcmp(p, "-xrm")) {
2951             EXPECTS_ARG;
2952             provide_xrm_string(val);
2953
2954         } else if(!strcmp(p, "-help") || !strcmp(p, "--help")) {
2955             help(stdout);
2956             exit(0);
2957
2958         } else if(!strcmp(p, "-version") || !strcmp(p, "--version")) {
2959             version(stdout);
2960             exit(0);
2961
2962         } else if (!strcmp(p, "-pgpfp")) {
2963             pgp_fingerprints();
2964             exit(1);
2965
2966         } else if(p[0] != '-' && (!do_everything ||
2967                                   process_nonoption_arg(p, conf,
2968                                                         allow_launch))) {
2969             /* do nothing */
2970
2971         } else {
2972             err = 1;
2973             fprintf(stderr, "%s: unrecognized option '%s'\n", appname, p);
2974         }
2975     }
2976
2977     return err;
2978 }
2979
2980 int uxsel_input_add(int fd, int rwx) {
2981     int flags = 0;
2982     if (rwx & 1) flags |= GDK_INPUT_READ;
2983     if (rwx & 2) flags |= GDK_INPUT_WRITE;
2984     if (rwx & 4) flags |= GDK_INPUT_EXCEPTION;
2985     assert(flags);
2986     return gdk_input_add(fd, flags, fd_input_func, NULL);
2987 }
2988
2989 void uxsel_input_remove(int id) {
2990     gdk_input_remove(id);
2991 }
2992
2993 char *setup_fonts_ucs(struct gui_data *inst)
2994 {
2995     int shadowbold = conf_get_int(inst->conf, CONF_shadowbold);
2996     int shadowboldoffset = conf_get_int(inst->conf, CONF_shadowboldoffset);
2997     FontSpec *fs;
2998     unifont *fonts[4];
2999     int i;
3000
3001     fs = conf_get_fontspec(inst->conf, CONF_font);
3002     fonts[0] = multifont_create(inst->area, fs->name, FALSE, FALSE,
3003                                 shadowboldoffset, shadowbold);
3004     if (!fonts[0]) {
3005         return dupprintf("unable to load font \"%s\"", fs->name);
3006     }
3007
3008     fs = conf_get_fontspec(inst->conf, CONF_boldfont);
3009     if (shadowbold || !fs->name[0]) {
3010         fonts[1] = NULL;
3011     } else {
3012         fonts[1] = multifont_create(inst->area, fs->name, FALSE, TRUE,
3013                                     shadowboldoffset, shadowbold);
3014         if (!fonts[1]) {
3015             if (fonts[0])
3016                 unifont_destroy(fonts[0]);
3017             return dupprintf("unable to load bold font \"%s\"", fs->name);
3018         }
3019     }
3020
3021     fs = conf_get_fontspec(inst->conf, CONF_widefont);
3022     if (fs->name[0]) {
3023         fonts[2] = multifont_create(inst->area, fs->name, TRUE, FALSE,
3024                                     shadowboldoffset, shadowbold);
3025         if (!fonts[2]) {
3026             for (i = 0; i < 2; i++)
3027                 if (fonts[i])
3028                     unifont_destroy(fonts[i]);
3029             return dupprintf("unable to load wide font \"%s\"", fs->name);
3030         }
3031     } else {
3032         fonts[2] = NULL;
3033     }
3034
3035     fs = conf_get_fontspec(inst->conf, CONF_wideboldfont);
3036     if (shadowbold || !fs->name[0]) {
3037         fonts[3] = NULL;
3038     } else {
3039         fonts[3] = multifont_create(inst->area, fs->name, TRUE, TRUE,
3040                                     shadowboldoffset, shadowbold);
3041         if (!fonts[3]) {
3042             for (i = 0; i < 3; i++)
3043                 if (fonts[i])
3044                     unifont_destroy(fonts[i]);
3045             return dupprintf("unable to load wide bold font \"%s\"", fs->name);
3046         }
3047     }
3048
3049     /*
3050      * Now we've got past all the possible error conditions, we can
3051      * actually update our state.
3052      */
3053
3054     for (i = 0; i < 4; i++) {
3055         if (inst->fonts[i])
3056             unifont_destroy(inst->fonts[i]);
3057         inst->fonts[i] = fonts[i];
3058     }
3059
3060     inst->font_width = inst->fonts[0]->width;
3061     inst->font_height = inst->fonts[0]->height;
3062
3063     inst->direct_to_font = init_ucs(&inst->ucsdata,
3064                                     conf_get_str(inst->conf, CONF_line_codepage),
3065                                     conf_get_int(inst->conf, CONF_utf8_override),
3066                                     inst->fonts[0]->public_charset,
3067                                     conf_get_int(inst->conf, CONF_vtmode));
3068
3069     return NULL;
3070 }
3071
3072 void set_geom_hints(struct gui_data *inst)
3073 {
3074     GdkGeometry geom;
3075     geom.min_width = inst->font_width + 2*inst->window_border;
3076     geom.min_height = inst->font_height + 2*inst->window_border;
3077     geom.max_width = geom.max_height = -1;
3078     geom.base_width = 2*inst->window_border;
3079     geom.base_height = 2*inst->window_border;
3080     geom.width_inc = inst->font_width;
3081     geom.height_inc = inst->font_height;
3082     geom.min_aspect = geom.max_aspect = 0;
3083     gtk_window_set_geometry_hints(GTK_WINDOW(inst->window), inst->area, &geom,
3084                                   GDK_HINT_MIN_SIZE | GDK_HINT_BASE_SIZE |
3085                                   GDK_HINT_RESIZE_INC);
3086 }
3087
3088 void clear_scrollback_menuitem(GtkMenuItem *item, gpointer data)
3089 {
3090     struct gui_data *inst = (struct gui_data *)data;
3091     term_clrsb(inst->term);
3092 }
3093
3094 void reset_terminal_menuitem(GtkMenuItem *item, gpointer data)
3095 {
3096     struct gui_data *inst = (struct gui_data *)data;
3097     term_pwron(inst->term, TRUE);
3098     if (inst->ldisc)
3099         ldisc_echoedit_update(inst->ldisc);
3100 }
3101
3102 void copy_all_menuitem(GtkMenuItem *item, gpointer data)
3103 {
3104     struct gui_data *inst = (struct gui_data *)data;
3105     term_copyall(inst->term);
3106 }
3107
3108 void special_menuitem(GtkMenuItem *item, gpointer data)
3109 {
3110     struct gui_data *inst = (struct gui_data *)data;
3111     int code = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(item),
3112                                                  "user-data"));
3113
3114     if (inst->back)
3115         inst->back->special(inst->backhandle, code);
3116 }
3117
3118 void about_menuitem(GtkMenuItem *item, gpointer data)
3119 {
3120     struct gui_data *inst = (struct gui_data *)data;
3121     about_box(inst->window);
3122 }
3123
3124 void event_log_menuitem(GtkMenuItem *item, gpointer data)
3125 {
3126     struct gui_data *inst = (struct gui_data *)data;
3127     showeventlog(inst->eventlogstuff, inst->window);
3128 }
3129
3130 void change_settings_menuitem(GtkMenuItem *item, gpointer data)
3131 {
3132     /* This maps colour indices in inst->conf to those used in inst->cols. */
3133     static const int ww[] = {
3134         256, 257, 258, 259, 260, 261,
3135         0, 8, 1, 9, 2, 10, 3, 11,
3136         4, 12, 5, 13, 6, 14, 7, 15
3137     };
3138     struct gui_data *inst = (struct gui_data *)data;
3139     char *title;
3140     Conf *oldconf, *newconf;
3141     int i, j, need_size;
3142
3143     assert(lenof(ww) == NCFGCOLOURS);
3144
3145     if (inst->reconfiguring)
3146       return;
3147     else
3148       inst->reconfiguring = TRUE;
3149
3150     title = dupcat(appname, " Reconfiguration", NULL);
3151
3152     oldconf = inst->conf;
3153     newconf = conf_copy(inst->conf);
3154
3155     if (do_config_box(title, newconf, 1,
3156                       inst->back?inst->back->cfg_info(inst->backhandle):0)) {
3157         inst->conf = newconf;
3158
3159         /* Pass new config data to the logging module */
3160         log_reconfig(inst->logctx, inst->conf);
3161         /*
3162          * Flush the line discipline's edit buffer in the case
3163          * where local editing has just been disabled.
3164          */
3165         if (inst->ldisc) {
3166             ldisc_configure(inst->ldisc, inst->conf);
3167             ldisc_echoedit_update(inst->ldisc);
3168         }
3169         /* Pass new config data to the terminal */
3170         term_reconfig(inst->term, inst->conf);
3171         /* Pass new config data to the back end */
3172         if (inst->back)
3173             inst->back->reconfig(inst->backhandle, inst->conf);
3174
3175         cache_conf_values(inst);
3176
3177         /*
3178          * Just setting inst->conf is sufficient to cause colour
3179          * setting changes to appear on the next ESC]R palette
3180          * reset. But we should also check whether any colour
3181          * settings have been changed, and revert the ones that have
3182          * to the new default, on the assumption that the user is
3183          * most likely to want an immediate update.
3184          */
3185         for (i = 0; i < NCFGCOLOURS; i++) {
3186             for (j = 0; j < 3; j++)
3187                 if (conf_get_int_int(oldconf, CONF_colours, i*3+j) !=
3188                     conf_get_int_int(newconf, CONF_colours, i*3+j))
3189                     break;
3190             if (j < 3) {
3191                 real_palette_set(inst, ww[i],
3192                                  conf_get_int_int(newconf,CONF_colours,i*3+0),
3193                                  conf_get_int_int(newconf,CONF_colours,i*3+1),
3194                                  conf_get_int_int(newconf,CONF_colours,i*3+2));
3195
3196                 /*
3197                  * If the default background has changed, we must
3198                  * repaint the space in between the window border
3199                  * and the text area.
3200                  */
3201                 if (ww[i] == 258) {
3202                     set_window_background(inst);
3203                     draw_backing_rect(inst);
3204                 }
3205             }
3206         }
3207
3208         /*
3209          * If the scrollbar needs to be shown, hidden, or moved
3210          * from one end to the other of the window, do so now.
3211          */
3212         if (conf_get_int(oldconf, CONF_scrollbar) !=
3213             conf_get_int(newconf, CONF_scrollbar)) {
3214             if (conf_get_int(newconf, CONF_scrollbar))
3215                 gtk_widget_show(inst->sbar);
3216             else
3217                 gtk_widget_hide(inst->sbar);
3218         }
3219         if (conf_get_int(oldconf, CONF_scrollbar_on_left) !=
3220             conf_get_int(newconf, CONF_scrollbar_on_left)) {
3221             gtk_box_reorder_child(inst->hbox, inst->sbar,
3222                                   conf_get_int(newconf, CONF_scrollbar_on_left)
3223                                   ? 0 : 1);
3224         }
3225
3226         /*
3227          * Change the window title, if required.
3228          */
3229         if (strcmp(conf_get_str(oldconf, CONF_wintitle),
3230                    conf_get_str(newconf, CONF_wintitle)))
3231             set_title(inst, conf_get_str(newconf, CONF_wintitle));
3232         set_window_titles(inst);
3233
3234         /*
3235          * Redo the whole tangled fonts and Unicode mess if
3236          * necessary.
3237          */
3238         need_size = FALSE;
3239         if (strcmp(conf_get_fontspec(oldconf, CONF_font)->name,
3240                    conf_get_fontspec(newconf, CONF_font)->name) ||
3241             strcmp(conf_get_fontspec(oldconf, CONF_boldfont)->name,
3242                    conf_get_fontspec(newconf, CONF_boldfont)->name) ||
3243             strcmp(conf_get_fontspec(oldconf, CONF_widefont)->name,
3244                    conf_get_fontspec(newconf, CONF_widefont)->name) ||
3245             strcmp(conf_get_fontspec(oldconf, CONF_wideboldfont)->name,
3246                    conf_get_fontspec(newconf, CONF_wideboldfont)->name) ||
3247             strcmp(conf_get_str(oldconf, CONF_line_codepage),
3248                    conf_get_str(newconf, CONF_line_codepage)) ||
3249             conf_get_int(oldconf, CONF_utf8_override) !=
3250             conf_get_int(newconf, CONF_utf8_override) ||
3251             conf_get_int(oldconf, CONF_vtmode) !=
3252             conf_get_int(newconf, CONF_vtmode) ||
3253             conf_get_int(oldconf, CONF_shadowbold) !=
3254             conf_get_int(newconf, CONF_shadowbold) ||
3255             conf_get_int(oldconf, CONF_shadowboldoffset) !=
3256             conf_get_int(newconf, CONF_shadowboldoffset)) {
3257             char *errmsg = setup_fonts_ucs(inst);
3258             if (errmsg) {
3259                 char *msgboxtext =
3260                     dupprintf("Could not change fonts in terminal window: %s\n",
3261                               errmsg);
3262                 messagebox(inst->window, "Font setup error", msgboxtext,
3263                            string_width("Could not change fonts in terminal window:"),
3264                            "OK", 'o', +1, 1,
3265                            NULL);
3266                 sfree(msgboxtext);
3267                 sfree(errmsg);
3268             } else {
3269                 need_size = TRUE;
3270             }
3271         }
3272
3273         /*
3274          * Resize the window.
3275          */
3276         if (conf_get_int(oldconf, CONF_width) !=
3277             conf_get_int(newconf, CONF_width) ||
3278             conf_get_int(oldconf, CONF_height) !=
3279             conf_get_int(newconf, CONF_height) ||
3280             conf_get_int(oldconf, CONF_window_border) !=
3281             conf_get_int(newconf, CONF_window_border) ||
3282             need_size) {
3283             set_geom_hints(inst);
3284             request_resize(inst, conf_get_int(newconf, CONF_width),
3285                            conf_get_int(newconf, CONF_height));
3286         } else {
3287             /*
3288              * The above will have caused a call to term_size() for
3289              * us if it happened. If the user has fiddled with only
3290              * the scrollback size, the above will not have
3291              * happened and we will need an explicit term_size()
3292              * here.
3293              */
3294             if (conf_get_int(oldconf, CONF_savelines) !=
3295                 conf_get_int(newconf, CONF_savelines))
3296                 term_size(inst->term, inst->term->rows, inst->term->cols,
3297                           conf_get_int(newconf, CONF_savelines));
3298         }
3299
3300         term_invalidate(inst->term);
3301
3302         /*
3303          * We do an explicit full redraw here to ensure the window
3304          * border has been redrawn as well as the text area.
3305          */
3306         gtk_widget_queue_draw(inst->area);
3307
3308         conf_free(oldconf);
3309     } else {
3310         conf_free(newconf);
3311     }
3312     sfree(title);
3313     inst->reconfiguring = FALSE;
3314 }
3315
3316 void fork_and_exec_self(struct gui_data *inst, int fd_to_close, ...)
3317 {
3318     /*
3319      * Re-execing ourself is not an exact science under Unix. I do
3320      * the best I can by using /proc/self/exe if available and by
3321      * assuming argv[0] can be found on $PATH if not.
3322      * 
3323      * Note that we also have to reconstruct the elements of the
3324      * original argv which gtk swallowed, since the user wants the
3325      * new session to appear on the same X display as the old one.
3326      */
3327     char **args;
3328     va_list ap;
3329     int i, n;
3330     int pid;
3331
3332     /*
3333      * Collect the arguments with which to re-exec ourself.
3334      */
3335     va_start(ap, fd_to_close);
3336     n = 2;                             /* progname and terminating NULL */
3337     n += inst->ngtkargs;
3338     while (va_arg(ap, char *) != NULL)
3339         n++;
3340     va_end(ap);
3341
3342     args = snewn(n, char *);
3343     args[0] = inst->progname;
3344     args[n-1] = NULL;
3345     for (i = 0; i < inst->ngtkargs; i++)
3346         args[i+1] = inst->gtkargvstart[i];
3347
3348     i++;
3349     va_start(ap, fd_to_close);
3350     while ((args[i++] = va_arg(ap, char *)) != NULL);
3351     va_end(ap);
3352
3353     assert(i == n);
3354
3355     /*
3356      * Do the double fork.
3357      */
3358     pid = fork();
3359     if (pid < 0) {
3360         perror("fork");
3361         sfree(args);
3362         return;
3363     }
3364
3365     if (pid == 0) {
3366         int pid2 = fork();
3367         if (pid2 < 0) {
3368             perror("fork");
3369             _exit(1);
3370         } else if (pid2 > 0) {
3371             /*
3372              * First child has successfully forked second child. My
3373              * Work Here Is Done. Note the use of _exit rather than
3374              * exit: the latter appears to cause destroy messages
3375              * to be sent to the X server. I suspect gtk uses
3376              * atexit.
3377              */
3378             _exit(0);
3379         }
3380
3381         /*
3382          * If we reach here, we are the second child, so we now
3383          * actually perform the exec.
3384          */
3385         if (fd_to_close >= 0)
3386             close(fd_to_close);
3387
3388         execv("/proc/self/exe", args);
3389         execvp(inst->progname, args);
3390         perror("exec");
3391         _exit(127);
3392
3393     } else {
3394         int status;
3395         sfree(args);
3396         waitpid(pid, &status, 0);
3397     }
3398
3399 }
3400
3401 void dup_session_menuitem(GtkMenuItem *item, gpointer gdata)
3402 {
3403     struct gui_data *inst = (struct gui_data *)gdata;
3404     /*
3405      * For this feature we must marshal conf and (possibly) pty_argv
3406      * into a byte stream, create a pipe, and send this byte stream
3407      * to the child through the pipe.
3408      */
3409     int i, ret, sersize, size;
3410     char *data;
3411     char option[80];
3412     int pipefd[2];
3413
3414     if (pipe(pipefd) < 0) {
3415         perror("pipe");
3416         return;
3417     }
3418
3419     size = sersize = conf_serialised_size(inst->conf);
3420     if (use_pty_argv && pty_argv) {
3421         for (i = 0; pty_argv[i]; i++)
3422             size += strlen(pty_argv[i]) + 1;
3423     }
3424
3425     data = snewn(size, char);
3426     conf_serialise(inst->conf, data);
3427     if (use_pty_argv && pty_argv) {
3428         int p = sersize;
3429         for (i = 0; pty_argv[i]; i++) {
3430             strcpy(data + p, pty_argv[i]);
3431             p += strlen(pty_argv[i]) + 1;
3432         }
3433         assert(p == size);
3434     }
3435
3436     sprintf(option, "---[%d,%d]", pipefd[0], size);
3437     noncloexec(pipefd[0]);
3438     fork_and_exec_self(inst, pipefd[1], option, NULL);
3439     close(pipefd[0]);
3440
3441     i = ret = 0;
3442     while (i < size && (ret = write(pipefd[1], data + i, size - i)) > 0)
3443         i += ret;
3444     if (ret < 0)
3445         perror("write to pipe");
3446     close(pipefd[1]);
3447     sfree(data);
3448 }
3449
3450 int read_dupsession_data(struct gui_data *inst, Conf *conf, char *arg)
3451 {
3452     int fd, i, ret, size, size_used;
3453     char *data;
3454
3455     if (sscanf(arg, "---[%d,%d]", &fd, &size) != 2) {
3456         fprintf(stderr, "%s: malformed magic argument `%s'\n", appname, arg);
3457         exit(1);
3458     }
3459
3460     data = snewn(size, char);
3461     i = ret = 0;
3462     while (i < size && (ret = read(fd, data + i, size - i)) > 0)
3463         i += ret;
3464     if (ret < 0) {
3465         perror("read from pipe");
3466         exit(1);
3467     } else if (i < size) {
3468         fprintf(stderr, "%s: unexpected EOF in Duplicate Session data\n",
3469                 appname);
3470         exit(1);
3471     }
3472
3473     size_used = conf_deserialise(conf, data, size);
3474     if (use_pty_argv && size > size_used) {
3475         int n = 0;
3476         i = size_used;
3477         while (i < size) {
3478             while (i < size && data[i]) i++;
3479             if (i >= size) {
3480                 fprintf(stderr, "%s: malformed Duplicate Session data\n",
3481                         appname);
3482                 exit(1);
3483             }
3484             i++;
3485             n++;
3486         }
3487         pty_argv = snewn(n+1, char *);
3488         pty_argv[n] = NULL;
3489         n = 0;
3490         i = size_used;
3491         while (i < size) {
3492             char *p = data + i;
3493             while (i < size && data[i]) i++;
3494             assert(i < size);
3495             i++;
3496             pty_argv[n++] = dupstr(p);
3497         }
3498     }
3499
3500     sfree(data);
3501
3502     return 0;
3503 }
3504
3505 void new_session_menuitem(GtkMenuItem *item, gpointer data)
3506 {
3507     struct gui_data *inst = (struct gui_data *)data;
3508
3509     fork_and_exec_self(inst, -1, NULL);
3510 }
3511
3512 void restart_session_menuitem(GtkMenuItem *item, gpointer data)
3513 {
3514     struct gui_data *inst = (struct gui_data *)data;
3515
3516     if (!inst->back) {
3517         logevent(inst, "----- Session restarted -----");
3518         term_pwron(inst->term, FALSE);
3519         start_backend(inst);
3520         inst->exited = FALSE;
3521     }
3522 }
3523
3524 void saved_session_menuitem(GtkMenuItem *item, gpointer data)
3525 {
3526     struct gui_data *inst = (struct gui_data *)data;
3527     char *str = (char *)g_object_get_data(G_OBJECT(item), "user-data");
3528
3529     fork_and_exec_self(inst, -1, "-load", str, NULL);
3530 }
3531
3532 void saved_session_freedata(GtkMenuItem *item, gpointer data)
3533 {
3534     char *str = (char *)g_object_get_data(G_OBJECT(item), "user-data");
3535
3536     sfree(str);
3537 }
3538
3539 static void update_savedsess_menu(GtkMenuItem *menuitem, gpointer data)
3540 {
3541     struct gui_data *inst = (struct gui_data *)data;
3542     struct sesslist sesslist;
3543     int i;
3544
3545     gtk_container_foreach(GTK_CONTAINER(inst->sessionsmenu),
3546                           (GtkCallback)gtk_widget_destroy, NULL);
3547
3548     get_sesslist(&sesslist, TRUE);
3549     /* skip sesslist.sessions[0] == Default Settings */
3550     for (i = 1; i < sesslist.nsessions; i++) {
3551         GtkWidget *menuitem =
3552             gtk_menu_item_new_with_label(sesslist.sessions[i]);
3553         gtk_container_add(GTK_CONTAINER(inst->sessionsmenu), menuitem);
3554         gtk_widget_show(menuitem);
3555         g_object_set_data(G_OBJECT(menuitem), "user-data",
3556                           dupstr(sesslist.sessions[i]));
3557         g_signal_connect(G_OBJECT(menuitem), "activate",
3558                          G_CALLBACK(saved_session_menuitem),
3559                          inst);
3560         g_signal_connect(G_OBJECT(menuitem), "destroy",
3561                          G_CALLBACK(saved_session_freedata),
3562                          inst);
3563     }
3564     if (sesslist.nsessions <= 1) {
3565         GtkWidget *menuitem =
3566             gtk_menu_item_new_with_label("(No sessions)");
3567         gtk_widget_set_sensitive(menuitem, FALSE);
3568         gtk_container_add(GTK_CONTAINER(inst->sessionsmenu), menuitem);
3569         gtk_widget_show(menuitem);
3570     }
3571     get_sesslist(&sesslist, FALSE); /* free up */
3572 }
3573
3574 void set_window_icon(GtkWidget *window, const char *const *const *icon,
3575                      int n_icon)
3576 {
3577     GdkPixmap *iconpm;
3578     GdkBitmap *iconmask;
3579 #if GTK_CHECK_VERSION(2,0,0)
3580     GList *iconlist;
3581     int n;
3582 #endif
3583
3584     if (!n_icon)
3585         return;
3586
3587     gtk_widget_realize(window);
3588     iconpm = gdk_pixmap_create_from_xpm_d(gtk_widget_get_window(window),
3589                                           &iconmask, NULL, (gchar **)icon[0]);
3590     gdk_window_set_icon(gtk_widget_get_window(window), NULL, iconpm, iconmask);
3591
3592 #if GTK_CHECK_VERSION(2,0,0)
3593     iconlist = NULL;
3594     for (n = 0; n < n_icon; n++) {
3595         iconlist =
3596             g_list_append(iconlist,
3597                           gdk_pixbuf_new_from_xpm_data((const gchar **)
3598                                                        icon[n]));
3599     }
3600     gdk_window_set_icon_list(gtk_widget_get_window(window), iconlist);
3601 #endif
3602 }
3603
3604 void update_specials_menu(void *frontend)
3605 {
3606     struct gui_data *inst = (struct gui_data *)frontend;
3607
3608     const struct telnet_special *specials;
3609
3610     if (inst->back)
3611         specials = inst->back->get_specials(inst->backhandle);
3612     else
3613         specials = NULL;
3614
3615     /* I believe this disposes of submenus too. */
3616     gtk_container_foreach(GTK_CONTAINER(inst->specialsmenu),
3617                           (GtkCallback)gtk_widget_destroy, NULL);
3618     if (specials) {
3619         int i;
3620         GtkWidget *menu = inst->specialsmenu;
3621         /* A lame "stack" for submenus that will do for now. */
3622         GtkWidget *saved_menu = NULL;
3623         int nesting = 1;
3624         for (i = 0; nesting > 0; i++) {
3625             GtkWidget *menuitem = NULL;
3626             switch (specials[i].code) {
3627               case TS_SUBMENU:
3628                 assert (nesting < 2);
3629                 saved_menu = menu; /* XXX lame stacking */
3630                 menu = gtk_menu_new();
3631                 menuitem = gtk_menu_item_new_with_label(specials[i].name);
3632                 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), menu);
3633                 gtk_container_add(GTK_CONTAINER(saved_menu), menuitem);
3634                 gtk_widget_show(menuitem);
3635                 menuitem = NULL;
3636                 nesting++;
3637                 break;
3638               case TS_EXITMENU:
3639                 nesting--;
3640                 if (nesting) {
3641                     menu = saved_menu; /* XXX lame stacking */
3642                     saved_menu = NULL;
3643                 }
3644                 break;
3645               case TS_SEP:
3646                 menuitem = gtk_menu_item_new();
3647                 break;
3648               default:
3649                 menuitem = gtk_menu_item_new_with_label(specials[i].name);
3650                 g_object_set_data(G_OBJECT(menuitem), "user-data",
3651                                   GINT_TO_POINTER(specials[i].code));
3652                 g_signal_connect(G_OBJECT(menuitem), "activate",
3653                                  G_CALLBACK(special_menuitem), inst);
3654                 break;
3655             }
3656             if (menuitem) {
3657                 gtk_container_add(GTK_CONTAINER(menu), menuitem);
3658                 gtk_widget_show(menuitem);
3659             }
3660         }
3661         gtk_widget_show(inst->specialsitem1);
3662         gtk_widget_show(inst->specialsitem2);
3663     } else {
3664         gtk_widget_hide(inst->specialsitem1);
3665         gtk_widget_hide(inst->specialsitem2);
3666     }
3667 }
3668
3669 static void start_backend(struct gui_data *inst)
3670 {
3671     extern Backend *select_backend(Conf *conf);
3672     char *realhost;
3673     const char *error;
3674     char *s;
3675
3676     inst->back = select_backend(inst->conf);
3677
3678     error = inst->back->init((void *)inst, &inst->backhandle,
3679                              inst->conf,
3680                              conf_get_str(inst->conf, CONF_host),
3681                              conf_get_int(inst->conf, CONF_port),
3682                              &realhost,
3683                              conf_get_int(inst->conf, CONF_tcp_nodelay),
3684                              conf_get_int(inst->conf, CONF_tcp_keepalives));
3685
3686     if (error) {
3687         char *msg = dupprintf("Unable to open connection to %s:\n%s",
3688                               conf_get_str(inst->conf, CONF_host), error);
3689         inst->exited = TRUE;
3690         fatal_message_box(inst->window, msg);
3691         sfree(msg);
3692         exit(0);
3693     }
3694
3695     s = conf_get_str(inst->conf, CONF_wintitle);
3696     if (s[0]) {
3697         set_title_and_icon(inst, s, s);
3698     } else {
3699         char *title = make_default_wintitle(realhost);
3700         set_title_and_icon(inst, title, title);
3701         sfree(title);
3702     }
3703     sfree(realhost);
3704
3705     inst->back->provide_logctx(inst->backhandle, inst->logctx);
3706
3707     term_provide_resize_fn(inst->term, inst->back->size, inst->backhandle);
3708
3709     inst->ldisc =
3710         ldisc_create(inst->conf, inst->term, inst->back, inst->backhandle,
3711                      inst);
3712
3713     gtk_widget_set_sensitive(inst->restartitem, FALSE);
3714 }
3715
3716 int pt_main(int argc, char **argv)
3717 {
3718     extern int cfgbox(Conf *conf);
3719     struct gui_data *inst;
3720
3721     setlocale(LC_CTYPE, "");
3722
3723     /*
3724      * Create an instance structure and initialise to zeroes
3725      */
3726     inst = snew(struct gui_data);
3727     memset(inst, 0, sizeof(*inst));
3728     inst->alt_keycode = -1;            /* this one needs _not_ to be zero */
3729     inst->busy_status = BUSY_NOT;
3730     inst->conf = conf_new();
3731     inst->wintitle = inst->icontitle = NULL;
3732     inst->quit_fn_scheduled = FALSE;
3733     inst->idle_fn_scheduled = FALSE;
3734
3735     /* defer any child exit handling until we're ready to deal with
3736      * it */
3737     block_signal(SIGCHLD, 1);
3738
3739     inst->progname = argv[0];
3740     /*
3741      * Copy the original argv before letting gtk_init fiddle with
3742      * it. It will be required later.
3743      */
3744     {
3745         int i, oldargc;
3746         inst->gtkargvstart = snewn(argc-1, char *);
3747         for (i = 1; i < argc; i++)
3748             inst->gtkargvstart[i-1] = dupstr(argv[i]);
3749         oldargc = argc;
3750         gtk_init(&argc, &argv);
3751         inst->ngtkargs = oldargc - argc;
3752     }
3753
3754     if (argc > 1 && !strncmp(argv[1], "---", 3)) {
3755         read_dupsession_data(inst, inst->conf, argv[1]);
3756         /* Splatter this argument so it doesn't clutter a ps listing */
3757         smemclr(argv[1], strlen(argv[1]));
3758     } else {
3759         /* By default, we bring up the config dialog, rather than launching
3760          * a session. This gets set to TRUE if something happens to change
3761          * that (e.g., a hostname is specified on the command-line). */
3762         int allow_launch = FALSE;
3763         if (do_cmdline(argc, argv, 0, &allow_launch, inst, inst->conf))
3764             exit(1);                   /* pre-defaults pass to get -class */
3765         do_defaults(NULL, inst->conf);
3766         if (do_cmdline(argc, argv, 1, &allow_launch, inst, inst->conf))
3767             exit(1);                   /* post-defaults, do everything */
3768
3769         cmdline_run_saved(inst->conf);
3770
3771         if (loaded_session)
3772             allow_launch = TRUE;
3773
3774         if ((!allow_launch || !conf_launchable(inst->conf)) &&
3775             !cfgbox(inst->conf))
3776             exit(0);                   /* config box hit Cancel */
3777     }
3778
3779     if (!compound_text_atom)
3780         compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE);
3781     if (!utf8_string_atom)
3782         utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
3783
3784     inst->area = gtk_drawing_area_new();
3785
3786 #if GTK_CHECK_VERSION(2,0,0)
3787     inst->imc = gtk_im_multicontext_new();
3788 #endif
3789
3790     {
3791         char *errmsg = setup_fonts_ucs(inst);
3792         if (errmsg) {
3793             fprintf(stderr, "%s: %s\n", appname, errmsg);
3794             exit(1);
3795         }
3796     }
3797     init_cutbuffers();
3798
3799     inst->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3800     {
3801         const char *winclass = conf_get_str(inst->conf, CONF_winclass);
3802         if (*winclass)
3803             gtk_window_set_wmclass(GTK_WINDOW(inst->window),
3804                                    winclass, winclass);
3805     }
3806
3807     /*
3808      * Set up the colour map.
3809      */
3810     palette_reset(inst);
3811
3812     inst->width = conf_get_int(inst->conf, CONF_width);
3813     inst->height = conf_get_int(inst->conf, CONF_height);
3814     cache_conf_values(inst);
3815
3816     {
3817         int w = inst->font_width * inst->width + 2*inst->window_border;
3818         int h = inst->font_height * inst->height + 2*inst->window_border;
3819 #if GTK_CHECK_VERSION(2,0,0)
3820         gtk_widget_set_size_request(inst->area, w, h);
3821 #else
3822         gtk_drawing_area_size(GTK_DRAWING_AREA(inst->area), w, h);
3823 #endif
3824     }
3825     inst->sbar_adjust = GTK_ADJUSTMENT(gtk_adjustment_new(0,0,0,0,0,0));
3826     inst->sbar = gtk_vscrollbar_new(inst->sbar_adjust);
3827     inst->hbox = GTK_BOX(gtk_hbox_new(FALSE, 0));
3828     /*
3829      * We always create the scrollbar; it remains invisible if
3830      * unwanted, so we can pop it up quickly if it suddenly becomes
3831      * desirable.
3832      */
3833     if (conf_get_int(inst->conf, CONF_scrollbar_on_left))
3834         gtk_box_pack_start(inst->hbox, inst->sbar, FALSE, FALSE, 0);
3835     gtk_box_pack_start(inst->hbox, inst->area, TRUE, TRUE, 0);
3836     if (!conf_get_int(inst->conf, CONF_scrollbar_on_left))
3837         gtk_box_pack_start(inst->hbox, inst->sbar, FALSE, FALSE, 0);
3838
3839     gtk_container_add(GTK_CONTAINER(inst->window), GTK_WIDGET(inst->hbox));
3840
3841     set_geom_hints(inst);
3842
3843     gtk_widget_show(inst->area);
3844     if (conf_get_int(inst->conf, CONF_scrollbar))
3845         gtk_widget_show(inst->sbar);
3846     else
3847         gtk_widget_hide(inst->sbar);
3848     gtk_widget_show(GTK_WIDGET(inst->hbox));
3849
3850 #if GTK_CHECK_VERSION(2,0,0)
3851     if (inst->geometry) {
3852         gtk_window_parse_geometry(GTK_WINDOW(inst->window), inst->geometry);
3853     }
3854 #else
3855     if (inst->gotpos) {
3856         int x = inst->xpos, y = inst->ypos;
3857         GtkRequisition req;
3858         gtk_widget_size_request(GTK_WIDGET(inst->window), &req);
3859         if (inst->gravity & 1) x += gdk_screen_width() - req.width;
3860         if (inst->gravity & 2) y += gdk_screen_height() - req.height;
3861         gtk_window_set_position(GTK_WINDOW(inst->window), GTK_WIN_POS_NONE);
3862         gtk_widget_set_uposition(GTK_WIDGET(inst->window), x, y);
3863     }
3864 #endif
3865
3866     g_signal_connect(G_OBJECT(inst->window), "destroy",
3867                      G_CALLBACK(destroy), inst);
3868     g_signal_connect(G_OBJECT(inst->window), "delete_event",
3869                      G_CALLBACK(delete_window), inst);
3870     g_signal_connect(G_OBJECT(inst->window), "key_press_event",
3871                      G_CALLBACK(key_event), inst);
3872     g_signal_connect(G_OBJECT(inst->window), "key_release_event",
3873                      G_CALLBACK(key_event), inst);
3874     g_signal_connect(G_OBJECT(inst->window), "focus_in_event",
3875                      G_CALLBACK(focus_event), inst);
3876     g_signal_connect(G_OBJECT(inst->window), "focus_out_event",
3877                      G_CALLBACK(focus_event), inst);
3878     g_signal_connect(G_OBJECT(inst->area), "configure_event",
3879                      G_CALLBACK(configure_area), inst);
3880     g_signal_connect(G_OBJECT(inst->area), "expose_event",
3881                      G_CALLBACK(expose_area), inst);
3882     g_signal_connect(G_OBJECT(inst->area), "button_press_event",
3883                      G_CALLBACK(button_event), inst);
3884     g_signal_connect(G_OBJECT(inst->area), "button_release_event",
3885                      G_CALLBACK(button_event), inst);
3886 #if GTK_CHECK_VERSION(2,0,0)
3887     g_signal_connect(G_OBJECT(inst->area), "scroll_event",
3888                      G_CALLBACK(scroll_event), inst);
3889 #endif
3890     g_signal_connect(G_OBJECT(inst->area), "motion_notify_event",
3891                      G_CALLBACK(motion_event), inst);
3892     g_signal_connect(G_OBJECT(inst->area), "selection_received",
3893                      G_CALLBACK(selection_received), inst);
3894     g_signal_connect(G_OBJECT(inst->area), "selection_get",
3895                      G_CALLBACK(selection_get), inst);
3896     g_signal_connect(G_OBJECT(inst->area), "selection_clear_event",
3897                      G_CALLBACK(selection_clear), inst);
3898 #if GTK_CHECK_VERSION(2,0,0)
3899     g_signal_connect(G_OBJECT(inst->imc), "commit",
3900                      G_CALLBACK(input_method_commit_event), inst);
3901 #endif
3902     if (conf_get_int(inst->conf, CONF_scrollbar))
3903         g_signal_connect(G_OBJECT(inst->sbar_adjust), "value_changed",
3904                          G_CALLBACK(scrollbar_moved), inst);
3905     gtk_widget_add_events(GTK_WIDGET(inst->area),
3906                           GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK |
3907                           GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
3908                           GDK_POINTER_MOTION_MASK | GDK_BUTTON_MOTION_MASK);
3909
3910     {
3911         extern const char *const *const main_icon[];
3912         extern const int n_main_icon;
3913         set_window_icon(inst->window, main_icon, n_main_icon);
3914     }
3915
3916     gtk_widget_show(inst->window);
3917
3918     set_window_background(inst);
3919
3920     /*
3921      * Set up the Ctrl+rightclick context menu.
3922      */
3923     {
3924         GtkWidget *menuitem;
3925         char *s;
3926         extern const int use_event_log, new_session, saved_sessions;
3927
3928         inst->menu = gtk_menu_new();
3929
3930 #define MKMENUITEM(title, func) do                                      \
3931         {                                                               \
3932             menuitem = gtk_menu_item_new_with_label(title);             \
3933             gtk_container_add(GTK_CONTAINER(inst->menu), menuitem);     \
3934             gtk_widget_show(menuitem);                                  \
3935             g_signal_connect(G_OBJECT(menuitem), "activate",            \
3936                              G_CALLBACK(func), inst);                   \
3937         } while (0)
3938
3939 #define MKSUBMENU(title) do                                             \
3940         {                                                               \
3941             menuitem = gtk_menu_item_new_with_label(title);             \
3942             gtk_container_add(GTK_CONTAINER(inst->menu), menuitem);     \
3943             gtk_widget_show(menuitem);                                  \
3944         } while (0)
3945
3946 #define MKSEP() do                                                      \
3947         {                                                               \
3948             menuitem = gtk_menu_item_new();                             \
3949             gtk_container_add(GTK_CONTAINER(inst->menu), menuitem);     \
3950             gtk_widget_show(menuitem);                                  \
3951         } while (0)
3952
3953         if (new_session)
3954             MKMENUITEM("New Session...", new_session_menuitem);
3955         MKMENUITEM("Restart Session", restart_session_menuitem);
3956         inst->restartitem = menuitem;
3957         gtk_widget_set_sensitive(inst->restartitem, FALSE);
3958         MKMENUITEM("Duplicate Session", dup_session_menuitem);
3959         if (saved_sessions) {
3960             inst->sessionsmenu = gtk_menu_new();
3961             /* sessionsmenu will be updated when it's invoked */
3962             /* XXX is this the right way to do dynamic menus in Gtk? */
3963             MKMENUITEM("Saved Sessions", update_savedsess_menu);
3964             gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem),
3965                                       inst->sessionsmenu);
3966         }
3967         MKSEP();
3968         MKMENUITEM("Change Settings...", change_settings_menuitem);
3969         MKSEP();
3970         if (use_event_log)
3971             MKMENUITEM("Event Log", event_log_menuitem);
3972         MKSUBMENU("Special Commands");
3973         inst->specialsmenu = gtk_menu_new();
3974         gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), inst->specialsmenu);
3975         inst->specialsitem1 = menuitem;
3976         MKSEP();
3977         inst->specialsitem2 = menuitem;
3978         gtk_widget_hide(inst->specialsitem1);
3979         gtk_widget_hide(inst->specialsitem2);
3980         MKMENUITEM("Clear Scrollback", clear_scrollback_menuitem);
3981         MKMENUITEM("Reset Terminal", reset_terminal_menuitem);
3982         MKMENUITEM("Copy All", copy_all_menuitem);
3983         MKSEP();
3984         s = dupcat("About ", appname, NULL);
3985         MKMENUITEM(s, about_menuitem);
3986         sfree(s);
3987 #undef MKMENUITEM
3988 #undef MKSUBMENU
3989 #undef MKSEP
3990     }
3991
3992     inst->textcursor = make_mouse_ptr(inst, GDK_XTERM);
3993     inst->rawcursor = make_mouse_ptr(inst, GDK_LEFT_PTR);
3994     inst->waitcursor = make_mouse_ptr(inst, GDK_WATCH);
3995     inst->blankcursor = make_mouse_ptr(inst, -1);
3996     make_mouse_ptr(inst, -2);          /* clean up cursor font */
3997     inst->currcursor = inst->textcursor;
3998     show_mouseptr(inst, 1);
3999
4000     inst->eventlogstuff = eventlogstuff_new();
4001
4002     request_callback_notifications(notify_toplevel_callback, inst);
4003
4004     inst->term = term_init(inst->conf, &inst->ucsdata, inst);
4005     inst->logctx = log_init(inst, inst->conf);
4006     term_provide_logctx(inst->term, inst->logctx);
4007
4008     uxsel_init();
4009
4010     term_size(inst->term, inst->height, inst->width,
4011               conf_get_int(inst->conf, CONF_savelines));
4012
4013     start_backend(inst);
4014
4015     ldisc_echoedit_update(inst->ldisc);     /* cause ldisc to notice changes */
4016
4017     /* now we're reday to deal with the child exit handler being
4018      * called */
4019     block_signal(SIGCHLD, 0);
4020
4021     /*
4022      * Block SIGPIPE: if we attempt Duplicate Session or similar
4023      * and it falls over in some way, we certainly don't want
4024      * SIGPIPE terminating the main pterm/PuTTY. Note that we do
4025      * this _after_ (at least pterm) forks off its child process,
4026      * since the child wants SIGPIPE handled in the usual way.
4027      */
4028     block_signal(SIGPIPE, 1);
4029
4030     inst->exited = FALSE;
4031
4032     gtk_main();
4033
4034     return 0;
4035 }