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.283 by root, Tue Jan 24 19:40:12 2006 UTC vs.
Revision 1.435 by sf-exg, Wed Jan 6 12:10:44 2010 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines