ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/command.C
(Generate patch)

Comparing rxvt-unicode/src/command.C (file contents):
Revision 1.274 by root, Fri Jan 20 10:27:08 2006 UTC vs.
Revision 1.424 by root, Tue Nov 4 23:46:22 2008 UTC

1/*--------------------------------*-C-*---------------------------------* 1/*----------------------------------------------------------------------*
2 * File: command.C 2 * File: command.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 1992 John Bovey, University of Kent at Canterbury <jdb@ukc.ac.uk> 6 * Copyright (c) 1992 John Bovey, University of Kent at Canterbury <jdb@ukc.ac.uk>
25 * - extensive modifications 25 * - extensive modifications
26 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org> 26 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org>
27 * Copyright (c) 2001 Marius Gedminas 27 * Copyright (c) 2001 Marius Gedminas
28 * - Ctrl/Mod4+Tab works like Meta+Tab (options) 28 * - Ctrl/Mod4+Tab works like Meta+Tab (options)
29 * Copyright (c) 2003 Rob McMullen <robm@flipturn.org> 29 * Copyright (c) 2003 Rob McMullen <robm@flipturn.org>
30 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com> 30 * Copyright (c) 2003-2007 Marc Lehmann <pcg@goof.com>
31 * Copyright (c) 2007 Emanuele Giaquinta <e.giaquinta@glauco.it>
31 * 32 *
32 * This program is free software; you can redistribute it and/or modify 33 * This program is free software; you can redistribute it and/or modify
33 * it under the terms of the GNU General Public License as published by 34 * it under the terms of the GNU General Public License as published by
34 * the Free Software Foundation; either version 2 of the License, or 35 * the Free Software Foundation; either version 2 of the License, or
35 * (at your option) any later version. 36 * (at your option) any later version.
49#include "rxvt.h" 50#include "rxvt.h"
50#include "rxvtperl.h" 51#include "rxvtperl.h"
51#include "version.h" 52#include "version.h"
52#include "command.h" 53#include "command.h"
53 54
54#if HAVE_SCHED_YIELD
55#undef HAVE_SCHED_YIELD // disabled for the time being
56//# include <sched.h>
57#endif
58
59#ifdef KEYSYM_RESOURCE 55#ifdef KEYSYM_RESOURCE
60# include "keyboard.h" 56# include "keyboard.h"
61#endif 57#endif
62 58
63#include <csignal> 59#include <csignal>
60
61#if LINUX_YIELD_HACK
62# include <ctime>
63#endif
64 64
65/*----------------------------------------------------------------------*/ 65/*----------------------------------------------------------------------*/
66 66
67#define IS_CONTROL(ch) !((ch) & 0xffffff60UL) 67#define IS_CONTROL(ch) !((ch) & 0xffffff60UL)
68 68
96 XK_Shift_L, 0x21e7, 96 XK_Shift_L, 0x21e7,
97 XK_Shift_R, 0x21e7, 97 XK_Shift_R, 0x21e7,
98 98
99 XK_Shift_Lock, 0x21eb, 99 XK_Shift_Lock, 0x21eb,
100 XK_ISO_Lock, 0x21eb, 100 XK_ISO_Lock, 0x21eb,
101 XK_ISO_Lock, 0x21eb,
102 XK_Caps_Lock, 0x21ec, 101 XK_Caps_Lock, 0x21ec,
103 XK_Num_Lock, 0x21ed, 102 XK_Num_Lock, 0x21ed,
104 XK_ISO_Level3_Shift, 0x21ee, 103 XK_ISO_Level3_Shift, 0x21ee,
105 XK_ISO_Level3_Lock, 0x21ef, 104 XK_ISO_Level3_Lock, 0x21ef,
106 XK_ISO_Group_Lock, 0x21f0, 105 XK_ISO_Group_Lock, 0x21f0,
200 r & RS_Uline ? " uline" : "", 199 r & RS_Uline ? " uline" : "",
201 r & RS_Careful ? " careful" : ""); 200 r & RS_Careful ? " careful" : "");
202 201
203 int width = wcswidth (fname, wcslen (fname)); 202 int width = wcswidth (fname, wcslen (fname));
204 203
205 max_it (width, 8+5); // for char + hey 204 max_it (width, 8+5); // for char + hex
206 max_it (width, strlen (attr)); 205 max_it (width, strlen (attr));
207 206
208 if (y >= 0) 207 if (y >= 0)
209 { 208 {
210 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1; 209 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1;
222 ch = *chr++; 221 ch = *chr++;
223 222
224 sprintf (buf, "%8x", ch); 223 sprintf (buf, "%8x", ch);
225 scr_overlay_set (0, y, buf); 224 scr_overlay_set (0, y, buf);
226 scr_overlay_set (9, y, '='); 225 scr_overlay_set (9, y, '=');
227# if !UNICODE3 226# if !UNICODE_3
228 if (ch >= 0x10000) 227 if (ch >= 0x10000)
229 ch = 0xfffd; 228 ch = 0xfffd;
230# endif 229# endif
231 scr_overlay_set (11, y, ch, r); 230 scr_overlay_set (11, y, ch, r);
231
232 if (WCWIDTH (ch) >= 2)
232 scr_overlay_set (12, y, NOCHAR, r); 233 scr_overlay_set (12, y, NOCHAR, r);
233 } 234 }
234 235
236// {
237// char buf[4+4+3+1];
238// snprintf (buf, sizeof (buf), "(%.4d|%.4d)", x, y);
239// scr_overlay_set (0, 0, buf);
240// }
235 scr_overlay_set (0, len , attr); 241 scr_overlay_set (0, len , attr);
236 scr_overlay_set (0, len + 1, fname); 242 scr_overlay_set (0, len + 1, fname);
237 243
238 free (fname); 244 free (fname);
239 245
273 } 279 }
274 280
275 iso14755buf = 0; 281 iso14755buf = 0;
276} 282}
277 283
278int 284static int
279rxvt_term::hex_keyval (XKeyEvent &ev) 285hex_keyval (XKeyEvent &ev)
280{ 286{
281 // check wether this event corresponds to a hex digit 287 // check wether this event corresponds to a hex digit
282 // if the modifiers had not been pressed. 288 // if the modifiers had not been pressed.
283 for (int index = 0; index < 8; index++) 289 for (int index = 0; index < 8; index++)
284 { 290 {
292 298
293 return -1; 299 return -1;
294} 300}
295#endif 301#endif
296 302
297/*{{{ Convert the keypress event into a string */ 303static inline KeySym
304translate_keypad (KeySym keysym, bool kp)
305{
306#ifdef XK_KP_Home
307 static const KeySym keypadtrans[] = {
308 XK_KP_7, // XK_KP_Home
309 XK_KP_4, // XK_KP_Left
310 XK_KP_8, // XK_KP_Up
311 XK_KP_6, // XK_KP_Right
312 XK_KP_2, // XK_KP_Down
313# ifndef UNSHIFTED_SCROLLKEYS
314 XK_KP_9, // XK_KP_Prior
315 XK_KP_3, // XK_KP_Next
316# else
317 XK_Prior,
318 XK_Next,
319# endif
320 XK_KP_1, // XK_KP_End
321 XK_KP_5, // XK_KP_Begin
322 };
323
324 if (IN_RANGE_INC (keysym, XK_KP_Home, XK_KP_Begin))
325 {
326 unsigned int index = keysym - XK_KP_Home;
327 keysym = kp ? keypadtrans[index] : XK_Home + index;
328 }
329 else if (keysym == XK_KP_Insert)
330 keysym = kp ? XK_KP_0 : XK_Insert;
331# ifndef NO_DELETE_KEY
332 else if (keysym == XK_KP_Delete)
333 keysym = kp ? XK_KP_Decimal : XK_Delete;
334# endif
335#endif
336 return keysym;
337}
338
339static inline int
340map_function_key (KeySym keysym)
341{
342 int param = 0;
343
344 if (IN_RANGE_INC (keysym, XK_F1, XK_F35))
345 {
346 param = 11 + keysym - XK_F1;
347 if (keysym >= XK_F17)
348 param += 4;
349 else if (keysym >= XK_F15)
350 param += 3;
351 else if (keysym >= XK_F11)
352 param += 2;
353 else if (keysym >= XK_F6)
354 param += 1;
355 }
356 else
357 switch (keysym)
358 {
359 case XK_Find:
360 param = 1;
361 break;
362 case XK_Insert:
363 param = 2;
364 break;
365#ifdef DXK_Remove
366 case DXK_Remove:
367#endif
368 case XK_Execute:
369 param = 3;
370 break;
371 case XK_Select:
372 param = 4;
373 break;
374#ifndef UNSHIFTED_SCROLLKEYS
375 case XK_Prior:
376 param = 5;
377 break;
378 case XK_Next:
379 param = 6;
380 break;
381 case XK_Home:
382 param = 7;
383 break;
384 case XK_End:
385 param = 8;
386 break;
387#endif
388 case XK_Help:
389 param = 28;
390 break;
391 case XK_Menu:
392 param = 29;
393 break;
394 }
395 return param;
396}
397
298void 398void
299rxvt_term::lookup_key (XKeyEvent &ev) 399rxvt_term::key_press (XKeyEvent &ev)
300{ 400{
301 int ctrl, meta, shft, len; 401 int ctrl, meta, shft, len;
302 unsigned int newlen;
303 KeySym keysym; 402 KeySym keysym;
304#ifdef DEBUG_CMD
305 static int debug_key = 1; /* accessible by a debugger only */
306#endif
307 int valid_keysym; 403 int valid_keysym;
308 char kbuf[KBUFSZ]; 404 char kbuf[KBUFSZ];
405
406#if ISO_14755
407 if (iso14755buf & ISO_14755_52)
408 return;
409#endif
309 410
310 /* 411 /*
311 * use Num_Lock to toggle Keypad on/off. If Num_Lock is off, allow an 412 * use Num_Lock to toggle Keypad on/off. If Num_Lock is off, allow an
312 * escape sequence to toggle the Keypad. 413 * escape sequence to toggle the Keypad.
313 * 414 *
318 meta = ev.state & ModMetaMask; 419 meta = ev.state & ModMetaMask;
319 420
320 if (numlock_state || (ev.state & ModNumLockMask)) 421 if (numlock_state || (ev.state & ModNumLockMask))
321 { 422 {
322 numlock_state = (ev.state & ModNumLockMask); 423 numlock_state = (ev.state & ModNumLockMask);
323 PrivMode ((!numlock_state), PrivMode_aplKP); 424 set_privmode (PrivMode_aplKP, !numlock_state);
324 } 425 }
325 426
326 kbuf[0] = 0; 427 kbuf[0] = 0;
327 428
328#ifdef USE_XIM 429#ifdef USE_XIM
461 { 562 {
462 switch (keysym) 563 switch (keysym)
463 { 564 {
464 /* normal XTerm key bindings */ 565 /* normal XTerm key bindings */
465 case XK_Insert: /* Shift+Insert = paste mouse selection */ 566 case XK_Insert: /* Shift+Insert = paste mouse selection */
466 selection_request (ev.time, Sel_Primary); 567 selection_request (ev.time);
467 return; 568 return;
468#if TODO 569#if TODO
469 /* rxvt extras */ 570 /* rxvt extras */
470 case XK_KP_Add: /* Shift+KP_Add = bigger font */ 571 case XK_KP_Add: /* Shift+KP_Add = bigger font */
471 change_font (FONT_UP); 572 change_font (FONT_UP);
490 { 591 {
491 commit_iso14755 (); 592 commit_iso14755 ();
492 iso14755buf = ISO_14755_51; 593 iso14755buf = ISO_14755_51;
493# if ISO_14755 594# if ISO_14755
494 iso14755_51 (0); 595 iso14755_51 (0);
596# endif
597 return;
598 }
599 else if (keysym == XK_BackSpace)
600 {
601 iso14755buf = ((iso14755buf & ISO_14755_MASK) >> 4) | ISO_14755_51;
602# if ISO_14755
603 iso14755_51 (iso14755buf & ISO_14755_MASK);
495# endif 604# endif
496 return; 605 return;
497 } 606 }
498 else if ((hv = hex_keyval (ev)) >= 0) 607 else if ((hv = hex_keyval (ev)) >= 0)
499 { 608 {
504# endif 613# endif
505 return; 614 return;
506 } 615 }
507 else 616 else
508 { 617 {
509# if ENABLE_OVERLAY 618# if ISO_14755
510 scr_overlay_off (); 619 scr_overlay_off ();
511# endif 620# endif
512 iso14755buf = 0; 621 iso14755buf = 0;
513 } 622 }
514 } 623 }
515 else if ((ctrl && (keysym == XK_Shift_L || keysym == XK_Shift_R)) 624 else if ((ctrl && (keysym == XK_Shift_L || keysym == XK_Shift_R))
516 || (shft && (keysym == XK_Control_L || keysym == XK_Control_R))) 625 || (shft && (keysym == XK_Control_L || keysym == XK_Control_R)))
517 if (!(iso14755buf & ISO_14755_STARTED)) 626 if (!(iso14755buf & ISO_14755_STARTED))
518 { 627 {
519 iso14755buf |= ISO_14755_STARTED; 628 iso14755buf |= ISO_14755_STARTED;
520# if ENABLE_OVERLAY 629# if ISO_14755
521 scr_overlay_new (0, -1, sizeof ("ISO 14755 mode") - 1, 1); 630 scr_overlay_new (0, -1, sizeof ("ISO 14755 mode") - 1, 1);
522 scr_overlay_set (0, 0, "ISO 14755 mode"); 631 scr_overlay_set (0, 0, "ISO 14755 mode");
523# endif 632# endif
524 } 633 }
525#endif 634#endif
526 635
527#ifdef PRINTPIPE 636#ifdef PRINTPIPE
528 if (keysym == XK_Print) 637 if (keysym == XK_Print)
529 { 638 {
530 scr_printscreen (ctrl | shft); 639 scr_printscreen (ctrl | shft);
531 return; 640 return;
532 } 641 }
533#endif 642#endif
534 643
535 if (keysym >= 0xFF00 && keysym <= 0xFFFF) 644 if (keysym >= 0xFF00 && keysym <= 0xFFFF)
536 { 645 {
646 bool kp = priv_modes & PrivMode_aplKP ? !shft : shft;
647 unsigned int newlen = 1;
648
649 switch (translate_keypad (keysym, kp))
537 { 650 {
651#ifndef NO_BACKSPACE_KEY
652 case XK_BackSpace:
653 if (priv_modes & PrivMode_HaveBackSpace)
654 {
655 kbuf[0] = (!! (priv_modes & PrivMode_BackSpace)
656 ^ !!ctrl) ? '\b' : '\177';
657 kbuf[1] = '\0';
658 }
659 else
660 strcpy (kbuf, rs[Rs_backspace_key]);
661 break;
662#endif
663#ifndef NO_DELETE_KEY
664 case XK_Delete:
665 strcpy (kbuf, rs[Rs_delete_key]);
666 break;
667#endif
668 case XK_Tab:
669 if (shft)
670 strcpy (kbuf, "\033[Z");
671 else
672 {
673#ifdef CTRL_TAB_MAKES_META
674 if (ctrl)
675 meta = 1;
676#endif
677#ifdef MOD4_TAB_MAKES_META
678 if (ev.state & Mod4Mask)
679 meta = 1;
680#endif
538 newlen = 1; 681 newlen = 0;
539 switch (keysym) 682 }
683 break;
684
685 case XK_Up: /* "\033[A" */
686 case XK_Down: /* "\033[B" */
687 case XK_Right: /* "\033[C" */
688 case XK_Left: /* "\033[D" */
689 strcpy (kbuf, "\033[Z");
690 kbuf[2] = "DACB"[keysym - XK_Left];
691 /* do Shift first */
692 if (shft)
693 kbuf[2] = "dacb"[keysym - XK_Left];
694 else if (ctrl)
695 {
696 kbuf[1] = 'O';
697 kbuf[2] = "dacb"[keysym - XK_Left];
698 }
699 else if (priv_modes & PrivMode_aplCUR)
700 kbuf[1] = 'O';
701 break;
702
703 case XK_KP_Enter:
704 /* allow shift to override */
705 if (kp)
706 {
707 strcpy (kbuf, "\033OM");
708 break;
709 }
710
711 /* FALLTHROUGH */
712
713 case XK_Return:
714 if (priv_modes & PrivMode_LFNL)
715 {
716 kbuf[0] = '\015';
717 kbuf[1] = '\012';
718 kbuf[2] = '\0';
719 }
720 else
721 {
722 kbuf[0] = '\015';
723 kbuf[1] = '\0';
724 }
725 break;
726
727 case XK_KP_F1: /* "\033OP" */
728 case XK_KP_F2: /* "\033OQ" */
729 case XK_KP_F3: /* "\033OR" */
730 case XK_KP_F4: /* "\033OS" */
731 strcpy (kbuf, "\033OP");
732 kbuf[2] += (keysym - XK_KP_F1);
733 break;
734
735 case XK_KP_Multiply: /* "\033Oj" : "*" */
736 case XK_KP_Add: /* "\033Ok" : "+" */
737 case XK_KP_Separator: /* "\033Ol" : "," */
738 case XK_KP_Subtract: /* "\033Om" : "-" */
739 case XK_KP_Decimal: /* "\033On" : "." */
740 case XK_KP_Divide: /* "\033Oo" : "/" */
741 case XK_KP_0: /* "\033Op" : "0" */
742 case XK_KP_1: /* "\033Oq" : "1" */
743 case XK_KP_2: /* "\033Or" : "2" */
744 case XK_KP_3: /* "\033Os" : "3" */
745 case XK_KP_4: /* "\033Ot" : "4" */
746 case XK_KP_5: /* "\033Ou" : "5" */
747 case XK_KP_6: /* "\033Ov" : "6" */
748 case XK_KP_7: /* "\033Ow" : "7" */
749 case XK_KP_8: /* "\033Ox" : "8" */
750 case XK_KP_9: /* "\033Oy" : "9" */
751 /* allow shift to override */
752 if (kp)
753 {
754 strcpy (kbuf, "\033Oj");
755 kbuf[2] += (keysym - XK_KP_Multiply);
756 }
757 else
758 {
759 kbuf[0] = ('*' + (keysym - XK_KP_Multiply));
760 kbuf[1] = '\0';
761 }
762 break;
763
764 default:
540 { 765 {
541#ifndef NO_BACKSPACE_KEY 766 int param = map_function_key (keysym);
542 case XK_BackSpace: 767 if (param > 0)
543 if (priv_modes & PrivMode_HaveBackSpace) 768 sprintf (kbuf,"\033[%d~", param);
544 {
545 kbuf[0] = (!! (priv_modes & PrivMode_BackSpace)
546 ^ !!ctrl) ? '\b' : '\177';
547 kbuf[1] = '\0';
548 }
549 else 769 else
550 strcpy (kbuf, key_backspace);
551 break;
552#endif
553#ifndef NO_DELETE_KEY
554# ifdef XK_KP_Prior
555 case XK_KP_Delete:
556 /* allow shift to override */
557 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
558 {
559 strcpy (kbuf, "\033On");
560 break;
561 }
562 /* FALLTHROUGH */
563# endif
564 case XK_Delete:
565 strcpy (kbuf, key_delete);
566 break;
567#endif
568 case XK_Tab:
569 if (shft)
570 strcpy (kbuf, "\033[Z");
571 else
572 {
573#ifdef CTRL_TAB_MAKES_META
574 if (ctrl)
575 meta = 1;
576#endif
577#ifdef MOD4_TAB_MAKES_META
578 if (ev.state & Mod4Mask)
579 meta = 1;
580#endif
581 newlen = 0;
582 }
583 break;
584
585#ifdef XK_KP_Left
586 case XK_KP_Up: /* \033Ox or standard */
587 case XK_KP_Down: /* \033Or or standard */
588 case XK_KP_Right: /* \033Ov or standard */
589 case XK_KP_Left: /* \033Ot or standard */
590 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
591 {
592 strcpy (kbuf, "\033OZ");
593 kbuf[2] = "txvr"[keysym - XK_KP_Left];
594 break;
595 }
596 else
597 /* translate to std. cursor key */
598 keysym = XK_Left + (keysym - XK_KP_Left);
599 /* FALLTHROUGH */
600#endif
601 case XK_Up: /* "\033[A" */
602 case XK_Down: /* "\033[B" */
603 case XK_Right: /* "\033[C" */
604 case XK_Left: /* "\033[D" */
605 strcpy (kbuf, "\033[Z");
606 kbuf[2] = "DACB"[keysym - XK_Left];
607 /* do Shift first */
608 if (shft)
609 kbuf[2] = "dacb"[keysym - XK_Left];
610 else if (ctrl)
611 {
612 kbuf[1] = 'O';
613 kbuf[2] = "dacb"[keysym - XK_Left];
614 }
615 else if (priv_modes & PrivMode_aplCUR)
616 kbuf[1] = 'O';
617 break;
618
619#ifndef UNSHIFTED_SCROLLKEYS
620# ifdef XK_KP_Prior
621 case XK_KP_Prior:
622 /* allow shift to override */
623 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
624 {
625 strcpy (kbuf, "\033Oy");
626 break;
627 }
628 /* FALLTHROUGH */
629# endif
630 case XK_Prior:
631 strcpy (kbuf, "\033[5~");
632 break;
633# ifdef XK_KP_Next
634 case XK_KP_Next:
635 /* allow shift to override */
636 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
637 {
638 strcpy (kbuf, "\033Os");
639 break;
640 }
641 /* FALLTHROUGH */
642# endif
643 case XK_Next:
644 strcpy (kbuf, "\033[6~");
645 break;
646#endif
647 case XK_KP_Enter:
648 /* allow shift to override */
649 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
650 {
651 strcpy (kbuf, "\033OM");
652 break;
653 }
654
655 /* FALLTHROUGH */
656
657 case XK_Return:
658 if (priv_modes & PrivMode_LFNL)
659 {
660 kbuf[0] = '\015';
661 kbuf[1] = '\012';
662 kbuf[2] = '\0';
663 }
664 else
665 {
666 kbuf[0] = '\015';
667 kbuf[1] = '\0';
668 }
669 break;
670
671#ifdef XK_KP_Begin
672 case XK_KP_Begin:
673 strcpy (kbuf, "\033Ou");
674 break;
675
676#endif
677 case XK_KP_F1: /* "\033OP" */
678 case XK_KP_F2: /* "\033OQ" */
679 case XK_KP_F3: /* "\033OR" */
680 case XK_KP_F4: /* "\033OS" */
681 strcpy (kbuf, "\033OP");
682 kbuf[2] += (keysym - XK_KP_F1);
683 break;
684
685 case XK_KP_Multiply: /* "\033Oj" : "*" */
686 case XK_KP_Add: /* "\033Ok" : "+" */
687 case XK_KP_Separator: /* "\033Ol" : "," */
688 case XK_KP_Subtract: /* "\033Om" : "-" */
689 case XK_KP_Decimal: /* "\033On" : "." */
690 case XK_KP_Divide: /* "\033Oo" : "/" */
691 case XK_KP_0: /* "\033Op" : "0" */
692 case XK_KP_1: /* "\033Oq" : "1" */
693 case XK_KP_2: /* "\033Or" : "2" */
694 case XK_KP_3: /* "\033Os" : "3" */
695 case XK_KP_4: /* "\033Ot" : "4" */
696 case XK_KP_5: /* "\033Ou" : "5" */
697 case XK_KP_6: /* "\033Ov" : "6" */
698 case XK_KP_7: /* "\033Ow" : "7" */
699 case XK_KP_8: /* "\033Ox" : "8" */
700 case XK_KP_9: /* "\033Oy" : "9" */
701 /* allow shift to override */
702 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
703 {
704 strcpy (kbuf, "\033Oj");
705 kbuf[2] += (keysym - XK_KP_Multiply);
706 }
707 else
708 {
709 kbuf[0] = ('*' + (keysym - XK_KP_Multiply));
710 kbuf[1] = '\0';
711 }
712 break;
713
714 case XK_Find:
715 strcpy (kbuf, "\033[1~");
716 break;
717
718#ifdef XK_KP_End
719 case XK_KP_Insert:
720 /* allow shift to override */
721 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
722 {
723 strcpy (kbuf, "\033Op");
724 break;
725 }
726 /* FALLTHROUGH */
727#endif
728 case XK_Insert:
729 strcpy (kbuf, "\033[2~");
730 break;
731#ifdef DXK_Remove /* support for DEC remove like key */
732 case DXK_Remove:
733 /* FALLTHROUGH */
734#endif
735 case XK_Execute:
736 strcpy (kbuf, "\033[3~");
737 break;
738 case XK_Select:
739 strcpy (kbuf, "\033[4~");
740 break;
741#ifdef XK_KP_End
742 case XK_KP_End:
743 /* allow shift to override */
744 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
745 {
746 strcpy (kbuf, "\033Oq");
747 break;
748 }
749 /* FALLTHROUGH */
750#endif
751 case XK_End:
752 strcpy (kbuf, KS_END);
753 break;
754#ifdef XK_KP_Home
755 case XK_KP_Home:
756 /* allow shift to override */
757 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
758 {
759 strcpy (kbuf, "\033Ow");
760 break;
761 }
762 /* FALLTHROUGH */
763#endif
764 case XK_Home:
765 strcpy (kbuf, KS_HOME);
766 break;
767
768#define FKEY(n, fkey) \
769 sprintf ((char *)kbuf,"\033[%2d~", (int) ((n) + (keysym - fkey)))
770
771 case XK_F1: /* "\033[11~" */
772 case XK_F2: /* "\033[12~" */
773 case XK_F3: /* "\033[13~" */
774 case XK_F4: /* "\033[14~" */
775 case XK_F5: /* "\033[15~" */
776 FKEY (11, XK_F1);
777 break;
778 case XK_F6: /* "\033[17~" */
779 case XK_F7: /* "\033[18~" */
780 case XK_F8: /* "\033[19~" */
781 case XK_F9: /* "\033[20~" */
782 case XK_F10: /* "\033[21~" */
783 FKEY (17, XK_F6);
784 break;
785 case XK_F11: /* "\033[23~" */
786 case XK_F12: /* "\033[24~" */
787 case XK_F13: /* "\033[25~" */
788 case XK_F14: /* "\033[26~" */
789 FKEY (23, XK_F11);
790 break;
791 case XK_F15: /* "\033[28~" */
792 case XK_F16: /* "\033[29~" */
793 FKEY (28, XK_F15);
794 break;
795 case XK_Help: /* "\033[28~" */
796 FKEY (28, XK_Help);
797 break;
798 case XK_Menu: /* "\033[29~" */
799 FKEY (29, XK_Menu);
800 break;
801 case XK_F17: /* "\033[31~" */
802 case XK_F18: /* "\033[32~" */
803 case XK_F19: /* "\033[33~" */
804 case XK_F20: /* "\033[34~" */
805 case XK_F21: /* "\033[35~" */
806 case XK_F22: /* "\033[36~" */
807 case XK_F23: /* "\033[37~" */
808 case XK_F24: /* "\033[38~" */
809 case XK_F25: /* "\033[39~" */
810 case XK_F26: /* "\033[40~" */
811 case XK_F27: /* "\033[41~" */
812 case XK_F28: /* "\033[42~" */
813 case XK_F29: /* "\033[43~" */
814 case XK_F30: /* "\033[44~" */
815 case XK_F31: /* "\033[45~" */
816 case XK_F32: /* "\033[46~" */
817 case XK_F33: /* "\033[47~" */
818 case XK_F34: /* "\033[48~" */
819 case XK_F35: /* "\033[49~" */
820 FKEY (31, XK_F17);
821 break;
822#undef FKEY
823 default:
824 newlen = 0; 770 newlen = 0;
825 break;
826 } 771 }
827 772 break;
828 if (newlen)
829 len = strlen (kbuf);
830 } 773 }
774
775 if (newlen)
776 len = strlen (kbuf);
831 777
832 /* 778 /*
833 * Pass meta for all function keys, if 'meta' option set 779 * Pass meta for all function keys, if 'meta' option set
834 */ 780 */
835#ifdef META8_OPTION 781#ifdef META8_OPTION
870 return; 816 return;
871 817
872 if (len <= 0) 818 if (len <= 0)
873 return; /* not mapped */ 819 return; /* not mapped */
874 820
875 if (OPTION (Opt_scrollTtyKeypress)) 821 if (option (Opt_scrollTtyKeypress))
876 if (view_start) 822 if (view_start)
877 { 823 {
878 view_start = 0; 824 view_start = 0;
879 want_refresh = 1; 825 want_refresh = 1;
880 } 826 }
902 { 848 {
903 const char ch = C0_ESC; 849 const char ch = C0_ESC;
904 tt_write (&ch, 1); 850 tt_write (&ch, 1);
905 } 851 }
906 852
907#if defined(DEBUG_CMD)
908 /* Display keyboard buffer contents */
909 unsigned char *p;
910 int i;
911
912 fprintf (stderr, "key 0x%04X [%d]: `", (unsigned int)keysym, len);
913 for (i = 0, p = kbuf; i < len; i++, p++)
914 fprintf (stderr, (*p >= ' ' && *p < '\177' ? "%c" : "\\%03o"), *p);
915 fprintf (stderr, "'\n");
916#endif /* DEBUG_CMD */
917 tt_write (kbuf, (unsigned int)len); 853 tt_write (kbuf, (unsigned int)len);
918} 854}
919/*}}} */ 855
856void
857rxvt_term::key_release (XKeyEvent &ev)
858{
859#if (MOUSE_WHEEL && MOUSE_SLIP_WHEELING) || ISO_14755 || ENABLE_PERL
860 KeySym keysym;
861
862 keysym = XLookupKeysym (&ev, ev.state & ShiftMask ? 1 : 0); // sorry, only shift supported :/
863#endif
864
865#if ENABLE_FRILLS || ISO_14755
866 // ISO 14755 support
867 if (iso14755buf)
868 if (iso14755buf & ISO_14755_52)
869 {
870# if ISO_14755
871 scr_overlay_off ();
872# endif
873# if ISO_14755
874 // iso14755 part 5.2 handling: release time
875 // first: controls
876 if ((ev.state & ControlMask)
877 && ((keysym >= 0x40 && keysym <= 0x5f)
878 || (keysym >= 0x61 && keysym <= 0x7f)))
879 {
880 iso14755buf = ISO_14755_51 | 0x2400 | (keysym & 0x1f);
881 commit_iso14755 ();
882
883 return;
884 }
885
886 for (unsigned short *i = iso14755_symtab; i[0]; i+= 2)
887 if (i[0] == keysym)
888 {
889 iso14755buf = ISO_14755_51 | i[1];
890 commit_iso14755 ();
891
892 return;
893 }
894
895 scr_bell ();
896# endif
897 iso14755buf = 0;
898
899 return;
900 }
901 else if ((ev.state & (ShiftMask | ControlMask)) != (ShiftMask | ControlMask))
902 {
903# if ISO_14755
904 scr_overlay_off ();
905# endif
906 if (iso14755buf & ISO_14755_51)
907 commit_iso14755 ();
908#if ISO_14755
909 else if (option (Opt_iso14755_52) && iso14755buf & ISO_14755_STARTED)
910 {
911 iso14755buf = ISO_14755_52; // iso14755 part 5.2: remember empty begin/end pair
912
913 scr_overlay_new (0, -1, sizeof ("KEYCAP PICTURE INSERT MODE") - 1, 1);
914 scr_overlay_set (0, 0, "KEYCAP PICTURE INSERT MODE");
915 }
916# endif
917 else
918 iso14755buf = 0;
919 }
920#endif
921
922 if (HOOK_INVOKE ((this, HOOK_KEY_RELEASE, DT_XEVENT, &ev, DT_INT, keysym, DT_END)))
923 return;
924
925#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
926 if (!(ev.state & ControlMask))
927 slip_wheel_ev.stop ();
928 else if (keysym == XK_Control_L || keysym == XK_Control_R)
929 mouse_slip_wheel_speed = 0;
930#endif
931}
920 932
921#if defined (KEYSYM_RESOURCE) 933#if defined (KEYSYM_RESOURCE)
922unsigned int 934unsigned int
923rxvt_term::cmd_write (const char *str, unsigned int count) 935rxvt_term::cmd_write (const char *str, unsigned int count)
924{ 936{
954void 966void
955rxvt_term::flush () 967rxvt_term::flush ()
956{ 968{
957 flush_ev.stop (); 969 flush_ev.stop ();
958 970
959#ifdef TRANSPARENT 971#ifdef HAVE_BG_PIXMAP
960 if (want_full_refresh) 972 if (bgPixmap.check_clearChanged ())
961 { 973 {
962 want_full_refresh = 0; 974// scr_clear (true); This needs to be researched further!
963 scr_clear ();
964 scr_touch (false); 975 scr_touch (false);
965 } 976 }
966#endif 977#endif
967 978
968 if (want_refresh) 979 if (want_refresh)
1004 } 1015 }
1005 while (row < end_row); 1016 while (row < end_row);
1006 } 1017 }
1007 1018
1008 scr_refresh (); 1019 scr_refresh ();
1009 scrollbar_show (1); 1020 scrollBar.show (1);
1010#ifdef USE_XIM 1021#ifdef USE_XIM
1011 IMSendSpot (); 1022 IMSendSpot ();
1012#endif 1023#endif
1013 } 1024 }
1014 1025
1015 display->flush (); 1026 display->flush ();
1016} 1027}
1017 1028
1029/* checks wether a refresh is requested and starts the refresh timer */
1018void 1030void
1019rxvt_term::check_cb (check_watcher &w) 1031rxvt_term::refresh_check ()
1032{
1033 if (want_refresh && !flush_ev.is_active ())
1034 flush_ev.start (1. / 60.); // refresh at max. 60 Hz normally
1035
1036 display->flush ();
1037}
1038
1039void
1040rxvt_term::flush_cb (ev::timer &w, int revents)
1020{ 1041{
1021 make_current (); 1042 make_current ();
1022 1043
1023 display->flush ();
1024
1025 if (want_refresh && !flush_ev.active)
1026 flush_ev.start (NOW + 1. / 60.); // refresh at max. 60 hz normally
1027}
1028
1029void
1030rxvt_term::flush_cb (time_watcher &w)
1031{
1032 make_current ();
1033
1034 refresh_limit = 1;
1035 refresh_count = 0; 1044 refresh_count = 0;
1036 flush (); 1045 flush ();
1037} 1046}
1038 1047
1039#ifdef CURSOR_BLINK 1048#ifdef CURSOR_BLINK
1040void 1049void
1041rxvt_term::cursor_blink_cb (time_watcher &w) 1050rxvt_term::cursor_blink_cb (ev::timer &w, int revents)
1042{ 1051{
1043 hidden_cursor = !hidden_cursor; 1052 hidden_cursor = !hidden_cursor;
1044 want_refresh = 1; 1053 want_refresh = 1;
1045 1054 refresh_check ();
1046 w.start (w.at + CURSOR_BLINK_INTERVAL);
1047} 1055}
1048#endif 1056#endif
1049 1057
1050#ifdef TEXT_BLINK 1058#ifdef TEXT_BLINK
1051void 1059void
1052rxvt_term::text_blink_cb (time_watcher &w) 1060rxvt_term::text_blink_cb (ev::timer &w, int revents)
1053{ 1061{
1054 if (scr_refresh_rend (RS_Blink, RS_Blink)) 1062 if (scr_refresh_rend (RS_Blink, RS_Blink))
1055 { 1063 {
1056 hidden_text = !hidden_text; 1064 hidden_text = !hidden_text;
1057 want_refresh = 1; 1065 want_refresh = 1;
1058 w.start (w.at + TEXT_BLINK_INTERVAL); 1066 refresh_check ();
1059 } 1067 }
1068 else
1069 w.stop ();
1060} 1070}
1061#endif 1071#endif
1062 1072
1063#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 1073#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
1064void 1074void
1065rxvt_term::cont_scroll_cb (time_watcher &w) 1075rxvt_term::cont_scroll_cb (ev::timer &w, int revents)
1066{ 1076{
1067 if ((scrollbar_isUp() || scrollbar_isDn()) && 1077 if ((scrollBar.state == STATE_UP || scrollBar.state == STATE_DOWN)
1068 scr_page (scrollbar_isUp() ? UP : DN, 1)) 1078 && scr_page (scrollBar.state == STATE_UP ? UP : DN, 1))
1069 { 1079 {
1070 want_refresh = 1; 1080 want_refresh = 1;
1071 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1081 refresh_check ();
1072 } 1082 }
1083 else
1084 w.stop ();
1073} 1085}
1074#endif 1086#endif
1075 1087
1076#ifdef SELECTION_SCROLLING 1088#ifdef SELECTION_SCROLLING
1077void 1089void
1078rxvt_term::sel_scroll_cb (time_watcher &w) 1090rxvt_term::sel_scroll_cb (ev::timer &w, int revents)
1079{ 1091{
1080 if (scr_page (scroll_selection_dir, scroll_selection_lines)) 1092 if (scr_page (scroll_selection_dir, scroll_selection_lines))
1081 { 1093 {
1082 selection_extend (selection_save_x, selection_save_y, selection_save_state); 1094 selection_extend (selection_save_x, selection_save_y, selection_save_state);
1083 want_refresh = 1; 1095 want_refresh = 1;
1084 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1096 refresh_check ();
1085 } 1097 }
1098 else
1099 w.stop ();
1086} 1100}
1087#endif 1101#endif
1088 1102
1089#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING) 1103#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
1090void 1104void
1091rxvt_term::slip_wheel_cb (time_watcher &w) 1105rxvt_term::slip_wheel_cb (ev::timer &w, int revents)
1092{ 1106{
1093 if (mouse_slip_wheel_speed == 0 1107 if (scr_changeview (view_start - mouse_slip_wheel_speed))
1094 || mouse_slip_wheel_speed < 0 ? scr_page (DN, -mouse_slip_wheel_speed)
1095 : scr_page (UP, mouse_slip_wheel_speed))
1096 { 1108 {
1097 if (view_start == top_row || view_start == 0)
1098 mouse_slip_wheel_speed = 0;
1099
1100 want_refresh = 1; 1109 want_refresh = 1;
1101 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1110 refresh_check ();
1111 }
1112
1113 if (view_start == top_row || view_start == 0 || mouse_slip_wheel_speed == 0)
1102 } 1114 {
1115 mouse_slip_wheel_speed = 0;
1116 w.stop ();
1117 }
1103} 1118}
1104#endif 1119#endif
1105 1120
1106#if HAVE_SCHED_YIELD 1121#if LINUX_YIELD_HACK
1107static struct event_handler 1122static struct event_handler
1108{ 1123{
1109 check_watcher cw_yield; 1124 ev::prepare yield_ev;
1110 1125
1111 void yield (check_watcher &w) 1126 void yield_cb (ev::prepare &w, int revents)
1112 { 1127 {
1113 sched_yield (); 1128 // this should really be sched_yield(), but the linux guys thought
1129 // that giving a process calling sched_yield () less cpu time than
1130 // ones with high nice levels is a useful thing to do. It surely is is
1131 // allowed by the sus... as is returning ENOSYS.
1132 // since the linux guys additionally thought that breaking the only
1133 // known workaroudn against their unusable sched_yield hack is cool,
1134 // we just nanosleep a bit and hope for the best.
1135
1136 struct timespec ts = { 0, 1000 };
1137 nanosleep (&ts, 0);
1138
1114 w.stop (); 1139 w.stop ();
1115 } 1140 }
1116 1141
1117 event_handler () 1142 event_handler ()
1118 : cw_yield (this, &event_handler::yield) 1143 : yield_ev (this, &event_handler::yield_cb)
1119 { 1144 {
1120 } 1145 }
1121} event_handler; 1146} event_handler;
1122#endif 1147#endif
1123 1148
1143 cmdbuf_endp += r; 1168 cmdbuf_endp += r;
1144 return true; 1169 return true;
1145 } 1170 }
1146 else if (r < 0 && (errno == EAGAIN || errno == EINTR)) 1171 else if (r < 0 && (errno == EAGAIN || errno == EINTR))
1147 { 1172 {
1148#if HAVE_SCHED_YIELD 1173#if LINUX_YIELD_HACK
1149 if (display->is_local) 1174 if (display->is_local)
1150 event_handler.cw_yield.start (); 1175 event_handler.yield_ev.start ();
1151#endif 1176#endif
1152 } 1177 }
1153 else 1178 else
1154 { 1179 {
1155 pty_ev.stop (); 1180 pty_ev.stop ();
1156 1181
1157 if (!OPTION (Opt_hold)) 1182 if (!option (Opt_hold))
1158 destroy (); 1183 destroy ();
1159 } 1184 }
1160 1185
1161 return false; 1186 return false;
1162} 1187}
1163 1188
1164void 1189void
1165rxvt_term::pty_cb (io_watcher &w, short revents) 1190rxvt_term::pty_cb (ev::io &w, int revents)
1166{ 1191{
1167 make_current (); 1192 make_current ();
1168 1193
1169 if (revents & EVENT_READ) 1194 if (revents & ev::READ)
1170 // loop, but don't allow a single term to monopolize us 1195 // loop, but don't allow a single term to monopolize us
1171 while (pty_fill ()) 1196 for (int i = CBUFCNT; i-- && pty_fill (); )
1172 if (cmd_parse ()) 1197 cmd_parse ();
1173 break;
1174 1198
1175 if (revents & EVENT_WRITE) 1199 if (revents & ev::WRITE)
1176 pty_write (); 1200 pty_write ();
1201
1202 refresh_check ();
1177} 1203}
1178 1204
1179void 1205void
1180rxvt_term::pointer_unblank () 1206rxvt_term::pointer_unblank ()
1181{ 1207{
1182 XDefineCursor (display->display, vt, TermWin_cursor); 1208 XDefineCursor (dpy, vt, TermWin_cursor);
1183 recolour_cursor (); 1209 recolour_cursor ();
1184 1210
1185#ifdef POINTER_BLANK 1211#ifdef POINTER_BLANK
1186 hidden_pointer = 0; 1212 hidden_pointer = 0;
1187 1213
1188 if (OPTION (Opt_pointerBlank)) 1214 if (option (Opt_pointerBlank))
1189 pointer_ev.start (NOW + pointerBlankDelay); 1215 pointer_ev.start (pointerBlankDelay);
1190#endif 1216#endif
1191} 1217}
1192 1218
1193#ifdef POINTER_BLANK 1219#ifdef POINTER_BLANK
1194void 1220void
1195rxvt_term::pointer_blank () 1221rxvt_term::pointer_blank ()
1196{ 1222{
1197 if (!OPTION (Opt_pointerBlank)) 1223 if (!option (Opt_pointerBlank))
1198 return; 1224 return;
1199 1225
1200 XDefineCursor (display->display, vt, display->blank_cursor); 1226 XDefineCursor (dpy, vt, display->blank_cursor);
1201 XFlush (display->display); 1227 XFlush (dpy);
1202 1228
1203 hidden_pointer = 1; 1229 hidden_pointer = 1;
1204} 1230}
1205 1231
1206void 1232void
1207rxvt_term::pointer_cb (time_watcher &w) 1233rxvt_term::pointer_cb (ev::timer &w, int revents)
1208{ 1234{
1209 make_current (); 1235 make_current ();
1210 1236
1211 pointer_blank (); 1237 pointer_blank ();
1212} 1238}
1215void 1241void
1216rxvt_term::mouse_report (XButtonEvent &ev) 1242rxvt_term::mouse_report (XButtonEvent &ev)
1217{ 1243{
1218 int button_number, key_state = 0; 1244 int button_number, key_state = 0;
1219 int x, y; 1245 int x, y;
1246 int code = 32;
1220 1247
1221 x = ev.x; 1248 x = Pixel2Col (ev.x);
1222 y = ev.y; 1249 y = Pixel2Row (ev.y);
1223 pixel_position (&x, &y); 1250 if (ev.type == MotionNotify)
1251 {
1252 if (x == mouse_row && y == mouse_col)
1253 return;
1254 mouse_row = x;
1255 mouse_col = y;
1256 code += 32;
1257 }
1224 1258
1225 if (MEvent.button == AnyButton) 1259 if (MEvent.button == AnyButton)
1226 button_number = 3; 1260 button_number = 3;
1227 else 1261 else
1228 { 1262 {
1274 x + 1, 1308 x + 1,
1275 y + 1); 1309 y + 1);
1276#endif 1310#endif
1277 1311
1278 tt_printf ("\033[M%c%c%c", 1312 tt_printf ("\033[M%c%c%c",
1279 (32 + button_number + key_state), 1313 (code + button_number + key_state),
1280 (32 + x + 1), 1314 (32 + x + 1),
1281 (32 + y + 1)); 1315 (32 + y + 1));
1282} 1316}
1283 1317
1284#ifdef USING_W11LIB
1285void
1286rxvt_W11_process_x_event (XEvent *ev)
1287{
1288 rxvt_t *r = rxvt_get_r ();
1289
1290 x_cb (*ev);
1291}
1292#endif
1293
1294/*{{{ process an X event */ 1318/*{{{ process an X event */
1295void 1319void
1296rxvt_term::x_cb (XEvent &ev) 1320rxvt_term::x_cb (XEvent &ev)
1297{ 1321{
1298 make_current (); 1322 make_current ();
1299 1323
1300 dDisp; 1324 dLocal (Display *, dpy);
1301 1325
1302 if (ev.xany.window == vt 1326 if (ev.xany.window == vt
1303 && SHOULD_INVOKE (HOOK_X_EVENT) 1327 && SHOULD_INVOKE (HOOK_X_EVENT)
1304 && HOOK_INVOKE ((this, HOOK_X_EVENT, DT_XEVENT, &ev, DT_END))) 1328 && HOOK_INVOKE ((this, HOOK_X_EVENT, DT_XEVENT, &ev, DT_END)))
1305 return; 1329 return;
1310 unsigned int unused_mask; 1334 unsigned int unused_mask;
1311 1335
1312 switch (ev.type) 1336 switch (ev.type)
1313 { 1337 {
1314 case KeyPress: 1338 case KeyPress:
1315#if ISO_14755 1339 key_press (ev.xkey);
1316 if (!(iso14755buf & ISO_14755_52))
1317#endif
1318 lookup_key (ev.xkey);
1319
1320 break; 1340 break;
1321 1341
1322 case KeyRelease: 1342 case KeyRelease:
1323 { 1343 key_release (ev.xkey);
1324#if (MOUSE_WHEEL && MOUSE_SLIP_WHEELING) || ISO_14755 || ENABLE_PERL
1325 KeySym keysym;
1326
1327 keysym = XLookupKeysym (&ev.xkey, ev.xkey.state & ShiftMask ? 1 : 0); // sorry, only shift supported :/
1328#endif
1329
1330#if ENABLE_FRILLS || ISO_14755
1331 // ISO 14755 support
1332 if (iso14755buf)
1333 if (iso14755buf & ISO_14755_52)
1334 {
1335# if ENABLE_OVERLAY
1336 scr_overlay_off ();
1337# endif
1338# if ISO_14755
1339 // iso14755 part 5.2 handling: release time
1340 // first: controls
1341 if ((ev.xkey.state & ControlMask)
1342 && ((keysym >= 0x40 && keysym <= 0x5f)
1343 || (keysym >= 0x61 && keysym <= 0x7f)))
1344 {
1345 iso14755buf = ISO_14755_51 | 0x2400 | (keysym & 0x1f);
1346 commit_iso14755 ();
1347 goto skip_switch;
1348 }
1349
1350 for (unsigned short *i = iso14755_symtab; i[0]; i+= 2)
1351 if (i[0] == keysym)
1352 {
1353 iso14755buf = ISO_14755_51 | i[1];
1354 commit_iso14755 ();
1355 goto skip_switch;
1356 }
1357
1358 scr_bell ();
1359# endif
1360 iso14755buf = 0;
1361 break;
1362 }
1363 else if ((ev.xkey.state & (ShiftMask | ControlMask)) != (ShiftMask | ControlMask))
1364 {
1365# if ENABLE_OVERLAY
1366 scr_overlay_off ();
1367# endif
1368 if (iso14755buf & ISO_14755_51)
1369 commit_iso14755 ();
1370#if ISO_14755
1371 else if (iso14755buf & ISO_14755_STARTED)
1372 {
1373 iso14755buf = ISO_14755_52; // iso14755 part 5.2: remember empty begin/end pair
1374
1375 scr_overlay_new (0, -1, sizeof ("KEYCAP PICTURE INSERT MODE") - 1, 1);
1376 scr_overlay_set (0, 0, "KEYCAP PICTURE INSERT MODE");
1377 }
1378# endif
1379 else
1380 iso14755buf = 0;
1381 }
1382#endif
1383
1384 if (ev.xany.window == vt
1385 && HOOK_INVOKE ((this, HOOK_KEY_RELEASE, DT_XEVENT, &ev, DT_INT, keysym, DT_END)))
1386 break;
1387
1388#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
1389 if (!(ev.xkey.state & ControlMask))
1390 slip_wheel_ev.stop ();
1391 else if (keysym == XK_Control_L || keysym == XK_Control_R)
1392 mouse_slip_wheel_speed = 0;
1393#endif
1394 break; 1344 break;
1395 }
1396 1345
1397 case ButtonPress: 1346 case ButtonPress:
1398 button_press (ev.xbutton); 1347 button_press (ev.xbutton);
1399 break; 1348 break;
1400 1349
1402 button_release (ev.xbutton); 1351 button_release (ev.xbutton);
1403 break; 1352 break;
1404 1353
1405 case ClientMessage: 1354 case ClientMessage:
1406 if (ev.xclient.format == 32 1355 if (ev.xclient.format == 32
1407 && ev.xclient.message_type == xa[XA_WM_PROTOCOLS]) 1356 && !HOOK_INVOKE ((this, HOOK_CLIENT_MESSAGE, DT_XEVENT, &ev, DT_END)))
1408 { 1357 {
1358 if (ev.xclient.message_type == xa[XA_WM_PROTOCOLS])
1359 {
1360 if (!HOOK_INVOKE ((this, HOOK_WM_PROTOCOLS, DT_XEVENT, &ev, DT_END)))
1361 {
1409 if (ev.xclient.data.l[0] == xa[XA_WM_DELETE_WINDOW]) 1362 if (ev.xclient.data.l[0] == xa[XA_WM_DELETE_WINDOW])
1363 {
1364 if (!HOOK_INVOKE ((this, HOOK_WM_DELETE_WINDOW, DT_XEVENT, &ev, DT_END)))
1410 destroy (); 1365 destroy ();
1366 }
1411#if ENABLE_EWMH 1367#if ENABLE_EWMH
1412 else if (ev.xclient.data.l[0] == xa[XA_NET_WM_PING]) 1368 else if (ev.xclient.data.l[0] == xa[XA_NET_WM_PING])
1413 XSendEvent (disp, ev.xclient.window = display->root, 1369 XSendEvent (dpy, ev.xclient.window = display->root,
1414 False, SubstructureRedirectMask | SubstructureNotifyMask, 1370 False, SubstructureRedirectMask | SubstructureNotifyMask,
1415 &ev); 1371 &ev);
1372#endif
1373 }
1374 }
1375#if ENABLE_XEMBED
1376 else if (ev.xclient.format == 32 && ev.xclient.message_type == xa[XA_XEMBED])
1377 {
1378 if (ev.xclient.data.l[1] == XEMBED_FOCUS_IN)
1379 focus_in ();
1380 else if (ev.xclient.data.l[1] == XEMBED_FOCUS_OUT)
1381 focus_out ();
1382 }
1416#endif 1383#endif
1417 } 1384 }
1418#if ENABLE_XEMBED
1419 else if (ev.xclient.format == 32 && ev.xclient.message_type == xa[XA_XEMBED])
1420 {
1421 if (ev.xclient.data.l[1] == XEMBED_FOCUS_IN)
1422 focus_in ();
1423 else if (ev.xclient.data.l[1] == XEMBED_FOCUS_OUT)
1424 focus_out ();
1425 }
1426#endif
1427#ifdef OFFIX_DND
1428 /* OffiX Dnd (drag 'n' drop) protocol */
1429 else if (ev.xclient.message_type == xa[XA_DNDPROTOCOL]
1430 && (ev.xclient.data.l[0] == DndFile
1431 || ev.xclient.data.l[0] == DndDir
1432 || ev.xclient.data.l[0] == DndLink))
1433 {
1434 /* Get Dnd data */
1435 Atom ActualType;
1436 int ActualFormat;
1437 unsigned char *data;
1438 unsigned long Size, RemainingBytes;
1439
1440 XGetWindowProperty (disp, display->root,
1441 xa[XA_DNDSELECTION],
1442 0L, 1000000L,
1443 False, AnyPropertyType,
1444 &ActualType, &ActualFormat,
1445 &Size, &RemainingBytes,
1446 &data);
1447 set_string_property (XA_CUT_BUFFER0, data);
1448 XFree (data);
1449 selection_paste (display->root, XA_CUT_BUFFER0, true);
1450 XSetInputFocus (disp, display->root, RevertToNone, CurrentTime);
1451 }
1452#endif /* OFFIX_DND */
1453 break;
1454
1455 case MappingNotify:
1456 XRefreshKeyboardMapping (&ev.xmapping);
1457 break; 1385 break;
1458 1386
1459 /* 1387 /*
1460 * XXX: this is not the _current_ arrangement 1388 * XXX: this is not the _current_ arrangement
1461 * Here's my conclusion: 1389 * Here's my conclusion:
1480 break; 1408 break;
1481 } 1409 }
1482 break; 1410 break;
1483 1411
1484 case FocusIn: 1412 case FocusIn:
1413 if (ev.xfocus.detail != NotifyInferior
1414 && ev.xfocus.detail != NotifyPointer
1415 && ev.xfocus.mode != NotifyGrab)
1485 focus_in (); 1416 focus_in ();
1486 break; 1417 break;
1487 1418
1488 case FocusOut: 1419 case FocusOut:
1420 if (ev.xfocus.detail != NotifyInferior
1421 && ev.xfocus.detail != NotifyPointer
1422 && ev.xfocus.mode != NotifyGrab)
1489 focus_out (); 1423 focus_out ();
1490 break; 1424 break;
1491 1425
1492 case ConfigureNotify: 1426 case ConfigureNotify:
1427 /*fprintf (stderr, "ConfigureNotify for %X, parent is %X, geom is %dx%d%+d%+d, old geom was %dx%d\n",
1428 ev.xconfigure.window, parent[0], ev.xconfigure.width, ev.xconfigure.height, ev.xconfigure.x, ev.xconfigure.y,
1429 szHint.width, szHint.height);*/
1493 if (ev.xconfigure.window == parent[0]) 1430 if (ev.xconfigure.window == parent[0])
1494 { 1431 {
1495 while (XCheckTypedWindowEvent (disp, ev.xconfigure.window, ConfigureNotify, &ev)) 1432 while (XCheckTypedWindowEvent (dpy, ev.xconfigure.window, ConfigureNotify, &ev))
1496 ; 1433 ;
1497 1434
1498 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height) 1435 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height)
1499 { 1436 {
1500 seen_resize = 1; 1437 seen_resize = 1;
1501 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1); 1438 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1);
1502 } 1439 }
1440 else
1441 {
1442#ifdef HAVE_BG_PIXMAP
1443 if (bgPixmap.window_position_sensitive ())
1444 {
1445 if (mapped)
1446 update_background ();
1447 else
1448 bgPixmap.invalidate ();
1449 }
1450#endif
1451 }
1503 1452
1504 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END)); 1453 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END));
1505
1506#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */
1507 if (OPTION (Opt_transparent))
1508 check_our_parents ();
1509#endif
1510 } 1454 }
1511 break; 1455 break;
1512 1456
1513 case PropertyNotify: 1457 case PropertyNotify:
1458 if (!HOOK_INVOKE ((this, HOOK_PROPERTY_NOTIFY, DT_XEVENT, &ev, DT_END)))
1514 if (ev.xproperty.atom == xa[XA_VT_SELECTION] 1459 if (ev.xproperty.atom == xa[XA_VT_SELECTION]
1515 && ev.xproperty.state == PropertyNewValue) 1460 && ev.xproperty.state == PropertyNewValue)
1516 selection_property (ev.xproperty.window, ev.xproperty.atom); 1461 selection_property (ev.xproperty.window, ev.xproperty.atom);
1517 1462
1518 break; 1463 break;
1519 1464
1520 case SelectionClear: 1465 case SelectionClear:
1521 selection_clear (); 1466 selection_clear ();
1529 case SelectionRequest: 1474 case SelectionRequest:
1530 selection_send (ev.xselectionrequest); 1475 selection_send (ev.xselectionrequest);
1531 break; 1476 break;
1532 1477
1533 case MapNotify: 1478 case MapNotify:
1479#ifdef HAVE_BG_PIXMAP
1480 /* This is needed spcifically to fix the case of no window manager or a
1481 * non-reparenting window manager. In those cases we never get first
1482 * ConfigureNotify. Also that speeds startup under normal WM, by taking
1483 * care of multiplicity of ConfigureNotify events arriwing while WM does
1484 * reparenting.
1485 * We should not render background immidiately, as there could be several
1486 * ConfigureNotify's to follow. Lets take care of all of them in one scoop
1487 * by scheduling background redraw as soon as we can, but giving a short
1488 * bit of time for ConfigureNotifies to arrive.
1489 * We should render background PRIOR to drawing any text, but AFTER all
1490 * of ConfigureNotifys for the best results.
1491 */
1492 if (bgPixmap.flags & bgPixmap_t::isInvalid)
1493 update_background_ev.start (0.025);
1494#endif
1534 mapped = 1; 1495 mapped = 1;
1535#ifdef TEXT_BLINK 1496#ifdef TEXT_BLINK
1536 text_blink_ev.start (NOW + TEXT_BLINK_INTERVAL); 1497 text_blink_ev.start ();
1537#endif 1498#endif
1538 HOOK_INVOKE ((this, HOOK_MAP_NOTIFY, DT_XEVENT, &ev, DT_END)); 1499 HOOK_INVOKE ((this, HOOK_MAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1539 break; 1500 break;
1540 1501
1541 case UnmapNotify: 1502 case UnmapNotify:
1543#ifdef TEXT_BLINK 1504#ifdef TEXT_BLINK
1544 text_blink_ev.stop (); 1505 text_blink_ev.stop ();
1545#endif 1506#endif
1546 HOOK_INVOKE ((this, HOOK_UNMAP_NOTIFY, DT_XEVENT, &ev, DT_END)); 1507 HOOK_INVOKE ((this, HOOK_UNMAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1547 break; 1508 break;
1548
1549#ifdef TRANSPARENT
1550 case ReparentNotify:
1551 rootwin_cb (ev);
1552 break;
1553#endif /* TRANSPARENT */
1554 1509
1555 case GraphicsExpose: 1510 case GraphicsExpose:
1556 case Expose: 1511 case Expose:
1557 if (ev.xany.window == vt) 1512 if (ev.xany.window == vt)
1558 { 1513 {
1559 do 1514 do
1515 {
1560 scr_expose (ev.xexpose.x, ev.xexpose.y, 1516 scr_expose (ev.xexpose.x, ev.xexpose.y,
1561 ev.xexpose.width, ev.xexpose.height, False); 1517 ev.xexpose.width, ev.xexpose.height, False);
1518 }
1562 while (XCheckTypedWindowEvent (disp, vt, ev.xany.type, &ev)); 1519 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev));
1563 1520
1564 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose; 1521 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose;
1565 1522
1566 while (XCheckTypedWindowEvent (disp, vt, ev.xany.type, &ev)) 1523 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev))
1524 {
1567 scr_expose (ev.xexpose.x, ev.xexpose.y, 1525 scr_expose (ev.xexpose.x, ev.xexpose.y,
1568 ev.xexpose.width, ev.xexpose.height, False); 1526 ev.xexpose.width, ev.xexpose.height, False);
1527 }
1569 1528
1570 want_refresh = 1; 1529 want_refresh = 1;
1571 } 1530 }
1572 else 1531 else
1573 { 1532 {
1574 XEvent unused_event; 1533 XEvent unused_event;
1575 1534
1576 while (XCheckTypedWindowEvent (disp, ev.xany.window, Expose, &unused_event)) 1535 while (XCheckTypedWindowEvent (dpy, ev.xany.window, Expose, &unused_event))
1577 ; 1536 ;
1578 while (XCheckTypedWindowEvent (disp, ev.xany.window, GraphicsExpose, &unused_event)) 1537 while (XCheckTypedWindowEvent (dpy, ev.xany.window, GraphicsExpose, &unused_event))
1579 ; 1538 ;
1580 1539
1581 if (isScrollbarWindow (ev.xany.window)) 1540 if (scrollBar.state && ev.xany.window == scrollBar.win)
1582 { 1541 {
1583 scrollBar.setIdle (); 1542 scrollBar.state = STATE_IDLE;
1584 scrollbar_show (0); 1543 scrollBar.show (0);
1585 } 1544 }
1586
1587#ifdef TRANSPARENT
1588 if (am_transparent && ev.xany.window == parent[0])
1589 XClearWindow (disp, ev.xany.window);
1590#endif
1591 } 1545 }
1592 break; 1546 break;
1593 1547
1594 case MotionNotify: 1548 case MotionNotify:
1595#ifdef POINTER_BLANK 1549#ifdef POINTER_BLANK
1596 if (hidden_pointer) 1550 if (hidden_pointer)
1597 pointer_unblank (); 1551 pointer_unblank ();
1598#endif 1552#endif
1553 if ((priv_modes & PrivMode_MouseBtnEvent && ev.xbutton.state & (Button1Mask|Button2Mask|Button3Mask))
1554 || priv_modes & PrivMode_MouseAnyEvent)
1555 mouse_report (ev.xbutton);
1599 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate) 1556 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate)
1600 break; 1557 break;
1601 1558
1602 if (ev.xany.window == vt) 1559 if (ev.xany.window == vt)
1603 { 1560 {
1604 if (SHOULD_INVOKE (HOOK_MOTION_NOTIFY) 1561 if (SHOULD_INVOKE (HOOK_MOTION_NOTIFY)
1605 && HOOK_INVOKE ((this, HOOK_MOTION_NOTIFY, DT_XEVENT, &ev, DT_END))) 1562 && HOOK_INVOKE ((this, HOOK_MOTION_NOTIFY, DT_XEVENT, &ev, DT_END)))
1606 ; // nop 1563 ; // nop
1607 else if (ev.xbutton.state & (Button1Mask | Button3Mask)) 1564 else if (ev.xbutton.state & (Button1Mask | Button3Mask))
1608 { 1565 {
1609 while (XCheckTypedWindowEvent (disp, vt, MotionNotify, &ev)) 1566 while (XCheckTypedWindowEvent (dpy, vt, MotionNotify, &ev))
1610 ; 1567 ;
1611 1568
1612 XQueryPointer (disp, vt, 1569 XQueryPointer (dpy, vt,
1613 &unused_root, &unused_child, 1570 &unused_root, &unused_child,
1614 &unused_root_x, &unused_root_y, 1571 &unused_root_x, &unused_root_y,
1615 &ev.xbutton.x, &ev.xbutton.y, 1572 &ev.xbutton.x, &ev.xbutton.y,
1616 &ev.xbutton.state); 1573 &ev.xbutton.state);
1617#ifdef MOUSE_THRESHOLD 1574#ifdef MOUSE_THRESHOLD
1637 int dist; 1594 int dist;
1638 1595
1639 /* don't clobber the current delay if we are 1596 /* don't clobber the current delay if we are
1640 * already in the middle of scrolling. 1597 * already in the middle of scrolling.
1641 */ 1598 */
1642 if (!sel_scroll_ev.active) 1599 if (!sel_scroll_ev.is_active ())
1643 sel_scroll_ev.start (NOW + SCROLLBAR_INITIAL_DELAY); 1600 sel_scroll_ev.start (SCROLLBAR_INITIAL_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
1644 1601
1645 /* save the event params so we can highlight 1602 /* save the event params so we can highlight
1646 * the selection in the pending-scroll loop 1603 * the selection in the pending-scroll loop
1647 */ 1604 */
1648 selection_save_x = ev.xbutton.x; 1605 selection_save_x = ev.xbutton.x;
1670 else 1627 else
1671 { 1628 {
1672 /* we are within the text window, so we 1629 /* we are within the text window, so we
1673 * shouldn't be scrolling 1630 * shouldn't be scrolling
1674 */ 1631 */
1675 if (sel_scroll_ev.active)
1676 sel_scroll_ev.stop(); 1632 sel_scroll_ev.stop();
1677 } 1633 }
1678#endif 1634#endif
1679#ifdef MOUSE_THRESHOLD 1635#ifdef MOUSE_THRESHOLD
1680 } 1636 }
1681#endif 1637#endif
1682 } 1638 }
1683 } 1639 }
1684 else if (isScrollbarWindow (ev.xany.window) && scrollbar_isMotion ()) 1640 else if (scrollBar.state == STATE_MOTION && ev.xany.window == scrollBar.win)
1685 { 1641 {
1686 while (XCheckTypedWindowEvent (disp, scrollBar.win, 1642 while (XCheckTypedWindowEvent (dpy, scrollBar.win,
1687 MotionNotify, &ev)) 1643 MotionNotify, &ev))
1688 ; 1644 ;
1689 1645
1690 XQueryPointer (disp, scrollBar.win, 1646 XQueryPointer (dpy, scrollBar.win,
1691 &unused_root, &unused_child, 1647 &unused_root, &unused_child,
1692 &unused_root_x, &unused_root_y, 1648 &unused_root_x, &unused_root_y,
1693 &ev.xbutton.x, &ev.xbutton.y, 1649 &ev.xbutton.x, &ev.xbutton.y,
1694 &unused_mask); 1650 &unused_mask);
1695 scr_move_to (scrollbar_position (ev.xbutton.y) - csrO, 1651 scr_move_to (scrollbar_position (ev.xbutton.y) - csrO,
1696 scrollbar_size ()); 1652 scrollBar.size ());
1697 want_refresh = 1; 1653 want_refresh = 1;
1698 refresh_limit = 0;
1699 scrollbar_show (1); 1654 scrollBar.show (1);
1700 } 1655 }
1701 break; 1656 break;
1702 } 1657 }
1703 1658
1704skip_switch: ;
1705
1706#if defined(CURSOR_BLINK) 1659#if defined(CURSOR_BLINK)
1707 if (OPTION (Opt_cursorBlink) && ev.type == KeyPress) 1660 if (option (Opt_cursorBlink) && ev.type == KeyPress)
1708 { 1661 {
1709 if (hidden_cursor) 1662 if (hidden_cursor)
1710 { 1663 {
1711 hidden_cursor = 0; 1664 hidden_cursor = 0;
1712 want_refresh = 1; 1665 want_refresh = 1;
1713 } 1666 }
1714 1667
1715 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL); 1668 cursor_blink_ev.again ();
1716 } 1669 }
1717#endif 1670#endif
1718 1671
1719#if defined(POINTER_BLANK) 1672#if defined(POINTER_BLANK)
1720 if (OPTION (Opt_pointerBlank) && pointerBlankDelay > 0) 1673 if (option (Opt_pointerBlank) && pointerBlankDelay > 0)
1721 { 1674 {
1722 if (ev.type == MotionNotify 1675 if (ev.type == MotionNotify
1723 || ev.type == ButtonPress 1676 || ev.type == ButtonPress
1724 || ev.type == ButtonRelease) 1677 || ev.type == ButtonRelease)
1725 if (hidden_pointer) 1678 if (hidden_pointer)
1727 1680
1728 if (ev.type == KeyPress && hidden_pointer == 0) 1681 if (ev.type == KeyPress && hidden_pointer == 0)
1729 pointer_blank (); 1682 pointer_blank ();
1730 } 1683 }
1731#endif 1684#endif
1685
1686 refresh_check ();
1687}
1688
1689void
1690rxvt_term::set_urgency (bool enable)
1691{
1692 if (enable == urgency_hint)
1693 return;
1694
1695 if (XWMHints *h = XGetWMHints (dpy, parent[0]))
1696 {
1697 h->flags = h->flags & ~XUrgencyHint | (enable ? XUrgencyHint : 0);
1698 XSetWMHints (dpy, parent[0], h);
1699 urgency_hint = enable;
1700 }
1732} 1701}
1733 1702
1734void 1703void
1735rxvt_term::focus_in () 1704rxvt_term::focus_in ()
1736{ 1705{
1737 if (!focus) 1706 if (!focus)
1738 { 1707 {
1739 focus = 1; 1708 focus = 1;
1740 want_refresh = 1; 1709 want_refresh = 1;
1741 1710
1742 HOOK_INVOKE ((this, HOOK_FOCUS_OUT, DT_END));
1743
1744#if USE_XIM 1711#if USE_XIM
1745 if (Input_Context != NULL) 1712 if (Input_Context != NULL)
1746 { 1713 {
1747 IMSetStatusPosition (); 1714 IMSetPosition ();
1748 XSetICFocus (Input_Context); 1715 XSetICFocus (Input_Context);
1749 } 1716 }
1750#endif 1717#endif
1751#if CURSOR_BLINK 1718#if CURSOR_BLINK
1752 if (OPTION (Opt_cursorBlink)) 1719 if (option (Opt_cursorBlink))
1753 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL); 1720 cursor_blink_ev.again ();
1754#endif 1721#endif
1755#if OFF_FOCUS_FADING 1722#if OFF_FOCUS_FADING
1756 if (rs[Rs_fade]) 1723 if (rs[Rs_fade])
1757 { 1724 {
1758 pix_colors = pix_colors_focused; 1725 pix_colors = pix_colors_focused;
1759 scr_recolour (); 1726 scr_recolour ();
1760 } 1727 }
1761#endif 1728#endif
1729#if ENABLE_FRILLS
1730 if (option (Opt_urgentOnBell))
1731 set_urgency (0);
1732#endif
1733
1734 HOOK_INVOKE ((this, HOOK_FOCUS_IN, DT_END));
1762 } 1735 }
1763} 1736}
1764 1737
1765void 1738void
1766rxvt_term::focus_out () 1739rxvt_term::focus_out ()
1768 if (focus) 1741 if (focus)
1769 { 1742 {
1770 focus = 0; 1743 focus = 0;
1771 want_refresh = 1; 1744 want_refresh = 1;
1772 1745
1773 HOOK_INVOKE ((this, HOOK_FOCUS_OUT, DT_END)); 1746#if ENABLE_FRILLS
1774 1747 if (option (Opt_urgentOnBell))
1748 set_urgency (0);
1749#endif
1775#if ENABLE_FRILLS || ISO_14755 1750#if ENABLE_FRILLS || ISO_14755
1776 if (iso14755buf) 1751 if (iso14755buf)
1777 { 1752 {
1778 iso14755buf = 0; 1753 iso14755buf = 0;
1779# if ENABLE_OVERLAY 1754# if ISO_14755
1780 scr_overlay_off (); 1755 scr_overlay_off ();
1781# endif 1756# endif
1782 } 1757 }
1783#endif 1758#endif
1784#if USE_XIM 1759#if USE_XIM
1785 if (Input_Context != NULL) 1760 if (Input_Context != NULL)
1786 XUnsetICFocus (Input_Context); 1761 XUnsetICFocus (Input_Context);
1787#endif 1762#endif
1788#if CURSOR_BLINK 1763#if CURSOR_BLINK
1789 if (OPTION (Opt_cursorBlink)) 1764 if (option (Opt_cursorBlink))
1790 cursor_blink_ev.stop (); 1765 cursor_blink_ev.stop ();
1766
1791 hidden_cursor = 0; 1767 hidden_cursor = 0;
1792#endif 1768#endif
1793#if OFF_FOCUS_FADING 1769#if OFF_FOCUS_FADING
1794 if (rs[Rs_fade]) 1770 if (rs[Rs_fade])
1795 { 1771 {
1796 pix_colors = pix_colors_unfocused; 1772 pix_colors = pix_colors_unfocused;
1797 scr_recolour (); 1773 scr_recolour ();
1798 } 1774 }
1799#endif 1775#endif
1776
1777 HOOK_INVOKE ((this, HOOK_FOCUS_OUT, DT_END));
1778 }
1779}
1780
1781void
1782rxvt_term::update_fade_color (unsigned int idx)
1783{
1784#if OFF_FOCUS_FADING
1785 if (rs[Rs_fade])
1800 } 1786 {
1787 rgba c;
1788 pix_colors [Color_fade].get (c);
1789 pix_colors_focused [idx].fade (this, atoi (rs[Rs_fade]), pix_colors_unfocused [idx], c);
1790 }
1791#endif
1801} 1792}
1802 1793
1803#if TRANSPARENT 1794#if ENABLE_TRANSPARENCY || ENABLE_PERL
1804void 1795void
1805rxvt_term::rootwin_cb (XEvent &ev) 1796rxvt_term::rootwin_cb (XEvent &ev)
1806{ 1797{
1807 make_current (); 1798 make_current ();
1808 1799
1800 if (SHOULD_INVOKE (HOOK_ROOT_EVENT)
1801 && HOOK_INVOKE ((this, HOOK_ROOT_EVENT, DT_XEVENT, &ev, DT_END)))
1802 return;
1803
1804# if ENABLE_TRANSPARENCY
1809 switch (ev.type) 1805 switch (ev.type)
1810 { 1806 {
1811 case PropertyNotify: 1807 case PropertyNotify:
1812 /* 1808 /*
1813 * if user used some Esetroot compatible prog to set the root bg, 1809 * if user used some Esetroot compatible prog to set the root bg,
1814 * use the property to determine the pixmap. We use it later on. 1810 * use the property to determine the pixmap. We use it later on.
1815 */ 1811 */
1816 if (ev.xproperty.atom != xa[XA_XROOTPMAP_ID] 1812 if (ev.xproperty.atom == xa[XA_XROOTPMAP_ID]
1817 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID]) 1813 || ev.xproperty.atom == xa[XA_ESETROOT_PMAP_ID])
1818 return; 1814 {
1815 bgPixmap.set_root_pixmap ();
1816 update_background ();
1817 }
1819 1818
1820 /* FALLTHROUGH */
1821 case ReparentNotify:
1822 if (OPTION (Opt_transparent) && check_our_parents () && am_transparent)
1823 want_refresh = want_full_refresh = 1;
1824 break; 1819 break;
1825 } 1820 }
1821# endif
1822
1823 refresh_check ();
1826} 1824}
1827#endif 1825#endif
1828 1826
1829void 1827void
1830rxvt_term::button_press (XButtonEvent &ev) 1828rxvt_term::button_press (XButtonEvent &ev)
1839 /* 1837 /*
1840 * VT window processing of button press 1838 * VT window processing of button press
1841 */ 1839 */
1842 if (ev.window == vt) 1840 if (ev.window == vt)
1843 { 1841 {
1842 if (HOOK_INVOKE ((this, HOOK_BUTTON_PRESS, DT_XEVENT, &ev, DT_END)))
1843 return;
1844
1844#if ISO_14755 1845#if ISO_14755
1845 // 5.4 1846 // 5.4
1846 if (iso14755buf & (ISO_14755_STARTED | ISO_14755_54)) 1847 if (iso14755buf & (ISO_14755_STARTED | ISO_14755_54))
1847 { 1848 {
1848 iso14755_54 (ev.x, ev.y); 1849 iso14755_54 (ev.x, ev.y);
1882 mouse_report (ev); 1883 mouse_report (ev);
1883 } 1884 }
1884#else 1885#else
1885 MEvent.button = ev.button; 1886 MEvent.button = ev.button;
1886 mouse_report (ev); 1887 mouse_report (ev);
1887#endif /* MOUSE_REPORT_DOUBLECLICK */ 1888#endif /* MOUSE_REPORT_DOUBLECLICK */
1888 1889
1889 } 1890 }
1890 else 1891 else
1891 { 1892 {
1892 if (ev.button != MEvent.button) 1893 if (ev.button != MEvent.button)
1893 MEvent.clicks = 0; 1894 MEvent.clicks = 0;
1894 1895
1895 if (!HOOK_INVOKE ((this, HOOK_BUTTON_PRESS, DT_XEVENT, &ev, DT_END)))
1896 switch (ev.button) 1896 switch (ev.button)
1897 { 1897 {
1898 case Button1: 1898 case Button1:
1899 /* allow meta + click to select rectangular areas */ 1899 /* allow meta + click to select rectangular areas */
1900 /* should be done in screen.C */ 1900 /* should be done in screen.C */
1901#if ENABLE_FRILLS 1901#if ENABLE_FRILLS
1902 selection.rect = !!(ev.state & ModMetaMask); 1902 selection.rect = !!(ev.state & ModMetaMask);
1903#else 1903#else
1904 selection.rect = false; 1904 selection.rect = false;
1905#endif 1905#endif
1906 1906
1907 /* allow shift+left click to extend selection */ 1907 /* allow shift+left click to extend selection */
1908 if (ev.state & ShiftMask && !(priv_modes & PrivMode_mouse_report)) 1908 if (ev.state & ShiftMask && !(priv_modes & PrivMode_mouse_report))
1909 { 1909 {
1910 if (MEvent.button == Button1 && clickintime) 1910 if (MEvent.button == Button1 && clickintime)
1911 selection_rotate (ev.x, ev.y); 1911 selection_rotate (ev.x, ev.y);
1912 else 1912 else
1913 selection_extend (ev.x, ev.y, 1); 1913 selection_extend (ev.x, ev.y, 1);
1914 } 1914 }
1915 else 1915 else
1916 { 1916 {
1917 if (MEvent.button == Button1 && clickintime) 1917 if (MEvent.button == Button1 && clickintime)
1918 MEvent.clicks++; 1918 MEvent.clicks++;
1919 else 1919 else
1920 MEvent.clicks = 1; 1920 MEvent.clicks = 1;
1921 1921
1922 selection_click (MEvent.clicks, ev.x, ev.y); 1922 selection_click (MEvent.clicks, ev.x, ev.y);
1923 } 1923 }
1924 1924
1925 MEvent.button = Button1; 1925 MEvent.button = Button1;
1926 break; 1926 break;
1927 1927
1928 case Button3: 1928 case Button3:
1929 if (MEvent.button == Button3 && clickintime) 1929 if (MEvent.button == Button3 && clickintime)
1930 selection_rotate (ev.x, ev.y); 1930 selection_rotate (ev.x, ev.y);
1931 else 1931 else
1932 selection_extend (ev.x, ev.y, 1); 1932 selection_extend (ev.x, ev.y, 1);
1933 1933
1934 MEvent.button = Button3; 1934 MEvent.button = Button3;
1935 break; 1935 break;
1936 } 1936 }
1937 } 1937 }
1938 1938
1939 MEvent.time = ev.time; 1939 MEvent.time = ev.time;
1940 return; 1940 return;
1941 } 1941 }
1942 1942
1943 /* 1943 /*
1944 * Scrollbar window processing of button press 1944 * Scrollbar window processing of button press
1945 */ 1945 */
1946 if (isScrollbarWindow (ev.window)) 1946 if (scrollBar.state && ev.window == scrollBar.win)
1947 { 1947 {
1948 scrollBar.setIdle (); 1948 page_dirn direction = NO_DIR;
1949
1950 if (scrollBar.upButton (ev.y))
1951 direction = UP; /* up */
1952 else if (scrollBar.dnButton (ev.y))
1953 direction = DN; /* down */
1954
1955 scrollBar.state = STATE_IDLE;
1949 /* 1956 /*
1950 * Rxvt-style scrollbar: 1957 * Rxvt-style scrollbar:
1951 * move up if mouse is above slider 1958 * move up if mouse is above slider
1952 * move dn if mouse is below slider 1959 * move dn if mouse is below slider
1953 * 1960 *
1962 /* 1969 /*
1963 * Mouse report disabled scrollbar: 1970 * Mouse report disabled scrollbar:
1964 * arrow buttons - send up/down 1971 * arrow buttons - send up/down
1965 * click on scrollbar - send pageup/down 1972 * click on scrollbar - send pageup/down
1966 */ 1973 */
1967 if ((scrollBar.style == R_SB_NEXT 1974 if (direction == UP)
1968 && scrollbarnext_upButton (ev.y))
1969 || (scrollBar.style == R_SB_RXVT
1970 && scrollbarrxvt_upButton (ev.y)))
1971 tt_printf ("\033[A"); 1975 tt_printf ("\033[A");
1972 else if ((scrollBar.style == R_SB_NEXT 1976 else if (direction == DN)
1973 && scrollbarnext_dnButton (ev.y))
1974 || (scrollBar.style == R_SB_RXVT
1975 && scrollbarrxvt_dnButton (ev.y)))
1976 tt_printf ("\033[B"); 1977 tt_printf ("\033[B");
1977 else 1978 else
1978 switch (ev.button) 1979 switch (ev.button)
1979 { 1980 {
1980 case Button2: 1981 case Button2:
1987 tt_printf ("\033[5~"); 1988 tt_printf ("\033[5~");
1988 break; 1989 break;
1989 } 1990 }
1990 } 1991 }
1991 else 1992 else
1992#endif /* NO_SCROLLBAR_REPORT */ 1993#endif /* NO_SCROLLBAR_REPORT */
1993
1994 {
1995 char upordown = 0;
1996
1997 if (scrollBar.style == R_SB_NEXT)
1998 { 1994 {
1999 if (scrollbarnext_upButton (ev.y)) 1995 if (direction != NO_DIR)
2000 upordown = -1; /* up */
2001 else if (scrollbarnext_dnButton (ev.y))
2002 upordown = 1; /* down */
2003 }
2004 else if (scrollBar.style == R_SB_RXVT)
2005 {
2006 if (scrollbarrxvt_upButton (ev.y))
2007 upordown = -1; /* up */
2008 else if (scrollbarrxvt_dnButton (ev.y))
2009 upordown = 1; /* down */
2010 }
2011 if (upordown)
2012 { 1996 {
2013#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 1997#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
1998 if (!cont_scroll_ev.is_active ())
2014 cont_scroll_ev.start (NOW + SCROLLBAR_INITIAL_DELAY); 1999 cont_scroll_ev.start (SCROLLBAR_INITIAL_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
2015#endif 2000#endif
2016 if (scr_page (upordown < 0 ? UP : DN, 1)) 2001 if (scr_page (direction, 1))
2017 { 2002 {
2018 if (upordown < 0) 2003 if (direction == UP)
2019 scrollBar.setUp (); 2004 scrollBar.state = STATE_UP;
2020 else 2005 else
2021 scrollBar.setDn (); 2006 scrollBar.state = STATE_DOWN;
2022 } 2007 }
2023 } 2008 }
2024 else 2009 else
2025 switch (ev.button) 2010 switch (ev.button)
2026 { 2011 {
2027 case Button2: 2012 case Button2:
2028 switch (scrollbar_align) 2013 switch (scrollBar.align)
2029 { 2014 {
2030 case R_SB_ALIGN_TOP: 2015 case R_SB_ALIGN_TOP:
2031 csrO = 0; 2016 csrO = 0;
2032 break; 2017 break;
2033 case R_SB_ALIGN_CENTRE: 2018 case R_SB_ALIGN_CENTRE:
2039 } 2024 }
2040 2025
2041 if (scrollBar.style == R_SB_XTERM 2026 if (scrollBar.style == R_SB_XTERM
2042 || scrollbar_above_slider (ev.y) 2027 || scrollbar_above_slider (ev.y)
2043 || scrollbar_below_slider (ev.y)) 2028 || scrollbar_below_slider (ev.y))
2044 scr_move_to (scrollbar_position (ev.y) - csrO, scrollbar_size ()); 2029 scr_move_to (scrollbar_position (ev.y) - csrO, scrollBar.size ());
2045 2030
2046 scrollBar.setMotion (); 2031 scrollBar.state = STATE_MOTION;
2047 break; 2032 break;
2048 2033
2049 case Button1: 2034 case Button1:
2050 if (scrollbar_align == R_SB_ALIGN_CENTRE) 2035 if (scrollBar.align == R_SB_ALIGN_CENTRE)
2051 csrO = ev.y - scrollBar.top; 2036 csrO = ev.y - scrollBar.top;
2052 /* FALLTHROUGH */ 2037 /* FALLTHROUGH */
2053 2038
2054 case Button3: 2039 case Button3:
2055 if (scrollBar.style != R_SB_XTERM) 2040 if (scrollBar.style != R_SB_XTERM)
2065 scr_page (DN, nrow - 1); 2050 scr_page (DN, nrow - 1);
2066# else 2051# else
2067 scr_page (DN, nrow / 4); 2052 scr_page (DN, nrow / 4);
2068# endif 2053# endif
2069 else 2054 else
2070 scrollBar.setMotion (); 2055 scrollBar.state = STATE_MOTION;
2071 } 2056 }
2072 else 2057 else
2073 { 2058 {
2074 scr_page ((ev.button == Button1 ? DN : UP), 2059 scr_page ((ev.button == Button1 ? DN : UP),
2075 (nrow 2060 (nrow
2076 * scrollbar_position (ev.y) 2061 * scrollbar_position (ev.y)
2077 / scrollbar_size ())); 2062 / scrollBar.size ()));
2078 } 2063 }
2079 2064
2080 break; 2065 break;
2081 } 2066 }
2082 } 2067 }
2092 2077
2093 csrO = 0; /* reset csr Offset */ 2078 csrO = 0; /* reset csr Offset */
2094 if (!bypass_keystate) 2079 if (!bypass_keystate)
2095 reportmode = !! (priv_modes & PrivMode_mouse_report); 2080 reportmode = !! (priv_modes & PrivMode_mouse_report);
2096 2081
2097 if (scrollbar_isUpDn ()) 2082 if (scrollBar.state == STATE_UP || scrollBar.state == STATE_DOWN)
2098 { 2083 {
2099 scrollBar.setIdle (); 2084 scrollBar.state = STATE_IDLE;
2100 scrollbar_show (0); 2085 scrollBar.show (0);
2101 } 2086 }
2102 2087
2103#ifdef SELECTION_SCROLLING 2088#ifdef SELECTION_SCROLLING
2104 if (sel_scroll_ev.active)
2105 sel_scroll_ev.stop(); 2089 sel_scroll_ev.stop();
2106#endif 2090#endif
2107 2091
2108 if (ev.window == vt) 2092 if (ev.window == vt)
2109 { 2093 {
2094 if (HOOK_INVOKE ((this, HOOK_BUTTON_RELEASE, DT_XEVENT, &ev, DT_END)))
2095 return;
2096
2110#if ISO_14755 2097#if ISO_14755
2111 // 5.4 2098 // 5.4
2112 if (iso14755buf & (ISO_14755_STARTED | ISO_14755_54)) 2099 if (iso14755buf & (ISO_14755_STARTED | ISO_14755_54))
2113 return; 2100 return;
2114#endif 2101#endif
2102
2115 if (reportmode) 2103 if (reportmode)
2116 { 2104 {
2117 /* mouse report from vt window */ 2105 /* mouse report from vt window */
2118 /* don't report release of wheel "buttons" */ 2106 /* don't report release of wheel "buttons" */
2119 if (ev.button >= 4) 2107 if (ev.button >= 4)
2130 mouse_report (ev); 2118 mouse_report (ev);
2131 } 2119 }
2132#else /* MOUSE_REPORT_DOUBLECLICK */ 2120#else /* MOUSE_REPORT_DOUBLECLICK */
2133 MEvent.button = AnyButton; 2121 MEvent.button = AnyButton;
2134 mouse_report (ev); 2122 mouse_report (ev);
2135#endif /* MOUSE_REPORT_DOUBLECLICK */ 2123#endif /* MOUSE_REPORT_DOUBLECLICK */
2136 return; 2124 return;
2137 } 2125 }
2138 2126
2139 /* 2127 /*
2140 * dumb hack to compensate for the failure of click-and-drag 2128 * dumb hack to compensate for the failure of click-and-drag
2143 if (priv_modes & PrivMode_mouse_report 2131 if (priv_modes & PrivMode_mouse_report
2144 && bypass_keystate 2132 && bypass_keystate
2145 && ev.button == Button1 && MEvent.clicks <= 1) 2133 && ev.button == Button1 && MEvent.clicks <= 1)
2146 selection_extend (ev.x, ev.y, 0); 2134 selection_extend (ev.x, ev.y, 0);
2147 2135
2148 if (HOOK_INVOKE ((this, HOOK_BUTTON_RELEASE, DT_XEVENT, &ev, DT_END)))
2149 return;
2150
2151 switch (ev.button) 2136 switch (ev.button)
2152 { 2137 {
2153 case Button1: 2138 case Button1:
2154 case Button3: 2139 case Button3:
2155 selection_make (ev.time); 2140 selection_make (ev.time);
2156 break; 2141 break;
2157 2142
2158 case Button2: 2143 case Button2:
2159 if (IN_RANGE_EXC (ev.x, 0, width) 2144 if (IN_RANGE_EXC (ev.x, 0, width) && IN_RANGE_EXC (ev.y, 0, height)) // inside window?
2160 && IN_RANGE_EXC (ev.y, 0, height)) // inside window? 2145 selection_request (ev.time, ev.state & ModMetaMask ? Sel_Clipboard : Sel_Primary);
2161 {
2162 if (ev.state & ShiftMask)
2163 selection_request (ev.time, Sel_Clipboard);
2164 else
2165 selection_request (ev.time, Sel_Primary);
2166 }
2167 break; 2146 break;
2168 2147
2169#ifdef MOUSE_WHEEL 2148#ifdef MOUSE_WHEEL
2170 case Button4: 2149 case Button4:
2171 case Button5: 2150 case Button5:
2175 2154
2176 v = ev.button == Button4 ? UP : DN; 2155 v = ev.button == Button4 ? UP : DN;
2177 2156
2178 if (ev.state & ShiftMask) 2157 if (ev.state & ShiftMask)
2179 i = 1; 2158 i = 1;
2180 else if (OPTION (Opt_mouseWheelScrollPage)) 2159 else if (option (Opt_mouseWheelScrollPage))
2181 i = nrow - 1; 2160 i = nrow - 1;
2182 else 2161 else
2183 i = 5; 2162 i = 5;
2184 2163
2185# ifdef MOUSE_SLIP_WHEELING 2164# ifdef MOUSE_SLIP_WHEELING
2187 { 2166 {
2188 mouse_slip_wheel_speed += v ? -1 : 1; 2167 mouse_slip_wheel_speed += v ? -1 : 1;
2189 if (mouse_slip_wheel_speed < -nrow) mouse_slip_wheel_speed = -nrow; 2168 if (mouse_slip_wheel_speed < -nrow) mouse_slip_wheel_speed = -nrow;
2190 if (mouse_slip_wheel_speed > +nrow) mouse_slip_wheel_speed = +nrow; 2169 if (mouse_slip_wheel_speed > +nrow) mouse_slip_wheel_speed = +nrow;
2191 2170
2192 if (slip_wheel_ev.at < NOW) 2171 if (!slip_wheel_ev.is_active ())
2193 slip_wheel_ev.at = NOW + SCROLLBAR_CONTINUOUS_DELAY; 2172 slip_wheel_ev.start (SCROLLBAR_CONTINUOUS_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
2194
2195 slip_wheel_ev.start ();
2196 } 2173 }
2197 else 2174 else
2175# endif
2198 { 2176 {
2199# endif
2200 scr_page (v, i); 2177 scr_page (v, i);
2201 scrollbar_show (1); 2178 scrollBar.show (1);
2202# ifdef MOUSE_SLIP_WHEELING
2203 } 2179 }
2204# endif
2205 } 2180 }
2206 break; 2181 break;
2207#endif 2182#endif
2208 } 2183 }
2209 } 2184 }
2210} 2185}
2211 2186
2212#ifdef TRANSPARENT
2213#if TINTING
2214/* taken from aterm-0.4.2 */
2215
2216typedef uint32_t RUINT32T;
2217
2218void ShadeXImage(rxvt_display *display, XImage* srcImage, int shade, int rm, int gm, int bm)
2219{
2220 int sh_r, sh_g, sh_b;
2221 RUINT32T mask_r, mask_g, mask_b;
2222 RUINT32T *lookup, *lookup_r, *lookup_g, *lookup_b;
2223 unsigned int lower_lim_r, lower_lim_g, lower_lim_b;
2224 unsigned int upper_lim_r, upper_lim_g, upper_lim_b;
2225 int i;
2226
2227 Visual *visual = display->visual;
2228
2229 if( visual->c_class != TrueColor || srcImage->format != ZPixmap ) return ;
2230
2231 /* for convenience */
2232 mask_r = visual->red_mask;
2233 mask_g = visual->green_mask;
2234 mask_b = visual->blue_mask;
2235
2236 /* boring lookup table pre-initialization */
2237 switch (srcImage->bits_per_pixel) {
2238 case 15:
2239 if ((mask_r != 0x7c00) ||
2240 (mask_g != 0x03e0) ||
2241 (mask_b != 0x001f))
2242 return;
2243 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+32+32));
2244 lookup_r = lookup;
2245 lookup_g = lookup+32;
2246 lookup_b = lookup+32+32;
2247 sh_r = 10;
2248 sh_g = 5;
2249 sh_b = 0;
2250 break;
2251 case 16:
2252 if ((mask_r != 0xf800) ||
2253 (mask_g != 0x07e0) ||
2254 (mask_b != 0x001f))
2255 return;
2256 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+64+32));
2257 lookup_r = lookup;
2258 lookup_g = lookup+32;
2259 lookup_b = lookup+32+64;
2260 sh_r = 11;
2261 sh_g = 5;
2262 sh_b = 0;
2263 break;
2264 case 24:
2265 if ((mask_r != 0xff0000) ||
2266 (mask_g != 0x00ff00) ||
2267 (mask_b != 0x0000ff))
2268 return;
2269 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
2270 lookup_r = lookup;
2271 lookup_g = lookup+256;
2272 lookup_b = lookup+256+256;
2273 sh_r = 16;
2274 sh_g = 8;
2275 sh_b = 0;
2276 break;
2277 case 32:
2278 if ((mask_r != 0xff0000) ||
2279 (mask_g != 0x00ff00) ||
2280 (mask_b != 0x0000ff))
2281 return;
2282 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
2283 lookup_r = lookup;
2284 lookup_g = lookup+256;
2285 lookup_b = lookup+256+256;
2286 sh_r = 16;
2287 sh_g = 8;
2288 sh_b = 0;
2289 break;
2290 default:
2291 return; /* we do not support this color depth */
2292 }
2293
2294 /* prepare limits for color transformation (each channel is handled separately) */
2295 if (shade < 0) {
2296 shade = -shade;
2297 if (shade < 0) shade = 0;
2298 if (shade > 100) shade = 100;
2299
2300 lower_lim_r = 65535-rm;
2301 lower_lim_g = 65535-gm;
2302 lower_lim_b = 65535-bm;
2303
2304 lower_lim_r = 65535-(unsigned int)(((RUINT32T)lower_lim_r)*((RUINT32T)shade)/100);
2305 lower_lim_g = 65535-(unsigned int)(((RUINT32T)lower_lim_g)*((RUINT32T)shade)/100);
2306 lower_lim_b = 65535-(unsigned int)(((RUINT32T)lower_lim_b)*((RUINT32T)shade)/100);
2307
2308 upper_lim_r = upper_lim_g = upper_lim_b = 65535;
2309 } else {
2310 if (shade < 0) shade = 0;
2311 if (shade > 100) shade = 100;
2312
2313 lower_lim_r = lower_lim_g = lower_lim_b = 0;
2314
2315 upper_lim_r = (unsigned int)((((RUINT32T)rm)*((RUINT32T)shade))/100);
2316 upper_lim_g = (unsigned int)((((RUINT32T)gm)*((RUINT32T)shade))/100);
2317 upper_lim_b = (unsigned int)((((RUINT32T)bm)*((RUINT32T)shade))/100);
2318 }
2319
2320 /* switch red and blue bytes if necessary, we need it for some weird XServers like XFree86 3.3.3.1 */
2321 if ((srcImage->bits_per_pixel == 24) && (mask_r >= 0xFF0000 ))
2322 {
2323 unsigned int tmp;
2324
2325 tmp = lower_lim_r;
2326 lower_lim_r = lower_lim_b;
2327 lower_lim_b = tmp;
2328
2329 tmp = upper_lim_r;
2330 upper_lim_r = upper_lim_b;
2331 upper_lim_b = tmp;
2332 }
2333
2334 /* fill our lookup tables */
2335 for (i = 0; i <= mask_r>>sh_r; i++)
2336 {
2337 RUINT32T tmp;
2338 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_r-lower_lim_r));
2339 tmp += ((RUINT32T)(mask_r>>sh_r))*((RUINT32T)lower_lim_r);
2340 lookup_r[i] = (tmp/65535)<<sh_r;
2341 }
2342 for (i = 0; i <= mask_g>>sh_g; i++)
2343 {
2344 RUINT32T tmp;
2345 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_g-lower_lim_g));
2346 tmp += ((RUINT32T)(mask_g>>sh_g))*((RUINT32T)lower_lim_g);
2347 lookup_g[i] = (tmp/65535)<<sh_g;
2348 }
2349 for (i = 0; i <= mask_b>>sh_b; i++)
2350 {
2351 RUINT32T tmp;
2352 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_b-lower_lim_b));
2353 tmp += ((RUINT32T)(mask_b>>sh_b))*((RUINT32T)lower_lim_b);
2354 lookup_b[i] = (tmp/65535)<<sh_b;
2355 }
2356
2357 /* apply table to input image (replacing colors by newly calculated ones) */
2358 switch (srcImage->bits_per_pixel)
2359 {
2360 case 15:
2361 {
2362 unsigned short *p1, *pf, *p, *pl;
2363 p1 = (unsigned short *) srcImage->data;
2364 pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2365 while (p1 < pf)
2366 {
2367 p = p1;
2368 pl = p1 + srcImage->width;
2369 for (; p < pl; p++)
2370 {
2371 *p = lookup_r[(*p & 0x7c00)>>10] |
2372 lookup_g[(*p & 0x03e0)>> 5] |
2373 lookup_b[(*p & 0x001f)];
2374 }
2375 p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
2376 }
2377 break;
2378 }
2379 case 16:
2380 {
2381 unsigned short *p1, *pf, *p, *pl;
2382 p1 = (unsigned short *) srcImage->data;
2383 pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2384 while (p1 < pf)
2385 {
2386 p = p1;
2387 pl = p1 + srcImage->width;
2388 for (; p < pl; p++)
2389 {
2390 *p = lookup_r[(*p & 0xf800)>>11] |
2391 lookup_g[(*p & 0x07e0)>> 5] |
2392 lookup_b[(*p & 0x001f)];
2393 }
2394 p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
2395 }
2396 break;
2397 }
2398 case 24:
2399 {
2400 unsigned char *p1, *pf, *p, *pl;
2401 p1 = (unsigned char *) srcImage->data;
2402 pf = (unsigned char *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2403 while (p1 < pf)
2404 {
2405 p = p1;
2406 pl = p1 + srcImage->width * 3;
2407 for (; p < pl; p += 3)
2408 {
2409 p[0] = lookup_r[(p[0] & 0xff0000)>>16];
2410 p[1] = lookup_r[(p[1] & 0x00ff00)>> 8];
2411 p[2] = lookup_r[(p[2] & 0x0000ff)];
2412 }
2413 p1 = (unsigned char *) ((char *) p1 + srcImage->bytes_per_line);
2414 }
2415 break;
2416 }
2417 case 32:
2418 {
2419 RUINT32T *p1, *pf, *p, *pl;
2420 p1 = (RUINT32T *) srcImage->data;
2421 pf = (RUINT32T *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2422
2423 while (p1 < pf)
2424 {
2425 p = p1;
2426 pl = p1 + srcImage->width;
2427 for (; p < pl; p++)
2428 {
2429 *p = lookup_r[(*p & 0xff0000)>>16] |
2430 lookup_g[(*p & 0x00ff00)>> 8] |
2431 lookup_b[(*p & 0x0000ff)] |
2432 (*p & ~0xffffff);
2433 }
2434 p1 = (RUINT32T *) ((char *) p1 + srcImage->bytes_per_line);
2435 }
2436 break;
2437 }
2438 }
2439
2440 free (lookup);
2441}
2442#endif
2443
2444/*
2445 * Check our parents are still who we think they are.
2446 * Do transparency updates if required
2447 */
2448int
2449rxvt_term::check_our_parents ()
2450{
2451 int i, pchanged, aformat, have_pixmap, rootdepth;
2452 unsigned long nitems, bytes_after;
2453 Atom atype;
2454 unsigned char *prop = NULL;
2455 Window root, oldp, *list;
2456 Pixmap rootpixmap = None;
2457 XWindowAttributes wattr, wrootattr;
2458 dDisp;
2459
2460 pchanged = 0;
2461
2462 if (!OPTION (Opt_transparent))
2463 return pchanged; /* Don't try any more */
2464
2465 XGetWindowAttributes (disp, display->root, &wrootattr);
2466 rootdepth = wrootattr.depth;
2467
2468 XGetWindowAttributes (disp, parent[0], &wattr);
2469
2470 if (rootdepth != wattr.depth)
2471 {
2472 if (am_transparent)
2473 {
2474 pchanged = 1;
2475 XSetWindowBackground (disp, vt, pix_colors_focused[Color_bg]);
2476 am_transparent = am_pixmap_trans = 0;
2477 }
2478
2479 return pchanged; /* Don't try any more */
2480 }
2481
2482 /* Get all X ops out of the queue so that our information is up-to-date. */
2483 XSync (disp, False);
2484
2485 /*
2486 * Make the frame window set by the window manager have
2487 * the root background. Some window managers put multiple nested frame
2488 * windows for each client, so we have to take care about that.
2489 */
2490 i = (xa[XA_XROOTPMAP_ID]
2491 && XGetWindowProperty (disp, display->root, xa[XA_XROOTPMAP_ID],
2492 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
2493 &nitems, &bytes_after, &prop) == Success);
2494
2495 if (!i || prop == NULL)
2496 i = (xa[XA_ESETROOT_PMAP_ID]
2497 && XGetWindowProperty (disp, display->root, xa[XA_ESETROOT_PMAP_ID],
2498 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
2499 &nitems, &bytes_after, &prop) == Success);
2500
2501 if (!i || prop == NULL
2502#if TINTING
2503 || !rs[Rs_color + Color_tint]
2504#endif
2505 )
2506 have_pixmap = 0;
2507 else
2508 {
2509 have_pixmap = 1;
2510 rootpixmap = *(Pixmap *)prop;
2511 XFree (prop);
2512 }
2513
2514 if (have_pixmap)
2515 {
2516 /*
2517 * Copy display->root pixmap transparency
2518 */
2519 int sx, sy, nx, ny;
2520 unsigned int nw, nh;
2521 Window cr;
2522 XImage *image;
2523 GC gc;
2524 XGCValues gcvalue;
2525
2526 XTranslateCoordinates (disp, parent[0], display->root,
2527 0, 0, &sx, &sy, &cr);
2528 nw = (unsigned int)szHint.width;
2529 nh = (unsigned int)szHint.height;
2530 nx = ny = 0;
2531
2532 if (sx < 0)
2533 {
2534 nw += sx;
2535 nx = -sx;
2536 sx = 0;
2537 }
2538
2539 if (sy < 0)
2540 {
2541 nh += sy;
2542 ny = -sy;
2543 sy = 0;
2544 }
2545
2546 min_it (nw, (unsigned int) (wrootattr.width - sx));
2547 min_it (nh, (unsigned int) (wrootattr.height - sy));
2548
2549 XSync (disp, False);
2550 allowedxerror = -1;
2551 image = XGetImage (disp, rootpixmap, sx, sy, nw, nh, AllPlanes, ZPixmap);
2552
2553 /* XXX: handle BadMatch - usually because we're outside the pixmap */
2554 /* XXX: may need a delay here? */
2555 allowedxerror = 0;
2556
2557 if (image == NULL)
2558 {
2559 if (am_transparent && am_pixmap_trans)
2560 {
2561 pchanged = 1;
2562 if (pixmap != None)
2563 {
2564 XFreePixmap (disp, pixmap);
2565 pixmap = None;
2566 }
2567 }
2568
2569 am_pixmap_trans = 0;
2570 }
2571 else
2572 {
2573 if (pixmap != None)
2574 XFreePixmap (disp, pixmap);
2575
2576#if TINTING
2577 if (ISSET_PIXCOLOR (Color_tint))
2578 {
2579 unsigned short rm, gm, bm;
2580 int shade = rs[Rs_shade] ? atoi (rs[Rs_shade]) : 100;
2581
2582 pix_colors_focused[Color_tint].get (display, rm, gm, bm);
2583
2584 ShadeXImage (display, image, shade, rm, gm, bm);
2585 }
2586#endif
2587
2588 pixmap = XCreatePixmap (disp, vt,
2589 szHint.width, szHint.height, image->depth);
2590 gc = XCreateGC (disp, vt, 0UL, &gcvalue);
2591 XPutImage (disp, pixmap, gc, image, 0, 0,
2592 nx, ny, image->width, image->height);
2593 XFreeGC (disp, gc);
2594 XDestroyImage (image);
2595 XSetWindowBackgroundPixmap (disp, parent[0], pixmap);
2596 XClearWindow (disp, parent[0]);
2597
2598 if (!am_transparent || !am_pixmap_trans)
2599 pchanged = 1;
2600
2601 am_transparent = am_pixmap_trans = 1;
2602 }
2603 }
2604
2605 if (am_pixmap_trans)
2606 XSetWindowBackgroundPixmap (disp, vt, ParentRelative);
2607 else
2608 {
2609 unsigned int n;
2610 /*
2611 * InheritPixmap transparency
2612 */
2613 for (i = 1; i < (int) (sizeof (parent) / sizeof (Window)); i++)
2614 {
2615 oldp = parent[i];
2616 XQueryTree (disp, parent[i - 1], &root,
2617 &parent[i], &list, &n);
2618 XFree (list);
2619
2620 if (parent[i] == display->root)
2621 {
2622 if (oldp != None)
2623 pchanged = 1;
2624
2625 break;
2626 }
2627
2628 if (oldp != parent[i])
2629 pchanged = 1;
2630 }
2631
2632 n = 0;
2633
2634 if (pchanged)
2635 {
2636 for (; n < (unsigned int)i; n++)
2637 {
2638 XGetWindowAttributes (disp, parent[n], &wattr);
2639 if (wattr.depth != rootdepth || wattr.c_class == InputOnly)
2640 {
2641 n = (int) (sizeof (parent) / sizeof (Window)) + 1;
2642 break;
2643 }
2644 }
2645 }
2646
2647 if (n > (int) (sizeof (parent) / sizeof (parent[0])))
2648 {
2649 XSetWindowBackground (disp, parent[0], pix_colors_focused[Color_border]);
2650 XSetWindowBackground (disp, vt, pix_colors_focused[Color_bg]);
2651 am_transparent = 0;
2652 /* XXX: also turn off Opt_transparent? */
2653 }
2654 else
2655 {
2656#if WAIT_FOR_WM
2657 /* wait (an arbitrary period) for the WM to do its thing
2658 * needed for fvwm2.2.2 (and before?) */
2659 sleep (1);
2660#endif
2661 for (n = 0; n < (unsigned int)i; n++)
2662 {
2663 XSetWindowBackgroundPixmap (disp, parent[n], ParentRelative);
2664 XClearWindow (disp, parent[n]);
2665 }
2666
2667 XSetWindowBackgroundPixmap (disp, vt, ParentRelative);
2668 am_transparent = 1;
2669 }
2670
2671 for (; i < (int) (sizeof (parent) / sizeof (Window)); i++)
2672 parent[i] = None;
2673 }
2674
2675 if (scrollBar.win)
2676 {
2677 XSetWindowBackgroundPixmap (disp, scrollBar.win, ParentRelative);
2678 scrollBar.setIdle ();
2679 scrollbar_show (0);
2680 }
2681
2682 if (am_transparent)
2683 {
2684 want_refresh = want_full_refresh = 1;
2685 if (am_pixmap_trans)
2686 flush ();
2687 }
2688
2689 return pchanged;
2690}
2691#endif
2692
2693/*}}} */ 2187/*}}} */
2694 2188
2695bool 2189void
2696rxvt_term::cmd_parse () 2190rxvt_term::cmd_parse ()
2697{ 2191{
2698 bool flag = false;
2699 wchar_t ch = NOCHAR; 2192 wchar_t ch = NOCHAR;
2700 char *seq_begin; // remember start of esc-sequence here 2193 char *seq_begin; // remember start of esc-sequence here
2701 2194
2702 for (;;) 2195 for (;;)
2703 { 2196 {
2704 if (ch == NOCHAR) 2197 if (expect_false (ch == NOCHAR))
2705 { 2198 {
2706 seq_begin = cmdbuf_ptr; 2199 seq_begin = cmdbuf_ptr;
2707 ch = next_char (); 2200 ch = next_char ();
2708 2201
2709 if (ch == NOCHAR) 2202 if (ch == NOCHAR)
2710 break; 2203 break;
2711 } 2204 }
2712 2205
2713 if (!IS_CONTROL (ch) || ch == C0_LF || ch == C0_CR || ch == C0_HT) 2206 if (expect_true (!IS_CONTROL (ch) || ch == C0_LF || ch == C0_CR || ch == C0_HT))
2714 { 2207 {
2715 if (!seen_input) 2208 if (expect_false (!seen_input))
2716 { 2209 {
2717 seen_input = 1; 2210 seen_input = 1;
2718 // many badly-written programs (e.g. jed) contain a race condition: 2211 // many badly-written programs (e.g. jed) contain a race condition:
2719 // they first read the screensize and then install a SIGWINCH handler. 2212 // they first read the screensize and then install a SIGWINCH handler.
2720 // some window managers resize the window early, and these programs 2213 // some window managers resize the window early, and these programs
2733 wchar_t *str = buf; 2226 wchar_t *str = buf;
2734 wchar_t *eol = str + min (ncol, UBUFSIZ); 2227 wchar_t *eol = str + min (ncol, UBUFSIZ);
2735 2228
2736 for (;;) 2229 for (;;)
2737 { 2230 {
2738 if (ch == NOCHAR || (IS_CONTROL (ch) && ch != C0_LF && ch != C0_CR && ch != C0_HT)) 2231 if (expect_false (ch == NOCHAR || (IS_CONTROL (ch) && ch != C0_LF && ch != C0_CR && ch != C0_HT)))
2739 break; 2232 break;
2740 2233
2741 *str++ = ch; 2234 *str++ = ch;
2742 2235
2743 if (ch == C0_LF || str >= eol) 2236 if (expect_false (ch == C0_LF || str >= eol))
2744 { 2237 {
2745 if (ch == C0_LF) 2238 if (ch == C0_LF)
2746 nlines++; 2239 nlines++;
2747 2240
2748 refresh_count++; 2241 refresh_count++;
2749 2242
2750 if (!OPTION (Opt_jumpScroll) 2243 if (!option (Opt_jumpScroll) || refresh_count >= nrow - 1)
2751 || (refresh_count >= refresh_limit * (nrow - 1)))
2752 { 2244 {
2753 refreshnow = true;
2754 refresh_count = 0; 2245 refresh_count = 0;
2246
2247 if (!option (Opt_skipScroll) || ev_time () > ev::now () + 1. / 60.)
2248 {
2249 refreshnow = true;
2755 ch = NOCHAR; 2250 ch = NOCHAR;
2756 break; 2251 break;
2252 }
2757 } 2253 }
2758 2254
2759 // scr_add_lines only works for nlines <= nrow - 1. 2255 // scr_add_lines only works for nlines <= nrow - 1.
2760 if (nlines >= nrow - 1) 2256 if (nlines >= nrow - 1)
2761 { 2257 {
2789 && HOOK_INVOKE ((this, HOOK_ADD_LINES, DT_WCS_LEN, buf, str - buf, DT_END)))) 2285 && HOOK_INVOKE ((this, HOOK_ADD_LINES, DT_WCS_LEN, buf, str - buf, DT_END))))
2790 scr_add_lines (buf, str - buf, nlines); 2286 scr_add_lines (buf, str - buf, nlines);
2791 2287
2792 /* 2288 /*
2793 * If there have been a lot of new lines, then update the screen 2289 * If there have been a lot of new lines, then update the screen
2794 * What the heck I'll cheat and only refresh less than every page-full. 2290 * What the heck we'll cheat and only refresh less than every page-full.
2795 * the number of pages between refreshes is refresh_limit, which 2291 * if skipScroll is enabled.
2796 * is incremented here because we must be doing flat-out scrolling.
2797 */ 2292 */
2798 if (refreshnow) 2293 if (refreshnow)
2799 { 2294 {
2800 if (OPTION (Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD)
2801 refresh_limit++;
2802 else
2803 {
2804 flag = true;
2805 scr_refresh (); 2295 scr_refresh ();
2806 want_refresh = 1; 2296 want_refresh = 1;
2807 }
2808 } 2297 }
2809
2810 } 2298 }
2811 else 2299 else
2812 { 2300 {
2813 try 2301 try
2814 { 2302 {
2822 } 2310 }
2823 2311
2824 ch = NOCHAR; 2312 ch = NOCHAR;
2825 } 2313 }
2826 } 2314 }
2827
2828 return flag;
2829} 2315}
2830 2316
2831// read the next character 2317// read the next character
2832wchar_t 2318wchar_t
2833rxvt_term::next_char () NOTHROW 2319rxvt_term::next_char () NOTHROW
2834{ 2320{
2835 while (cmdbuf_ptr < cmdbuf_endp) 2321 while (cmdbuf_ptr < cmdbuf_endp)
2836 { 2322 {
2837 // assume 7-bit to be ascii ALWAYS 2323 // assume 7-bit to be ascii ALWAYS
2838 if ((unsigned char)*cmdbuf_ptr <= 0x7f && *cmdbuf_ptr != 0x1b) 2324 if (expect_true ((unsigned char)*cmdbuf_ptr <= 0x7f && *cmdbuf_ptr != 0x1b))
2839 return *cmdbuf_ptr++; 2325 return *cmdbuf_ptr++;
2840 2326
2841 wchar_t wc; 2327 wchar_t wc;
2842 size_t len = mbrtowc (&wc, cmdbuf_ptr, cmdbuf_endp - cmdbuf_ptr, mbstate); 2328 size_t len = mbrtowc (&wc, cmdbuf_ptr, cmdbuf_endp - cmdbuf_ptr, mbstate);
2843 2329
2847 cmdbuf_ptr = cmdbuf_endp; 2333 cmdbuf_ptr = cmdbuf_endp;
2848 break; 2334 break;
2849 } 2335 }
2850 2336
2851 if (len == (size_t)-1) 2337 if (len == (size_t)-1)
2338 {
2339 mbrtowc (0, 0, 0, mbstate); // reset now undefined conversion state
2852 return (unsigned char)*cmdbuf_ptr++; // the _occasional_ latin1 character is allowed to slip through 2340 return (unsigned char)*cmdbuf_ptr++; // the _occasional_ latin1 character is allowed to slip through
2341 }
2853 2342
2854 // assume wchar == unicode 2343 // assume wchar == unicode
2855 cmdbuf_ptr += len; 2344 cmdbuf_ptr += len;
2856 return wc & UNICODE_MASK; 2345 return wc & UNICODE_MASK;
2857 } 2346 }
2901/*----------------------------------------------------------------------*/ 2390/*----------------------------------------------------------------------*/
2902#ifdef PRINTPIPE 2391#ifdef PRINTPIPE
2903FILE * 2392FILE *
2904rxvt_term::popen_printer () 2393rxvt_term::popen_printer ()
2905{ 2394{
2906 FILE *stream = popen (rs[Rs_print_pipe], "w"); 2395 FILE *stream = popen (rs[Rs_print_pipe] ? rs[Rs_print_pipe] : PRINTPIPE, "w");
2907 2396
2908 if (stream == NULL) 2397 if (stream == NULL)
2909 rxvt_warn ("can't open printer pipe, not printing.\n"); 2398 rxvt_warn ("can't open printer pipe, not printing.\n");
2910 2399
2911 return stream; 2400 return stream;
2922 * simulate attached vt100 printer 2411 * simulate attached vt100 printer
2923 */ 2412 */
2924void 2413void
2925rxvt_term::process_print_pipe () 2414rxvt_term::process_print_pipe ()
2926{ 2415{
2927 int done; 2416 FILE *fd = popen_printer ();
2928 FILE *fd;
2929 2417
2930 if ((fd = popen_printer ()) == NULL) 2418 if (!fd)
2931 return; 2419 return;
2932 2420
2933 /* 2421 /*
2934 * Send all input to the printer until either ESC[4i or ESC[?4i 2422 * Send all input to the printer until either ESC[4i or ESC[?4i
2935 * is received. 2423 * is received.
2936 */ 2424 */
2937 for (done = 0; !done;) 2425 for (int done = 0; !done; )
2938 { 2426 {
2939 unsigned char buf[8]; 2427 unsigned char buf[8];
2940 unicode_t ch; 2428 unicode_t ch;
2941 unsigned int i, len; 2429 unsigned int i, len;
2942 2430
2961 { 2449 {
2962 if ((buf[len++] = cmd_getc ()) == 'i') 2450 if ((buf[len++] = cmd_getc ()) == 'i')
2963 break; /* done = 1 */ 2451 break; /* done = 1 */
2964 } 2452 }
2965 } 2453 }
2966 2454
2967 for (i = 0; i < len; i++) 2455 for (i = 0; i < len; i++)
2968 if (putc (buf[i], fd) == EOF) 2456 if (putc (buf[i], fd) == EOF)
2969 { 2457 {
2970 done = 1; 2458 done = 1;
2971 break; 2459 break;
2973 } 2461 }
2974 } 2462 }
2975 2463
2976 pclose_printer (fd); 2464 pclose_printer (fd);
2977} 2465}
2978#endif /* PRINTPIPE */ 2466#endif /* PRINTPIPE */
2979/*}}} */ 2467/*}}} */
2980 2468
2981/* *INDENT-OFF* */ 2469/* *INDENT-OFF* */
2982enum { 2470enum {
2983 C1_40 = 0x40, 2471 C1_40 = 0x40,
3033 process_dcs_seq (); 2521 process_dcs_seq ();
3034 break; 2522 break;
3035 case 0x9b: /* CSI */ 2523 case 0x9b: /* CSI */
3036 process_csi_seq (); 2524 process_csi_seq ();
3037 break; 2525 break;
3038 case 0x9d: /* CSI */ 2526 case 0x9d: /* OSC */
3039 process_osc_seq (); 2527 process_osc_seq ();
3040 break; 2528 break;
3041#endif 2529#endif
3042 } 2530 }
3043} 2531}
3087 break; 2575 break;
3088 case 'Z': /* identify the terminal type */ 2576 case 'Z': /* identify the terminal type */
3089 tt_printf ("\033/Z"); /* I am a VT100 emulating a VT52 */ 2577 tt_printf ("\033/Z"); /* I am a VT100 emulating a VT52 */
3090 break; 2578 break;
3091 case '<': /* turn off VT52 mode */ 2579 case '<': /* turn off VT52 mode */
3092 PrivMode (0, PrivMode_vt52); 2580 set_privmode (PrivMode_vt52, 0);
3093 break; 2581 break;
3094 case 'F': /* use special graphics character set */ 2582 case 'F': /* use special graphics character set */
3095 case 'G': /* use regular character set */ 2583 case 'G': /* use regular character set */
3096 /* unimplemented */ 2584 /* unimplemented */
3097 break; 2585 break;
3133 scr_charset_set (2, (unsigned int)cmd_getc ()); 2621 scr_charset_set (2, (unsigned int)cmd_getc ());
3134 break; 2622 break;
3135 case '+': 2623 case '+':
3136 scr_charset_set (3, (unsigned int)cmd_getc ()); 2624 scr_charset_set (3, (unsigned int)cmd_getc ());
3137 break; 2625 break;
3138#if ENABLE_FRILLS 2626#if !ENABLE_MINIMAL
3139 case '6': 2627 case '6':
3140 scr_backindex (); 2628 scr_backindex ();
3141 break; 2629 break;
3142#endif 2630#endif
3143 case '7': 2631 case '7':
3144 scr_cursor (SAVE); 2632 scr_cursor (SAVE);
3145 break; 2633 break;
3146 case '8': 2634 case '8':
3147 scr_cursor (RESTORE); 2635 scr_cursor (RESTORE);
3148 break; 2636 break;
3149#if ENABLE_FRILLS 2637#if !ENABLE_MINIMAL
3150 case '9': 2638 case '9':
3151 scr_forwardindex (); 2639 scr_forwardindex ();
3152 break; 2640 break;
3153#endif 2641#endif
3154 case '=': 2642 case '=':
3155 case '>': 2643 case '>':
3156 PrivMode ((ch == '='), PrivMode_aplKP); 2644 set_privmode (PrivMode_aplKP, ch == '=');
3157 break; 2645 break;
3158 2646
3159 case C1_40: 2647 case C1_40:
3160 cmd_getc (); 2648 cmd_getc ();
3161 break; 2649 break;
3200 /* 8.3.110: SINGLE CHARACTER INTRODUCER */ 2688 /* 8.3.110: SINGLE CHARACTER INTRODUCER */
3201 case C1_SCI: /* ESC Z */ 2689 case C1_SCI: /* ESC Z */
3202 tt_write (ESCZ_ANSWER, sizeof (ESCZ_ANSWER) - 1); 2690 tt_write (ESCZ_ANSWER, sizeof (ESCZ_ANSWER) - 1);
3203 break; /* steal obsolete ESC [ c */ 2691 break; /* steal obsolete ESC [ c */
3204 2692
3205 /* 8.3.16: CONTROL SEQUENCE INTRODUCER */ 2693 /* 8.3.16: CONTROL SEQUENCE INTRODUCER (CSI) */
3206 case C1_CSI: /* ESC [ */ 2694 case C1_CSI: /* ESC [ */
3207 process_csi_seq (); 2695 process_csi_seq ();
3208 break; 2696 break;
3209 2697
3210 /* 8.3.90: OPERATING SYSTEM COMMAND */ 2698 /* 8.3.90: OPERATING SYSTEM COMMAND (OSC) */
3211 case C1_OSC: /* ESC ] */ 2699 case C1_OSC: /* ESC ] */
3212 process_osc_seq (); 2700 process_osc_seq ();
3213 break; 2701 break;
3214 2702
3215 /* 8.3.106: RESET TO INITIAL STATE */ 2703 /* 8.3.106: RESET TO INITIAL STATE (RIS) */
3216 case 'c': 2704 case 'c':
3217 mbstate.reset (); 2705 mbstate.reset ();
3218 scr_poweron (); 2706 scr_poweron ();
3219 scrollbar_show (1); 2707 scrollBar.show (1);
3220 break; 2708 break;
3221 2709
3222 /* 8.3.79: LOCKING-SHIFT TWO (see ISO2022) */ 2710 /* 8.3.79: LOCKING-SHIFT TWO (see ISO2022) */
3223 case 'n': 2711 case 'n':
3224 scr_charset_choose (2); 2712 scr_charset_choose (2);
3269rxvt_term::process_csi_seq () 2757rxvt_term::process_csi_seq ()
3270{ 2758{
3271 unicode_t ch, priv, i; 2759 unicode_t ch, priv, i;
3272 unsigned int nargs, p; 2760 unsigned int nargs, p;
3273 int n, ndef; 2761 int n, ndef;
3274 int arg[ESC_ARGS]; 2762 int arg[ESC_ARGS] = { };
3275 2763
3276 for (nargs = ESC_ARGS; nargs > 0;) 2764 nargs = 0;
3277 arg[--nargs] = 0;
3278 2765
3279 priv = 0; 2766 priv = 0;
3280 ch = cmd_getc (); 2767 ch = cmd_getc ();
3281 if (ch >= '<' && ch <= '?') 2768 if ((ch >= '<' && ch <= '?') || ch == '!')
2769 {
3282 { /* '<' '=' '>' '?' */ 2770 /* '<' '=' '>' '?' '!' */
3283 priv = ch; 2771 priv = ch;
3284 ch = cmd_getc (); 2772 ch = cmd_getc ();
3285 } 2773 }
3286 2774
3287 /* read any numerical arguments */ 2775 /* read any numerical arguments */
3316 ndef = get_byte_array_bit (csi_defaults, i); 2804 ndef = get_byte_array_bit (csi_defaults, i);
3317 for (p = 0; p < nargs; p++) 2805 for (p = 0; p < nargs; p++)
3318 if (arg[p] == -1) 2806 if (arg[p] == -1)
3319 arg[p] = ndef; 2807 arg[p] = ndef;
3320 2808
3321#ifdef DEBUG_CMD
3322 fprintf (stderr, "CSI ");
3323 for (p = 0; p < nargs; p++)
3324 fprintf (stderr, "%d%s", arg[p], p < nargs - 1 ? ";" : "");
3325 fprintf (stderr, "%c\n", ch);
3326#endif
3327
3328 /* 2809 /*
3329 * private mode handling 2810 * private mode handling
3330 */ 2811 */
3331 if (priv) 2812 if (priv)
3332 { 2813 {
3333 switch (priv) 2814 switch (priv)
3334 { 2815 {
3335 case '>': 2816 case '>':
3336 if (ch == CSI_DA) /* secondary device attributes */ 2817 if (ch == CSI_DA) /* secondary device attributes */
3337 tt_printf ("\033[>%d;%c%c;0c", 'U', VERSION[0], VERSION[2]); 2818 {
2819 // first parameter is normally 0 for vt100, 1 for vt220, 'R' for rxvt,
2820 // 'U' for rxvt-unicode != 7.[34] (where it was broken).
2821 //
2822 // second parameter is xterm patch level for xterm, MMmmpp (e.g. 20703) for rxvt
2823 // and Mm (e.g. 72 for 7.2) for urxvt <= 7.2, 94 for urxvt <= 8.3, and 95 for later
2824 // versions.
2825 //
2826 tt_printf ("\033[>%d;95;0c", 'U');
2827 }
3338 break; 2828 break;
2829
3339 case '?': 2830 case '?':
3340 if (ch == 'h' || ch == 'l' || ch == 'r' || ch == 's' || ch == 't') 2831 if (ch == 'h' || ch == 'l' || ch == 'r' || ch == 's' || ch == 't')
3341 process_terminal_mode (ch, priv, nargs, arg); 2832 process_terminal_mode (ch, priv, nargs, arg);
3342 break; 2833 break;
2834
2835 case '!':
2836 if (ch == CSI_70)
2837 {
2838 /* DECSTR: soft terminal reset, used by our terminfo since 9.06 */
2839 scr_soft_reset ();
2840
2841 static const int pm_h[] = { 7, 25 };
2842 static const int pm_l[] = { 1, 3, 4, 5, 6, 9, 66, 1000, 1001, 1049 };
2843
2844 process_terminal_mode ('h', 0, sizeof (pm_h) / sizeof (pm_h[0]), pm_h);
2845 process_terminal_mode ('l', 0, sizeof (pm_l) / sizeof (pm_l[0]), pm_l);
3343 } 2846 }
2847 break;
2848 }
2849
3344 return; 2850 return;
3345 } 2851 }
3346 2852
3347 switch (ch) 2853 switch (ch)
3348 { 2854 {
3468 break; 2974 break;
3469 case 6: /* CPR requested */ 2975 case 6: /* CPR requested */
3470 scr_report_position (); 2976 scr_report_position ();
3471 break; 2977 break;
3472 case 7: /* unofficial extension */ 2978 case 7: /* unofficial extension */
3473 if (OPTION (Opt_insecure)) 2979 if (option (Opt_insecure))
3474 tt_printf ("%-.250s\012", rs[Rs_display_name]); 2980 tt_printf ("%-.250s\012", rs[Rs_display_name]);
3475 break; 2981 break;
3476 case 8: /* unofficial extension */ 2982 case 8: /* unofficial extension */
3477 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST); 2983 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST);
3478 break; 2984 break;
3545 break; 3051 break;
3546 case CSI_75: 3052 case CSI_75:
3547 scr_cursor (RESTORE); 3053 scr_cursor (RESTORE);
3548 break; 3054 break;
3549 3055
3550#if ENABLE_FRILLS 3056#if !ENABLE_MINIMAL
3551 case CSI_74: 3057 case CSI_74:
3552 process_window_ops (arg, nargs); 3058 process_window_ops (arg, nargs);
3553 break; 3059 break;
3554#endif 3060#endif
3555 3061
3562 break; 3068 break;
3563 } 3069 }
3564} 3070}
3565/*}}} */ 3071/*}}} */
3566 3072
3567#if ENABLE_FRILLS 3073#if !ENABLE_MINIMAL
3568/* ARGSUSED */ 3074/* ARGSUSED */
3569void 3075void
3570rxvt_term::process_window_ops (const int *args, unsigned int nargs) 3076rxvt_term::process_window_ops (const int *args, unsigned int nargs)
3571{ 3077{
3572 int x, y; 3078 int x, y;
3573 XWindowAttributes wattr; 3079 XWindowAttributes wattr;
3574 Window wdummy; 3080 Window wdummy;
3575 dDisp; 3081
3082 dLocal (Display *, dpy);
3576 3083
3577 if (nargs == 0) 3084 if (nargs == 0)
3578 return; 3085 return;
3579 3086
3580 switch (args[0]) 3087 switch (args[0])
3581 { 3088 {
3582 /* 3089 /*
3583 * commands 3090 * commands
3584 */ 3091 */
3585 case 1: /* deiconify window */ 3092 case 1: /* deiconify window */
3586 XMapWindow (disp, parent[0]); 3093 XMapWindow (dpy, parent[0]);
3587 break; 3094 break;
3588 case 2: /* iconify window */ 3095 case 2: /* iconify window */
3589 XIconifyWindow (disp, parent[0], display->screen); 3096 XIconifyWindow (dpy, parent[0], display->screen);
3590 break; 3097 break;
3591 case 3: /* set position (pixels) */ 3098 case 3: /* set position (pixels) */
3592 XMoveWindow (disp, parent[0], args[1], args[2]); 3099 XMoveWindow (dpy, parent[0], args[1], args[2]);
3593 break; 3100 break;
3594 case 4: /* set size (pixels) */ 3101 case 4: /* set size (pixels) */
3595 set_widthheight ((unsigned int)args[2], (unsigned int)args[1]); 3102 set_widthheight ((unsigned int)args[2], (unsigned int)args[1]);
3596 break; 3103 break;
3597 case 5: /* raise window */ 3104 case 5: /* raise window */
3598 XRaiseWindow (disp, parent[0]); 3105 XRaiseWindow (dpy, parent[0]);
3599 break; 3106 break;
3600 case 6: /* lower window */ 3107 case 6: /* lower window */
3601 XLowerWindow (disp, parent[0]); 3108 XLowerWindow (dpy, parent[0]);
3602 break; 3109 break;
3603 case 7: /* refresh window */ 3110 case 7: /* refresh window */
3604 scr_touch (true); 3111 scr_touch (true);
3605 break; 3112 break;
3606 case 8: /* set size (chars) */ 3113 case 8: /* set size (chars) */
3613 if (args[0] >= 24) /* set height (chars) */ 3120 if (args[0] >= 24) /* set height (chars) */
3614 set_widthheight ((unsigned int)width, 3121 set_widthheight ((unsigned int)width,
3615 (unsigned int) (args[1] * fheight)); 3122 (unsigned int) (args[1] * fheight));
3616 break; 3123 break;
3617 3124
3618
3619 /* 3125 /*
3620 * reports - some output format copied from XTerm 3126 * reports - some output format copied from XTerm
3621 */ 3127 */
3622 case 11: /* report window state */ 3128 case 11: /* report window state */
3623 XGetWindowAttributes (disp, parent[0], &wattr); 3129 XGetWindowAttributes (dpy, parent[0], &wattr);
3624 tt_printf ("\033[%dt", wattr.map_state == IsViewable ? 1 : 2); 3130 tt_printf ("\033[%dt", wattr.map_state == IsViewable ? 1 : 2);
3625 break; 3131 break;
3626 case 13: /* report window position */ 3132 case 13: /* report window position */
3627 XGetWindowAttributes (disp, parent[0], &wattr); 3133 XGetWindowAttributes (dpy, parent[0], &wattr);
3628 XTranslateCoordinates (disp, parent[0], wattr.root, 3134 XTranslateCoordinates (dpy, parent[0], wattr.root,
3629 -wattr.border_width, -wattr.border_width, 3135 -wattr.border_width, -wattr.border_width,
3630 &x, &y, &wdummy); 3136 &x, &y, &wdummy);
3631 tt_printf ("\033[3;%d;%dt", x, y); 3137 tt_printf ("\033[3;%d;%dt", x, y);
3632 break; 3138 break;
3633 case 14: /* report window size (pixels) */ 3139 case 14: /* report window size (pixels) */
3634 XGetWindowAttributes (disp, parent[0], &wattr); 3140 XGetWindowAttributes (dpy, parent[0], &wattr);
3635 tt_printf ("\033[4;%d;%dt", wattr.height, wattr.width); 3141 tt_printf ("\033[4;%d;%dt", wattr.height, wattr.width);
3636 break; 3142 break;
3637 case 18: /* report text area size (chars) */ 3143 case 18: /* report text area size (chars) */
3638 tt_printf ("\033[8;%d;%dt", nrow, ncol); 3144 tt_printf ("\033[8;%d;%dt", nrow, ncol);
3639 break; 3145 break;
3641 tt_printf ("\033[9;%d;%dt", nrow, ncol); 3147 tt_printf ("\033[9;%d;%dt", nrow, ncol);
3642 break; 3148 break;
3643 case 20: /* report icon label */ 3149 case 20: /* report icon label */
3644 { 3150 {
3645 char *s; 3151 char *s;
3646 XGetIconName (disp, parent[0], &s); 3152 XGetIconName (dpy, parent[0], &s);
3647 tt_printf ("\033]L%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */ 3153 tt_printf ("\033]L%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */
3648 XFree (s); 3154 XFree (s);
3649 } 3155 }
3650 break; 3156 break;
3651 case 21: /* report window title */ 3157 case 21: /* report window title */
3652 { 3158 {
3653 char *s; 3159 char *s;
3654 XFetchName (disp, parent[0], &s); 3160 XFetchName (dpy, parent[0], &s);
3655 tt_printf ("\033]l%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */ 3161 tt_printf ("\033]l%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */
3656 XFree (s); 3162 XFree (s);
3657 } 3163 }
3658 break; 3164 break;
3659 } 3165 }
3660} 3166}
3687 seen_esc = true; 3193 seen_esc = true;
3688 continue; 3194 continue;
3689 } 3195 }
3690 else if (ch == C0_BEL || ch == CHAR_ST) 3196 else if (ch == C0_BEL || ch == CHAR_ST)
3691 break; 3197 break;
3198 else if (ch == C0_SYN)
3199 ch = cmd_get8 ();
3692 else if (ch < 0x20) 3200 else if (ch < 0x20)
3693 return NULL; /* other control character - exit */ 3201 return NULL; /* other control character - exit */
3694 3202
3695 seen_esc = false; 3203 seen_esc = false;
3696 3204
3697 if (n >= STRING_MAX - 1) 3205 if (n >= STRING_MAX - 1)
3698 // stop at some sane length 3206 // stop at some sane length
3699 return NULL; 3207 return NULL;
3700 3208
3701 if (ch == C0_SYN)
3702 string[n++] = cmd_get8 ();
3703 else
3704 string[n++] = ch; 3209 string[n++] = ch;
3705 } 3210 }
3706 3211
3707 string[n++] = '\0'; 3212 string[n++] = '\0';
3708 3213
3709 ends_how = (ch == 0x5c ? C0_ESC : ch); 3214 ends_how = (ch == 0x5c ? C0_ESC : ch);
3760void 3265void
3761rxvt_term::process_color_seq (int report, int color, const char *str, char resp) 3266rxvt_term::process_color_seq (int report, int color, const char *str, char resp)
3762{ 3267{
3763 if (str[0] == '?' && !str[1]) 3268 if (str[0] == '?' && !str[1])
3764 { 3269 {
3765 unsigned short r, g, b; 3270 rgba c;
3766 pix_colors_focused[color].get (display, r, g, b); 3271 pix_colors_focused[color].get (c);
3272
3273#if XFT
3274 if (c.a != rgba::MAX_CC)
3275 tt_printf ("\033]%d;rgba:%04x/%04x/%04x/%04x%c", report, c.a, c.r, c.g, c.b, resp);
3276 else
3277#endif
3767 tt_printf ("\033]%d;rgb:%04x/%04x/%04x%c", report, r, g, b, resp); 3278 tt_printf ("\033]%d;rgb:%04x/%04x/%04x%c", report, c.r, c.g, c.b, resp);
3768 } 3279 }
3769 else 3280 else
3770 set_window_color (color, str); 3281 set_window_color (color, str);
3771} 3282}
3772 3283
3778{ 3289{
3779 int color; 3290 int color;
3780 char *buf, *name; 3291 char *buf, *name;
3781 bool query = str[0] == '?' && !str[1]; 3292 bool query = str[0] == '?' && !str[1];
3782 int saveop = op; 3293 int saveop = op;
3783 dDisp; 3294
3295 dLocal (Display *, dpy);
3784 3296
3785 assert (str != NULL); 3297 assert (str != NULL);
3298
3299 if (HOOK_INVOKE ((this, HOOK_OSC_SEQ, DT_INT, op, DT_STR, str, DT_END)))
3300 return;
3301
3786 switch (op) 3302 switch (op)
3787 { 3303 {
3788 case XTerm_name: 3304 case XTerm_name:
3789 set_title (str); 3305 set_title (str);
3790 /* FALLTHROUGH */ 3306 /* FALLTHROUGH */
3804 unsigned long bytes_after; 3320 unsigned long bytes_after;
3805 unsigned char *value = 0; 3321 unsigned char *value = 0;
3806 const char *str = ""; 3322 const char *str = "";
3807 3323
3808 if (prop 3324 if (prop
3809 && XGetWindowProperty (disp, parent[0], 3325 && XGetWindowProperty (dpy, parent[0],
3810 prop, 0, 1<<16, 0, AnyPropertyType, 3326 prop, 0, 1<<16, 0, AnyPropertyType,
3811 &actual_type, &actual_format, 3327 &actual_type, &actual_format,
3812 &nitems, &bytes_after, &value) == Success 3328 &nitems, &bytes_after, &value) == Success
3813 && actual_type != None 3329 && actual_type != None
3814 && actual_format == 8) 3330 && actual_format == 8)
3815 str = (const char *)(value); 3331 str = (const char *)(value);
3816 3332
3817 tt_printf ("\033]%d;%s%c", XTerm_property, str, resp); 3333 tt_printf ("\033]%d;%s%c", op, str, resp);
3818 3334
3819 XFree (value); 3335 XFree (value);
3820 } 3336 }
3821 else 3337 else
3822 { 3338 {
3826 { 3342 {
3827 *eq = 0; 3343 *eq = 0;
3828 set_utf8_property (display->atom (str), eq + 1); 3344 set_utf8_property (display->atom (str), eq + 1);
3829 } 3345 }
3830 else 3346 else
3831 XDeleteProperty (disp, parent[0], 3347 XDeleteProperty (dpy, parent[0],
3832 display->atom (str)); 3348 display->atom (str));
3833 } 3349 }
3834 break; 3350 break;
3835 3351
3836 case XTerm_Color: 3352 case XTerm_Color:
3846 break; 3362 break;
3847 3363
3848 if ((buf = strchr (name, ';')) != NULL) 3364 if ((buf = strchr (name, ';')) != NULL)
3849 *buf++ = '\0'; 3365 *buf++ = '\0';
3850 3366
3851 if (name[0] == '?' && !name[1]) 3367 process_color_seq (op, color, name, resp);
3852 {
3853 unsigned short r, g, b;
3854 pix_colors_focused[color].get (display, r, g, b);
3855 tt_printf ("\033]%d;%d;rgb:%04x/%04x/%04x%c", XTerm_Color, color, r, g, b, resp);
3856 }
3857 else
3858 set_window_color (color, name);
3859 } 3368 }
3860 break; 3369 break;
3370 case Rxvt_restoreFG:
3861 case XTerm_Color00: 3371 case XTerm_Color00:
3862 process_color_seq (XTerm_Color00, Color_fg, str, resp); 3372 process_color_seq (op, Color_fg, str, resp);
3863 break; 3373 break;
3374 case Rxvt_restoreBG:
3864 case XTerm_Color01: 3375 case XTerm_Color01:
3865 process_color_seq (XTerm_Color01, Color_bg, str, resp); 3376 process_color_seq (op, Color_bg, str, resp);
3866 break; 3377 break;
3867#ifndef NO_CURSORCOLOR 3378#ifndef NO_CURSORCOLOR
3868 case XTerm_Color_cursor: 3379 case XTerm_Color_cursor:
3869 process_color_seq (XTerm_Color_cursor, Color_cursor, str, resp); 3380 process_color_seq (op, Color_cursor, str, resp);
3870 break; 3381 break;
3871#endif 3382#endif
3872 case XTerm_Color_pointer_fg: 3383 case XTerm_Color_pointer_fg:
3873 process_color_seq (XTerm_Color_pointer_fg, Color_pointer_fg, str, resp); 3384 process_color_seq (op, Color_pointer_fg, str, resp);
3874 break; 3385 break;
3875 case XTerm_Color_pointer_bg: 3386 case XTerm_Color_pointer_bg:
3876 process_color_seq (XTerm_Color_pointer_bg, Color_pointer_bg, str, resp); 3387 process_color_seq (op, Color_pointer_bg, str, resp);
3877 break; 3388 break;
3878#ifndef NO_BOLD_UNDERLINE_REVERSE 3389#ifndef NO_BOLD_UNDERLINE_REVERSE
3879 case XTerm_Color_RV: 3390 case XTerm_Color_RV:
3880 process_color_seq (XTerm_Color_RV, Color_RV, str, resp); 3391 process_color_seq (op, Color_RV, str, resp);
3881 break; 3392 break;
3882 case Rxvt_Color_BD: 3393 case Rxvt_Color_BD:
3883 case URxvt_Color_BD: 3394 case URxvt_Color_BD:
3884 process_color_seq (op, Color_BD, str, resp); 3395 process_color_seq (op, Color_BD, str, resp);
3885 break; 3396 break;
3886 case Rxvt_Color_UL: 3397 case Rxvt_Color_UL:
3887 case URxvt_Color_UL: 3398 case URxvt_Color_UL:
3888 process_color_seq (op, Color_UL, str, resp); 3399 process_color_seq (op, Color_UL, str, resp);
3889 break; 3400 break;
3890 case URxvt_Color_IT: 3401 case URxvt_Color_IT:
3891 process_color_seq (URxvt_Color_IT, Color_IT, str, resp); 3402 process_color_seq (op, Color_IT, str, resp);
3892 break; 3403 break;
3893#endif 3404#endif
3894#if TRANSPARENT && TINTING 3405#if ENABLE_TRANSPARENCY
3895 case URxvt_Color_tint: 3406 case URxvt_Color_tint:
3896 process_color_seq (URxvt_Color_tint, Color_tint, str, resp); 3407 process_color_seq (op, Color_tint, str, resp);
3897 check_our_parents (); 3408 {
3898 if (am_transparent) 3409 bool changed = false;
3899 want_full_refresh = want_refresh = 1;
3900 break;
3901#endif
3902 3410
3411 if (ISSET_PIXCOLOR (Color_tint))
3412 changed = bgPixmap.set_tint (pix_colors_focused [Color_tint]);
3413 else
3414 changed = bgPixmap.unset_tint ();
3415
3416 if (changed)
3417 update_background ();
3418 }
3419
3420 break;
3421#endif
3422
3423#if BG_IMAGE_FROM_FILE
3903 case Rxvt_Pixmap: 3424 case Rxvt_Pixmap:
3904 { 3425 if (!strcmp (str, "?"))
3905 if (*str != ';')
3906 { 3426 {
3907#if XPM_BACKGROUND 3427 char str[256];
3908 scale_pixmap (""); /* reset to default scaling */ 3428
3909 set_bgPixmap (str); /* change pixmap */ 3429 sprintf (str, "[%dx%d+%d+%d]", /* can't presume snprintf () ! */
3910 scr_touch (true); 3430 min (bgPixmap.h_scale, 32767), min (bgPixmap.v_scale, 32767),
3911#endif 3431 min (bgPixmap.h_align, 32767), min (bgPixmap.v_align, 32767));
3432 process_xterm_seq (XTerm_title, str, CHAR_ST);
3912 } 3433 }
3913 3434 else
3435 {
3914 int changed = 0; 3436 int changed = 0;
3915 3437
3916 while ((str = strchr (str, ';')) != NULL) 3438 if (*str != ';')
3917 { 3439 {
3440 /* reset to default scaling :*/
3441 bgPixmap.unset_geometry ();
3442 if (bgPixmap.set_file (str)) /* change pixmap */
3443 changed++;
3444 str = strchr (str, ';');
3445 if (str == NULL)
3446 bgPixmap.set_defaultGeometry ();
3447 }
3448
3449 while (str)
3450 {
3918 str++; 3451 str++;
3919#if XPM_BACKGROUND 3452 if (bgPixmap.set_geometry (str))
3920 changed += scale_pixmap (str); 3453 changed++;
3921#endif 3454 str = strchr (str, ';');
3922 } 3455 }
3923 3456
3924 if (changed) 3457 if (changed)
3925 { 3458 update_background ();
3926#ifdef XPM_BACKGROUND
3927 resize_pixmap ();
3928 scr_touch (true);
3929#endif
3930 } 3459 }
3931 }
3932 break; 3460 break;
3933 3461#endif
3934 case Rxvt_restoreFG:
3935 set_window_color (Color_fg, str);
3936 break;
3937 case Rxvt_restoreBG:
3938 set_window_color (Color_bg, str);
3939 break;
3940 3462
3941 case XTerm_logfile: 3463 case XTerm_logfile:
3942 // TODO, when secure mode? 3464 // TODO, when secure mode?
3943 break; 3465 break;
3944 3466
3962 case URxvt_italicFont: 3484 case URxvt_italicFont:
3963 case URxvt_boldItalicFont: 3485 case URxvt_boldItalicFont:
3964#endif 3486#endif
3965 if (query) 3487 if (query)
3966 tt_printf ("\33]%d;%-.250s%c", saveop, 3488 tt_printf ("\33]%d;%-.250s%c", saveop,
3967 OPTION (Opt_insecure) && fontset[op - URxvt_font]->fontdesc 3489 option (Opt_insecure) && fontset[op - URxvt_font]->fontdesc
3968 ? fontset[op - URxvt_font]->fontdesc : "", 3490 ? fontset[op - URxvt_font]->fontdesc : "",
3969 resp); 3491 resp);
3970 else 3492 else
3971 { 3493 {
3972 const char *&res = rs[Rs_font + (op - URxvt_font)]; 3494 const char *&res = rs[Rs_font + (op - URxvt_font)];
3975 allocated.push_back ((void *)res); 3497 allocated.push_back ((void *)res);
3976 set_fonts (); 3498 set_fonts ();
3977 } 3499 }
3978 break; 3500 break;
3979 3501
3980#if ENABLE_FRILLS 3502 case URxvt_version:
3503 if (query)
3504 tt_printf ("\33]%d;rxvt-unicode;%-.20s;%c;%c%c",
3505 op,
3506 rs[Rs_name], VERSION[0], VERSION[2],
3507 resp);
3508 break;
3509
3510#if !ENABLE_MINIMAL
3981 case URxvt_locale: 3511 case URxvt_locale:
3982 if (query) 3512 if (query)
3983 tt_printf ("\33]%d;%-.250s%c", URxvt_locale, OPTION (Opt_insecure) ? locale : "", resp); 3513 tt_printf ("\33]%d;%-.250s%c", op, option (Opt_insecure) ? locale : "", resp);
3984 else 3514 else
3985 { 3515 {
3986 set_locale (str); 3516 set_locale (str);
3987 pty->set_utf8_mode (enc_utf8); 3517 pty->set_utf8_mode (enc_utf8);
3988 init_xlocale (); 3518 init_xlocale ();
4003 break; 3533 break;
4004#endif 3534#endif
4005 3535
4006#if ENABLE_PERL 3536#if ENABLE_PERL
4007 case URxvt_perl: 3537 case URxvt_perl:
4008 if (HOOK_INVOKE ((this, HOOK_OSC_SEQ, DT_STR, str, DT_END))) 3538 HOOK_INVOKE ((this, HOOK_OSC_SEQ_PERL, DT_STR, str, DT_STR_LEN, &resp, 1, DT_END));
4009 ; // no responses yet
4010 break; 3539 break;
4011#endif 3540#endif
4012 } 3541 }
4013} 3542}
4014/*----------------------------------------------------------------------*/ 3543/*----------------------------------------------------------------------*/
4037 { 3566 {
4038 if (mode == 'r') 3567 if (mode == 'r')
4039 state = (SavedModes & bit) ? 1 : 0; /* no overlapping */ 3568 state = (SavedModes & bit) ? 1 : 0; /* no overlapping */
4040 else 3569 else
4041 state = (mode == 't') ? ! (priv_modes & bit) : mode; 3570 state = (mode == 't') ? ! (priv_modes & bit) : mode;
4042 PrivMode (state, bit); 3571 set_privmode (bit, state);
4043 } 3572 }
4044 3573
4045 return state; 3574 return state;
4046} 3575}
4047 3576
4051{ 3580{
4052 unsigned int i, j; 3581 unsigned int i, j;
4053 int state; 3582 int state;
4054 3583
4055 static const struct 3584 static const struct
4056 { 3585 {
4057 const int argval; 3586 const int argval;
4058 const unsigned long bit; 3587 const unsigned long bit;
4059 }
4060
4061 argtopriv[] = { 3588 } argtopriv[] = {
4062 { 1, PrivMode_aplCUR }, 3589 { 1, PrivMode_aplCUR },
4063 { 2, PrivMode_vt52 }, 3590 { 2, PrivMode_vt52 },
4064 { 3, PrivMode_132 }, 3591 { 3, PrivMode_132 },
4065 { 4, PrivMode_smoothScroll }, 3592 { 4, PrivMode_smoothScroll },
4066 { 5, PrivMode_rVideo }, 3593 { 5, PrivMode_rVideo },
4082 { 66, PrivMode_aplKP }, 3609 { 66, PrivMode_aplKP },
4083#ifndef NO_BACKSPACE_KEY 3610#ifndef NO_BACKSPACE_KEY
4084 { 67, PrivMode_BackSpace }, 3611 { 67, PrivMode_BackSpace },
4085#endif 3612#endif
4086 { 1000, PrivMode_MouseX11 }, 3613 { 1000, PrivMode_MouseX11 },
4087 // 1001 Use Hilite Mouse Tracking. NYI, TODO 3614 { 1002, PrivMode_MouseBtnEvent },
4088 // 1002 Use Cell Motion Mouse Tracking. NYI, TODO 3615 { 1003, PrivMode_MouseAnyEvent },
4089 // 1003 Use All Motion Mouse Tracking. NYI, TODO
4090 { 1010, PrivMode_TtyOutputInh }, // rxvt extension 3616 { 1010, PrivMode_TtyOutputInh }, // rxvt extension
4091 { 1011, PrivMode_Keypress }, // rxvt extension 3617 { 1011, PrivMode_Keypress }, // rxvt extension
4092 // 1035 enable modifiers for alt, numlock NYI 3618 // 1035 enable modifiers for alt, numlock NYI
4093 // 1036 send ESC for meta keys NYI 3619 // 1036 send ESC for meta keys NYI
4094 // 1037 send DEL for keypad delete NYI 3620 // 1037 send DEL for keypad delete NYI
4095 { 1047, PrivMode_Screen }, 3621 { 1047, PrivMode_Screen },
4096 // 1048 save and restore cursor 3622 // 1048 save and restore cursor
4097 { 1049, PrivMode_Screen }, /* xterm extension, clear screen on ti rather than te */ 3623 { 1049, PrivMode_Screen }, /* xterm extension, clear screen on ti rather than te */
4098 // 1051, 1052, 1060, 1061 keyboard emulation NYI 3624 // 1051, 1052, 1060, 1061 keyboard emulation NYI
3625 { 2004, PrivMode_BracketPaste },
4099 }; 3626 };
4100 3627
4101 if (nargs == 0) 3628 if (nargs == 0)
4102 return; 3629 return;
4103 3630
4129 scr_touch (true); 3656 scr_touch (true);
4130 break; 3657 break;
4131#endif 3658#endif
4132 case 1048: /* alternative cursor save */ 3659 case 1048: /* alternative cursor save */
4133 case 1049: 3660 case 1049:
4134 if (OPTION (Opt_secondaryScreen)) 3661 if (option (Opt_secondaryScreen))
4135 if (mode == 0) 3662 if (mode == 0)
4136 scr_cursor (RESTORE); 3663 scr_cursor (RESTORE);
4137 else if (mode == 1) 3664 else if (mode == 1)
4138 scr_cursor (SAVE); 3665 scr_cursor (SAVE);
4139 break; 3666 break;
4147 case 2: /* VT52 mode */ 3674 case 2: /* VT52 mode */
4148 /* oddball mode. should be set regardless of set/reset 3675 /* oddball mode. should be set regardless of set/reset
4149 * parameter. Return from VT52 mode with an ESC < from 3676 * parameter. Return from VT52 mode with an ESC < from
4150 * within VT52 mode 3677 * within VT52 mode
4151 */ 3678 */
4152 PrivMode (1, PrivMode_vt52); 3679 set_privmode (PrivMode_vt52, 1);
4153 break; 3680 break;
4154 case 3: /* 80/132 */ 3681 case 3: /* 80/132 */
4155 if (priv_modes & PrivMode_132OK) 3682 if (priv_modes & PrivMode_132OK)
3683 {
3684 scr_poweron ();
4156 set_widthheight (((state ? 132 : 80) * fwidth), height); 3685 set_widthheight (((state ? 132 : 80) * fwidth), 24 * fheight);
3686 }
4157 break; 3687 break;
4158 case 4: /* smooth scrolling */ 3688 case 4: /* smooth scrolling */
4159 set_option (Opt_jumpScroll, !state); 3689 set_option (Opt_jumpScroll, !state);
4160 break; 3690 break;
4161 case 5: /* reverse video */ 3691 case 5: /* reverse video */
4168 scr_autowrap (state); 3698 scr_autowrap (state);
4169 break; 3699 break;
4170 /* case 8: - auto repeat, can't do on a per window basis */ 3700 /* case 8: - auto repeat, can't do on a per window basis */
4171 case 9: /* X10 mouse reporting */ 3701 case 9: /* X10 mouse reporting */
4172 if (state) /* orthogonal */ 3702 if (state) /* orthogonal */
4173 priv_modes &= ~PrivMode_MouseX11; 3703 priv_modes &= ~(PrivMode_MouseX11|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent);
4174 break; 3704 break;
4175#ifdef scrollBar_esc 3705#ifdef scrollBar_esc
4176 case scrollBar_esc: 3706 case scrollBar_esc:
4177 if (scrollbar_mapping (state)) 3707 if (scrollBar.map (state))
4178 { 3708 {
4179 resize_all_windows (0, 0, 0); 3709 resize_all_windows (0, 0, 0);
4180 scr_touch (true); 3710 scr_touch (true);
4181 } 3711 }
4182 break; 3712 break;
4191 break; 3721 break;
4192 /* case 66: - application key pad */ 3722 /* case 66: - application key pad */
4193 /* case 67: - backspace key */ 3723 /* case 67: - backspace key */
4194 case 1000: /* X11 mouse reporting */ 3724 case 1000: /* X11 mouse reporting */
4195 if (state) /* orthogonal */ 3725 if (state) /* orthogonal */
4196 priv_modes &= ~PrivMode_MouseX10; 3726 priv_modes &= ~(PrivMode_MouseX10|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent);
4197 break; 3727 break;
4198#if 0
4199 case 1001: 3728 case 1002:
4200 break; /* X11 mouse highlighting */ 3729 case 1003:
4201#endif 3730 if (state)
3731 {
3732 priv_modes &= ~(PrivMode_MouseX10|PrivMode_MouseX11);
3733 priv_modes &= arg[i] == 1003 ? ~PrivMode_MouseBtnEvent : ~PrivMode_MouseAnyEvent;
3734 vt_emask_mouse = PointerMotionMask;
3735 }
3736 else
3737 vt_emask_mouse = NoEventMask;
3738 vt_select_input ();
3739 break;
4202 case 1010: /* scroll to bottom on TTY output inhibit */ 3740 case 1010: /* scroll to bottom on TTY output inhibit */
4203 set_option (Opt_scrollTtyOutput, !state); 3741 set_option (Opt_scrollTtyOutput, !state);
4204 break; 3742 break;
4205 case 1011: /* scroll to bottom on key press */ 3743 case 1011: /* scroll to bottom on key press */
4206 set_option (Opt_scrollTtyKeypress, state); 3744 set_option (Opt_scrollTtyKeypress, state);
4207 break; 3745 break;
4208 case 1047: /* secondary screen w/ clearing last */ 3746 case 1047: /* secondary screen w/ clearing last */
4209 if (OPTION (Opt_secondaryScreen)) 3747 if (option (Opt_secondaryScreen))
4210 if (current_screen != PRIMARY) 3748 if (current_screen != PRIMARY)
4211 scr_erase_screen (2); 3749 scr_erase_screen (2);
4212 scr_change_screen (state); 3750 scr_change_screen (state);
4213 break; 3751 break;
4214 case 1049: /* secondary screen w/ clearing first */ 3752 case 1049: /* secondary screen w/ clearing first */
4215 scr_change_screen (state); 3753 scr_change_screen (state);
4216 if (OPTION (Opt_secondaryScreen)) 3754 if (option (Opt_secondaryScreen))
4217 if (current_screen != PRIMARY) 3755 if (current_screen != PRIMARY)
4218 scr_erase_screen (2); 3756 scr_erase_screen (2);
4219 break; 3757 break;
4220 default: 3758 default:
4221 break; 3759 break;
4349 scr_color (Color_bg, Color_bg); 3887 scr_color (Color_bg, Color_bg);
4350 break; 3888 break;
4351 3889
4352 //case 50: // not variable spacing 3890 //case 50: // not variable spacing
4353 3891
4354#if ENABLE_FRILLS 3892#if !ENABLE_MINIMAL
4355 case 90: 3893 case 90:
4356 case 91: /* set bright fg color */ 3894 case 91: /* set bright fg color */
4357 case 92: 3895 case 92:
4358 case 93: 3896 case 93:
4359 case 94: 3897 case 94:
4383rxvt_term::process_graphics () 3921rxvt_term::process_graphics ()
4384{ 3922{
4385 unicode_t ch, cmd = cmd_getc (); 3923 unicode_t ch, cmd = cmd_getc ();
4386 3924
4387 if (cmd == 'Q') 3925 if (cmd == 'Q')
3926 {
4388 { /* query graphics */ 3927 /* query graphics */
4389 tt_printf ("\033G0\012"); /* no graphics */ 3928 tt_printf ("\033G0\012"); /* no graphics */
4390 return; 3929 return;
4391 } 3930 }
4392 /* swallow other graphics sequences until terminating ':' */ 3931 /* swallow other graphics sequences until terminating ':' */
4393 do 3932 do
4443 v_buffer = (char *)realloc (v_buffer, v_buflen + len); 3982 v_buffer = (char *)realloc (v_buffer, v_buflen + len);
4444 3983
4445 memcpy (v_buffer + v_buflen, data, len); 3984 memcpy (v_buffer + v_buflen, data, len);
4446 v_buflen += len; 3985 v_buflen += len;
4447 3986
4448 pty_ev.set (EVENT_READ | EVENT_WRITE); 3987 pty_ev.set (ev::READ | ev::WRITE);
4449} 3988}
4450 3989
4451void rxvt_term::pty_write () 3990void rxvt_term::pty_write ()
4452{ 3991{
4453 int written = write (pty->pty, v_buffer, min (v_buflen, MAX_PTY_WRITE)); 3992 int written = write (pty->pty, v_buffer, min (v_buflen, MAX_PTY_WRITE));
4458 3997
4459 if (v_buflen == 0) 3998 if (v_buflen == 0)
4460 { 3999 {
4461 free (v_buffer); 4000 free (v_buffer);
4462 v_buffer = 0; 4001 v_buffer = 0;
4463 v_buflen = 0;
4464 4002
4465 pty_ev.set (EVENT_READ); 4003 pty_ev.set (ev::READ);
4466 return; 4004 return;
4467 } 4005 }
4468 4006
4469 memmove (v_buffer, v_buffer + written, v_buflen); 4007 memmove (v_buffer, v_buffer + written, v_buflen);
4470 } 4008 }
4471 else if (written != -1 || (errno != EAGAIN && errno != EINTR)) 4009 else if (written != -1 || (errno != EAGAIN && errno != EINTR))
4472 pty_ev.set (EVENT_READ); 4010 pty_ev.set (ev::READ);
4473} 4011}
4474 4012
4475/*----------------------- end-of-file (C source) -----------------------*/ 4013/*----------------------- end-of-file (C source) -----------------------*/
4476 4014

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines