Remove some rogue diagnostics.
[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
6#include <string.h>
d64838e1 7#include <assert.h>
f7f27309 8#include <stdlib.h>
1709795f 9#include <stdio.h>
f7f27309 10#include <time.h>
054d8535 11#include <errno.h>
12#include <fcntl.h>
13#include <unistd.h>
f7f27309 14#include <gtk/gtk.h>
a57cd64b 15#include <gdk/gdkkeysyms.h>
f7f27309 16
1709795f 17#define PUTTY_DO_GLOBALS /* actually _define_ globals */
18#include "putty.h"
19
f7f27309 20#define CAT2(x,y) x ## y
21#define CAT(x,y) CAT2(x,y)
22#define ASSERT(x) enum {CAT(assertion_,__LINE__) = 1 / (x)}
23
d64838e1 24#define NCOLOURS (lenof(((Config *)0)->colours))
25
26struct gui_data {
12d200b1 27 GtkWidget *window, *area, *sbar;
6a5e84dd 28 GtkBox *hbox;
29 GtkAdjustment *sbar_adjust;
d64838e1 30 GdkPixmap *pixmap;
31 GdkFont *fonts[2]; /* normal and bold (for now!) */
57e636ca 32 GdkCursor *rawcursor, *textcursor, *blankcursor, *currcursor;
d64838e1 33 GdkColor cols[NCOLOURS];
34 GdkColormap *colmap;
e6346999 35 wchar_t *pastein_data;
36 int pastein_data_len;
37 char *pasteout_data;
38 int pasteout_data_len;
83616aab 39 int font_width, font_height;
88e6b9ca 40 int ignore_sbar;
b3530065 41 int mouseptr_visible;
0f660c8f 42 guint term_paste_idle_id;
dd72dfa3 43 GdkAtom compound_text_atom;
12d200b1 44 char wintitle[sizeof(((Config *)0)->wintitle)];
16891265 45 char icontitle[sizeof(((Config *)0)->wintitle)];
d64838e1 46};
47
48static struct gui_data the_inst;
49static struct gui_data *inst = &the_inst; /* so we always write `inst->' */
50static int send_raw_mouse;
51
1709795f 52void ldisc_update(int echo, int edit)
53{
54 /*
55 * This is a stub in pterm. If I ever produce a Unix
56 * command-line ssh/telnet/rlogin client (i.e. a port of plink)
57 * then it will require some termios manoeuvring analogous to
58 * that in the Windows plink.c, but here it's meaningless.
59 */
60}
61
62int askappend(char *filename)
63{
64 /*
4c0901ed 65 * Logging in an xterm-alike is liable to be something you only
66 * do at serious diagnostic need. Hence, I'm going to take the
67 * easy option for now and assume we always want to overwrite
68 * log files. I can always make it properly configurable later.
1709795f 69 */
70 return 2;
71}
72
73void logevent(char *string)
74{
75 /*
57e636ca 76 * This is not a very helpful function: events are logged
77 * pretty much exclusively by the back end, and our pty back
78 * end is self-contained. So we need do nothing.
1709795f 79 */
80}
81
e9aef757 82int font_dimension(int which) /* 0 for width, 1 for height */
83{
84 if (which)
85 return inst->font_height;
86 else
87 return inst->font_width;
88}
89
1709795f 90/*
91 * Translate a raw mouse button designation (LEFT, MIDDLE, RIGHT)
92 * into a cooked one (SELECT, EXTEND, PASTE).
93 *
94 * In Unix, this is not configurable; the X button arrangement is
95 * rock-solid across all applications, everyone has a three-button
96 * mouse or a means of faking it, and there is no need to switch
97 * buttons around at all.
98 */
99Mouse_Button translate_button(Mouse_Button button)
100{
101 if (button == MBT_LEFT)
102 return MBT_SELECT;
103 if (button == MBT_MIDDLE)
104 return MBT_PASTE;
105 if (button == MBT_RIGHT)
106 return MBT_EXTEND;
107 return 0; /* shouldn't happen */
108}
109
110/*
111 * Minimise or restore the window in response to a server-side
112 * request.
113 */
114void set_iconic(int iconic)
115{
16891265 116 /*
117 * GTK 1.2 doesn't know how to do this.
118 */
119#if GTK_CHECK_VERSION(2,0,0)
120 if (iconic)
121 gtk_window_iconify(GTK_WINDOW(inst->window));
122 else
123 gtk_window_deiconify(GTK_WINDOW(inst->window));
124#endif
1709795f 125}
126
127/*
128 * Move the window in response to a server-side request.
129 */
130void move_window(int x, int y)
131{
16891265 132 /*
133 * I assume that when the GTK version of this call is available
134 * we should use it. Not sure how it differs from the GDK one,
135 * though.
136 */
137#if GTK_CHECK_VERSION(2,0,0)
138 gtk_window_move(GTK_WINDOW(inst->window), x, y);
139#else
140 gdk_window_move(inst->window->window, x, y);
141#endif
1709795f 142}
143
144/*
145 * Move the window to the top or bottom of the z-order in response
146 * to a server-side request.
147 */
148void set_zorder(int top)
149{
16891265 150 if (top)
151 gdk_window_raise(inst->window->window);
152 else
153 gdk_window_lower(inst->window->window);
1709795f 154}
155
156/*
157 * Refresh the window in response to a server-side request.
158 */
159void refresh_window(void)
160{
16891265 161 term_invalidate();
1709795f 162}
163
164/*
165 * Maximise or restore the window in response to a server-side
166 * request.
167 */
168void set_zoomed(int zoomed)
169{
16891265 170 /*
171 * GTK 1.2 doesn't know how to do this.
172 */
173#if GTK_CHECK_VERSION(2,0,0)
174 if (iconic)
175 gtk_window_maximize(GTK_WINDOW(inst->window));
176 else
177 gtk_window_unmaximize(GTK_WINDOW(inst->window));
178#endif
1709795f 179}
180
181/*
182 * Report whether the window is iconic, for terminal reports.
183 */
184int is_iconic(void)
185{
16891265 186 return !gdk_window_is_viewable(inst->window->window);
1709795f 187}
188
189/*
190 * Report the window's position, for terminal reports.
191 */
192void get_window_pos(int *x, int *y)
193{
16891265 194 /*
195 * I assume that when the GTK version of this call is available
196 * we should use it. Not sure how it differs from the GDK one,
197 * though.
198 */
199#if GTK_CHECK_VERSION(2,0,0)
200 gtk_window_get_position(GTK_WINDOW(inst->window), x, y);
201#else
202 gdk_window_get_position(inst->window->window, x, y);
203#endif
1709795f 204}
205
206/*
207 * Report the window's pixel size, for terminal reports.
208 */
209void get_window_pixels(int *x, int *y)
210{
16891265 211 /*
212 * I assume that when the GTK version of this call is available
213 * we should use it. Not sure how it differs from the GDK one,
214 * though.
215 */
216#if GTK_CHECK_VERSION(2,0,0)
217 gtk_window_get_size(GTK_WINDOW(inst->window), x, y);
218#else
219 gdk_window_get_size(inst->window->window, x, y);
220#endif
1709795f 221}
222
223/*
224 * Return the window or icon title.
225 */
226char *get_window_title(int icon)
227{
16891265 228 return icon ? inst->wintitle : inst->icontitle;
1709795f 229}
f7f27309 230
f7f27309 231gint delete_window(GtkWidget *widget, GdkEvent *event, gpointer data)
232{
233 /*
57e636ca 234 * We could implement warn-on-close here if we really wanted
235 * to.
f7f27309 236 */
237 return FALSE;
238}
239
57e636ca 240void show_mouseptr(int show)
241{
242 if (!cfg.hide_mouseptr)
243 show = 1;
244 if (show)
245 gdk_window_set_cursor(inst->area->window, inst->currcursor);
246 else
247 gdk_window_set_cursor(inst->area->window, inst->blankcursor);
b3530065 248 inst->mouseptr_visible = show;
57e636ca 249}
250
f7f27309 251gint configure_area(GtkWidget *widget, GdkEventConfigure *event, gpointer data)
252{
253 struct gui_data *inst = (struct gui_data *)data;
88e6b9ca 254 int w, h, need_size = 0;
f7f27309 255
88e6b9ca 256 w = (event->width - 2*cfg.window_border) / inst->font_width;
257 h = (event->height - 2*cfg.window_border) / inst->font_height;
d64838e1 258
88e6b9ca 259 if (w != cfg.width || h != cfg.height) {
260 if (inst->pixmap) {
261 gdk_pixmap_unref(inst->pixmap);
262 inst->pixmap = NULL;
263 }
264 cfg.width = w;
265 cfg.height = h;
266 need_size = 1;
267 }
268 if (!inst->pixmap) {
6a5e84dd 269 GdkGC *gc;
88e6b9ca 270
271 inst->pixmap = gdk_pixmap_new(widget->window,
272 (cfg.width * inst->font_width +
273 2*cfg.window_border),
274 (cfg.height * inst->font_height +
275 2*cfg.window_border), -1);
276
6a5e84dd 277 gc = gdk_gc_new(inst->area->window);
278 gdk_gc_set_foreground(gc, &inst->cols[18]); /* default background */
279 gdk_draw_rectangle(inst->pixmap, gc, 1, 0, 0,
280 cfg.width * inst->font_width + 2*cfg.window_border,
281 cfg.height * inst->font_height + 2*cfg.window_border);
282 gdk_gc_unref(gc);
283 }
f7f27309 284
88e6b9ca 285 if (need_size) {
286 term_size(h, w, cfg.savelines);
287 }
288
f7f27309 289 return TRUE;
290}
291
292gint expose_area(GtkWidget *widget, GdkEventExpose *event, gpointer data)
293{
1709795f 294 /* struct gui_data *inst = (struct gui_data *)data; */
f7f27309 295
296 /*
1709795f 297 * Pass the exposed rectangle to terminal.c, which will call us
298 * back to do the actual painting.
f7f27309 299 */
6a5e84dd 300 if (inst->pixmap) {
301 gdk_draw_pixmap(widget->window,
302 widget->style->fg_gc[GTK_WIDGET_STATE(widget)],
303 inst->pixmap,
304 event->area.x, event->area.y,
305 event->area.x, event->area.y,
306 event->area.width, event->area.height);
307 }
1709795f 308 return TRUE;
f7f27309 309}
310
311#define KEY_PRESSED(k) \
312 (inst->keystate[(k) / 32] & (1 << ((k) % 32)))
313
314gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data)
315{
1709795f 316 /* struct gui_data *inst = (struct gui_data *)data; */
a57cd64b 317 char output[32];
318 int start, end;
f7f27309 319
1709795f 320 if (event->type == GDK_KEY_PRESS) {
a57cd64b 321#ifdef KEY_DEBUGGING
322 {
323 int i;
324 printf("keypress: keyval = %04x, state = %08x; string =",
325 event->keyval, event->state);
326 for (i = 0; event->string[i]; i++)
327 printf(" %02x", (unsigned char) event->string[i]);
328 printf("\n");
329 }
330#endif
331
332 /*
333 * NYI:
a57cd64b 334 * - alt+numpad
335 * - Compose key (!!! requires Unicode faff before even trying)
a57cd64b 336 */
337
6a5e84dd 338 /*
339 * Shift-PgUp and Shift-PgDn don't even generate keystrokes
340 * at all.
341 */
342 if (event->keyval == GDK_Page_Up && (event->state & GDK_SHIFT_MASK)) {
343 term_scroll(0, -cfg.height/2);
344 return TRUE;
345 }
346 if (event->keyval == GDK_Page_Down && (event->state & GDK_SHIFT_MASK)) {
347 term_scroll(0, +cfg.height/2);
348 return TRUE;
349 }
350
2a2c1973 351 /*
352 * Neither does Shift-Ins.
353 */
354 if (event->keyval == GDK_Insert && (event->state & GDK_SHIFT_MASK)) {
355 request_paste();
356 return TRUE;
357 }
358
a57cd64b 359 /* ALT+things gives leading Escape. */
360 output[0] = '\033';
361 strncpy(output+1, event->string, 31);
362 output[31] = '\0';
363 end = strlen(output);
364 if (event->state & GDK_MOD1_MASK)
365 start = 0;
366 else
367 start = 1;
368
369 /* Control-` is the same as Control-\ (unless gtk has a better idea) */
370 if (!event->string[0] && event->keyval == '`' &&
371 (event->state & GDK_CONTROL_MASK)) {
372 output[1] = '\x1C';
373 end = 2;
374 }
375
376 /* Control-Break is the same as Control-C */
377 if (event->keyval == GDK_Break &&
378 (event->state & GDK_CONTROL_MASK)) {
379 output[1] = '\003';
380 end = 2;
381 }
382
383 /* Control-2, Control-Space and Control-@ are NUL */
384 if (!event->string[0] &&
385 (event->keyval == ' ' || event->keyval == '2' ||
386 event->keyval == '@') &&
387 (event->state & (GDK_SHIFT_MASK |
388 GDK_CONTROL_MASK)) == GDK_CONTROL_MASK) {
389 output[1] = '\0';
390 end = 2;
391 }
392
393 /* Control-Shift-Space is 160 (ISO8859 nonbreaking space) */
394 if (!event->string[0] && event->keyval == ' ' &&
395 (event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) ==
396 (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) {
397 output[1] = '\240';
398 end = 2;
399 }
400
401 /* We don't let GTK tell us what Backspace is! We know better. */
402 if (event->keyval == GDK_BackSpace &&
403 !(event->state & GDK_SHIFT_MASK)) {
404 output[1] = cfg.bksp_is_delete ? '\x7F' : '\x08';
405 end = 2;
406 }
407
408 /* Shift-Tab is ESC [ Z */
409 if (event->keyval == GDK_ISO_Left_Tab ||
410 (event->keyval == GDK_Tab && (event->state & GDK_SHIFT_MASK))) {
411 end = 1 + sprintf(output+1, "\033[Z");
412 }
413
414 /*
8b1fcd56 415 * NetHack keypad mode.
416 */
417 if (cfg.nethack_keypad) {
418 char *keys = NULL;
419 switch (event->keyval) {
420 case GDK_KP_1: case GDK_KP_End: keys = "bB"; break;
421 case GDK_KP_2: case GDK_KP_Down: keys = "jJ"; break;
422 case GDK_KP_3: case GDK_KP_Page_Down: keys = "nN"; break;
423 case GDK_KP_4: case GDK_KP_Left: keys = "hH"; break;
424 case GDK_KP_5: case GDK_KP_Begin: keys = ".."; break;
425 case GDK_KP_6: case GDK_KP_Right: keys = "lL"; break;
426 case GDK_KP_7: case GDK_KP_Home: keys = "yY"; break;
427 case GDK_KP_8: case GDK_KP_Up: keys = "kK"; break;
428 case GDK_KP_9: case GDK_KP_Page_Up: keys = "uU"; break;
429 }
430 if (keys) {
431 end = 2;
432 if (event->state & GDK_SHIFT_MASK)
433 output[1] = keys[1];
434 else
435 output[1] = keys[0];
436 goto done;
437 }
438 }
439
440 /*
a57cd64b 441 * Application keypad mode.
442 */
443 if (app_keypad_keys && !cfg.no_applic_k) {
444 int xkey = 0;
445 switch (event->keyval) {
446 case GDK_Num_Lock: xkey = 'P'; break;
447 case GDK_KP_Divide: xkey = 'Q'; break;
448 case GDK_KP_Multiply: xkey = 'R'; break;
449 case GDK_KP_Subtract: xkey = 'S'; break;
450 /*
451 * Keypad + is tricky. It covers a space that would
452 * be taken up on the VT100 by _two_ keys; so we
453 * let Shift select between the two. Worse still,
454 * in xterm function key mode we change which two...
455 */
456 case GDK_KP_Add:
457 if (cfg.funky_type == 2) {
458 if (event->state & GDK_SHIFT_MASK)
459 xkey = 'l';
460 else
461 xkey = 'k';
462 } else if (event->state & GDK_SHIFT_MASK)
463 xkey = 'm';
464 else
465 xkey = 'l';
466 break;
467 case GDK_KP_Enter: xkey = 'M'; break;
468 case GDK_KP_0: case GDK_KP_Insert: xkey = 'p'; break;
469 case GDK_KP_1: case GDK_KP_End: xkey = 'q'; break;
470 case GDK_KP_2: case GDK_KP_Down: xkey = 'r'; break;
471 case GDK_KP_3: case GDK_KP_Page_Down: xkey = 's'; break;
472 case GDK_KP_4: case GDK_KP_Left: xkey = 't'; break;
473 case GDK_KP_5: case GDK_KP_Begin: xkey = 'u'; break;
474 case GDK_KP_6: case GDK_KP_Right: xkey = 'v'; break;
475 case GDK_KP_7: case GDK_KP_Home: xkey = 'w'; break;
476 case GDK_KP_8: case GDK_KP_Up: xkey = 'x'; break;
477 case GDK_KP_9: case GDK_KP_Page_Up: xkey = 'y'; break;
478 case GDK_KP_Decimal: case GDK_KP_Delete: xkey = 'n'; break;
479 }
480 if (xkey) {
481 if (vt52_mode) {
482 if (xkey >= 'P' && xkey <= 'S')
483 end = 1 + sprintf(output+1, "\033%c", xkey);
484 else
485 end = 1 + sprintf(output+1, "\033?%c", xkey);
486 } else
487 end = 1 + sprintf(output+1, "\033O%c", xkey);
488 goto done;
489 }
490 }
491
492 /*
493 * Next, all the keys that do tilde codes. (ESC '[' nn '~',
494 * for integer decimal nn.)
495 *
496 * We also deal with the weird ones here. Linux VCs replace F1
497 * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
498 * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
499 * respectively.
500 */
501 {
502 int code = 0;
503 switch (event->keyval) {
504 case GDK_F1:
505 code = (event->state & GDK_SHIFT_MASK ? 23 : 11);
506 break;
507 case GDK_F2:
508 code = (event->state & GDK_SHIFT_MASK ? 24 : 12);
509 break;
510 case GDK_F3:
511 code = (event->state & GDK_SHIFT_MASK ? 25 : 13);
512 break;
513 case GDK_F4:
514 code = (event->state & GDK_SHIFT_MASK ? 26 : 14);
515 break;
516 case GDK_F5:
517 code = (event->state & GDK_SHIFT_MASK ? 28 : 15);
518 break;
519 case GDK_F6:
520 code = (event->state & GDK_SHIFT_MASK ? 29 : 17);
521 break;
522 case GDK_F7:
523 code = (event->state & GDK_SHIFT_MASK ? 31 : 18);
524 break;
525 case GDK_F8:
526 code = (event->state & GDK_SHIFT_MASK ? 32 : 19);
527 break;
528 case GDK_F9:
529 code = (event->state & GDK_SHIFT_MASK ? 33 : 20);
530 break;
531 case GDK_F10:
532 code = (event->state & GDK_SHIFT_MASK ? 34 : 21);
533 break;
534 case GDK_F11:
535 code = 23;
536 break;
537 case GDK_F12:
538 code = 24;
539 break;
540 case GDK_F13:
541 code = 25;
542 break;
543 case GDK_F14:
544 code = 26;
545 break;
546 case GDK_F15:
547 code = 28;
548 break;
549 case GDK_F16:
550 code = 29;
551 break;
552 case GDK_F17:
553 code = 31;
554 break;
555 case GDK_F18:
556 code = 32;
557 break;
558 case GDK_F19:
559 code = 33;
560 break;
561 case GDK_F20:
562 code = 34;
563 break;
564 }
565 if (!(event->state & GDK_CONTROL_MASK)) switch (event->keyval) {
566 case GDK_Home: case GDK_KP_Home:
567 code = 1;
568 break;
569 case GDK_Insert: case GDK_KP_Insert:
570 code = 2;
571 break;
572 case GDK_Delete: case GDK_KP_Delete:
573 code = 3;
574 break;
575 case GDK_End: case GDK_KP_End:
576 code = 4;
577 break;
578 case GDK_Page_Up: case GDK_KP_Page_Up:
579 code = 5;
580 break;
581 case GDK_Page_Down: case GDK_KP_Page_Down:
582 code = 6;
583 break;
584 }
585 /* Reorder edit keys to physical order */
586 if (cfg.funky_type == 3 && code <= 6)
587 code = "\0\2\1\4\5\3\6"[code];
588
589 if (vt52_mode && code > 0 && code <= 6) {
590 end = 1 + sprintf(output+1, "\x1B%c", " HLMEIG"[code]);
591 goto done;
592 }
593
594 if (cfg.funky_type == 5 && /* SCO function keys */
595 code >= 11 && code <= 34) {
596 char codes[] = "MNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@[\\]^_`{";
597 int index = 0;
598 switch (event->keyval) {
599 case GDK_F1: index = 0; break;
600 case GDK_F2: index = 1; break;
601 case GDK_F3: index = 2; break;
602 case GDK_F4: index = 3; break;
603 case GDK_F5: index = 4; break;
604 case GDK_F6: index = 5; break;
605 case GDK_F7: index = 6; break;
606 case GDK_F8: index = 7; break;
607 case GDK_F9: index = 8; break;
608 case GDK_F10: index = 9; break;
609 case GDK_F11: index = 10; break;
610 case GDK_F12: index = 11; break;
611 }
612 if (event->state & GDK_SHIFT_MASK) index += 12;
613 if (event->state & GDK_CONTROL_MASK) index += 24;
614 end = 1 + sprintf(output+1, "\x1B[%c", codes[index]);
615 goto done;
616 }
617 if (cfg.funky_type == 5 && /* SCO small keypad */
618 code >= 1 && code <= 6) {
619 char codes[] = "HL.FIG";
620 if (code == 3) {
621 output[1] = '\x7F';
622 end = 2;
623 } else {
624 end = 1 + sprintf(output+1, "\x1B[%c", codes[code-1]);
625 }
626 goto done;
627 }
628 if ((vt52_mode || cfg.funky_type == 4) && code >= 11 && code <= 24) {
629 int offt = 0;
630 if (code > 15)
631 offt++;
632 if (code > 21)
633 offt++;
634 if (vt52_mode)
635 end = 1 + sprintf(output+1,
636 "\x1B%c", code + 'P' - 11 - offt);
637 else
638 end = 1 + sprintf(output+1,
639 "\x1BO%c", code + 'P' - 11 - offt);
640 goto done;
641 }
642 if (cfg.funky_type == 1 && code >= 11 && code <= 15) {
643 end = 1 + sprintf(output+1, "\x1B[[%c", code + 'A' - 11);
644 goto done;
645 }
646 if (cfg.funky_type == 2 && code >= 11 && code <= 14) {
647 if (vt52_mode)
648 end = 1 + sprintf(output+1, "\x1B%c", code + 'P' - 11);
649 else
650 end = 1 + sprintf(output+1, "\x1BO%c", code + 'P' - 11);
651 goto done;
652 }
653 if (cfg.rxvt_homeend && (code == 1 || code == 4)) {
654 end = 1 + sprintf(output+1, code == 1 ? "\x1B[H" : "\x1BOw");
655 goto done;
656 }
657 if (code) {
658 end = 1 + sprintf(output+1, "\x1B[%d~", code);
659 goto done;
660 }
661 }
662
663 /*
664 * Cursor keys. (This includes the numberpad cursor keys,
665 * if we haven't already done them due to app keypad mode.)
666 *
667 * Here we also process un-numlocked un-appkeypadded KP5,
668 * which sends ESC [ G.
669 */
670 {
671 int xkey = 0;
672 switch (event->keyval) {
673 case GDK_Up: case GDK_KP_Up: xkey = 'A'; break;
674 case GDK_Down: case GDK_KP_Down: xkey = 'B'; break;
675 case GDK_Right: case GDK_KP_Right: xkey = 'C'; break;
676 case GDK_Left: case GDK_KP_Left: xkey = 'D'; break;
677 case GDK_Begin: case GDK_KP_Begin: xkey = 'G'; break;
678 }
679 if (xkey) {
680 /*
681 * The arrow keys normally do ESC [ A and so on. In
682 * app cursor keys mode they do ESC O A instead.
683 * Ctrl toggles the two modes.
684 */
685 if (vt52_mode) {
686 end = 1 + sprintf(output+1, "\033%c", xkey);
687 } else if (!app_cursor_keys ^
688 !(event->state & GDK_CONTROL_MASK)) {
689 end = 1 + sprintf(output+1, "\033O%c", xkey);
690 } else {
691 end = 1 + sprintf(output+1, "\033[%c", xkey);
692 }
693 goto done;
694 }
695 }
696
697 done:
698
699#ifdef KEY_DEBUGGING
700 {
701 int i;
702 printf("generating sequence:");
703 for (i = start; i < end; i++)
704 printf(" %02x", (unsigned char) output[i]);
705 printf("\n");
706 }
707#endif
57e636ca 708 if (end-start > 0) {
709 ldisc_send(output+start, end-start, 1);
710 show_mouseptr(0);
711 term_out();
712 }
1709795f 713 }
714
715 return TRUE;
f7f27309 716}
717
e6346999 718gint button_event(GtkWidget *widget, GdkEventButton *event, gpointer data)
719{
720 struct gui_data *inst = (struct gui_data *)data;
721 int shift, ctrl, alt, x, y, button, act;
722
57e636ca 723 show_mouseptr(1);
724
e6346999 725 shift = event->state & GDK_SHIFT_MASK;
726 ctrl = event->state & GDK_CONTROL_MASK;
727 alt = event->state & GDK_MOD1_MASK;
728 if (event->button == 1)
729 button = MBT_LEFT;
730 else if (event->button == 2)
731 button = MBT_MIDDLE;
732 else if (event->button == 3)
733 button = MBT_RIGHT;
734 else
735 return FALSE; /* don't even know what button! */
736
737 switch (event->type) {
738 case GDK_BUTTON_PRESS: act = MA_CLICK; break;
739 case GDK_BUTTON_RELEASE: act = MA_RELEASE; break;
740 case GDK_2BUTTON_PRESS: act = MA_2CLK; break;
741 case GDK_3BUTTON_PRESS: act = MA_3CLK; break;
742 default: return FALSE; /* don't know this event type */
743 }
744
745 if (send_raw_mouse && !(cfg.mouse_override && shift) &&
746 act != MA_CLICK && act != MA_RELEASE)
747 return TRUE; /* we ignore these in raw mouse mode */
748
749 x = (event->x - cfg.window_border) / inst->font_width;
750 y = (event->y - cfg.window_border) / inst->font_height;
751
752 term_mouse(button, act, x, y, shift, ctrl, alt);
753
754 return TRUE;
755}
756
757gint motion_event(GtkWidget *widget, GdkEventMotion *event, gpointer data)
758{
759 struct gui_data *inst = (struct gui_data *)data;
760 int shift, ctrl, alt, x, y, button;
761
57e636ca 762 show_mouseptr(1);
763
e6346999 764 shift = event->state & GDK_SHIFT_MASK;
765 ctrl = event->state & GDK_CONTROL_MASK;
766 alt = event->state & GDK_MOD1_MASK;
767 if (event->state & GDK_BUTTON1_MASK)
768 button = MBT_LEFT;
769 else if (event->state & GDK_BUTTON2_MASK)
770 button = MBT_MIDDLE;
771 else if (event->state & GDK_BUTTON3_MASK)
772 button = MBT_RIGHT;
773 else
774 return FALSE; /* don't even know what button! */
775
776 x = (event->x - cfg.window_border) / inst->font_width;
777 y = (event->y - cfg.window_border) / inst->font_height;
778
779 term_mouse(button, MA_DRAG, x, y, shift, ctrl, alt);
780
781 return TRUE;
782}
783
f7f27309 784gint timer_func(gpointer data)
785{
1709795f 786 /* struct gui_data *inst = (struct gui_data *)data; */
a0e16eb1 787 extern int pty_child_is_dead(); /* declared in pty.c */
788
789 if (pty_child_is_dead()) {
790 /*
791 * The primary child process died. We could keep the
792 * terminal open for remaining subprocesses to output to,
793 * but conventional wisdom seems to feel that that's the
794 * Wrong Thing for an xterm-alike, so we bail out now. This
795 * would be easy enough to change or make configurable if
796 * necessary.
797 */
798 exit(0);
799 }
f7f27309 800
1709795f 801 term_update();
f7f27309 802 return TRUE;
803}
804
054d8535 805void pty_input_func(gpointer data, gint sourcefd, GdkInputCondition condition)
806{
807 /* struct gui_data *inst = (struct gui_data *)data; */
808 char buf[4096];
809 int ret;
810
811 ret = read(sourcefd, buf, sizeof(buf));
812
813 /*
814 * Clean termination condition is that either ret == 0, or ret
815 * < 0 and errno == EIO. Not sure why the latter, but it seems
816 * to happen. Boo.
817 */
818 if (ret == 0 || (ret < 0 && errno == EIO)) {
819 exit(0);
820 }
821
822 if (ret < 0) {
823 perror("read pty master");
824 exit(1);
825 }
826 if (ret > 0)
827 from_backend(0, buf, ret);
828 term_out();
829}
830
f7f27309 831void destroy(GtkWidget *widget, gpointer data)
832{
833 gtk_main_quit();
834}
835
836gint focus_event(GtkWidget *widget, GdkEventFocus *event, gpointer data)
837{
d64838e1 838 has_focus = event->in;
839 term_out();
840 term_update();
57e636ca 841 show_mouseptr(1);
1709795f 842 return FALSE;
843}
844
845/*
846 * set or clear the "raw mouse message" mode
847 */
848void set_raw_mouse_mode(int activate)
849{
d64838e1 850 activate = activate && !cfg.no_mouse_rep;
851 send_raw_mouse = activate;
852 if (send_raw_mouse)
57e636ca 853 inst->currcursor = inst->rawcursor;
d64838e1 854 else
57e636ca 855 inst->currcursor = inst->textcursor;
b3530065 856 show_mouseptr(inst->mouseptr_visible);
1709795f 857}
858
859void request_resize(int w, int h)
860{
16891265 861 gtk_drawing_area_size(GTK_DRAWING_AREA(inst->area),
862 inst->font_width * w + 2*cfg.window_border,
863 inst->font_height * h + 2*cfg.window_border);
1709795f 864}
865
26b8e7cc 866void real_palette_set(int n, int r, int g, int b)
867{
868 gboolean success[1];
869
870 inst->cols[n].red = r * 0x0101;
871 inst->cols[n].green = g * 0x0101;
872 inst->cols[n].blue = b * 0x0101;
873
874 gdk_colormap_alloc_colors(inst->colmap, inst->cols + n, 1,
875 FALSE, FALSE, success);
876 if (!success[0])
877 g_error("pterm: couldn't allocate colour %d (#%02x%02x%02x)\n",
878 n, r, g, b);
879}
880
1709795f 881void palette_set(int n, int r, int g, int b)
882{
26b8e7cc 883 static const int first[21] = {
884 0, 2, 4, 6, 8, 10, 12, 14,
885 1, 3, 5, 7, 9, 11, 13, 15,
886 16, 17, 18, 20, 22
887 };
888 real_palette_set(first[n], r, g, b);
889 if (first[n] >= 18)
890 real_palette_set(first[n] + 1, r, g, b);
1709795f 891}
26b8e7cc 892
1709795f 893void palette_reset(void)
894{
26b8e7cc 895 /* This maps colour indices in cfg to those used in inst->cols. */
896 static const int ww[] = {
897 6, 7, 8, 9, 10, 11, 12, 13,
898 14, 15, 16, 17, 18, 19, 20, 21,
899 0, 1, 2, 3, 4, 5
900 };
901 gboolean success[NCOLOURS];
902 int i;
903
904 assert(lenof(ww) == NCOLOURS);
905
906 if (!inst->colmap) {
907 inst->colmap = gdk_colormap_get_system();
908 } else {
909 gdk_colormap_free_colors(inst->colmap, inst->cols, NCOLOURS);
910 }
911
912 for (i = 0; i < NCOLOURS; i++) {
913 inst->cols[i].red = cfg.colours[ww[i]][0] * 0x0101;
914 inst->cols[i].green = cfg.colours[ww[i]][1] * 0x0101;
915 inst->cols[i].blue = cfg.colours[ww[i]][2] * 0x0101;
916 }
917
918 gdk_colormap_alloc_colors(inst->colmap, inst->cols, NCOLOURS,
919 FALSE, FALSE, success);
920 for (i = 0; i < NCOLOURS; i++) {
921 if (!success[i])
922 g_error("pterm: couldn't allocate colour %d (#%02x%02x%02x)\n",
923 i, cfg.colours[i][0], cfg.colours[i][1], cfg.colours[i][2]);
924 }
1709795f 925}
926
927void write_clip(wchar_t * data, int len, int must_deselect)
928{
e6346999 929 if (inst->pasteout_data)
930 sfree(inst->pasteout_data);
931 inst->pasteout_data = smalloc(len);
932 inst->pasteout_data_len = len;
933 wc_to_mb(0, 0, data, len, inst->pasteout_data, inst->pasteout_data_len,
934 NULL, NULL);
935
936 if (gtk_selection_owner_set(inst->area, GDK_SELECTION_PRIMARY,
937 GDK_CURRENT_TIME)) {
938 gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
939 GDK_SELECTION_TYPE_STRING, 1);
dd72dfa3 940 gtk_selection_add_target(inst->area, GDK_SELECTION_PRIMARY,
941 inst->compound_text_atom, 1);
e6346999 942 }
943}
944
945void selection_get(GtkWidget *widget, GtkSelectionData *seldata,
946 guint info, guint time_stamp, gpointer data)
947{
948 gtk_selection_data_set(seldata, GDK_SELECTION_TYPE_STRING, 8,
949 inst->pasteout_data, inst->pasteout_data_len);
950}
951
952gint selection_clear(GtkWidget *widget, GdkEventSelection *seldata,
953 gpointer data)
954{
955 term_deselect();
956 if (inst->pasteout_data)
957 sfree(inst->pasteout_data);
958 inst->pasteout_data = NULL;
959 inst->pasteout_data_len = 0;
960 return TRUE;
961}
962
963void request_paste(void)
964{
965 /*
966 * In Unix, pasting is asynchronous: all we can do at the
967 * moment is to call gtk_selection_convert(), and when the data
968 * comes back _then_ we can call term_do_paste().
969 */
970 gtk_selection_convert(inst->area, GDK_SELECTION_PRIMARY,
971 GDK_SELECTION_TYPE_STRING, GDK_CURRENT_TIME);
972}
973
0f660c8f 974gint idle_paste_func(gpointer data); /* forward ref */
975
e6346999 976void selection_received(GtkWidget *widget, GtkSelectionData *seldata,
977 gpointer data)
978{
979 if (seldata->length <= 0 ||
980 seldata->type != GDK_SELECTION_TYPE_STRING)
981 return; /* Nothing happens. */
982
983 if (inst->pastein_data)
984 sfree(inst->pastein_data);
985
986 inst->pastein_data = smalloc(seldata->length * sizeof(wchar_t));
987 inst->pastein_data_len = seldata->length;
988 mb_to_wc(0, 0, seldata->data, seldata->length,
989 inst->pastein_data, inst->pastein_data_len);
990
991 term_do_paste();
0f660c8f 992
993 if (term_paste_pending())
994 inst->term_paste_idle_id = gtk_idle_add(idle_paste_func, inst);
995}
996
997gint idle_paste_func(gpointer data)
998{
999 struct gui_data *inst = (struct gui_data *)data;
1000
1001 if (term_paste_pending())
1002 term_paste();
1003 else
1004 gtk_idle_remove(inst->term_paste_idle_id);
1005
1006 return TRUE;
1709795f 1007}
1008
0f660c8f 1009
1709795f 1010void get_clip(wchar_t ** p, int *len)
1011{
1012 if (p) {
e6346999 1013 *p = inst->pastein_data;
1014 *len = inst->pastein_data_len;
1709795f 1015 }
1016}
1017
1018void set_title(char *title)
1019{
12d200b1 1020 strncpy(inst->wintitle, title, lenof(inst->wintitle));
1021 inst->wintitle[lenof(inst->wintitle)-1] = '\0';
1022 gtk_window_set_title(GTK_WINDOW(inst->window), inst->wintitle);
1709795f 1023}
1024
1025void set_icon(char *title)
1026{
16891265 1027 strncpy(inst->icontitle, title, lenof(inst->icontitle));
1028 inst->icontitle[lenof(inst->icontitle)-1] = '\0';
1029 gdk_window_set_icon_name(inst->window->window, inst->icontitle);
1709795f 1030}
1031
1032void set_sbar(int total, int start, int page)
1033{
330f49be 1034 if (!cfg.scrollbar)
1035 return;
6a5e84dd 1036 inst->sbar_adjust->lower = 0;
1037 inst->sbar_adjust->upper = total;
1038 inst->sbar_adjust->value = start;
1039 inst->sbar_adjust->page_size = page;
1040 inst->sbar_adjust->step_increment = 1;
1041 inst->sbar_adjust->page_increment = page/2;
88e6b9ca 1042 inst->ignore_sbar = TRUE;
6a5e84dd 1043 gtk_adjustment_changed(inst->sbar_adjust);
88e6b9ca 1044 inst->ignore_sbar = FALSE;
6a5e84dd 1045}
1046
1047void scrollbar_moved(GtkAdjustment *adj, gpointer data)
1048{
330f49be 1049 if (!cfg.scrollbar)
1050 return;
88e6b9ca 1051 if (!inst->ignore_sbar)
1052 term_scroll(1, (int)adj->value);
1709795f 1053}
1054
1055void sys_cursor(int x, int y)
1056{
1057 /*
1058 * This is meaningless under X.
1059 */
1060}
1061
1062void beep(int mode)
1063{
1064 gdk_beep();
1065}
1066
1067int CharWidth(Context ctx, int uc)
1068{
1069 /*
1070 * Under X, any fixed-width font really _is_ fixed-width.
1071 * Double-width characters will be dealt with using a separate
1072 * font. For the moment we can simply return 1.
1073 */
1074 return 1;
1075}
1076
1077Context get_ctx(void)
1078{
d64838e1 1079 GdkGC *gc;
1080 if (!inst->area->window)
1081 return NULL;
1082 gc = gdk_gc_new(inst->area->window);
1709795f 1083 return gc;
1084}
1085
1086void free_ctx(Context ctx)
1087{
1088 GdkGC *gc = (GdkGC *)ctx;
1089 gdk_gc_unref(gc);
1090}
1091
1092/*
1093 * Draw a line of text in the window, at given character
1094 * coordinates, in given attributes.
1095 *
1096 * We are allowed to fiddle with the contents of `text'.
1097 */
1098void do_text(Context ctx, int x, int y, char *text, int len,
1099 unsigned long attr, int lattr)
1100{
d64838e1 1101 int nfg, nbg, t;
1709795f 1102 GdkGC *gc = (GdkGC *)ctx;
1709795f 1103
d64838e1 1104 /*
1105 * NYI:
57e636ca 1106 * - Unicode, code pages, and ATTR_WIDE for CJK support.
d64838e1 1107 * - cursor shapes other than block
d64838e1 1108 * - shadow bolding
d64838e1 1109 */
1110
1111 nfg = 2 * ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
1112 nbg = 2 * ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
1113 if (attr & ATTR_REVERSE) {
1114 t = nfg;
1115 nfg = nbg;
1116 nbg = t;
1117 }
1118 if (cfg.bold_colour && (attr & ATTR_BOLD))
1119 nfg++;
1120 if (cfg.bold_colour && (attr & ATTR_BLINK))
1121 nbg++;
1122 if (attr & TATTR_ACTCURS) {
1123 nfg = NCOLOURS-2;
1124 nbg = NCOLOURS-1;
1125 }
1126
f34df346 1127 if (lattr != LATTR_NORM) {
f34df346 1128 x *= 2;
614bb468 1129 if (x >= cols)
1130 return;
1131 if (x + len*2 > cols)
1132 len = (cols-x)/2; /* trim to LH half */
f34df346 1133 }
1134
d64838e1 1135 gdk_gc_set_foreground(gc, &inst->cols[nbg]);
83616aab 1136 gdk_draw_rectangle(inst->pixmap, gc, 1,
6a5e84dd 1137 x*inst->font_width+cfg.window_border,
1138 y*inst->font_height+cfg.window_border,
83616aab 1139 len*inst->font_width, inst->font_height);
6a5e84dd 1140
d64838e1 1141 gdk_gc_set_foreground(gc, &inst->cols[nfg]);
6a5e84dd 1142 gdk_draw_text(inst->pixmap, inst->fonts[0], gc,
1143 x*inst->font_width+cfg.window_border,
1144 y*inst->font_height+cfg.window_border+inst->fonts[0]->ascent,
1145 text, len);
d64838e1 1146
1147 if (attr & ATTR_UNDER) {
1148 int uheight = inst->fonts[0]->ascent + 1;
83616aab 1149 if (uheight >= inst->font_height)
1150 uheight = inst->font_height - 1;
6a5e84dd 1151 gdk_draw_line(inst->pixmap, gc, x*inst->font_width+cfg.window_border,
1152 y*inst->font_height + uheight + cfg.window_border,
8252e709 1153 (x+len)*inst->font_width-1+cfg.window_border,
1154 y*inst->font_height + uheight + cfg.window_border);
d64838e1 1155 }
1156
f34df346 1157 if (lattr != LATTR_NORM) {
1158 /*
1159 * I can't find any plausible StretchBlt equivalent in the
1160 * X server, so I'm going to do this the slow and painful
1161 * way. This will involve repeated calls to
1162 * gdk_draw_pixmap() to stretch the text horizontally. It's
1163 * O(N^2) in time and O(N) in network bandwidth, but you
1164 * try thinking of a better way. :-(
1165 */
1166 int i;
1167 for (i = 0; i < len * inst->font_width; i++) {
1168 gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
1169 x*inst->font_width+cfg.window_border + 2*i,
1170 y*inst->font_height+cfg.window_border,
1171 x*inst->font_width+cfg.window_border + 2*i+1,
1172 y*inst->font_height+cfg.window_border,
1173 len * inst->font_width - i, inst->font_height);
1174 }
1175 len *= 2;
1176 if (lattr != LATTR_WIDE) {
1177 int dt, db;
1178 /* Now stretch vertically, in the same way. */
1179 if (lattr == LATTR_BOT)
1180 dt = 0, db = 1;
1181 else
1182 dt = 1, db = 0;
1183 for (i = 0; i < inst->font_height; i+=2) {
1184 gdk_draw_pixmap(inst->pixmap, gc, inst->pixmap,
1185 x*inst->font_width+cfg.window_border,
1186 y*inst->font_height+cfg.window_border+dt*i+db,
1187 x*inst->font_width+cfg.window_border,
1188 y*inst->font_height+cfg.window_border+dt*(i+1),
1189 len * inst->font_width, inst->font_height-i-1);
1190 }
1191 }
1192 len *= 2;
1193 }
1194
d64838e1 1195 gdk_draw_pixmap(inst->area->window, gc, inst->pixmap,
6a5e84dd 1196 x*inst->font_width+cfg.window_border,
1197 y*inst->font_height+cfg.window_border,
1198 x*inst->font_width+cfg.window_border,
1199 y*inst->font_height+cfg.window_border,
83616aab 1200 len*inst->font_width, inst->font_height);
1709795f 1201}
1202
1203void do_cursor(Context ctx, int x, int y, char *text, int len,
1204 unsigned long attr, int lattr)
1205{
d64838e1 1206 int passive;
1207 GdkGC *gc = (GdkGC *)ctx;
1208
1209 /*
1210 * NYI: cursor shapes other than block
1211 */
1709795f 1212 if (attr & TATTR_PASCURS) {
1213 attr &= ~TATTR_PASCURS;
d64838e1 1214 passive = 1;
1215 } else
1216 passive = 0;
1709795f 1217 do_text(ctx, x, y, text, len, attr, lattr);
d64838e1 1218 if (passive) {
1219 gdk_gc_set_foreground(gc, &inst->cols[NCOLOURS-1]);
83616aab 1220 gdk_draw_rectangle(inst->pixmap, gc, 0,
6a5e84dd 1221 x*inst->font_width+cfg.window_border,
1222 y*inst->font_height+cfg.window_border,
83616aab 1223 len*inst->font_width-1, inst->font_height-1);
d64838e1 1224 gdk_draw_pixmap(inst->area->window, gc, inst->pixmap,
6a5e84dd 1225 x*inst->font_width+cfg.window_border,
1226 y*inst->font_height+cfg.window_border,
1227 x*inst->font_width+cfg.window_border,
1228 y*inst->font_height+cfg.window_border,
83616aab 1229 len*inst->font_width, inst->font_height);
d64838e1 1230 }
1709795f 1231}
1232
7798fa56 1233GdkCursor *make_mouse_ptr(int cursor_val)
1234{
1235 /*
1236 * Truly hideous hack: GTK doesn't allow us to set the mouse
1237 * cursor foreground and background colours unless we've _also_
1238 * created our own cursor from bitmaps. Therefore, I need to
1239 * load the `cursor' font and draw glyphs from it on to
1240 * pixmaps, in order to construct my cursors with the fg and bg
1241 * I want. This is a gross hack, but it's more self-contained
1242 * than linking in Xlib to find the X window handle to
1243 * inst->area and calling XRecolorCursor, and it's more
1244 * futureproof than hard-coding the shapes as bitmap arrays.
1245 */
1246 static GdkFont *cursor_font = NULL;
1247 GdkPixmap *source, *mask;
1248 GdkGC *gc;
1249 GdkColor cfg = { 0, 65535, 65535, 65535 };
1250 GdkColor cbg = { 0, 0, 0, 0 };
1251 GdkColor dfg = { 1, 65535, 65535, 65535 };
1252 GdkColor dbg = { 0, 0, 0, 0 };
1253 GdkCursor *ret;
1254 gchar text[2];
1255 gint lb, rb, wid, asc, desc, w, h, x, y;
1256
57e636ca 1257 if (cursor_val == -2) {
7798fa56 1258 gdk_font_unref(cursor_font);
1259 return NULL;
1260 }
1261
57e636ca 1262 if (cursor_val >= 0 && !cursor_font)
7798fa56 1263 cursor_font = gdk_font_load("cursor");
1264
1265 /*
1266 * Get the text extent of the cursor in question. We use the
1267 * mask character for this, because it's typically slightly
1268 * bigger than the main character.
1269 */
57e636ca 1270 if (cursor_val >= 0) {
1271 text[1] = '\0';
1272 text[0] = (char)cursor_val + 1;
1273 gdk_string_extents(cursor_font, text, &lb, &rb, &wid, &asc, &desc);
1274 w = rb-lb; h = asc+desc; x = -lb; y = asc;
1275 } else {
1276 w = h = 1;
1277 x = y = 0;
1278 }
7798fa56 1279
1280 source = gdk_pixmap_new(NULL, w, h, 1);
1281 mask = gdk_pixmap_new(NULL, w, h, 1);
1282
1283 /*
1284 * Draw the mask character on the mask pixmap.
1285 */
7798fa56 1286 gc = gdk_gc_new(mask);
1287 gdk_gc_set_foreground(gc, &dbg);
1288 gdk_draw_rectangle(mask, gc, 1, 0, 0, w, h);
57e636ca 1289 if (cursor_val >= 0) {
1290 text[1] = '\0';
1291 text[0] = (char)cursor_val + 1;
1292 gdk_gc_set_foreground(gc, &dfg);
1293 gdk_draw_text(mask, cursor_font, gc, x, y, text, 1);
1294 }
7798fa56 1295 gdk_gc_unref(gc);
1296
1297 /*
1298 * Draw the main character on the source pixmap.
1299 */
7798fa56 1300 gc = gdk_gc_new(source);
1301 gdk_gc_set_foreground(gc, &dbg);
1302 gdk_draw_rectangle(source, gc, 1, 0, 0, w, h);
57e636ca 1303 if (cursor_val >= 0) {
1304 text[1] = '\0';
1305 text[0] = (char)cursor_val;
1306 gdk_gc_set_foreground(gc, &dfg);
1307 gdk_draw_text(source, cursor_font, gc, x, y, text, 1);
1308 }
7798fa56 1309 gdk_gc_unref(gc);
1310
1311 /*
1312 * Create the cursor.
1313 */
1314 ret = gdk_cursor_new_from_pixmap(source, mask, &cfg, &cbg, x, y);
1315
1316 /*
1317 * Clean up.
1318 */
1319 gdk_pixmap_unref(source);
1320 gdk_pixmap_unref(mask);
1321
1322 return ret;
1323}
1324
1709795f 1325void modalfatalbox(char *p, ...)
1326{
1327 va_list ap;
1328 fprintf(stderr, "FATAL ERROR: ");
1329 va_start(ap, p);
1330 vfprintf(stderr, p, ap);
1331 va_end(ap);
1332 fputc('\n', stderr);
1333 exit(1);
f7f27309 1334}
1335
755a6d84 1336char *get_x_display(void)
1337{
1338 return gdk_get_display();
1339}
1340
f7f27309 1341int main(int argc, char **argv)
1342{
054d8535 1343 extern int pty_master_fd; /* declared in pty.c */
6169c758 1344 extern char **pty_argv; /* declared in pty.c */
1345 int err = 0;
f7f27309 1346
1347 gtk_init(&argc, &argv);
1348
1709795f 1349 do_defaults(NULL, &cfg);
1350
6169c758 1351 while (--argc > 0) {
1352 char *p = *++argv;
1353 if (!strcmp(p, "-fn")) {
1354 if (--argc > 0) {
1355 strncpy(cfg.font, *++argv, sizeof(cfg.font));
1356 cfg.font[sizeof(cfg.font)-1] = '\0';
1357 } else
1358 err = 1, fprintf(stderr, "pterm: -fn expects an argument\n");
1359 }
1360 if (!strcmp(p, "-e")) {
1361 if (--argc > 0) {
1362 int i;
1363 pty_argv = smalloc((argc+1) * sizeof(char *));
1364 ++argv;
1365 for (i = 0; i < argc; i++)
1366 pty_argv[i] = argv[i];
1367 pty_argv[argc] = NULL;
1368 break; /* finished command-line processing */
1369 } else
1370 err = 1, fprintf(stderr, "pterm: -e expects an argument\n");
1371 }
12d200b1 1372 if (!strcmp(p, "-T")) {
1373 if (--argc > 0) {
1374 strncpy(cfg.wintitle, *++argv, sizeof(cfg.wintitle));
1375 cfg.wintitle[sizeof(cfg.wintitle)-1] = '\0';
1376 } else
1377 err = 1, fprintf(stderr, "pterm: -T expects an argument\n");
1378 }
4c0901ed 1379 if (!strcmp(p, "-log")) {
1380 if (--argc > 0) {
1381 strncpy(cfg.logfilename, *++argv, sizeof(cfg.logfilename));
1382 cfg.logfilename[sizeof(cfg.logfilename)-1] = '\0';
1383 cfg.logtype = LGTYP_DEBUG;
1384 } else
1385 err = 1, fprintf(stderr, "pterm: -log expects an argument\n");
1386 }
57e636ca 1387 if (!strcmp(p, "-hide")) {
1388 cfg.hide_mouseptr = 1;
1389 }
f51dc031 1390 if (!strcmp(p, "-ut-")) {
c8ee61b9 1391 cfg.stamp_utmp = 0;
1392 }
1393 if (!strcmp(p, "-ls-")) {
1394 cfg.login_shell = 0;
f51dc031 1395 }
8b1fcd56 1396 if (!strcmp(p, "-nethack")) {
1397 cfg.nethack_keypad = 1;
1398 }
330f49be 1399 if (!strcmp(p, "-sb-")) {
1400 cfg.scrollbar = 0;
1401 }
6169c758 1402 }
1403
83616aab 1404 inst->fonts[0] = gdk_font_load(cfg.font);
1405 inst->fonts[1] = NULL; /* FIXME: what about bold font? */
1406 inst->font_width = gdk_char_width(inst->fonts[0], ' ');
1407 inst->font_height = inst->fonts[0]->ascent + inst->fonts[0]->descent;
1408
dd72dfa3 1409 inst->compound_text_atom = gdk_atom_intern("COMPOUND_TEXT", FALSE);
1410
1709795f 1411 init_ucs();
1412
12d200b1 1413 inst->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1414
1415 if (cfg.wintitle[0])
1416 set_title(cfg.wintitle);
1417 else
1418 set_title("pterm");
1419
16891265 1420 /*
1421 * Set up the colour map.
1422 */
1423 palette_reset();
1424
f7f27309 1425 inst->area = gtk_drawing_area_new();
1426 gtk_drawing_area_size(GTK_DRAWING_AREA(inst->area),
6a5e84dd 1427 inst->font_width * cfg.width + 2*cfg.window_border,
1428 inst->font_height * cfg.height + 2*cfg.window_border);
330f49be 1429 if (cfg.scrollbar) {
1430 inst->sbar_adjust = GTK_ADJUSTMENT(gtk_adjustment_new(0,0,0,0,0,0));
1431 inst->sbar = gtk_vscrollbar_new(inst->sbar_adjust);
1432 }
6a5e84dd 1433 inst->hbox = GTK_BOX(gtk_hbox_new(FALSE, 0));
88e6b9ca 1434 gtk_box_pack_start(inst->hbox, inst->area, TRUE, TRUE, 0);
330f49be 1435 if (cfg.scrollbar)
1436 gtk_box_pack_start(inst->hbox, inst->sbar, FALSE, FALSE, 0);
6a5e84dd 1437
16891265 1438 gtk_window_set_policy(GTK_WINDOW(inst->window), FALSE, TRUE, TRUE);
1439
12d200b1 1440 gtk_container_add(GTK_CONTAINER(inst->window), GTK_WIDGET(inst->hbox));
f7f27309 1441
6a5e84dd 1442 {
1443 GdkGeometry geom;
1444 geom.min_width = inst->font_width + 2*cfg.window_border;
1445 geom.min_height = inst->font_height + 2*cfg.window_border;
1446 geom.max_width = geom.max_height = -1;
1447 geom.base_width = 2*cfg.window_border;
1448 geom.base_height = 2*cfg.window_border;
1449 geom.width_inc = inst->font_width;
1450 geom.height_inc = inst->font_height;
1451 geom.min_aspect = geom.max_aspect = 0;
12d200b1 1452 gtk_window_set_geometry_hints(GTK_WINDOW(inst->window), inst->area, &geom,
6a5e84dd 1453 GDK_HINT_MIN_SIZE | GDK_HINT_BASE_SIZE |
1454 GDK_HINT_RESIZE_INC);
6a5e84dd 1455 }
f7f27309 1456
12d200b1 1457 gtk_signal_connect(GTK_OBJECT(inst->window), "destroy",
f7f27309 1458 GTK_SIGNAL_FUNC(destroy), inst);
12d200b1 1459 gtk_signal_connect(GTK_OBJECT(inst->window), "delete_event",
f7f27309 1460 GTK_SIGNAL_FUNC(delete_window), inst);
12d200b1 1461 gtk_signal_connect(GTK_OBJECT(inst->window), "key_press_event",
f7f27309 1462 GTK_SIGNAL_FUNC(key_event), inst);
12d200b1 1463 gtk_signal_connect(GTK_OBJECT(inst->window), "focus_in_event",
f7f27309 1464 GTK_SIGNAL_FUNC(focus_event), inst);
12d200b1 1465 gtk_signal_connect(GTK_OBJECT(inst->window), "focus_out_event",
f7f27309 1466 GTK_SIGNAL_FUNC(focus_event), inst);
1467 gtk_signal_connect(GTK_OBJECT(inst->area), "configure_event",
1468 GTK_SIGNAL_FUNC(configure_area), inst);
1469 gtk_signal_connect(GTK_OBJECT(inst->area), "expose_event",
1470 GTK_SIGNAL_FUNC(expose_area), inst);
e6346999 1471 gtk_signal_connect(GTK_OBJECT(inst->area), "button_press_event",
1472 GTK_SIGNAL_FUNC(button_event), inst);
1473 gtk_signal_connect(GTK_OBJECT(inst->area), "button_release_event",
1474 GTK_SIGNAL_FUNC(button_event), inst);
1475 gtk_signal_connect(GTK_OBJECT(inst->area), "motion_notify_event",
1476 GTK_SIGNAL_FUNC(motion_event), inst);
1477 gtk_signal_connect(GTK_OBJECT(inst->area), "selection_received",
1478 GTK_SIGNAL_FUNC(selection_received), inst);
1479 gtk_signal_connect(GTK_OBJECT(inst->area), "selection_get",
1480 GTK_SIGNAL_FUNC(selection_get), inst);
1481 gtk_signal_connect(GTK_OBJECT(inst->area), "selection_clear_event",
1482 GTK_SIGNAL_FUNC(selection_clear), inst);
330f49be 1483 if (cfg.scrollbar)
1484 gtk_signal_connect(GTK_OBJECT(inst->sbar_adjust), "value_changed",
1485 GTK_SIGNAL_FUNC(scrollbar_moved), inst);
f7f27309 1486 gtk_timeout_add(20, timer_func, inst);
1487 gtk_widget_add_events(GTK_WIDGET(inst->area),
e6346999 1488 GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK |
1489 GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
57e636ca 1490 GDK_POINTER_MOTION_MASK | GDK_BUTTON_MOTION_MASK);
f7f27309 1491
1492 gtk_widget_show(inst->area);
330f49be 1493 if (cfg.scrollbar)
1494 gtk_widget_show(inst->sbar);
6a5e84dd 1495 gtk_widget_show(GTK_WIDGET(inst->hbox));
12d200b1 1496 gtk_widget_show(inst->window);
f7f27309 1497
7798fa56 1498 inst->textcursor = make_mouse_ptr(GDK_XTERM);
1499 inst->rawcursor = make_mouse_ptr(GDK_LEFT_PTR);
57e636ca 1500 inst->blankcursor = make_mouse_ptr(-1);
1501 make_mouse_ptr(-2); /* clean up cursor font */
1502 inst->currcursor = inst->textcursor;
1503 show_mouseptr(1);
d64838e1 1504
755a6d84 1505 back = &pty_backend;
1506 back->init(NULL, 0, NULL, 0);
1507
1508 gdk_input_add(pty_master_fd, GDK_INPUT_READ, pty_input_func, inst);
1509
1709795f 1510 term_init();
16891265 1511 term_size(cfg.height, cfg.width, cfg.savelines);
1709795f 1512
f7f27309 1513 gtk_main();
1514
1515 return 0;
1516}