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