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