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