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