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