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