]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - unix/pterm.c
3ae931f4e9d9bccf023b4be37cc1a1cf08efbd49
[PuTTY.git] / unix / pterm.c
1 /*
2  * pterm - a fusion of the PuTTY terminal emulator with a Unix pty
3  * back end, all running as a GTK application. Wish me luck.
4  */
5
6 #include <string.h>
7 #include <assert.h>
8 #include <stdlib.h>
9 #include <stdio.h>
10 #include <time.h>
11 #include <errno.h>
12 #include <fcntl.h>
13 #include <unistd.h>
14 #include <gtk/gtk.h>
15 #include <gdk/gdkkeysyms.h>
16
17 #define PUTTY_DO_GLOBALS               /* actually _define_ globals */
18 #include "putty.h"
19
20 #define CAT2(x,y) x ## y
21 #define CAT(x,y) CAT2(x,y)
22 #define ASSERT(x) enum {CAT(assertion_,__LINE__) = 1 / (x)}
23
24 #define NCOLOURS (lenof(((Config *)0)->colours))
25
26 struct gui_data {
27     GtkWidget *window, *area, *sbar;
28     GtkBox *hbox;
29     GtkAdjustment *sbar_adjust;
30     GdkPixmap *pixmap;
31     GdkFont *fonts[2];                 /* normal and bold (for now!) */
32     GdkCursor *rawcursor, *textcursor, *blankcursor, *currcursor;
33     GdkColor cols[NCOLOURS];
34     GdkColormap *colmap;
35     wchar_t *pastein_data;
36     int pastein_data_len;
37     char *pasteout_data;
38     int pasteout_data_len;
39     int font_width, font_height;
40     int ignore_sbar;
41     int mouseptr_visible;
42     guint term_paste_idle_id;
43     GdkAtom compound_text_atom;
44     char wintitle[sizeof(((Config *)0)->wintitle)];
45     char icontitle[sizeof(((Config *)0)->wintitle)];
46 };
47
48 static struct gui_data the_inst;
49 static struct gui_data *inst = &the_inst;   /* so we always write `inst->' */
50 static int send_raw_mouse;
51
52 void ldisc_update(int echo, int edit)
53 {
54     /*
55      * This is a stub in pterm. If I ever produce a Unix
56      * command-line ssh/telnet/rlogin client (i.e. a port of plink)
57      * then it will require some termios manoeuvring analogous to
58      * that in the Windows plink.c, but here it's meaningless.
59      */
60 }
61
62 int askappend(char *filename)
63 {
64     /*
65      * Logging in an xterm-alike is liable to be something you only
66      * do at serious diagnostic need. Hence, I'm going to take the
67      * easy option for now and assume we always want to overwrite
68      * log files. I can always make it properly configurable later.
69      */
70     return 2;
71 }
72
73 void logevent(char *string)
74 {
75     /*
76      * This is not a very helpful function: events are logged
77      * pretty much exclusively by the back end, and our pty back
78      * end is self-contained. So we need do nothing.
79      */
80 }
81
82 int font_dimension(int which)          /* 0 for width, 1 for height */
83 {
84     if (which)
85         return inst->font_height;
86     else
87         return inst->font_width;
88 }
89
90 /*
91  * Translate a raw mouse button designation (LEFT, MIDDLE, RIGHT)
92  * into a cooked one (SELECT, EXTEND, PASTE).
93  * 
94  * In Unix, this is not configurable; the X button arrangement is
95  * rock-solid across all applications, everyone has a three-button
96  * mouse or a means of faking it, and there is no need to switch
97  * buttons around at all.
98  */
99 Mouse_Button translate_button(Mouse_Button button)
100 {
101     if (button == MBT_LEFT)
102         return MBT_SELECT;
103     if (button == MBT_MIDDLE)
104         return MBT_PASTE;
105     if (button == MBT_RIGHT)
106         return MBT_EXTEND;
107     return 0;                          /* shouldn't happen */
108 }
109
110 /*
111  * Minimise or restore the window in response to a server-side
112  * request.
113  */
114 void set_iconic(int iconic)
115 {
116     /*
117      * GTK 1.2 doesn't know how to do this.
118      */
119 #if GTK_CHECK_VERSION(2,0,0)
120     if (iconic)
121         gtk_window_iconify(GTK_WINDOW(inst->window));
122     else
123         gtk_window_deiconify(GTK_WINDOW(inst->window));
124 #endif
125 }
126
127 /*
128  * Move the window in response to a server-side request.
129  */
130 void move_window(int x, int y)
131 {
132     /*
133      * I assume that when the GTK version of this call is available
134      * we should use it. Not sure how it differs from the GDK one,
135      * though.
136      */
137 #if GTK_CHECK_VERSION(2,0,0)
138     gtk_window_move(GTK_WINDOW(inst->window), x, y);
139 #else
140     gdk_window_move(inst->window->window, x, y);
141 #endif
142 }
143
144 /*
145  * Move the window to the top or bottom of the z-order in response
146  * to a server-side request.
147  */
148 void set_zorder(int top)
149 {
150     if (top)
151         gdk_window_raise(inst->window->window);
152     else
153         gdk_window_lower(inst->window->window);
154 }
155
156 /*
157  * Refresh the window in response to a server-side request.
158  */
159 void refresh_window(void)
160 {
161     term_invalidate();
162 }
163
164 /*
165  * Maximise or restore the window in response to a server-side
166  * request.
167  */
168 void set_zoomed(int zoomed)
169 {
170     /*
171      * GTK 1.2 doesn't know how to do this.
172      */
173 #if GTK_CHECK_VERSION(2,0,0)
174     if (iconic)
175         gtk_window_maximize(GTK_WINDOW(inst->window));
176     else
177         gtk_window_unmaximize(GTK_WINDOW(inst->window));
178 #endif
179 }
180
181 /*
182  * Report whether the window is iconic, for terminal reports.
183  */
184 int is_iconic(void)
185 {
186     return !gdk_window_is_viewable(inst->window->window);
187 }
188
189 /*
190  * Report the window's position, for terminal reports.
191  */
192 void get_window_pos(int *x, int *y)
193 {
194     /*
195      * I assume that when the GTK version of this call is available
196      * we should use it. Not sure how it differs from the GDK one,
197      * though.
198      */
199 #if GTK_CHECK_VERSION(2,0,0)
200     gtk_window_get_position(GTK_WINDOW(inst->window), x, y);
201 #else
202     gdk_window_get_position(inst->window->window, x, y);
203 #endif
204 }
205
206 /*
207  * Report the window's pixel size, for terminal reports.
208  */
209 void get_window_pixels(int *x, int *y)
210 {
211     /*
212      * I assume that when the GTK version of this call is available
213      * we should use it. Not sure how it differs from the GDK one,
214      * though.
215      */
216 #if GTK_CHECK_VERSION(2,0,0)
217     gtk_window_get_size(GTK_WINDOW(inst->window), x, y);
218 #else
219     gdk_window_get_size(inst->window->window, x, y);
220 #endif
221 }
222
223 /*
224  * Return the window or icon title.
225  */
226 char *get_window_title(int icon)
227 {
228     return icon ? inst->wintitle : inst->icontitle;
229 }
230
231 gint delete_window(GtkWidget *widget, GdkEvent *event, gpointer data)
232 {
233     /*
234      * We could implement warn-on-close here if we really wanted
235      * to.
236      */
237     return FALSE;
238 }
239
240 void show_mouseptr(int show)
241 {
242     if (!cfg.hide_mouseptr)
243         show = 1;
244     if (show)
245         gdk_window_set_cursor(inst->area->window, inst->currcursor);
246     else
247         gdk_window_set_cursor(inst->area->window, inst->blankcursor);
248     inst->mouseptr_visible = show;
249 }
250
251 gint configure_area(GtkWidget *widget, GdkEventConfigure *event, gpointer data)
252 {
253     struct gui_data *inst = (struct gui_data *)data;
254     int w, h, need_size = 0;
255
256     w = (event->width - 2*cfg.window_border) / inst->font_width;
257     h = (event->height - 2*cfg.window_border) / inst->font_height;
258
259     if (w != cfg.width || h != cfg.height) {
260         if (inst->pixmap) {
261             gdk_pixmap_unref(inst->pixmap);
262             inst->pixmap = NULL;
263         }
264         cfg.width = w;
265         cfg.height = h;
266         need_size = 1;
267     }
268     if (!inst->pixmap) {
269         GdkGC *gc;
270
271         inst->pixmap = gdk_pixmap_new(widget->window,
272                                       (cfg.width * inst->font_width +
273                                        2*cfg.window_border),
274                                       (cfg.height * inst->font_height +
275                                        2*cfg.window_border), -1);
276
277         gc = gdk_gc_new(inst->area->window);
278         gdk_gc_set_foreground(gc, &inst->cols[18]);   /* default background */
279         gdk_draw_rectangle(inst->pixmap, gc, 1, 0, 0,
280                            cfg.width * inst->font_width + 2*cfg.window_border,
281                            cfg.height * inst->font_height + 2*cfg.window_border);
282         gdk_gc_unref(gc);
283     }
284
285     if (need_size) {
286         term_size(h, w, cfg.savelines);
287     }
288
289     return TRUE;
290 }
291
292 gint expose_area(GtkWidget *widget, GdkEventExpose *event, gpointer data)
293 {
294     /* struct gui_data *inst = (struct gui_data *)data; */
295
296     /*
297      * Pass the exposed rectangle to terminal.c, which will call us
298      * back to do the actual painting.
299      */
300     if (inst->pixmap) {
301         gdk_draw_pixmap(widget->window,
302                         widget->style->fg_gc[GTK_WIDGET_STATE(widget)],
303                         inst->pixmap,
304                         event->area.x, event->area.y,
305                         event->area.x, event->area.y,
306                         event->area.width, event->area.height);
307     }
308     return TRUE;
309 }
310
311 #define KEY_PRESSED(k) \
312     (inst->keystate[(k) / 32] & (1 << ((k) % 32)))
313
314 gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data)
315 {
316     /* struct gui_data *inst = (struct gui_data *)data; */
317     char output[32];
318     int start, end;
319
320     if (event->type == GDK_KEY_PRESS) {
321 #ifdef KEY_DEBUGGING
322         {
323             int i;
324             printf("keypress: keyval = %04x, state = %08x; string =",
325                    event->keyval, event->state);
326             for (i = 0; event->string[i]; i++)
327                 printf(" %02x", (unsigned char) event->string[i]);
328             printf("\n");
329         }
330 #endif
331
332         /*
333          * NYI:
334          *  - alt+numpad
335          *  - Compose key (!!! requires Unicode faff before even trying)
336          */
337
338         /*
339          * Shift-PgUp and Shift-PgDn don't even generate keystrokes
340          * at all.
341          */
342         if (event->keyval == GDK_Page_Up && (event->state & GDK_SHIFT_MASK)) {
343             term_scroll(0, -cfg.height/2);
344             return TRUE;
345         }
346         if (event->keyval == GDK_Page_Down && (event->state & GDK_SHIFT_MASK)) {
347             term_scroll(0, +cfg.height/2);
348             return TRUE;
349         }
350
351         /*
352          * Neither does Shift-Ins.
353          */
354         if (event->keyval == GDK_Insert && (event->state & GDK_SHIFT_MASK)) {
355             request_paste();
356             return TRUE;
357         }
358
359         /* ALT+things gives leading Escape. */
360         output[0] = '\033';
361         strncpy(output+1, event->string, 31);
362         output[31] = '\0';
363         end = strlen(output);
364         if (event->state & GDK_MOD1_MASK)
365             start = 0;
366         else
367             start = 1;
368
369         /* Control-` is the same as Control-\ (unless gtk has a better idea) */
370         if (!event->string[0] && event->keyval == '`' &&
371             (event->state & GDK_CONTROL_MASK)) {
372             output[1] = '\x1C';
373             end = 2;
374         }
375
376         /* Control-Break is the same as Control-C */
377         if (event->keyval == GDK_Break &&
378             (event->state & GDK_CONTROL_MASK)) {
379             output[1] = '\003';
380             end = 2;
381         }
382
383         /* Control-2, Control-Space and Control-@ are NUL */
384         if (!event->string[0] &&
385             (event->keyval == ' ' || event->keyval == '2' ||
386              event->keyval == '@') &&
387             (event->state & (GDK_SHIFT_MASK |
388                              GDK_CONTROL_MASK)) == GDK_CONTROL_MASK) {
389             output[1] = '\0';
390             end = 2;
391         }
392
393         /* Control-Shift-Space is 160 (ISO8859 nonbreaking space) */
394         if (!event->string[0] && event->keyval == ' ' &&
395             (event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) ==
396             (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) {
397             output[1] = '\240';
398             end = 2;
399         }
400
401         /* We don't let GTK tell us what Backspace is! We know better. */
402         if (event->keyval == GDK_BackSpace &&
403             !(event->state & GDK_SHIFT_MASK)) {
404             output[1] = cfg.bksp_is_delete ? '\x7F' : '\x08';
405             end = 2;
406         }
407
408         /* Shift-Tab is ESC [ Z */
409         if (event->keyval == GDK_ISO_Left_Tab ||
410             (event->keyval == GDK_Tab && (event->state & GDK_SHIFT_MASK))) {
411             end = 1 + sprintf(output+1, "\033[Z");
412         }
413
414         /*
415          * NetHack keypad mode.
416          */
417         if (cfg.nethack_keypad) {
418             char *keys = NULL;
419             switch (event->keyval) {
420               case GDK_KP_1: case GDK_KP_End: keys = "bB"; break;
421               case GDK_KP_2: case GDK_KP_Down: keys = "jJ"; break;
422               case GDK_KP_3: case GDK_KP_Page_Down: keys = "nN"; break;
423               case GDK_KP_4: case GDK_KP_Left: keys = "hH"; break;
424               case GDK_KP_5: case GDK_KP_Begin: keys = ".."; break;
425               case GDK_KP_6: case GDK_KP_Right: keys = "lL"; break;
426               case GDK_KP_7: case GDK_KP_Home: keys = "yY"; break;
427               case GDK_KP_8: case GDK_KP_Up: keys = "kK"; break;
428               case GDK_KP_9: case GDK_KP_Page_Up: keys = "uU"; break;
429             }
430             if (keys) {
431                 end = 2;
432                 if (event->state & GDK_SHIFT_MASK)
433                     output[1] = keys[1];
434                 else
435                     output[1] = keys[0];
436                 goto done;
437             }
438         }
439
440         /*
441          * Application keypad mode.
442          */
443         if (app_keypad_keys && !cfg.no_applic_k) {
444             int xkey = 0;
445             switch (event->keyval) {
446               case GDK_Num_Lock: xkey = 'P'; break;
447               case GDK_KP_Divide: xkey = 'Q'; break;
448               case GDK_KP_Multiply: xkey = 'R'; break;
449               case GDK_KP_Subtract: xkey = 'S'; break;
450                 /*
451                  * Keypad + is tricky. It covers a space that would
452                  * be taken up on the VT100 by _two_ keys; so we
453                  * let Shift select between the two. Worse still,
454                  * in xterm function key mode we change which two...
455                  */
456               case GDK_KP_Add:
457                 if (cfg.funky_type == 2) {
458                     if (event->state & GDK_SHIFT_MASK)
459                         xkey = 'l';
460                     else
461                         xkey = 'k';
462                 } else if (event->state & GDK_SHIFT_MASK)
463                         xkey = 'm';
464                 else
465                     xkey = 'l';
466                 break;
467               case GDK_KP_Enter: xkey = 'M'; break;
468               case GDK_KP_0: case GDK_KP_Insert: xkey = 'p'; break;
469               case GDK_KP_1: case GDK_KP_End: xkey = 'q'; break;
470               case GDK_KP_2: case GDK_KP_Down: xkey = 'r'; break;
471               case GDK_KP_3: case GDK_KP_Page_Down: xkey = 's'; break;
472               case GDK_KP_4: case GDK_KP_Left: xkey = 't'; break;
473               case GDK_KP_5: case GDK_KP_Begin: xkey = 'u'; break;
474               case GDK_KP_6: case GDK_KP_Right: xkey = 'v'; break;
475               case GDK_KP_7: case GDK_KP_Home: xkey = 'w'; break;
476               case GDK_KP_8: case GDK_KP_Up: xkey = 'x'; break;
477               case GDK_KP_9: case GDK_KP_Page_Up: xkey = 'y'; break;
478               case GDK_KP_Decimal: case GDK_KP_Delete: xkey = 'n'; break;
479             }
480             if (xkey) {
481                 if (vt52_mode) {
482                     if (xkey >= 'P' && xkey <= 'S')
483                         end = 1 + sprintf(output+1, "\033%c", xkey);
484                     else
485                         end = 1 + sprintf(output+1, "\033?%c", xkey);
486                 } else
487                     end = 1 + sprintf(output+1, "\033O%c", xkey);
488                 goto done;
489             }
490         }
491
492         /*
493          * Next, all the keys that do tilde codes. (ESC '[' nn '~',
494          * for integer decimal nn.)
495          *
496          * We also deal with the weird ones here. Linux VCs replace F1
497          * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
498          * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
499          * respectively.
500          */
501         {
502             int code = 0;
503             switch (event->keyval) {
504               case GDK_F1:
505                 code = (event->state & GDK_SHIFT_MASK ? 23 : 11);
506                 break;
507               case GDK_F2:
508                 code = (event->state & GDK_SHIFT_MASK ? 24 : 12);
509                 break;
510               case GDK_F3:
511                 code = (event->state & GDK_SHIFT_MASK ? 25 : 13);
512                 break;
513               case GDK_F4:
514                 code = (event->state & GDK_SHIFT_MASK ? 26 : 14);
515                 break;
516               case GDK_F5:
517                 code = (event->state & GDK_SHIFT_MASK ? 28 : 15);
518                 break;
519               case GDK_F6:
520                 code = (event->state & GDK_SHIFT_MASK ? 29 : 17);
521                 break;
522               case GDK_F7:
523                 code = (event->state & GDK_SHIFT_MASK ? 31 : 18);
524                 break;
525               case GDK_F8:
526                 code = (event->state & GDK_SHIFT_MASK ? 32 : 19);
527                 break;
528               case GDK_F9:
529                 code = (event->state & GDK_SHIFT_MASK ? 33 : 20);
530                 break;
531               case GDK_F10:
532                 code = (event->state & GDK_SHIFT_MASK ? 34 : 21);
533                 break;
534               case GDK_F11:
535                 code = 23;
536                 break;
537               case GDK_F12:
538                 code = 24;
539                 break;
540               case GDK_F13:
541                 code = 25;
542                 break;
543               case GDK_F14:
544                 code = 26;
545                 break;
546               case GDK_F15:
547                 code = 28;
548                 break;
549               case GDK_F16:
550                 code = 29;
551                 break;
552               case GDK_F17:
553                 code = 31;
554                 break;
555               case GDK_F18:
556                 code = 32;
557                 break;
558               case GDK_F19:
559                 code = 33;
560                 break;
561               case GDK_F20:
562                 code = 34;
563                 break;
564             }
565             if (!(event->state & GDK_CONTROL_MASK)) switch (event->keyval) {
566               case GDK_Home: case GDK_KP_Home:
567                 code = 1;
568                 break;
569               case GDK_Insert: case GDK_KP_Insert:
570                 code = 2;
571                 break;
572               case GDK_Delete: case GDK_KP_Delete:
573                 code = 3;
574                 break;
575               case GDK_End: case GDK_KP_End:
576                 code = 4;
577                 break;
578               case GDK_Page_Up: case GDK_KP_Page_Up:
579                 code = 5;
580                 break;
581               case GDK_Page_Down: case GDK_KP_Page_Down:
582                 code = 6;
583                 break;
584             }
585             /* Reorder edit keys to physical order */
586             if (cfg.funky_type == 3 && code <= 6)
587                 code = "\0\2\1\4\5\3\6"[code];
588
589             if (vt52_mode && code > 0 && code <= 6) {
590                 end = 1 + sprintf(output+1, "\x1B%c", " HLMEIG"[code]);
591                 goto done;
592             }
593
594             if (cfg.funky_type == 5 &&     /* SCO function keys */
595                 code >= 11 && code <= 34) {
596                 char codes[] = "MNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@[\\]^_`{";
597                 int index = 0;
598                 switch (event->keyval) {
599                   case GDK_F1: index = 0; break;
600                   case GDK_F2: index = 1; break;
601                   case GDK_F3: index = 2; break;
602                   case GDK_F4: index = 3; break;
603                   case GDK_F5: index = 4; break;
604                   case GDK_F6: index = 5; break;
605                   case GDK_F7: index = 6; break;
606                   case GDK_F8: index = 7; break;
607                   case GDK_F9: index = 8; break;
608                   case GDK_F10: index = 9; break;
609                   case GDK_F11: index = 10; break;
610                   case GDK_F12: index = 11; break;
611                 }
612                 if (event->state & GDK_SHIFT_MASK) index += 12;
613                 if (event->state & GDK_CONTROL_MASK) index += 24;
614                 end = 1 + sprintf(output+1, "\x1B[%c", codes[index]);
615                 goto done;
616             }
617             if (cfg.funky_type == 5 &&     /* SCO small keypad */
618                 code >= 1 && code <= 6) {
619                 char codes[] = "HL.FIG";
620                 if (code == 3) {
621                     output[1] = '\x7F';
622                     end = 2;
623                 } else {
624                     end = 1 + sprintf(output+1, "\x1B[%c", codes[code-1]);
625                 }
626                 goto done;
627             }
628             if ((vt52_mode || cfg.funky_type == 4) && code >= 11 && code <= 24) {
629                 int offt = 0;
630                 if (code > 15)
631                     offt++;
632                 if (code > 21)
633                     offt++;
634                 if (vt52_mode)
635                     end = 1 + sprintf(output+1,
636                                       "\x1B%c", code + 'P' - 11 - offt);
637                 else
638                     end = 1 + sprintf(output+1,
639                                       "\x1BO%c", code + 'P' - 11 - offt);
640                 goto done;
641             }
642             if (cfg.funky_type == 1 && code >= 11 && code <= 15) {
643                 end = 1 + sprintf(output+1, "\x1B[[%c", code + 'A' - 11);
644                 goto done;
645             }
646             if (cfg.funky_type == 2 && code >= 11 && code <= 14) {
647                 if (vt52_mode)
648                     end = 1 + sprintf(output+1, "\x1B%c", code + 'P' - 11);
649                 else
650                     end = 1 + sprintf(output+1, "\x1BO%c", code + 'P' - 11);
651                 goto done;
652             }
653             if (cfg.rxvt_homeend && (code == 1 || code == 4)) {
654                 end = 1 + sprintf(output+1, code == 1 ? "\x1B[H" : "\x1BOw");
655                 goto done;
656             }
657             if (code) {
658                 end = 1 + sprintf(output+1, "\x1B[%d~", code);
659                 goto done;
660             }
661         }
662
663         /*
664          * Cursor keys. (This includes the numberpad cursor keys,
665          * if we haven't already done them due to app keypad mode.)
666          * 
667          * Here we also process un-numlocked un-appkeypadded KP5,
668          * which sends ESC [ G.
669          */
670         {
671             int xkey = 0;
672             switch (event->keyval) {
673               case GDK_Up: case GDK_KP_Up: xkey = 'A'; break;
674               case GDK_Down: case GDK_KP_Down: xkey = 'B'; break;
675               case GDK_Right: case GDK_KP_Right: xkey = 'C'; break;
676               case GDK_Left: case GDK_KP_Left: xkey = 'D'; break;
677               case GDK_Begin: case GDK_KP_Begin: xkey = 'G'; break;
678             }
679             if (xkey) {
680                 /*
681                  * The arrow keys normally do ESC [ A and so on. In
682                  * app cursor keys mode they do ESC O A instead.
683                  * Ctrl toggles the two modes.
684                  */
685                 if (vt52_mode) {
686                     end = 1 + sprintf(output+1, "\033%c", xkey);
687                 } else if (!app_cursor_keys ^
688                            !(event->state & GDK_CONTROL_MASK)) {
689                     end = 1 + sprintf(output+1, "\033O%c", xkey);
690                 } else {                    
691                     end = 1 + sprintf(output+1, "\033[%c", xkey);
692                 }
693                 goto done;
694             }
695         }
696
697         done:
698
699 #ifdef KEY_DEBUGGING
700         {
701             int i;
702             printf("generating sequence:");
703             for (i = start; i < end; i++)
704                 printf(" %02x", (unsigned char) output[i]);
705             printf("\n");
706         }
707 #endif
708         if (end-start > 0) {
709             ldisc_send(output+start, end-start, 1);
710             show_mouseptr(0);
711             term_out();
712         }
713     }
714
715     return TRUE;
716 }
717
718 gint button_event(GtkWidget *widget, GdkEventButton *event, gpointer data)
719 {
720     struct gui_data *inst = (struct gui_data *)data;
721     int shift, ctrl, alt, x, y, button, act;
722
723     show_mouseptr(1);
724
725     shift = event->state & GDK_SHIFT_MASK;
726     ctrl = event->state & GDK_CONTROL_MASK;
727     alt = event->state & GDK_MOD1_MASK;
728     if (event->button == 1)
729         button = MBT_LEFT;
730     else if (event->button == 2)
731         button = MBT_MIDDLE;
732     else if (event->button == 3)
733         button = MBT_RIGHT;
734     else
735         return FALSE;                  /* don't even know what button! */
736
737     switch (event->type) {
738       case GDK_BUTTON_PRESS: act = MA_CLICK; break;
739       case GDK_BUTTON_RELEASE: act = MA_RELEASE; break;
740       case GDK_2BUTTON_PRESS: act = MA_2CLK; break;
741       case GDK_3BUTTON_PRESS: act = MA_3CLK; break;
742       default: return FALSE;           /* don't know this event type */
743     }
744
745     if (send_raw_mouse && !(cfg.mouse_override && shift) &&
746         act != MA_CLICK && act != MA_RELEASE)
747         return TRUE;                   /* we ignore these in raw mouse mode */
748
749     x = (event->x - cfg.window_border) / inst->font_width;
750     y = (event->y - cfg.window_border) / inst->font_height;
751
752     term_mouse(button, act, x, y, shift, ctrl, alt);
753
754     return TRUE;
755 }
756
757 gint motion_event(GtkWidget *widget, GdkEventMotion *event, gpointer data)
758 {
759     struct gui_data *inst = (struct gui_data *)data;
760     int shift, ctrl, alt, x, y, button;
761
762     show_mouseptr(1);
763
764     shift = event->state & GDK_SHIFT_MASK;
765     ctrl = event->state & GDK_CONTROL_MASK;
766     alt = event->state & GDK_MOD1_MASK;
767     if (event->state & GDK_BUTTON1_MASK)
768         button = MBT_LEFT;
769     else if (event->state & GDK_BUTTON2_MASK)
770         button = MBT_MIDDLE;
771     else if (event->state & GDK_BUTTON3_MASK)
772         button = MBT_RIGHT;
773     else
774         return FALSE;                  /* don't even know what button! */
775
776     x = (event->x - cfg.window_border) / inst->font_width;
777     y = (event->y - cfg.window_border) / inst->font_height;
778
779     term_mouse(button, MA_DRAG, x, y, shift, ctrl, alt);
780
781     return TRUE;
782 }
783
784 gint timer_func(gpointer data)
785 {
786     /* struct gui_data *inst = (struct gui_data *)data; */
787     extern int pty_child_is_dead();  /* declared in pty.c */
788
789     if (pty_child_is_dead()) {
790         /*
791          * The primary child process died. We could keep the
792          * terminal open for remaining subprocesses to output to,
793          * but conventional wisdom seems to feel that that's the
794          * Wrong Thing for an xterm-alike, so we bail out now. This
795          * would be easy enough to change or make configurable if
796          * necessary.
797          */
798         exit(0);
799     }
800
801     term_update();
802     return TRUE;
803 }
804
805 void pty_input_func(gpointer data, gint sourcefd, GdkInputCondition condition)
806 {
807     /* struct gui_data *inst = (struct gui_data *)data; */
808     char buf[4096];
809     int ret;
810
811     ret = read(sourcefd, buf, sizeof(buf));
812
813     /*
814      * Clean termination condition is that either ret == 0, or ret
815      * < 0 and errno == EIO. Not sure why the latter, but it seems
816      * to happen. Boo.
817      */
818     if (ret == 0 || (ret < 0 && errno == EIO)) {
819         exit(0);
820     }
821
822     if (ret < 0) {
823         perror("read pty master");
824         exit(1);
825     }
826     if (ret > 0)
827         from_backend(0, buf, ret);
828     term_out();
829 }
830
831 void destroy(GtkWidget *widget, gpointer data)
832 {
833     gtk_main_quit();
834 }
835
836 gint focus_event(GtkWidget *widget, GdkEventFocus *event, gpointer data)
837 {
838     has_focus = event->in;
839     term_out();
840     term_update();
841     show_mouseptr(1);
842     return FALSE;
843 }
844
845 /*
846  * set or clear the "raw mouse message" mode
847  */
848 void set_raw_mouse_mode(int activate)
849 {
850     activate = activate && !cfg.no_mouse_rep;
851     send_raw_mouse = activate;
852     if (send_raw_mouse)
853         inst->currcursor = inst->rawcursor;
854     else
855         inst->currcursor = inst->textcursor;
856     show_mouseptr(inst->mouseptr_visible);
857 }
858
859 void request_resize(int w, int h)
860 {
861     int large_x, large_y;
862     int offset_x, offset_y;
863     int area_x, area_y;
864     GtkRequisition inner, outer;
865
866     /*
867      * This is a heinous hack dreamed up by the gnome-terminal
868      * people to get around a limitation in gtk. The problem is
869      * that in order to set the size correctly we really need to be
870      * calling gtk_window_resize - but that needs to know the size
871      * of the _whole window_, not the drawing area. So what we do
872      * is to set an artificially huge size request on the drawing
873      * area, recompute the resulting size request on the window,
874      * and look at the difference between the two. That gives us
875      * the x and y offsets we need to translate drawing area size
876      * into window size for real, and then we call
877      * gtk_window_resize.
878      */
879
880     /*
881      * We start by retrieving the current size of the whole window.
882      * Adding a bit to _that_ will give us a value we can use as a
883      * bogus size request which guarantees to be bigger than the
884      * current size of the drawing area.
885      */
886     get_window_pixels(&large_x, &large_y);
887     large_x += 32;
888     large_y += 32;
889
890 #if GTK_CHECK_VERSION(2,0,0)
891     gtk_widget_set_size_request(inst->area, large_x, large_y);
892 #else
893     gtk_widget_set_usize(inst->area, large_x, large_y);
894 #endif
895     gtk_widget_size_request(inst->area, &inner);
896     gtk_widget_size_request(inst->window, &outer);
897
898     offset_x = outer.width - inner.width;
899     offset_y = outer.height - inner.height;
900
901     area_x = inst->font_width * w + 2*cfg.window_border;
902     area_y = inst->font_height * h + 2*cfg.window_border;
903
904     /*
905      * Now we must set the size request on the drawing area back to
906      * something sensible before we commit the real resize. Best
907      * way to do this, I think, is to set it to what the size is
908      * really going to end up being.
909      */
910 #if GTK_CHECK_VERSION(2,0,0)
911     gtk_widget_set_size_request(inst->area, area_x, area_y);
912 #else
913     gtk_widget_set_usize(inst->area, area_x, area_y);
914 #endif
915
916 #if GTK_CHECK_VERSION(2,0,0)
917     gtk_window_resize(GTK_WINDOW(inst->window),
918                       area_x + offset_x, area_y + offset_y);
919 #else
920     gdk_window_resize(inst->window->window,
921                       area_x + offset_x, area_y + offset_y);
922 #endif
923 }
924
925 void real_palette_set(int n, int r, int g, int b)
926 {
927     gboolean success[1];
928
929     inst->cols[n].red = r * 0x0101;
930     inst->cols[n].green = g * 0x0101;
931     inst->cols[n].blue = b * 0x0101;
932
933     gdk_colormap_alloc_colors(inst->colmap, inst->cols + n, 1,
934                               FALSE, FALSE, success);
935     if (!success[0])
936         g_error("pterm: couldn't allocate colour %d (#%02x%02x%02x)\n",
937                 n, r, g, b);
938 }
939
940 void palette_set(int n, int r, int g, int b)
941 {
942     static const int first[21] = {
943         0, 2, 4, 6, 8, 10, 12, 14,
944         1, 3, 5, 7, 9, 11, 13, 15,
945         16, 17, 18, 20, 22
946     };
947     real_palette_set(first[n], r, g, b);
948     if (first[n] >= 18)
949         real_palette_set(first[n] + 1, r, g, b);
950 }
951
952 void palette_reset(void)
953 {
954     /* This maps colour indices in cfg to those used in inst->cols. */
955     static const int ww[] = {
956         6, 7, 8, 9, 10, 11, 12, 13,
957         14, 15, 16, 17, 18, 19, 20, 21,
958         0, 1, 2, 3, 4, 5
959     };
960     gboolean success[NCOLOURS];
961     int i;
962
963     assert(lenof(ww) == NCOLOURS);
964
965     if (!inst->colmap) {
966         inst->colmap = gdk_colormap_get_system();
967     } else {
968         gdk_colormap_free_colors(inst->colmap, inst->cols, NCOLOURS);
969     }
970
971     for (i = 0; i < NCOLOURS; i++) {
972         inst->cols[i].red = cfg.colours[ww[i]][0] * 0x0101;
973         inst->cols[i].green = cfg.colours[ww[i]][1] * 0x0101;
974         inst->cols[i].blue = cfg.colours[ww[i]][2] * 0x0101;
975     }
976
977     gdk_colormap_alloc_colors(inst->colmap, inst->cols, NCOLOURS,
978                               FALSE, FALSE, success);
979     for (i = 0; i < NCOLOURS; i++) {
980         if (!success[i])
981             g_error("pterm: couldn't allocate colour %d (#%02x%02x%02x)\n",
982                     i, cfg.colours[i][0], cfg.colours[i][1], cfg.colours[i][2]);
983     }
984 }
985
986 void write_clip(wchar_t * data, int len, int must_deselect)
987 {
988     if (inst->pasteout_data)
989         sfree(inst->pasteout_data);
990     inst->pasteout_data = smalloc(len);
991     inst->pasteout_data_len = len;
992     wc_to_mb(0, 0, data, len, inst->pasteout_data, inst->pasteout_data_len,
993              NULL, NULL);
994
995     if (gtk_selection_owner_set(inst->area, GDK_SELECTION_PRIMARY,
996                                 GDK_CURRENT_TIME)) {
997         gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
998                                  GDK_SELECTION_TYPE_STRING, 1);
999         gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1000                                  inst->compound_text_atom, 1);
1001     }
1002 }
1003
1004 void selection_get(GtkWidget *widget, GtkSelectionData *seldata,
1005                    guint info, guint time_stamp, gpointer data)
1006 {
1007     gtk_selection_data_set(seldata, GDK_SELECTION_TYPE_STRING, 8,
1008                            inst->pasteout_data, inst->pasteout_data_len);
1009 }
1010
1011 gint selection_clear(GtkWidget *widget, GdkEventSelection *seldata,
1012                      gpointer data)
1013 {
1014     term_deselect();
1015     if (inst->pasteout_data)
1016         sfree(inst->pasteout_data);
1017     inst->pasteout_data = NULL;
1018     inst->pasteout_data_len = 0;
1019     return TRUE;
1020 }
1021
1022 void request_paste(void)
1023 {
1024     /*
1025      * In Unix, pasting is asynchronous: all we can do at the
1026      * moment is to call gtk_selection_convert(), and when the data
1027      * comes back _then_ we can call term_do_paste().
1028      */
1029     gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
1030                           GDK_SELECTION_TYPE_STRING, GDK_CURRENT_TIME);
1031 }
1032
1033 gint idle_paste_func(gpointer data);   /* forward ref */
1034
1035 void selection_received(GtkWidget *widget, GtkSelectionData *seldata,
1036                         gpointer data)
1037 {
1038     if (seldata->length <= 0 ||
1039         seldata->type != GDK_SELECTION_TYPE_STRING)
1040         return;                        /* Nothing happens. */
1041
1042     if (inst->pastein_data)
1043         sfree(inst->pastein_data);
1044
1045     inst->pastein_data = smalloc(seldata->length * sizeof(wchar_t));
1046     inst->pastein_data_len = seldata->length;
1047     mb_to_wc(0, 0, seldata->data, seldata->length,
1048              inst->pastein_data, inst->pastein_data_len);
1049
1050     term_do_paste();
1051
1052     if (term_paste_pending())
1053         inst->term_paste_idle_id = gtk_idle_add(idle_paste_func, inst);
1054 }
1055
1056 gint idle_paste_func(gpointer data)
1057 {
1058     struct gui_data *inst = (struct gui_data *)data;
1059
1060     if (term_paste_pending())
1061         term_paste();
1062     else
1063         gtk_idle_remove(inst->term_paste_idle_id);
1064
1065     return TRUE;
1066 }
1067
1068
1069 void get_clip(wchar_t ** p, int *len)
1070 {
1071     if (p) {
1072         *p = inst->pastein_data;
1073         *len = inst->pastein_data_len;
1074     }
1075 }
1076
1077 void set_title(char *title)
1078 {
1079     strncpy(inst->wintitle, title, lenof(inst->wintitle));
1080     inst->wintitle[lenof(inst->wintitle)-1] = '\0';
1081     gtk_window_set_title(GTK_WINDOW(inst->window), inst->wintitle);
1082 }
1083
1084 void set_icon(char *title)
1085 {
1086     strncpy(inst->icontitle, title, lenof(inst->icontitle));
1087     inst->icontitle[lenof(inst->icontitle)-1] = '\0';
1088     gdk_window_set_icon_name(inst->window->window, inst->icontitle);
1089 }
1090
1091 void set_sbar(int total, int start, int page)
1092 {
1093     if (!cfg.scrollbar)
1094         return;
1095     inst->sbar_adjust->lower = 0;
1096     inst->sbar_adjust->upper = total;
1097     inst->sbar_adjust->value = start;
1098     inst->sbar_adjust->page_size = page;
1099     inst->sbar_adjust->step_increment = 1;
1100     inst->sbar_adjust->page_increment = page/2;
1101     inst->ignore_sbar = TRUE;
1102     gtk_adjustment_changed(inst->sbar_adjust);
1103     inst->ignore_sbar = FALSE;
1104 }
1105
1106 void scrollbar_moved(GtkAdjustment *adj, gpointer data)
1107 {
1108     if (!cfg.scrollbar)
1109         return;
1110     if (!inst->ignore_sbar)
1111         term_scroll(1, (int)adj->value);
1112 }
1113
1114 void sys_cursor(int x, int y)
1115 {
1116     /*
1117      * This is meaningless under X.
1118      */
1119 }
1120
1121 void beep(int mode)
1122 {
1123     gdk_beep();
1124 }
1125
1126 int CharWidth(Context ctx, int uc)
1127 {
1128     /*
1129      * Under X, any fixed-width font really _is_ fixed-width.
1130      * Double-width characters will be dealt with using a separate
1131      * font. For the moment we can simply return 1.
1132      */
1133     return 1;
1134 }
1135
1136 Context get_ctx(void)
1137 {
1138     GdkGC *gc;
1139     if (!inst->area->window)
1140         return NULL;
1141     gc = gdk_gc_new(inst->area->window);
1142     return gc;
1143 }
1144
1145 void free_ctx(Context ctx)
1146 {
1147     GdkGC *gc = (GdkGC *)ctx;
1148     gdk_gc_unref(gc);
1149 }
1150
1151 /*
1152  * Draw a line of text in the window, at given character
1153  * coordinates, in given attributes.
1154  *
1155  * We are allowed to fiddle with the contents of `text'.
1156  */
1157 void do_text(Context ctx, int x, int y, char *text, int len,
1158              unsigned long attr, int lattr)
1159 {
1160     int nfg, nbg, t;
1161     GdkGC *gc = (GdkGC *)ctx;
1162
1163     /*
1164      * NYI:
1165      *  - Unicode, code pages, and ATTR_WIDE for CJK support.
1166      *  - cursor shapes other than block
1167      *  - shadow bolding
1168      */
1169
1170     nfg = 2 * ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
1171     nbg = 2 * ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
1172     if (attr & ATTR_REVERSE) {
1173         t = nfg;
1174         nfg = nbg;
1175         nbg = t;
1176     }
1177     if (cfg.bold_colour && (attr & ATTR_BOLD))
1178         nfg++;
1179     if (cfg.bold_colour && (attr & ATTR_BLINK))
1180         nbg++;
1181     if (attr & TATTR_ACTCURS) {
1182         nfg = NCOLOURS-2;
1183         nbg = NCOLOURS-1;
1184     }
1185
1186     if (lattr != LATTR_NORM) {
1187         x *= 2;
1188         if (x >= cols)
1189             return;
1190         if (x + len*2 > cols)
1191             len = (cols-x)/2;          /* trim to LH half */
1192     }
1193
1194     gdk_gc_set_foreground(gc, &inst->cols[nbg]);
1195     gdk_draw_rectangle(inst->pixmap, gc, 1,
1196                        x*inst->font_width+cfg.window_border,
1197                        y*inst->font_height+cfg.window_border,
1198                        len*inst->font_width, inst->font_height);
1199
1200     gdk_gc_set_foreground(gc, &inst->cols[nfg]);
1201     gdk_draw_text(inst->pixmap, inst->fonts[0], gc,
1202                   x*inst->font_width+cfg.window_border,
1203                   y*inst->font_height+cfg.window_border+inst->fonts[0]->ascent,
1204                   text, len);
1205
1206     if (attr & ATTR_UNDER) {
1207         int uheight = inst->fonts[0]->ascent + 1;
1208         if (uheight >= inst->font_height)
1209             uheight = inst->font_height - 1;
1210         gdk_draw_line(inst->pixmap, gc, x*inst->font_width+cfg.window_border,
1211                       y*inst->font_height + uheight + cfg.window_border,
1212                       (x+len)*inst->font_width-1+cfg.window_border,
1213                       y*inst->font_height + uheight + cfg.window_border);
1214     }
1215
1216     if (lattr != LATTR_NORM) {
1217         /*
1218          * I can't find any plausible StretchBlt equivalent in the
1219          * X server, so I'm going to do this the slow and painful
1220          * way. This will involve repeated calls to
1221          * gdk_draw_pixmap() to stretch the text horizontally. It's
1222          * O(N^2) in time and O(N) in network bandwidth, but you
1223          * try thinking of a better way. :-(
1224          */
1225         int i;
1226         for (i = 0; i < len * inst->font_width; i++) {
1227             gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
1228                             x*inst->font_width+cfg.window_border + 2*i,
1229                             y*inst->font_height+cfg.window_border,
1230                             x*inst->font_width+cfg.window_border + 2*i+1,
1231                             y*inst->font_height+cfg.window_border,
1232                             len * inst->font_width - i, inst->font_height);
1233         }
1234         len *= 2;
1235         if (lattr != LATTR_WIDE) {
1236             int dt, db;
1237             /* Now stretch vertically, in the same way. */
1238             if (lattr == LATTR_BOT)
1239                 dt = 0, db = 1;
1240             else
1241                 dt = 1, db = 0;
1242             for (i = 0; i < inst->font_height; i+=2) {
1243                 gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
1244                                 x*inst->font_width+cfg.window_border,
1245                                 y*inst->font_height+cfg.window_border+dt*i+db,
1246                                 x*inst->font_width+cfg.window_border,
1247                                 y*inst->font_height+cfg.window_border+dt*(i+1),
1248                                 len * inst->font_width, inst->font_height-i-1);
1249             }
1250         }
1251         len *= 2;
1252     }
1253
1254     gdk_draw_pixmap(inst->area->window, gc, inst->pixmap,
1255                     x*inst->font_width+cfg.window_border,
1256                     y*inst->font_height+cfg.window_border,
1257                     x*inst->font_width+cfg.window_border,
1258                     y*inst->font_height+cfg.window_border,
1259                     len*inst->font_width, inst->font_height);
1260 }
1261
1262 void do_cursor(Context ctx, int x, int y, char *text, int len,
1263                unsigned long attr, int lattr)
1264 {
1265     int passive;
1266     GdkGC *gc = (GdkGC *)ctx;
1267
1268     /*
1269      * NYI: cursor shapes other than block
1270      */
1271     if (attr & TATTR_PASCURS) {
1272         attr &= ~TATTR_PASCURS;
1273         passive = 1;
1274     } else
1275         passive = 0;
1276     do_text(ctx, x, y, text, len, attr, lattr);
1277     if (passive) {
1278         gdk_gc_set_foreground(gc, &inst->cols[NCOLOURS-1]);
1279         gdk_draw_rectangle(inst->pixmap, gc, 0,
1280                            x*inst->font_width+cfg.window_border,
1281                            y*inst->font_height+cfg.window_border,
1282                            len*inst->font_width-1, inst->font_height-1);
1283         gdk_draw_pixmap(inst->area->window, gc, inst->pixmap,
1284                         x*inst->font_width+cfg.window_border,
1285                         y*inst->font_height+cfg.window_border,
1286                         x*inst->font_width+cfg.window_border,
1287                         y*inst->font_height+cfg.window_border,
1288                         len*inst->font_width, inst->font_height);
1289     }
1290 }
1291
1292 GdkCursor *make_mouse_ptr(int cursor_val)
1293 {
1294     /*
1295      * Truly hideous hack: GTK doesn't allow us to set the mouse
1296      * cursor foreground and background colours unless we've _also_
1297      * created our own cursor from bitmaps. Therefore, I need to
1298      * load the `cursor' font and draw glyphs from it on to
1299      * pixmaps, in order to construct my cursors with the fg and bg
1300      * I want. This is a gross hack, but it's more self-contained
1301      * than linking in Xlib to find the X window handle to
1302      * inst->area and calling XRecolorCursor, and it's more
1303      * futureproof than hard-coding the shapes as bitmap arrays.
1304      */
1305     static GdkFont *cursor_font = NULL;
1306     GdkPixmap *source, *mask;
1307     GdkGC *gc;
1308     GdkColor cfg = { 0, 65535, 65535, 65535 };
1309     GdkColor cbg = { 0, 0, 0, 0 };
1310     GdkColor dfg = { 1, 65535, 65535, 65535 };
1311     GdkColor dbg = { 0, 0, 0, 0 };
1312     GdkCursor *ret;
1313     gchar text[2];
1314     gint lb, rb, wid, asc, desc, w, h, x, y;
1315
1316     if (cursor_val == -2) {
1317         gdk_font_unref(cursor_font);
1318         return NULL;
1319     }
1320
1321     if (cursor_val >= 0 && !cursor_font)
1322         cursor_font = gdk_font_load("cursor");
1323
1324     /*
1325      * Get the text extent of the cursor in question. We use the
1326      * mask character for this, because it's typically slightly
1327      * bigger than the main character.
1328      */
1329     if (cursor_val >= 0) {
1330         text[1] = '\0';
1331         text[0] = (char)cursor_val + 1;
1332         gdk_string_extents(cursor_font, text, &lb, &rb, &wid, &asc, &desc);
1333         w = rb-lb; h = asc+desc; x = -lb; y = asc;
1334     } else {
1335         w = h = 1;
1336         x = y = 0;
1337     }
1338
1339     source = gdk_pixmap_new(NULL, w, h, 1);
1340     mask = gdk_pixmap_new(NULL, w, h, 1);
1341
1342     /*
1343      * Draw the mask character on the mask pixmap.
1344      */
1345     gc = gdk_gc_new(mask);
1346     gdk_gc_set_foreground(gc, &dbg);
1347     gdk_draw_rectangle(mask, gc, 1, 0, 0, w, h);
1348     if (cursor_val >= 0) {
1349         text[1] = '\0';
1350         text[0] = (char)cursor_val + 1;
1351         gdk_gc_set_foreground(gc, &dfg);
1352         gdk_draw_text(mask, cursor_font, gc, x, y, text, 1);
1353     }
1354     gdk_gc_unref(gc);
1355
1356     /*
1357      * Draw the main character on the source pixmap.
1358      */
1359     gc = gdk_gc_new(source);
1360     gdk_gc_set_foreground(gc, &dbg);
1361     gdk_draw_rectangle(source, gc, 1, 0, 0, w, h);
1362     if (cursor_val >= 0) {
1363         text[1] = '\0';
1364         text[0] = (char)cursor_val;
1365         gdk_gc_set_foreground(gc, &dfg);
1366         gdk_draw_text(source, cursor_font, gc, x, y, text, 1);
1367     }
1368     gdk_gc_unref(gc);
1369
1370     /*
1371      * Create the cursor.
1372      */
1373     ret = gdk_cursor_new_from_pixmap(source, mask, &cfg, &cbg, x, y);
1374
1375     /*
1376      * Clean up.
1377      */
1378     gdk_pixmap_unref(source);
1379     gdk_pixmap_unref(mask);
1380
1381     return ret;
1382 }
1383
1384 void modalfatalbox(char *p, ...)
1385 {
1386     va_list ap;
1387     fprintf(stderr, "FATAL ERROR: ");
1388     va_start(ap, p);
1389     vfprintf(stderr, p, ap);
1390     va_end(ap);
1391     fputc('\n', stderr);
1392     exit(1);
1393 }
1394
1395 char *get_x_display(void)
1396 {
1397     return gdk_get_display();
1398 }
1399
1400 int main(int argc, char **argv)
1401 {
1402     extern int pty_master_fd;          /* declared in pty.c */
1403     extern char **pty_argv;            /* declared in pty.c */
1404     int err = 0;
1405
1406     gtk_init(&argc, &argv);
1407
1408     do_defaults(NULL, &cfg);
1409
1410     while (--argc > 0) {
1411         char *p = *++argv;
1412         if (!strcmp(p, "-fn")) {
1413             if (--argc > 0) {
1414                 strncpy(cfg.font, *++argv, sizeof(cfg.font));
1415                 cfg.font[sizeof(cfg.font)-1] = '\0';
1416             } else
1417                 err = 1, fprintf(stderr, "pterm: -fn expects an argument\n");
1418         }
1419         if (!strcmp(p, "-e")) {
1420             if (--argc > 0) {
1421                 int i;
1422                 pty_argv = smalloc((argc+1) * sizeof(char *));
1423                 ++argv;
1424                 for (i = 0; i < argc; i++)
1425                     pty_argv[i] = argv[i];
1426                 pty_argv[argc] = NULL;
1427                 break;                 /* finished command-line processing */
1428             } else
1429                 err = 1, fprintf(stderr, "pterm: -e expects an argument\n");
1430         }
1431         if (!strcmp(p, "-T")) {
1432             if (--argc > 0) {
1433                 strncpy(cfg.wintitle, *++argv, sizeof(cfg.wintitle));
1434                 cfg.wintitle[sizeof(cfg.wintitle)-1] = '\0';
1435             } else
1436                 err = 1, fprintf(stderr, "pterm: -T expects an argument\n");
1437         }
1438         if (!strcmp(p, "-log")) {
1439             if (--argc > 0) {
1440                 strncpy(cfg.logfilename, *++argv, sizeof(cfg.logfilename));
1441                 cfg.logfilename[sizeof(cfg.logfilename)-1] = '\0';
1442                 cfg.logtype = LGTYP_DEBUG;
1443             } else
1444                 err = 1, fprintf(stderr, "pterm: -log expects an argument\n");
1445         }
1446         if (!strcmp(p, "-hide")) {
1447             cfg.hide_mouseptr = 1;
1448         }
1449         if (!strcmp(p, "-ut-")) {
1450             cfg.stamp_utmp = 0;
1451         }
1452         if (!strcmp(p, "-ls-")) {
1453             cfg.login_shell = 0;
1454         }
1455         if (!strcmp(p, "-nethack")) {
1456             cfg.nethack_keypad = 1;
1457         }
1458         if (!strcmp(p, "-sb-")) {
1459             cfg.scrollbar = 0;
1460         }
1461     }
1462
1463     inst->fonts[0] = gdk_font_load(cfg.font);
1464     inst->fonts[1] = NULL;             /* FIXME: what about bold font? */
1465     inst->font_width = gdk_char_width(inst->fonts[0], ' ');
1466     inst->font_height = inst->fonts[0]->ascent + inst->fonts[0]->descent;
1467
1468     inst->compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE);
1469
1470     init_ucs();
1471
1472     inst->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1473
1474     if (cfg.wintitle[0])
1475         set_title(cfg.wintitle);
1476     else
1477         set_title("pterm");
1478
1479     /*
1480      * Set up the colour map.
1481      */
1482     palette_reset();
1483
1484     inst->area = gtk_drawing_area_new();
1485     gtk_drawing_area_size(GTK_DRAWING_AREA(inst->area),
1486                           inst->font_width * cfg.width + 2*cfg.window_border,
1487                           inst->font_height * cfg.height + 2*cfg.window_border);
1488     if (cfg.scrollbar) {
1489         inst->sbar_adjust = GTK_ADJUSTMENT(gtk_adjustment_new(0,0,0,0,0,0));
1490         inst->sbar = gtk_vscrollbar_new(inst->sbar_adjust);
1491     }
1492     inst->hbox = GTK_BOX(gtk_hbox_new(FALSE, 0));
1493     gtk_box_pack_start(inst->hbox, inst->area, TRUE, TRUE, 0);
1494     if (cfg.scrollbar)
1495         gtk_box_pack_start(inst->hbox, inst->sbar, FALSE, FALSE, 0);
1496
1497     gtk_container_add(GTK_CONTAINER(inst->window), GTK_WIDGET(inst->hbox));
1498
1499     {
1500         GdkGeometry geom;
1501         geom.min_width = inst->font_width + 2*cfg.window_border;
1502         geom.min_height = inst->font_height + 2*cfg.window_border;
1503         geom.max_width = geom.max_height = -1;
1504         geom.base_width = 2*cfg.window_border;
1505         geom.base_height = 2*cfg.window_border;
1506         geom.width_inc = inst->font_width;
1507         geom.height_inc = inst->font_height;
1508         geom.min_aspect = geom.max_aspect = 0;
1509         gtk_window_set_geometry_hints(GTK_WINDOW(inst->window), inst->area, &geom,
1510                                       GDK_HINT_MIN_SIZE | GDK_HINT_BASE_SIZE |
1511                                       GDK_HINT_RESIZE_INC);
1512     }
1513
1514     gtk_signal_connect(GTK_OBJECT(inst->window), "destroy",
1515                        GTK_SIGNAL_FUNC(destroy), inst);
1516     gtk_signal_connect(GTK_OBJECT(inst->window), "delete_event",
1517                        GTK_SIGNAL_FUNC(delete_window), inst);
1518     gtk_signal_connect(GTK_OBJECT(inst->window), "key_press_event",
1519                        GTK_SIGNAL_FUNC(key_event), inst);
1520     gtk_signal_connect(GTK_OBJECT(inst->window), "focus_in_event",
1521                        GTK_SIGNAL_FUNC(focus_event), inst);
1522     gtk_signal_connect(GTK_OBJECT(inst->window), "focus_out_event",
1523                        GTK_SIGNAL_FUNC(focus_event), inst);
1524     gtk_signal_connect(GTK_OBJECT(inst->area), "configure_event",
1525                        GTK_SIGNAL_FUNC(configure_area), inst);
1526     gtk_signal_connect(GTK_OBJECT(inst->area), "expose_event",
1527                        GTK_SIGNAL_FUNC(expose_area), inst);
1528     gtk_signal_connect(GTK_OBJECT(inst->area), "button_press_event",
1529                        GTK_SIGNAL_FUNC(button_event), inst);
1530     gtk_signal_connect(GTK_OBJECT(inst->area), "button_release_event",
1531                        GTK_SIGNAL_FUNC(button_event), inst);
1532     gtk_signal_connect(GTK_OBJECT(inst->area), "motion_notify_event",
1533                        GTK_SIGNAL_FUNC(motion_event), inst);
1534     gtk_signal_connect(GTK_OBJECT(inst->area), "selection_received",
1535                        GTK_SIGNAL_FUNC(selection_received), inst);
1536     gtk_signal_connect(GTK_OBJECT(inst->area), "selection_get",
1537                        GTK_SIGNAL_FUNC(selection_get), inst);
1538     gtk_signal_connect(GTK_OBJECT(inst->area), "selection_clear_event",
1539                        GTK_SIGNAL_FUNC(selection_clear), inst);
1540     if (cfg.scrollbar)
1541         gtk_signal_connect(GTK_OBJECT(inst->sbar_adjust), "value_changed",
1542                            GTK_SIGNAL_FUNC(scrollbar_moved), inst);
1543     gtk_timeout_add(20, timer_func, inst);
1544     gtk_widget_add_events(GTK_WIDGET(inst->area),
1545                           GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK |
1546                           GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
1547                           GDK_POINTER_MOTION_MASK | GDK_BUTTON_MOTION_MASK);
1548
1549     gtk_widget_show(inst->area);
1550     if (cfg.scrollbar)
1551         gtk_widget_show(inst->sbar);
1552     gtk_widget_show(GTK_WIDGET(inst->hbox));
1553     gtk_widget_show(inst->window);
1554
1555     inst->textcursor = make_mouse_ptr(GDK_XTERM);
1556     inst->rawcursor = make_mouse_ptr(GDK_LEFT_PTR);
1557     inst->blankcursor = make_mouse_ptr(-1);
1558     make_mouse_ptr(-2);                /* clean up cursor font */
1559     inst->currcursor = inst->textcursor;
1560     show_mouseptr(1);
1561
1562     back = &pty_backend;
1563     back->init(NULL, 0, NULL, 0);
1564
1565     gdk_input_add(pty_master_fd, GDK_INPUT_READ, pty_input_func, inst);
1566
1567     term_init();
1568     term_size(cfg.height, cfg.width, cfg.savelines);
1569
1570     gtk_main();
1571
1572     return 0;
1573 }