Cope with NULL labels in every control where it makes sense, and assert that
[u/mdw/putty] / unix / pterm.c
CommitLineData
f7f27309 1/*
2 * pterm - a fusion of the PuTTY terminal emulator with a Unix pty
3 * back end, all running as a GTK application. Wish me luck.
4 */
5
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>
f7f27309 25
1709795f 26#define PUTTY_DO_GLOBALS /* actually _define_ globals */
2dc6356a 27
1709795f 28#include "putty.h"
887035a5 29#include "terminal.h"
1709795f 30
f7f27309 31#define CAT2(x,y) x ## y
32#define CAT(x,y) CAT2(x,y)
33#define ASSERT(x) enum {CAT(assertion_,__LINE__) = 1 / (x)}
34
d64838e1 35#define NCOLOURS (lenof(((Config *)0)->colours))
36
37struct gui_data {
12d200b1 38 GtkWidget *window, *area, *sbar;
6a5e84dd 39 GtkBox *hbox;
40 GtkAdjustment *sbar_adjust;
d64838e1 41 GdkPixmap *pixmap;
006238cb 42 GdkFont *fonts[4]; /* normal, bold, wide, widebold */
2dc6356a 43 struct {
44 int charset;
45 int is_wide;
006238cb 46 } fontinfo[4];
57e636ca 47 GdkCursor *rawcursor, *textcursor, *blankcursor, *currcursor;
d64838e1 48 GdkColor cols[NCOLOURS];
49 GdkColormap *colmap;
e6346999 50 wchar_t *pastein_data;
085f4a68 51 int direct_to_font;
e6346999 52 int pastein_data_len;
2dc6356a 53 char *pasteout_data, *pasteout_data_utf8;
54 int pasteout_data_len, pasteout_data_utf8_len;
83616aab 55 int font_width, font_height;
88e6b9ca 56 int ignore_sbar;
b3530065 57 int mouseptr_visible;
0f660c8f 58 guint term_paste_idle_id;
2dc6356a 59 GdkAtom compound_text_atom, utf8_string_atom;
c33c3d76 60 int alt_keycode;
045f707b 61 int alt_digits;
12d200b1 62 char wintitle[sizeof(((Config *)0)->wintitle)];
16891265 63 char icontitle[sizeof(((Config *)0)->wintitle)];
74aca06d 64 int master_fd, master_func_id;
b9d7bcad 65 void *ldisc;
6b78788a 66 Backend *back;
67 void *backhandle;
5def7522 68 Terminal *term;
a8327734 69 void *logctx;
74aca06d 70 int exited;
21d2b241 71 struct unicode_data ucsdata;
3ea863a3 72 Config cfg;
a8327734 73};
74
75struct draw_ctx {
76 GdkGC *gc;
77 struct gui_data *inst;
d64838e1 78};
79
d64838e1 80static int send_raw_mouse;
81
c5e438ec 82static char *app_name = "pterm";
83
c85623f9 84char *x_get_default(const char *key)
c5e438ec 85{
86 return XGetDefault(GDK_DISPLAY(), app_name, key);
87}
88
3f935d5b 89void connection_fatal(void *frontend, char *p, ...)
90{
91 Terminal *term = (Terminal *)frontend;
92 struct gui_data *inst = (struct gui_data *)term->frontend;
93
94 va_list ap;
95 char *msg;
96 va_start(ap, p);
97 msg = dupvprintf(p, ap);
98 va_end(ap);
99 inst->exited = TRUE;
100 fatal_message_box(inst->window, msg);
101 sfree(msg);
102 if (inst->cfg.close_on_exit == FORCE_ON)
103 cleanup_exit(1);
104}
105
5a9eb105 106/*
107 * Default settings that are specific to pterm.
108 */
9a30e26b 109FontSpec platform_default_fontspec(const char *name)
5a9eb105 110{
9a30e26b 111 FontSpec ret;
5a9eb105 112 if (!strcmp(name, "Font"))
9a30e26b 113 strcpy(ret.name, "fixed");
114 else
115 *ret.name = '\0';
116 return ret;
117}
118
119Filename platform_default_filename(const char *name)
120{
121 Filename ret;
122 if (!strcmp(name, "LogFileName"))
123 strcpy(ret.path, "putty.log");
124 else
125 *ret.path = '\0';
126 return ret;
127}
128
129char *platform_default_s(const char *name)
130{
5a9eb105 131 return NULL;
132}
133
c85623f9 134int platform_default_i(const char *name, int def)
5a9eb105 135{
136 if (!strcmp(name, "CloseOnExit"))
c888fed4 137 return 2; /* maps to FORCE_ON after painful rearrangement :-( */
5a9eb105 138 return def;
139}
140
b9d7bcad 141void ldisc_update(void *frontend, int echo, int edit)
1709795f 142{
143 /*
144 * This is a stub in pterm. If I ever produce a Unix
145 * command-line ssh/telnet/rlogin client (i.e. a port of plink)
146 * then it will require some termios manoeuvring analogous to
147 * that in the Windows plink.c, but here it's meaningless.
148 */
149}
150
125105d1 151void update_specials_menu(void *frontend)
152{
153 /*
154 * When I implement a context menu in pterm, I will need to
155 * support this function properly.
156 */
157}
158
9a30e26b 159int askappend(void *frontend, Filename filename)
1709795f 160{
161 /*
4c0901ed 162 * Logging in an xterm-alike is liable to be something you only
163 * do at serious diagnostic need. Hence, I'm going to take the
164 * easy option for now and assume we always want to overwrite
165 * log files. I can always make it properly configurable later.
1709795f 166 */
167 return 2;
168}
169
a8327734 170void logevent(void *frontend, char *string)
1709795f 171{
172 /*
57e636ca 173 * This is not a very helpful function: events are logged
174 * pretty much exclusively by the back end, and our pty back
175 * end is self-contained. So we need do nothing.
1709795f 176 */
177}
178
a8327734 179int font_dimension(void *frontend, int which)/* 0 for width, 1 for height */
e9aef757 180{
a8327734 181 struct gui_data *inst = (struct gui_data *)frontend;
182
e9aef757 183 if (which)
184 return inst->font_height;
185 else
186 return inst->font_width;
187}
188
1709795f 189/*
190 * Translate a raw mouse button designation (LEFT, MIDDLE, RIGHT)
191 * into a cooked one (SELECT, EXTEND, PASTE).
192 *
193 * In Unix, this is not configurable; the X button arrangement is
194 * rock-solid across all applications, everyone has a three-button
195 * mouse or a means of faking it, and there is no need to switch
196 * buttons around at all.
197 */
c387aa9f 198static Mouse_Button translate_button(Mouse_Button button)
1709795f 199{
a8327734 200 /* struct gui_data *inst = (struct gui_data *)frontend; */
201
1709795f 202 if (button == MBT_LEFT)
203 return MBT_SELECT;
204 if (button == MBT_MIDDLE)
205 return MBT_PASTE;
206 if (button == MBT_RIGHT)
207 return MBT_EXTEND;
208 return 0; /* shouldn't happen */
209}
210
211/*
5bf9955d 212 * Return the top-level GtkWindow associated with a particular
213 * front end instance.
214 */
215void *get_window(void *frontend)
216{
217 Terminal *term = (Terminal *)frontend;
218 struct gui_data *inst = (struct gui_data *)term->frontend;
219 return inst->window;
220}
221
222/*
1709795f 223 * Minimise or restore the window in response to a server-side
224 * request.
225 */
a8327734 226void set_iconic(void *frontend, int iconic)
1709795f 227{
16891265 228 /*
229 * GTK 1.2 doesn't know how to do this.
230 */
231#if GTK_CHECK_VERSION(2,0,0)
a8327734 232 struct gui_data *inst = (struct gui_data *)frontend;
16891265 233 if (iconic)
234 gtk_window_iconify(GTK_WINDOW(inst->window));
235 else
236 gtk_window_deiconify(GTK_WINDOW(inst->window));
237#endif
1709795f 238}
239
240/*
241 * Move the window in response to a server-side request.
242 */
a8327734 243void move_window(void *frontend, int x, int y)
1709795f 244{
a8327734 245 struct gui_data *inst = (struct gui_data *)frontend;
16891265 246 /*
247 * I assume that when the GTK version of this call is available
248 * we should use it. Not sure how it differs from the GDK one,
249 * though.
250 */
251#if GTK_CHECK_VERSION(2,0,0)
252 gtk_window_move(GTK_WINDOW(inst->window), x, y);
253#else
254 gdk_window_move(inst->window->window, x, y);
255#endif
1709795f 256}
257
258/*
259 * Move the window to the top or bottom of the z-order in response
260 * to a server-side request.
261 */
a8327734 262void set_zorder(void *frontend, int top)
1709795f 263{
a8327734 264 struct gui_data *inst = (struct gui_data *)frontend;
16891265 265 if (top)
266 gdk_window_raise(inst->window->window);
267 else
268 gdk_window_lower(inst->window->window);
1709795f 269}
270
271/*
272 * Refresh the window in response to a server-side request.
273 */
a8327734 274void refresh_window(void *frontend)
1709795f 275{
a8327734 276 struct gui_data *inst = (struct gui_data *)frontend;
5def7522 277 term_invalidate(inst->term);
1709795f 278}
279
280/*
281 * Maximise or restore the window in response to a server-side
282 * request.
283 */
a8327734 284void set_zoomed(void *frontend, int zoomed)
1709795f 285{
16891265 286 /*
287 * GTK 1.2 doesn't know how to do this.
288 */
289#if GTK_CHECK_VERSION(2,0,0)
a8327734 290 struct gui_data *inst = (struct gui_data *)frontend;
16891265 291 if (iconic)
292 gtk_window_maximize(GTK_WINDOW(inst->window));
293 else
294 gtk_window_unmaximize(GTK_WINDOW(inst->window));
295#endif
1709795f 296}
297
298/*
299 * Report whether the window is iconic, for terminal reports.
300 */
a8327734 301int is_iconic(void *frontend)
1709795f 302{
a8327734 303 struct gui_data *inst = (struct gui_data *)frontend;
16891265 304 return !gdk_window_is_viewable(inst->window->window);
1709795f 305}
306
307/*
308 * Report the window's position, for terminal reports.
309 */
a8327734 310void get_window_pos(void *frontend, int *x, int *y)
1709795f 311{
a8327734 312 struct gui_data *inst = (struct gui_data *)frontend;
16891265 313 /*
314 * I assume that when the GTK version of this call is available
315 * we should use it. Not sure how it differs from the GDK one,
316 * though.
317 */
318#if GTK_CHECK_VERSION(2,0,0)
319 gtk_window_get_position(GTK_WINDOW(inst->window), x, y);
320#else
321 gdk_window_get_position(inst->window->window, x, y);
322#endif
1709795f 323}
324
325/*
326 * Report the window's pixel size, for terminal reports.
327 */
a8327734 328void get_window_pixels(void *frontend, int *x, int *y)
1709795f 329{
a8327734 330 struct gui_data *inst = (struct gui_data *)frontend;
16891265 331 /*
332 * I assume that when the GTK version of this call is available
333 * we should use it. Not sure how it differs from the GDK one,
334 * though.
335 */
336#if GTK_CHECK_VERSION(2,0,0)
337 gtk_window_get_size(GTK_WINDOW(inst->window), x, y);
338#else
339 gdk_window_get_size(inst->window->window, x, y);
340#endif
1709795f 341}
342
343/*
344 * Return the window or icon title.
345 */
a8327734 346char *get_window_title(void *frontend, int icon)
1709795f 347{
a8327734 348 struct gui_data *inst = (struct gui_data *)frontend;
16891265 349 return icon ? inst->wintitle : inst->icontitle;
1709795f 350}
f7f27309 351
f7f27309 352gint delete_window(GtkWidget *widget, GdkEvent *event, gpointer data)
353{
354 /*
57e636ca 355 * We could implement warn-on-close here if we really wanted
356 * to.
f7f27309 357 */
358 return FALSE;
359}
360
a8327734 361static void show_mouseptr(struct gui_data *inst, int show)
57e636ca 362{
3ea863a3 363 if (!inst->cfg.hide_mouseptr)
57e636ca 364 show = 1;
365 if (show)
366 gdk_window_set_cursor(inst->area->window, inst->currcursor);
367 else
368 gdk_window_set_cursor(inst->area->window, inst->blankcursor);
b3530065 369 inst->mouseptr_visible = show;
57e636ca 370}
371
f7f27309 372gint configure_area(GtkWidget *widget, GdkEventConfigure *event, gpointer data)
373{
374 struct gui_data *inst = (struct gui_data *)data;
88e6b9ca 375 int w, h, need_size = 0;
f7f27309 376
3ea863a3 377 w = (event->width - 2*inst->cfg.window_border) / inst->font_width;
378 h = (event->height - 2*inst->cfg.window_border) / inst->font_height;
d64838e1 379
3ea863a3 380 if (w != inst->cfg.width || h != inst->cfg.height) {
88e6b9ca 381 if (inst->pixmap) {
382 gdk_pixmap_unref(inst->pixmap);
383 inst->pixmap = NULL;
384 }
3ea863a3 385 inst->cfg.width = w;
386 inst->cfg.height = h;
88e6b9ca 387 need_size = 1;
388 }
389 if (!inst->pixmap) {
6a5e84dd 390 GdkGC *gc;
88e6b9ca 391
392 inst->pixmap = gdk_pixmap_new(widget->window,
3ea863a3 393 (inst->cfg.width * inst->font_width +
394 2*inst->cfg.window_border),
395 (inst->cfg.height * inst->font_height +
396 2*inst->cfg.window_border), -1);
88e6b9ca 397
6a5e84dd 398 gc = gdk_gc_new(inst->area->window);
399 gdk_gc_set_foreground(gc, &inst->cols[18]); /* default background */
400 gdk_draw_rectangle(inst->pixmap, gc, 1, 0, 0,
3ea863a3 401 inst->cfg.width * inst->font_width + 2*inst->cfg.window_border,
402 inst->cfg.height * inst->font_height + 2*inst->cfg.window_border);
6a5e84dd 403 gdk_gc_unref(gc);
404 }
f7f27309 405
88e6b9ca 406 if (need_size) {
3ea863a3 407 term_size(inst->term, h, w, inst->cfg.savelines);
88e6b9ca 408 }
409
f7f27309 410 return TRUE;
411}
412
413gint expose_area(GtkWidget *widget, GdkEventExpose *event, gpointer data)
414{
a8327734 415 struct gui_data *inst = (struct gui_data *)data;
f7f27309 416
417 /*
1709795f 418 * Pass the exposed rectangle to terminal.c, which will call us
419 * back to do the actual painting.
f7f27309 420 */
6a5e84dd 421 if (inst->pixmap) {
422 gdk_draw_pixmap(widget->window,
423 widget->style->fg_gc[GTK_WIDGET_STATE(widget)],
424 inst->pixmap,
425 event->area.x, event->area.y,
426 event->area.x, event->area.y,
427 event->area.width, event->area.height);
428 }
1709795f 429 return TRUE;
f7f27309 430}
431
432#define KEY_PRESSED(k) \
433 (inst->keystate[(k) / 32] & (1 << ((k) % 32)))
434
435gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data)
436{
a8327734 437 struct gui_data *inst = (struct gui_data *)data;
a57cd64b 438 char output[32];
439 int start, end;
f7f27309 440
c33c3d76 441 /* By default, nothing is generated. */
442 end = start = 0;
443
444 /*
445 * If Alt is being released after typing an Alt+numberpad
446 * sequence, we should generate the code that was typed.
045f707b 447 *
448 * Note that we only do this if more than one key was actually
449 * pressed - I don't think Alt+NumPad4 should be ^D or that
450 * Alt+NumPad3 should be ^C, for example. There's no serious
451 * inconvenience in having to type a zero before a single-digit
452 * character code.
c33c3d76 453 */
454 if (event->type == GDK_KEY_RELEASE &&
455 (event->keyval == GDK_Meta_L || event->keyval == GDK_Alt_L ||
456 event->keyval == GDK_Meta_R || event->keyval == GDK_Alt_R) &&
045f707b 457 inst->alt_keycode >= 0 && inst->alt_digits > 1) {
c33c3d76 458#ifdef KEY_DEBUGGING
459 printf("Alt key up, keycode = %d\n", inst->alt_keycode);
460#endif
461 output[0] = inst->alt_keycode;
462 end = 1;
463 goto done;
464 }
465
1709795f 466 if (event->type == GDK_KEY_PRESS) {
a57cd64b 467#ifdef KEY_DEBUGGING
468 {
469 int i;
470 printf("keypress: keyval = %04x, state = %08x; string =",
471 event->keyval, event->state);
472 for (i = 0; event->string[i]; i++)
473 printf(" %02x", (unsigned char) event->string[i]);
474 printf("\n");
475 }
476#endif
477
478 /*
c33c3d76 479 * NYI: Compose key (!!! requires Unicode faff before even trying)
a57cd64b 480 */
481
6a5e84dd 482 /*
c33c3d76 483 * If Alt has just been pressed, we start potentially
484 * accumulating an Alt+numberpad code. We do this by
485 * setting alt_keycode to -1 (nothing yet but plausible).
486 */
487 if ((event->keyval == GDK_Meta_L || event->keyval == GDK_Alt_L ||
488 event->keyval == GDK_Meta_R || event->keyval == GDK_Alt_R)) {
489 inst->alt_keycode = -1;
045f707b 490 inst->alt_digits = 0;
c33c3d76 491 goto done; /* this generates nothing else */
492 }
493
494 /*
495 * If we're seeing a numberpad key press with Mod1 down,
496 * consider adding it to alt_keycode if that's sensible.
497 * Anything _else_ with Mod1 down cancels any possibility
498 * of an ALT keycode: we set alt_keycode to -2.
499 */
500 if ((event->state & GDK_MOD1_MASK) && inst->alt_keycode != -2) {
501 int digit = -1;
502 switch (event->keyval) {
503 case GDK_KP_0: case GDK_KP_Insert: digit = 0; break;
504 case GDK_KP_1: case GDK_KP_End: digit = 1; break;
505 case GDK_KP_2: case GDK_KP_Down: digit = 2; break;
506 case GDK_KP_3: case GDK_KP_Page_Down: digit = 3; break;
507 case GDK_KP_4: case GDK_KP_Left: digit = 4; break;
508 case GDK_KP_5: case GDK_KP_Begin: digit = 5; break;
509 case GDK_KP_6: case GDK_KP_Right: digit = 6; break;
510 case GDK_KP_7: case GDK_KP_Home: digit = 7; break;
511 case GDK_KP_8: case GDK_KP_Up: digit = 8; break;
512 case GDK_KP_9: case GDK_KP_Page_Up: digit = 9; break;
513 }
514 if (digit < 0)
515 inst->alt_keycode = -2; /* it's invalid */
516 else {
517#ifdef KEY_DEBUGGING
518 printf("Adding digit %d to keycode %d", digit,
519 inst->alt_keycode);
520#endif
521 if (inst->alt_keycode == -1)
522 inst->alt_keycode = digit; /* one-digit code */
523 else
524 inst->alt_keycode = inst->alt_keycode * 10 + digit;
045f707b 525 inst->alt_digits++;
c33c3d76 526#ifdef KEY_DEBUGGING
527 printf(" gives new code %d\n", inst->alt_keycode);
528#endif
529 /* Having used this digit, we now do nothing more with it. */
530 goto done;
531 }
532 }
533
534 /*
6a5e84dd 535 * Shift-PgUp and Shift-PgDn don't even generate keystrokes
536 * at all.
537 */
538 if (event->keyval == GDK_Page_Up && (event->state & GDK_SHIFT_MASK)) {
3ea863a3 539 term_scroll(inst->term, 0, -inst->cfg.height/2);
6a5e84dd 540 return TRUE;
541 }
153580da 542 if (event->keyval == GDK_Page_Up && (event->state & GDK_CONTROL_MASK)) {
543 term_scroll(inst->term, 0, -1);
544 return TRUE;
545 }
6a5e84dd 546 if (event->keyval == GDK_Page_Down && (event->state & GDK_SHIFT_MASK)) {
3ea863a3 547 term_scroll(inst->term, 0, +inst->cfg.height/2);
6a5e84dd 548 return TRUE;
549 }
153580da 550 if (event->keyval == GDK_Page_Down && (event->state & GDK_CONTROL_MASK)) {
551 term_scroll(inst->term, 0, +1);
552 return TRUE;
553 }
6a5e84dd 554
2a2c1973 555 /*
556 * Neither does Shift-Ins.
557 */
558 if (event->keyval == GDK_Insert && (event->state & GDK_SHIFT_MASK)) {
a8327734 559 request_paste(inst);
2a2c1973 560 return TRUE;
561 }
562
a57cd64b 563 /* ALT+things gives leading Escape. */
564 output[0] = '\033';
565 strncpy(output+1, event->string, 31);
566 output[31] = '\0';
567 end = strlen(output);
5c0ea258 568 if (event->state & GDK_MOD1_MASK) {
569 start = 0;
570 if (end == 1) end = 0;
571 } else
572 start = 1;
a57cd64b 573
574 /* Control-` is the same as Control-\ (unless gtk has a better idea) */
575 if (!event->string[0] && event->keyval == '`' &&
576 (event->state & GDK_CONTROL_MASK)) {
577 output[1] = '\x1C';
578 end = 2;
579 }
580
581 /* Control-Break is the same as Control-C */
582 if (event->keyval == GDK_Break &&
583 (event->state & GDK_CONTROL_MASK)) {
584 output[1] = '\003';
585 end = 2;
586 }
587
588 /* Control-2, Control-Space and Control-@ are NUL */
589 if (!event->string[0] &&
590 (event->keyval == ' ' || event->keyval == '2' ||
591 event->keyval == '@') &&
592 (event->state & (GDK_SHIFT_MASK |
593 GDK_CONTROL_MASK)) == GDK_CONTROL_MASK) {
594 output[1] = '\0';
595 end = 2;
596 }
597
598 /* Control-Shift-Space is 160 (ISO8859 nonbreaking space) */
599 if (!event->string[0] && event->keyval == ' ' &&
600 (event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) ==
601 (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) {
602 output[1] = '\240';
603 end = 2;
604 }
605
606 /* We don't let GTK tell us what Backspace is! We know better. */
607 if (event->keyval == GDK_BackSpace &&
608 !(event->state & GDK_SHIFT_MASK)) {
3ea863a3 609 output[1] = inst->cfg.bksp_is_delete ? '\x7F' : '\x08';
a57cd64b 610 end = 2;
611 }
e8e8d6e2 612 /* For Shift Backspace, do opposite of what is configured. */
613 if (event->keyval == GDK_BackSpace &&
614 (event->state & GDK_SHIFT_MASK)) {
3ea863a3 615 output[1] = inst->cfg.bksp_is_delete ? '\x08' : '\x7F';
e8e8d6e2 616 end = 2;
617 }
a57cd64b 618
619 /* Shift-Tab is ESC [ Z */
620 if (event->keyval == GDK_ISO_Left_Tab ||
621 (event->keyval == GDK_Tab && (event->state & GDK_SHIFT_MASK))) {
622 end = 1 + sprintf(output+1, "\033[Z");
623 }
624
625 /*
8b1fcd56 626 * NetHack keypad mode.
627 */
3ea863a3 628 if (inst->cfg.nethack_keypad) {
8b1fcd56 629 char *keys = NULL;
630 switch (event->keyval) {
631 case GDK_KP_1: case GDK_KP_End: keys = "bB"; break;
632 case GDK_KP_2: case GDK_KP_Down: keys = "jJ"; break;
633 case GDK_KP_3: case GDK_KP_Page_Down: keys = "nN"; break;
634 case GDK_KP_4: case GDK_KP_Left: keys = "hH"; break;
635 case GDK_KP_5: case GDK_KP_Begin: keys = ".."; break;
636 case GDK_KP_6: case GDK_KP_Right: keys = "lL"; break;
637 case GDK_KP_7: case GDK_KP_Home: keys = "yY"; break;
638 case GDK_KP_8: case GDK_KP_Up: keys = "kK"; break;
639 case GDK_KP_9: case GDK_KP_Page_Up: keys = "uU"; break;
640 }
641 if (keys) {
642 end = 2;
643 if (event->state & GDK_SHIFT_MASK)
644 output[1] = keys[1];
645 else
646 output[1] = keys[0];
647 goto done;
648 }
649 }
650
651 /*
a57cd64b 652 * Application keypad mode.
653 */
3ea863a3 654 if (inst->term->app_keypad_keys && !inst->cfg.no_applic_k) {
a57cd64b 655 int xkey = 0;
656 switch (event->keyval) {
657 case GDK_Num_Lock: xkey = 'P'; break;
658 case GDK_KP_Divide: xkey = 'Q'; break;
659 case GDK_KP_Multiply: xkey = 'R'; break;
660 case GDK_KP_Subtract: xkey = 'S'; break;
661 /*
662 * Keypad + is tricky. It covers a space that would
663 * be taken up on the VT100 by _two_ keys; so we
664 * let Shift select between the two. Worse still,
665 * in xterm function key mode we change which two...
666 */
667 case GDK_KP_Add:
3ea863a3 668 if (inst->cfg.funky_type == 2) {
a57cd64b 669 if (event->state & GDK_SHIFT_MASK)
670 xkey = 'l';
671 else
672 xkey = 'k';
673 } else if (event->state & GDK_SHIFT_MASK)
674 xkey = 'm';
675 else
676 xkey = 'l';
677 break;
678 case GDK_KP_Enter: xkey = 'M'; break;
679 case GDK_KP_0: case GDK_KP_Insert: xkey = 'p'; break;
680 case GDK_KP_1: case GDK_KP_End: xkey = 'q'; break;
681 case GDK_KP_2: case GDK_KP_Down: xkey = 'r'; break;
682 case GDK_KP_3: case GDK_KP_Page_Down: xkey = 's'; break;
683 case GDK_KP_4: case GDK_KP_Left: xkey = 't'; break;
684 case GDK_KP_5: case GDK_KP_Begin: xkey = 'u'; break;
685 case GDK_KP_6: case GDK_KP_Right: xkey = 'v'; break;
686 case GDK_KP_7: case GDK_KP_Home: xkey = 'w'; break;
687 case GDK_KP_8: case GDK_KP_Up: xkey = 'x'; break;
688 case GDK_KP_9: case GDK_KP_Page_Up: xkey = 'y'; break;
689 case GDK_KP_Decimal: case GDK_KP_Delete: xkey = 'n'; break;
690 }
691 if (xkey) {
5def7522 692 if (inst->term->vt52_mode) {
a57cd64b 693 if (xkey >= 'P' && xkey <= 'S')
694 end = 1 + sprintf(output+1, "\033%c", xkey);
695 else
696 end = 1 + sprintf(output+1, "\033?%c", xkey);
697 } else
698 end = 1 + sprintf(output+1, "\033O%c", xkey);
699 goto done;
700 }
701 }
702
703 /*
704 * Next, all the keys that do tilde codes. (ESC '[' nn '~',
705 * for integer decimal nn.)
706 *
707 * We also deal with the weird ones here. Linux VCs replace F1
708 * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
709 * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
710 * respectively.
711 */
712 {
713 int code = 0;
714 switch (event->keyval) {
715 case GDK_F1:
716 code = (event->state & GDK_SHIFT_MASK ? 23 : 11);
717 break;
718 case GDK_F2:
719 code = (event->state & GDK_SHIFT_MASK ? 24 : 12);
720 break;
721 case GDK_F3:
722 code = (event->state & GDK_SHIFT_MASK ? 25 : 13);
723 break;
724 case GDK_F4:
725 code = (event->state & GDK_SHIFT_MASK ? 26 : 14);
726 break;
727 case GDK_F5:
728 code = (event->state & GDK_SHIFT_MASK ? 28 : 15);
729 break;
730 case GDK_F6:
731 code = (event->state & GDK_SHIFT_MASK ? 29 : 17);
732 break;
733 case GDK_F7:
734 code = (event->state & GDK_SHIFT_MASK ? 31 : 18);
735 break;
736 case GDK_F8:
737 code = (event->state & GDK_SHIFT_MASK ? 32 : 19);
738 break;
739 case GDK_F9:
740 code = (event->state & GDK_SHIFT_MASK ? 33 : 20);
741 break;
742 case GDK_F10:
743 code = (event->state & GDK_SHIFT_MASK ? 34 : 21);
744 break;
745 case GDK_F11:
746 code = 23;
747 break;
748 case GDK_F12:
749 code = 24;
750 break;
751 case GDK_F13:
752 code = 25;
753 break;
754 case GDK_F14:
755 code = 26;
756 break;
757 case GDK_F15:
758 code = 28;
759 break;
760 case GDK_F16:
761 code = 29;
762 break;
763 case GDK_F17:
764 code = 31;
765 break;
766 case GDK_F18:
767 code = 32;
768 break;
769 case GDK_F19:
770 code = 33;
771 break;
772 case GDK_F20:
773 code = 34;
774 break;
775 }
776 if (!(event->state & GDK_CONTROL_MASK)) switch (event->keyval) {
777 case GDK_Home: case GDK_KP_Home:
778 code = 1;
779 break;
780 case GDK_Insert: case GDK_KP_Insert:
781 code = 2;
782 break;
783 case GDK_Delete: case GDK_KP_Delete:
784 code = 3;
785 break;
786 case GDK_End: case GDK_KP_End:
787 code = 4;
788 break;
789 case GDK_Page_Up: case GDK_KP_Page_Up:
790 code = 5;
791 break;
792 case GDK_Page_Down: case GDK_KP_Page_Down:
793 code = 6;
794 break;
795 }
796 /* Reorder edit keys to physical order */
3ea863a3 797 if (inst->cfg.funky_type == 3 && code <= 6)
a57cd64b 798 code = "\0\2\1\4\5\3\6"[code];
799
5def7522 800 if (inst->term->vt52_mode && code > 0 && code <= 6) {
a57cd64b 801 end = 1 + sprintf(output+1, "\x1B%c", " HLMEIG"[code]);
802 goto done;
803 }
804
3ea863a3 805 if (inst->cfg.funky_type == 5 && /* SCO function keys */
a57cd64b 806 code >= 11 && code <= 34) {
807 char codes[] = "MNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@[\\]^_`{";
808 int index = 0;
809 switch (event->keyval) {
810 case GDK_F1: index = 0; break;
811 case GDK_F2: index = 1; break;
812 case GDK_F3: index = 2; break;
813 case GDK_F4: index = 3; break;
814 case GDK_F5: index = 4; break;
815 case GDK_F6: index = 5; break;
816 case GDK_F7: index = 6; break;
817 case GDK_F8: index = 7; break;
818 case GDK_F9: index = 8; break;
819 case GDK_F10: index = 9; break;
820 case GDK_F11: index = 10; break;
821 case GDK_F12: index = 11; break;
822 }
823 if (event->state & GDK_SHIFT_MASK) index += 12;
824 if (event->state & GDK_CONTROL_MASK) index += 24;
825 end = 1 + sprintf(output+1, "\x1B[%c", codes[index]);
826 goto done;
827 }
3ea863a3 828 if (inst->cfg.funky_type == 5 && /* SCO small keypad */
a57cd64b 829 code >= 1 && code <= 6) {
830 char codes[] = "HL.FIG";
831 if (code == 3) {
832 output[1] = '\x7F';
833 end = 2;
834 } else {
835 end = 1 + sprintf(output+1, "\x1B[%c", codes[code-1]);
836 }
837 goto done;
838 }
3ea863a3 839 if ((inst->term->vt52_mode || inst->cfg.funky_type == 4) &&
887035a5 840 code >= 11 && code <= 24) {
a57cd64b 841 int offt = 0;
842 if (code > 15)
843 offt++;
844 if (code > 21)
845 offt++;
5def7522 846 if (inst->term->vt52_mode)
a57cd64b 847 end = 1 + sprintf(output+1,
848 "\x1B%c", code + 'P' - 11 - offt);
849 else
850 end = 1 + sprintf(output+1,
851 "\x1BO%c", code + 'P' - 11 - offt);
852 goto done;
853 }
3ea863a3 854 if (inst->cfg.funky_type == 1 && code >= 11 && code <= 15) {
a57cd64b 855 end = 1 + sprintf(output+1, "\x1B[[%c", code + 'A' - 11);
856 goto done;
857 }
3ea863a3 858 if (inst->cfg.funky_type == 2 && code >= 11 && code <= 14) {
5def7522 859 if (inst->term->vt52_mode)
a57cd64b 860 end = 1 + sprintf(output+1, "\x1B%c", code + 'P' - 11);
861 else
862 end = 1 + sprintf(output+1, "\x1BO%c", code + 'P' - 11);
863 goto done;
864 }
3ea863a3 865 if (inst->cfg.rxvt_homeend && (code == 1 || code == 4)) {
a57cd64b 866 end = 1 + sprintf(output+1, code == 1 ? "\x1B[H" : "\x1BOw");
867 goto done;
868 }
869 if (code) {
870 end = 1 + sprintf(output+1, "\x1B[%d~", code);
871 goto done;
872 }
873 }
874
875 /*
876 * Cursor keys. (This includes the numberpad cursor keys,
877 * if we haven't already done them due to app keypad mode.)
878 *
879 * Here we also process un-numlocked un-appkeypadded KP5,
880 * which sends ESC [ G.
881 */
882 {
883 int xkey = 0;
884 switch (event->keyval) {
885 case GDK_Up: case GDK_KP_Up: xkey = 'A'; break;
886 case GDK_Down: case GDK_KP_Down: xkey = 'B'; break;
887 case GDK_Right: case GDK_KP_Right: xkey = 'C'; break;
888 case GDK_Left: case GDK_KP_Left: xkey = 'D'; break;
889 case GDK_Begin: case GDK_KP_Begin: xkey = 'G'; break;
890 }
891 if (xkey) {
892 /*
893 * The arrow keys normally do ESC [ A and so on. In
894 * app cursor keys mode they do ESC O A instead.
895 * Ctrl toggles the two modes.
896 */
5def7522 897 if (inst->term->vt52_mode) {
a57cd64b 898 end = 1 + sprintf(output+1, "\033%c", xkey);
5def7522 899 } else if (!inst->term->app_cursor_keys ^
a57cd64b 900 !(event->state & GDK_CONTROL_MASK)) {
901 end = 1 + sprintf(output+1, "\033O%c", xkey);
902 } else {
903 end = 1 + sprintf(output+1, "\033[%c", xkey);
904 }
905 goto done;
906 }
907 }
c33c3d76 908 goto done;
909 }
a57cd64b 910
c33c3d76 911 done:
a57cd64b 912
c33c3d76 913 if (end-start > 0) {
a57cd64b 914#ifdef KEY_DEBUGGING
c33c3d76 915 int i;
916 printf("generating sequence:");
917 for (i = start; i < end; i++)
918 printf(" %02x", (unsigned char) output[i]);
919 printf("\n");
a57cd64b 920#endif
c33c3d76 921
085f4a68 922 if (!inst->direct_to_font) {
facd762c 923 /*
924 * The stuff we've just generated is assumed to be
925 * ISO-8859-1! This sounds insane, but `man
926 * XLookupString' agrees: strings of this type returned
927 * from the X server are hardcoded to 8859-1. Strictly
928 * speaking we should be doing this using some sort of
929 * GtkIMContext, which (if we're lucky) would give us
930 * our data directly in Unicode; but that's not
931 * supported in GTK 1.2 as far as I can tell, and it's
932 * poorly documented even in 2.0, so it'll have to
933 * wait.
934 */
935 lpage_send(inst->ldisc, CS_ISO8859_1, output+start, end-start, 1);
936 } else {
937 /*
938 * In direct-to-font mode, we just send the string
939 * exactly as we received it.
940 */
941 ldisc_send(inst->ldisc, output+start, end-start, 1);
942 }
2dc6356a 943
a8327734 944 show_mouseptr(inst, 0);
5def7522 945 term_seen_key_event(inst->term);
946 term_out(inst->term);
1709795f 947 }
948
949 return TRUE;
f7f27309 950}
951
e6346999 952gint button_event(GtkWidget *widget, GdkEventButton *event, gpointer data)
953{
954 struct gui_data *inst = (struct gui_data *)data;
955 int shift, ctrl, alt, x, y, button, act;
956
a8327734 957 show_mouseptr(inst, 1);
57e636ca 958
bab6e572 959 if (event->button == 4 && event->type == GDK_BUTTON_PRESS) {
5def7522 960 term_scroll(inst->term, 0, -5);
bab6e572 961 return TRUE;
962 }
963 if (event->button == 5 && event->type == GDK_BUTTON_PRESS) {
5def7522 964 term_scroll(inst->term, 0, +5);
bab6e572 965 return TRUE;
966 }
967
e6346999 968 shift = event->state & GDK_SHIFT_MASK;
969 ctrl = event->state & GDK_CONTROL_MASK;
970 alt = event->state & GDK_MOD1_MASK;
971 if (event->button == 1)
972 button = MBT_LEFT;
973 else if (event->button == 2)
974 button = MBT_MIDDLE;
975 else if (event->button == 3)
976 button = MBT_RIGHT;
977 else
978 return FALSE; /* don't even know what button! */
979
980 switch (event->type) {
981 case GDK_BUTTON_PRESS: act = MA_CLICK; break;
982 case GDK_BUTTON_RELEASE: act = MA_RELEASE; break;
983 case GDK_2BUTTON_PRESS: act = MA_2CLK; break;
984 case GDK_3BUTTON_PRESS: act = MA_3CLK; break;
985 default: return FALSE; /* don't know this event type */
986 }
987
3ea863a3 988 if (send_raw_mouse && !(inst->cfg.mouse_override && shift) &&
e6346999 989 act != MA_CLICK && act != MA_RELEASE)
990 return TRUE; /* we ignore these in raw mouse mode */
991
3ea863a3 992 x = (event->x - inst->cfg.window_border) / inst->font_width;
993 y = (event->y - inst->cfg.window_border) / inst->font_height;
e6346999 994
fc5b0934 995 term_mouse(inst->term, button, translate_button(button), act,
996 x, y, shift, ctrl, alt);
e6346999 997
998 return TRUE;
999}
1000
1001gint motion_event(GtkWidget *widget, GdkEventMotion *event, gpointer data)
1002{
1003 struct gui_data *inst = (struct gui_data *)data;
1004 int shift, ctrl, alt, x, y, button;
1005
a8327734 1006 show_mouseptr(inst, 1);
57e636ca 1007
e6346999 1008 shift = event->state & GDK_SHIFT_MASK;
1009 ctrl = event->state & GDK_CONTROL_MASK;
1010 alt = event->state & GDK_MOD1_MASK;
1011 if (event->state & GDK_BUTTON1_MASK)
1012 button = MBT_LEFT;
1013 else if (event->state & GDK_BUTTON2_MASK)
1014 button = MBT_MIDDLE;
1015 else if (event->state & GDK_BUTTON3_MASK)
1016 button = MBT_RIGHT;
1017 else
1018 return FALSE; /* don't even know what button! */
1019
3ea863a3 1020 x = (event->x - inst->cfg.window_border) / inst->font_width;
1021 y = (event->y - inst->cfg.window_border) / inst->font_height;
e6346999 1022
fc5b0934 1023 term_mouse(inst->term, button, translate_button(button), MA_DRAG,
1024 x, y, shift, ctrl, alt);
e6346999 1025
1026 return TRUE;
1027}
1028
b9d7bcad 1029void frontend_keypress(void *handle)
90cfd8f4 1030{
b9d7bcad 1031 struct gui_data *inst = (struct gui_data *)handle;
1032
90cfd8f4 1033 /*
1034 * If our child process has exited but not closed, terminate on
1035 * any keypress.
1036 */
1037 if (inst->exited)
1038 exit(0);
1039}
1040
f7f27309 1041gint timer_func(gpointer data)
1042{
90cfd8f4 1043 struct gui_data *inst = (struct gui_data *)data;
74aca06d 1044 int exitcode;
a0e16eb1 1045
3f935d5b 1046 if (!inst->exited &&
1047 (exitcode = inst->back->exitcode(inst->backhandle)) >= 0) {
74aca06d 1048 inst->exited = TRUE;
1049 if (inst->cfg.close_on_exit == FORCE_ON ||
1050 (inst->cfg.close_on_exit == AUTO && exitcode == 0))
1051 exit(0); /* just go. */
a0e16eb1 1052 }
f7f27309 1053
5def7522 1054 term_update(inst->term);
1055 term_blink(inst->term, 0);
f7f27309 1056 return TRUE;
1057}
1058
74aca06d 1059void fd_input_func(gpointer data, gint sourcefd, GdkInputCondition condition)
054d8535 1060{
3f935d5b 1061 /*
1062 * We must process exceptional notifications before ordinary
1063 * readability ones, or we may go straight past the urgent
1064 * marker.
1065 */
1066 if (condition & GDK_INPUT_EXCEPTION)
1067 select_result(sourcefd, 4);
1068 if (condition & GDK_INPUT_READ)
1069 select_result(sourcefd, 1);
1070 if (condition & GDK_INPUT_WRITE)
1071 select_result(sourcefd, 2);
054d8535 1072}
1073
f7f27309 1074void destroy(GtkWidget *widget, gpointer data)
1075{
1076 gtk_main_quit();
1077}
1078
1079gint focus_event(GtkWidget *widget, GdkEventFocus *event, gpointer data)
1080{
a8327734 1081 struct gui_data *inst = (struct gui_data *)data;
5def7522 1082 inst->term->has_focus = event->in;
1083 term_out(inst->term);
1084 term_update(inst->term);
a8327734 1085 show_mouseptr(inst, 1);
1709795f 1086 return FALSE;
1087}
1088
1089/*
1090 * set or clear the "raw mouse message" mode
1091 */
a8327734 1092void set_raw_mouse_mode(void *frontend, int activate)
1709795f 1093{
a8327734 1094 struct gui_data *inst = (struct gui_data *)frontend;
3ea863a3 1095 activate = activate && !inst->cfg.no_mouse_rep;
d64838e1 1096 send_raw_mouse = activate;
1097 if (send_raw_mouse)
57e636ca 1098 inst->currcursor = inst->rawcursor;
d64838e1 1099 else
57e636ca 1100 inst->currcursor = inst->textcursor;
a8327734 1101 show_mouseptr(inst, inst->mouseptr_visible);
1709795f 1102}
1103
a8327734 1104void request_resize(void *frontend, int w, int h)
1709795f 1105{
a8327734 1106 struct gui_data *inst = (struct gui_data *)frontend;
51b13830 1107 int large_x, large_y;
1108 int offset_x, offset_y;
1109 int area_x, area_y;
1110 GtkRequisition inner, outer;
1111
1112 /*
1113 * This is a heinous hack dreamed up by the gnome-terminal
1114 * people to get around a limitation in gtk. The problem is
1115 * that in order to set the size correctly we really need to be
1116 * calling gtk_window_resize - but that needs to know the size
1117 * of the _whole window_, not the drawing area. So what we do
1118 * is to set an artificially huge size request on the drawing
1119 * area, recompute the resulting size request on the window,
1120 * and look at the difference between the two. That gives us
1121 * the x and y offsets we need to translate drawing area size
1122 * into window size for real, and then we call
1123 * gtk_window_resize.
1124 */
1125
1126 /*
1127 * We start by retrieving the current size of the whole window.
1128 * Adding a bit to _that_ will give us a value we can use as a
1129 * bogus size request which guarantees to be bigger than the
1130 * current size of the drawing area.
1131 */
a8327734 1132 get_window_pixels(inst, &large_x, &large_y);
51b13830 1133 large_x += 32;
1134 large_y += 32;
1135
1136#if GTK_CHECK_VERSION(2,0,0)
1137 gtk_widget_set_size_request(inst->area, large_x, large_y);
1138#else
1139 gtk_widget_set_usize(inst->area, large_x, large_y);
1140#endif
1141 gtk_widget_size_request(inst->area, &inner);
1142 gtk_widget_size_request(inst->window, &outer);
1143
1144 offset_x = outer.width - inner.width;
1145 offset_y = outer.height - inner.height;
1146
3ea863a3 1147 area_x = inst->font_width * w + 2*inst->cfg.window_border;
1148 area_y = inst->font_height * h + 2*inst->cfg.window_border;
51b13830 1149
1150 /*
1151 * Now we must set the size request on the drawing area back to
1152 * something sensible before we commit the real resize. Best
1153 * way to do this, I think, is to set it to what the size is
1154 * really going to end up being.
1155 */
1156#if GTK_CHECK_VERSION(2,0,0)
1157 gtk_widget_set_size_request(inst->area, area_x, area_y);
1158#else
1159 gtk_widget_set_usize(inst->area, area_x, area_y);
1160#endif
1161
1162#if GTK_CHECK_VERSION(2,0,0)
1163 gtk_window_resize(GTK_WINDOW(inst->window),
1164 area_x + offset_x, area_y + offset_y);
1165#else
1166 gdk_window_resize(inst->window->window,
1167 area_x + offset_x, area_y + offset_y);
1168#endif
1709795f 1169}
1170
a8327734 1171static void real_palette_set(struct gui_data *inst, int n, int r, int g, int b)
26b8e7cc 1172{
1173 gboolean success[1];
1174
1175 inst->cols[n].red = r * 0x0101;
1176 inst->cols[n].green = g * 0x0101;
1177 inst->cols[n].blue = b * 0x0101;
1178
1179 gdk_colormap_alloc_colors(inst->colmap, inst->cols + n, 1,
1180 FALSE, FALSE, success);
1181 if (!success[0])
1182 g_error("pterm: couldn't allocate colour %d (#%02x%02x%02x)\n",
1183 n, r, g, b);
1184}
1185
a8327734 1186void set_window_background(struct gui_data *inst)
7428c509 1187{
1188 if (inst->area && inst->area->window)
1189 gdk_window_set_background(inst->area->window, &inst->cols[18]);
1190 if (inst->window && inst->window->window)
1191 gdk_window_set_background(inst->window->window, &inst->cols[18]);
1192}
1193
a8327734 1194void palette_set(void *frontend, int n, int r, int g, int b)
1709795f 1195{
a8327734 1196 struct gui_data *inst = (struct gui_data *)frontend;
26b8e7cc 1197 static const int first[21] = {
1198 0, 2, 4, 6, 8, 10, 12, 14,
1199 1, 3, 5, 7, 9, 11, 13, 15,
1200 16, 17, 18, 20, 22
1201 };
a8327734 1202 real_palette_set(inst, first[n], r, g, b);
26b8e7cc 1203 if (first[n] >= 18)
a8327734 1204 real_palette_set(inst, first[n] + 1, r, g, b);
7428c509 1205 if (first[n] == 18)
a8327734 1206 set_window_background(inst);
1709795f 1207}
26b8e7cc 1208
a8327734 1209void palette_reset(void *frontend)
1709795f 1210{
a8327734 1211 struct gui_data *inst = (struct gui_data *)frontend;
3ea863a3 1212 /* This maps colour indices in inst->cfg to those used in inst->cols. */
26b8e7cc 1213 static const int ww[] = {
1214 6, 7, 8, 9, 10, 11, 12, 13,
1215 14, 15, 16, 17, 18, 19, 20, 21,
1216 0, 1, 2, 3, 4, 5
1217 };
1218 gboolean success[NCOLOURS];
1219 int i;
1220
1221 assert(lenof(ww) == NCOLOURS);
1222
1223 if (!inst->colmap) {
1224 inst->colmap = gdk_colormap_get_system();
1225 } else {
1226 gdk_colormap_free_colors(inst->colmap, inst->cols, NCOLOURS);
1227 }
1228
1229 for (i = 0; i < NCOLOURS; i++) {
3ea863a3 1230 inst->cols[i].red = inst->cfg.colours[ww[i]][0] * 0x0101;
1231 inst->cols[i].green = inst->cfg.colours[ww[i]][1] * 0x0101;
1232 inst->cols[i].blue = inst->cfg.colours[ww[i]][2] * 0x0101;
26b8e7cc 1233 }
1234
1235 gdk_colormap_alloc_colors(inst->colmap, inst->cols, NCOLOURS,
1236 FALSE, FALSE, success);
1237 for (i = 0; i < NCOLOURS; i++) {
1238 if (!success[i])
1239 g_error("pterm: couldn't allocate colour %d (#%02x%02x%02x)\n",
3ea863a3 1240 i, inst->cfg.colours[i][0], inst->cfg.colours[i][1], inst->cfg.colours[i][2]);
26b8e7cc 1241 }
7428c509 1242
a8327734 1243 set_window_background(inst);
1709795f 1244}
1245
a8327734 1246void write_clip(void *frontend, wchar_t * data, int len, int must_deselect)
1709795f 1247{
a8327734 1248 struct gui_data *inst = (struct gui_data *)frontend;
e6346999 1249 if (inst->pasteout_data)
1250 sfree(inst->pasteout_data);
2dc6356a 1251 if (inst->pasteout_data_utf8)
1252 sfree(inst->pasteout_data_utf8);
1253
facd762c 1254 /*
1255 * Set up UTF-8 paste data. This only happens if we aren't in
1256 * direct-to-font mode using the D800 hack.
1257 */
085f4a68 1258 if (!inst->direct_to_font) {
2dc6356a 1259 wchar_t *tmp = data;
1260 int tmplen = len;
facd762c 1261
3d88e64d 1262 inst->pasteout_data_utf8 = snewn(len*6, char);
facd762c 1263 inst->pasteout_data_utf8_len = len*6;
2dc6356a 1264 inst->pasteout_data_utf8_len =
1265 charset_from_unicode(&tmp, &tmplen, inst->pasteout_data_utf8,
1266 inst->pasteout_data_utf8_len,
1267 CS_UTF8, NULL, NULL, 0);
085f4a68 1268 if (inst->pasteout_data_utf8_len == 0) {
1269 sfree(inst->pasteout_data_utf8);
1270 inst->pasteout_data_utf8 = NULL;
1271 } else {
1272 inst->pasteout_data_utf8 =
3d88e64d 1273 sresize(inst->pasteout_data_utf8,
1274 inst->pasteout_data_utf8_len, char);
085f4a68 1275 }
facd762c 1276 } else {
1277 inst->pasteout_data_utf8 = NULL;
1278 inst->pasteout_data_utf8_len = 0;
2dc6356a 1279 }
1280
3d88e64d 1281 inst->pasteout_data = snewn(len*6, char);
085f4a68 1282 inst->pasteout_data_len = len*6;
21d2b241 1283 inst->pasteout_data_len = wc_to_mb(inst->ucsdata.line_codepage, 0,
1284 data, len, inst->pasteout_data,
1285 inst->pasteout_data_len,
1286 NULL, NULL, NULL);
085f4a68 1287 if (inst->pasteout_data_len == 0) {
1288 sfree(inst->pasteout_data);
1289 inst->pasteout_data = NULL;
1290 } else {
1291 inst->pasteout_data =
3d88e64d 1292 sresize(inst->pasteout_data, inst->pasteout_data_len, char);
085f4a68 1293 }
e6346999 1294
1295 if (gtk_selection_owner_set(inst->area, GDK_SELECTION_PRIMARY,
1296 GDK_CURRENT_TIME)) {
1297 gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1298 GDK_SELECTION_TYPE_STRING, 1);
dd72dfa3 1299 gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1300 inst->compound_text_atom, 1);
facd762c 1301 if (inst->pasteout_data_utf8)
1302 gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
1303 inst->utf8_string_atom, 1);
e6346999 1304 }
1305}
1306
1307void selection_get(GtkWidget *widget, GtkSelectionData *seldata,
1308 guint info, guint time_stamp, gpointer data)
1309{
a8327734 1310 struct gui_data *inst = (struct gui_data *)data;
2dc6356a 1311 if (seldata->target == inst->utf8_string_atom)
1312 gtk_selection_data_set(seldata, seldata->target, 8,
1313 inst->pasteout_data_utf8,
1314 inst->pasteout_data_utf8_len);
1315 else
1316 gtk_selection_data_set(seldata, seldata->target, 8,
1317 inst->pasteout_data, inst->pasteout_data_len);
e6346999 1318}
1319
1320gint selection_clear(GtkWidget *widget, GdkEventSelection *seldata,
1321 gpointer data)
1322{
a8327734 1323 struct gui_data *inst = (struct gui_data *)data;
5def7522 1324 term_deselect(inst->term);
e6346999 1325 if (inst->pasteout_data)
1326 sfree(inst->pasteout_data);
2dc6356a 1327 if (inst->pasteout_data_utf8)
1328 sfree(inst->pasteout_data_utf8);
e6346999 1329 inst->pasteout_data = NULL;
1330 inst->pasteout_data_len = 0;
2dc6356a 1331 inst->pasteout_data_utf8 = NULL;
1332 inst->pasteout_data_utf8_len = 0;
e6346999 1333 return TRUE;
1334}
1335
a8327734 1336void request_paste(void *frontend)
e6346999 1337{
a8327734 1338 struct gui_data *inst = (struct gui_data *)frontend;
e6346999 1339 /*
1340 * In Unix, pasting is asynchronous: all we can do at the
1341 * moment is to call gtk_selection_convert(), and when the data
1342 * comes back _then_ we can call term_do_paste().
1343 */
2dc6356a 1344
085f4a68 1345 if (!inst->direct_to_font) {
facd762c 1346 /*
1347 * First we attempt to retrieve the selection as a UTF-8
1348 * string (which we will convert to the correct code page
1349 * before sending to the session, of course). If that
1350 * fails, selection_received() will be informed and will
1351 * fall back to an ordinary string.
1352 */
1353 gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
1354 inst->utf8_string_atom, GDK_CURRENT_TIME);
1355 } else {
1356 /*
1357 * If we're in direct-to-font mode, we disable UTF-8
1358 * pasting, and go straight to ordinary string data.
1359 */
1360 gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
1361 GDK_SELECTION_TYPE_STRING, GDK_CURRENT_TIME);
1362 }
e6346999 1363}
1364
0f660c8f 1365gint idle_paste_func(gpointer data); /* forward ref */
1366
e6346999 1367void selection_received(GtkWidget *widget, GtkSelectionData *seldata,
27651070 1368 guint time, gpointer data)
e6346999 1369{
a8327734 1370 struct gui_data *inst = (struct gui_data *)data;
1371
2dc6356a 1372 if (seldata->target == inst->utf8_string_atom && seldata->length <= 0) {
1373 /*
1374 * Failed to get a UTF-8 selection string. Try an ordinary
1375 * string.
1376 */
1377 gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
1378 GDK_SELECTION_TYPE_STRING, GDK_CURRENT_TIME);
1379 return;
1380 }
1381
1382 /*
1383 * Any other failure should just go foom.
1384 */
e6346999 1385 if (seldata->length <= 0 ||
2dc6356a 1386 (seldata->type != GDK_SELECTION_TYPE_STRING &&
1387 seldata->type != inst->utf8_string_atom))
e6346999 1388 return; /* Nothing happens. */
1389
1390 if (inst->pastein_data)
1391 sfree(inst->pastein_data);
1392
3d88e64d 1393 inst->pastein_data = snewn(seldata->length, wchar_t);
e6346999 1394 inst->pastein_data_len = seldata->length;
2dc6356a 1395 inst->pastein_data_len =
1396 mb_to_wc((seldata->type == inst->utf8_string_atom ?
21d2b241 1397 CS_UTF8 : inst->ucsdata.line_codepage),
2dc6356a 1398 0, seldata->data, seldata->length,
1399 inst->pastein_data, inst->pastein_data_len);
e6346999 1400
5def7522 1401 term_do_paste(inst->term);
0f660c8f 1402
5def7522 1403 if (term_paste_pending(inst->term))
0f660c8f 1404 inst->term_paste_idle_id = gtk_idle_add(idle_paste_func, inst);
1405}
1406
1407gint idle_paste_func(gpointer data)
1408{
1409 struct gui_data *inst = (struct gui_data *)data;
1410
5def7522 1411 if (term_paste_pending(inst->term))
1412 term_paste(inst->term);
0f660c8f 1413 else
1414 gtk_idle_remove(inst->term_paste_idle_id);
1415
1416 return TRUE;
1709795f 1417}
1418
0f660c8f 1419
a8327734 1420void get_clip(void *frontend, wchar_t ** p, int *len)
1709795f 1421{
a8327734 1422 struct gui_data *inst = (struct gui_data *)frontend;
1423
1709795f 1424 if (p) {
e6346999 1425 *p = inst->pastein_data;
1426 *len = inst->pastein_data_len;
1709795f 1427 }
1428}
1429
a8327734 1430void set_title(void *frontend, char *title)
1709795f 1431{
a8327734 1432 struct gui_data *inst = (struct gui_data *)frontend;
12d200b1 1433 strncpy(inst->wintitle, title, lenof(inst->wintitle));
1434 inst->wintitle[lenof(inst->wintitle)-1] = '\0';
1435 gtk_window_set_title(GTK_WINDOW(inst->window), inst->wintitle);
1709795f 1436}
1437
a8327734 1438void set_icon(void *frontend, char *title)
1709795f 1439{
a8327734 1440 struct gui_data *inst = (struct gui_data *)frontend;
16891265 1441 strncpy(inst->icontitle, title, lenof(inst->icontitle));
1442 inst->icontitle[lenof(inst->icontitle)-1] = '\0';
1443 gdk_window_set_icon_name(inst->window->window, inst->icontitle);
1709795f 1444}
1445
a8327734 1446void set_sbar(void *frontend, int total, int start, int page)
1709795f 1447{
a8327734 1448 struct gui_data *inst = (struct gui_data *)frontend;
3ea863a3 1449 if (!inst->cfg.scrollbar)
330f49be 1450 return;
6a5e84dd 1451 inst->sbar_adjust->lower = 0;
1452 inst->sbar_adjust->upper = total;
1453 inst->sbar_adjust->value = start;
1454 inst->sbar_adjust->page_size = page;
1455 inst->sbar_adjust->step_increment = 1;
1456 inst->sbar_adjust->page_increment = page/2;
88e6b9ca 1457 inst->ignore_sbar = TRUE;
6a5e84dd 1458 gtk_adjustment_changed(inst->sbar_adjust);
88e6b9ca 1459 inst->ignore_sbar = FALSE;
6a5e84dd 1460}
1461
1462void scrollbar_moved(GtkAdjustment *adj, gpointer data)
1463{
a8327734 1464 struct gui_data *inst = (struct gui_data *)data;
1465
3ea863a3 1466 if (!inst->cfg.scrollbar)
330f49be 1467 return;
88e6b9ca 1468 if (!inst->ignore_sbar)
5def7522 1469 term_scroll(inst->term, 1, (int)adj->value);
1709795f 1470}
1471
a8327734 1472void sys_cursor(void *frontend, int x, int y)
1709795f 1473{
1474 /*
1475 * This is meaningless under X.
1476 */
1477}
1478
0ce89525 1479/*
1480 * This is still called when mode==BELL_VISUAL, even though the
1481 * visual bell is handled entirely within terminal.c, because we
1482 * may want to perform additional actions on any kind of bell (for
1483 * example, taskbar flashing in Windows).
1484 */
a8327734 1485void beep(void *frontend, int mode)
1709795f 1486{
0ce89525 1487 if (mode != BELL_VISUAL)
1488 gdk_beep();
1709795f 1489}
1490
2102eb8a 1491int char_width(Context ctx, int uc)
1709795f 1492{
1493 /*
1494 * Under X, any fixed-width font really _is_ fixed-width.
1495 * Double-width characters will be dealt with using a separate
1496 * font. For the moment we can simply return 1.
1497 */
1498 return 1;
1499}
1500
a8327734 1501Context get_ctx(void *frontend)
1709795f 1502{
a8327734 1503 struct gui_data *inst = (struct gui_data *)frontend;
1504 struct draw_ctx *dctx;
1505
d64838e1 1506 if (!inst->area->window)
1507 return NULL;
a8327734 1508
3d88e64d 1509 dctx = snew(struct draw_ctx);
a8327734 1510 dctx->inst = inst;
1511 dctx->gc = gdk_gc_new(inst->area->window);
1512 return dctx;
1709795f 1513}
1514
1515void free_ctx(Context ctx)
1516{
a8327734 1517 struct draw_ctx *dctx = (struct draw_ctx *)ctx;
1518 /* struct gui_data *inst = dctx->inst; */
1519 GdkGC *gc = dctx->gc;
1709795f 1520 gdk_gc_unref(gc);
a8327734 1521 sfree(dctx);
1709795f 1522}
1523
1524/*
1525 * Draw a line of text in the window, at given character
1526 * coordinates, in given attributes.
1527 *
1528 * We are allowed to fiddle with the contents of `text'.
1529 */
1a675941 1530void do_text_internal(Context ctx, int x, int y, char *text, int len,
1531 unsigned long attr, int lattr)
1709795f 1532{
a8327734 1533 struct draw_ctx *dctx = (struct draw_ctx *)ctx;
1534 struct gui_data *inst = dctx->inst;
1535 GdkGC *gc = dctx->gc;
1536
006238cb 1537 int nfg, nbg, t, fontid, shadow, rlen, widefactor;
d64838e1 1538
37ca32ed 1539 nfg = ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
1540 nfg = 2 * (nfg & 0xF) + (nfg & 0x10 ? 1 : 0);
1541 nbg = ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
1542 nbg = 2 * (nbg & 0xF) + (nbg & 0x10 ? 1 : 0);
d64838e1 1543 if (attr & ATTR_REVERSE) {
1544 t = nfg;
1545 nfg = nbg;
1546 nbg = t;
1547 }
3ea863a3 1548 if (inst->cfg.bold_colour && (attr & ATTR_BOLD))
37ca32ed 1549 nfg |= 1;
3ea863a3 1550 if (inst->cfg.bold_colour && (attr & ATTR_BLINK))
37ca32ed 1551 nbg |= 1;
d64838e1 1552 if (attr & TATTR_ACTCURS) {
1553 nfg = NCOLOURS-2;
1554 nbg = NCOLOURS-1;
1555 }
1556
5bf50ab2 1557 fontid = shadow = 0;
006238cb 1558
1559 if (attr & ATTR_WIDE) {
1560 widefactor = 2;
1561 fontid |= 2;
1562 } else {
1563 widefactor = 1;
1564 }
1565
3ea863a3 1566 if ((attr & ATTR_BOLD) && !inst->cfg.bold_colour) {
006238cb 1567 if (inst->fonts[fontid | 1])
1568 fontid |= 1;
5bf50ab2 1569 else
1570 shadow = 1;
1571 }
1572
f34df346 1573 if (lattr != LATTR_NORM) {
f34df346 1574 x *= 2;
5def7522 1575 if (x >= inst->term->cols)
614bb468 1576 return;
006238cb 1577 if (x + len*2*widefactor > inst->term->cols)
1578 len = (inst->term->cols-x)/2/widefactor;/* trim to LH half */
623f81b7 1579 rlen = len * 2;
1580 } else
1581 rlen = len;
1582
1583 {
1584 GdkRectangle r;
1585
3ea863a3 1586 r.x = x*inst->font_width+inst->cfg.window_border;
1587 r.y = y*inst->font_height+inst->cfg.window_border;
006238cb 1588 r.width = rlen*widefactor*inst->font_width;
623f81b7 1589 r.height = inst->font_height;
1590 gdk_gc_set_clip_rectangle(gc, &r);
f34df346 1591 }
1592
d64838e1 1593 gdk_gc_set_foreground(gc, &inst->cols[nbg]);
83616aab 1594 gdk_draw_rectangle(inst->pixmap, gc, 1,
3ea863a3 1595 x*inst->font_width+inst->cfg.window_border,
1596 y*inst->font_height+inst->cfg.window_border,
006238cb 1597 rlen*widefactor*inst->font_width, inst->font_height);
6a5e84dd 1598
d64838e1 1599 gdk_gc_set_foreground(gc, &inst->cols[nfg]);
2dc6356a 1600 {
1601 GdkWChar *gwcs;
1602 gchar *gcs;
1603 wchar_t *wcs;
1604 int i;
1605
3d88e64d 1606 wcs = snewn(len+1, wchar_t);
2dc6356a 1607 for (i = 0; i < len; i++) {
1608 wcs[i] = (wchar_t) ((attr & CSET_MASK) + (text[i] & CHAR_MASK));
1609 }
1610
006238cb 1611 if (inst->fonts[fontid] == NULL) {
1612 /*
1613 * The font for this contingency does not exist.
1614 * Typically this means we've been given ATTR_WIDE
1615 * character and have no wide font. So we display
1616 * nothing at all; such is life.
1617 */
1618 } else if (inst->fontinfo[fontid].is_wide) {
aa153a7f 1619 /*
1620 * At least one version of gdk_draw_text_wc() has a
1621 * weird bug whereby it reads `len' elements of the
1622 * input string, but only draws `len/2'. Hence I'm
1623 * going to make its input array twice as long as it
1624 * theoretically needs to be, and pass in twice the
1625 * actual number of characters. If a fixed gdk actually
1626 * takes the doubled length seriously, then (a) the
1627 * array will stand scrutiny up to the full length, (b)
1628 * the spare elements of the array are full of zeroes
1629 * which will probably be an empty glyph in the font,
1630 * and (c) the clip rectangle should prevent it causing
1631 * trouble anyway.
1632 */
3d88e64d 1633 gwcs = snewn(len*2+1, GdkWChar);
aa153a7f 1634 memset(gwcs, 0, sizeof(GdkWChar) * (len*2+1));
2dc6356a 1635 /*
1636 * FIXME: when we have a wide-char equivalent of
1637 * from_unicode, use it instead of this.
1638 */
1639 for (i = 0; i <= len; i++)
1640 gwcs[i] = wcs[i];
1641 gdk_draw_text_wc(inst->pixmap, inst->fonts[fontid], gc,
3ea863a3 1642 x*inst->font_width+inst->cfg.window_border,
1643 y*inst->font_height+inst->cfg.window_border+inst->fonts[0]->ascent,
2dc6356a 1644 gwcs, len*2);
1645 sfree(gwcs);
1646 } else {
3d88e64d 1647 gcs = snewn(len+1, gchar);
facd762c 1648 wc_to_mb(inst->fontinfo[fontid].charset, 0,
21d2b241 1649 wcs, len, gcs, len, ".", NULL, NULL);
2dc6356a 1650 gdk_draw_text(inst->pixmap, inst->fonts[fontid], gc,
3ea863a3 1651 x*inst->font_width+inst->cfg.window_border,
1652 y*inst->font_height+inst->cfg.window_border+inst->fonts[0]->ascent,
2dc6356a 1653 gcs, len);
1654 sfree(gcs);
1655 }
1656 sfree(wcs);
1657 }
d64838e1 1658
5bf50ab2 1659 if (shadow) {
1660 gdk_draw_text(inst->pixmap, inst->fonts[fontid], gc,
3ea863a3 1661 x*inst->font_width+inst->cfg.window_border + inst->cfg.shadowboldoffset,
1662 y*inst->font_height+inst->cfg.window_border+inst->fonts[0]->ascent,
5bf50ab2 1663 text, len);
1664 }
1665
d64838e1 1666 if (attr & ATTR_UNDER) {
1667 int uheight = inst->fonts[0]->ascent + 1;
83616aab 1668 if (uheight >= inst->font_height)
1669 uheight = inst->font_height - 1;
3ea863a3 1670 gdk_draw_line(inst->pixmap, gc, x*inst->font_width+inst->cfg.window_border,
1671 y*inst->font_height + uheight + inst->cfg.window_border,
1672 (x+len)*widefactor*inst->font_width-1+inst->cfg.window_border,
1673 y*inst->font_height + uheight + inst->cfg.window_border);
d64838e1 1674 }
1675
f34df346 1676 if (lattr != LATTR_NORM) {
1677 /*
1678 * I can't find any plausible StretchBlt equivalent in the
1679 * X server, so I'm going to do this the slow and painful
1680 * way. This will involve repeated calls to
1681 * gdk_draw_pixmap() to stretch the text horizontally. It's
1682 * O(N^2) in time and O(N) in network bandwidth, but you
1683 * try thinking of a better way. :-(
1684 */
1685 int i;
006238cb 1686 for (i = 0; i < len * widefactor * inst->font_width; i++) {
f34df346 1687 gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
3ea863a3 1688 x*inst->font_width+inst->cfg.window_border + 2*i,
1689 y*inst->font_height+inst->cfg.window_border,
1690 x*inst->font_width+inst->cfg.window_border + 2*i+1,
1691 y*inst->font_height+inst->cfg.window_border,
f34df346 1692 len * inst->font_width - i, inst->font_height);
1693 }
1694 len *= 2;
1695 if (lattr != LATTR_WIDE) {
1696 int dt, db;
1697 /* Now stretch vertically, in the same way. */
1698 if (lattr == LATTR_BOT)
1699 dt = 0, db = 1;
1700 else
1701 dt = 1, db = 0;
1702 for (i = 0; i < inst->font_height; i+=2) {
1703 gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
3ea863a3 1704 x*inst->font_width+inst->cfg.window_border,
1705 y*inst->font_height+inst->cfg.window_border+dt*i+db,
1706 x*widefactor*inst->font_width+inst->cfg.window_border,
1707 y*inst->font_height+inst->cfg.window_border+dt*(i+1),
f34df346 1708 len * inst->font_width, inst->font_height-i-1);
1709 }
1710 }
1a675941 1711 }
1712}
1713
1714void do_text(Context ctx, int x, int y, char *text, int len,
1715 unsigned long attr, int lattr)
1716{
a8327734 1717 struct draw_ctx *dctx = (struct draw_ctx *)ctx;
1718 struct gui_data *inst = dctx->inst;
1719 GdkGC *gc = dctx->gc;
006238cb 1720 int widefactor;
1a675941 1721
1722 do_text_internal(ctx, x, y, text, len, attr, lattr);
1723
006238cb 1724 if (attr & ATTR_WIDE) {
1725 widefactor = 2;
1726 } else {
1727 widefactor = 1;
1728 }
1729
1a675941 1730 if (lattr != LATTR_NORM) {
1731 x *= 2;
5def7522 1732 if (x >= inst->term->cols)
1a675941 1733 return;
006238cb 1734 if (x + len*2*widefactor > inst->term->cols)
1735 len = (inst->term->cols-x)/2/widefactor;/* trim to LH half */
f34df346 1736 len *= 2;
1737 }
1738
d64838e1 1739 gdk_draw_pixmap(inst->area->window, gc, inst->pixmap,
3ea863a3 1740 x*inst->font_width+inst->cfg.window_border,
1741 y*inst->font_height+inst->cfg.window_border,
1742 x*inst->font_width+inst->cfg.window_border,
1743 y*inst->font_height+inst->cfg.window_border,
006238cb 1744 len*widefactor*inst->font_width, inst->font_height);
1709795f 1745}
1746
1747void do_cursor(Context ctx, int x, int y, char *text, int len,
1748 unsigned long attr, int lattr)
1749{
a8327734 1750 struct draw_ctx *dctx = (struct draw_ctx *)ctx;
1751 struct gui_data *inst = dctx->inst;
1752 GdkGC *gc = dctx->gc;
1753
006238cb 1754 int passive, widefactor;
d64838e1 1755
1709795f 1756 if (attr & TATTR_PASCURS) {
1757 attr &= ~TATTR_PASCURS;
d64838e1 1758 passive = 1;
1759 } else
1760 passive = 0;
3ea863a3 1761 if ((attr & TATTR_ACTCURS) && inst->cfg.cursor_type != 0) {
1a675941 1762 attr &= ~TATTR_ACTCURS;
1763 }
1764 do_text_internal(ctx, x, y, text, len, attr, lattr);
1765
006238cb 1766 if (attr & ATTR_WIDE) {
1767 widefactor = 2;
1768 } else {
1769 widefactor = 1;
1770 }
1771
1a675941 1772 if (lattr != LATTR_NORM) {
1773 x *= 2;
5def7522 1774 if (x >= inst->term->cols)
1a675941 1775 return;
006238cb 1776 if (x + len*2*widefactor > inst->term->cols)
1777 len = (inst->term->cols-x)/2/widefactor;/* trim to LH half */
1a675941 1778 len *= 2;
1779 }
1780
3ea863a3 1781 if (inst->cfg.cursor_type == 0) {
1a675941 1782 /*
1783 * An active block cursor will already have been done by
1784 * the above do_text call, so we only need to do anything
1785 * if it's passive.
1786 */
1787 if (passive) {
1788 gdk_gc_set_foreground(gc, &inst->cols[NCOLOURS-1]);
1789 gdk_draw_rectangle(inst->pixmap, gc, 0,
3ea863a3 1790 x*inst->font_width+inst->cfg.window_border,
1791 y*inst->font_height+inst->cfg.window_border,
1a675941 1792 len*inst->font_width-1, inst->font_height-1);
1793 }
1794 } else {
1795 int uheight;
1796 int startx, starty, dx, dy, length, i;
1797
1798 int char_width;
1799
1800 if ((attr & ATTR_WIDE) || lattr != LATTR_NORM)
1801 char_width = 2*inst->font_width;
1802 else
1803 char_width = inst->font_width;
1804
3ea863a3 1805 if (inst->cfg.cursor_type == 1) {
1a675941 1806 uheight = inst->fonts[0]->ascent + 1;
1807 if (uheight >= inst->font_height)
1808 uheight = inst->font_height - 1;
1809
3ea863a3 1810 startx = x * inst->font_width + inst->cfg.window_border;
1811 starty = y * inst->font_height + inst->cfg.window_border + uheight;
1a675941 1812 dx = 1;
1813 dy = 0;
1814 length = len * char_width;
1815 } else {
1816 int xadjust = 0;
1817 if (attr & TATTR_RIGHTCURS)
1818 xadjust = char_width - 1;
3ea863a3 1819 startx = x * inst->font_width + inst->cfg.window_border + xadjust;
1820 starty = y * inst->font_height + inst->cfg.window_border;
1a675941 1821 dx = 0;
1822 dy = 1;
1823 length = inst->font_height;
1824 }
1825
d64838e1 1826 gdk_gc_set_foreground(gc, &inst->cols[NCOLOURS-1]);
1a675941 1827 if (passive) {
1828 for (i = 0; i < length; i++) {
1829 if (i % 2 == 0) {
1830 gdk_draw_point(inst->pixmap, gc, startx, starty);
1831 }
1832 startx += dx;
1833 starty += dy;
1834 }
1835 } else {
1836 gdk_draw_line(inst->pixmap, gc, startx, starty,
1837 startx + (length-1) * dx, starty + (length-1) * dy);
1838 }
d64838e1 1839 }
1a675941 1840
1841 gdk_draw_pixmap(inst->area->window, gc, inst->pixmap,
3ea863a3 1842 x*inst->font_width+inst->cfg.window_border,
1843 y*inst->font_height+inst->cfg.window_border,
1844 x*inst->font_width+inst->cfg.window_border,
1845 y*inst->font_height+inst->cfg.window_border,
006238cb 1846 len*widefactor*inst->font_width, inst->font_height);
1709795f 1847}
1848
a8327734 1849GdkCursor *make_mouse_ptr(struct gui_data *inst, int cursor_val)
7798fa56 1850{
1851 /*
1852 * Truly hideous hack: GTK doesn't allow us to set the mouse
1853 * cursor foreground and background colours unless we've _also_
1854 * created our own cursor from bitmaps. Therefore, I need to
1855 * load the `cursor' font and draw glyphs from it on to
1856 * pixmaps, in order to construct my cursors with the fg and bg
1857 * I want. This is a gross hack, but it's more self-contained
1858 * than linking in Xlib to find the X window handle to
1859 * inst->area and calling XRecolorCursor, and it's more
1860 * futureproof than hard-coding the shapes as bitmap arrays.
1861 */
1862 static GdkFont *cursor_font = NULL;
1863 GdkPixmap *source, *mask;
1864 GdkGC *gc;
1865 GdkColor cfg = { 0, 65535, 65535, 65535 };
1866 GdkColor cbg = { 0, 0, 0, 0 };
1867 GdkColor dfg = { 1, 65535, 65535, 65535 };
1868 GdkColor dbg = { 0, 0, 0, 0 };
1869 GdkCursor *ret;
1870 gchar text[2];
1871 gint lb, rb, wid, asc, desc, w, h, x, y;
1872
57e636ca 1873 if (cursor_val == -2) {
7798fa56 1874 gdk_font_unref(cursor_font);
1875 return NULL;
1876 }
1877
57e636ca 1878 if (cursor_val >= 0 && !cursor_font)
7798fa56 1879 cursor_font = gdk_font_load("cursor");
1880
1881 /*
1882 * Get the text extent of the cursor in question. We use the
1883 * mask character for this, because it's typically slightly
1884 * bigger than the main character.
1885 */
57e636ca 1886 if (cursor_val >= 0) {
1887 text[1] = '\0';
1888 text[0] = (char)cursor_val + 1;
1889 gdk_string_extents(cursor_font, text, &lb, &rb, &wid, &asc, &desc);
1890 w = rb-lb; h = asc+desc; x = -lb; y = asc;
1891 } else {
1892 w = h = 1;
1893 x = y = 0;
1894 }
7798fa56 1895
1896 source = gdk_pixmap_new(NULL, w, h, 1);
1897 mask = gdk_pixmap_new(NULL, w, h, 1);
1898
1899 /*
1900 * Draw the mask character on the mask pixmap.
1901 */
7798fa56 1902 gc = gdk_gc_new(mask);
1903 gdk_gc_set_foreground(gc, &dbg);
1904 gdk_draw_rectangle(mask, gc, 1, 0, 0, w, h);
57e636ca 1905 if (cursor_val >= 0) {
1906 text[1] = '\0';
1907 text[0] = (char)cursor_val + 1;
1908 gdk_gc_set_foreground(gc, &dfg);
1909 gdk_draw_text(mask, cursor_font, gc, x, y, text, 1);
1910 }
7798fa56 1911 gdk_gc_unref(gc);
1912
1913 /*
1914 * Draw the main character on the source pixmap.
1915 */
7798fa56 1916 gc = gdk_gc_new(source);
1917 gdk_gc_set_foreground(gc, &dbg);
1918 gdk_draw_rectangle(source, gc, 1, 0, 0, w, h);
57e636ca 1919 if (cursor_val >= 0) {
1920 text[1] = '\0';
1921 text[0] = (char)cursor_val;
1922 gdk_gc_set_foreground(gc, &dfg);
1923 gdk_draw_text(source, cursor_font, gc, x, y, text, 1);
1924 }
7798fa56 1925 gdk_gc_unref(gc);
1926
1927 /*
1928 * Create the cursor.
1929 */
1930 ret = gdk_cursor_new_from_pixmap(source, mask, &cfg, &cbg, x, y);
1931
1932 /*
1933 * Clean up.
1934 */
1935 gdk_pixmap_unref(source);
1936 gdk_pixmap_unref(mask);
1937
1938 return ret;
1939}
1940
1709795f 1941void modalfatalbox(char *p, ...)
1942{
1943 va_list ap;
1944 fprintf(stderr, "FATAL ERROR: ");
1945 va_start(ap, p);
1946 vfprintf(stderr, p, ap);
1947 va_end(ap);
1948 fputc('\n', stderr);
1949 exit(1);
f7f27309 1950}
1951
46a3419b 1952void cmdline_error(char *p, ...)
1953{
1954 va_list ap;
1955 fprintf(stderr, "plink: ");
1956 va_start(ap, p);
1957 vfprintf(stderr, p, ap);
1958 va_end(ap);
1959 fputc('\n', stderr);
1960 exit(1);
1961}
1962
a8327734 1963char *get_x_display(void *frontend)
755a6d84 1964{
1965 return gdk_get_display();
1966}
1967
7af753e6 1968long get_windowid(void *frontend)
1969{
1970 Terminal *term = (Terminal *)frontend;
1971 struct gui_data *inst = (struct gui_data *)(term->frontend);
1972 return (long)GDK_WINDOW_XWINDOW(inst->area->window);
1973}
1974
96add444 1975static void help(FILE *fp) {
1976 if(fprintf(fp,
1977"pterm option summary:\n"
1978"\n"
1979" --display DISPLAY Specify X display to use (note '--')\n"
1980" -name PREFIX Prefix when looking up resources (default: pterm)\n"
1981" -fn FONT Normal text font\n"
1982" -fb FONT Bold text font\n"
1983" -geometry WIDTHxHEIGHT Size of terminal in characters\n"
1984" -sl LINES Number of lines of scrollback\n"
1985" -fg COLOUR, -bg COLOUR Foreground/background colour\n"
1986" -bfg COLOUR, -bbg COLOUR Foreground/background bold colour\n"
1987" -cfg COLOUR, -bfg COLOUR Foreground/background cursor colour\n"
1988" -T TITLE Window title\n"
1989" -ut, +ut Do(default) or do not update utmp\n"
1990" -ls, +ls Do(default) or do not make shell a login shell\n"
1991" -sb, +sb Do(default) or do not display a scrollbar\n"
1992" -log PATH Log all output to a file\n"
1993" -nethack Map numeric keypad to hjklyubn direction keys\n"
1994" -xrm RESOURCE-STRING Set an X resource\n"
1995" -e COMMAND [ARGS...] Execute command (consumes all remaining args)\n"
1996 ) < 0 || fflush(fp) < 0) {
1997 perror("output error");
1998 exit(1);
1999 }
2000}
2001
3ea863a3 2002int do_cmdline(int argc, char **argv, int do_everything, Config *cfg)
f7f27309 2003{
6169c758 2004 int err = 0;
faec60ed 2005 extern char **pty_argv; /* declared in pty.c */
1d009ae7 2006 extern int use_pty_argv;
f7f27309 2007
faec60ed 2008 /*
b89ee4f3 2009 * Macros to make argument handling easier. Note that because
2010 * they need to call `continue', they cannot be contained in
2011 * the usual do {...} while (0) wrapper to make them
2012 * syntactically single statements; hence it is not legal to
2013 * use one of these macros as an unbraced statement between
2014 * `if' and `else'.
faec60ed 2015 */
b89ee4f3 2016#define EXPECTS_ARG { \
faec60ed 2017 if (--argc <= 0) { \
2018 err = 1; \
2019 fprintf(stderr, "pterm: %s expects an argument\n", p); \
b89ee4f3 2020 continue; \
faec60ed 2021 } else \
2022 val = *++argv; \
b89ee4f3 2023}
2024#define SECOND_PASS_ONLY { if (!do_everything) continue; }
faec60ed 2025
8e20db05 2026 /*
2027 * TODO:
2028 *
2029 * finish -geometry
2030 */
2031
faec60ed 2032 char *val;
6169c758 2033 while (--argc > 0) {
2034 char *p = *++argv;
46a3419b 2035 int ret;
2036
2037 ret = cmdline_process_param(p, (argc > 1 ? argv[1] : NULL),
2038 do_everything ? 1 : -1, cfg);
2039
2040 if (ret == -2) {
2041 cmdline_error("option \"%s\" requires an argument", p);
2042 } else if (ret == 2) {
2043 --argc, ++argv; /* skip next argument */
2044 continue;
2045 } else if (ret == 1) {
2046 continue;
2047 }
2048
8e20db05 2049 if (!strcmp(p, "-fn") || !strcmp(p, "-font")) {
faec60ed 2050 EXPECTS_ARG;
2051 SECOND_PASS_ONLY;
9a30e26b 2052 strncpy(cfg->font.name, val, sizeof(cfg->font.name));
2053 cfg->font.name[sizeof(cfg->font.name)-1] = '\0';
faec60ed 2054
2055 } else if (!strcmp(p, "-fb")) {
2056 EXPECTS_ARG;
2057 SECOND_PASS_ONLY;
9a30e26b 2058 strncpy(cfg->boldfont.name, val, sizeof(cfg->boldfont.name));
2059 cfg->boldfont.name[sizeof(cfg->boldfont.name)-1] = '\0';
faec60ed 2060
006238cb 2061 } else if (!strcmp(p, "-fw")) {
2062 EXPECTS_ARG;
2063 SECOND_PASS_ONLY;
9a30e26b 2064 strncpy(cfg->widefont.name, val, sizeof(cfg->widefont.name));
2065 cfg->widefont.name[sizeof(cfg->widefont.name)-1] = '\0';
006238cb 2066
2067 } else if (!strcmp(p, "-fwb")) {
2068 EXPECTS_ARG;
2069 SECOND_PASS_ONLY;
9a30e26b 2070 strncpy(cfg->wideboldfont.name, val, sizeof(cfg->wideboldfont.name));
2071 cfg->wideboldfont.name[sizeof(cfg->wideboldfont.name)-1] = '\0';
006238cb 2072
2dc6356a 2073 } else if (!strcmp(p, "-cs")) {
2074 EXPECTS_ARG;
2075 SECOND_PASS_ONLY;
3ea863a3 2076 strncpy(cfg->line_codepage, val, sizeof(cfg->line_codepage));
2077 cfg->line_codepage[sizeof(cfg->line_codepage)-1] = '\0';
2dc6356a 2078
8e20db05 2079 } else if (!strcmp(p, "-geometry")) {
2080 int flags, x, y, w, h;
2081 EXPECTS_ARG;
2082 SECOND_PASS_ONLY;
2083
2084 flags = XParseGeometry(val, &x, &y, &w, &h);
2085 if (flags & WidthValue)
3ea863a3 2086 cfg->width = w;
8e20db05 2087 if (flags & HeightValue)
3ea863a3 2088 cfg->height = h;
8e20db05 2089
2090 /*
2091 * Apparently setting the initial window position is
2092 * difficult in GTK 1.2. Not entirely sure why this
2093 * should be. 2.0 has gtk_window_parse_geometry(),
2094 * which would help... For the moment, though, I can't
2095 * be bothered with this.
2096 */
2097
2098 } else if (!strcmp(p, "-sl")) {
2099 EXPECTS_ARG;
2100 SECOND_PASS_ONLY;
3ea863a3 2101 cfg->savelines = atoi(val);
8e20db05 2102
2103 } else if (!strcmp(p, "-fg") || !strcmp(p, "-bg") ||
2104 !strcmp(p, "-bfg") || !strcmp(p, "-bbg") ||
b60ca991 2105 !strcmp(p, "-cfg") || !strcmp(p, "-cbg")) {
8e20db05 2106 GdkColor col;
2107
2108 EXPECTS_ARG;
2109 SECOND_PASS_ONLY;
2110 if (!gdk_color_parse(val, &col)) {
2111 err = 1;
2112 fprintf(stderr, "pterm: unable to parse colour \"%s\"\n", val);
2113 } else {
2114 int index;
2115 index = (!strcmp(p, "-fg") ? 0 :
2116 !strcmp(p, "-bg") ? 2 :
2117 !strcmp(p, "-bfg") ? 1 :
2118 !strcmp(p, "-bbg") ? 3 :
b60ca991 2119 !strcmp(p, "-cfg") ? 4 :
8e20db05 2120 !strcmp(p, "-cbg") ? 5 : -1);
2121 assert(index != -1);
3ea863a3 2122 cfg->colours[index][0] = col.red / 256;
2123 cfg->colours[index][1] = col.green / 256;
2124 cfg->colours[index][2] = col.blue / 256;
8e20db05 2125 }
2126
1d009ae7 2127 } else if (use_pty_argv && !strcmp(p, "-e")) {
faec60ed 2128 /* This option swallows all further arguments. */
2129 if (!do_everything)
2130 break;
2131
6169c758 2132 if (--argc > 0) {
2133 int i;
3d88e64d 2134 pty_argv = snewn(argc+1, char *);
6169c758 2135 ++argv;
2136 for (i = 0; i < argc; i++)
2137 pty_argv[i] = argv[i];
2138 pty_argv[argc] = NULL;
2139 break; /* finished command-line processing */
2140 } else
2141 err = 1, fprintf(stderr, "pterm: -e expects an argument\n");
faec60ed 2142
2143 } else if (!strcmp(p, "-T")) {
2144 EXPECTS_ARG;
2145 SECOND_PASS_ONLY;
3ea863a3 2146 strncpy(cfg->wintitle, val, sizeof(cfg->wintitle));
2147 cfg->wintitle[sizeof(cfg->wintitle)-1] = '\0';
faec60ed 2148
2149 } else if (!strcmp(p, "-log")) {
2150 EXPECTS_ARG;
2151 SECOND_PASS_ONLY;
9a30e26b 2152 strncpy(cfg->logfilename.path, val, sizeof(cfg->logfilename.path));
2153 cfg->logfilename.path[sizeof(cfg->logfilename.path)-1] = '\0';
3ea863a3 2154 cfg->logtype = LGTYP_DEBUG;
faec60ed 2155
8e20db05 2156 } else if (!strcmp(p, "-ut-") || !strcmp(p, "+ut")) {
faec60ed 2157 SECOND_PASS_ONLY;
3ea863a3 2158 cfg->stamp_utmp = 0;
faec60ed 2159
8e20db05 2160 } else if (!strcmp(p, "-ut")) {
faec60ed 2161 SECOND_PASS_ONLY;
3ea863a3 2162 cfg->stamp_utmp = 1;
faec60ed 2163
8e20db05 2164 } else if (!strcmp(p, "-ls-") || !strcmp(p, "+ls")) {
faec60ed 2165 SECOND_PASS_ONLY;
3ea863a3 2166 cfg->login_shell = 0;
faec60ed 2167
8e20db05 2168 } else if (!strcmp(p, "-ls")) {
2169 SECOND_PASS_ONLY;
3ea863a3 2170 cfg->login_shell = 1;
8e20db05 2171
faec60ed 2172 } else if (!strcmp(p, "-nethack")) {
2173 SECOND_PASS_ONLY;
3ea863a3 2174 cfg->nethack_keypad = 1;
faec60ed 2175
8e20db05 2176 } else if (!strcmp(p, "-sb-") || !strcmp(p, "+sb")) {
2177 SECOND_PASS_ONLY;
3ea863a3 2178 cfg->scrollbar = 0;
8e20db05 2179
2180 } else if (!strcmp(p, "-sb")) {
faec60ed 2181 SECOND_PASS_ONLY;
3ea863a3 2182 cfg->scrollbar = 0;
faec60ed 2183
2184 } else if (!strcmp(p, "-name")) {
2185 EXPECTS_ARG;
2186 app_name = val;
0ac15bdc 2187
2188 } else if (!strcmp(p, "-xrm")) {
2189 EXPECTS_ARG;
2190 provide_xrm_string(val);
2191
96add444 2192 } else if(!strcmp(p, "-help") || !strcmp(p, "--help")) {
2193 help(stdout);
2194 exit(0);
2195
46a3419b 2196 } else if(p[0] != '-' && (!do_everything ||
2197 process_nonoption_arg(p, cfg))) {
2198 /* do nothing */
2199
edc73959 2200 } else {
2201 err = 1;
2202 fprintf(stderr, "pterm: unrecognized option '%s'\n", p);
330f49be 2203 }
6169c758 2204 }
2205
faec60ed 2206 return err;
2207}
2208
0f33f9d1 2209static void block_signal(int sig, int block_it) {
2210 sigset_t ss;
2211
2212 sigemptyset(&ss);
2213 sigaddset(&ss, sig);
2214 if(sigprocmask(block_it ? SIG_BLOCK : SIG_UNBLOCK, &ss, 0) < 0) {
2215 perror("sigprocmask");
2216 exit(1);
2217 }
2218}
2219
facd762c 2220/*
2221 * This function retrieves the character set encoding of a font. It
2222 * returns the character set without the X11 hack (in case the user
2223 * asks to use the font's own encoding).
2224 */
2225static int set_font_info(struct gui_data *inst, int fontid)
2dc6356a 2226{
2227 GdkFont *font = inst->fonts[fontid];
2228 XFontStruct *xfs = GDK_FONT_XFONT(font);
2229 Display *disp = GDK_FONT_XDISPLAY(font);
2230 Atom charset_registry, charset_encoding;
2231 unsigned long registry_ret, encoding_ret;
facd762c 2232 int retval = CS_NONE;
2233
2dc6356a 2234 charset_registry = XInternAtom(disp, "CHARSET_REGISTRY", False);
2235 charset_encoding = XInternAtom(disp, "CHARSET_ENCODING", False);
2236 inst->fontinfo[fontid].charset = CS_NONE;
2237 inst->fontinfo[fontid].is_wide = 0;
2238 if (XGetFontProperty(xfs, charset_registry, &registry_ret) &&
2239 XGetFontProperty(xfs, charset_encoding, &encoding_ret)) {
2240 char *reg, *enc;
2241 reg = XGetAtomName(disp, (Atom)registry_ret);
2242 enc = XGetAtomName(disp, (Atom)encoding_ret);
2243 if (reg && enc) {
2244 char *encoding = dupcat(reg, "-", enc, NULL);
facd762c 2245 retval = inst->fontinfo[fontid].charset =
2246 charset_from_xenc(encoding);
2dc6356a 2247 /* FIXME: when libcharset supports wide encodings fix this. */
facd762c 2248 if (!strcasecmp(encoding, "iso10646-1")) {
2dc6356a 2249 inst->fontinfo[fontid].is_wide = 1;
facd762c 2250 retval = CS_UTF8;
2251 }
2dc6356a 2252
2253 /*
2254 * Hack for X line-drawing characters: if the primary
2255 * font is encoded as ISO-8859-anything, and has valid
2256 * glyphs in the first 32 char positions, it is assumed
2257 * that those glyphs are the VT100 line-drawing
2258 * character set.
2259 *
2260 * Actually, we'll hack even harder by only checking
2261 * position 0x19 (vertical line, VT100 linedrawing
2262 * `x'). Then we can check it easily by seeing if the
2263 * ascent and descent differ.
2264 */
2265 if (inst->fontinfo[fontid].charset == CS_ISO8859_1) {
2266 int lb, rb, wid, asc, desc;
2267 gchar text[2];
2268
2269 text[1] = '\0';
2270 text[0] = '\x12';
2271 gdk_string_extents(inst->fonts[fontid], text,
2272 &lb, &rb, &wid, &asc, &desc);
2273 if (asc != desc)
2274 inst->fontinfo[fontid].charset = CS_ISO8859_1_X11;
2275 }
2276
2dc6356a 2277 sfree(encoding);
2278 }
2279 }
facd762c 2280
2281 return retval;
2dc6356a 2282}
2283
74aca06d 2284int uxsel_input_add(int fd, int rwx) {
2285 int flags = 0;
2286 if (rwx & 1) flags |= GDK_INPUT_READ;
2287 if (rwx & 2) flags |= GDK_INPUT_WRITE;
2288 if (rwx & 4) flags |= GDK_INPUT_EXCEPTION;
2289 return gdk_input_add(fd, flags, fd_input_func, NULL);
2290}
2291
2292void uxsel_input_remove(int id) {
2293 gdk_input_remove(id);
2294}
2295
1d009ae7 2296int pt_main(int argc, char **argv)
faec60ed 2297{
1d009ae7 2298 extern Backend *select_backend(Config *cfg);
2299 extern int cfgbox(Config *cfg);
a8327734 2300 struct gui_data *inst;
facd762c 2301 int font_charset;
faec60ed 2302
0f33f9d1 2303 /* defer any child exit handling until we're ready to deal with
2304 * it */
2305 block_signal(SIGCHLD, 1);
2306
faec60ed 2307 gtk_init(&argc, &argv);
2308
7428c509 2309 /*
a8327734 2310 * Create an instance structure and initialise to zeroes
7428c509 2311 */
3d88e64d 2312 inst = snew(struct gui_data);
7428c509 2313 memset(inst, 0, sizeof(*inst));
045f707b 2314 inst->alt_keycode = -1; /* this one needs _not_ to be zero */
7428c509 2315
9dc625f0 2316 if (do_cmdline(argc, argv, 0, &inst->cfg))
2317 exit(1); /* pre-defaults pass to get -class */
2318 do_defaults(NULL, &inst->cfg);
2319 if (do_cmdline(argc, argv, 1, &inst->cfg))
2320 exit(1); /* post-defaults, do everything */
2321
46a3419b 2322 cmdline_run_saved(&inst->cfg);
2323
2324 if (!*inst->cfg.host && !cfgbox(&inst->cfg))
1d009ae7 2325 exit(0); /* config box hit Cancel */
2326
9a30e26b 2327 inst->fonts[0] = gdk_font_load(inst->cfg.font.name);
8b618a06 2328 if (!inst->fonts[0]) {
9a30e26b 2329 fprintf(stderr, "pterm: unable to load font \"%s\"\n",
2330 inst->cfg.font.name);
8b618a06 2331 exit(1);
2332 }
facd762c 2333 font_charset = set_font_info(inst, 0);
9a30e26b 2334 if (inst->cfg.boldfont.name[0]) {
2335 inst->fonts[1] = gdk_font_load(inst->cfg.boldfont.name);
5bf50ab2 2336 if (!inst->fonts[1]) {
2337 fprintf(stderr, "pterm: unable to load bold font \"%s\"\n",
9a30e26b 2338 inst->cfg.boldfont.name);
5bf50ab2 2339 exit(1);
2340 }
2dc6356a 2341 set_font_info(inst, 1);
5bf50ab2 2342 } else
2343 inst->fonts[1] = NULL;
9a30e26b 2344 if (inst->cfg.widefont.name[0]) {
2345 inst->fonts[2] = gdk_font_load(inst->cfg.widefont.name);
006238cb 2346 if (!inst->fonts[2]) {
2347 fprintf(stderr, "pterm: unable to load wide font \"%s\"\n",
9a30e26b 2348 inst->cfg.widefont.name);
006238cb 2349 exit(1);
2350 }
2351 set_font_info(inst, 2);
2352 } else
2353 inst->fonts[2] = NULL;
9a30e26b 2354 if (inst->cfg.wideboldfont.name[0]) {
2355 inst->fonts[3] = gdk_font_load(inst->cfg.wideboldfont.name);
006238cb 2356 if (!inst->fonts[3]) {
2357 fprintf(stderr, "pterm: unable to load wide/bold font \"%s\"\n",
9a30e26b 2358 inst->cfg.wideboldfont.name);
006238cb 2359 exit(1);
2360 }
2361 set_font_info(inst, 3);
2362 } else
2363 inst->fonts[3] = NULL;
5bf50ab2 2364
83616aab 2365 inst->font_width = gdk_char_width(inst->fonts[0], ' ');
2366 inst->font_height = inst->fonts[0]->ascent + inst->fonts[0]->descent;
2367
dd72dfa3 2368 inst->compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE);
2dc6356a 2369 inst->utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
dd72dfa3 2370
21d2b241 2371 inst->direct_to_font = init_ucs(&inst->ucsdata,
2372 inst->cfg.line_codepage, font_charset);
1709795f 2373
12d200b1 2374 inst->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
2375
16891265 2376 /*
2377 * Set up the colour map.
2378 */
a8327734 2379 palette_reset(inst);
16891265 2380
f7f27309 2381 inst->area = gtk_drawing_area_new();
2382 gtk_drawing_area_size(GTK_DRAWING_AREA(inst->area),
3ea863a3 2383 inst->font_width * inst->cfg.width + 2*inst->cfg.window_border,
2384 inst->font_height * inst->cfg.height + 2*inst->cfg.window_border);
2385 if (inst->cfg.scrollbar) {
330f49be 2386 inst->sbar_adjust = GTK_ADJUSTMENT(gtk_adjustment_new(0,0,0,0,0,0));
2387 inst->sbar = gtk_vscrollbar_new(inst->sbar_adjust);
2388 }
6a5e84dd 2389 inst->hbox = GTK_BOX(gtk_hbox_new(FALSE, 0));
3ea863a3 2390 if (inst->cfg.scrollbar) {
2391 if (inst->cfg.scrollbar_on_left)
4dc4f9c4 2392 gtk_box_pack_start(inst->hbox, inst->sbar, FALSE, FALSE, 0);
2393 else
2394 gtk_box_pack_end(inst->hbox, inst->sbar, FALSE, FALSE, 0);
2395 }
88e6b9ca 2396 gtk_box_pack_start(inst->hbox, inst->area, TRUE, TRUE, 0);
6a5e84dd 2397
12d200b1 2398 gtk_container_add(GTK_CONTAINER(inst->window), GTK_WIDGET(inst->hbox));
f7f27309 2399
6a5e84dd 2400 {
2401 GdkGeometry geom;
3ea863a3 2402 geom.min_width = inst->font_width + 2*inst->cfg.window_border;
2403 geom.min_height = inst->font_height + 2*inst->cfg.window_border;
6a5e84dd 2404 geom.max_width = geom.max_height = -1;
3ea863a3 2405 geom.base_width = 2*inst->cfg.window_border;
2406 geom.base_height = 2*inst->cfg.window_border;
6a5e84dd 2407 geom.width_inc = inst->font_width;
2408 geom.height_inc = inst->font_height;
2409 geom.min_aspect = geom.max_aspect = 0;
12d200b1 2410 gtk_window_set_geometry_hints(GTK_WINDOW(inst->window), inst->area, &geom,
6a5e84dd 2411 GDK_HINT_MIN_SIZE | GDK_HINT_BASE_SIZE |
2412 GDK_HINT_RESIZE_INC);
6a5e84dd 2413 }
f7f27309 2414
12d200b1 2415 gtk_signal_connect(GTK_OBJECT(inst->window), "destroy",
f7f27309 2416 GTK_SIGNAL_FUNC(destroy), inst);
12d200b1 2417 gtk_signal_connect(GTK_OBJECT(inst->window), "delete_event",
f7f27309 2418 GTK_SIGNAL_FUNC(delete_window), inst);
12d200b1 2419 gtk_signal_connect(GTK_OBJECT(inst->window), "key_press_event",
f7f27309 2420 GTK_SIGNAL_FUNC(key_event), inst);
c33c3d76 2421 gtk_signal_connect(GTK_OBJECT(inst->window), "key_release_event",
2422 GTK_SIGNAL_FUNC(key_event), inst);
12d200b1 2423 gtk_signal_connect(GTK_OBJECT(inst->window), "focus_in_event",
f7f27309 2424 GTK_SIGNAL_FUNC(focus_event), inst);
12d200b1 2425 gtk_signal_connect(GTK_OBJECT(inst->window), "focus_out_event",
f7f27309 2426 GTK_SIGNAL_FUNC(focus_event), inst);
2427 gtk_signal_connect(GTK_OBJECT(inst->area), "configure_event",
2428 GTK_SIGNAL_FUNC(configure_area), inst);
2429 gtk_signal_connect(GTK_OBJECT(inst->area), "expose_event",
2430 GTK_SIGNAL_FUNC(expose_area), inst);
e6346999 2431 gtk_signal_connect(GTK_OBJECT(inst->area), "button_press_event",
2432 GTK_SIGNAL_FUNC(button_event), inst);
2433 gtk_signal_connect(GTK_OBJECT(inst->area), "button_release_event",
2434 GTK_SIGNAL_FUNC(button_event), inst);
2435 gtk_signal_connect(GTK_OBJECT(inst->area), "motion_notify_event",
2436 GTK_SIGNAL_FUNC(motion_event), inst);
2437 gtk_signal_connect(GTK_OBJECT(inst->area), "selection_received",
2438 GTK_SIGNAL_FUNC(selection_received), inst);
2439 gtk_signal_connect(GTK_OBJECT(inst->area), "selection_get",
2440 GTK_SIGNAL_FUNC(selection_get), inst);
2441 gtk_signal_connect(GTK_OBJECT(inst->area), "selection_clear_event",
2442 GTK_SIGNAL_FUNC(selection_clear), inst);
3ea863a3 2443 if (inst->cfg.scrollbar)
330f49be 2444 gtk_signal_connect(GTK_OBJECT(inst->sbar_adjust), "value_changed",
2445 GTK_SIGNAL_FUNC(scrollbar_moved), inst);
f7f27309 2446 gtk_timeout_add(20, timer_func, inst);
2447 gtk_widget_add_events(GTK_WIDGET(inst->area),
e6346999 2448 GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK |
2449 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
57e636ca 2450 GDK_POINTER_MOTION_MASK | GDK_BUTTON_MOTION_MASK);
f7f27309 2451
2452 gtk_widget_show(inst->area);
3ea863a3 2453 if (inst->cfg.scrollbar)
330f49be 2454 gtk_widget_show(inst->sbar);
6a5e84dd 2455 gtk_widget_show(GTK_WIDGET(inst->hbox));
12d200b1 2456 gtk_widget_show(inst->window);
f7f27309 2457
a8327734 2458 set_window_background(inst);
7428c509 2459
a8327734 2460 inst->textcursor = make_mouse_ptr(inst, GDK_XTERM);
2461 inst->rawcursor = make_mouse_ptr(inst, GDK_LEFT_PTR);
2462 inst->blankcursor = make_mouse_ptr(inst, -1);
2463 make_mouse_ptr(inst, -2); /* clean up cursor font */
57e636ca 2464 inst->currcursor = inst->textcursor;
a8327734 2465 show_mouseptr(inst, 1);
d64838e1 2466
21d2b241 2467 inst->term = term_init(&inst->cfg, &inst->ucsdata, inst);
3ea863a3 2468 inst->logctx = log_init(inst, &inst->cfg);
a8327734 2469 term_provide_logctx(inst->term, inst->logctx);
887035a5 2470
74aca06d 2471 uxsel_init();
2472
3f935d5b 2473 term_size(inst->term, inst->cfg.height, inst->cfg.width, inst->cfg.savelines);
2474
1d009ae7 2475 inst->back = select_backend(&inst->cfg);
2476 {
3f935d5b 2477 char *realhost, *error;
2478
2479 error = inst->back->init((void *)inst->term, &inst->backhandle,
2480 &inst->cfg, inst->cfg.host, inst->cfg.port,
2481 &realhost, inst->cfg.tcp_nodelay);
2482
2483 if (error) {
2484 char *msg = dupprintf("Unable to open connection to %s:\n%s",
2485 inst->cfg.host, error);
2486 inst->exited = TRUE;
2487 fatal_message_box(inst->window, msg);
2488 sfree(msg);
2489 return 0;
2490 }
10705014 2491
2492 if (inst->cfg.wintitle[0])
2493 set_title(inst, inst->cfg.wintitle);
2494 else {
2495 char *title = make_default_wintitle(realhost);
2496 set_title(inst, title);
2497 sfree(title);
2498 }
1d009ae7 2499 }
a8327734 2500 inst->back->provide_logctx(inst->backhandle, inst->logctx);
755a6d84 2501
5def7522 2502 term_provide_resize_fn(inst->term, inst->back->size, inst->backhandle);
78843a7c 2503
fe5634f6 2504 inst->ldisc =
3ea863a3 2505 ldisc_create(&inst->cfg, inst->term, inst->back, inst->backhandle, inst);
b9d7bcad 2506 ldisc_send(inst->ldisc, NULL, 0, 0);/* cause ldisc to notice changes */
755a6d84 2507
0f33f9d1 2508 /* now we're reday to deal with the child exit handler being
2509 * called */
2510 block_signal(SIGCHLD, 0);
74aca06d 2511
2512 inst->exited = FALSE;
2513
f7f27309 2514 gtk_main();
2515
2516 return 0;
2517}