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