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.309 by root, Mon Feb 20 22:42:00 2006 UTC vs.
Revision 1.423 by root, Tue Nov 4 22:44:09 2008 UTC

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.
95 XK_Shift_L, 0x21e7, 96 XK_Shift_L, 0x21e7,
96 XK_Shift_R, 0x21e7, 97 XK_Shift_R, 0x21e7,
97 98
98 XK_Shift_Lock, 0x21eb, 99 XK_Shift_Lock, 0x21eb,
99 XK_ISO_Lock, 0x21eb, 100 XK_ISO_Lock, 0x21eb,
100 XK_ISO_Lock, 0x21eb,
101 XK_Caps_Lock, 0x21ec, 101 XK_Caps_Lock, 0x21ec,
102 XK_Num_Lock, 0x21ed, 102 XK_Num_Lock, 0x21ed,
103 XK_ISO_Level3_Shift, 0x21ee, 103 XK_ISO_Level3_Shift, 0x21ee,
104 XK_ISO_Level3_Lock, 0x21ef, 104 XK_ISO_Level3_Lock, 0x21ef,
105 XK_ISO_Group_Lock, 0x21f0, 105 XK_ISO_Group_Lock, 0x21f0,
199 r & RS_Uline ? " uline" : "", 199 r & RS_Uline ? " uline" : "",
200 r & RS_Careful ? " careful" : ""); 200 r & RS_Careful ? " careful" : "");
201 201
202 int width = wcswidth (fname, wcslen (fname)); 202 int width = wcswidth (fname, wcslen (fname));
203 203
204 max_it (width, 8+5); // for char + hey 204 max_it (width, 8+5); // for char + hex
205 max_it (width, strlen (attr)); 205 max_it (width, strlen (attr));
206 206
207 if (y >= 0) 207 if (y >= 0)
208 { 208 {
209 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1; 209 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1;
221 ch = *chr++; 221 ch = *chr++;
222 222
223 sprintf (buf, "%8x", ch); 223 sprintf (buf, "%8x", ch);
224 scr_overlay_set (0, y, buf); 224 scr_overlay_set (0, y, buf);
225 scr_overlay_set (9, y, '='); 225 scr_overlay_set (9, y, '=');
226# if !UNICODE3 226# if !UNICODE_3
227 if (ch >= 0x10000) 227 if (ch >= 0x10000)
228 ch = 0xfffd; 228 ch = 0xfffd;
229# endif 229# endif
230 scr_overlay_set (11, y, ch, r); 230 scr_overlay_set (11, y, ch, r);
231 231
279 } 279 }
280 280
281 iso14755buf = 0; 281 iso14755buf = 0;
282} 282}
283 283
284int 284static int
285rxvt_term::hex_keyval (XKeyEvent &ev) 285hex_keyval (XKeyEvent &ev)
286{ 286{
287 // check wether this event corresponds to a hex digit 287 // check wether this event corresponds to a hex digit
288 // if the modifiers had not been pressed. 288 // if the modifiers had not been pressed.
289 for (int index = 0; index < 8; index++) 289 for (int index = 0; index < 8; index++)
290 { 290 {
298 298
299 return -1; 299 return -1;
300} 300}
301#endif 301#endif
302 302
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
303void 398void
304rxvt_term::key_press (XKeyEvent &ev) 399rxvt_term::key_press (XKeyEvent &ev)
305{ 400{
306 int ctrl, meta, shft, len; 401 int ctrl, meta, shft, len;
307 unsigned int newlen;
308 KeySym keysym; 402 KeySym keysym;
309 int valid_keysym; 403 int valid_keysym;
310 char kbuf[KBUFSZ]; 404 char kbuf[KBUFSZ];
311 405
312#if ISO_14755 406#if ISO_14755
325 meta = ev.state & ModMetaMask; 419 meta = ev.state & ModMetaMask;
326 420
327 if (numlock_state || (ev.state & ModNumLockMask)) 421 if (numlock_state || (ev.state & ModNumLockMask))
328 { 422 {
329 numlock_state = (ev.state & ModNumLockMask); 423 numlock_state = (ev.state & ModNumLockMask);
330 PrivMode ((!numlock_state), PrivMode_aplKP); 424 set_privmode (PrivMode_aplKP, !numlock_state);
331 } 425 }
332 426
333 kbuf[0] = 0; 427 kbuf[0] = 0;
334 428
335#ifdef USE_XIM 429#ifdef USE_XIM
500# if ISO_14755 594# if ISO_14755
501 iso14755_51 (0); 595 iso14755_51 (0);
502# endif 596# endif
503 return; 597 return;
504 } 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);
604# endif
605 return;
606 }
505 else if ((hv = hex_keyval (ev)) >= 0) 607 else if ((hv = hex_keyval (ev)) >= 0)
506 { 608 {
507 iso14755buf = ((iso14755buf << 4) & ISO_14755_MASK) 609 iso14755buf = ((iso14755buf << 4) & ISO_14755_MASK)
508 | hv | ISO_14755_51; 610 | hv | ISO_14755_51;
509# if ISO_14755 611# if ISO_14755
511# endif 613# endif
512 return; 614 return;
513 } 615 }
514 else 616 else
515 { 617 {
516# if ENABLE_OVERLAY 618# if ISO_14755
517 scr_overlay_off (); 619 scr_overlay_off ();
518# endif 620# endif
519 iso14755buf = 0; 621 iso14755buf = 0;
520 } 622 }
521 } 623 }
522 else if ((ctrl && (keysym == XK_Shift_L || keysym == XK_Shift_R)) 624 else if ((ctrl && (keysym == XK_Shift_L || keysym == XK_Shift_R))
523 || (shft && (keysym == XK_Control_L || keysym == XK_Control_R))) 625 || (shft && (keysym == XK_Control_L || keysym == XK_Control_R)))
524 if (!(iso14755buf & ISO_14755_STARTED)) 626 if (!(iso14755buf & ISO_14755_STARTED))
525 { 627 {
526 iso14755buf |= ISO_14755_STARTED; 628 iso14755buf |= ISO_14755_STARTED;
527# if ENABLE_OVERLAY 629# if ISO_14755
528 scr_overlay_new (0, -1, sizeof ("ISO 14755 mode") - 1, 1); 630 scr_overlay_new (0, -1, sizeof ("ISO 14755 mode") - 1, 1);
529 scr_overlay_set (0, 0, "ISO 14755 mode"); 631 scr_overlay_set (0, 0, "ISO 14755 mode");
530# endif 632# endif
531 } 633 }
532#endif 634#endif
533 635
534#ifdef PRINTPIPE 636#ifdef PRINTPIPE
535 if (keysym == XK_Print) 637 if (keysym == XK_Print)
536 { 638 {
537 scr_printscreen (ctrl | shft); 639 scr_printscreen (ctrl | shft);
538 return; 640 return;
539 } 641 }
540#endif 642#endif
541 643
542 if (keysym >= 0xFF00 && keysym <= 0xFFFF) 644 if (keysym >= 0xFF00 && keysym <= 0xFFFF)
543 { 645 {
646 bool kp = priv_modes & PrivMode_aplKP ? !shft : shft;
647 unsigned int newlen = 1;
648
649 switch (translate_keypad (keysym, kp))
544 { 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
545 newlen = 1; 681 newlen = 0;
546 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:
547 { 765 {
548#ifndef NO_BACKSPACE_KEY 766 int param = map_function_key (keysym);
549 case XK_BackSpace: 767 if (param > 0)
550 if (priv_modes & PrivMode_HaveBackSpace) 768 sprintf (kbuf,"\033[%d~", param);
551 {
552 kbuf[0] = (!! (priv_modes & PrivMode_BackSpace)
553 ^ !!ctrl) ? '\b' : '\177';
554 kbuf[1] = '\0';
555 }
556 else 769 else
557 strcpy (kbuf, key_backspace);
558 break;
559#endif
560#ifndef NO_DELETE_KEY
561# ifdef XK_KP_Prior
562 case XK_KP_Delete:
563 /* allow shift to override */
564 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
565 {
566 strcpy (kbuf, "\033On");
567 break;
568 }
569 /* FALLTHROUGH */
570# endif
571 case XK_Delete:
572 strcpy (kbuf, key_delete);
573 break;
574#endif
575 case XK_Tab:
576 if (shft)
577 strcpy (kbuf, "\033[Z");
578 else
579 {
580#ifdef CTRL_TAB_MAKES_META
581 if (ctrl)
582 meta = 1;
583#endif
584#ifdef MOD4_TAB_MAKES_META
585 if (ev.state & Mod4Mask)
586 meta = 1;
587#endif
588 newlen = 0;
589 }
590 break;
591
592#ifdef XK_KP_Left
593 case XK_KP_Up: /* \033Ox or standard */
594 case XK_KP_Down: /* \033Or or standard */
595 case XK_KP_Right: /* \033Ov or standard */
596 case XK_KP_Left: /* \033Ot or standard */
597 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
598 {
599 strcpy (kbuf, "\033OZ");
600 kbuf[2] = "txvr"[keysym - XK_KP_Left];
601 break;
602 }
603 else
604 /* translate to std. cursor key */
605 keysym = XK_Left + (keysym - XK_KP_Left);
606 /* FALLTHROUGH */
607#endif
608 case XK_Up: /* "\033[A" */
609 case XK_Down: /* "\033[B" */
610 case XK_Right: /* "\033[C" */
611 case XK_Left: /* "\033[D" */
612 strcpy (kbuf, "\033[Z");
613 kbuf[2] = "DACB"[keysym - XK_Left];
614 /* do Shift first */
615 if (shft)
616 kbuf[2] = "dacb"[keysym - XK_Left];
617 else if (ctrl)
618 {
619 kbuf[1] = 'O';
620 kbuf[2] = "dacb"[keysym - XK_Left];
621 }
622 else if (priv_modes & PrivMode_aplCUR)
623 kbuf[1] = 'O';
624 break;
625
626#ifndef UNSHIFTED_SCROLLKEYS
627# ifdef XK_KP_Prior
628 case XK_KP_Prior:
629 /* allow shift to override */
630 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
631 {
632 strcpy (kbuf, "\033Oy");
633 break;
634 }
635 /* FALLTHROUGH */
636# endif
637 case XK_Prior:
638 strcpy (kbuf, "\033[5~");
639 break;
640# ifdef XK_KP_Next
641 case XK_KP_Next:
642 /* allow shift to override */
643 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
644 {
645 strcpy (kbuf, "\033Os");
646 break;
647 }
648 /* FALLTHROUGH */
649# endif
650 case XK_Next:
651 strcpy (kbuf, "\033[6~");
652 break;
653#endif
654 case XK_KP_Enter:
655 /* allow shift to override */
656 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
657 {
658 strcpy (kbuf, "\033OM");
659 break;
660 }
661
662 /* FALLTHROUGH */
663
664 case XK_Return:
665 if (priv_modes & PrivMode_LFNL)
666 {
667 kbuf[0] = '\015';
668 kbuf[1] = '\012';
669 kbuf[2] = '\0';
670 }
671 else
672 {
673 kbuf[0] = '\015';
674 kbuf[1] = '\0';
675 }
676 break;
677
678#ifdef XK_KP_Begin
679 case XK_KP_Begin:
680 strcpy (kbuf, "\033Ou");
681 break;
682
683#endif
684 case XK_KP_F1: /* "\033OP" */
685 case XK_KP_F2: /* "\033OQ" */
686 case XK_KP_F3: /* "\033OR" */
687 case XK_KP_F4: /* "\033OS" */
688 strcpy (kbuf, "\033OP");
689 kbuf[2] += (keysym - XK_KP_F1);
690 break;
691
692 case XK_KP_Multiply: /* "\033Oj" : "*" */
693 case XK_KP_Add: /* "\033Ok" : "+" */
694 case XK_KP_Separator: /* "\033Ol" : "," */
695 case XK_KP_Subtract: /* "\033Om" : "-" */
696 case XK_KP_Decimal: /* "\033On" : "." */
697 case XK_KP_Divide: /* "\033Oo" : "/" */
698 case XK_KP_0: /* "\033Op" : "0" */
699 case XK_KP_1: /* "\033Oq" : "1" */
700 case XK_KP_2: /* "\033Or" : "2" */
701 case XK_KP_3: /* "\033Os" : "3" */
702 case XK_KP_4: /* "\033Ot" : "4" */
703 case XK_KP_5: /* "\033Ou" : "5" */
704 case XK_KP_6: /* "\033Ov" : "6" */
705 case XK_KP_7: /* "\033Ow" : "7" */
706 case XK_KP_8: /* "\033Ox" : "8" */
707 case XK_KP_9: /* "\033Oy" : "9" */
708 /* allow shift to override */
709 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
710 {
711 strcpy (kbuf, "\033Oj");
712 kbuf[2] += (keysym - XK_KP_Multiply);
713 }
714 else
715 {
716 kbuf[0] = ('*' + (keysym - XK_KP_Multiply));
717 kbuf[1] = '\0';
718 }
719 break;
720
721 case XK_Find:
722 strcpy (kbuf, "\033[1~");
723 break;
724
725#ifdef XK_KP_End
726 case XK_KP_Insert:
727 /* allow shift to override */
728 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
729 {
730 strcpy (kbuf, "\033Op");
731 break;
732 }
733 /* FALLTHROUGH */
734#endif
735 case XK_Insert:
736 strcpy (kbuf, "\033[2~");
737 break;
738#ifdef DXK_Remove /* support for DEC remove like key */
739 case DXK_Remove:
740 /* FALLTHROUGH */
741#endif
742 case XK_Execute:
743 strcpy (kbuf, "\033[3~");
744 break;
745 case XK_Select:
746 strcpy (kbuf, "\033[4~");
747 break;
748#ifdef XK_KP_End
749 case XK_KP_End:
750 /* allow shift to override */
751 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
752 {
753 strcpy (kbuf, "\033Oq");
754 break;
755 }
756 /* FALLTHROUGH */
757#endif
758 case XK_End:
759 strcpy (kbuf, KS_END);
760 break;
761#ifdef XK_KP_Home
762 case XK_KP_Home:
763 /* allow shift to override */
764 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
765 {
766 strcpy (kbuf, "\033Ow");
767 break;
768 }
769 /* FALLTHROUGH */
770#endif
771 case XK_Home:
772 strcpy (kbuf, KS_HOME);
773 break;
774
775#define FKEY(n, fkey) \
776 sprintf ((char *)kbuf,"\033[%2d~", (int) ((n) + (keysym - fkey)))
777
778 case XK_F1: /* "\033[11~" */
779 case XK_F2: /* "\033[12~" */
780 case XK_F3: /* "\033[13~" */
781 case XK_F4: /* "\033[14~" */
782 case XK_F5: /* "\033[15~" */
783 FKEY (11, XK_F1);
784 break;
785 case XK_F6: /* "\033[17~" */
786 case XK_F7: /* "\033[18~" */
787 case XK_F8: /* "\033[19~" */
788 case XK_F9: /* "\033[20~" */
789 case XK_F10: /* "\033[21~" */
790 FKEY (17, XK_F6);
791 break;
792 case XK_F11: /* "\033[23~" */
793 case XK_F12: /* "\033[24~" */
794 case XK_F13: /* "\033[25~" */
795 case XK_F14: /* "\033[26~" */
796 FKEY (23, XK_F11);
797 break;
798 case XK_F15: /* "\033[28~" */
799 case XK_F16: /* "\033[29~" */
800 FKEY (28, XK_F15);
801 break;
802 case XK_Help: /* "\033[28~" */
803 FKEY (28, XK_Help);
804 break;
805 case XK_Menu: /* "\033[29~" */
806 FKEY (29, XK_Menu);
807 break;
808 case XK_F17: /* "\033[31~" */
809 case XK_F18: /* "\033[32~" */
810 case XK_F19: /* "\033[33~" */
811 case XK_F20: /* "\033[34~" */
812 case XK_F21: /* "\033[35~" */
813 case XK_F22: /* "\033[36~" */
814 case XK_F23: /* "\033[37~" */
815 case XK_F24: /* "\033[38~" */
816 case XK_F25: /* "\033[39~" */
817 case XK_F26: /* "\033[40~" */
818 case XK_F27: /* "\033[41~" */
819 case XK_F28: /* "\033[42~" */
820 case XK_F29: /* "\033[43~" */
821 case XK_F30: /* "\033[44~" */
822 case XK_F31: /* "\033[45~" */
823 case XK_F32: /* "\033[46~" */
824 case XK_F33: /* "\033[47~" */
825 case XK_F34: /* "\033[48~" */
826 case XK_F35: /* "\033[49~" */
827 FKEY (31, XK_F17);
828 break;
829#undef FKEY
830 default:
831 newlen = 0; 770 newlen = 0;
832 break;
833 } 771 }
834 772 break;
835 if (newlen)
836 len = strlen (kbuf);
837 } 773 }
774
775 if (newlen)
776 len = strlen (kbuf);
838 777
839 /* 778 /*
840 * Pass meta for all function keys, if 'meta' option set 779 * Pass meta for all function keys, if 'meta' option set
841 */ 780 */
842#ifdef META8_OPTION 781#ifdef META8_OPTION
877 return; 816 return;
878 817
879 if (len <= 0) 818 if (len <= 0)
880 return; /* not mapped */ 819 return; /* not mapped */
881 820
882 if (OPTION (Opt_scrollTtyKeypress)) 821 if (option (Opt_scrollTtyKeypress))
883 if (view_start) 822 if (view_start)
884 { 823 {
885 view_start = 0; 824 view_start = 0;
886 want_refresh = 1; 825 want_refresh = 1;
887 } 826 }
926#if ENABLE_FRILLS || ISO_14755 865#if ENABLE_FRILLS || ISO_14755
927 // ISO 14755 support 866 // ISO 14755 support
928 if (iso14755buf) 867 if (iso14755buf)
929 if (iso14755buf & ISO_14755_52) 868 if (iso14755buf & ISO_14755_52)
930 { 869 {
931# if ENABLE_OVERLAY 870# if ISO_14755
932 scr_overlay_off (); 871 scr_overlay_off ();
933# endif 872# endif
934# if ISO_14755 873# if ISO_14755
935 // iso14755 part 5.2 handling: release time 874 // iso14755 part 5.2 handling: release time
936 // first: controls 875 // first: controls
959 898
960 return; 899 return;
961 } 900 }
962 else if ((ev.state & (ShiftMask | ControlMask)) != (ShiftMask | ControlMask)) 901 else if ((ev.state & (ShiftMask | ControlMask)) != (ShiftMask | ControlMask))
963 { 902 {
964# if ENABLE_OVERLAY 903# if ISO_14755
965 scr_overlay_off (); 904 scr_overlay_off ();
966# endif 905# endif
967 if (iso14755buf & ISO_14755_51) 906 if (iso14755buf & ISO_14755_51)
968 commit_iso14755 (); 907 commit_iso14755 ();
969#if ISO_14755 908#if ISO_14755
970 else if (iso14755buf & ISO_14755_STARTED) 909 else if (option (Opt_iso14755_52) && iso14755buf & ISO_14755_STARTED)
971 { 910 {
972 iso14755buf = ISO_14755_52; // iso14755 part 5.2: remember empty begin/end pair 911 iso14755buf = ISO_14755_52; // iso14755 part 5.2: remember empty begin/end pair
973 912
974 scr_overlay_new (0, -1, sizeof ("KEYCAP PICTURE INSERT MODE") - 1, 1); 913 scr_overlay_new (0, -1, sizeof ("KEYCAP PICTURE INSERT MODE") - 1, 1);
975 scr_overlay_set (0, 0, "KEYCAP PICTURE INSERT MODE"); 914 scr_overlay_set (0, 0, "KEYCAP PICTURE INSERT MODE");
1027void 966void
1028rxvt_term::flush () 967rxvt_term::flush ()
1029{ 968{
1030 flush_ev.stop (); 969 flush_ev.stop ();
1031 970
1032#ifdef TRANSPARENT 971#ifdef HAVE_BG_PIXMAP
1033 if (want_full_refresh) 972 if (bgPixmap.check_clearChanged ())
1034 { 973 {
1035 want_full_refresh = 0; 974// scr_clear (true); This needs to be researched further!
1036 scr_clear ();
1037 scr_touch (false); 975 scr_touch (false);
1038 } 976 }
1039#endif 977#endif
1040 978
1041 if (want_refresh) 979 if (want_refresh)
1077 } 1015 }
1078 while (row < end_row); 1016 while (row < end_row);
1079 } 1017 }
1080 1018
1081 scr_refresh (); 1019 scr_refresh ();
1082 scrollbar_show (1); 1020 scrollBar.show (1);
1083#ifdef USE_XIM 1021#ifdef USE_XIM
1084 IMSendSpot (); 1022 IMSendSpot ();
1085#endif 1023#endif
1086 } 1024 }
1087 1025
1088 display->flush (); 1026 display->flush ();
1089} 1027}
1090 1028
1029/* checks wether a refresh is requested and starts the refresh timer */
1091void 1030void
1092rxvt_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)
1093{ 1041{
1094 make_current (); 1042 make_current ();
1095 1043
1096 display->flush ();
1097
1098 if (want_refresh && !flush_ev.active)
1099 flush_ev.start (NOW + 1. / 60.); // refresh at max. 60 hz normally
1100}
1101
1102void
1103rxvt_term::flush_cb (time_watcher &w)
1104{
1105 make_current ();
1106
1107 refresh_limit = 1;
1108 refresh_count = 0; 1044 refresh_count = 0;
1109 flush (); 1045 flush ();
1110} 1046}
1111 1047
1112#ifdef CURSOR_BLINK 1048#ifdef CURSOR_BLINK
1113void 1049void
1114rxvt_term::cursor_blink_cb (time_watcher &w) 1050rxvt_term::cursor_blink_cb (ev::timer &w, int revents)
1115{ 1051{
1116 hidden_cursor = !hidden_cursor; 1052 hidden_cursor = !hidden_cursor;
1117 want_refresh = 1; 1053 want_refresh = 1;
1118 1054 refresh_check ();
1119 w.start (w.at + CURSOR_BLINK_INTERVAL);
1120} 1055}
1121#endif 1056#endif
1122 1057
1123#ifdef TEXT_BLINK 1058#ifdef TEXT_BLINK
1124void 1059void
1125rxvt_term::text_blink_cb (time_watcher &w) 1060rxvt_term::text_blink_cb (ev::timer &w, int revents)
1126{ 1061{
1127 if (scr_refresh_rend (RS_Blink, RS_Blink)) 1062 if (scr_refresh_rend (RS_Blink, RS_Blink))
1128 { 1063 {
1129 hidden_text = !hidden_text; 1064 hidden_text = !hidden_text;
1130 want_refresh = 1; 1065 want_refresh = 1;
1131 w.start (w.at + TEXT_BLINK_INTERVAL); 1066 refresh_check ();
1132 } 1067 }
1068 else
1069 w.stop ();
1133} 1070}
1134#endif 1071#endif
1135 1072
1136#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 1073#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
1137void 1074void
1138rxvt_term::cont_scroll_cb (time_watcher &w) 1075rxvt_term::cont_scroll_cb (ev::timer &w, int revents)
1139{ 1076{
1140 if ((scrollbar_isUp() || scrollbar_isDn()) && 1077 if ((scrollBar.state == STATE_UP || scrollBar.state == STATE_DOWN)
1141 scr_page (scrollbar_isUp() ? UP : DN, 1)) 1078 && scr_page (scrollBar.state == STATE_UP ? UP : DN, 1))
1142 { 1079 {
1143 want_refresh = 1; 1080 want_refresh = 1;
1144 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1081 refresh_check ();
1145 } 1082 }
1083 else
1084 w.stop ();
1146} 1085}
1147#endif 1086#endif
1148 1087
1149#ifdef SELECTION_SCROLLING 1088#ifdef SELECTION_SCROLLING
1150void 1089void
1151rxvt_term::sel_scroll_cb (time_watcher &w) 1090rxvt_term::sel_scroll_cb (ev::timer &w, int revents)
1152{ 1091{
1153 if (scr_page (scroll_selection_dir, scroll_selection_lines)) 1092 if (scr_page (scroll_selection_dir, scroll_selection_lines))
1154 { 1093 {
1155 selection_extend (selection_save_x, selection_save_y, selection_save_state); 1094 selection_extend (selection_save_x, selection_save_y, selection_save_state);
1156 want_refresh = 1; 1095 want_refresh = 1;
1157 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1096 refresh_check ();
1158 } 1097 }
1098 else
1099 w.stop ();
1159} 1100}
1160#endif 1101#endif
1161 1102
1162#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING) 1103#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
1163void 1104void
1164rxvt_term::slip_wheel_cb (time_watcher &w) 1105rxvt_term::slip_wheel_cb (ev::timer &w, int revents)
1165{ 1106{
1166 if (mouse_slip_wheel_speed == 0 1107 if (scr_changeview (view_start - mouse_slip_wheel_speed))
1167 || mouse_slip_wheel_speed < 0 ? scr_page (DN, -mouse_slip_wheel_speed)
1168 : scr_page (UP, mouse_slip_wheel_speed))
1169 { 1108 {
1170 if (view_start == top_row || view_start == 0)
1171 mouse_slip_wheel_speed = 0;
1172
1173 want_refresh = 1; 1109 want_refresh = 1;
1174 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)
1114 {
1115 mouse_slip_wheel_speed = 0;
1116 w.stop ();
1175 } 1117 }
1176} 1118}
1177#endif 1119#endif
1178 1120
1179#if LINUX_YIELD_HACK 1121#if LINUX_YIELD_HACK
1180static struct event_handler 1122static struct event_handler
1181{ 1123{
1182 check_watcher yield_ev; 1124 ev::prepare yield_ev;
1183 1125
1184 void yield_cb (check_watcher &w) 1126 void yield_cb (ev::prepare &w, int revents)
1185 { 1127 {
1186 // this should really be sched_yield(), but the linux guys thought 1128 // this should really be sched_yield(), but the linux guys thought
1187 // that giving a process calling sched_yield () less cpu time than 1129 // that giving a process calling sched_yield () less cpu time than
1188 // ones with high nice levels is a useful thing to do. It surely is is 1130 // ones with high nice levels is a useful thing to do. It surely is is
1189 // allowed by the sus... as is returning ENOSYS. 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.
1190 1135
1191 struct timespec ts = { 0, 0 }; 1136 struct timespec ts = { 0, 1000 };
1192 nanosleep (&ts, 0); 1137 nanosleep (&ts, 0);
1193 1138
1194 w.stop (); 1139 w.stop ();
1195 } 1140 }
1196 1141
1232 } 1177 }
1233 else 1178 else
1234 { 1179 {
1235 pty_ev.stop (); 1180 pty_ev.stop ();
1236 1181
1237 if (!OPTION (Opt_hold)) 1182 if (!option (Opt_hold))
1238 destroy (); 1183 destroy ();
1239 } 1184 }
1240 1185
1241 return false; 1186 return false;
1242} 1187}
1243 1188
1244void 1189void
1245rxvt_term::pty_cb (io_watcher &w, short revents) 1190rxvt_term::pty_cb (ev::io &w, int revents)
1246{ 1191{
1247 make_current (); 1192 make_current ();
1248 1193
1249 if (revents & EVENT_READ) 1194 if (revents & ev::READ)
1250 // loop, but don't allow a single term to monopolize us 1195 // loop, but don't allow a single term to monopolize us
1251 while (pty_fill ()) 1196 for (int i = CBUFCNT; i-- && pty_fill (); )
1252 if (cmd_parse ()) 1197 cmd_parse ();
1253 break;
1254 1198
1255 if (revents & EVENT_WRITE) 1199 if (revents & ev::WRITE)
1256 pty_write (); 1200 pty_write ();
1201
1202 refresh_check ();
1257} 1203}
1258 1204
1259void 1205void
1260rxvt_term::pointer_unblank () 1206rxvt_term::pointer_unblank ()
1261{ 1207{
1263 recolour_cursor (); 1209 recolour_cursor ();
1264 1210
1265#ifdef POINTER_BLANK 1211#ifdef POINTER_BLANK
1266 hidden_pointer = 0; 1212 hidden_pointer = 0;
1267 1213
1268 if (OPTION (Opt_pointerBlank)) 1214 if (option (Opt_pointerBlank))
1269 pointer_ev.start (NOW + pointerBlankDelay); 1215 pointer_ev.start (pointerBlankDelay);
1270#endif 1216#endif
1271} 1217}
1272 1218
1273#ifdef POINTER_BLANK 1219#ifdef POINTER_BLANK
1274void 1220void
1275rxvt_term::pointer_blank () 1221rxvt_term::pointer_blank ()
1276{ 1222{
1277 if (!OPTION (Opt_pointerBlank)) 1223 if (!option (Opt_pointerBlank))
1278 return; 1224 return;
1279 1225
1280 XDefineCursor (dpy, vt, display->blank_cursor); 1226 XDefineCursor (dpy, vt, display->blank_cursor);
1281 XFlush (dpy); 1227 XFlush (dpy);
1282 1228
1283 hidden_pointer = 1; 1229 hidden_pointer = 1;
1284} 1230}
1285 1231
1286void 1232void
1287rxvt_term::pointer_cb (time_watcher &w) 1233rxvt_term::pointer_cb (ev::timer &w, int revents)
1288{ 1234{
1289 make_current (); 1235 make_current ();
1290 1236
1291 pointer_blank (); 1237 pointer_blank ();
1292} 1238}
1295void 1241void
1296rxvt_term::mouse_report (XButtonEvent &ev) 1242rxvt_term::mouse_report (XButtonEvent &ev)
1297{ 1243{
1298 int button_number, key_state = 0; 1244 int button_number, key_state = 0;
1299 int x, y; 1245 int x, y;
1246 int code = 32;
1300 1247
1301 x = ev.x; 1248 x = Pixel2Col (ev.x);
1302 y = ev.y; 1249 y = Pixel2Row (ev.y);
1303 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 }
1304 1258
1305 if (MEvent.button == AnyButton) 1259 if (MEvent.button == AnyButton)
1306 button_number = 3; 1260 button_number = 3;
1307 else 1261 else
1308 { 1262 {
1354 x + 1, 1308 x + 1,
1355 y + 1); 1309 y + 1);
1356#endif 1310#endif
1357 1311
1358 tt_printf ("\033[M%c%c%c", 1312 tt_printf ("\033[M%c%c%c",
1359 (32 + button_number + key_state), 1313 (code + button_number + key_state),
1360 (32 + x + 1), 1314 (32 + x + 1),
1361 (32 + y + 1)); 1315 (32 + y + 1));
1362} 1316}
1363 1317
1364/*{{{ process an X event */ 1318/*{{{ process an X event */
1426 else if (ev.xclient.data.l[1] == XEMBED_FOCUS_OUT) 1380 else if (ev.xclient.data.l[1] == XEMBED_FOCUS_OUT)
1427 focus_out (); 1381 focus_out ();
1428 } 1382 }
1429#endif 1383#endif
1430 } 1384 }
1431 break;
1432
1433 case MappingNotify:
1434 XRefreshKeyboardMapping (&ev.xmapping);
1435 break; 1385 break;
1436 1386
1437 /* 1387 /*
1438 * XXX: this is not the _current_ arrangement 1388 * XXX: this is not the _current_ arrangement
1439 * Here's my conclusion: 1389 * Here's my conclusion:
1458 break; 1408 break;
1459 } 1409 }
1460 break; 1410 break;
1461 1411
1462 case FocusIn: 1412 case FocusIn:
1413 if (ev.xfocus.detail != NotifyInferior
1414 && ev.xfocus.detail != NotifyPointer
1415 && ev.xfocus.mode != NotifyGrab)
1463 focus_in (); 1416 focus_in ();
1464 break; 1417 break;
1465 1418
1466 case FocusOut: 1419 case FocusOut:
1420 if (ev.xfocus.detail != NotifyInferior
1421 && ev.xfocus.detail != NotifyPointer
1422 && ev.xfocus.mode != NotifyGrab)
1467 focus_out (); 1423 focus_out ();
1468 break; 1424 break;
1469 1425
1470 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);*/
1471 if (ev.xconfigure.window == parent[0]) 1430 if (ev.xconfigure.window == parent[0])
1472 { 1431 {
1473 while (XCheckTypedWindowEvent (dpy, ev.xconfigure.window, ConfigureNotify, &ev)) 1432 while (XCheckTypedWindowEvent (dpy, ev.xconfigure.window, ConfigureNotify, &ev))
1474 ; 1433 ;
1475 1434
1476 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height) 1435 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height)
1477 { 1436 {
1478 seen_resize = 1; 1437 seen_resize = 1;
1479 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1); 1438 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1);
1480 } 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 }
1481 1452
1482 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END)); 1453 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END));
1483
1484#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */
1485 if (OPTION (Opt_transparent))
1486 check_our_parents ();
1487#endif
1488 } 1454 }
1489 break; 1455 break;
1490 1456
1491 case PropertyNotify: 1457 case PropertyNotify:
1492 if (!HOOK_INVOKE ((this, HOOK_PROPERTY_NOTIFY, DT_XEVENT, &ev, DT_END))) 1458 if (!HOOK_INVOKE ((this, HOOK_PROPERTY_NOTIFY, DT_XEVENT, &ev, DT_END)))
1508 case SelectionRequest: 1474 case SelectionRequest:
1509 selection_send (ev.xselectionrequest); 1475 selection_send (ev.xselectionrequest);
1510 break; 1476 break;
1511 1477
1512 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
1513 mapped = 1; 1495 mapped = 1;
1514#ifdef TEXT_BLINK 1496#ifdef TEXT_BLINK
1515 text_blink_ev.start (NOW + TEXT_BLINK_INTERVAL); 1497 text_blink_ev.start ();
1516#endif 1498#endif
1517 HOOK_INVOKE ((this, HOOK_MAP_NOTIFY, DT_XEVENT, &ev, DT_END)); 1499 HOOK_INVOKE ((this, HOOK_MAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1518 break; 1500 break;
1519 1501
1520 case UnmapNotify: 1502 case UnmapNotify:
1522#ifdef TEXT_BLINK 1504#ifdef TEXT_BLINK
1523 text_blink_ev.stop (); 1505 text_blink_ev.stop ();
1524#endif 1506#endif
1525 HOOK_INVOKE ((this, HOOK_UNMAP_NOTIFY, DT_XEVENT, &ev, DT_END)); 1507 HOOK_INVOKE ((this, HOOK_UNMAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1526 break; 1508 break;
1527
1528#ifdef TRANSPARENT
1529 case ReparentNotify:
1530 rootwin_cb (ev);
1531 break;
1532#endif /* TRANSPARENT */
1533 1509
1534 case GraphicsExpose: 1510 case GraphicsExpose:
1535 case Expose: 1511 case Expose:
1536 if (ev.xany.window == vt) 1512 if (ev.xany.window == vt)
1537 { 1513 {
1538 do 1514 do
1515 {
1539 scr_expose (ev.xexpose.x, ev.xexpose.y, 1516 scr_expose (ev.xexpose.x, ev.xexpose.y,
1540 ev.xexpose.width, ev.xexpose.height, False); 1517 ev.xexpose.width, ev.xexpose.height, False);
1518 }
1541 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev)); 1519 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev));
1542 1520
1543 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose; 1521 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose;
1544 1522
1545 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev)) 1523 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev))
1524 {
1546 scr_expose (ev.xexpose.x, ev.xexpose.y, 1525 scr_expose (ev.xexpose.x, ev.xexpose.y,
1547 ev.xexpose.width, ev.xexpose.height, False); 1526 ev.xexpose.width, ev.xexpose.height, False);
1527 }
1548 1528
1549 want_refresh = 1; 1529 want_refresh = 1;
1550 } 1530 }
1551 else 1531 else
1552 { 1532 {
1555 while (XCheckTypedWindowEvent (dpy, ev.xany.window, Expose, &unused_event)) 1535 while (XCheckTypedWindowEvent (dpy, ev.xany.window, Expose, &unused_event))
1556 ; 1536 ;
1557 while (XCheckTypedWindowEvent (dpy, ev.xany.window, GraphicsExpose, &unused_event)) 1537 while (XCheckTypedWindowEvent (dpy, ev.xany.window, GraphicsExpose, &unused_event))
1558 ; 1538 ;
1559 1539
1560 if (isScrollbarWindow (ev.xany.window)) 1540 if (scrollBar.state && ev.xany.window == scrollBar.win)
1561 { 1541 {
1562 scrollBar.setIdle (); 1542 scrollBar.state = STATE_IDLE;
1563 scrollbar_show (0); 1543 scrollBar.show (0);
1564 } 1544 }
1565
1566#ifdef TRANSPARENT
1567 if (am_transparent && ev.xany.window == parent[0])
1568 XClearWindow (dpy, ev.xany.window);
1569#endif
1570 } 1545 }
1571 break; 1546 break;
1572 1547
1573 case MotionNotify: 1548 case MotionNotify:
1574#ifdef POINTER_BLANK 1549#ifdef POINTER_BLANK
1575 if (hidden_pointer) 1550 if (hidden_pointer)
1576 pointer_unblank (); 1551 pointer_unblank ();
1577#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);
1578 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate) 1556 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate)
1579 break; 1557 break;
1580 1558
1581 if (ev.xany.window == vt) 1559 if (ev.xany.window == vt)
1582 { 1560 {
1616 int dist; 1594 int dist;
1617 1595
1618 /* don't clobber the current delay if we are 1596 /* don't clobber the current delay if we are
1619 * already in the middle of scrolling. 1597 * already in the middle of scrolling.
1620 */ 1598 */
1621 if (!sel_scroll_ev.active) 1599 if (!sel_scroll_ev.is_active ())
1622 sel_scroll_ev.start (NOW + SCROLLBAR_INITIAL_DELAY); 1600 sel_scroll_ev.start (SCROLLBAR_INITIAL_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
1623 1601
1624 /* save the event params so we can highlight 1602 /* save the event params so we can highlight
1625 * the selection in the pending-scroll loop 1603 * the selection in the pending-scroll loop
1626 */ 1604 */
1627 selection_save_x = ev.xbutton.x; 1605 selection_save_x = ev.xbutton.x;
1649 else 1627 else
1650 { 1628 {
1651 /* we are within the text window, so we 1629 /* we are within the text window, so we
1652 * shouldn't be scrolling 1630 * shouldn't be scrolling
1653 */ 1631 */
1654 if (sel_scroll_ev.active)
1655 sel_scroll_ev.stop(); 1632 sel_scroll_ev.stop();
1656 } 1633 }
1657#endif 1634#endif
1658#ifdef MOUSE_THRESHOLD 1635#ifdef MOUSE_THRESHOLD
1659 } 1636 }
1660#endif 1637#endif
1661 } 1638 }
1662 } 1639 }
1663 else if (isScrollbarWindow (ev.xany.window) && scrollbar_isMotion ()) 1640 else if (scrollBar.state == STATE_MOTION && ev.xany.window == scrollBar.win)
1664 { 1641 {
1665 while (XCheckTypedWindowEvent (dpy, scrollBar.win, 1642 while (XCheckTypedWindowEvent (dpy, scrollBar.win,
1666 MotionNotify, &ev)) 1643 MotionNotify, &ev))
1667 ; 1644 ;
1668 1645
1670 &unused_root, &unused_child, 1647 &unused_root, &unused_child,
1671 &unused_root_x, &unused_root_y, 1648 &unused_root_x, &unused_root_y,
1672 &ev.xbutton.x, &ev.xbutton.y, 1649 &ev.xbutton.x, &ev.xbutton.y,
1673 &unused_mask); 1650 &unused_mask);
1674 scr_move_to (scrollbar_position (ev.xbutton.y) - csrO, 1651 scr_move_to (scrollbar_position (ev.xbutton.y) - csrO,
1675 scrollbar_size ()); 1652 scrollBar.size ());
1676 want_refresh = 1; 1653 want_refresh = 1;
1677 refresh_limit = 0;
1678 scrollbar_show (1); 1654 scrollBar.show (1);
1679 } 1655 }
1680 break; 1656 break;
1681 } 1657 }
1682 1658
1683#if defined(CURSOR_BLINK) 1659#if defined(CURSOR_BLINK)
1684 if (OPTION (Opt_cursorBlink) && ev.type == KeyPress) 1660 if (option (Opt_cursorBlink) && ev.type == KeyPress)
1685 { 1661 {
1686 if (hidden_cursor) 1662 if (hidden_cursor)
1687 { 1663 {
1688 hidden_cursor = 0; 1664 hidden_cursor = 0;
1689 want_refresh = 1; 1665 want_refresh = 1;
1690 } 1666 }
1691 1667
1692 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL); 1668 cursor_blink_ev.again ();
1693 } 1669 }
1694#endif 1670#endif
1695 1671
1696#if defined(POINTER_BLANK) 1672#if defined(POINTER_BLANK)
1697 if (OPTION (Opt_pointerBlank) && pointerBlankDelay > 0) 1673 if (option (Opt_pointerBlank) && pointerBlankDelay > 0)
1698 { 1674 {
1699 if (ev.type == MotionNotify 1675 if (ev.type == MotionNotify
1700 || ev.type == ButtonPress 1676 || ev.type == ButtonPress
1701 || ev.type == ButtonRelease) 1677 || ev.type == ButtonRelease)
1702 if (hidden_pointer) 1678 if (hidden_pointer)
1704 1680
1705 if (ev.type == KeyPress && hidden_pointer == 0) 1681 if (ev.type == KeyPress && hidden_pointer == 0)
1706 pointer_blank (); 1682 pointer_blank ();
1707 } 1683 }
1708#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 }
1709} 1701}
1710 1702
1711void 1703void
1712rxvt_term::focus_in () 1704rxvt_term::focus_in ()
1713{ 1705{
1714 if (!focus) 1706 if (!focus)
1715 { 1707 {
1716 focus = 1; 1708 focus = 1;
1717 want_refresh = 1; 1709 want_refresh = 1;
1718 1710
1719 HOOK_INVOKE ((this, HOOK_FOCUS_IN, DT_END));
1720
1721#if USE_XIM 1711#if USE_XIM
1722 if (Input_Context != NULL) 1712 if (Input_Context != NULL)
1723 { 1713 {
1724 IMSetPosition (); 1714 IMSetPosition ();
1725 XSetICFocus (Input_Context); 1715 XSetICFocus (Input_Context);
1726 } 1716 }
1727#endif 1717#endif
1728#if CURSOR_BLINK 1718#if CURSOR_BLINK
1729 if (OPTION (Opt_cursorBlink)) 1719 if (option (Opt_cursorBlink))
1730 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL); 1720 cursor_blink_ev.again ();
1731#endif 1721#endif
1732#if OFF_FOCUS_FADING 1722#if OFF_FOCUS_FADING
1733 if (rs[Rs_fade]) 1723 if (rs[Rs_fade])
1734 { 1724 {
1735 pix_colors = pix_colors_focused; 1725 pix_colors = pix_colors_focused;
1736 scr_recolour (); 1726 scr_recolour ();
1737 } 1727 }
1738#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));
1739 } 1735 }
1740} 1736}
1741 1737
1742void 1738void
1743rxvt_term::focus_out () 1739rxvt_term::focus_out ()
1745 if (focus) 1741 if (focus)
1746 { 1742 {
1747 focus = 0; 1743 focus = 0;
1748 want_refresh = 1; 1744 want_refresh = 1;
1749 1745
1750 HOOK_INVOKE ((this, HOOK_FOCUS_OUT, DT_END)); 1746#if ENABLE_FRILLS
1751 1747 if (option (Opt_urgentOnBell))
1748 set_urgency (0);
1749#endif
1752#if ENABLE_FRILLS || ISO_14755 1750#if ENABLE_FRILLS || ISO_14755
1753 if (iso14755buf) 1751 if (iso14755buf)
1754 { 1752 {
1755 iso14755buf = 0; 1753 iso14755buf = 0;
1756# if ENABLE_OVERLAY 1754# if ISO_14755
1757 scr_overlay_off (); 1755 scr_overlay_off ();
1758# endif 1756# endif
1759 } 1757 }
1760#endif 1758#endif
1761#if USE_XIM 1759#if USE_XIM
1762 if (Input_Context != NULL) 1760 if (Input_Context != NULL)
1763 XUnsetICFocus (Input_Context); 1761 XUnsetICFocus (Input_Context);
1764#endif 1762#endif
1765#if CURSOR_BLINK 1763#if CURSOR_BLINK
1766 if (OPTION (Opt_cursorBlink)) 1764 if (option (Opt_cursorBlink))
1767 cursor_blink_ev.stop (); 1765 cursor_blink_ev.stop ();
1766
1768 hidden_cursor = 0; 1767 hidden_cursor = 0;
1769#endif 1768#endif
1770#if OFF_FOCUS_FADING 1769#if OFF_FOCUS_FADING
1771 if (rs[Rs_fade]) 1770 if (rs[Rs_fade])
1772 { 1771 {
1773 pix_colors = pix_colors_unfocused; 1772 pix_colors = pix_colors_unfocused;
1774 scr_recolour (); 1773 scr_recolour ();
1775 } 1774 }
1776#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])
1777 } 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
1778} 1792}
1779 1793
1780#if TRANSPARENT 1794#if ENABLE_TRANSPARENCY || ENABLE_PERL
1781void 1795void
1782rxvt_term::rootwin_cb (XEvent &ev) 1796rxvt_term::rootwin_cb (XEvent &ev)
1783{ 1797{
1784 make_current (); 1798 make_current ();
1785 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
1786 switch (ev.type) 1805 switch (ev.type)
1787 { 1806 {
1788 case PropertyNotify: 1807 case PropertyNotify:
1789 /* 1808 /*
1790 * 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,
1791 * 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.
1792 */ 1811 */
1793 if (ev.xproperty.atom != xa[XA_XROOTPMAP_ID] 1812 if (ev.xproperty.atom == xa[XA_XROOTPMAP_ID]
1794 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID]) 1813 || ev.xproperty.atom == xa[XA_ESETROOT_PMAP_ID])
1795 return; 1814 {
1815 bgPixmap.set_root_pixmap ();
1816 update_background ();
1817 }
1796 1818
1797 /* FALLTHROUGH */
1798 case ReparentNotify:
1799 if (OPTION (Opt_transparent) && check_our_parents () && am_transparent)
1800 want_refresh = want_full_refresh = 1;
1801 break; 1819 break;
1802 } 1820 }
1821# endif
1822
1823 refresh_check ();
1803} 1824}
1804#endif 1825#endif
1805 1826
1806void 1827void
1807rxvt_term::button_press (XButtonEvent &ev) 1828rxvt_term::button_press (XButtonEvent &ev)
1862 mouse_report (ev); 1883 mouse_report (ev);
1863 } 1884 }
1864#else 1885#else
1865 MEvent.button = ev.button; 1886 MEvent.button = ev.button;
1866 mouse_report (ev); 1887 mouse_report (ev);
1867#endif /* MOUSE_REPORT_DOUBLECLICK */ 1888#endif /* MOUSE_REPORT_DOUBLECLICK */
1868 1889
1869 } 1890 }
1870 else 1891 else
1871 { 1892 {
1872 if (ev.button != MEvent.button) 1893 if (ev.button != MEvent.button)
1920 } 1941 }
1921 1942
1922 /* 1943 /*
1923 * Scrollbar window processing of button press 1944 * Scrollbar window processing of button press
1924 */ 1945 */
1925 if (isScrollbarWindow (ev.window)) 1946 if (scrollBar.state && ev.window == scrollBar.win)
1926 { 1947 {
1927 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;
1928 /* 1956 /*
1929 * Rxvt-style scrollbar: 1957 * Rxvt-style scrollbar:
1930 * move up if mouse is above slider 1958 * move up if mouse is above slider
1931 * move dn if mouse is below slider 1959 * move dn if mouse is below slider
1932 * 1960 *
1941 /* 1969 /*
1942 * Mouse report disabled scrollbar: 1970 * Mouse report disabled scrollbar:
1943 * arrow buttons - send up/down 1971 * arrow buttons - send up/down
1944 * click on scrollbar - send pageup/down 1972 * click on scrollbar - send pageup/down
1945 */ 1973 */
1946 if ((scrollBar.style == R_SB_NEXT 1974 if (direction == UP)
1947 && scrollbarnext_upButton (ev.y))
1948 || (scrollBar.style == R_SB_RXVT
1949 && scrollbarrxvt_upButton (ev.y)))
1950 tt_printf ("\033[A"); 1975 tt_printf ("\033[A");
1951 else if ((scrollBar.style == R_SB_NEXT 1976 else if (direction == DN)
1952 && scrollbarnext_dnButton (ev.y))
1953 || (scrollBar.style == R_SB_RXVT
1954 && scrollbarrxvt_dnButton (ev.y)))
1955 tt_printf ("\033[B"); 1977 tt_printf ("\033[B");
1956 else 1978 else
1957 switch (ev.button) 1979 switch (ev.button)
1958 { 1980 {
1959 case Button2: 1981 case Button2:
1966 tt_printf ("\033[5~"); 1988 tt_printf ("\033[5~");
1967 break; 1989 break;
1968 } 1990 }
1969 } 1991 }
1970 else 1992 else
1971#endif /* NO_SCROLLBAR_REPORT */ 1993#endif /* NO_SCROLLBAR_REPORT */
1972
1973 {
1974 char upordown = 0;
1975
1976 if (scrollBar.style == R_SB_NEXT)
1977 { 1994 {
1978 if (scrollbarnext_upButton (ev.y)) 1995 if (direction != NO_DIR)
1979 upordown = -1; /* up */
1980 else if (scrollbarnext_dnButton (ev.y))
1981 upordown = 1; /* down */
1982 }
1983 else if (scrollBar.style == R_SB_RXVT)
1984 {
1985 if (scrollbarrxvt_upButton (ev.y))
1986 upordown = -1; /* up */
1987 else if (scrollbarrxvt_dnButton (ev.y))
1988 upordown = 1; /* down */
1989 }
1990 if (upordown)
1991 { 1996 {
1992#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 1997#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
1998 if (!cont_scroll_ev.is_active ())
1993 cont_scroll_ev.start (NOW + SCROLLBAR_INITIAL_DELAY); 1999 cont_scroll_ev.start (SCROLLBAR_INITIAL_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
1994#endif 2000#endif
1995 if (scr_page (upordown < 0 ? UP : DN, 1)) 2001 if (scr_page (direction, 1))
1996 { 2002 {
1997 if (upordown < 0) 2003 if (direction == UP)
1998 scrollBar.setUp (); 2004 scrollBar.state = STATE_UP;
1999 else 2005 else
2000 scrollBar.setDn (); 2006 scrollBar.state = STATE_DOWN;
2001 } 2007 }
2002 } 2008 }
2003 else 2009 else
2004 switch (ev.button) 2010 switch (ev.button)
2005 { 2011 {
2006 case Button2: 2012 case Button2:
2007 switch (scrollbar_align) 2013 switch (scrollBar.align)
2008 { 2014 {
2009 case R_SB_ALIGN_TOP: 2015 case R_SB_ALIGN_TOP:
2010 csrO = 0; 2016 csrO = 0;
2011 break; 2017 break;
2012 case R_SB_ALIGN_CENTRE: 2018 case R_SB_ALIGN_CENTRE:
2018 } 2024 }
2019 2025
2020 if (scrollBar.style == R_SB_XTERM 2026 if (scrollBar.style == R_SB_XTERM
2021 || scrollbar_above_slider (ev.y) 2027 || scrollbar_above_slider (ev.y)
2022 || scrollbar_below_slider (ev.y)) 2028 || scrollbar_below_slider (ev.y))
2023 scr_move_to (scrollbar_position (ev.y) - csrO, scrollbar_size ()); 2029 scr_move_to (scrollbar_position (ev.y) - csrO, scrollBar.size ());
2024 2030
2025 scrollBar.setMotion (); 2031 scrollBar.state = STATE_MOTION;
2026 break; 2032 break;
2027 2033
2028 case Button1: 2034 case Button1:
2029 if (scrollbar_align == R_SB_ALIGN_CENTRE) 2035 if (scrollBar.align == R_SB_ALIGN_CENTRE)
2030 csrO = ev.y - scrollBar.top; 2036 csrO = ev.y - scrollBar.top;
2031 /* FALLTHROUGH */ 2037 /* FALLTHROUGH */
2032 2038
2033 case Button3: 2039 case Button3:
2034 if (scrollBar.style != R_SB_XTERM) 2040 if (scrollBar.style != R_SB_XTERM)
2044 scr_page (DN, nrow - 1); 2050 scr_page (DN, nrow - 1);
2045# else 2051# else
2046 scr_page (DN, nrow / 4); 2052 scr_page (DN, nrow / 4);
2047# endif 2053# endif
2048 else 2054 else
2049 scrollBar.setMotion (); 2055 scrollBar.state = STATE_MOTION;
2050 } 2056 }
2051 else 2057 else
2052 { 2058 {
2053 scr_page ((ev.button == Button1 ? DN : UP), 2059 scr_page ((ev.button == Button1 ? DN : UP),
2054 (nrow 2060 (nrow
2055 * scrollbar_position (ev.y) 2061 * scrollbar_position (ev.y)
2056 / scrollbar_size ())); 2062 / scrollBar.size ()));
2057 } 2063 }
2058 2064
2059 break; 2065 break;
2060 } 2066 }
2061 } 2067 }
2071 2077
2072 csrO = 0; /* reset csr Offset */ 2078 csrO = 0; /* reset csr Offset */
2073 if (!bypass_keystate) 2079 if (!bypass_keystate)
2074 reportmode = !! (priv_modes & PrivMode_mouse_report); 2080 reportmode = !! (priv_modes & PrivMode_mouse_report);
2075 2081
2076 if (scrollbar_isUpDn ()) 2082 if (scrollBar.state == STATE_UP || scrollBar.state == STATE_DOWN)
2077 { 2083 {
2078 scrollBar.setIdle (); 2084 scrollBar.state = STATE_IDLE;
2079 scrollbar_show (0); 2085 scrollBar.show (0);
2080 } 2086 }
2081 2087
2082#ifdef SELECTION_SCROLLING 2088#ifdef SELECTION_SCROLLING
2083 if (sel_scroll_ev.active)
2084 sel_scroll_ev.stop(); 2089 sel_scroll_ev.stop();
2085#endif 2090#endif
2086 2091
2087 if (ev.window == vt) 2092 if (ev.window == vt)
2088 { 2093 {
2089 if (HOOK_INVOKE ((this, HOOK_BUTTON_RELEASE, DT_XEVENT, &ev, DT_END))) 2094 if (HOOK_INVOKE ((this, HOOK_BUTTON_RELEASE, DT_XEVENT, &ev, DT_END)))
2113 mouse_report (ev); 2118 mouse_report (ev);
2114 } 2119 }
2115#else /* MOUSE_REPORT_DOUBLECLICK */ 2120#else /* MOUSE_REPORT_DOUBLECLICK */
2116 MEvent.button = AnyButton; 2121 MEvent.button = AnyButton;
2117 mouse_report (ev); 2122 mouse_report (ev);
2118#endif /* MOUSE_REPORT_DOUBLECLICK */ 2123#endif /* MOUSE_REPORT_DOUBLECLICK */
2119 return; 2124 return;
2120 } 2125 }
2121 2126
2122 /* 2127 /*
2123 * dumb hack to compensate for the failure of click-and-drag 2128 * dumb hack to compensate for the failure of click-and-drag
2135 selection_make (ev.time); 2140 selection_make (ev.time);
2136 break; 2141 break;
2137 2142
2138 case Button2: 2143 case Button2:
2139 if (IN_RANGE_EXC (ev.x, 0, width) && IN_RANGE_EXC (ev.y, 0, height)) // inside window? 2144 if (IN_RANGE_EXC (ev.x, 0, width) && IN_RANGE_EXC (ev.y, 0, height)) // inside window?
2140 selection_request (ev.time, ev.state & ModMetaMask ? Sel_Primary : Sel_Primary); 2145 selection_request (ev.time, ev.state & ModMetaMask ? Sel_Clipboard : Sel_Primary);
2141 break; 2146 break;
2142 2147
2143#ifdef MOUSE_WHEEL 2148#ifdef MOUSE_WHEEL
2144 case Button4: 2149 case Button4:
2145 case Button5: 2150 case Button5:
2149 2154
2150 v = ev.button == Button4 ? UP : DN; 2155 v = ev.button == Button4 ? UP : DN;
2151 2156
2152 if (ev.state & ShiftMask) 2157 if (ev.state & ShiftMask)
2153 i = 1; 2158 i = 1;
2154 else if (OPTION (Opt_mouseWheelScrollPage)) 2159 else if (option (Opt_mouseWheelScrollPage))
2155 i = nrow - 1; 2160 i = nrow - 1;
2156 else 2161 else
2157 i = 5; 2162 i = 5;
2158 2163
2159# ifdef MOUSE_SLIP_WHEELING 2164# ifdef MOUSE_SLIP_WHEELING
2161 { 2166 {
2162 mouse_slip_wheel_speed += v ? -1 : 1; 2167 mouse_slip_wheel_speed += v ? -1 : 1;
2163 if (mouse_slip_wheel_speed < -nrow) mouse_slip_wheel_speed = -nrow; 2168 if (mouse_slip_wheel_speed < -nrow) mouse_slip_wheel_speed = -nrow;
2164 if (mouse_slip_wheel_speed > +nrow) mouse_slip_wheel_speed = +nrow; 2169 if (mouse_slip_wheel_speed > +nrow) mouse_slip_wheel_speed = +nrow;
2165 2170
2166 if (slip_wheel_ev.at < NOW) 2171 if (!slip_wheel_ev.is_active ())
2167 slip_wheel_ev.at = NOW + SCROLLBAR_CONTINUOUS_DELAY; 2172 slip_wheel_ev.start (SCROLLBAR_CONTINUOUS_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
2168
2169 slip_wheel_ev.start ();
2170 } 2173 }
2171 else 2174 else
2175# endif
2172 { 2176 {
2173# endif
2174 scr_page (v, i); 2177 scr_page (v, i);
2175 scrollbar_show (1); 2178 scrollBar.show (1);
2176# ifdef MOUSE_SLIP_WHEELING
2177 } 2179 }
2178# endif
2179 } 2180 }
2180 break; 2181 break;
2181#endif 2182#endif
2182 } 2183 }
2183 } 2184 }
2184} 2185}
2185 2186
2186#ifdef TRANSPARENT
2187#if TINTING
2188/* taken from aterm-0.4.2 */
2189
2190typedef uint32_t RUINT32T;
2191
2192void ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm)
2193{
2194 int sh_r, sh_g, sh_b;
2195 RUINT32T mask_r, mask_g, mask_b;
2196 RUINT32T *lookup, *lookup_r, *lookup_g, *lookup_b;
2197 unsigned int lower_lim_r, lower_lim_g, lower_lim_b;
2198 unsigned int upper_lim_r, upper_lim_g, upper_lim_b;
2199 int i;
2200
2201 Visual *visual = term->visual;
2202
2203 if( visual->c_class != TrueColor || srcImage->format != ZPixmap ) return ;
2204
2205 /* for convenience */
2206 mask_r = visual->red_mask;
2207 mask_g = visual->green_mask;
2208 mask_b = visual->blue_mask;
2209
2210 /* boring lookup table pre-initialization */
2211 switch (srcImage->bits_per_pixel) {
2212 case 15:
2213 if ((mask_r != 0x7c00) ||
2214 (mask_g != 0x03e0) ||
2215 (mask_b != 0x001f))
2216 return;
2217 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+32+32));
2218 lookup_r = lookup;
2219 lookup_g = lookup+32;
2220 lookup_b = lookup+32+32;
2221 sh_r = 10;
2222 sh_g = 5;
2223 sh_b = 0;
2224 break;
2225 case 16:
2226 if ((mask_r != 0xf800) ||
2227 (mask_g != 0x07e0) ||
2228 (mask_b != 0x001f))
2229 return;
2230 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+64+32));
2231 lookup_r = lookup;
2232 lookup_g = lookup+32;
2233 lookup_b = lookup+32+64;
2234 sh_r = 11;
2235 sh_g = 5;
2236 sh_b = 0;
2237 break;
2238 case 24:
2239 if ((mask_r != 0xff0000) ||
2240 (mask_g != 0x00ff00) ||
2241 (mask_b != 0x0000ff))
2242 return;
2243 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
2244 lookup_r = lookup;
2245 lookup_g = lookup+256;
2246 lookup_b = lookup+256+256;
2247 sh_r = 16;
2248 sh_g = 8;
2249 sh_b = 0;
2250 break;
2251 case 32:
2252 if ((mask_r != 0xff0000) ||
2253 (mask_g != 0x00ff00) ||
2254 (mask_b != 0x0000ff))
2255 return;
2256 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
2257 lookup_r = lookup;
2258 lookup_g = lookup+256;
2259 lookup_b = lookup+256+256;
2260 sh_r = 16;
2261 sh_g = 8;
2262 sh_b = 0;
2263 break;
2264 default:
2265 return; /* we do not support this color depth */
2266 }
2267
2268 /* prepare limits for color transformation (each channel is handled separately) */
2269 if (shade < 0) {
2270 shade = -shade;
2271 if (shade < 0) shade = 0;
2272 if (shade > 100) shade = 100;
2273
2274 lower_lim_r = 65535-rm;
2275 lower_lim_g = 65535-gm;
2276 lower_lim_b = 65535-bm;
2277
2278 lower_lim_r = 65535-(unsigned int)(((RUINT32T)lower_lim_r)*((RUINT32T)shade)/100);
2279 lower_lim_g = 65535-(unsigned int)(((RUINT32T)lower_lim_g)*((RUINT32T)shade)/100);
2280 lower_lim_b = 65535-(unsigned int)(((RUINT32T)lower_lim_b)*((RUINT32T)shade)/100);
2281
2282 upper_lim_r = upper_lim_g = upper_lim_b = 65535;
2283 } else {
2284 if (shade < 0) shade = 0;
2285 if (shade > 100) shade = 100;
2286
2287 lower_lim_r = lower_lim_g = lower_lim_b = 0;
2288
2289 upper_lim_r = (unsigned int)((((RUINT32T)rm)*((RUINT32T)shade))/100);
2290 upper_lim_g = (unsigned int)((((RUINT32T)gm)*((RUINT32T)shade))/100);
2291 upper_lim_b = (unsigned int)((((RUINT32T)bm)*((RUINT32T)shade))/100);
2292 }
2293
2294 /* switch red and blue bytes if necessary, we need it for some weird XServers like XFree86 3.3.3.1 */
2295 if ((srcImage->bits_per_pixel == 24) && (mask_r >= 0xFF0000 ))
2296 {
2297 unsigned int tmp;
2298
2299 tmp = lower_lim_r;
2300 lower_lim_r = lower_lim_b;
2301 lower_lim_b = tmp;
2302
2303 tmp = upper_lim_r;
2304 upper_lim_r = upper_lim_b;
2305 upper_lim_b = tmp;
2306 }
2307
2308 /* fill our lookup tables */
2309 for (i = 0; i <= mask_r>>sh_r; i++)
2310 {
2311 RUINT32T tmp;
2312 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_r-lower_lim_r));
2313 tmp += ((RUINT32T)(mask_r>>sh_r))*((RUINT32T)lower_lim_r);
2314 lookup_r[i] = (tmp/65535)<<sh_r;
2315 }
2316 for (i = 0; i <= mask_g>>sh_g; i++)
2317 {
2318 RUINT32T tmp;
2319 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_g-lower_lim_g));
2320 tmp += ((RUINT32T)(mask_g>>sh_g))*((RUINT32T)lower_lim_g);
2321 lookup_g[i] = (tmp/65535)<<sh_g;
2322 }
2323 for (i = 0; i <= mask_b>>sh_b; i++)
2324 {
2325 RUINT32T tmp;
2326 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_b-lower_lim_b));
2327 tmp += ((RUINT32T)(mask_b>>sh_b))*((RUINT32T)lower_lim_b);
2328 lookup_b[i] = (tmp/65535)<<sh_b;
2329 }
2330
2331 /* apply table to input image (replacing colors by newly calculated ones) */
2332 switch (srcImage->bits_per_pixel)
2333 {
2334 case 15:
2335 {
2336 unsigned short *p1, *pf, *p, *pl;
2337 p1 = (unsigned short *) srcImage->data;
2338 pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2339 while (p1 < pf)
2340 {
2341 p = p1;
2342 pl = p1 + srcImage->width;
2343 for (; p < pl; p++)
2344 {
2345 *p = lookup_r[(*p & 0x7c00)>>10] |
2346 lookup_g[(*p & 0x03e0)>> 5] |
2347 lookup_b[(*p & 0x001f)];
2348 }
2349 p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
2350 }
2351 break;
2352 }
2353 case 16:
2354 {
2355 unsigned short *p1, *pf, *p, *pl;
2356 p1 = (unsigned short *) srcImage->data;
2357 pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2358 while (p1 < pf)
2359 {
2360 p = p1;
2361 pl = p1 + srcImage->width;
2362 for (; p < pl; p++)
2363 {
2364 *p = lookup_r[(*p & 0xf800)>>11] |
2365 lookup_g[(*p & 0x07e0)>> 5] |
2366 lookup_b[(*p & 0x001f)];
2367 }
2368 p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
2369 }
2370 break;
2371 }
2372 case 24:
2373 {
2374 unsigned char *p1, *pf, *p, *pl;
2375 p1 = (unsigned char *) srcImage->data;
2376 pf = (unsigned char *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2377 while (p1 < pf)
2378 {
2379 p = p1;
2380 pl = p1 + srcImage->width * 3;
2381 for (; p < pl; p += 3)
2382 {
2383 p[0] = lookup_r[(p[0] & 0xff0000)>>16];
2384 p[1] = lookup_r[(p[1] & 0x00ff00)>> 8];
2385 p[2] = lookup_r[(p[2] & 0x0000ff)];
2386 }
2387 p1 = (unsigned char *) ((char *) p1 + srcImage->bytes_per_line);
2388 }
2389 break;
2390 }
2391 case 32:
2392 {
2393 RUINT32T *p1, *pf, *p, *pl;
2394 p1 = (RUINT32T *) srcImage->data;
2395 pf = (RUINT32T *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2396
2397 while (p1 < pf)
2398 {
2399 p = p1;
2400 pl = p1 + srcImage->width;
2401 for (; p < pl; p++)
2402 {
2403 *p = lookup_r[(*p & 0xff0000)>>16] |
2404 lookup_g[(*p & 0x00ff00)>> 8] |
2405 lookup_b[(*p & 0x0000ff)] |
2406 (*p & ~0xffffff);
2407 }
2408 p1 = (RUINT32T *) ((char *) p1 + srcImage->bytes_per_line);
2409 }
2410 break;
2411 }
2412 }
2413
2414 free (lookup);
2415}
2416#endif
2417
2418/*
2419 * Check our parents are still who we think they are.
2420 * Do transparency updates if required
2421 */
2422int
2423rxvt_term::check_our_parents ()
2424{
2425 int i, pchanged, aformat, have_pixmap, rootdepth;
2426 unsigned long nitems, bytes_after;
2427 Atom atype;
2428 unsigned char *prop = NULL;
2429 Window root, oldp, *list;
2430 Pixmap rootpixmap = None;
2431 XWindowAttributes wattr, wrootattr;
2432
2433 pchanged = 0;
2434
2435 if (!OPTION (Opt_transparent))
2436 return pchanged; /* Don't try any more */
2437
2438 XGetWindowAttributes (dpy, display->root, &wrootattr);
2439 rootdepth = wrootattr.depth;
2440
2441 XGetWindowAttributes (dpy, parent[0], &wattr);
2442
2443 if (rootdepth != wattr.depth)
2444 {
2445 if (am_transparent)
2446 {
2447 pchanged = 1;
2448 XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]);
2449 am_transparent = am_pixmap_trans = 0;
2450 }
2451
2452 return pchanged; /* Don't try any more */
2453 }
2454
2455 /* Get all X ops out of the queue so that our information is up-to-date. */
2456 XSync (dpy, False);
2457
2458 /*
2459 * Make the frame window set by the window manager have
2460 * the root background. Some window managers put multiple nested frame
2461 * windows for each client, so we have to take care about that.
2462 */
2463 i = (xa[XA_XROOTPMAP_ID]
2464 && XGetWindowProperty (dpy, display->root, xa[XA_XROOTPMAP_ID],
2465 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
2466 &nitems, &bytes_after, &prop) == Success);
2467
2468 if (!i || prop == NULL)
2469 i = (xa[XA_ESETROOT_PMAP_ID]
2470 && XGetWindowProperty (dpy, display->root, xa[XA_ESETROOT_PMAP_ID],
2471 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
2472 &nitems, &bytes_after, &prop) == Success);
2473
2474 if (!i || prop == NULL
2475#if TINTING
2476 || !ISSET_PIXCOLOR (Color_tint)
2477#endif
2478 )
2479 have_pixmap = 0;
2480 else
2481 {
2482 have_pixmap = 1;
2483 rootpixmap = *(Pixmap *)prop;
2484 XFree (prop);
2485 }
2486
2487 if (have_pixmap)
2488 {
2489 /*
2490 * Copy display->root pixmap transparency
2491 */
2492 int sx, sy, nx, ny;
2493 unsigned int nw, nh;
2494 Window cr;
2495 XImage *image;
2496 GC gc;
2497 XGCValues gcvalue;
2498
2499 XTranslateCoordinates (dpy, parent[0], display->root,
2500 0, 0, &sx, &sy, &cr);
2501 nw = (unsigned int)szHint.width;
2502 nh = (unsigned int)szHint.height;
2503 nx = ny = 0;
2504
2505 if (sx < 0)
2506 {
2507 nw += sx;
2508 nx = -sx;
2509 sx = 0;
2510 }
2511
2512 if (sy < 0)
2513 {
2514 nh += sy;
2515 ny = -sy;
2516 sy = 0;
2517 }
2518
2519 min_it (nw, (unsigned int) (wrootattr.width - sx));
2520 min_it (nh, (unsigned int) (wrootattr.height - sy));
2521
2522 XSync (dpy, False);
2523 allowedxerror = -1;
2524 image = XGetImage (dpy, rootpixmap, sx, sy, nw, nh, AllPlanes, ZPixmap);
2525
2526 /* XXX: handle BadMatch - usually because we're outside the pixmap */
2527 /* XXX: may need a delay here? */
2528 allowedxerror = 0;
2529
2530 if (image == NULL)
2531 {
2532 if (am_transparent && am_pixmap_trans)
2533 {
2534 pchanged = 1;
2535 if (pixmap != None)
2536 {
2537 XFreePixmap (dpy, pixmap);
2538 pixmap = None;
2539 }
2540 }
2541
2542 am_pixmap_trans = 0;
2543 }
2544 else
2545 {
2546 if (pixmap != None)
2547 XFreePixmap (dpy, pixmap);
2548
2549#if TINTING
2550 if (ISSET_PIXCOLOR (Color_tint))
2551 {
2552 int shade = rs[Rs_shade] ? atoi (rs[Rs_shade]) : 100;
2553
2554 rgba c;
2555 pix_colors_focused [Color_tint].get (c);
2556
2557 ShadeXImage (this, image, shade, c.r, c.g, c.b);
2558 }
2559#endif
2560
2561 pixmap = XCreatePixmap (dpy, vt, szHint.width, szHint.height, image->depth);
2562 gc = XCreateGC (dpy, vt, 0UL, &gcvalue);
2563 XPutImage (dpy, pixmap, gc, image, 0, 0,
2564 nx, ny, image->width, image->height);
2565 XFreeGC (dpy, gc);
2566 XDestroyImage (image);
2567 XSetWindowBackgroundPixmap (dpy, parent[0], pixmap);
2568 XClearWindow (dpy, parent[0]);
2569
2570 if (!am_transparent || !am_pixmap_trans)
2571 pchanged = 1;
2572
2573 am_transparent = am_pixmap_trans = 1;
2574 }
2575 }
2576
2577 if (am_pixmap_trans)
2578 XSetWindowBackgroundPixmap (dpy, vt, ParentRelative);
2579 else
2580 {
2581 unsigned int n;
2582 /*
2583 * InheritPixmap transparency
2584 */
2585 for (i = 1; i < (int) (sizeof (parent) / sizeof (Window)); i++)
2586 {
2587 oldp = parent[i];
2588 XQueryTree (dpy, parent[i - 1], &root, &parent[i], &list, &n);
2589 XFree (list);
2590
2591 if (parent[i] == display->root)
2592 {
2593 if (oldp != None)
2594 pchanged = 1;
2595
2596 break;
2597 }
2598
2599 if (oldp != parent[i])
2600 pchanged = 1;
2601 }
2602
2603 n = 0;
2604
2605 if (pchanged)
2606 for (; n < (unsigned int)i; n++)
2607 {
2608 XGetWindowAttributes (dpy, parent[n], &wattr);
2609
2610 if (wattr.depth != rootdepth || wattr.c_class == InputOnly)
2611 {
2612 n = (int) (sizeof (parent) / sizeof (Window)) + 1;
2613 break;
2614 }
2615 }
2616
2617 if (n > (sizeof (parent) / sizeof (parent[0])))
2618 {
2619 XSetWindowBackground (dpy, parent[0], pix_colors_focused[Color_border]);
2620 XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]);
2621 am_transparent = 0;
2622 /* XXX: also turn off Opt_transparent? */
2623 }
2624 else
2625 {
2626 for (n = 0; n < (unsigned int)i; n++)
2627 {
2628 XSetWindowBackgroundPixmap (dpy, parent[n], ParentRelative);
2629 XClearWindow (dpy, parent[n]);
2630 }
2631
2632 XSetWindowBackgroundPixmap (dpy, vt, ParentRelative);
2633 am_transparent = 1;
2634 }
2635
2636 for (; i < (int) (sizeof (parent) / sizeof (Window)); i++)
2637 parent[i] = None;
2638 }
2639
2640 if (scrollBar.win)
2641 {
2642 XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative);
2643 scrollBar.setIdle ();
2644 scrollbar_show (0);
2645 }
2646
2647 if (am_transparent)
2648 {
2649 want_refresh = want_full_refresh = 1;
2650 if (am_pixmap_trans)
2651 flush ();
2652 }
2653
2654 return pchanged;
2655}
2656#endif
2657
2658/*}}} */ 2187/*}}} */
2659 2188
2660bool 2189void
2661rxvt_term::cmd_parse () 2190rxvt_term::cmd_parse ()
2662{ 2191{
2663 bool flag = false;
2664 wchar_t ch = NOCHAR; 2192 wchar_t ch = NOCHAR;
2665 char *seq_begin; // remember start of esc-sequence here 2193 char *seq_begin; // remember start of esc-sequence here
2666 2194
2667 for (;;) 2195 for (;;)
2668 { 2196 {
2669 if (ch == NOCHAR) 2197 if (expect_false (ch == NOCHAR))
2670 { 2198 {
2671 seq_begin = cmdbuf_ptr; 2199 seq_begin = cmdbuf_ptr;
2672 ch = next_char (); 2200 ch = next_char ();
2673 2201
2674 if (ch == NOCHAR) 2202 if (ch == NOCHAR)
2675 break; 2203 break;
2676 } 2204 }
2677 2205
2678 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))
2679 { 2207 {
2680 if (!seen_input) 2208 if (expect_false (!seen_input))
2681 { 2209 {
2682 seen_input = 1; 2210 seen_input = 1;
2683 // many badly-written programs (e.g. jed) contain a race condition: 2211 // many badly-written programs (e.g. jed) contain a race condition:
2684 // they first read the screensize and then install a SIGWINCH handler. 2212 // they first read the screensize and then install a SIGWINCH handler.
2685 // some window managers resize the window early, and these programs 2213 // some window managers resize the window early, and these programs
2698 wchar_t *str = buf; 2226 wchar_t *str = buf;
2699 wchar_t *eol = str + min (ncol, UBUFSIZ); 2227 wchar_t *eol = str + min (ncol, UBUFSIZ);
2700 2228
2701 for (;;) 2229 for (;;)
2702 { 2230 {
2703 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)))
2704 break; 2232 break;
2705 2233
2706 *str++ = ch; 2234 *str++ = ch;
2707 2235
2708 if (ch == C0_LF || str >= eol) 2236 if (expect_false (ch == C0_LF || str >= eol))
2709 { 2237 {
2710 if (ch == C0_LF) 2238 if (ch == C0_LF)
2711 nlines++; 2239 nlines++;
2712 2240
2713 refresh_count++; 2241 refresh_count++;
2714 2242
2715 if (!OPTION (Opt_jumpScroll) 2243 if (!option (Opt_jumpScroll) || refresh_count >= nrow - 1)
2716 || (refresh_count >= refresh_limit * (nrow - 1)))
2717 { 2244 {
2718 refreshnow = true;
2719 refresh_count = 0; 2245 refresh_count = 0;
2246
2247 if (!option (Opt_skipScroll) || ev_time () > ev::now () + 1. / 60.)
2248 {
2249 refreshnow = true;
2720 ch = NOCHAR; 2250 ch = NOCHAR;
2721 break; 2251 break;
2252 }
2722 } 2253 }
2723 2254
2724 // scr_add_lines only works for nlines <= nrow - 1. 2255 // scr_add_lines only works for nlines <= nrow - 1.
2725 if (nlines >= nrow - 1) 2256 if (nlines >= nrow - 1)
2726 { 2257 {
2754 && 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))))
2755 scr_add_lines (buf, str - buf, nlines); 2286 scr_add_lines (buf, str - buf, nlines);
2756 2287
2757 /* 2288 /*
2758 * 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
2759 * 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.
2760 * the number of pages between refreshes is refresh_limit, which 2291 * if skipScroll is enabled.
2761 * is incremented here because we must be doing flat-out scrolling.
2762 */ 2292 */
2763 if (refreshnow) 2293 if (refreshnow)
2764 { 2294 {
2765 if (OPTION (Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD)
2766 refresh_limit++;
2767 else
2768 {
2769 flag = true;
2770 scr_refresh (); 2295 scr_refresh ();
2771 want_refresh = 1; 2296 want_refresh = 1;
2772 }
2773 } 2297 }
2774
2775 } 2298 }
2776 else 2299 else
2777 { 2300 {
2778 try 2301 try
2779 { 2302 {
2787 } 2310 }
2788 2311
2789 ch = NOCHAR; 2312 ch = NOCHAR;
2790 } 2313 }
2791 } 2314 }
2792
2793 return flag;
2794} 2315}
2795 2316
2796// read the next character 2317// read the next character
2797wchar_t 2318wchar_t
2798rxvt_term::next_char () NOTHROW 2319rxvt_term::next_char () NOTHROW
2799{ 2320{
2800 while (cmdbuf_ptr < cmdbuf_endp) 2321 while (cmdbuf_ptr < cmdbuf_endp)
2801 { 2322 {
2802 // assume 7-bit to be ascii ALWAYS 2323 // assume 7-bit to be ascii ALWAYS
2803 if ((unsigned char)*cmdbuf_ptr <= 0x7f && *cmdbuf_ptr != 0x1b) 2324 if (expect_true ((unsigned char)*cmdbuf_ptr <= 0x7f && *cmdbuf_ptr != 0x1b))
2804 return *cmdbuf_ptr++; 2325 return *cmdbuf_ptr++;
2805 2326
2806 wchar_t wc; 2327 wchar_t wc;
2807 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);
2808 2329
2812 cmdbuf_ptr = cmdbuf_endp; 2333 cmdbuf_ptr = cmdbuf_endp;
2813 break; 2334 break;
2814 } 2335 }
2815 2336
2816 if (len == (size_t)-1) 2337 if (len == (size_t)-1)
2338 {
2339 mbrtowc (0, 0, 0, mbstate); // reset now undefined conversion state
2817 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 }
2818 2342
2819 // assume wchar == unicode 2343 // assume wchar == unicode
2820 cmdbuf_ptr += len; 2344 cmdbuf_ptr += len;
2821 return wc & UNICODE_MASK; 2345 return wc & UNICODE_MASK;
2822 } 2346 }
2866/*----------------------------------------------------------------------*/ 2390/*----------------------------------------------------------------------*/
2867#ifdef PRINTPIPE 2391#ifdef PRINTPIPE
2868FILE * 2392FILE *
2869rxvt_term::popen_printer () 2393rxvt_term::popen_printer ()
2870{ 2394{
2871 FILE *stream = popen (rs[Rs_print_pipe], "w"); 2395 FILE *stream = popen (rs[Rs_print_pipe] ? rs[Rs_print_pipe] : PRINTPIPE, "w");
2872 2396
2873 if (stream == NULL) 2397 if (stream == NULL)
2874 rxvt_warn ("can't open printer pipe, not printing.\n"); 2398 rxvt_warn ("can't open printer pipe, not printing.\n");
2875 2399
2876 return stream; 2400 return stream;
2887 * simulate attached vt100 printer 2411 * simulate attached vt100 printer
2888 */ 2412 */
2889void 2413void
2890rxvt_term::process_print_pipe () 2414rxvt_term::process_print_pipe ()
2891{ 2415{
2892 int done; 2416 FILE *fd = popen_printer ();
2893 FILE *fd;
2894 2417
2895 if ((fd = popen_printer ()) == NULL) 2418 if (!fd)
2896 return; 2419 return;
2897 2420
2898 /* 2421 /*
2899 * 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
2900 * is received. 2423 * is received.
2901 */ 2424 */
2902 for (done = 0; !done;) 2425 for (int done = 0; !done; )
2903 { 2426 {
2904 unsigned char buf[8]; 2427 unsigned char buf[8];
2905 unicode_t ch; 2428 unicode_t ch;
2906 unsigned int i, len; 2429 unsigned int i, len;
2907 2430
2926 { 2449 {
2927 if ((buf[len++] = cmd_getc ()) == 'i') 2450 if ((buf[len++] = cmd_getc ()) == 'i')
2928 break; /* done = 1 */ 2451 break; /* done = 1 */
2929 } 2452 }
2930 } 2453 }
2931 2454
2932 for (i = 0; i < len; i++) 2455 for (i = 0; i < len; i++)
2933 if (putc (buf[i], fd) == EOF) 2456 if (putc (buf[i], fd) == EOF)
2934 { 2457 {
2935 done = 1; 2458 done = 1;
2936 break; 2459 break;
2938 } 2461 }
2939 } 2462 }
2940 2463
2941 pclose_printer (fd); 2464 pclose_printer (fd);
2942} 2465}
2943#endif /* PRINTPIPE */ 2466#endif /* PRINTPIPE */
2944/*}}} */ 2467/*}}} */
2945 2468
2946/* *INDENT-OFF* */ 2469/* *INDENT-OFF* */
2947enum { 2470enum {
2948 C1_40 = 0x40, 2471 C1_40 = 0x40,
2998 process_dcs_seq (); 2521 process_dcs_seq ();
2999 break; 2522 break;
3000 case 0x9b: /* CSI */ 2523 case 0x9b: /* CSI */
3001 process_csi_seq (); 2524 process_csi_seq ();
3002 break; 2525 break;
3003 case 0x9d: /* CSI */ 2526 case 0x9d: /* OSC */
3004 process_osc_seq (); 2527 process_osc_seq ();
3005 break; 2528 break;
3006#endif 2529#endif
3007 } 2530 }
3008} 2531}
3052 break; 2575 break;
3053 case 'Z': /* identify the terminal type */ 2576 case 'Z': /* identify the terminal type */
3054 tt_printf ("\033/Z"); /* I am a VT100 emulating a VT52 */ 2577 tt_printf ("\033/Z"); /* I am a VT100 emulating a VT52 */
3055 break; 2578 break;
3056 case '<': /* turn off VT52 mode */ 2579 case '<': /* turn off VT52 mode */
3057 PrivMode (0, PrivMode_vt52); 2580 set_privmode (PrivMode_vt52, 0);
3058 break; 2581 break;
3059 case 'F': /* use special graphics character set */ 2582 case 'F': /* use special graphics character set */
3060 case 'G': /* use regular character set */ 2583 case 'G': /* use regular character set */
3061 /* unimplemented */ 2584 /* unimplemented */
3062 break; 2585 break;
3116 scr_forwardindex (); 2639 scr_forwardindex ();
3117 break; 2640 break;
3118#endif 2641#endif
3119 case '=': 2642 case '=':
3120 case '>': 2643 case '>':
3121 PrivMode ((ch == '='), PrivMode_aplKP); 2644 set_privmode (PrivMode_aplKP, ch == '=');
3122 break; 2645 break;
3123 2646
3124 case C1_40: 2647 case C1_40:
3125 cmd_getc (); 2648 cmd_getc ();
3126 break; 2649 break;
3165 /* 8.3.110: SINGLE CHARACTER INTRODUCER */ 2688 /* 8.3.110: SINGLE CHARACTER INTRODUCER */
3166 case C1_SCI: /* ESC Z */ 2689 case C1_SCI: /* ESC Z */
3167 tt_write (ESCZ_ANSWER, sizeof (ESCZ_ANSWER) - 1); 2690 tt_write (ESCZ_ANSWER, sizeof (ESCZ_ANSWER) - 1);
3168 break; /* steal obsolete ESC [ c */ 2691 break; /* steal obsolete ESC [ c */
3169 2692
3170 /* 8.3.16: CONTROL SEQUENCE INTRODUCER */ 2693 /* 8.3.16: CONTROL SEQUENCE INTRODUCER (CSI) */
3171 case C1_CSI: /* ESC [ */ 2694 case C1_CSI: /* ESC [ */
3172 process_csi_seq (); 2695 process_csi_seq ();
3173 break; 2696 break;
3174 2697
3175 /* 8.3.90: OPERATING SYSTEM COMMAND */ 2698 /* 8.3.90: OPERATING SYSTEM COMMAND (OSC) */
3176 case C1_OSC: /* ESC ] */ 2699 case C1_OSC: /* ESC ] */
3177 process_osc_seq (); 2700 process_osc_seq ();
3178 break; 2701 break;
3179 2702
3180 /* 8.3.106: RESET TO INITIAL STATE */ 2703 /* 8.3.106: RESET TO INITIAL STATE (RIS) */
3181 case 'c': 2704 case 'c':
3182 mbstate.reset (); 2705 mbstate.reset ();
3183 scr_poweron (); 2706 scr_poweron ();
3184 scrollbar_show (1); 2707 scrollBar.show (1);
3185 break; 2708 break;
3186 2709
3187 /* 8.3.79: LOCKING-SHIFT TWO (see ISO2022) */ 2710 /* 8.3.79: LOCKING-SHIFT TWO (see ISO2022) */
3188 case 'n': 2711 case 'n':
3189 scr_charset_choose (2); 2712 scr_charset_choose (2);
3234rxvt_term::process_csi_seq () 2757rxvt_term::process_csi_seq ()
3235{ 2758{
3236 unicode_t ch, priv, i; 2759 unicode_t ch, priv, i;
3237 unsigned int nargs, p; 2760 unsigned int nargs, p;
3238 int n, ndef; 2761 int n, ndef;
3239 int arg[ESC_ARGS]; 2762 int arg[ESC_ARGS] = { };
3240 2763
3241 for (nargs = ESC_ARGS; nargs > 0;) 2764 nargs = 0;
3242 arg[--nargs] = 0;
3243 2765
3244 priv = 0; 2766 priv = 0;
3245 ch = cmd_getc (); 2767 ch = cmd_getc ();
3246 if (ch >= '<' && ch <= '?') 2768 if ((ch >= '<' && ch <= '?') || ch == '!')
2769 {
3247 { /* '<' '=' '>' '?' */ 2770 /* '<' '=' '>' '?' '!' */
3248 priv = ch; 2771 priv = ch;
3249 ch = cmd_getc (); 2772 ch = cmd_getc ();
3250 } 2773 }
3251 2774
3252 /* read any numerical arguments */ 2775 /* read any numerical arguments */
3291 switch (priv) 2814 switch (priv)
3292 { 2815 {
3293 case '>': 2816 case '>':
3294 if (ch == CSI_DA) /* secondary device attributes */ 2817 if (ch == CSI_DA) /* secondary device attributes */
3295 { 2818 {
3296 // first parameter is normally 0 for vt100, 1 for some newer vtxxx, 'R' for rxvt, 2819 // first parameter is normally 0 for vt100, 1 for vt220, 'R' for rxvt,
3297 // 'U' for rxvt-unicode != 7.[34] (where it was broken). 2820 // 'U' for rxvt-unicode != 7.[34] (where it was broken).
3298 // 2821 //
3299 // second parameter is xterm patch level for xterm, MMmmpp (e.g. 20703) for rxvt 2822 // second parameter is xterm patch level for xterm, MMmmpp (e.g. 20703) for rxvt
3300 // and Mm (e.g. 72 for 7.2) for urxvt <= 7.2, and 94 for later versions, to signify 2823 // and Mm (e.g. 72 for 7.2) for urxvt <= 7.2, 94 for urxvt <= 8.3, and 95 for later
3301 // that we do not support xterm mouse reporting (should be 95 when we do). 2824 // versions.
3302 // 2825 //
3303 tt_printf ("\033[>%d;94;0c", 'U'); 2826 tt_printf ("\033[>%d;95;0c", 'U');
3304 } 2827 }
3305 break; 2828 break;
2829
3306 case '?': 2830 case '?':
3307 if (ch == 'h' || ch == 'l' || ch == 'r' || ch == 's' || ch == 't') 2831 if (ch == 'h' || ch == 'l' || ch == 'r' || ch == 's' || ch == 't')
3308 process_terminal_mode (ch, priv, nargs, arg); 2832 process_terminal_mode (ch, priv, nargs, arg);
3309 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, 7, 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);
3310 } 2846 }
2847 break;
2848 }
2849
3311 return; 2850 return;
3312 } 2851 }
3313 2852
3314 switch (ch) 2853 switch (ch)
3315 { 2854 {
3435 break; 2974 break;
3436 case 6: /* CPR requested */ 2975 case 6: /* CPR requested */
3437 scr_report_position (); 2976 scr_report_position ();
3438 break; 2977 break;
3439 case 7: /* unofficial extension */ 2978 case 7: /* unofficial extension */
3440 if (OPTION (Opt_insecure)) 2979 if (option (Opt_insecure))
3441 tt_printf ("%-.250s\012", rs[Rs_display_name]); 2980 tt_printf ("%-.250s\012", rs[Rs_display_name]);
3442 break; 2981 break;
3443 case 8: /* unofficial extension */ 2982 case 8: /* unofficial extension */
3444 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST); 2983 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST);
3445 break; 2984 break;
3609 break; 3148 break;
3610 case 20: /* report icon label */ 3149 case 20: /* report icon label */
3611 { 3150 {
3612 char *s; 3151 char *s;
3613 XGetIconName (dpy, parent[0], &s); 3152 XGetIconName (dpy, parent[0], &s);
3614 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 */
3615 XFree (s); 3154 XFree (s);
3616 } 3155 }
3617 break; 3156 break;
3618 case 21: /* report window title */ 3157 case 21: /* report window title */
3619 { 3158 {
3620 char *s; 3159 char *s;
3621 XFetchName (dpy, parent[0], &s); 3160 XFetchName (dpy, parent[0], &s);
3622 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 */
3623 XFree (s); 3162 XFree (s);
3624 } 3163 }
3625 break; 3164 break;
3626 } 3165 }
3627} 3166}
3654 seen_esc = true; 3193 seen_esc = true;
3655 continue; 3194 continue;
3656 } 3195 }
3657 else if (ch == C0_BEL || ch == CHAR_ST) 3196 else if (ch == C0_BEL || ch == CHAR_ST)
3658 break; 3197 break;
3198 else if (ch == C0_SYN)
3199 ch = cmd_get8 ();
3659 else if (ch < 0x20) 3200 else if (ch < 0x20)
3660 return NULL; /* other control character - exit */ 3201 return NULL; /* other control character - exit */
3661 3202
3662 seen_esc = false; 3203 seen_esc = false;
3663 3204
3664 if (n >= STRING_MAX - 1) 3205 if (n >= STRING_MAX - 1)
3665 // stop at some sane length 3206 // stop at some sane length
3666 return NULL; 3207 return NULL;
3667 3208
3668 if (ch == C0_SYN)
3669 string[n++] = cmd_get8 ();
3670 else
3671 string[n++] = ch; 3209 string[n++] = ch;
3672 } 3210 }
3673 3211
3674 string[n++] = '\0'; 3212 string[n++] = '\0';
3675 3213
3676 ends_how = (ch == 0x5c ? C0_ESC : ch); 3214 ends_how = (ch == 0x5c ? C0_ESC : ch);
3755 int saveop = op; 3293 int saveop = op;
3756 3294
3757 dLocal (Display *, dpy); 3295 dLocal (Display *, dpy);
3758 3296
3759 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
3760 switch (op) 3302 switch (op)
3761 { 3303 {
3762 case XTerm_name: 3304 case XTerm_name:
3763 set_title (str); 3305 set_title (str);
3764 /* FALLTHROUGH */ 3306 /* FALLTHROUGH */
3823 *buf++ = '\0'; 3365 *buf++ = '\0';
3824 3366
3825 process_color_seq (op, color, name, resp); 3367 process_color_seq (op, color, name, resp);
3826 } 3368 }
3827 break; 3369 break;
3370 case Rxvt_restoreFG:
3828 case XTerm_Color00: 3371 case XTerm_Color00:
3829 process_color_seq (op, Color_fg, str, resp); 3372 process_color_seq (op, Color_fg, str, resp);
3830 break; 3373 break;
3374 case Rxvt_restoreBG:
3831 case XTerm_Color01: 3375 case XTerm_Color01:
3832 process_color_seq (op, Color_bg, str, resp); 3376 process_color_seq (op, Color_bg, str, resp);
3833 break; 3377 break;
3834#ifndef NO_CURSORCOLOR 3378#ifndef NO_CURSORCOLOR
3835 case XTerm_Color_cursor: 3379 case XTerm_Color_cursor:
3856 break; 3400 break;
3857 case URxvt_Color_IT: 3401 case URxvt_Color_IT:
3858 process_color_seq (op, Color_IT, str, resp); 3402 process_color_seq (op, Color_IT, str, resp);
3859 break; 3403 break;
3860#endif 3404#endif
3861#if TRANSPARENT && TINTING 3405#if ENABLE_TRANSPARENCY
3862 case URxvt_Color_tint: 3406 case URxvt_Color_tint:
3863 process_color_seq (op, Color_tint, str, resp); 3407 process_color_seq (op, Color_tint, str, resp);
3408 {
3409 bool changed = false;
3864 3410
3865 check_our_parents (); 3411 if (ISSET_PIXCOLOR (Color_tint))
3412 changed = bgPixmap.set_tint (pix_colors_focused [Color_tint]);
3413 else
3414 changed = bgPixmap.unset_tint ();
3866 3415
3867 if (am_transparent) 3416 if (changed)
3868 want_full_refresh = want_refresh = 1; 3417 update_background ();
3418 }
3869 3419
3870 break; 3420 break;
3871#endif 3421#endif
3872 3422
3423#if BG_IMAGE_FROM_FILE
3873 case Rxvt_Pixmap: 3424 case Rxvt_Pixmap:
3874 { 3425 if (!strcmp (str, "?"))
3875 if (*str != ';')
3876 { 3426 {
3877#if XPM_BACKGROUND 3427 char str[256];
3878 scale_pixmap (""); /* reset to default scaling */ 3428
3879 set_bgPixmap (str); /* change pixmap */ 3429 sprintf (str, "[%dx%d+%d+%d]", /* can't presume snprintf () ! */
3880 scr_touch (true); 3430 min (bgPixmap.h_scale, 32767), min (bgPixmap.v_scale, 32767),
3881#endif 3431 min (bgPixmap.h_align, 32767), min (bgPixmap.v_align, 32767));
3432 process_xterm_seq (XTerm_title, str, CHAR_ST);
3882 } 3433 }
3883 3434 else
3435 {
3884 int changed = 0; 3436 int changed = 0;
3885 3437
3886 while ((str = strchr (str, ';')) != NULL) 3438 if (*str != ';')
3887 { 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 {
3888 str++; 3451 str++;
3889#if XPM_BACKGROUND 3452 if (bgPixmap.set_geometry (str))
3890 changed += scale_pixmap (str); 3453 changed++;
3891#endif 3454 str = strchr (str, ';');
3892 } 3455 }
3893 3456
3894 if (changed) 3457 if (changed)
3895 { 3458 update_background ();
3896#ifdef XPM_BACKGROUND
3897 resize_pixmap ();
3898 scr_touch (true);
3899#endif
3900 } 3459 }
3901 }
3902 break; 3460 break;
3903 3461#endif
3904 case Rxvt_restoreFG:
3905 set_window_color (Color_fg, str);
3906 break;
3907 case Rxvt_restoreBG:
3908 set_window_color (Color_bg, str);
3909 break;
3910 3462
3911 case XTerm_logfile: 3463 case XTerm_logfile:
3912 // TODO, when secure mode? 3464 // TODO, when secure mode?
3913 break; 3465 break;
3914 3466
3932 case URxvt_italicFont: 3484 case URxvt_italicFont:
3933 case URxvt_boldItalicFont: 3485 case URxvt_boldItalicFont:
3934#endif 3486#endif
3935 if (query) 3487 if (query)
3936 tt_printf ("\33]%d;%-.250s%c", saveop, 3488 tt_printf ("\33]%d;%-.250s%c", saveop,
3937 OPTION (Opt_insecure) && fontset[op - URxvt_font]->fontdesc 3489 option (Opt_insecure) && fontset[op - URxvt_font]->fontdesc
3938 ? fontset[op - URxvt_font]->fontdesc : "", 3490 ? fontset[op - URxvt_font]->fontdesc : "",
3939 resp); 3491 resp);
3940 else 3492 else
3941 { 3493 {
3942 const char *&res = rs[Rs_font + (op - URxvt_font)]; 3494 const char *&res = rs[Rs_font + (op - URxvt_font)];
3956 break; 3508 break;
3957 3509
3958#if !ENABLE_MINIMAL 3510#if !ENABLE_MINIMAL
3959 case URxvt_locale: 3511 case URxvt_locale:
3960 if (query) 3512 if (query)
3961 tt_printf ("\33]%d;%-.250s%c", op, OPTION (Opt_insecure) ? locale : "", resp); 3513 tt_printf ("\33]%d;%-.250s%c", op, option (Opt_insecure) ? locale : "", resp);
3962 else 3514 else
3963 { 3515 {
3964 set_locale (str); 3516 set_locale (str);
3965 pty->set_utf8_mode (enc_utf8); 3517 pty->set_utf8_mode (enc_utf8);
3966 init_xlocale (); 3518 init_xlocale ();
3981 break; 3533 break;
3982#endif 3534#endif
3983 3535
3984#if ENABLE_PERL 3536#if ENABLE_PERL
3985 case URxvt_perl: 3537 case URxvt_perl:
3986 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));
3987 ; // no responses yet
3988 break; 3539 break;
3989#endif 3540#endif
3990 } 3541 }
3991} 3542}
3992/*----------------------------------------------------------------------*/ 3543/*----------------------------------------------------------------------*/
4015 { 3566 {
4016 if (mode == 'r') 3567 if (mode == 'r')
4017 state = (SavedModes & bit) ? 1 : 0; /* no overlapping */ 3568 state = (SavedModes & bit) ? 1 : 0; /* no overlapping */
4018 else 3569 else
4019 state = (mode == 't') ? ! (priv_modes & bit) : mode; 3570 state = (mode == 't') ? ! (priv_modes & bit) : mode;
4020 PrivMode (state, bit); 3571 set_privmode (bit, state);
4021 } 3572 }
4022 3573
4023 return state; 3574 return state;
4024} 3575}
4025 3576
4029{ 3580{
4030 unsigned int i, j; 3581 unsigned int i, j;
4031 int state; 3582 int state;
4032 3583
4033 static const struct 3584 static const struct
4034 { 3585 {
4035 const int argval; 3586 const int argval;
4036 const unsigned long bit; 3587 const unsigned long bit;
4037 }
4038
4039 argtopriv[] = { 3588 } argtopriv[] = {
4040 { 1, PrivMode_aplCUR }, 3589 { 1, PrivMode_aplCUR },
4041 { 2, PrivMode_vt52 }, 3590 { 2, PrivMode_vt52 },
4042 { 3, PrivMode_132 }, 3591 { 3, PrivMode_132 },
4043 { 4, PrivMode_smoothScroll }, 3592 { 4, PrivMode_smoothScroll },
4044 { 5, PrivMode_rVideo }, 3593 { 5, PrivMode_rVideo },
4060 { 66, PrivMode_aplKP }, 3609 { 66, PrivMode_aplKP },
4061#ifndef NO_BACKSPACE_KEY 3610#ifndef NO_BACKSPACE_KEY
4062 { 67, PrivMode_BackSpace }, 3611 { 67, PrivMode_BackSpace },
4063#endif 3612#endif
4064 { 1000, PrivMode_MouseX11 }, 3613 { 1000, PrivMode_MouseX11 },
4065 // 1001 Use Hilite Mouse Tracking. NYI, TODO 3614 { 1002, PrivMode_MouseBtnEvent },
4066 // 1002 Use Cell Motion Mouse Tracking. NYI, TODO 3615 { 1003, PrivMode_MouseAnyEvent },
4067 // 1003 Use All Motion Mouse Tracking. NYI, TODO
4068 { 1010, PrivMode_TtyOutputInh }, // rxvt extension 3616 { 1010, PrivMode_TtyOutputInh }, // rxvt extension
4069 { 1011, PrivMode_Keypress }, // rxvt extension 3617 { 1011, PrivMode_Keypress }, // rxvt extension
4070 // 1035 enable modifiers for alt, numlock NYI 3618 // 1035 enable modifiers for alt, numlock NYI
4071 // 1036 send ESC for meta keys NYI 3619 // 1036 send ESC for meta keys NYI
4072 // 1037 send DEL for keypad delete NYI 3620 // 1037 send DEL for keypad delete NYI
4073 { 1047, PrivMode_Screen }, 3621 { 1047, PrivMode_Screen },
4074 // 1048 save and restore cursor 3622 // 1048 save and restore cursor
4075 { 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 */
4076 // 1051, 1052, 1060, 1061 keyboard emulation NYI 3624 // 1051, 1052, 1060, 1061 keyboard emulation NYI
3625 { 2004, PrivMode_BracketPaste },
4077 }; 3626 };
4078 3627
4079 if (nargs == 0) 3628 if (nargs == 0)
4080 return; 3629 return;
4081 3630
4107 scr_touch (true); 3656 scr_touch (true);
4108 break; 3657 break;
4109#endif 3658#endif
4110 case 1048: /* alternative cursor save */ 3659 case 1048: /* alternative cursor save */
4111 case 1049: 3660 case 1049:
4112 if (OPTION (Opt_secondaryScreen)) 3661 if (option (Opt_secondaryScreen))
4113 if (mode == 0) 3662 if (mode == 0)
4114 scr_cursor (RESTORE); 3663 scr_cursor (RESTORE);
4115 else if (mode == 1) 3664 else if (mode == 1)
4116 scr_cursor (SAVE); 3665 scr_cursor (SAVE);
4117 break; 3666 break;
4125 case 2: /* VT52 mode */ 3674 case 2: /* VT52 mode */
4126 /* oddball mode. should be set regardless of set/reset 3675 /* oddball mode. should be set regardless of set/reset
4127 * parameter. Return from VT52 mode with an ESC < from 3676 * parameter. Return from VT52 mode with an ESC < from
4128 * within VT52 mode 3677 * within VT52 mode
4129 */ 3678 */
4130 PrivMode (1, PrivMode_vt52); 3679 set_privmode (PrivMode_vt52, 1);
4131 break; 3680 break;
4132 case 3: /* 80/132 */ 3681 case 3: /* 80/132 */
4133 if (priv_modes & PrivMode_132OK) 3682 if (priv_modes & PrivMode_132OK)
3683 {
3684 scr_poweron ();
4134 set_widthheight (((state ? 132 : 80) * fwidth), height); 3685 set_widthheight (((state ? 132 : 80) * fwidth), 24 * fheight);
3686 }
4135 break; 3687 break;
4136 case 4: /* smooth scrolling */ 3688 case 4: /* smooth scrolling */
4137 set_option (Opt_jumpScroll, !state); 3689 set_option (Opt_jumpScroll, !state);
4138 break; 3690 break;
4139 case 5: /* reverse video */ 3691 case 5: /* reverse video */
4146 scr_autowrap (state); 3698 scr_autowrap (state);
4147 break; 3699 break;
4148 /* 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 */
4149 case 9: /* X10 mouse reporting */ 3701 case 9: /* X10 mouse reporting */
4150 if (state) /* orthogonal */ 3702 if (state) /* orthogonal */
4151 priv_modes &= ~PrivMode_MouseX11; 3703 priv_modes &= ~(PrivMode_MouseX11|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent);
4152 break; 3704 break;
4153#ifdef scrollBar_esc 3705#ifdef scrollBar_esc
4154 case scrollBar_esc: 3706 case scrollBar_esc:
4155 if (scrollbar_mapping (state)) 3707 if (scrollBar.map (state))
4156 { 3708 {
4157 resize_all_windows (0, 0, 0); 3709 resize_all_windows (0, 0, 0);
4158 scr_touch (true); 3710 scr_touch (true);
4159 } 3711 }
4160 break; 3712 break;
4169 break; 3721 break;
4170 /* case 66: - application key pad */ 3722 /* case 66: - application key pad */
4171 /* case 67: - backspace key */ 3723 /* case 67: - backspace key */
4172 case 1000: /* X11 mouse reporting */ 3724 case 1000: /* X11 mouse reporting */
4173 if (state) /* orthogonal */ 3725 if (state) /* orthogonal */
4174 priv_modes &= ~PrivMode_MouseX10; 3726 priv_modes &= ~(PrivMode_MouseX10|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent);
4175 break; 3727 break;
4176#if 0
4177 case 1001: 3728 case 1002:
4178 break; /* X11 mouse highlighting */ 3729 case 1003:
4179#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;
4180 case 1010: /* scroll to bottom on TTY output inhibit */ 3740 case 1010: /* scroll to bottom on TTY output inhibit */
4181 set_option (Opt_scrollTtyOutput, !state); 3741 set_option (Opt_scrollTtyOutput, !state);
4182 break; 3742 break;
4183 case 1011: /* scroll to bottom on key press */ 3743 case 1011: /* scroll to bottom on key press */
4184 set_option (Opt_scrollTtyKeypress, state); 3744 set_option (Opt_scrollTtyKeypress, state);
4185 break; 3745 break;
4186 case 1047: /* secondary screen w/ clearing last */ 3746 case 1047: /* secondary screen w/ clearing last */
4187 if (OPTION (Opt_secondaryScreen)) 3747 if (option (Opt_secondaryScreen))
4188 if (current_screen != PRIMARY) 3748 if (current_screen != PRIMARY)
4189 scr_erase_screen (2); 3749 scr_erase_screen (2);
4190 scr_change_screen (state); 3750 scr_change_screen (state);
4191 break; 3751 break;
4192 case 1049: /* secondary screen w/ clearing first */ 3752 case 1049: /* secondary screen w/ clearing first */
4193 scr_change_screen (state); 3753 scr_change_screen (state);
4194 if (OPTION (Opt_secondaryScreen)) 3754 if (option (Opt_secondaryScreen))
4195 if (current_screen != PRIMARY) 3755 if (current_screen != PRIMARY)
4196 scr_erase_screen (2); 3756 scr_erase_screen (2);
4197 break; 3757 break;
4198 default: 3758 default:
4199 break; 3759 break;
4361rxvt_term::process_graphics () 3921rxvt_term::process_graphics ()
4362{ 3922{
4363 unicode_t ch, cmd = cmd_getc (); 3923 unicode_t ch, cmd = cmd_getc ();
4364 3924
4365 if (cmd == 'Q') 3925 if (cmd == 'Q')
3926 {
4366 { /* query graphics */ 3927 /* query graphics */
4367 tt_printf ("\033G0\012"); /* no graphics */ 3928 tt_printf ("\033G0\012"); /* no graphics */
4368 return; 3929 return;
4369 } 3930 }
4370 /* swallow other graphics sequences until terminating ':' */ 3931 /* swallow other graphics sequences until terminating ':' */
4371 do 3932 do
4421 v_buffer = (char *)realloc (v_buffer, v_buflen + len); 3982 v_buffer = (char *)realloc (v_buffer, v_buflen + len);
4422 3983
4423 memcpy (v_buffer + v_buflen, data, len); 3984 memcpy (v_buffer + v_buflen, data, len);
4424 v_buflen += len; 3985 v_buflen += len;
4425 3986
4426 pty_ev.set (EVENT_READ | EVENT_WRITE); 3987 pty_ev.set (ev::READ | ev::WRITE);
4427} 3988}
4428 3989
4429void rxvt_term::pty_write () 3990void rxvt_term::pty_write ()
4430{ 3991{
4431 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));
4436 3997
4437 if (v_buflen == 0) 3998 if (v_buflen == 0)
4438 { 3999 {
4439 free (v_buffer); 4000 free (v_buffer);
4440 v_buffer = 0; 4001 v_buffer = 0;
4441 v_buflen = 0;
4442 4002
4443 pty_ev.set (EVENT_READ); 4003 pty_ev.set (ev::READ);
4444 return; 4004 return;
4445 } 4005 }
4446 4006
4447 memmove (v_buffer, v_buffer + written, v_buflen); 4007 memmove (v_buffer, v_buffer + written, v_buflen);
4448 } 4008 }
4449 else if (written != -1 || (errno != EAGAIN && errno != EINTR)) 4009 else if (written != -1 || (errno != EAGAIN && errno != EINTR))
4450 pty_ev.set (EVENT_READ); 4010 pty_ev.set (ev::READ);
4451} 4011}
4452 4012
4453/*----------------------- end-of-file (C source) -----------------------*/ 4013/*----------------------- end-of-file (C source) -----------------------*/
4454 4014

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines