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