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