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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines