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.317 by root, Sat Jan 13 15:06:54 2007 UTC vs.
Revision 1.513 by sf-exg, Thu May 31 05:53:46 2012 UTC

25 * - extensive modifications 25 * - extensive modifications
26 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org> 26 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org>
27 * Copyright (c) 2001 Marius Gedminas 27 * Copyright (c) 2001 Marius Gedminas
28 * - Ctrl/Mod4+Tab works like Meta+Tab (options) 28 * - Ctrl/Mod4+Tab works like Meta+Tab (options)
29 * Copyright (c) 2003 Rob McMullen <robm@flipturn.org> 29 * Copyright (c) 2003 Rob McMullen <robm@flipturn.org>
30 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com> 30 * Copyright (c) 2003-2011 Marc Lehmann <schmorp@schmorp.de>
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.
53 54
54#ifdef KEYSYM_RESOURCE 55#ifdef KEYSYM_RESOURCE
55# include "keyboard.h" 56# include "keyboard.h"
56#endif 57#endif
57 58
58#include <csignal> 59#include <signal.h>
59 60
60#if LINUX_YIELD_HACK 61#if LINUX_YIELD_HACK
61# include <ctime> 62# include <time.h>
62#endif 63#endif
63 64
64/*----------------------------------------------------------------------*/ 65/*----------------------------------------------------------------------*/
65 66
66#define IS_CONTROL(ch) !((ch) & 0xffffff60UL) 67#define IS_CONTROL(ch) !((ch) & 0xffffff60UL)
95 XK_Shift_L, 0x21e7, 96 XK_Shift_L, 0x21e7,
96 XK_Shift_R, 0x21e7, 97 XK_Shift_R, 0x21e7,
97 98
98 XK_Shift_Lock, 0x21eb, 99 XK_Shift_Lock, 0x21eb,
99 XK_ISO_Lock, 0x21eb, 100 XK_ISO_Lock, 0x21eb,
100 XK_ISO_Lock, 0x21eb,
101 XK_Caps_Lock, 0x21ec, 101 XK_Caps_Lock, 0x21ec,
102 XK_Num_Lock, 0x21ed, 102 XK_Num_Lock, 0x21ed,
103 XK_ISO_Level3_Shift, 0x21ee, 103 XK_ISO_Level3_Shift, 0x21ee,
104 XK_ISO_Level3_Lock, 0x21ef, 104 XK_ISO_Level3_Lock, 0x21ef,
105 XK_ISO_Group_Lock, 0x21f0, 105 XK_ISO_Group_Lock, 0x21f0,
131 XK_KP_Space, 0x2422, 131 XK_KP_Space, 0x2422,
132#endif 132#endif
133 0, 133 0,
134}; 134};
135 135
136void 136void ecb_cold
137rxvt_term::iso14755_54 (int x, int y) 137rxvt_term::iso14755_54 (int x, int y)
138{ 138{
139 x = Pixel2Col (x); 139 x = Pixel2Col (x);
140 y = Pixel2Row (y); 140 y = Pixel2Row (y);
141 141
158 158
159 x--; 159 x--;
160 } 160 }
161} 161}
162 162
163void 163void ecb_cold
164rxvt_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)
165{ 165{
166 rxvt_fontset *fs = FONTSET (r); 166 rxvt_fontset *fs = FONTSET (r);
167 rxvt_font *f = (*fs)[fs->find_font (ch)];
168 wchar_t *chr, *alloc, ch2, *fname; 167 wchar_t *chr, *alloc, ch2, **fname;
169 int len; 168 int len;
170
171 fname = rxvt_utf8towcs (f->name);
172 169
173# if ENABLE_COMBINING 170# if ENABLE_COMBINING
174 if (IS_COMPOSE (ch)) 171 if (IS_COMPOSE (ch))
175 { 172 {
176 len = rxvt_composite.expand (ch, 0); 173 len = rxvt_composite.expand (ch, 0);
197 r & RS_Blink ? " blink" : "", 194 r & RS_Blink ? " blink" : "",
198 r & RS_RVid ? " rvid" : "", 195 r & RS_RVid ? " rvid" : "",
199 r & RS_Uline ? " uline" : "", 196 r & RS_Uline ? " uline" : "",
200 r & RS_Careful ? " careful" : ""); 197 r & RS_Careful ? " careful" : "");
201 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)[fs->find_font_idx (chr[i])];
204 fname[i] = rxvt_utf8towcs (f->name);
202 int width = wcswidth (fname, wcslen (fname)); 205 max_it (width, wcswidth (fname[i], wcslen (fname[i])));
206 }
203 207
204 max_it (width, 8+5); // for char + hey 208 max_it (width, 8+5); // for char + hex
205 max_it (width, strlen (attr)); 209 max_it (width, strlen (attr));
206 210
207 if (y >= 0) 211 if (y >= 0)
208 { 212 {
209 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1; 213 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1;
210 x = 0; 214 x = 0;
211 } 215 }
212 216
213 scr_overlay_new (x, y, width, len + 2); 217 scr_overlay_new (x, y, width, len * 2 + 1);
214 218
215 r = SET_STYLE (OVERLAY_RSTYLE, GET_STYLE (r)); 219 r = SET_STYLE (OVERLAY_RSTYLE, GET_STYLE (r));
216 220
217 for (int y = 0; y < len; y++) 221 for (int y = 0; y < len; y++)
218 { 222 {
221 ch = *chr++; 225 ch = *chr++;
222 226
223 sprintf (buf, "%8x", ch); 227 sprintf (buf, "%8x", ch);
224 scr_overlay_set (0, y, buf); 228 scr_overlay_set (0, y, buf);
225 scr_overlay_set (9, y, '='); 229 scr_overlay_set (9, y, '=');
226# if !UNICODE3 230# if !UNICODE_3
227 if (ch >= 0x10000) 231 if (ch >= 0x10000)
228 ch = 0xfffd; 232 ch = 0xfffd;
229# endif 233# endif
230 scr_overlay_set (11, y, ch, r); 234 scr_overlay_set (11, y, ch, r);
231 235
237// char buf[4+4+3+1]; 241// char buf[4+4+3+1];
238// snprintf (buf, sizeof (buf), "(%.4d|%.4d)", x, y); 242// snprintf (buf, sizeof (buf), "(%.4d|%.4d)", x, y);
239// scr_overlay_set (0, 0, buf); 243// scr_overlay_set (0, 0, buf);
240// } 244// }
241 scr_overlay_set (0, len , attr); 245 scr_overlay_set (0, len , attr);
246 for (int i = 0; i < len; i++)
247 {
242 scr_overlay_set (0, len + 1, fname); 248 scr_overlay_set (0, len + 1 + i, fname[i]);
243
244 free (fname); 249 free (fname[i]);
250 }
245 251
246# if ENABLE_COMBINING 252# if ENABLE_COMBINING
247 if (alloc) 253 if (alloc)
248 delete [] alloc; 254 delete [] alloc;
249# endif 255# endif
250} 256}
251#endif 257#endif
252 258
253void 259void ecb_cold
254rxvt_term::commit_iso14755 () 260rxvt_term::commit_iso14755 ()
255{ 261{
256 wchar_t ch[2];
257
258 ch[0] = iso14755buf & ISO_14755_MASK; 262 wchar_t ch = iso14755buf & ISO_14755_MASK;
259 ch[1] = 0;
260 263
261 if (iso14755buf & ISO_14755_51) 264 if (iso14755buf & ISO_14755_51)
262 { 265 {
263 char mb[16]; 266 char mb[MB_LEN_MAX];
264 int len; 267 int len;
265 268
266 // allow verbatim 0-bytes and control-bytes to be entered 269 // allow verbatim 0-bytes and control-bytes to be entered
267 if (ch[0] >= 0x20) 270 if (ch >= 0x20)
268 len = wcstombs (mb, ch, 16); 271 len = wctomb (mb, ch);
269 else 272 else
270 { 273 {
271 mb[0] = ch[0]; 274 mb[0] = ch;
272 len = 1; 275 len = 1;
273 } 276 }
274 277
275 if (len > 0) 278 if (len > 0)
276 tt_write (mb, len); 279 tt_write (mb, len);
279 } 282 }
280 283
281 iso14755buf = 0; 284 iso14755buf = 0;
282} 285}
283 286
284int 287static int ecb_cold
285rxvt_term::hex_keyval (XKeyEvent &ev) 288hex_keyval (XKeyEvent &ev)
286{ 289{
287 // check wether this event corresponds to a hex digit 290 // check whether this event corresponds to a hex digit
288 // if the modifiers had not been pressed. 291 // if the modifiers had not been pressed.
289 for (int index = 0; index < 8; index++) 292 for (int index = 0; index < 8; index++)
290 { 293 {
291 KeySym k = XLookupKeysym (&ev, index); 294 KeySym k = XLookupKeysym (&ev, index);
292 295
298 301
299 return -1; 302 return -1;
300} 303}
301#endif 304#endif
302 305
303void 306static inline KeySym ecb_cold
307translate_keypad (KeySym keysym, bool kp)
308{
309#ifdef XK_KP_Home
310 static const KeySym keypadtrans[] = {
311 XK_KP_7, // XK_KP_Home
312 XK_KP_4, // XK_KP_Left
313 XK_KP_8, // XK_KP_Up
314 XK_KP_6, // XK_KP_Right
315 XK_KP_2, // XK_KP_Down
316# ifndef UNSHIFTED_SCROLLKEYS
317 XK_KP_9, // XK_KP_Prior
318 XK_KP_3, // XK_KP_Next
319# else
320 XK_Prior,
321 XK_Next,
322# endif
323 XK_KP_1, // XK_KP_End
324 XK_KP_5, // XK_KP_Begin
325 };
326
327 if (IN_RANGE_INC (keysym, XK_KP_Home, XK_KP_Begin))
328 {
329 unsigned int index = keysym - XK_KP_Home;
330 keysym = kp ? keypadtrans[index] : XK_Home + index;
331 }
332 else if (keysym == XK_KP_Insert)
333 keysym = kp ? XK_KP_0 : XK_Insert;
334# ifndef NO_DELETE_KEY
335 else if (keysym == XK_KP_Delete)
336 keysym = kp ? XK_KP_Decimal : XK_Delete;
337# endif
338#endif
339 return keysym;
340}
341
342static inline int ecb_cold
343map_function_key (KeySym keysym)
344{
345 int param = 0;
346
347 if (IN_RANGE_INC (keysym, XK_F1, XK_F35))
348 {
349 param = 11 + keysym - XK_F1;
350 if (keysym >= XK_F17)
351 param += 4;
352 else if (keysym >= XK_F15)
353 param += 3;
354 else if (keysym >= XK_F11)
355 param += 2;
356 else if (keysym >= XK_F6)
357 param += 1;
358 }
359 else
360 switch (keysym)
361 {
362 case XK_Find:
363 param = 1;
364 break;
365 case XK_Insert:
366 param = 2;
367 break;
368#ifdef DXK_Remove
369 case DXK_Remove:
370#endif
371 case XK_Execute:
372 param = 3;
373 break;
374 case XK_Select:
375 param = 4;
376 break;
377#ifndef UNSHIFTED_SCROLLKEYS
378 case XK_Prior:
379 param = 5;
380 break;
381 case XK_Next:
382 param = 6;
383 break;
384 case XK_Home:
385 param = 7;
386 break;
387 case XK_End:
388 param = 8;
389 break;
390#endif
391 case XK_Help:
392 param = 28;
393 break;
394 case XK_Menu:
395 param = 29;
396 break;
397 }
398 return param;
399}
400
401void ecb_cold
304rxvt_term::key_press (XKeyEvent &ev) 402rxvt_term::key_press (XKeyEvent &ev)
305{ 403{
306 int ctrl, meta, shft, len; 404 int ctrl, meta, shft, len;
307 unsigned int newlen;
308 KeySym keysym; 405 KeySym keysym;
309 int valid_keysym; 406 int valid_keysym;
310 char kbuf[KBUFSZ]; 407 char kbuf[KBUFSZ];
311 408
312#if ISO_14755 409#if ISO_14755
321 * Always permit `shift' to override the current setting 418 * Always permit `shift' to override the current setting
322 */ 419 */
323 shft = ev.state & ShiftMask; 420 shft = ev.state & ShiftMask;
324 ctrl = ev.state & ControlMask; 421 ctrl = ev.state & ControlMask;
325 meta = ev.state & ModMetaMask; 422 meta = ev.state & ModMetaMask;
326
327 if (numlock_state || (ev.state & ModNumLockMask))
328 {
329 numlock_state = (ev.state & ModNumLockMask);
330 PrivMode ((!numlock_state), PrivMode_aplKP);
331 }
332 423
333 kbuf[0] = 0; 424 kbuf[0] = 0;
334 425
335#ifdef USE_XIM 426#ifdef USE_XIM
336 if (Input_Context) 427 if (Input_Context)
411#ifdef PAGING_CONTEXT_LINES 502#ifdef PAGING_CONTEXT_LINES
412 lnsppg = nrow - PAGING_CONTEXT_LINES; 503 lnsppg = nrow - PAGING_CONTEXT_LINES;
413#else 504#else
414 lnsppg = nrow * 4 / 5; 505 lnsppg = nrow * 4 / 5;
415#endif 506#endif
507 max_it (lnsppg, 1);
508
416 if (keysym == XK_Prior) 509 if (keysym == XK_Prior)
417 { 510 {
418 scr_page (UP, lnsppg); 511 scr_page (UP, lnsppg);
419 return; 512 return;
420 } 513 }
473 selection_request (ev.time); 566 selection_request (ev.time);
474 return; 567 return;
475#if TODO 568#if TODO
476 /* rxvt extras */ 569 /* rxvt extras */
477 case XK_KP_Add: /* Shift+KP_Add = bigger font */ 570 case XK_KP_Add: /* Shift+KP_Add = bigger font */
478 change_font (FONT_UP);
479 return; 571 return;
480 case XK_KP_Subtract: /* Shift+KP_Subtract = smaller font */ 572 case XK_KP_Subtract: /* Shift+KP_Subtract = smaller font */
481 change_font (FONT_DN);
482 return; 573 return;
483#endif 574#endif
484 } 575 }
485 } 576 }
486 } 577 }
487 578
488#if ENABLE_FRILLS || ISO_14755 579#if ENABLE_FRILLS || ISO_14755
489 // ISO 14755 support 580 // ISO 14755 support
490 if (shft && ctrl) 581 if (iso14755buf & (ISO_14755_STARTED | ISO_14755_51))
491 { 582 {
492 int hv; 583 int hv;
493 584
494 if (iso14755buf & ISO_14755_51 585 if (iso14755buf & ISO_14755_51
495 && (keysym == XK_space || keysym == XK_KP_Space 586 && (keysym == XK_space || keysym == XK_KP_Space
497 { 588 {
498 commit_iso14755 (); 589 commit_iso14755 ();
499 iso14755buf = ISO_14755_51; 590 iso14755buf = ISO_14755_51;
500# if ISO_14755 591# if ISO_14755
501 iso14755_51 (0); 592 iso14755_51 (0);
593# endif
594 return;
595 }
596 else if (keysym == XK_BackSpace)
597 {
598 iso14755buf = ((iso14755buf & ISO_14755_MASK) >> 4) | ISO_14755_51;
599# if ISO_14755
600 iso14755_51 (iso14755buf & ISO_14755_MASK);
502# endif 601# endif
503 return; 602 return;
504 } 603 }
505 else if ((hv = hex_keyval (ev)) >= 0) 604 else if ((hv = hex_keyval (ev)) >= 0)
506 { 605 {
511# endif 610# endif
512 return; 611 return;
513 } 612 }
514 else 613 else
515 { 614 {
516# if ENABLE_OVERLAY 615# if ISO_14755
517 scr_overlay_off (); 616 scr_overlay_off ();
518# endif 617# endif
519 iso14755buf = 0; 618 iso14755buf = 0;
520 } 619 }
521 } 620 }
621 else if (option (Opt_iso14755) &&
522 else if ((ctrl && (keysym == XK_Shift_L || keysym == XK_Shift_R)) 622 ((ctrl && (keysym == XK_Shift_L || keysym == XK_Shift_R))
523 || (shft && (keysym == XK_Control_L || keysym == XK_Control_R))) 623 || (shft && (keysym == XK_Control_L || keysym == XK_Control_R))))
524 if (!(iso14755buf & ISO_14755_STARTED)) 624 if (!(iso14755buf & ISO_14755_STARTED))
525 { 625 {
526 iso14755buf |= ISO_14755_STARTED; 626 iso14755buf |= ISO_14755_STARTED;
527# if ENABLE_OVERLAY 627# if ISO_14755
528 scr_overlay_new (0, -1, sizeof ("ISO 14755 mode") - 1, 1); 628 scr_overlay_new (0, -1, sizeof ("ISO 14755 mode") - 1, 1);
529 scr_overlay_set (0, 0, "ISO 14755 mode"); 629 scr_overlay_set (0, 0, "ISO 14755 mode");
530# endif 630# endif
531 } 631 }
532#endif 632#endif
533 633
534#ifdef PRINTPIPE 634#ifdef PRINTPIPE
535 if (keysym == XK_Print) 635 if (keysym == XK_Print)
536 { 636 {
537 scr_printscreen (ctrl | shft); 637 scr_printscreen (ctrl | shft);
538 return; 638 return;
539 } 639 }
540#endif 640#endif
541 641
542 if (keysym >= 0xFF00 && keysym <= 0xFFFF) 642 if (keysym >= 0xFF00 && keysym <= 0xFFFF)
543 { 643 {
644 bool kp = priv_modes & PrivMode_aplKP ? !shft : shft;
645 unsigned int newlen = 1;
646
647 if (ev.state & ModNumLockMask)
648 kp = false;
649
650 keysym = translate_keypad (keysym, kp);
651
652 switch (keysym)
544 { 653 {
654#ifndef NO_BACKSPACE_KEY
655 case XK_BackSpace:
656 if (priv_modes & PrivMode_HaveBackSpace)
657 {
658 kbuf[0] = (!! (priv_modes & PrivMode_BackSpace)
659 ^ !!ctrl) ? '\b' : '\177';
660 kbuf[1] = '\0';
661 }
662 else
663 strcpy (kbuf, rs[Rs_backspace_key]);
664 break;
665#endif
666#ifndef NO_DELETE_KEY
667 case XK_Delete:
668 strcpy (kbuf, rs[Rs_delete_key]);
669 break;
670#endif
671 case XK_Tab:
672 if (shft)
673 strcpy (kbuf, "\033[Z");
674 else
675 {
676#ifdef CTRL_TAB_MAKES_META
677 if (ctrl)
678 meta = 1;
679#endif
680#ifdef MOD4_TAB_MAKES_META
681 if (ev.state & Mod4Mask)
682 meta = 1;
683#endif
545 newlen = 1; 684 newlen = 0;
546 switch (keysym) 685 }
686 break;
687
688 case XK_Up: /* "\033[A" */
689 case XK_Down: /* "\033[B" */
690 case XK_Right: /* "\033[C" */
691 case XK_Left: /* "\033[D" */
692 strcpy (kbuf, "\033[Z");
693 kbuf[2] = "DACB"[keysym - XK_Left];
694 /* do Shift first */
695 if (shft)
696 kbuf[2] = "dacb"[keysym - XK_Left];
697 else if (ctrl)
698 {
699 kbuf[1] = 'O';
700 kbuf[2] = "dacb"[keysym - XK_Left];
701 }
702 else if (priv_modes & PrivMode_aplCUR)
703 kbuf[1] = 'O';
704 break;
705
706 case XK_KP_Enter:
707 /* allow shift to override */
708 if (kp)
709 {
710 strcpy (kbuf, "\033OM");
711 break;
712 }
713
714 /* FALLTHROUGH */
715
716 case XK_Return:
717 if (priv_modes & PrivMode_LFNL)
718 {
719 kbuf[0] = '\015';
720 kbuf[1] = '\012';
721 kbuf[2] = '\0';
722 }
723 else
724 {
725 kbuf[0] = '\015';
726 kbuf[1] = '\0';
727 }
728 break;
729
730 case XK_KP_F1: /* "\033OP" */
731 case XK_KP_F2: /* "\033OQ" */
732 case XK_KP_F3: /* "\033OR" */
733 case XK_KP_F4: /* "\033OS" */
734 strcpy (kbuf, "\033OP");
735 kbuf[2] += (keysym - XK_KP_F1);
736 break;
737
738 case XK_KP_Multiply: /* "\033Oj" : "*" */
739 case XK_KP_Add: /* "\033Ok" : "+" */
740 case XK_KP_Separator: /* "\033Ol" : "," */
741 case XK_KP_Subtract: /* "\033Om" : "-" */
742 case XK_KP_Decimal: /* "\033On" : "." */
743 case XK_KP_Divide: /* "\033Oo" : "/" */
744 case XK_KP_0: /* "\033Op" : "0" */
745 case XK_KP_1: /* "\033Oq" : "1" */
746 case XK_KP_2: /* "\033Or" : "2" */
747 case XK_KP_3: /* "\033Os" : "3" */
748 case XK_KP_4: /* "\033Ot" : "4" */
749 case XK_KP_5: /* "\033Ou" : "5" */
750 case XK_KP_6: /* "\033Ov" : "6" */
751 case XK_KP_7: /* "\033Ow" : "7" */
752 case XK_KP_8: /* "\033Ox" : "8" */
753 case XK_KP_9: /* "\033Oy" : "9" */
754 /* allow shift to override */
755 if (kp)
756 {
757 strcpy (kbuf, "\033Oj");
758 kbuf[2] += (keysym - XK_KP_Multiply);
759 }
760 else
761 {
762 kbuf[0] = ('*' + (keysym - XK_KP_Multiply));
763 kbuf[1] = '\0';
764 }
765 break;
766
767 default:
547 { 768 {
548#ifndef NO_BACKSPACE_KEY 769 int param = map_function_key (keysym);
549 case XK_BackSpace: 770 if (param > 0)
550 if (priv_modes & PrivMode_HaveBackSpace) 771 sprintf (kbuf,"\033[%d~", param);
551 {
552 kbuf[0] = (!! (priv_modes & PrivMode_BackSpace)
553 ^ !!ctrl) ? '\b' : '\177';
554 kbuf[1] = '\0';
555 }
556 else 772 else
557 strcpy (kbuf, key_backspace);
558 break;
559#endif
560#ifndef NO_DELETE_KEY
561# ifdef XK_KP_Prior
562 case XK_KP_Delete:
563 /* allow shift to override */
564 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
565 {
566 strcpy (kbuf, "\033On");
567 break;
568 }
569 /* FALLTHROUGH */
570# endif
571 case XK_Delete:
572 strcpy (kbuf, key_delete);
573 break;
574#endif
575 case XK_Tab:
576 if (shft)
577 strcpy (kbuf, "\033[Z");
578 else
579 {
580#ifdef CTRL_TAB_MAKES_META
581 if (ctrl)
582 meta = 1;
583#endif
584#ifdef MOD4_TAB_MAKES_META
585 if (ev.state & Mod4Mask)
586 meta = 1;
587#endif
588 newlen = 0;
589 }
590 break;
591
592#ifdef XK_KP_Left
593 case XK_KP_Up: /* \033Ox or standard */
594 case XK_KP_Down: /* \033Or or standard */
595 case XK_KP_Right: /* \033Ov or standard */
596 case XK_KP_Left: /* \033Ot or standard */
597 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
598 {
599 strcpy (kbuf, "\033OZ");
600 kbuf[2] = "txvr"[keysym - XK_KP_Left];
601 break;
602 }
603 else
604 /* translate to std. cursor key */
605 keysym = XK_Left + (keysym - XK_KP_Left);
606 /* FALLTHROUGH */
607#endif
608 case XK_Up: /* "\033[A" */
609 case XK_Down: /* "\033[B" */
610 case XK_Right: /* "\033[C" */
611 case XK_Left: /* "\033[D" */
612 strcpy (kbuf, "\033[Z");
613 kbuf[2] = "DACB"[keysym - XK_Left];
614 /* do Shift first */
615 if (shft)
616 kbuf[2] = "dacb"[keysym - XK_Left];
617 else if (ctrl)
618 {
619 kbuf[1] = 'O';
620 kbuf[2] = "dacb"[keysym - XK_Left];
621 }
622 else if (priv_modes & PrivMode_aplCUR)
623 kbuf[1] = 'O';
624 break;
625
626#ifndef UNSHIFTED_SCROLLKEYS
627# ifdef XK_KP_Prior
628 case XK_KP_Prior:
629 /* allow shift to override */
630 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
631 {
632 strcpy (kbuf, "\033Oy");
633 break;
634 }
635 /* FALLTHROUGH */
636# endif
637 case XK_Prior:
638 strcpy (kbuf, "\033[5~");
639 break;
640# ifdef XK_KP_Next
641 case XK_KP_Next:
642 /* allow shift to override */
643 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
644 {
645 strcpy (kbuf, "\033Os");
646 break;
647 }
648 /* FALLTHROUGH */
649# endif
650 case XK_Next:
651 strcpy (kbuf, "\033[6~");
652 break;
653#endif
654 case XK_KP_Enter:
655 /* allow shift to override */
656 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
657 {
658 strcpy (kbuf, "\033OM");
659 break;
660 }
661
662 /* FALLTHROUGH */
663
664 case XK_Return:
665 if (priv_modes & PrivMode_LFNL)
666 {
667 kbuf[0] = '\015';
668 kbuf[1] = '\012';
669 kbuf[2] = '\0';
670 }
671 else
672 {
673 kbuf[0] = '\015';
674 kbuf[1] = '\0';
675 }
676 break;
677
678#ifdef XK_KP_Begin
679 case XK_KP_Begin:
680 strcpy (kbuf, "\033Ou");
681 break;
682
683#endif
684 case XK_KP_F1: /* "\033OP" */
685 case XK_KP_F2: /* "\033OQ" */
686 case XK_KP_F3: /* "\033OR" */
687 case XK_KP_F4: /* "\033OS" */
688 strcpy (kbuf, "\033OP");
689 kbuf[2] += (keysym - XK_KP_F1);
690 break;
691
692 case XK_KP_Multiply: /* "\033Oj" : "*" */
693 case XK_KP_Add: /* "\033Ok" : "+" */
694 case XK_KP_Separator: /* "\033Ol" : "," */
695 case XK_KP_Subtract: /* "\033Om" : "-" */
696 case XK_KP_Decimal: /* "\033On" : "." */
697 case XK_KP_Divide: /* "\033Oo" : "/" */
698 case XK_KP_0: /* "\033Op" : "0" */
699 case XK_KP_1: /* "\033Oq" : "1" */
700 case XK_KP_2: /* "\033Or" : "2" */
701 case XK_KP_3: /* "\033Os" : "3" */
702 case XK_KP_4: /* "\033Ot" : "4" */
703 case XK_KP_5: /* "\033Ou" : "5" */
704 case XK_KP_6: /* "\033Ov" : "6" */
705 case XK_KP_7: /* "\033Ow" : "7" */
706 case XK_KP_8: /* "\033Ox" : "8" */
707 case XK_KP_9: /* "\033Oy" : "9" */
708 /* allow shift to override */
709 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
710 {
711 strcpy (kbuf, "\033Oj");
712 kbuf[2] += (keysym - XK_KP_Multiply);
713 }
714 else
715 {
716 kbuf[0] = ('*' + (keysym - XK_KP_Multiply));
717 kbuf[1] = '\0';
718 }
719 break;
720
721 case XK_Find:
722 strcpy (kbuf, "\033[1~");
723 break;
724
725#ifdef XK_KP_End
726 case XK_KP_Insert:
727 /* allow shift to override */
728 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
729 {
730 strcpy (kbuf, "\033Op");
731 break;
732 }
733 /* FALLTHROUGH */
734#endif
735 case XK_Insert:
736 strcpy (kbuf, "\033[2~");
737 break;
738#ifdef DXK_Remove /* support for DEC remove like key */
739 case DXK_Remove:
740 /* FALLTHROUGH */
741#endif
742 case XK_Execute:
743 strcpy (kbuf, "\033[3~");
744 break;
745 case XK_Select:
746 strcpy (kbuf, "\033[4~");
747 break;
748#ifdef XK_KP_End
749 case XK_KP_End:
750 /* allow shift to override */
751 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
752 {
753 strcpy (kbuf, "\033Oq");
754 break;
755 }
756 /* FALLTHROUGH */
757#endif
758 case XK_End:
759 strcpy (kbuf, KS_END);
760 break;
761#ifdef XK_KP_Home
762 case XK_KP_Home:
763 /* allow shift to override */
764 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
765 {
766 strcpy (kbuf, "\033Ow");
767 break;
768 }
769 /* FALLTHROUGH */
770#endif
771 case XK_Home:
772 strcpy (kbuf, KS_HOME);
773 break;
774
775#define FKEY(n, fkey) \
776 sprintf ((char *)kbuf,"\033[%2d~", (int) ((n) + (keysym - fkey)))
777
778 case XK_F1: /* "\033[11~" */
779 case XK_F2: /* "\033[12~" */
780 case XK_F3: /* "\033[13~" */
781 case XK_F4: /* "\033[14~" */
782 case XK_F5: /* "\033[15~" */
783 FKEY (11, XK_F1);
784 break;
785 case XK_F6: /* "\033[17~" */
786 case XK_F7: /* "\033[18~" */
787 case XK_F8: /* "\033[19~" */
788 case XK_F9: /* "\033[20~" */
789 case XK_F10: /* "\033[21~" */
790 FKEY (17, XK_F6);
791 break;
792 case XK_F11: /* "\033[23~" */
793 case XK_F12: /* "\033[24~" */
794 case XK_F13: /* "\033[25~" */
795 case XK_F14: /* "\033[26~" */
796 FKEY (23, XK_F11);
797 break;
798 case XK_F15: /* "\033[28~" */
799 case XK_F16: /* "\033[29~" */
800 FKEY (28, XK_F15);
801 break;
802 case XK_Help: /* "\033[28~" */
803 FKEY (28, XK_Help);
804 break;
805 case XK_Menu: /* "\033[29~" */
806 FKEY (29, XK_Menu);
807 break;
808 case XK_F17: /* "\033[31~" */
809 case XK_F18: /* "\033[32~" */
810 case XK_F19: /* "\033[33~" */
811 case XK_F20: /* "\033[34~" */
812 case XK_F21: /* "\033[35~" */
813 case XK_F22: /* "\033[36~" */
814 case XK_F23: /* "\033[37~" */
815 case XK_F24: /* "\033[38~" */
816 case XK_F25: /* "\033[39~" */
817 case XK_F26: /* "\033[40~" */
818 case XK_F27: /* "\033[41~" */
819 case XK_F28: /* "\033[42~" */
820 case XK_F29: /* "\033[43~" */
821 case XK_F30: /* "\033[44~" */
822 case XK_F31: /* "\033[45~" */
823 case XK_F32: /* "\033[46~" */
824 case XK_F33: /* "\033[47~" */
825 case XK_F34: /* "\033[48~" */
826 case XK_F35: /* "\033[49~" */
827 FKEY (31, XK_F17);
828 break;
829#undef FKEY
830 default:
831 newlen = 0; 773 newlen = 0;
832 break;
833 } 774 }
834 775 break;
835 if (newlen)
836 len = strlen (kbuf);
837 } 776 }
838 777
778 if (newlen)
779 len = strlen (kbuf);
780
781 if (len > 0)
782 {
839 /* 783 /*
784 * pass Shift/Control indicators for function keys ending with `~'
785 *
786 * eg,
787 * Prior = "ESC[5~"
788 * Shift+Prior = "ESC[5$"
789 * Ctrl+Prior = "ESC[5^"
790 * Ctrl+Shift+Prior = "ESC[5@"
791 */
792 if (kbuf[0] == C0_ESC && kbuf[1] == '[' && kbuf[len - 1] == '~')
793 kbuf[len - 1] = (shft ? (ctrl ? '@' : '$') : (ctrl ? '^' : '~'));
794
795 /*
840 * Pass meta for all function keys, if 'meta' option set 796 * Pass meta for all function keys, if 'meta' option set
841 */ 797 */
842#ifdef META8_OPTION 798#ifdef META8_OPTION
843 if (meta && (meta_char == 0x80) && len > 0) 799 if (meta && (meta_char == 0x80))
844 kbuf[len - 1] |= 0x80; 800 kbuf[len - 1] |= 0x80;
845#endif 801#endif
802 }
846 803
847 } 804 }
848 else if (ctrl && keysym == XK_minus) 805 else if (ctrl && keysym == XK_minus)
849 { 806 {
850 len = 1; 807 len = 1;
877 return; 834 return;
878 835
879 if (len <= 0) 836 if (len <= 0)
880 return; /* not mapped */ 837 return; /* not mapped */
881 838
882 if (OPTION (Opt_scrollTtyKeypress)) 839 if (option (Opt_scrollTtyKeypress))
883 if (view_start) 840 if (view_start)
884 { 841 {
885 view_start = 0; 842 view_start = 0;
886 want_refresh = 1; 843 want_refresh = 1;
887 } 844 }
888 845
889 /*
890 * these modifications only affect the static keybuffer
891 * pass Shift/Control indicators for function keys ending with `~'
892 *
893 * eg,
894 * Prior = "ESC[5~"
895 * Shift+Prior = "ESC[5$"
896 * Ctrl+Prior = "ESC[5^"
897 * Ctrl+Shift+Prior = "ESC[5@"
898 * Meta adds an Escape prefix (with META8_OPTION, if meta == <escape>).
899 */
900 if (kbuf[0] == C0_ESC && kbuf[1] == '[' && kbuf[len - 1] == '~')
901 kbuf[len - 1] = (shft ? (ctrl ? '@' : '$') : (ctrl ? '^' : '~'));
902
903 /* escape prefix */ 846 /* escape prefix */
904 if (meta 847 if (meta
905#ifdef META8_OPTION 848#ifdef META8_OPTION
906 && meta_char == C0_ESC 849 && meta_char == C0_ESC
907#endif 850#endif
912 } 855 }
913 856
914 tt_write (kbuf, (unsigned int)len); 857 tt_write (kbuf, (unsigned int)len);
915} 858}
916 859
917void 860void ecb_cold
918rxvt_term::key_release (XKeyEvent &ev) 861rxvt_term::key_release (XKeyEvent &ev)
919{ 862{
920#if (MOUSE_WHEEL && MOUSE_SLIP_WHEELING) || ISO_14755 || ENABLE_PERL 863#if (MOUSE_WHEEL && MOUSE_SLIP_WHEELING) || ISO_14755 || ENABLE_PERL
921 KeySym keysym; 864 KeySym keysym;
922 865
926#if ENABLE_FRILLS || ISO_14755 869#if ENABLE_FRILLS || ISO_14755
927 // ISO 14755 support 870 // ISO 14755 support
928 if (iso14755buf) 871 if (iso14755buf)
929 if (iso14755buf & ISO_14755_52) 872 if (iso14755buf & ISO_14755_52)
930 { 873 {
931# if ENABLE_OVERLAY 874# if ISO_14755
932 scr_overlay_off (); 875 scr_overlay_off ();
933# endif 876# endif
934# if ISO_14755 877# if ISO_14755
935 // iso14755 part 5.2 handling: release time 878 // iso14755 part 5.2 handling: release time
936 // first: controls 879 // first: controls
942 commit_iso14755 (); 885 commit_iso14755 ();
943 886
944 return; 887 return;
945 } 888 }
946 889
947 for (unsigned short *i = iso14755_symtab; i[0]; i+= 2) 890 for (unsigned short *i = iso14755_symtab; i[0]; i += 2)
948 if (i[0] == keysym) 891 if (i[0] == keysym)
949 { 892 {
950 iso14755buf = ISO_14755_51 | i[1]; 893 iso14755buf = ISO_14755_51 | i[1];
951 commit_iso14755 (); 894 commit_iso14755 ();
952 895
959 902
960 return; 903 return;
961 } 904 }
962 else if ((ev.state & (ShiftMask | ControlMask)) != (ShiftMask | ControlMask)) 905 else if ((ev.state & (ShiftMask | ControlMask)) != (ShiftMask | ControlMask))
963 { 906 {
964# if ENABLE_OVERLAY 907# if ISO_14755
965 scr_overlay_off (); 908 scr_overlay_off ();
966# endif 909# endif
967 if (iso14755buf & ISO_14755_51) 910 if (iso14755buf & ISO_14755_51)
968 commit_iso14755 (); 911 commit_iso14755 ();
969#if ISO_14755 912#if ISO_14755
970 else if (iso14755buf & ISO_14755_STARTED) 913 else if (option (Opt_iso14755_52) && iso14755buf & ISO_14755_STARTED)
971 { 914 {
972 iso14755buf = ISO_14755_52; // iso14755 part 5.2: remember empty begin/end pair 915 iso14755buf = ISO_14755_52; // iso14755 part 5.2: remember empty begin/end pair
973 916
974 scr_overlay_new (0, -1, sizeof ("KEYCAP PICTURE INSERT MODE") - 1, 1); 917 scr_overlay_new (0, -1, sizeof ("KEYCAP PICTURE INSERT MODE") - 1, 1);
975 scr_overlay_set (0, 0, "KEYCAP PICTURE INSERT MODE"); 918 scr_overlay_set (0, 0, "KEYCAP PICTURE INSERT MODE");
989 else if (keysym == XK_Control_L || keysym == XK_Control_R) 932 else if (keysym == XK_Control_L || keysym == XK_Control_R)
990 mouse_slip_wheel_speed = 0; 933 mouse_slip_wheel_speed = 0;
991#endif 934#endif
992} 935}
993 936
994#if defined (KEYSYM_RESOURCE)
995unsigned int
996rxvt_term::cmd_write (const char *str, unsigned int count)
997{
998 unsigned int n, s;
999
1000 n = cmdbuf_ptr - cmdbuf_base;
1001 s = cmdbuf_base + CBUFSIZ - 1 - cmdbuf_endp;
1002
1003 if (n > 0 && s < count)
1004 {
1005 memmove (cmdbuf_base, cmdbuf_ptr,
1006 (unsigned int) (cmdbuf_endp - cmdbuf_ptr));
1007 cmdbuf_ptr = cmdbuf_base;
1008 cmdbuf_endp -= n;
1009 s += n;
1010 }
1011
1012 if (count > s)
1013 {
1014 rxvt_warn ("data loss: cmd_write too large, continuing.\n");
1015 count = s;
1016 }
1017
1018 for (; count--;)
1019 *cmdbuf_endp++ = *str++;
1020
1021 cmd_parse ();
1022
1023 return 0;
1024}
1025#endif
1026
1027void 937void
1028rxvt_term::flush () 938rxvt_term::flush ()
1029{ 939{
1030 flush_ev.stop (); 940 flush_ev.stop ();
1031 941
1032#ifdef TRANSPARENT 942#ifdef HAVE_BG_PIXMAP
1033 if (want_full_refresh) 943 if (bg_flags & BG_NEEDS_REFRESH)
1034 { 944 {
1035 want_full_refresh = 0; 945 bg_flags &= ~BG_NEEDS_REFRESH;
1036 scr_clear ();
1037 scr_touch (false); 946 scr_touch (false);
1038 } 947 }
1039#endif 948#endif
1040 949
1041 if (want_refresh) 950 if (want_refresh)
1077 } 986 }
1078 while (row < end_row); 987 while (row < end_row);
1079 } 988 }
1080 989
1081 scr_refresh (); 990 scr_refresh ();
1082 scrollbar_show (1); 991 scrollBar.show (1);
1083#ifdef USE_XIM 992#ifdef USE_XIM
1084 IMSendSpot (); 993 im_send_spot ();
1085#endif 994#endif
1086 } 995 }
1087 996
1088 display->flush (); 997 display->flush ();
1089} 998}
1090 999
1000/* checks whether a refresh is requested and starts the refresh timer */
1091void 1001void
1092rxvt_term::check_cb (check_watcher &w) 1002rxvt_term::refresh_check ()
1003{
1004 if (want_refresh && !flush_ev.is_active ())
1005 flush_ev.start (1. / 60.); // refresh at max. 60 Hz normally
1006
1007 display->flush ();
1008}
1009
1010void
1011rxvt_term::flush_cb (ev::timer &w, int revents)
1093{ 1012{
1094 make_current (); 1013 make_current ();
1095 1014
1096 display->flush ();
1097
1098 if (want_refresh && !flush_ev.active)
1099 flush_ev.start (NOW + 1. / 60.); // refresh at max. 60 hz normally
1100}
1101
1102void
1103rxvt_term::flush_cb (time_watcher &w)
1104{
1105 make_current ();
1106
1107 refresh_limit = 1;
1108 refresh_count = 0; 1015 refresh_count = 0;
1109 flush (); 1016 flush ();
1110} 1017}
1111 1018
1112#ifdef CURSOR_BLINK 1019#ifdef CURSOR_BLINK
1113void 1020void
1021rxvt_term::cursor_blink_reset ()
1022{
1023 if (hidden_cursor)
1024 {
1025 hidden_cursor = 0;
1026 want_refresh = 1;
1027 }
1028
1029 if (option (Opt_cursorBlink))
1030 cursor_blink_ev.again ();
1031 else
1032 cursor_blink_ev.stop ();
1033}
1034
1035void
1114rxvt_term::cursor_blink_cb (time_watcher &w) 1036rxvt_term::cursor_blink_cb (ev::timer &w, int revents)
1115{ 1037{
1116 hidden_cursor = !hidden_cursor; 1038 hidden_cursor = !hidden_cursor;
1117 want_refresh = 1; 1039 want_refresh = 1;
1118 1040 refresh_check ();
1119 w.start (w.at + CURSOR_BLINK_INTERVAL);
1120} 1041}
1121#endif 1042#endif
1122 1043
1123#ifdef TEXT_BLINK 1044#ifdef TEXT_BLINK
1124void 1045void
1125rxvt_term::text_blink_cb (time_watcher &w) 1046rxvt_term::text_blink_cb (ev::timer &w, int revents)
1126{ 1047{
1127 if (scr_refresh_rend (RS_Blink, RS_Blink)) 1048 if (scr_refresh_rend (RS_Blink, RS_Blink))
1128 { 1049 {
1129 hidden_text = !hidden_text; 1050 hidden_text = !hidden_text;
1130 want_refresh = 1; 1051 want_refresh = 1;
1131 w.start (w.at + TEXT_BLINK_INTERVAL); 1052 refresh_check ();
1132 } 1053 }
1054 else
1055 w.stop ();
1133} 1056}
1134#endif 1057#endif
1135 1058
1136#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 1059#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
1137void 1060void
1138rxvt_term::cont_scroll_cb (time_watcher &w) 1061rxvt_term::cont_scroll_cb (ev::timer &w, int revents)
1139{ 1062{
1140 if ((scrollbar_isUp() || scrollbar_isDn()) && 1063 if ((scrollBar.state == SB_STATE_UP || scrollBar.state == SB_STATE_DOWN)
1141 scr_page (scrollbar_isUp() ? UP : DN, 1)) 1064 && scr_page (scrollBar.state == SB_STATE_UP ? UP : DN, 1))
1142 { 1065 {
1143 want_refresh = 1; 1066 want_refresh = 1;
1144 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1067 refresh_check ();
1145 } 1068 }
1069 else
1070 w.stop ();
1146} 1071}
1147#endif 1072#endif
1148 1073
1149#ifdef SELECTION_SCROLLING 1074#ifdef SELECTION_SCROLLING
1150void 1075void
1151rxvt_term::sel_scroll_cb (time_watcher &w) 1076rxvt_term::sel_scroll_cb (ev::timer &w, int revents)
1152{ 1077{
1153 if (scr_page (scroll_selection_dir, scroll_selection_lines)) 1078 if (scr_page (scroll_selection_dir, scroll_selection_lines))
1154 { 1079 {
1155 selection_extend (selection_save_x, selection_save_y, selection_save_state); 1080 selection_extend (selection_save_x, selection_save_y, selection_save_state);
1156 want_refresh = 1; 1081 want_refresh = 1;
1157 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1082 refresh_check ();
1158 } 1083 }
1084 else
1085 w.stop ();
1159} 1086}
1160#endif 1087#endif
1161 1088
1162#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING) 1089#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
1163void 1090void
1164rxvt_term::slip_wheel_cb (time_watcher &w) 1091rxvt_term::slip_wheel_cb (ev::timer &w, int revents)
1165{ 1092{
1166 if (mouse_slip_wheel_speed == 0 1093 if (scr_changeview (view_start - mouse_slip_wheel_speed))
1167 || mouse_slip_wheel_speed < 0 ? scr_page (DN, -mouse_slip_wheel_speed)
1168 : scr_page (UP, mouse_slip_wheel_speed))
1169 { 1094 {
1170 if (view_start == top_row || view_start == 0)
1171 mouse_slip_wheel_speed = 0;
1172
1173 want_refresh = 1; 1095 want_refresh = 1;
1174 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1096 refresh_check ();
1097 }
1098
1099 if (view_start == top_row || view_start == 0 || mouse_slip_wheel_speed == 0)
1100 {
1101 mouse_slip_wheel_speed = 0;
1102 w.stop ();
1175 } 1103 }
1176} 1104}
1177#endif 1105#endif
1178 1106
1179#if LINUX_YIELD_HACK 1107#if LINUX_YIELD_HACK
1180static struct event_handler 1108static struct event_handler
1181{ 1109{
1182 check_watcher yield_ev; 1110 ev::prepare yield_ev;
1183 1111
1184 void yield_cb (check_watcher &w) 1112 void yield_cb (ev::prepare &w, int revents)
1185 { 1113 {
1186 // this should really be sched_yield(), but the linux guys thought 1114 // this should really be sched_yield(), but the linux guys thought
1187 // that giving a process calling sched_yield () less cpu time than 1115 // that giving a process calling sched_yield () less cpu time than
1188 // ones with high nice levels is a useful thing to do. It surely is is 1116 // ones with high nice levels is a useful thing to do. It surely is is
1189 // allowed by the sus... as is returning ENOSYS. 1117 // allowed by the sus... as is returning ENOSYS.
1118 // since the linux guys additionally thought that breaking the only
1119 // known workaround against their unusable sched_yield hack is cool,
1120 // we just nanosleep a bit and hope for the best.
1190 1121
1191 struct timespec ts = { 0, 0 }; 1122 struct timespec ts = { 0, 1000 };
1192 nanosleep (&ts, 0); 1123 nanosleep (&ts, 0);
1193 1124
1194 w.stop (); 1125 w.stop ();
1195 } 1126 }
1196 1127
1199 { 1130 {
1200 } 1131 }
1201} event_handler; 1132} event_handler;
1202#endif 1133#endif
1203 1134
1135/* make sure all the cmd data is at beginning of cmdbuf */
1136void
1137rxvt_term::cmdbuf_reify ()
1138{
1139 if (cmdbuf_ptr == cmdbuf_base)
1140 return;
1141
1142 ssize_t used = cmdbuf_endp - cmdbuf_ptr;
1143
1144 memmove (cmdbuf_base, cmdbuf_ptr, used);
1145 cmdbuf_ptr = cmdbuf_base;
1146 cmdbuf_endp = cmdbuf_ptr + used;
1147
1148}
1149
1150#if defined (KEYSYM_RESOURCE)
1151void
1152rxvt_term::cmdbuf_append (const char *str, size_t count)
1153{
1154 cmdbuf_reify ();
1155
1156 size_t avail = cmdbuf_base + CBUFSIZ - cmdbuf_endp;
1157
1158 if (count > avail)
1159 return;
1160
1161 memcpy (cmdbuf_endp, str, count);
1162 cmdbuf_endp += count;
1163
1164 cmd_parse ();
1165}
1166#endif
1167
1204bool 1168bool
1205rxvt_term::pty_fill () 1169rxvt_term::pty_fill ()
1206{ 1170{
1207 ssize_t n = cmdbuf_endp - cmdbuf_ptr; 1171 cmdbuf_reify ();
1208 1172
1209 if (CBUFSIZ == n) 1173 size_t avail = cmdbuf_base + CBUFSIZ - cmdbuf_endp;
1210 { 1174
1211 rxvt_warn ("PLEASE REPORT: pty_fill on full buffer, draining input, continuing.\n"); 1175 if (!avail)
1212 n = 0;
1213 } 1176 {
1214 1177 // normally this indicates a "too long" command sequence - just drop the data we have
1215 memmove (cmdbuf_base, cmdbuf_ptr, n);
1216 cmdbuf_ptr = cmdbuf_base; 1178 cmdbuf_ptr = cmdbuf_base;
1217 cmdbuf_endp = cmdbuf_ptr + n; 1179 cmdbuf_endp = cmdbuf_ptr;
1180 avail = CBUFSIZ;
1181 }
1218 1182
1219 ssize_t r = read (pty->pty, cmdbuf_endp, CBUFSIZ - n); 1183 ssize_t r = read (pty->pty, cmdbuf_endp, avail);
1220 1184
1221 if (r > 0) 1185 if (r > 0)
1222 { 1186 {
1223 cmdbuf_endp += r; 1187 cmdbuf_endp += r;
1224 return true; 1188 return true;
1232 } 1196 }
1233 else 1197 else
1234 { 1198 {
1235 pty_ev.stop (); 1199 pty_ev.stop ();
1236 1200
1237 if (!OPTION (Opt_hold)) 1201 if (!option (Opt_hold))
1238 destroy (); 1202 destroy ();
1239 } 1203 }
1240 1204
1241 return false; 1205 return false;
1242} 1206}
1243 1207
1244void 1208void
1245rxvt_term::pty_cb (io_watcher &w, short revents) 1209rxvt_term::pty_cb (ev::io &w, int revents)
1246{ 1210{
1247 make_current (); 1211 make_current ();
1248 1212
1249 if (revents & EVENT_READ) 1213 if (revents & ev::READ)
1250 // loop, but don't allow a single term to monopolize us 1214 // loop, but don't allow a single term to monopolize us
1251 while (pty_fill ()) 1215 for (int i = CBUFCNT; i-- && pty_fill (); )
1252 if (cmd_parse ()) 1216 cmd_parse ();
1253 break;
1254 1217
1255 if (revents & EVENT_WRITE) 1218 if (revents & ev::WRITE)
1256 pty_write (); 1219 pty_write ();
1257}
1258 1220
1259void 1221 refresh_check ();
1222}
1223
1224void ecb_cold
1260rxvt_term::pointer_unblank () 1225rxvt_term::pointer_unblank ()
1261{ 1226{
1262 XDefineCursor (dpy, vt, TermWin_cursor); 1227 XDefineCursor (dpy, vt, TermWin_cursor);
1263 recolour_cursor (); 1228 recolour_cursor ();
1264 1229
1265#ifdef POINTER_BLANK 1230#ifdef POINTER_BLANK
1266 hidden_pointer = 0; 1231 hidden_pointer = 0;
1267 1232
1268 if (OPTION (Opt_pointerBlank)) 1233 if (option (Opt_pointerBlank))
1269 pointer_ev.start (NOW + pointerBlankDelay); 1234 pointer_ev.start (pointerBlankDelay);
1270#endif 1235#endif
1271} 1236}
1272 1237
1273#ifdef POINTER_BLANK 1238#ifdef POINTER_BLANK
1274void 1239void ecb_cold
1275rxvt_term::pointer_blank () 1240rxvt_term::pointer_blank ()
1276{ 1241{
1277 if (!OPTION (Opt_pointerBlank)) 1242 if (!option (Opt_pointerBlank))
1278 return; 1243 return;
1279 1244
1280 XDefineCursor (dpy, vt, display->blank_cursor); 1245 XDefineCursor (dpy, vt, display->blank_cursor);
1281 XFlush (dpy); 1246 XFlush (dpy);
1282 1247
1283 hidden_pointer = 1; 1248 hidden_pointer = 1;
1284} 1249}
1285 1250
1286void 1251void ecb_cold
1287rxvt_term::pointer_cb (time_watcher &w) 1252rxvt_term::pointer_cb (ev::timer &w, int revents)
1288{ 1253{
1289 make_current (); 1254 make_current ();
1290 1255
1291 pointer_blank (); 1256 pointer_blank ();
1292} 1257}
1295void 1260void
1296rxvt_term::mouse_report (XButtonEvent &ev) 1261rxvt_term::mouse_report (XButtonEvent &ev)
1297{ 1262{
1298 int button_number, key_state = 0; 1263 int button_number, key_state = 0;
1299 int x, y; 1264 int x, y;
1265 int code = 32;
1300 1266
1301 x = ev.x; 1267 x = Pixel2Col (ev.x) + 1;
1302 y = ev.y; 1268 y = Pixel2Row (ev.y) + 1;
1303 pixel_position (&x, &y); 1269
1270 if (ev.type == MotionNotify)
1271 {
1272 if (x == mouse_row && y == mouse_col)
1273 return;
1274
1275 mouse_row = x;
1276 mouse_col = y;
1277 code += 32;
1278 }
1304 1279
1305 if (MEvent.button == AnyButton) 1280 if (MEvent.button == AnyButton)
1306 button_number = 3; 1281 button_number = 3;
1307 else 1282 else
1308 { 1283 {
1309 button_number = MEvent.button - Button1; 1284 button_number = MEvent.button - Button1;
1310 /* add 0x3D for wheel events, like xterm does */ 1285 /* add 0x3D for wheel events, like xterm does */
1311 if (button_number >= 3) 1286 if (button_number >= 3)
1312 button_number += (64 - 3); 1287 button_number += 64 - 3;
1313 } 1288 }
1314 1289
1315 if (priv_modes & PrivMode_MouseX10) 1290 if (priv_modes & PrivMode_MouseX10)
1316 { 1291 {
1317 /* 1292 /*
1349 fputc ('A', stderr); 1324 fputc ('A', stderr);
1350 if (key_state & 32) 1325 if (key_state & 32)
1351 fputc ('2', stderr); 1326 fputc ('2', stderr);
1352 fprintf (stderr, "]: <%d>, %d/%d\n", 1327 fprintf (stderr, "]: <%d>, %d/%d\n",
1353 button_number, 1328 button_number,
1354 x + 1, 1329 x,
1355 y + 1); 1330 y);
1356#endif 1331#endif
1357 1332
1333#if ENABLE_FRILLS
1334 if (priv_modes & PrivMode_ExtMouseRight)
1335 tt_printf ("\033[%d;%d;%dM",
1336 code + button_number + key_state,
1337 x,
1338 y);
1339 else if (priv_modes & PrivMode_ExtModeMouse)
1340 tt_printf ("\033[M%c%lc%lc",
1341 code + button_number + key_state,
1342 wint_t (32 + x),
1343 wint_t (32 + y));
1344 else
1345#endif
1358 tt_printf ("\033[M%c%c%c", 1346 tt_printf ("\033[M%c%c%c",
1359 (32 + button_number + key_state), 1347 code + button_number + key_state,
1360 (32 + x + 1), 1348 32 + x,
1361 (32 + y + 1)); 1349 32 + y);
1362} 1350}
1363 1351
1364/*{{{ process an X event */ 1352/*{{{ process an X event */
1365void 1353void ecb_hot
1366rxvt_term::x_cb (XEvent &ev) 1354rxvt_term::x_cb (XEvent &ev)
1367{ 1355{
1368 make_current (); 1356 make_current ();
1369 1357
1370 dLocal (Display *, dpy); 1358 dLocal (Display *, dpy);
1426 else if (ev.xclient.data.l[1] == XEMBED_FOCUS_OUT) 1414 else if (ev.xclient.data.l[1] == XEMBED_FOCUS_OUT)
1427 focus_out (); 1415 focus_out ();
1428 } 1416 }
1429#endif 1417#endif
1430 } 1418 }
1431 break;
1432
1433 case MappingNotify:
1434 XRefreshKeyboardMapping (&ev.xmapping);
1435 break; 1419 break;
1436 1420
1437 /* 1421 /*
1438 * XXX: this is not the _current_ arrangement 1422 * XXX: this is not the _current_ arrangement
1439 * Here's my conclusion: 1423 * Here's my conclusion:
1458 break; 1442 break;
1459 } 1443 }
1460 break; 1444 break;
1461 1445
1462 case FocusIn: 1446 case FocusIn:
1463 if (ev.xfocus.detail != NotifyInferior && ev.xfocus.detail != NotifyPointer) 1447 if (ev.xfocus.detail != NotifyInferior
1448 && ev.xfocus.detail != NotifyPointer
1449 && ev.xfocus.mode != NotifyGrab)
1464 focus_in (); 1450 focus_in ();
1465 break; 1451 break;
1466 1452
1467 case FocusOut: 1453 case FocusOut:
1468 if (ev.xfocus.detail != NotifyInferior && ev.xfocus.detail != NotifyPointer) 1454 if (ev.xfocus.detail != NotifyInferior
1455 && ev.xfocus.detail != NotifyPointer
1456 && ev.xfocus.mode != NotifyGrab)
1469 focus_out (); 1457 focus_out ();
1470 break; 1458 break;
1471 1459
1472 case ConfigureNotify: 1460 case ConfigureNotify:
1473 if (ev.xconfigure.window == parent[0]) 1461 if (ev.xconfigure.window == parent)
1474 { 1462 {
1475 while (XCheckTypedWindowEvent (dpy, ev.xconfigure.window, ConfigureNotify, &ev)) 1463 while (XCheckTypedWindowEvent (dpy, ev.xconfigure.window, ConfigureNotify, &ev))
1476 ; 1464 ;
1465
1466#ifdef HAVE_BG_PIXMAP
1467 bool moved = false;
1468 if (bg_window_position_sensitive ())
1469 {
1470 int x, y;
1471 if (ev.xconfigure.send_event)
1472 {
1473 x = ev.xconfigure.x;
1474 y = ev.xconfigure.y;
1475 }
1476 else
1477 get_window_origin (x, y);
1478
1479 if (bg_set_position (x, y)
1480 || !(bg_flags & BG_IS_VALID))
1481 moved = true;
1482 }
1483#endif
1477 1484
1478 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height) 1485 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height)
1479 { 1486 {
1480 seen_resize = 1; 1487 seen_resize = 1;
1481 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1); 1488 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1);
1482 } 1489 }
1490 else
1491 {
1492#ifdef HAVE_BG_PIXMAP
1493 if (moved)
1494 update_background ();
1495#endif
1496 }
1483 1497
1484 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END)); 1498 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END));
1485
1486#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */
1487#if 0
1488 if (OPTION (Opt_transparent))
1489 check_our_parents ();
1490#endif
1491#endif
1492 } 1499 }
1493 break; 1500 break;
1494 1501
1495 case PropertyNotify: 1502 case PropertyNotify:
1496 if (!HOOK_INVOKE ((this, HOOK_PROPERTY_NOTIFY, DT_XEVENT, &ev, DT_END))) 1503 HOOK_INVOKE ((this, HOOK_PROPERTY_NOTIFY, DT_XEVENT, &ev, DT_END));
1497 if (ev.xproperty.atom == xa[XA_VT_SELECTION]
1498 && ev.xproperty.state == PropertyNewValue)
1499 selection_property (ev.xproperty.window, ev.xproperty.atom);
1500
1501 break; 1504 break;
1502 1505
1503 case SelectionClear: 1506 case SelectionClear:
1504 selection_clear (); 1507 selection_clear (ev.xselectionclear.selection == xa[XA_CLIPBOARD]);
1505 break;
1506
1507 case SelectionNotify:
1508 if (selection_wait == Sel_normal)
1509 selection_paste (ev.xselection.requestor, ev.xselection.property, true);
1510 break; 1508 break;
1511 1509
1512 case SelectionRequest: 1510 case SelectionRequest:
1513 selection_send (ev.xselectionrequest); 1511 selection_send (ev.xselectionrequest);
1514 break; 1512 break;
1515 1513
1516 case MapNotify: 1514 case MapNotify:
1515#ifdef HAVE_BG_PIXMAP
1516 /* This is needed specifically to fix the case of no window manager or a
1517 * non-reparenting window manager. In those cases we never get first
1518 * ConfigureNotify. Also that speeds startup under normal WM, by taking
1519 * care of multiplicity of ConfigureNotify events arriving while WM does
1520 * reparenting.
1521 * We should not render background immediately, as there could be several
1522 * ConfigureNotify's to follow. Lets take care of all of them in one scoop
1523 * by scheduling background redraw as soon as we can, but giving a short
1524 * bit of time for ConfigureNotifies to arrive.
1525 * We should render background PRIOR to drawing any text, but AFTER all
1526 * of ConfigureNotifys for the best results.
1527 */
1528 if (!(bg_flags & BG_IS_VALID))
1529 update_background_ev.start (0.025);
1530#endif
1517 mapped = 1; 1531 mapped = 1;
1518#ifdef TEXT_BLINK 1532#ifdef TEXT_BLINK
1519 text_blink_ev.start (NOW + TEXT_BLINK_INTERVAL); 1533 text_blink_ev.start ();
1520#endif 1534#endif
1521 HOOK_INVOKE ((this, HOOK_MAP_NOTIFY, DT_XEVENT, &ev, DT_END)); 1535 HOOK_INVOKE ((this, HOOK_MAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1522 break; 1536 break;
1523 1537
1524 case UnmapNotify: 1538 case UnmapNotify:
1526#ifdef TEXT_BLINK 1540#ifdef TEXT_BLINK
1527 text_blink_ev.stop (); 1541 text_blink_ev.stop ();
1528#endif 1542#endif
1529 HOOK_INVOKE ((this, HOOK_UNMAP_NOTIFY, DT_XEVENT, &ev, DT_END)); 1543 HOOK_INVOKE ((this, HOOK_UNMAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1530 break; 1544 break;
1531
1532#ifdef TRANSPARENT
1533 case ReparentNotify:
1534 rootwin_cb (ev);
1535 break;
1536#endif /* TRANSPARENT */
1537 1545
1538 case GraphicsExpose: 1546 case GraphicsExpose:
1539 case Expose: 1547 case Expose:
1540 if (ev.xany.window == vt) 1548 if (ev.xany.window == vt)
1541 { 1549 {
1542 do 1550 do
1551 {
1543 scr_expose (ev.xexpose.x, ev.xexpose.y, 1552 scr_expose (ev.xexpose.x, ev.xexpose.y,
1544 ev.xexpose.width, ev.xexpose.height, False); 1553 ev.xexpose.width, ev.xexpose.height, false);
1554 }
1545 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev)); 1555 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev));
1546 1556
1547 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose; 1557 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose;
1548 1558
1549 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev)) 1559 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev))
1560 {
1550 scr_expose (ev.xexpose.x, ev.xexpose.y, 1561 scr_expose (ev.xexpose.x, ev.xexpose.y,
1551 ev.xexpose.width, ev.xexpose.height, False); 1562 ev.xexpose.width, ev.xexpose.height, false);
1563 }
1552 1564
1553 want_refresh = 1; 1565 want_refresh = 1;
1554 } 1566 }
1555 else 1567 else
1556 { 1568 {
1559 while (XCheckTypedWindowEvent (dpy, ev.xany.window, Expose, &unused_event)) 1571 while (XCheckTypedWindowEvent (dpy, ev.xany.window, Expose, &unused_event))
1560 ; 1572 ;
1561 while (XCheckTypedWindowEvent (dpy, ev.xany.window, GraphicsExpose, &unused_event)) 1573 while (XCheckTypedWindowEvent (dpy, ev.xany.window, GraphicsExpose, &unused_event))
1562 ; 1574 ;
1563 1575
1564 if (isScrollbarWindow (ev.xany.window)) 1576 if (scrollBar.state && ev.xany.window == scrollBar.win)
1565 { 1577 {
1566 scrollBar.setIdle (); 1578 scrollBar.state = SB_STATE_IDLE;
1567 scrollbar_show (0); 1579 scrollBar.show (0);
1568 } 1580 }
1569
1570#ifdef TRANSPARENT
1571 if (am_transparent && ev.xany.window == parent[0])
1572 XClearWindow (dpy, ev.xany.window);
1573#endif
1574 } 1581 }
1575 break; 1582 break;
1576 1583
1577 case MotionNotify: 1584 case MotionNotify:
1578#ifdef POINTER_BLANK 1585#ifdef POINTER_BLANK
1579 if (hidden_pointer) 1586 if (hidden_pointer)
1580 pointer_unblank (); 1587 pointer_unblank ();
1581#endif 1588#endif
1589 if ((priv_modes & PrivMode_MouseBtnEvent && ev.xbutton.state & (Button1Mask|Button2Mask|Button3Mask))
1590 || priv_modes & PrivMode_MouseAnyEvent)
1591 mouse_report (ev.xbutton);
1582 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate) 1592 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate)
1583 break; 1593 break;
1584 1594
1585 if (ev.xany.window == vt) 1595 if (ev.xany.window == vt)
1586 { 1596 {
1620 int dist; 1630 int dist;
1621 1631
1622 /* don't clobber the current delay if we are 1632 /* don't clobber the current delay if we are
1623 * already in the middle of scrolling. 1633 * already in the middle of scrolling.
1624 */ 1634 */
1625 if (!sel_scroll_ev.active) 1635 if (!sel_scroll_ev.is_active ())
1626 sel_scroll_ev.start (NOW + SCROLLBAR_INITIAL_DELAY); 1636 sel_scroll_ev.start (SCROLLBAR_INITIAL_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
1627 1637
1628 /* save the event params so we can highlight 1638 /* save the event params so we can highlight
1629 * the selection in the pending-scroll loop 1639 * the selection in the pending-scroll loop
1630 */ 1640 */
1631 selection_save_x = ev.xbutton.x; 1641 selection_save_x = ev.xbutton.x;
1639 dist = int_bwidth - ev.xbutton.y; 1649 dist = int_bwidth - ev.xbutton.y;
1640 } 1650 }
1641 else 1651 else
1642 { 1652 {
1643 scroll_selection_dir = DN; 1653 scroll_selection_dir = DN;
1644 dist = ev.xbutton.y - (int_bwidth + height); 1654 dist = ev.xbutton.y - (int_bwidth + vt_height);
1645 } 1655 }
1646 1656
1647 scroll_selection_lines = Pixel2Height (dist) 1657 scroll_selection_lines = Pixel2Height (dist)
1648 / SELECTION_SCROLL_LINE_SPEEDUP 1658 / SELECTION_SCROLL_LINE_SPEEDUP
1649 + 1; 1659 + 1;
1653 else 1663 else
1654 { 1664 {
1655 /* we are within the text window, so we 1665 /* we are within the text window, so we
1656 * shouldn't be scrolling 1666 * shouldn't be scrolling
1657 */ 1667 */
1658 if (sel_scroll_ev.active)
1659 sel_scroll_ev.stop(); 1668 sel_scroll_ev.stop();
1660 } 1669 }
1661#endif 1670#endif
1662#ifdef MOUSE_THRESHOLD 1671#ifdef MOUSE_THRESHOLD
1663 } 1672 }
1664#endif 1673#endif
1665 } 1674 }
1666 } 1675 }
1667 else if (isScrollbarWindow (ev.xany.window) && scrollbar_isMotion ()) 1676 else if (scrollBar.state == SB_STATE_MOTION && ev.xany.window == scrollBar.win)
1668 { 1677 {
1669 while (XCheckTypedWindowEvent (dpy, scrollBar.win, 1678 while (XCheckTypedWindowEvent (dpy, scrollBar.win,
1670 MotionNotify, &ev)) 1679 MotionNotify, &ev))
1671 ; 1680 ;
1672 1681
1673 XQueryPointer (dpy, scrollBar.win, 1682 XQueryPointer (dpy, scrollBar.win,
1674 &unused_root, &unused_child, 1683 &unused_root, &unused_child,
1675 &unused_root_x, &unused_root_y, 1684 &unused_root_x, &unused_root_y,
1676 &ev.xbutton.x, &ev.xbutton.y, 1685 &ev.xbutton.x, &ev.xbutton.y,
1677 &unused_mask); 1686 &unused_mask);
1678 scr_move_to (scrollbar_position (ev.xbutton.y) - csrO, 1687 scr_move_to (scrollBar.position (ev.xbutton.y) - csrO,
1679 scrollbar_size ()); 1688 scrollBar.size ());
1680 want_refresh = 1; 1689 want_refresh = 1;
1681 refresh_limit = 0;
1682 scrollbar_show (1); 1690 scrollBar.show (1);
1683 } 1691 }
1684 break; 1692 break;
1685 } 1693 }
1686 1694
1687#if defined(CURSOR_BLINK) 1695#if defined(CURSOR_BLINK)
1688 if (OPTION (Opt_cursorBlink) && ev.type == KeyPress) 1696 if (ev.type == KeyPress)
1689 { 1697 cursor_blink_reset ();
1690 if (hidden_cursor)
1691 {
1692 hidden_cursor = 0;
1693 want_refresh = 1;
1694 }
1695
1696 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL);
1697 }
1698#endif 1698#endif
1699 1699
1700#if defined(POINTER_BLANK) 1700#if defined(POINTER_BLANK)
1701 if (OPTION (Opt_pointerBlank) && pointerBlankDelay > 0) 1701 if (option (Opt_pointerBlank) && pointerBlankDelay > 0)
1702 { 1702 {
1703 if (ev.type == MotionNotify 1703 if (ev.type == MotionNotify
1704 || ev.type == ButtonPress 1704 || ev.type == ButtonPress
1705 || ev.type == ButtonRelease) 1705 || ev.type == ButtonRelease)
1706 if (hidden_pointer) 1706 if (hidden_pointer)
1708 1708
1709 if (ev.type == KeyPress && hidden_pointer == 0) 1709 if (ev.type == KeyPress && hidden_pointer == 0)
1710 pointer_blank (); 1710 pointer_blank ();
1711 } 1711 }
1712#endif 1712#endif
1713}
1714 1713
1715void 1714 refresh_check ();
1715}
1716
1717#if ENABLE_FRILLS
1718void ecb_cold
1719rxvt_term::set_urgency (bool enable)
1720{
1721 if (enable == urgency_hint)
1722 return;
1723
1724 if (XWMHints *h = XGetWMHints (dpy, parent))
1725 {
1726 h->flags = h->flags & ~XUrgencyHint | (enable ? XUrgencyHint : 0);
1727 XSetWMHints (dpy, parent, h);
1728 urgency_hint = enable;
1729 XFree (h);
1730 }
1731}
1732#endif
1733
1734void ecb_cold
1716rxvt_term::focus_in () 1735rxvt_term::focus_in ()
1717{ 1736{
1718 if (!focus) 1737 if (!focus)
1719 { 1738 {
1720 focus = 1; 1739 focus = 1;
1721 want_refresh = 1; 1740 want_refresh = 1;
1722 1741
1723 HOOK_INVOKE ((this, HOOK_FOCUS_IN, DT_END));
1724
1725#if USE_XIM 1742#if USE_XIM
1726 if (Input_Context != NULL) 1743 if (Input_Context != NULL)
1727 { 1744 {
1728 IMSetPosition (); 1745 im_set_position ();
1729 XSetICFocus (Input_Context); 1746 XSetICFocus (Input_Context);
1730 } 1747 }
1731#endif 1748#endif
1732#if CURSOR_BLINK 1749#if CURSOR_BLINK
1733 if (OPTION (Opt_cursorBlink)) 1750 if (option (Opt_cursorBlink))
1734 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL); 1751 cursor_blink_ev.again ();
1735#endif 1752#endif
1736#if OFF_FOCUS_FADING 1753#if OFF_FOCUS_FADING
1737 if (rs[Rs_fade]) 1754 if (rs[Rs_fade])
1738 { 1755 {
1739 pix_colors = pix_colors_focused; 1756 pix_colors = pix_colors_focused;
1740 scr_recolour (); 1757 scr_recolour ();
1741 } 1758 }
1742#endif 1759#endif
1743 } 1760#if ENABLE_FRILLS
1744} 1761 if (option (Opt_urgentOnBell))
1762 set_urgency (0);
1763#endif
1745 1764
1746void 1765 HOOK_INVOKE ((this, HOOK_FOCUS_IN, DT_END));
1766 }
1767}
1768
1769void ecb_cold
1747rxvt_term::focus_out () 1770rxvt_term::focus_out ()
1748{ 1771{
1749 if (focus) 1772 if (focus)
1750 { 1773 {
1751 focus = 0; 1774 focus = 0;
1752 want_refresh = 1; 1775 want_refresh = 1;
1753 1776
1754 HOOK_INVOKE ((this, HOOK_FOCUS_OUT, DT_END)); 1777#if ENABLE_FRILLS
1755 1778 if (option (Opt_urgentOnBell))
1779 set_urgency (0);
1780#endif
1756#if ENABLE_FRILLS || ISO_14755 1781#if ENABLE_FRILLS || ISO_14755
1757 if (iso14755buf) 1782 if (iso14755buf)
1758 { 1783 {
1759 iso14755buf = 0; 1784 iso14755buf = 0;
1760# if ENABLE_OVERLAY 1785# if ISO_14755
1761 scr_overlay_off (); 1786 scr_overlay_off ();
1762# endif 1787# endif
1763 } 1788 }
1764#endif 1789#endif
1765#if USE_XIM 1790#if USE_XIM
1766 if (Input_Context != NULL) 1791 if (Input_Context != NULL)
1767 XUnsetICFocus (Input_Context); 1792 XUnsetICFocus (Input_Context);
1768#endif 1793#endif
1769#if CURSOR_BLINK 1794#if CURSOR_BLINK
1770 if (OPTION (Opt_cursorBlink)) 1795 if (option (Opt_cursorBlink))
1771 cursor_blink_ev.stop (); 1796 cursor_blink_ev.stop ();
1797
1772 hidden_cursor = 0; 1798 hidden_cursor = 0;
1773#endif 1799#endif
1774#if OFF_FOCUS_FADING 1800#if OFF_FOCUS_FADING
1775 if (rs[Rs_fade]) 1801 if (rs[Rs_fade])
1776 { 1802 {
1777 pix_colors = pix_colors_unfocused; 1803 pix_colors = pix_colors_unfocused;
1778 scr_recolour (); 1804 scr_recolour ();
1779 } 1805 }
1780#endif 1806#endif
1781 }
1782}
1783 1807
1784void 1808 HOOK_INVOKE ((this, HOOK_FOCUS_OUT, DT_END));
1809 }
1810}
1811
1812void ecb_cold
1785rxvt_term::update_fade_color (unsigned int idx) 1813rxvt_term::update_fade_color (unsigned int idx)
1786{ 1814{
1787#if OFF_FOCUS_FADING 1815#if OFF_FOCUS_FADING
1788 if (rs[Rs_fade]) 1816 if (rs[Rs_fade])
1789 { 1817 {
1792 pix_colors_focused [idx].fade (this, atoi (rs[Rs_fade]), pix_colors_unfocused [idx], c); 1820 pix_colors_focused [idx].fade (this, atoi (rs[Rs_fade]), pix_colors_unfocused [idx], c);
1793 } 1821 }
1794#endif 1822#endif
1795} 1823}
1796 1824
1797#if TRANSPARENT || ENABLE_PERL 1825#if ENABLE_TRANSPARENCY || ENABLE_PERL
1798void 1826void ecb_hot
1799rxvt_term::rootwin_cb (XEvent &ev) 1827rxvt_term::rootwin_cb (XEvent &ev)
1800{ 1828{
1801 make_current (); 1829 make_current ();
1802 1830
1803 if (SHOULD_INVOKE (HOOK_ROOT_EVENT) 1831 if (SHOULD_INVOKE (HOOK_ROOT_EVENT)
1804 && HOOK_INVOKE ((this, HOOK_ROOT_EVENT, DT_XEVENT, &ev, DT_END))) 1832 && HOOK_INVOKE ((this, HOOK_ROOT_EVENT, DT_XEVENT, &ev, DT_END)))
1805 return; 1833 return;
1806 1834
1807# if TRANSPARENT 1835# if ENABLE_TRANSPARENCY
1808 switch (ev.type) 1836 switch (ev.type)
1809 { 1837 {
1810 case PropertyNotify: 1838 case PropertyNotify:
1811 /* 1839 /*
1812 * if user used some Esetroot compatible prog to set the root bg, 1840 * if user used some Esetroot compatible prog to set the root bg,
1813 * use the property to determine the pixmap. We use it later on. 1841 * use the property to determine the pixmap. We use it later on.
1814 */ 1842 */
1815 if (ev.xproperty.atom != xa[XA_XROOTPMAP_ID] 1843 if (ev.xproperty.atom == xa[XA_XROOTPMAP_ID]
1816 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID]) 1844 || ev.xproperty.atom == xa[XA_ESETROOT_PMAP_ID])
1817 return; 1845 {
1846 bg_set_root_pixmap ();
1847 update_background ();
1848 }
1818 1849
1819 /* FALLTHROUGH */
1820 case ReparentNotify:
1821 if (OPTION (Opt_transparent) && check_our_parents () && am_transparent)
1822 want_refresh = want_full_refresh = 1;
1823 break; 1850 break;
1824 } 1851 }
1825# endif 1852# endif
1853
1854 refresh_check ();
1826} 1855}
1827#endif 1856#endif
1828 1857
1829void 1858void
1830rxvt_term::button_press (XButtonEvent &ev) 1859rxvt_term::button_press (XButtonEvent &ev)
1861 /* save the xbutton state (for ButtonRelease) */ 1890 /* save the xbutton state (for ButtonRelease) */
1862 MEvent.state = ev.state; 1891 MEvent.state = ev.state;
1863#ifdef MOUSE_REPORT_DOUBLECLICK 1892#ifdef MOUSE_REPORT_DOUBLECLICK
1864 if (ev.button == MEvent.button && clickintime) 1893 if (ev.button == MEvent.button && clickintime)
1865 { 1894 {
1866 /* same button, within alloted time */ 1895 /* same button, within allowed time */
1867 MEvent.clicks++; 1896 MEvent.clicks++;
1868 1897
1869 if (MEvent.clicks > 1) 1898 if (MEvent.clicks > 1)
1870 { 1899 {
1871 /* only report double clicks */ 1900 /* only report double clicks */
1885 mouse_report (ev); 1914 mouse_report (ev);
1886 } 1915 }
1887#else 1916#else
1888 MEvent.button = ev.button; 1917 MEvent.button = ev.button;
1889 mouse_report (ev); 1918 mouse_report (ev);
1890#endif /* MOUSE_REPORT_DOUBLECLICK */ 1919#endif /* MOUSE_REPORT_DOUBLECLICK */
1891 1920
1892 } 1921 }
1893 else 1922 else
1894 { 1923 {
1895 if (ev.button != MEvent.button) 1924 if (ev.button != MEvent.button)
1943 } 1972 }
1944 1973
1945 /* 1974 /*
1946 * Scrollbar window processing of button press 1975 * Scrollbar window processing of button press
1947 */ 1976 */
1948 if (isScrollbarWindow (ev.window)) 1977 if (scrollBar.state && ev.window == scrollBar.win)
1949 { 1978 {
1950 scrollBar.setIdle (); 1979 page_dirn direction = NO_DIR;
1980
1981 if (scrollBar.upButton (ev.y))
1982 direction = UP; /* up */
1983 else if (scrollBar.dnButton (ev.y))
1984 direction = DN; /* down */
1985
1986 scrollBar.state = SB_STATE_IDLE;
1951 /* 1987 /*
1952 * Rxvt-style scrollbar: 1988 * Rxvt-style scrollbar:
1953 * move up if mouse is above slider 1989 * move up if mouse is above slider
1954 * move dn if mouse is below slider 1990 * move dn if mouse is below slider
1955 * 1991 *
1964 /* 2000 /*
1965 * Mouse report disabled scrollbar: 2001 * Mouse report disabled scrollbar:
1966 * arrow buttons - send up/down 2002 * arrow buttons - send up/down
1967 * click on scrollbar - send pageup/down 2003 * click on scrollbar - send pageup/down
1968 */ 2004 */
1969 if ((scrollBar.style == R_SB_NEXT 2005 if (direction == UP)
1970 && scrollbarnext_upButton (ev.y))
1971 || (scrollBar.style == R_SB_RXVT
1972 && scrollbarrxvt_upButton (ev.y)))
1973 tt_printf ("\033[A"); 2006 tt_printf ("\033[A");
1974 else if ((scrollBar.style == R_SB_NEXT 2007 else if (direction == DN)
1975 && scrollbarnext_dnButton (ev.y))
1976 || (scrollBar.style == R_SB_RXVT
1977 && scrollbarrxvt_dnButton (ev.y)))
1978 tt_printf ("\033[B"); 2008 tt_printf ("\033[B");
1979 else 2009 else
1980 switch (ev.button) 2010 switch (ev.button)
1981 { 2011 {
1982 case Button2: 2012 case Button2:
1989 tt_printf ("\033[5~"); 2019 tt_printf ("\033[5~");
1990 break; 2020 break;
1991 } 2021 }
1992 } 2022 }
1993 else 2023 else
1994#endif /* NO_SCROLLBAR_REPORT */ 2024#endif /* NO_SCROLLBAR_REPORT */
1995
1996 {
1997 char upordown = 0;
1998
1999 if (scrollBar.style == R_SB_NEXT)
2000 { 2025 {
2001 if (scrollbarnext_upButton (ev.y)) 2026 if (direction != NO_DIR)
2002 upordown = -1; /* up */
2003 else if (scrollbarnext_dnButton (ev.y))
2004 upordown = 1; /* down */
2005 }
2006 else if (scrollBar.style == R_SB_RXVT)
2007 {
2008 if (scrollbarrxvt_upButton (ev.y))
2009 upordown = -1; /* up */
2010 else if (scrollbarrxvt_dnButton (ev.y))
2011 upordown = 1; /* down */
2012 }
2013 if (upordown)
2014 { 2027 {
2015#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 2028#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
2029 if (!cont_scroll_ev.is_active ())
2016 cont_scroll_ev.start (NOW + SCROLLBAR_INITIAL_DELAY); 2030 cont_scroll_ev.start (SCROLLBAR_INITIAL_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
2017#endif 2031#endif
2018 if (scr_page (upordown < 0 ? UP : DN, 1)) 2032 if (scr_page (direction, 1))
2019 { 2033 {
2020 if (upordown < 0) 2034 if (direction == UP)
2021 scrollBar.setUp (); 2035 scrollBar.state = SB_STATE_UP;
2022 else 2036 else
2023 scrollBar.setDn (); 2037 scrollBar.state = SB_STATE_DOWN;
2024 } 2038 }
2025 } 2039 }
2026 else 2040 else
2027 switch (ev.button) 2041 switch (ev.button)
2028 { 2042 {
2029 case Button2: 2043 case Button2:
2030 switch (scrollbar_align) 2044 switch (scrollBar.align)
2031 { 2045 {
2032 case R_SB_ALIGN_TOP: 2046 case SB_ALIGN_TOP:
2033 csrO = 0; 2047 csrO = 0;
2034 break; 2048 break;
2035 case R_SB_ALIGN_CENTRE: 2049 case SB_ALIGN_CENTRE:
2036 csrO = (scrollBar.bot - scrollBar.top) / 2; 2050 csrO = (scrollBar.bot - scrollBar.top) / 2;
2037 break; 2051 break;
2038 case R_SB_ALIGN_BOTTOM: 2052 case SB_ALIGN_BOTTOM:
2039 csrO = scrollBar.bot - scrollBar.top; 2053 csrO = scrollBar.bot - scrollBar.top;
2040 break; 2054 break;
2041 } 2055 }
2042 2056
2043 if (scrollBar.style == R_SB_XTERM 2057 if (scrollBar.style == SB_STYLE_XTERM
2044 || scrollbar_above_slider (ev.y) 2058 || scrollBar.above_slider (ev.y)
2045 || scrollbar_below_slider (ev.y)) 2059 || scrollBar.below_slider (ev.y))
2046 scr_move_to (scrollbar_position (ev.y) - csrO, scrollbar_size ()); 2060 scr_move_to (scrollBar.position (ev.y) - csrO, scrollBar.size ());
2047 2061
2048 scrollBar.setMotion (); 2062 scrollBar.state = SB_STATE_MOTION;
2049 break; 2063 break;
2050 2064
2051 case Button1: 2065 case Button1:
2052 if (scrollbar_align == R_SB_ALIGN_CENTRE) 2066 if (scrollBar.align == SB_ALIGN_CENTRE)
2053 csrO = ev.y - scrollBar.top; 2067 csrO = ev.y - scrollBar.top;
2054 /* FALLTHROUGH */ 2068 /* FALLTHROUGH */
2055 2069
2056 case Button3: 2070 case Button3:
2057 if (scrollBar.style != R_SB_XTERM) 2071 if (scrollBar.style != SB_STYLE_XTERM)
2058 { 2072 {
2059 if (scrollbar_above_slider (ev.y)) 2073 if (scrollBar.above_slider (ev.y))
2060# ifdef RXVT_SCROLL_FULL 2074# ifdef RXVT_SCROLL_FULL
2061 scr_page (UP, nrow - 1); 2075 scr_page (UP, nrow - 1);
2062# else 2076# else
2063 scr_page (UP, nrow / 4); 2077 scr_page (UP, nrow / 4);
2064# endif 2078# endif
2065 else if (scrollbar_below_slider (ev.y)) 2079 else if (scrollBar.below_slider (ev.y))
2066# ifdef RXVT_SCROLL_FULL 2080# ifdef RXVT_SCROLL_FULL
2067 scr_page (DN, nrow - 1); 2081 scr_page (DN, nrow - 1);
2068# else 2082# else
2069 scr_page (DN, nrow / 4); 2083 scr_page (DN, nrow / 4);
2070# endif 2084# endif
2071 else 2085 else
2072 scrollBar.setMotion (); 2086 scrollBar.state = SB_STATE_MOTION;
2073 } 2087 }
2074 else 2088 else
2075 { 2089 {
2076 scr_page ((ev.button == Button1 ? DN : UP), 2090 scr_page ((ev.button == Button1 ? DN : UP),
2077 (nrow 2091 (nrow
2078 * scrollbar_position (ev.y) 2092 * scrollBar.position (ev.y)
2079 / scrollbar_size ())); 2093 / scrollBar.size ()));
2080 } 2094 }
2081 2095
2082 break; 2096 break;
2083 } 2097 }
2084 } 2098 }
2094 2108
2095 csrO = 0; /* reset csr Offset */ 2109 csrO = 0; /* reset csr Offset */
2096 if (!bypass_keystate) 2110 if (!bypass_keystate)
2097 reportmode = !! (priv_modes & PrivMode_mouse_report); 2111 reportmode = !! (priv_modes & PrivMode_mouse_report);
2098 2112
2099 if (scrollbar_isUpDn ()) 2113 if (scrollBar.state == SB_STATE_UP || scrollBar.state == SB_STATE_DOWN)
2100 { 2114 {
2101 scrollBar.setIdle (); 2115 scrollBar.state = SB_STATE_IDLE;
2102 scrollbar_show (0); 2116 scrollBar.show (0);
2103 } 2117 }
2104 2118
2105#ifdef SELECTION_SCROLLING 2119#ifdef SELECTION_SCROLLING
2106 if (sel_scroll_ev.active)
2107 sel_scroll_ev.stop(); 2120 sel_scroll_ev.stop();
2108#endif 2121#endif
2109 2122
2110 if (ev.window == vt) 2123 if (ev.window == vt)
2111 { 2124 {
2112 if (HOOK_INVOKE ((this, HOOK_BUTTON_RELEASE, DT_XEVENT, &ev, DT_END))) 2125 if (HOOK_INVOKE ((this, HOOK_BUTTON_RELEASE, DT_XEVENT, &ev, DT_END)))
2136 mouse_report (ev); 2149 mouse_report (ev);
2137 } 2150 }
2138#else /* MOUSE_REPORT_DOUBLECLICK */ 2151#else /* MOUSE_REPORT_DOUBLECLICK */
2139 MEvent.button = AnyButton; 2152 MEvent.button = AnyButton;
2140 mouse_report (ev); 2153 mouse_report (ev);
2141#endif /* MOUSE_REPORT_DOUBLECLICK */ 2154#endif /* MOUSE_REPORT_DOUBLECLICK */
2142 return; 2155 return;
2143 } 2156 }
2144 2157
2145 /* 2158 /*
2146 * dumb hack to compensate for the failure of click-and-drag 2159 * dumb hack to compensate for the failure of click-and-drag
2157 case Button3: 2170 case Button3:
2158 selection_make (ev.time); 2171 selection_make (ev.time);
2159 break; 2172 break;
2160 2173
2161 case Button2: 2174 case Button2:
2162 if (IN_RANGE_EXC (ev.x, 0, width) && IN_RANGE_EXC (ev.y, 0, height)) // inside window? 2175 if (IN_RANGE_EXC (ev.x, 0, vt_width) && IN_RANGE_EXC (ev.y, 0, vt_height)) // inside window?
2163 selection_request (ev.time, ev.state & ModMetaMask ? Sel_Primary : Sel_Primary); 2176 selection_request (ev.time, ev.state & ModMetaMask ? Sel_Clipboard : Sel_Primary);
2164 break; 2177 break;
2165 2178
2166#ifdef MOUSE_WHEEL 2179#ifdef MOUSE_WHEEL
2167 case Button4: 2180 case Button4:
2168 case Button5: 2181 case Button5:
2172 2185
2173 v = ev.button == Button4 ? UP : DN; 2186 v = ev.button == Button4 ? UP : DN;
2174 2187
2175 if (ev.state & ShiftMask) 2188 if (ev.state & ShiftMask)
2176 i = 1; 2189 i = 1;
2177 else if (OPTION (Opt_mouseWheelScrollPage)) 2190 else if (option (Opt_mouseWheelScrollPage))
2178 i = nrow - 1; 2191 i = nrow - 1;
2179 else 2192 else
2180 i = 5; 2193 i = 5;
2181 2194
2182# ifdef MOUSE_SLIP_WHEELING 2195# ifdef MOUSE_SLIP_WHEELING
2184 { 2197 {
2185 mouse_slip_wheel_speed += v ? -1 : 1; 2198 mouse_slip_wheel_speed += v ? -1 : 1;
2186 if (mouse_slip_wheel_speed < -nrow) mouse_slip_wheel_speed = -nrow; 2199 if (mouse_slip_wheel_speed < -nrow) mouse_slip_wheel_speed = -nrow;
2187 if (mouse_slip_wheel_speed > +nrow) mouse_slip_wheel_speed = +nrow; 2200 if (mouse_slip_wheel_speed > +nrow) mouse_slip_wheel_speed = +nrow;
2188 2201
2189 if (slip_wheel_ev.at < NOW) 2202 if (!slip_wheel_ev.is_active ())
2190 slip_wheel_ev.at = NOW + SCROLLBAR_CONTINUOUS_DELAY; 2203 slip_wheel_ev.start (SCROLLBAR_CONTINUOUS_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
2191
2192 slip_wheel_ev.start ();
2193 } 2204 }
2194 else 2205 else
2206# endif
2195 { 2207 {
2196# endif
2197 scr_page (v, i); 2208 scr_page (v, i);
2198 scrollbar_show (1); 2209 scrollBar.show (1);
2199# ifdef MOUSE_SLIP_WHEELING
2200 } 2210 }
2201# endif
2202 } 2211 }
2203 break; 2212 break;
2204#endif 2213#endif
2205 } 2214 }
2206 } 2215 }
2207} 2216}
2208 2217
2209#ifdef TRANSPARENT
2210#if TINTING
2211/* taken from aterm-0.4.2 */
2212
2213typedef uint32_t RUINT32T;
2214
2215void ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm)
2216{
2217 int sh_r, sh_g, sh_b;
2218 RUINT32T mask_r, mask_g, mask_b;
2219 RUINT32T *lookup, *lookup_r, *lookup_g, *lookup_b;
2220 unsigned int lower_lim_r, lower_lim_g, lower_lim_b;
2221 unsigned int upper_lim_r, upper_lim_g, upper_lim_b;
2222 int i;
2223
2224 Visual *visual = term->visual;
2225
2226 if( visual->c_class != TrueColor || srcImage->format != ZPixmap ) return ;
2227
2228 /* for convenience */
2229 mask_r = visual->red_mask;
2230 mask_g = visual->green_mask;
2231 mask_b = visual->blue_mask;
2232
2233 /* boring lookup table pre-initialization */
2234 switch (srcImage->bits_per_pixel) {
2235 case 15:
2236 if ((mask_r != 0x7c00) ||
2237 (mask_g != 0x03e0) ||
2238 (mask_b != 0x001f))
2239 return;
2240 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+32+32));
2241 lookup_r = lookup;
2242 lookup_g = lookup+32;
2243 lookup_b = lookup+32+32;
2244 sh_r = 10;
2245 sh_g = 5;
2246 sh_b = 0;
2247 break;
2248 case 16:
2249 if ((mask_r != 0xf800) ||
2250 (mask_g != 0x07e0) ||
2251 (mask_b != 0x001f))
2252 return;
2253 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+64+32));
2254 lookup_r = lookup;
2255 lookup_g = lookup+32;
2256 lookup_b = lookup+32+64;
2257 sh_r = 11;
2258 sh_g = 5;
2259 sh_b = 0;
2260 break;
2261 case 24:
2262 if ((mask_r != 0xff0000) ||
2263 (mask_g != 0x00ff00) ||
2264 (mask_b != 0x0000ff))
2265 return;
2266 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
2267 lookup_r = lookup;
2268 lookup_g = lookup+256;
2269 lookup_b = lookup+256+256;
2270 sh_r = 16;
2271 sh_g = 8;
2272 sh_b = 0;
2273 break;
2274 case 32:
2275 if ((mask_r != 0xff0000) ||
2276 (mask_g != 0x00ff00) ||
2277 (mask_b != 0x0000ff))
2278 return;
2279 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
2280 lookup_r = lookup;
2281 lookup_g = lookup+256;
2282 lookup_b = lookup+256+256;
2283 sh_r = 16;
2284 sh_g = 8;
2285 sh_b = 0;
2286 break;
2287 default:
2288 return; /* we do not support this color depth */
2289 }
2290
2291 /* prepare limits for color transformation (each channel is handled separately) */
2292 if (shade < 0) {
2293 shade = -shade;
2294 if (shade < 0) shade = 0;
2295 if (shade > 100) shade = 100;
2296
2297 lower_lim_r = 65535-rm;
2298 lower_lim_g = 65535-gm;
2299 lower_lim_b = 65535-bm;
2300
2301 lower_lim_r = 65535-(unsigned int)(((RUINT32T)lower_lim_r)*((RUINT32T)shade)/100);
2302 lower_lim_g = 65535-(unsigned int)(((RUINT32T)lower_lim_g)*((RUINT32T)shade)/100);
2303 lower_lim_b = 65535-(unsigned int)(((RUINT32T)lower_lim_b)*((RUINT32T)shade)/100);
2304
2305 upper_lim_r = upper_lim_g = upper_lim_b = 65535;
2306 } else {
2307 if (shade < 0) shade = 0;
2308 if (shade > 100) shade = 100;
2309
2310 lower_lim_r = lower_lim_g = lower_lim_b = 0;
2311
2312 upper_lim_r = (unsigned int)((((RUINT32T)rm)*((RUINT32T)shade))/100);
2313 upper_lim_g = (unsigned int)((((RUINT32T)gm)*((RUINT32T)shade))/100);
2314 upper_lim_b = (unsigned int)((((RUINT32T)bm)*((RUINT32T)shade))/100);
2315 }
2316
2317 /* switch red and blue bytes if necessary, we need it for some weird XServers like XFree86 3.3.3.1 */
2318 if ((srcImage->bits_per_pixel == 24) && (mask_r >= 0xFF0000 ))
2319 {
2320 unsigned int tmp;
2321
2322 tmp = lower_lim_r;
2323 lower_lim_r = lower_lim_b;
2324 lower_lim_b = tmp;
2325
2326 tmp = upper_lim_r;
2327 upper_lim_r = upper_lim_b;
2328 upper_lim_b = tmp;
2329 }
2330
2331 /* fill our lookup tables */
2332 for (i = 0; i <= mask_r>>sh_r; i++)
2333 {
2334 RUINT32T tmp;
2335 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_r-lower_lim_r));
2336 tmp += ((RUINT32T)(mask_r>>sh_r))*((RUINT32T)lower_lim_r);
2337 lookup_r[i] = (tmp/65535)<<sh_r;
2338 }
2339 for (i = 0; i <= mask_g>>sh_g; i++)
2340 {
2341 RUINT32T tmp;
2342 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_g-lower_lim_g));
2343 tmp += ((RUINT32T)(mask_g>>sh_g))*((RUINT32T)lower_lim_g);
2344 lookup_g[i] = (tmp/65535)<<sh_g;
2345 }
2346 for (i = 0; i <= mask_b>>sh_b; i++)
2347 {
2348 RUINT32T tmp;
2349 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_b-lower_lim_b));
2350 tmp += ((RUINT32T)(mask_b>>sh_b))*((RUINT32T)lower_lim_b);
2351 lookup_b[i] = (tmp/65535)<<sh_b;
2352 }
2353
2354 /* apply table to input image (replacing colors by newly calculated ones) */
2355 switch (srcImage->bits_per_pixel)
2356 {
2357 case 15:
2358 {
2359 unsigned short *p1, *pf, *p, *pl;
2360 p1 = (unsigned short *) srcImage->data;
2361 pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2362 while (p1 < pf)
2363 {
2364 p = p1;
2365 pl = p1 + srcImage->width;
2366 for (; p < pl; p++)
2367 {
2368 *p = lookup_r[(*p & 0x7c00)>>10] |
2369 lookup_g[(*p & 0x03e0)>> 5] |
2370 lookup_b[(*p & 0x001f)];
2371 }
2372 p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
2373 }
2374 break;
2375 }
2376 case 16:
2377 {
2378 unsigned short *p1, *pf, *p, *pl;
2379 p1 = (unsigned short *) srcImage->data;
2380 pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2381 while (p1 < pf)
2382 {
2383 p = p1;
2384 pl = p1 + srcImage->width;
2385 for (; p < pl; p++)
2386 {
2387 *p = lookup_r[(*p & 0xf800)>>11] |
2388 lookup_g[(*p & 0x07e0)>> 5] |
2389 lookup_b[(*p & 0x001f)];
2390 }
2391 p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
2392 }
2393 break;
2394 }
2395 case 24:
2396 {
2397 unsigned char *p1, *pf, *p, *pl;
2398 p1 = (unsigned char *) srcImage->data;
2399 pf = (unsigned char *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2400 while (p1 < pf)
2401 {
2402 p = p1;
2403 pl = p1 + srcImage->width * 3;
2404 for (; p < pl; p += 3)
2405 {
2406 p[0] = lookup_r[(p[0] & 0xff0000)>>16];
2407 p[1] = lookup_r[(p[1] & 0x00ff00)>> 8];
2408 p[2] = lookup_r[(p[2] & 0x0000ff)];
2409 }
2410 p1 = (unsigned char *) ((char *) p1 + srcImage->bytes_per_line);
2411 }
2412 break;
2413 }
2414 case 32:
2415 {
2416 RUINT32T *p1, *pf, *p, *pl;
2417 p1 = (RUINT32T *) srcImage->data;
2418 pf = (RUINT32T *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
2419
2420 while (p1 < pf)
2421 {
2422 p = p1;
2423 pl = p1 + srcImage->width;
2424 for (; p < pl; p++)
2425 {
2426 *p = lookup_r[(*p & 0xff0000)>>16] |
2427 lookup_g[(*p & 0x00ff00)>> 8] |
2428 lookup_b[(*p & 0x0000ff)] |
2429 (*p & ~0xffffff);
2430 }
2431 p1 = (RUINT32T *) ((char *) p1 + srcImage->bytes_per_line);
2432 }
2433 break;
2434 }
2435 }
2436
2437 free (lookup);
2438}
2439#endif
2440
2441/*
2442 * Check our parents are still who we think they are.
2443 * Do transparency updates if required
2444 */
2445int
2446rxvt_term::check_our_parents ()
2447{
2448 int i, pchanged, aformat, have_pixmap, rootdepth;
2449 unsigned long nitems, bytes_after;
2450 Atom atype;
2451 unsigned char *prop = NULL;
2452 Window root, oldp, *list;
2453 Pixmap rootpixmap = None;
2454 XWindowAttributes wattr, wrootattr;
2455
2456 pchanged = 0;
2457
2458 if (!OPTION (Opt_transparent))
2459 return pchanged; /* Don't try any more */
2460
2461 XGetWindowAttributes (dpy, display->root, &wrootattr);
2462 rootdepth = wrootattr.depth;
2463
2464 XGetWindowAttributes (dpy, parent[0], &wattr);
2465
2466 if (rootdepth != wattr.depth)
2467 {
2468 if (am_transparent)
2469 {
2470 pchanged = 1;
2471 XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]);
2472 am_transparent = am_pixmap_trans = 0;
2473 }
2474
2475 return pchanged; /* Don't try any more */
2476 }
2477
2478 /* Get all X ops out of the queue so that our information is up-to-date. */
2479 XSync (dpy, False);
2480
2481 /*
2482 * Make the frame window set by the window manager have
2483 * the root background. Some window managers put multiple nested frame
2484 * windows for each client, so we have to take care about that.
2485 */
2486 i = (xa[XA_XROOTPMAP_ID]
2487 && XGetWindowProperty (dpy, display->root, xa[XA_XROOTPMAP_ID],
2488 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
2489 &nitems, &bytes_after, &prop) == Success);
2490
2491 if (!i || prop == NULL)
2492 i = (xa[XA_ESETROOT_PMAP_ID]
2493 && XGetWindowProperty (dpy, display->root, xa[XA_ESETROOT_PMAP_ID],
2494 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
2495 &nitems, &bytes_after, &prop) == Success);
2496
2497 if (!i || prop == NULL
2498#if TINTING
2499 || !ISSET_PIXCOLOR (Color_tint)
2500#endif
2501 )
2502 have_pixmap = 0;
2503 else
2504 {
2505 have_pixmap = 1;
2506 rootpixmap = *(Pixmap *)prop;
2507 XFree (prop);
2508 }
2509
2510 if (have_pixmap)
2511 {
2512 /*
2513 * Copy display->root pixmap transparency
2514 */
2515 int sx, sy, nx, ny;
2516 unsigned int nw, nh;
2517 Window cr;
2518 XImage *image;
2519 GC gc;
2520 XGCValues gcvalue;
2521
2522 XTranslateCoordinates (dpy, parent[0], display->root,
2523 0, 0, &sx, &sy, &cr);
2524 nw = (unsigned int)szHint.width;
2525 nh = (unsigned int)szHint.height;
2526 nx = ny = 0;
2527
2528 if (sx < 0)
2529 {
2530 nw += sx;
2531 nx = -sx;
2532 sx = 0;
2533 }
2534
2535 if (sy < 0)
2536 {
2537 nh += sy;
2538 ny = -sy;
2539 sy = 0;
2540 }
2541
2542 min_it (nw, (unsigned int) (wrootattr.width - sx));
2543 min_it (nh, (unsigned int) (wrootattr.height - sy));
2544
2545 XSync (dpy, False);
2546 allowedxerror = -1;
2547 image = XGetImage (dpy, rootpixmap, sx, sy, nw, nh, AllPlanes, ZPixmap);
2548
2549 /* XXX: handle BadMatch - usually because we're outside the pixmap */
2550 /* XXX: may need a delay here? */
2551 allowedxerror = 0;
2552
2553 if (image == NULL)
2554 {
2555 if (am_transparent && am_pixmap_trans)
2556 {
2557 pchanged = 1;
2558 if (pixmap != None)
2559 {
2560 XFreePixmap (dpy, pixmap);
2561 pixmap = None;
2562 }
2563 }
2564
2565 am_pixmap_trans = 0;
2566 }
2567 else
2568 {
2569 if (pixmap != None)
2570 XFreePixmap (dpy, pixmap);
2571
2572#if TINTING
2573 if (ISSET_PIXCOLOR (Color_tint))
2574 {
2575 int shade = rs[Rs_shade] ? atoi (rs[Rs_shade]) : 100;
2576
2577 rgba c;
2578 pix_colors_focused [Color_tint].get (c);
2579
2580 ShadeXImage (this, image, shade, c.r, c.g, c.b);
2581 }
2582#endif
2583
2584 pixmap = XCreatePixmap (dpy, vt, szHint.width, szHint.height, image->depth);
2585 gc = XCreateGC (dpy, vt, 0UL, &gcvalue);
2586 XPutImage (dpy, pixmap, gc, image, 0, 0,
2587 nx, ny, image->width, image->height);
2588 XFreeGC (dpy, gc);
2589 XDestroyImage (image);
2590 XSetWindowBackgroundPixmap (dpy, parent[0], pixmap);
2591 XClearWindow (dpy, parent[0]);
2592
2593 if (!am_transparent || !am_pixmap_trans)
2594 pchanged = 1;
2595
2596 am_transparent = am_pixmap_trans = 1;
2597 }
2598 }
2599
2600 if (am_pixmap_trans)
2601 XSetWindowBackgroundPixmap (dpy, vt, ParentRelative);
2602 else
2603 {
2604 unsigned int n;
2605 /*
2606 * InheritPixmap transparency
2607 */
2608 for (i = 1; i < (int) (sizeof (parent) / sizeof (Window)); i++)
2609 {
2610 oldp = parent[i];
2611 XQueryTree (dpy, parent[i - 1], &root, &parent[i], &list, &n);
2612 XFree (list);
2613
2614 if (parent[i] == display->root)
2615 {
2616 if (oldp != None)
2617 pchanged = 1;
2618
2619 break;
2620 }
2621
2622 if (oldp != parent[i])
2623 pchanged = 1;
2624 }
2625
2626 n = 0;
2627
2628 if (pchanged)
2629 for (; n < (unsigned int)i; n++)
2630 {
2631 XGetWindowAttributes (dpy, parent[n], &wattr);
2632
2633 if (wattr.depth != rootdepth || wattr.c_class == InputOnly)
2634 {
2635 n = (int) (sizeof (parent) / sizeof (Window)) + 1;
2636 break;
2637 }
2638 }
2639
2640 if (n > (sizeof (parent) / sizeof (parent[0])))
2641 {
2642 XSetWindowBackground (dpy, parent[0], pix_colors_focused[Color_border]);
2643 XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]);
2644 am_transparent = 0;
2645 /* XXX: also turn off Opt_transparent? */
2646 }
2647 else
2648 {
2649 for (n = 0; n < (unsigned int)i; n++)
2650 {
2651 XSetWindowBackgroundPixmap (dpy, parent[n], ParentRelative);
2652 XClearWindow (dpy, parent[n]);
2653 }
2654
2655 XSetWindowBackgroundPixmap (dpy, vt, ParentRelative);
2656 am_transparent = 1;
2657 }
2658
2659 for (; i < (int) (sizeof (parent) / sizeof (Window)); i++)
2660 parent[i] = None;
2661 }
2662
2663 if (scrollBar.win)
2664 {
2665 XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative);
2666 scrollBar.setIdle ();
2667 scrollbar_show (0);
2668 }
2669
2670 if (am_transparent)
2671 {
2672 want_refresh = want_full_refresh = 1;
2673 if (am_pixmap_trans)
2674 flush ();
2675 }
2676
2677 return pchanged;
2678}
2679#endif
2680
2681/*}}} */ 2218/*}}} */
2682 2219
2683bool 2220void ecb_hot
2684rxvt_term::cmd_parse () 2221rxvt_term::cmd_parse ()
2685{ 2222{
2686 bool flag = false;
2687 wchar_t ch = NOCHAR; 2223 wchar_t ch = NOCHAR;
2688 char *seq_begin; // remember start of esc-sequence here 2224 char *seq_begin; // remember start of esc-sequence here
2689 2225
2690 for (;;) 2226 for (;;)
2691 { 2227 {
2692 if (ch == NOCHAR) 2228 if (ecb_unlikely (ch == NOCHAR))
2693 { 2229 {
2694 seq_begin = cmdbuf_ptr; 2230 seq_begin = cmdbuf_ptr;
2695 ch = next_char (); 2231 ch = next_char ();
2696 2232
2697 if (ch == NOCHAR) 2233 if (ch == NOCHAR)
2698 break; 2234 break;
2699 } 2235 }
2700 2236
2701 if (!IS_CONTROL (ch) || ch == C0_LF || ch == C0_CR || ch == C0_HT) 2237 if (ecb_likely (!IS_CONTROL (ch) || ch == C0_LF || ch == C0_CR || ch == C0_HT))
2702 { 2238 {
2703 if (!seen_input) 2239 if (ecb_unlikely (!seen_input))
2704 { 2240 {
2705 seen_input = 1; 2241 seen_input = 1;
2706 // many badly-written programs (e.g. jed) contain a race condition: 2242 // many badly-written programs (e.g. jed) contain a race condition:
2707 // they first read the screensize and then install a SIGWINCH handler. 2243 // they first read the screensize and then install a SIGWINCH handler.
2708 // some window managers resize the window early, and these programs 2244 // some window managers resize the window early, and these programs
2721 wchar_t *str = buf; 2257 wchar_t *str = buf;
2722 wchar_t *eol = str + min (ncol, UBUFSIZ); 2258 wchar_t *eol = str + min (ncol, UBUFSIZ);
2723 2259
2724 for (;;) 2260 for (;;)
2725 { 2261 {
2726 if (ch == NOCHAR || (IS_CONTROL (ch) && ch != C0_LF && ch != C0_CR && ch != C0_HT)) 2262 if (ecb_unlikely (ch == NOCHAR || (IS_CONTROL (ch) && ch != C0_LF && ch != C0_CR && ch != C0_HT)))
2727 break; 2263 break;
2728 2264
2729 *str++ = ch; 2265 *str++ = ch;
2730 2266
2731 if (ch == C0_LF || str >= eol) 2267 if (ecb_unlikely (ch == C0_LF || str >= eol))
2732 { 2268 {
2733 if (ch == C0_LF) 2269 if (ch == C0_LF)
2734 nlines++; 2270 nlines++;
2735 2271
2736 refresh_count++; 2272 refresh_count++;
2737 2273
2738 if (!OPTION (Opt_jumpScroll) 2274 if (!option (Opt_jumpScroll) || refresh_count >= nrow - 1)
2739 || (refresh_count >= refresh_limit * (nrow - 1)))
2740 { 2275 {
2741 refreshnow = true;
2742 refresh_count = 0; 2276 refresh_count = 0;
2277
2278 if (!option (Opt_skipScroll) || ev_time () > ev::now () + 1. / 60.)
2279 {
2280 refreshnow = true;
2743 ch = NOCHAR; 2281 ch = NOCHAR;
2744 break; 2282 break;
2283 }
2745 } 2284 }
2746 2285
2747 // scr_add_lines only works for nlines <= nrow - 1. 2286 // scr_add_lines only works for nlines <= nrow - 1.
2748 if (nlines >= nrow - 1) 2287 if (nlines >= nrow - 1)
2749 { 2288 {
2777 && HOOK_INVOKE ((this, HOOK_ADD_LINES, DT_WCS_LEN, buf, str - buf, DT_END)))) 2316 && HOOK_INVOKE ((this, HOOK_ADD_LINES, DT_WCS_LEN, buf, str - buf, DT_END))))
2778 scr_add_lines (buf, str - buf, nlines); 2317 scr_add_lines (buf, str - buf, nlines);
2779 2318
2780 /* 2319 /*
2781 * If there have been a lot of new lines, then update the screen 2320 * If there have been a lot of new lines, then update the screen
2782 * What the heck I'll cheat and only refresh less than every page-full. 2321 * What the heck we'll cheat and only refresh less than every page-full.
2783 * the number of pages between refreshes is refresh_limit, which 2322 * if skipScroll is enabled.
2784 * is incremented here because we must be doing flat-out scrolling.
2785 */ 2323 */
2786 if (refreshnow) 2324 if (refreshnow)
2787 { 2325 {
2788 if (OPTION (Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD)
2789 refresh_limit++;
2790 else
2791 {
2792 flag = true;
2793 //TODO: due to popular request, implement "skipscroll" option here
2794 scr_refresh (); 2326 scr_refresh ();
2795 want_refresh = 1; 2327 want_refresh = 1;
2796 }
2797 } 2328 }
2798
2799 } 2329 }
2800 else 2330 else
2801 { 2331 {
2802 try 2332 try
2803 { 2333 {
2811 } 2341 }
2812 2342
2813 ch = NOCHAR; 2343 ch = NOCHAR;
2814 } 2344 }
2815 } 2345 }
2816
2817 return flag;
2818} 2346}
2819 2347
2820// read the next character 2348// read the next character
2821wchar_t 2349wchar_t ecb_hot
2822rxvt_term::next_char () NOTHROW 2350rxvt_term::next_char () NOTHROW
2823{ 2351{
2824 while (cmdbuf_ptr < cmdbuf_endp) 2352 while (cmdbuf_ptr < cmdbuf_endp)
2825 { 2353 {
2826 // assume 7-bit to be ascii ALWAYS 2354 // assume 7-bit to be ascii ALWAYS
2827 if ((unsigned char)*cmdbuf_ptr <= 0x7f && *cmdbuf_ptr != 0x1b) 2355 if (ecb_likely ((unsigned char)*cmdbuf_ptr <= 0x7f && *cmdbuf_ptr != 0x1b))
2828 return *cmdbuf_ptr++; 2356 return *cmdbuf_ptr++;
2829 2357
2830 wchar_t wc; 2358 wchar_t wc;
2831 size_t len = mbrtowc (&wc, cmdbuf_ptr, cmdbuf_endp - cmdbuf_ptr, mbstate); 2359 size_t len = mbrtowc (&wc, cmdbuf_ptr, cmdbuf_endp - cmdbuf_ptr, mbstate);
2832 2360
2836 cmdbuf_ptr = cmdbuf_endp; 2364 cmdbuf_ptr = cmdbuf_endp;
2837 break; 2365 break;
2838 } 2366 }
2839 2367
2840 if (len == (size_t)-1) 2368 if (len == (size_t)-1)
2369 {
2370 mbstate.reset (); // reset now undefined conversion state
2841 return (unsigned char)*cmdbuf_ptr++; // the _occasional_ latin1 character is allowed to slip through 2371 return (unsigned char)*cmdbuf_ptr++; // the _occasional_ latin1 character is allowed to slip through
2372 }
2842 2373
2843 // assume wchar == unicode 2374 // assume wchar == unicode
2844 cmdbuf_ptr += len; 2375 cmdbuf_ptr += len;
2845 return wc & UNICODE_MASK; 2376 return wc & UNICODE_MASK;
2846 } 2377 }
2847 2378
2848 return NOCHAR; 2379 return NOCHAR;
2849} 2380}
2850 2381
2851// read the next octet 2382// read the next octet
2852uint32_t 2383uint32_t ecb_hot
2853rxvt_term::next_octet () NOTHROW 2384rxvt_term::next_octet () NOTHROW
2854{ 2385{
2855 return cmdbuf_ptr < cmdbuf_endp 2386 return cmdbuf_ptr < cmdbuf_endp
2856 ? (unsigned char)*cmdbuf_ptr++ 2387 ? (unsigned char)*cmdbuf_ptr++
2857 : NOCHAR; 2388 : NOCHAR;
2858} 2389}
2859 2390
2860static class out_of_input out_of_input; 2391static class out_of_input out_of_input;
2861 2392
2862/* rxvt_cmd_getc () - Return next input character */ 2393wchar_t ecb_hot
2863/*
2864 * Return the next input character after first passing any keyboard input
2865 * to the command.
2866 */
2867wchar_t
2868rxvt_term::cmd_getc () THROW ((class out_of_input)) 2394rxvt_term::cmd_getc () THROW ((class out_of_input))
2869{ 2395{
2870 wchar_t c = next_char (); 2396 wchar_t c = next_char ();
2871 2397
2872 if (c == NOCHAR) 2398 if (c == NOCHAR)
2873 throw out_of_input; 2399 throw out_of_input;
2874 2400
2875 return c; 2401 return c;
2876} 2402}
2877 2403
2878uint32_t 2404uint32_t ecb_hot
2879rxvt_term::cmd_get8 () THROW ((class out_of_input)) 2405rxvt_term::cmd_get8 () THROW ((class out_of_input))
2880{ 2406{
2881 uint32_t c = next_octet (); 2407 uint32_t c = next_octet ();
2882 2408
2883 if (c == NOCHAR) 2409 if (c == NOCHAR)
2887} 2413}
2888 2414
2889/*{{{ print pipe */ 2415/*{{{ print pipe */
2890/*----------------------------------------------------------------------*/ 2416/*----------------------------------------------------------------------*/
2891#ifdef PRINTPIPE 2417#ifdef PRINTPIPE
2892FILE * 2418FILE * ecb_cold
2893rxvt_term::popen_printer () 2419rxvt_term::popen_printer ()
2894{ 2420{
2895 FILE *stream = popen (rs[Rs_print_pipe], "w"); 2421 FILE *stream = popen (rs[Rs_print_pipe] ? rs[Rs_print_pipe] : PRINTPIPE, "w");
2896 2422
2897 if (stream == NULL) 2423 if (stream == NULL)
2898 rxvt_warn ("can't open printer pipe, not printing.\n"); 2424 rxvt_warn ("can't open printer pipe, not printing.\n");
2899 2425
2900 return stream; 2426 return stream;
2901} 2427}
2902 2428
2903int 2429int ecb_cold
2904rxvt_term::pclose_printer (FILE *stream) 2430rxvt_term::pclose_printer (FILE *stream)
2905{ 2431{
2906 fflush (stream); 2432 fflush (stream);
2907 return pclose (stream); 2433 return pclose (stream);
2908} 2434}
2909 2435
2910/* 2436/*
2911 * simulate attached vt100 printer 2437 * simulate attached vt100 printer
2912 */ 2438 */
2913void 2439void ecb_cold
2914rxvt_term::process_print_pipe () 2440rxvt_term::process_print_pipe ()
2915{ 2441{
2916 int done; 2442 FILE *fd = popen_printer ();
2917 FILE *fd;
2918 2443
2919 if ((fd = popen_printer ()) == NULL) 2444 if (!fd)
2920 return; 2445 return;
2921 2446
2922 /* 2447 /*
2923 * Send all input to the printer until either ESC[4i or ESC[?4i 2448 * Send all input to the printer until either ESC[4i or ESC[?4i
2924 * is received. 2449 * is received.
2925 */ 2450 */
2926 for (done = 0; !done;) 2451 for (int done = 0; !done; )
2927 { 2452 {
2928 unsigned char buf[8]; 2453 unsigned char buf[8];
2929 unicode_t ch; 2454 unicode_t ch;
2930 unsigned int i, len; 2455 unsigned int i, len;
2931 2456
2950 { 2475 {
2951 if ((buf[len++] = cmd_getc ()) == 'i') 2476 if ((buf[len++] = cmd_getc ()) == 'i')
2952 break; /* done = 1 */ 2477 break; /* done = 1 */
2953 } 2478 }
2954 } 2479 }
2955 2480
2956 for (i = 0; i < len; i++) 2481 for (i = 0; i < len; i++)
2957 if (putc (buf[i], fd) == EOF) 2482 if (putc (buf[i], fd) == EOF)
2958 { 2483 {
2959 done = 1; 2484 done = 1;
2960 break; 2485 break;
2962 } 2487 }
2963 } 2488 }
2964 2489
2965 pclose_printer (fd); 2490 pclose_printer (fd);
2966} 2491}
2967#endif /* PRINTPIPE */ 2492#endif /* PRINTPIPE */
2968/*}}} */ 2493/*}}} */
2969 2494
2970/* *INDENT-OFF* */
2971enum { 2495enum {
2972 C1_40 = 0x40, 2496 C1_40 = 0x40,
2973 C1_41 , C1_BPH, C1_NBH, C1_44 , C1_NEL, C1_SSA, C1_ESA, 2497 C1_41 , C1_BPH, C1_NBH, C1_44 , C1_NEL, C1_SSA, C1_ESA,
2974 C1_HTS, C1_HTJ, C1_VTS, C1_PLD, C1_PLU, C1_RI , C1_SS2, C1_SS3, 2498 C1_HTS, C1_HTJ, C1_VTS, C1_PLD, C1_PLU, C1_RI , C1_SS2, C1_SS3,
2975 C1_DCS, C1_PU1, C1_PU2, C1_STS, C1_CCH, C1_MW , C1_SPA, C1_EPA, 2499 C1_DCS, C1_PU1, C1_PU2, C1_STS, C1_CCH, C1_MW , C1_SPA, C1_EPA,
2976 C1_SOS, C1_59 , C1_SCI, C1_CSI, CS_ST , C1_OSC, C1_PM , C1_APC, 2500 C1_SOS, C1_59 , C1_SCI, C1_CSI, CS_ST , C1_OSC, C1_PM , C1_APC,
2977}; 2501};
2978/* *INDENT-ON* */
2979 2502
2980/*{{{ process non-printing single characters */ 2503/*{{{ process non-printing single characters */
2981void 2504void ecb_hot
2982rxvt_term::process_nonprinting (unicode_t ch) 2505rxvt_term::process_nonprinting (unicode_t ch)
2983{ 2506{
2984 switch (ch) 2507 switch (ch)
2985 { 2508 {
2986 case C0_ESC: 2509 case C0_ESC:
3022 process_dcs_seq (); 2545 process_dcs_seq ();
3023 break; 2546 break;
3024 case 0x9b: /* CSI */ 2547 case 0x9b: /* CSI */
3025 process_csi_seq (); 2548 process_csi_seq ();
3026 break; 2549 break;
3027 case 0x9d: /* CSI */ 2550 case 0x9d: /* OSC */
3028 process_osc_seq (); 2551 process_osc_seq ();
3029 break; 2552 break;
3030#endif 2553#endif
3031 } 2554 }
3032} 2555}
3033/*}}} */ 2556/*}}} */
3034 2557
3035 2558
3036/*{{{ process VT52 escape sequences */ 2559/*{{{ process VT52 escape sequences */
3037void 2560void ecb_cold
3038rxvt_term::process_escape_vt52 (unicode_t ch) 2561rxvt_term::process_escape_vt52 (unicode_t ch)
3039{ 2562{
3040 int row, col; 2563 int row, col;
3041 2564
3042 switch (ch) 2565 switch (ch)
3076 break; 2599 break;
3077 case 'Z': /* identify the terminal type */ 2600 case 'Z': /* identify the terminal type */
3078 tt_printf ("\033/Z"); /* I am a VT100 emulating a VT52 */ 2601 tt_printf ("\033/Z"); /* I am a VT100 emulating a VT52 */
3079 break; 2602 break;
3080 case '<': /* turn off VT52 mode */ 2603 case '<': /* turn off VT52 mode */
3081 PrivMode (0, PrivMode_vt52); 2604 priv_modes &= ~PrivMode_vt52;
3082 break; 2605 break;
3083 case 'F': /* use special graphics character set */ 2606 case 'F': /* use special graphics character set */
3084 case 'G': /* use regular character set */ 2607 case 'G': /* use regular character set */
3085 /* unimplemented */ 2608 /* unimplemented */
3086 break; 2609 break;
3092} 2615}
3093/*}}} */ 2616/*}}} */
3094 2617
3095 2618
3096/*{{{ process escape sequences */ 2619/*{{{ process escape sequences */
3097void 2620void ecb_hot
3098rxvt_term::process_escape_seq () 2621rxvt_term::process_escape_seq ()
3099{ 2622{
3100 unicode_t ch = cmd_getc (); 2623 unicode_t ch = cmd_getc ();
3101 2624
3102 if (priv_modes & PrivMode_vt52) 2625 if (priv_modes & PrivMode_vt52)
3105 return; 2628 return;
3106 } 2629 }
3107 2630
3108 switch (ch) 2631 switch (ch)
3109 { 2632 {
3110 /* case 1: do_tek_mode (); break; */
3111 case '#': 2633 case '#':
3112 if (cmd_getc () == '8') 2634 if (cmd_getc () == '8')
3113 scr_E (); 2635 scr_E ();
3114 break; 2636 break;
3115 case '(': 2637 case '(':
3138#if !ENABLE_MINIMAL 2660#if !ENABLE_MINIMAL
3139 case '9': 2661 case '9':
3140 scr_forwardindex (); 2662 scr_forwardindex ();
3141 break; 2663 break;
3142#endif 2664#endif
2665 // DECPAM/DECPNM
3143 case '=': 2666 case '=':
2667 priv_modes |= PrivMode_aplKP;
2668 break;
3144 case '>': 2669 case '>':
3145 PrivMode ((ch == '='), PrivMode_aplKP); 2670 priv_modes &= ~PrivMode_aplKP;
3146 break; 2671 break;
3147 2672
3148 case C1_40: 2673 case C1_40:
3149 cmd_getc (); 2674 cmd_getc ();
3150 break; 2675 break;
3154 2679
3155 /* 8.3.87: NEXT LINE */ 2680 /* 8.3.87: NEXT LINE */
3156 case C1_NEL: /* ESC E */ 2681 case C1_NEL: /* ESC E */
3157 { 2682 {
3158 wchar_t nlcr[] = { C0_LF, C0_CR }; 2683 wchar_t nlcr[] = { C0_LF, C0_CR };
3159 scr_add_lines (nlcr, sizeof (nlcr) / sizeof (nlcr [0]), 1); 2684 scr_add_lines (nlcr, ecb_array_length (nlcr), 1);
3160 } 2685 }
3161 break; 2686 break;
3162 2687
3163 /* kidnapped escape sequence: Should be 8.3.48 */ 2688 /* kidnapped escape sequence: Should be 8.3.48 */
3164 case C1_ESA: /* ESC G */ 2689 case C1_ESA: /* ESC G */
3165 process_graphics (); 2690 // used by original rxvt for rob nations own graphics mode
2691 if (cmd_getc () == 'Q')
2692 tt_printf ("\033G0\012"); /* query graphics - no graphics */
3166 break; 2693 break;
3167 2694
3168 /* 8.3.63: CHARACTER TABULATION SET */ 2695 /* 8.3.63: CHARACTER TABULATION SET */
3169 case C1_HTS: /* ESC H */ 2696 case C1_HTS: /* ESC H */
3170 scr_set_tab (1); 2697 scr_set_tab (1);
3174 case C1_RI: /* ESC M */ 2701 case C1_RI: /* ESC M */
3175 scr_index (DN); 2702 scr_index (DN);
3176 break; 2703 break;
3177 2704
3178 /* 8.3.142: SINGLE-SHIFT TWO */ 2705 /* 8.3.142: SINGLE-SHIFT TWO */
3179 /*case C1_SS2: scr_single_shift (2); break; */ 2706 /* case C1_SS2: break; */
3180 2707
3181 /* 8.3.143: SINGLE-SHIFT THREE */ 2708 /* 8.3.143: SINGLE-SHIFT THREE */
3182 /*case C1_SS3: scr_single_shift (3); break; */ 2709 /* case C1_SS3: break; */
3183 2710
3184 /* 8.3.27: DEVICE CONTROL STRING */ 2711 /* 8.3.27: DEVICE CONTROL STRING */
3185 case C1_DCS: /* ESC P */ 2712 case C1_DCS: /* ESC P */
3186 process_dcs_seq (); 2713 process_dcs_seq ();
3187 break; 2714 break;
3189 /* 8.3.110: SINGLE CHARACTER INTRODUCER */ 2716 /* 8.3.110: SINGLE CHARACTER INTRODUCER */
3190 case C1_SCI: /* ESC Z */ 2717 case C1_SCI: /* ESC Z */
3191 tt_write (ESCZ_ANSWER, sizeof (ESCZ_ANSWER) - 1); 2718 tt_write (ESCZ_ANSWER, sizeof (ESCZ_ANSWER) - 1);
3192 break; /* steal obsolete ESC [ c */ 2719 break; /* steal obsolete ESC [ c */
3193 2720
3194 /* 8.3.16: CONTROL SEQUENCE INTRODUCER */ 2721 /* 8.3.16: CONTROL SEQUENCE INTRODUCER (CSI) */
3195 case C1_CSI: /* ESC [ */ 2722 case C1_CSI: /* ESC [ */
3196 process_csi_seq (); 2723 process_csi_seq ();
3197 break; 2724 break;
3198 2725
3199 /* 8.3.90: OPERATING SYSTEM COMMAND */ 2726 /* 8.3.90: OPERATING SYSTEM COMMAND (OSC) */
3200 case C1_OSC: /* ESC ] */ 2727 case C1_OSC: /* ESC ] */
3201 process_osc_seq (); 2728 process_osc_seq ();
3202 break; 2729 break;
3203 2730
3204 /* 8.3.106: RESET TO INITIAL STATE */ 2731 /* 8.3.106: RESET TO INITIAL STATE (RIS) */
3205 case 'c': 2732 case 'c':
3206 mbstate.reset (); 2733 mbstate.reset ();
3207 scr_poweron (); 2734 scr_poweron ();
3208 scrollbar_show (1); 2735 scrollBar.show (1);
3209 break; 2736 break;
3210 2737
3211 /* 8.3.79: LOCKING-SHIFT TWO (see ISO2022) */ 2738 /* 8.3.79: LOCKING-SHIFT TWO (see ISO2022) */
3212 case 'n': 2739 case 'n':
3213 scr_charset_choose (2); 2740 scr_charset_choose (2);
3220 } 2747 }
3221} 2748}
3222/*}}} */ 2749/*}}} */
3223 2750
3224/*{{{ process CONTROL SEQUENCE INTRODUCER (CSI) sequences `ESC[' */ 2751/*{{{ process CONTROL SEQUENCE INTRODUCER (CSI) sequences `ESC[' */
3225/* *INDENT-OFF* */
3226enum { 2752enum {
3227 CSI_ICH = 0x40, 2753 CSI_ICH = 0x40,
3228 CSI_CUU, CSI_CUD, CSI_CUF, CSI_CUB, CSI_CNL, CSI_CPL, CSI_CHA, 2754 CSI_CUU, CSI_CUD, CSI_CUF, CSI_CUB, CSI_CNL, CSI_CPL, CSI_CHA,
3229 CSI_CUP, CSI_CHT, CSI_ED , CSI_EL , CSI_IL , CSI_DL , CSI_EF , CSI_EA , 2755 CSI_CUP, CSI_CHT, CSI_ED , CSI_EL , CSI_IL , CSI_DL , CSI_EF , CSI_EA ,
3230 CSI_DCH, CSI_SEE, CSI_CPR, CSI_SU , CSI_SD , CSI_NP , CSI_PP , CSI_CTC, 2756 CSI_DCH, CSI_SEE, CSI_CPR, CSI_SU , CSI_SD , CSI_NP , CSI_PP , CSI_CTC,
3233 CSI_SM , CSI_MC , CSI_HPB, CSI_VPB, CSI_RM , CSI_SGR, CSI_DSR, CSI_DAQ, 2759 CSI_SM , CSI_MC , CSI_HPB, CSI_VPB, CSI_RM , CSI_SGR, CSI_DSR, CSI_DAQ,
3234 CSI_70 , CSI_71 , CSI_72 , CSI_73 , CSI_74 , CSI_75 , CSI_76 , CSI_77 , 2760 CSI_70 , CSI_71 , CSI_72 , CSI_73 , CSI_74 , CSI_75 , CSI_76 , CSI_77 ,
3235 CSI_78 , CSI_79 , CSI_7A , CSI_7B , CSI_7C , CSI_7D , CSI_7E , CSI_7F 2761 CSI_78 , CSI_79 , CSI_7A , CSI_7B , CSI_7C , CSI_7D , CSI_7E , CSI_7F
3236}; 2762};
3237 2763
3238#define make_byte(b7,b6,b5,b4,b3,b2,b1,b0) \ 2764#define make_byte(b0,b1,b2,b3,b4,b5,b6,b7) \
3239 (((b7) << 7) | ((b6) << 6) | ((b5) << 5) | ((b4) << 4) \ 2765 (((b7) << 7) | ((b6) << 6) | ((b5) << 5) | ((b4) << 4) \
3240 | ((b3) << 3) | ((b2) << 2) | ((b1) << 1) | (b0)) 2766 | ((b3) << 3) | ((b2) << 2) | ((b1) << 1) | (b0))
3241#define get_byte_array_bit(array, bit) \ 2767#define get_byte_array_bit(array, bit) \
3242 (!! ((array)[ (bit) / 8] & (128 >> ((bit) & 7)))) 2768 (!! ((array)[(bit) >> 3] & (1 << ((bit) & 7))))
3243 2769
3244const unsigned char csi_defaults[] = 2770static const unsigned char csi_defaults[] =
3245 { 2771 {
3246 make_byte (1,1,1,1,1,1,1,1), /* @, A, B, C, D, E, F, G, */ 2772 make_byte (1,1,1,1,1,1,1,1), /* @, A, B, C, D, E, F, G, */
3247 make_byte (1,1,0,0,1,1,0,0), /* H, I, J, K, L, M, N, O, */ 2773 make_byte (1,1,0,0,1,1,0,0), /* H, I, J, K, L, M, N, O, */
3248 make_byte (1,0,1,1,1,1,1,0), /* P, Q, R, S, T, U, V, W, */ 2774 make_byte (1,0,1,1,1,1,1,0), /* P, Q, R, S, T, U, V, W, */
3249 make_byte (1,1,1,0,0,0,1,0), /* X, Y, Z, [, \, ], ^, _, */ 2775 make_byte (1,1,1,0,0,0,1,0), /* X, Y, Z, [, \, ], ^, _, */
3250 make_byte (1,1,1,0,1,1,1,0), /* `, a, b, c, d, e, f, g, */ 2776 make_byte (1,1,1,0,1,1,1,0), /* `, a, b, c, d, e, f, g, */
3251 make_byte (0,0,1,1,0,0,0,0), /* h, i, j, k, l, m, n, o, */ 2777 make_byte (0,0,1,1,0,0,0,0), /* h, i, j, k, l, m, n, o, */
3252 make_byte (0,0,0,0,0,0,0,0), /* p, q, r, s, t, u, v, w, */ 2778 make_byte (0,0,0,0,0,0,0,0), /* p, q, r, s, t, u, v, w, */
3253 make_byte (0,0,0,0,0,0,0,0), /* x, y, z, {, |, }, ~, */ 2779 make_byte (0,0,0,0,0,0,0,0), /* x, y, z, {, |, }, ~, */
3254 }; 2780 };
3255/* *INDENT-ON* */
3256 2781
3257void 2782void ecb_hot
3258rxvt_term::process_csi_seq () 2783rxvt_term::process_csi_seq ()
3259{ 2784{
3260 unicode_t ch, priv, i; 2785 unicode_t ch, priv, i;
3261 unsigned int nargs, p; 2786 unsigned int nargs, p;
3262 int n, ndef; 2787 int n, ndef;
3263 int arg[ESC_ARGS]; 2788 int arg[ESC_ARGS] = { };
3264 2789
3265 for (nargs = ESC_ARGS; nargs > 0;) 2790 nargs = 0;
3266 arg[--nargs] = 0;
3267 2791
3268 priv = 0; 2792 priv = 0;
3269 ch = cmd_getc (); 2793 ch = cmd_getc ();
3270 if (ch >= '<' && ch <= '?') 2794 if ((ch >= '<' && ch <= '?') || ch == '!')
2795 {
3271 { /* '<' '=' '>' '?' */ 2796 /* '<' '=' '>' '?' '!' */
3272 priv = ch; 2797 priv = ch;
3273 ch = cmd_getc (); 2798 ch = cmd_getc ();
3274 } 2799 }
3275 2800
3276 /* read any numerical arguments */ 2801 /* read any numerical arguments */
3315 switch (priv) 2840 switch (priv)
3316 { 2841 {
3317 case '>': 2842 case '>':
3318 if (ch == CSI_DA) /* secondary device attributes */ 2843 if (ch == CSI_DA) /* secondary device attributes */
3319 { 2844 {
3320 // first parameter is normally 0 for vt100, 1 for some newer vtxxx, 'R' for rxvt, 2845 // first parameter is normally 0 for vt100, 1 for vt220, 'R' for rxvt,
3321 // 'U' for rxvt-unicode != 7.[34] (where it was broken). 2846 // 'U' for rxvt-unicode != 7.[34] (where it was broken).
3322 // 2847 //
3323 // second parameter is xterm patch level for xterm, MMmmpp (e.g. 20703) for rxvt 2848 // second parameter is xterm patch level for xterm, MMmmpp (e.g. 20703) for rxvt
3324 // and Mm (e.g. 72 for 7.2) for urxvt <= 7.2, and 94 for later versions, to signify 2849 // and Mm (e.g. 72 for 7.2) for urxvt <= 7.2, 94 for urxvt <= 8.3, and 95 for later
3325 // that we do not support xterm mouse reporting (should be 95 when we do). 2850 // versions.
3326 // 2851 //
3327 tt_printf ("\033[>%d;94;0c", 'U'); 2852 tt_printf ("\033[>%d;95;0c", 'U');
3328 } 2853 }
3329 break; 2854 break;
2855
3330 case '?': 2856 case '?':
3331 if (ch == 'h' || ch == 'l' || ch == 'r' || ch == 's' || ch == 't') 2857 if (ch == 'h' || ch == 'l' || ch == 'r' || ch == 's' || ch == 't')
3332 process_terminal_mode (ch, priv, nargs, arg); 2858 process_terminal_mode (ch, priv, nargs, arg);
3333 break; 2859 break;
2860
2861 case '!':
2862 if (ch == CSI_70)
2863 {
2864 /* DECSTR: soft terminal reset, used by our terminfo since 9.06 */
2865 scr_soft_reset ();
2866
2867 static const int pm_h[] = { 7, 25 };
2868 static const int pm_l[] = { 1, 3, 4, 5, 6, 9, 66, 1000, 1001, 1005, 1015, 1049 };
2869
2870 process_terminal_mode ('h', 0, ecb_array_length (pm_h), pm_h);
2871 process_terminal_mode ('l', 0, ecb_array_length (pm_l), pm_l);
3334 } 2872 }
2873 break;
2874 }
2875
3335 return; 2876 return;
3336 } 2877 }
3337 2878
3338 switch (ch) 2879 switch (ch)
3339 { 2880 {
3353 } 2894 }
3354 break; 2895 break;
3355#endif 2896#endif
3356 2897
3357 case CSI_CUU: /* 8.3.22: (1) CURSOR UP */ 2898 case CSI_CUU: /* 8.3.22: (1) CURSOR UP */
3358 case CSI_VPR: /* 8.3.161: (1) LINE POSITION FORWARD */ 2899 case CSI_VPB: /* 8.3.160: (1) LINE POSITION BACKWARD */
3359 arg[0] = -arg[0]; 2900 arg[0] = -arg[0];
3360 /* FALLTHROUGH */ 2901 /* FALLTHROUGH */
3361 case CSI_CUD: /* 8.3.19: (1) CURSOR DOWN */ 2902 case CSI_CUD: /* 8.3.19: (1) CURSOR DOWN */
3362 case CSI_VPB: /* 8.3.160: (1) LINE POSITION BACKWARD */ 2903 case CSI_VPR: /* 8.3.161: (1) LINE POSITION FORWARD */
3363 scr_gotorc (arg[0], 0, RELATIVE); 2904 scr_gotorc (arg[0], 0, RELATIVE);
3364 break; 2905 break;
3365 2906
3366 case CSI_CUB: /* 8.3.18: (1) CURSOR LEFT */ 2907 case CSI_CUB: /* 8.3.18: (1) CURSOR LEFT */
3367 case CSI_HPB: /* 8.3.59: (1) CHARACTER POSITION BACKWARD */ 2908 case CSI_HPB: /* 8.3.59: (1) CHARACTER POSITION BACKWARD */
3459 break; 3000 break;
3460 case 6: /* CPR requested */ 3001 case 6: /* CPR requested */
3461 scr_report_position (); 3002 scr_report_position ();
3462 break; 3003 break;
3463 case 7: /* unofficial extension */ 3004 case 7: /* unofficial extension */
3464 if (OPTION (Opt_insecure)) 3005 if (option (Opt_insecure))
3465 tt_printf ("%-.250s\012", rs[Rs_display_name]); 3006 tt_printf ("%-.250s\012", rs[Rs_display_name]);
3466 break; 3007 break;
3467 case 8: /* unofficial extension */ 3008 case 8: /* unofficial extension */
3468 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST); 3009 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST);
3469 break; 3010 break;
3554 } 3095 }
3555} 3096}
3556/*}}} */ 3097/*}}} */
3557 3098
3558#if !ENABLE_MINIMAL 3099#if !ENABLE_MINIMAL
3559/* ARGSUSED */
3560void 3100void
3561rxvt_term::process_window_ops (const int *args, unsigned int nargs) 3101rxvt_term::process_window_ops (const int *args, unsigned int nargs)
3562{ 3102{
3563 int x, y; 3103 int x, y;
3564 XWindowAttributes wattr; 3104 XWindowAttributes wattr;
3573 { 3113 {
3574 /* 3114 /*
3575 * commands 3115 * commands
3576 */ 3116 */
3577 case 1: /* deiconify window */ 3117 case 1: /* deiconify window */
3578 XMapWindow (dpy, parent[0]); 3118 XMapWindow (dpy, parent);
3579 break; 3119 break;
3580 case 2: /* iconify window */ 3120 case 2: /* iconify window */
3581 XIconifyWindow (dpy, parent[0], display->screen); 3121 XIconifyWindow (dpy, parent, display->screen);
3582 break; 3122 break;
3583 case 3: /* set position (pixels) */ 3123 case 3: /* set position (pixels) */
3584 XMoveWindow (dpy, parent[0], args[1], args[2]); 3124 XMoveWindow (dpy, parent, args[1], args[2]);
3585 break; 3125 break;
3586 case 4: /* set size (pixels) */ 3126 case 4: /* set size (pixels) */
3587 set_widthheight ((unsigned int)args[2], (unsigned int)args[1]); 3127 set_widthheight ((unsigned int)args[2], (unsigned int)args[1]);
3588 break; 3128 break;
3589 case 5: /* raise window */ 3129 case 5: /* raise window */
3590 XRaiseWindow (dpy, parent[0]); 3130 XRaiseWindow (dpy, parent);
3591 break; 3131 break;
3592 case 6: /* lower window */ 3132 case 6: /* lower window */
3593 XLowerWindow (dpy, parent[0]); 3133 XLowerWindow (dpy, parent);
3594 break; 3134 break;
3595 case 7: /* refresh window */ 3135 case 7: /* refresh window */
3596 scr_touch (true); 3136 scr_touch (true);
3597 break; 3137 break;
3598 case 8: /* set size (chars) */ 3138 case 8: /* set size (chars) */
3601 break; 3141 break;
3602 3142
3603 //case 9: NYI, TODO, restore maximized window or maximize window 3143 //case 9: NYI, TODO, restore maximized window or maximize window
3604 default: 3144 default:
3605 if (args[0] >= 24) /* set height (chars) */ 3145 if (args[0] >= 24) /* set height (chars) */
3606 set_widthheight ((unsigned int)width, 3146 set_widthheight ((unsigned int)vt_width,
3607 (unsigned int) (args[1] * fheight)); 3147 (unsigned int) (args[1] * fheight));
3608 break; 3148 break;
3609 3149
3610 /* 3150 /*
3611 * reports - some output format copied from XTerm 3151 * reports - some output format copied from XTerm
3612 */ 3152 */
3613 case 11: /* report window state */ 3153 case 11: /* report window state */
3614 XGetWindowAttributes (dpy, parent[0], &wattr); 3154 XGetWindowAttributes (dpy, parent, &wattr);
3615 tt_printf ("\033[%dt", wattr.map_state == IsViewable ? 1 : 2); 3155 tt_printf ("\033[%dt", wattr.map_state == IsViewable ? 1 : 2);
3616 break; 3156 break;
3617 case 13: /* report window position */ 3157 case 13: /* report window position */
3618 XGetWindowAttributes (dpy, parent[0], &wattr); 3158 XGetWindowAttributes (dpy, parent, &wattr);
3619 XTranslateCoordinates (dpy, parent[0], wattr.root, 3159 XTranslateCoordinates (dpy, parent, wattr.root,
3620 -wattr.border_width, -wattr.border_width, 3160 -wattr.border_width, -wattr.border_width,
3621 &x, &y, &wdummy); 3161 &x, &y, &wdummy);
3622 tt_printf ("\033[3;%d;%dt", x, y); 3162 tt_printf ("\033[3;%d;%dt", x, y);
3623 break; 3163 break;
3624 case 14: /* report window size (pixels) */ 3164 case 14: /* report window size (pixels) */
3625 XGetWindowAttributes (dpy, parent[0], &wattr); 3165 XGetWindowAttributes (dpy, parent, &wattr);
3626 tt_printf ("\033[4;%d;%dt", wattr.height, wattr.width); 3166 tt_printf ("\033[4;%d;%dt", wattr.height, wattr.width);
3627 break; 3167 break;
3628 case 18: /* report text area size (chars) */ 3168 case 18: /* report text area size (chars) */
3629 tt_printf ("\033[8;%d;%dt", nrow, ncol); 3169 tt_printf ("\033[8;%d;%dt", nrow, ncol);
3630 break; 3170 break;
3632 tt_printf ("\033[9;%d;%dt", nrow, ncol); 3172 tt_printf ("\033[9;%d;%dt", nrow, ncol);
3633 break; 3173 break;
3634 case 20: /* report icon label */ 3174 case 20: /* report icon label */
3635 { 3175 {
3636 char *s; 3176 char *s;
3637 XGetIconName (dpy, parent[0], &s); 3177 XGetIconName (dpy, parent, &s);
3638 tt_printf ("\033]L%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */ 3178 tt_printf ("\033]L%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */
3639 XFree (s); 3179 XFree (s);
3640 } 3180 }
3641 break; 3181 break;
3642 case 21: /* report window title */ 3182 case 21: /* report window title */
3643 { 3183 {
3644 char *s; 3184 char *s;
3645 XFetchName (dpy, parent[0], &s); 3185 XFetchName (dpy, parent, &s);
3646 tt_printf ("\033]l%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */ 3186 tt_printf ("\033]l%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */
3647 XFree (s); 3187 XFree (s);
3648 } 3188 }
3649 break; 3189 break;
3650 } 3190 }
3651} 3191}
3706 * process DEVICE CONTROL STRING `ESC P ... (ST|BEL)' or `0x90 ... (ST|BEL)' 3246 * process DEVICE CONTROL STRING `ESC P ... (ST|BEL)' or `0x90 ... (ST|BEL)'
3707 */ 3247 */
3708void 3248void
3709rxvt_term::process_dcs_seq () 3249rxvt_term::process_dcs_seq ()
3710{ 3250{
3711 char *s;
3712 unicode_t eh;
3713
3714 /* 3251 /*
3715 * Not handled yet 3252 * Not handled yet
3716 */ 3253 */
3254
3255 unicode_t eh;
3717 s = get_to_st (eh); 3256 char *s = get_to_st (eh);
3718 if (s) 3257 if (s)
3719 free (s); 3258 free (s);
3720 3259
3721 return; 3260 return;
3722} 3261}
3726 * process OPERATING SYSTEM COMMAND sequence `ESC ] Ps ; Pt (ST|BEL)' 3265 * process OPERATING SYSTEM COMMAND sequence `ESC ] Ps ; Pt (ST|BEL)'
3727 */ 3266 */
3728void 3267void
3729rxvt_term::process_osc_seq () 3268rxvt_term::process_osc_seq ()
3730{ 3269{
3731 unicode_t ch, eh;
3732 int arg; 3270 int arg;
3733 3271
3734 ch = cmd_getc (); 3272 unicode_t ch = cmd_getc ();
3735 for (arg = 0; isdigit (ch); ch = cmd_getc ()) 3273 for (arg = 0; isdigit (ch); ch = cmd_getc ())
3736 arg = arg * 10 + (ch - '0'); 3274 arg = arg * 10 + (ch - '0');
3737 3275
3738 if (ch == ';') 3276 if (ch == ';')
3739 { 3277 {
3278 unicode_t eh;
3740 char *s = get_to_st (eh); 3279 char *s = get_to_st (eh);
3741 3280
3742 if (s) 3281 if (s)
3743 { 3282 {
3744 process_xterm_seq (arg, s, eh); 3283 process_xterm_seq (arg, s, eh);
3768 3307
3769/* 3308/*
3770 * XTerm escape sequences: ESC ] Ps;Pt (ST|BEL) 3309 * XTerm escape sequences: ESC ] Ps;Pt (ST|BEL)
3771 */ 3310 */
3772void 3311void
3773rxvt_term::process_xterm_seq (int op, const char *str, char resp) 3312rxvt_term::process_xterm_seq (int op, char *str, char resp)
3774{ 3313{
3775 int color; 3314 int color;
3776 char *buf, *name; 3315 char *buf, *name;
3777 bool query = str[0] == '?' && !str[1]; 3316 bool query = str[0] == '?' && !str[1];
3778 int saveop = op; 3317 int saveop = op;
3779 3318
3780 dLocal (Display *, dpy); 3319 dLocal (Display *, dpy);
3781 3320
3782 assert (str != NULL); 3321 assert (str != NULL);
3783 3322
3784 if (HOOK_INVOKE ((this, HOOK_OSC_SEQ, DT_INT, op, DT_STR, str, DT_END))) 3323 if (HOOK_INVOKE ((this, HOOK_OSC_SEQ, DT_INT, op, DT_STR, str, DT_END)))
3785 return; 3324 return;
3786 3325
3787 switch (op) 3326 switch (op)
3788 { 3327 {
3805 unsigned long bytes_after; 3344 unsigned long bytes_after;
3806 unsigned char *value = 0; 3345 unsigned char *value = 0;
3807 const char *str = ""; 3346 const char *str = "";
3808 3347
3809 if (prop 3348 if (prop
3810 && XGetWindowProperty (dpy, parent[0], 3349 && XGetWindowProperty (dpy, parent,
3811 prop, 0, 1<<16, 0, AnyPropertyType, 3350 prop, 0, 1<<16, 0, AnyPropertyType,
3812 &actual_type, &actual_format, 3351 &actual_type, &actual_format,
3813 &nitems, &bytes_after, &value) == Success 3352 &nitems, &bytes_after, &value) == Success
3814 && actual_type != None 3353 && actual_type != None
3815 && actual_format == 8) 3354 && actual_format == 8)
3819 3358
3820 XFree (value); 3359 XFree (value);
3821 } 3360 }
3822 else 3361 else
3823 { 3362 {
3824 char *eq = strchr (str, '='); // constness lost, but verified to be ok 3363 char *eq = strchr (str, '=');
3825 3364
3826 if (eq) 3365 if (eq)
3827 { 3366 {
3828 *eq = 0; 3367 *eq = 0;
3829 set_utf8_property (display->atom (str), eq + 1); 3368 set_utf8_property (display->atom (str), eq + 1);
3830 } 3369 }
3831 else 3370 else
3832 XDeleteProperty (dpy, parent[0], 3371 XDeleteProperty (dpy, parent,
3833 display->atom (str)); 3372 display->atom (str));
3834 } 3373 }
3835 break; 3374 break;
3836 3375
3837 case XTerm_Color: 3376 case XTerm_Color:
3850 *buf++ = '\0'; 3389 *buf++ = '\0';
3851 3390
3852 process_color_seq (op, color, name, resp); 3391 process_color_seq (op, color, name, resp);
3853 } 3392 }
3854 break; 3393 break;
3394 case Rxvt_restoreFG:
3855 case XTerm_Color00: 3395 case XTerm_Color00:
3856 process_color_seq (op, Color_fg, str, resp); 3396 process_color_seq (op, Color_fg, str, resp);
3857 break; 3397 break;
3398 case Rxvt_restoreBG:
3858 case XTerm_Color01: 3399 case XTerm_Color01:
3859 process_color_seq (op, Color_bg, str, resp); 3400 process_color_seq (op, Color_bg, str, resp);
3860 break; 3401 break;
3861#ifndef NO_CURSORCOLOR 3402#ifndef NO_CURSORCOLOR
3862 case XTerm_Color_cursor: 3403 case XTerm_Color_cursor:
3867 process_color_seq (op, Color_pointer_fg, str, resp); 3408 process_color_seq (op, Color_pointer_fg, str, resp);
3868 break; 3409 break;
3869 case XTerm_Color_pointer_bg: 3410 case XTerm_Color_pointer_bg:
3870 process_color_seq (op, Color_pointer_bg, str, resp); 3411 process_color_seq (op, Color_pointer_bg, str, resp);
3871 break; 3412 break;
3413#ifdef OPTION_HC
3414 case XTerm_Color_HC:
3415 process_color_seq (op, Color_HC, str, resp);
3416 break;
3417 case XTerm_Color_HTC:
3418 process_color_seq (op, Color_HTC, str, resp);
3419 break;
3420#endif
3872#ifndef NO_BOLD_UNDERLINE_REVERSE 3421#ifndef NO_BOLD_UNDERLINE_REVERSE
3873 case XTerm_Color_RV:
3874 process_color_seq (op, Color_RV, str, resp);
3875 break;
3876 case Rxvt_Color_BD:
3877 case URxvt_Color_BD: 3422 case URxvt_Color_BD:
3878 process_color_seq (op, Color_BD, str, resp); 3423 process_color_seq (op, Color_BD, str, resp);
3879 break; 3424 break;
3880 case Rxvt_Color_UL:
3881 case URxvt_Color_UL: 3425 case URxvt_Color_UL:
3882 process_color_seq (op, Color_UL, str, resp); 3426 process_color_seq (op, Color_UL, str, resp);
3883 break; 3427 break;
3884 case URxvt_Color_IT: 3428 case URxvt_Color_IT:
3885 process_color_seq (op, Color_IT, str, resp); 3429 process_color_seq (op, Color_IT, str, resp);
3886 break; 3430 break;
3887#endif 3431#endif
3888#if TRANSPARENT && TINTING 3432 case URxvt_Color_border:
3433 process_color_seq (op, Color_border, str, resp);
3434 break;
3435#if ENABLE_TRANSPARENCY
3889 case URxvt_Color_tint: 3436 case URxvt_Color_tint:
3890 process_color_seq (op, Color_tint, str, resp); 3437 process_color_seq (op, Color_tint, str, resp);
3438 {
3439 bool changed = false;
3891 3440
3892 check_our_parents (); 3441 if (ISSET_PIXCOLOR (Color_tint))
3442 changed = root_effects.set_tint (pix_colors_focused [Color_tint]);
3893 3443
3894 if (am_transparent) 3444 if (changed)
3895 want_full_refresh = want_refresh = 1; 3445 update_background ();
3446 }
3896 3447
3897 break; 3448 break;
3898#endif 3449#endif
3899 3450
3451#if BG_IMAGE_FROM_FILE
3900 case Rxvt_Pixmap: 3452 case Rxvt_Pixmap:
3453 if (!strcmp (str, "?"))
3901 { 3454 {
3455 char str[256];
3456 int h_scale = 0, v_scale = 0;
3457 int h_align = 0, v_align = 0;
3458 if (image_vec.size () > 0)
3459 {
3460 h_scale = image_vec[0].h_scale;
3461 v_scale = image_vec[0].v_scale;
3462 h_align = image_vec[0].h_align;
3463 v_align = image_vec[0].v_align;
3464 }
3465
3466 sprintf (str, "[%dx%d+%d+%d]",
3467 h_scale, v_scale,
3468 h_align, v_align);
3469 process_xterm_seq (XTerm_title, str, CHAR_ST);
3470 }
3471 else
3472 {
3473 bool changed = false;
3474
3902 if (*str != ';') 3475 if (*str != ';')
3903 { 3476 {
3904#if XPM_BACKGROUND 3477 if (image_vec.size () > 0)
3905 scale_pixmap (""); /* reset to default scaling */ 3478 changed = image_vec[0].set_file_geometry (str);
3906 set_bgPixmap (str); /* change pixmap */ 3479 else
3907 scr_touch (true); 3480 {
3908#endif 3481 rxvt_image *image = new_image ();
3482 if (!image->set_file_geometry (str))
3483 image_vec.pop_back ();
3484 else
3485 changed = true;
3486 }
3909 } 3487 }
3910 3488 else
3911 int changed = 0;
3912
3913 while ((str = strchr (str, ';')) != NULL)
3914 { 3489 {
3915 str++; 3490 str++;
3916#if XPM_BACKGROUND 3491 if (image_vec.size () > 0)
3917 changed += scale_pixmap (str); 3492 changed = image_vec[0].set_geometry (str, true);
3918#endif
3919 } 3493 }
3920 3494
3921 if (changed) 3495 if (changed)
3922 { 3496 {
3923#ifdef XPM_BACKGROUND 3497 if (bg_window_position_sensitive ())
3924 resize_pixmap (); 3498 {
3925 scr_touch (true); 3499 int x, y;
3926#endif 3500 get_window_origin (x, y);
3501 bg_set_position (x, y);
3502 }
3503 update_background ();
3927 } 3504 }
3928 } 3505 }
3929 break; 3506 break;
3930 3507#endif
3931 case Rxvt_restoreFG:
3932 set_window_color (Color_fg, str);
3933 break;
3934 case Rxvt_restoreBG:
3935 set_window_color (Color_bg, str);
3936 break;
3937 3508
3938 case XTerm_logfile: 3509 case XTerm_logfile:
3939 // TODO, when secure mode? 3510 // TODO, when secure mode?
3940 break; 3511 break;
3941 3512
3959 case URxvt_italicFont: 3530 case URxvt_italicFont:
3960 case URxvt_boldItalicFont: 3531 case URxvt_boldItalicFont:
3961#endif 3532#endif
3962 if (query) 3533 if (query)
3963 tt_printf ("\33]%d;%-.250s%c", saveop, 3534 tt_printf ("\33]%d;%-.250s%c", saveop,
3964 OPTION (Opt_insecure) && fontset[op - URxvt_font]->fontdesc 3535 option (Opt_insecure) && fontset[op - URxvt_font]->fontdesc
3965 ? fontset[op - URxvt_font]->fontdesc : "", 3536 ? fontset[op - URxvt_font]->fontdesc : "",
3966 resp); 3537 resp);
3967 else 3538 else
3968 { 3539 {
3969 const char *&res = rs[Rs_font + (op - URxvt_font)]; 3540 const char *&res = rs[Rs_font + (op - URxvt_font)];
3983 break; 3554 break;
3984 3555
3985#if !ENABLE_MINIMAL 3556#if !ENABLE_MINIMAL
3986 case URxvt_locale: 3557 case URxvt_locale:
3987 if (query) 3558 if (query)
3988 tt_printf ("\33]%d;%-.250s%c", op, OPTION (Opt_insecure) ? locale : "", resp); 3559 tt_printf ("\33]%d;%-.250s%c", op, option (Opt_insecure) ? locale : "", resp);
3989 else 3560 else
3990 { 3561 {
3991 set_locale (str); 3562 set_locale (str);
3992 pty->set_utf8_mode (enc_utf8); 3563 pty->set_utf8_mode (enc_utf8);
3993 init_xlocale (); 3564 init_xlocale ();
4008 break; 3579 break;
4009#endif 3580#endif
4010 3581
4011#if ENABLE_PERL 3582#if ENABLE_PERL
4012 case URxvt_perl: 3583 case URxvt_perl:
4013 if (HOOK_INVOKE ((this, HOOK_OSC_SEQ_PERL, DT_STR, str, DT_END))) 3584 HOOK_INVOKE ((this, HOOK_OSC_SEQ_PERL, DT_STR, str, DT_STR_LEN, &resp, 1, DT_END));
4014 ; // no responses yet
4015 break; 3585 break;
4016#endif 3586#endif
4017 } 3587 }
4018} 3588}
4019/*----------------------------------------------------------------------*/ 3589/*----------------------------------------------------------------------*/
4026 * 's' = save 3596 * 's' = save
4027 * 'r' = restore 3597 * 'r' = restore
4028 * 't' = toggle 3598 * 't' = toggle
4029 * so no need for fancy checking 3599 * so no need for fancy checking
4030 */ 3600 */
4031int 3601int ecb_cold
4032rxvt_term::privcases (int mode, unsigned long bit) 3602rxvt_term::privcases (int mode, unsigned long bit)
4033{ 3603{
4034 int state; 3604 int state;
4035 3605
4036 if (mode == 's') 3606 if (mode == 's')
4037 { 3607 {
4038 SavedModes |= (priv_modes & bit); 3608 if (priv_modes & bit)
3609 SavedModes |= bit;
3610 else
3611 SavedModes &= ~bit;
4039 return -1; 3612 return -1;
4040 } 3613 }
4041 else 3614 else
4042 { 3615 {
4043 if (mode == 'r') 3616 if (mode == 'r')
4044 state = (SavedModes & bit) ? 1 : 0; /* no overlapping */ 3617 state = (SavedModes & bit) ? 1 : 0; /* no overlapping */
4045 else 3618 else
4046 state = (mode == 't') ? ! (priv_modes & bit) : mode; 3619 state = (mode == 't') ? ! (priv_modes & bit) : mode;
4047 PrivMode (state, bit); 3620
3621 if (state)
3622 priv_modes |= bit;
3623 else
3624 priv_modes &= ~bit;
4048 } 3625 }
4049 3626
4050 return state; 3627 return state;
4051} 3628}
4052 3629
4053/* we're not using priv _yet_ */ 3630/* we're not using priv _yet_ */
4054void 3631void
4055rxvt_term::process_terminal_mode (int mode, int priv UNUSED, unsigned int nargs, const int *arg) 3632rxvt_term::process_terminal_mode (int mode, int priv ecb_unused, unsigned int nargs, const int *arg)
4056{ 3633{
4057 unsigned int i, j; 3634 unsigned int i, j;
4058 int state; 3635 int state;
4059 3636
4060 static const struct 3637 static const struct
4061 { 3638 {
4062 const int argval; 3639 const int argval;
4063 const unsigned long bit; 3640 const unsigned long bit;
4064 }
4065
4066 argtopriv[] = { 3641 } argtopriv[] = {
4067 { 1, PrivMode_aplCUR }, 3642 { 1, PrivMode_aplCUR }, // DECCKM
4068 { 2, PrivMode_vt52 }, 3643 { 2, PrivMode_vt52 }, // DECANM
4069 { 3, PrivMode_132 }, 3644 { 3, PrivMode_132 }, // DECCOLM
4070 { 4, PrivMode_smoothScroll }, 3645 { 4, PrivMode_smoothScroll }, // DECSCLM
4071 { 5, PrivMode_rVideo }, 3646 { 5, PrivMode_rVideo }, // DECSCNM
4072 { 6, PrivMode_relOrigin }, 3647 { 6, PrivMode_relOrigin }, // DECOM
4073 { 7, PrivMode_Autowrap }, 3648 { 7, PrivMode_Autowrap }, // DECAWM
4074 // 8, bi-directional support mode 3649 // 8, auto-repeat keys // DECARM
4075 { 9, PrivMode_MouseX10 }, 3650 { 9, PrivMode_MouseX10 },
4076 // 18, 19 printing-related 3651 // 18 end FF to printer after print screen
3652 // 19 Print screen prints full screen/scroll region
4077 { 25, PrivMode_VisibleCursor }, 3653 { 25, PrivMode_VisibleCursor }, // DECTCEM cnorm/cvvis/civis
4078#ifdef scrollBar_esc 3654#ifdef scrollBar_esc
4079 { scrollBar_esc, PrivMode_scrollBar }, 3655 { scrollBar_esc, PrivMode_scrollBar },
4080#endif 3656#endif
4081 { 35, PrivMode_ShiftKeys }, // rxvt extension 3657 { 35, PrivMode_ShiftKeys }, // rxvt extension
3658 // 38, tektronix mode // DECTEK
4082 { 40, PrivMode_132OK }, 3659 { 40, PrivMode_132OK },
4083 // 41 xterm more fixes NYI 3660 // 41 xterm more fixes NYI
4084 // 45 margin bell NYI 3661 // 45 margin bell NYI
4085 // 46 start logging 3662 // 46 start logging
4086 { 47, PrivMode_Screen }, 3663 { 47, PrivMode_Screen },
4087 { 66, PrivMode_aplKP }, 3664 { 66, PrivMode_aplKP }, // DECNKM
4088#ifndef NO_BACKSPACE_KEY 3665#ifndef NO_BACKSPACE_KEY
4089 { 67, PrivMode_BackSpace }, 3666 { 67, PrivMode_BackSpace }, // DECBKM
4090#endif 3667#endif
4091 { 1000, PrivMode_MouseX11 }, 3668 { 1000, PrivMode_MouseX11 },
4092 // 1001 Use Hilite Mouse Tracking. NYI, TODO 3669 { 1002, PrivMode_MouseBtnEvent },
4093 // 1002 Use Cell Motion Mouse Tracking. NYI, TODO 3670 { 1003, PrivMode_MouseAnyEvent },
4094 // 1003 Use All Motion Mouse Tracking. NYI, TODO 3671#if ENABLE_FRILLS
3672 { 1005, PrivMode_ExtModeMouse },
3673#endif
4095 { 1010, PrivMode_TtyOutputInh }, // rxvt extension 3674 { 1010, PrivMode_TtyOutputInh }, // rxvt extension
4096 { 1011, PrivMode_Keypress }, // rxvt extension 3675 { 1011, PrivMode_Keypress }, // rxvt extension
3676#if ENABLE_FRILLS
3677 { 1015, PrivMode_ExtMouseRight }, // urxvt extension of 1005
3678#endif
4097 // 1035 enable modifiers for alt, numlock NYI 3679 // 1035 enable modifiers for alt, numlock NYI
4098 // 1036 send ESC for meta keys NYI 3680 // 1036 send ESC for meta keys NYI
4099 // 1037 send DEL for keypad delete NYI 3681 // 1037 send DEL for keypad delete NYI
4100 { 1047, PrivMode_Screen }, 3682 { 1047, PrivMode_Screen },
4101 // 1048 save and restore cursor 3683 // 1048 save and restore cursor, implemented in code
4102 { 1049, PrivMode_Screen }, /* xterm extension, clear screen on ti rather than te */ 3684 { 1049, PrivMode_Screen }, /* xterm extension, clear screen on ti rather than te */
4103 // 1051, 1052, 1060, 1061 keyboard emulation NYI 3685 // 1051, 1052, 1060, 1061 keyboard emulation NYI
3686 { 2004, PrivMode_BracketPaste },
4104 }; 3687 };
4105 3688
4106 if (nargs == 0) 3689 if (nargs == 0)
4107 return; 3690 return;
4108 3691
4115 for (i = 0; i < nargs; i++) 3698 for (i = 0; i < nargs; i++)
4116 { 3699 {
4117 state = -1; 3700 state = -1;
4118 3701
4119 /* basic handling */ 3702 /* basic handling */
4120 for (j = 0; j < (sizeof (argtopriv)/sizeof (argtopriv[0])); j++) 3703 for (j = 0; j < ecb_array_length (argtopriv); j++)
4121 if (argtopriv[j].argval == arg[i]) 3704 if (argtopriv[j].argval == arg[i])
4122 { 3705 {
4123 state = privcases (mode, argtopriv[j].bit); 3706 state = privcases (mode, argtopriv[j].bit);
4124 break; 3707 break;
4125 } 3708 }
4133 3716
4134 scr_touch (true); 3717 scr_touch (true);
4135 break; 3718 break;
4136#endif 3719#endif
4137 case 1048: /* alternative cursor save */ 3720 case 1048: /* alternative cursor save */
4138 case 1049:
4139 if (OPTION (Opt_secondaryScreen)) 3721 if (option (Opt_secondaryScreen))
4140 if (mode == 0) 3722 if (mode == 0)
4141 scr_cursor (RESTORE); 3723 scr_cursor (RESTORE);
4142 else if (mode == 1) 3724 else if (mode == 1)
4143 scr_cursor (SAVE); 3725 scr_cursor (SAVE);
4144 break; 3726 break;
4152 case 2: /* VT52 mode */ 3734 case 2: /* VT52 mode */
4153 /* oddball mode. should be set regardless of set/reset 3735 /* oddball mode. should be set regardless of set/reset
4154 * parameter. Return from VT52 mode with an ESC < from 3736 * parameter. Return from VT52 mode with an ESC < from
4155 * within VT52 mode 3737 * within VT52 mode
4156 */ 3738 */
4157 PrivMode (1, PrivMode_vt52); 3739 priv_modes |= PrivMode_vt52;
4158 break; 3740 break;
4159 case 3: /* 80/132 */ 3741 case 3: /* 80/132 */
4160 if (priv_modes & PrivMode_132OK) 3742 if (priv_modes & PrivMode_132OK)
4161 set_widthheight (((state ? 132 : 80) * fwidth), height); 3743 set_widthheight ((state ? 132 : 80) * fwidth, 24 * fheight);
4162 break; 3744 break;
4163 case 4: /* smooth scrolling */ 3745 case 4: /* smooth scrolling */
4164 set_option (Opt_jumpScroll, !state); 3746 set_option (Opt_jumpScroll, !state);
4165 break; 3747 break;
4166 case 5: /* reverse video */ 3748 case 5: /* reverse video */
4173 scr_autowrap (state); 3755 scr_autowrap (state);
4174 break; 3756 break;
4175 /* case 8: - auto repeat, can't do on a per window basis */ 3757 /* case 8: - auto repeat, can't do on a per window basis */
4176 case 9: /* X10 mouse reporting */ 3758 case 9: /* X10 mouse reporting */
4177 if (state) /* orthogonal */ 3759 if (state) /* orthogonal */
4178 priv_modes &= ~PrivMode_MouseX11; 3760 priv_modes &= ~(PrivMode_MouseX11|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent);
4179 break; 3761 break;
4180#ifdef scrollBar_esc 3762#ifdef scrollBar_esc
4181 case scrollBar_esc: 3763 case scrollBar_esc:
4182 if (scrollbar_mapping (state)) 3764 scrollBar.map (state);
4183 {
4184 resize_all_windows (0, 0, 0); 3765 resize_all_windows (0, 0, 0);
4185 scr_touch (true); 3766 scr_touch (true);
4186 }
4187 break; 3767 break;
4188#endif 3768#endif
4189 case 25: /* visible/invisible cursor */ 3769 case 25: /* visible/invisible cursor */
4190 scr_cursor_visible (state); 3770 scr_cursor_visible (state);
4191 break; 3771 break;
4196 break; 3776 break;
4197 /* case 66: - application key pad */ 3777 /* case 66: - application key pad */
4198 /* case 67: - backspace key */ 3778 /* case 67: - backspace key */
4199 case 1000: /* X11 mouse reporting */ 3779 case 1000: /* X11 mouse reporting */
4200 if (state) /* orthogonal */ 3780 if (state) /* orthogonal */
4201 priv_modes &= ~PrivMode_MouseX10; 3781 priv_modes &= ~(PrivMode_MouseX10|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent);
4202 break; 3782 break;
4203#if 0
4204 case 1001: 3783 case 1002:
4205 break; /* X11 mouse highlighting */ 3784 case 1003:
4206#endif 3785 if (state)
3786 {
3787 priv_modes &= ~(PrivMode_MouseX10|PrivMode_MouseX11);
3788 priv_modes &= arg[i] == 1003 ? ~PrivMode_MouseBtnEvent : ~PrivMode_MouseAnyEvent;
3789 mouse_row = mouse_col = 0;
3790 vt_emask_mouse = PointerMotionMask;
3791 }
3792 else
3793 vt_emask_mouse = NoEventMask;
3794
3795 vt_select_input ();
3796 break;
4207 case 1010: /* scroll to bottom on TTY output inhibit */ 3797 case 1010: /* scroll to bottom on TTY output inhibit */
4208 set_option (Opt_scrollTtyOutput, !state); 3798 set_option (Opt_scrollTtyOutput, !state);
4209 break; 3799 break;
4210 case 1011: /* scroll to bottom on key press */ 3800 case 1011: /* scroll to bottom on key press */
4211 set_option (Opt_scrollTtyKeypress, state); 3801 set_option (Opt_scrollTtyKeypress, state);
4212 break; 3802 break;
4213 case 1047: /* secondary screen w/ clearing last */ 3803 case 1047: /* secondary screen w/ clearing last */
4214 if (OPTION (Opt_secondaryScreen)) 3804 if (option (Opt_secondaryScreen))
4215 if (current_screen != PRIMARY) 3805 if (!state)
4216 scr_erase_screen (2); 3806 scr_erase_screen (2);
3807
4217 scr_change_screen (state); 3808 scr_change_screen (state);
4218 break; 3809 break;
4219 case 1049: /* secondary screen w/ clearing first */ 3810 case 1049: /* secondary screen w/ clearing first */
3811 if (option (Opt_secondaryScreen))
3812 if (state)
3813 scr_cursor (SAVE);
3814
4220 scr_change_screen (state); 3815 scr_change_screen (state);
3816
4221 if (OPTION (Opt_secondaryScreen)) 3817 if (option (Opt_secondaryScreen))
4222 if (current_screen != PRIMARY) 3818 if (state)
4223 scr_erase_screen (2); 3819 scr_erase_screen (2);
3820 else
3821 scr_cursor (RESTORE);
4224 break; 3822 break;
4225 default: 3823 default:
4226 break; 3824 break;
4227 } 3825 }
4228 } 3826 }
4229} 3827}
4230/*}}} */ 3828/*}}} */
4231 3829
4232/*{{{ process sgr sequences */ 3830/*{{{ process sgr sequences */
4233void 3831void ecb_hot
4234rxvt_term::process_sgr_mode (unsigned int nargs, const int *arg) 3832rxvt_term::process_sgr_mode (unsigned int nargs, const int *arg)
4235{ 3833{
4236 unsigned int i; 3834 unsigned int i;
4237 short rendset; 3835 short rendset;
4238 int rendstyle; 3836 int rendstyle;
4381 } 3979 }
4382 } 3980 }
4383} 3981}
4384/*}}} */ 3982/*}}} */
4385 3983
4386/*{{{ (do not) process Rob Nation's own graphics mode sequences */
4387void
4388rxvt_term::process_graphics ()
4389{
4390 unicode_t ch, cmd = cmd_getc ();
4391
4392 if (cmd == 'Q')
4393 { /* query graphics */
4394 tt_printf ("\033G0\012"); /* no graphics */
4395 return;
4396 }
4397 /* swallow other graphics sequences until terminating ':' */
4398 do
4399 ch = cmd_getc ();
4400 while (ch != ':');
4401}
4402/*}}} */
4403
4404/* ------------------------------------------------------------------------- */ 3984/* ------------------------------------------------------------------------- */
4405 3985
4406/* 3986/*
4407 * Send printf () formatted output to the command. 3987 * Send printf () formatted output to the command.
4408 * Only use for small amounts of data. 3988 * Only use for small amounts of data.
4421 4001
4422/* ---------------------------------------------------------------------- */ 4002/* ---------------------------------------------------------------------- */
4423/* Write data to the pty as typed by the user, pasted with the mouse, 4003/* Write data to the pty as typed by the user, pasted with the mouse,
4424 * or generated by us in response to a query ESC sequence. 4004 * or generated by us in response to a query ESC sequence.
4425 */ 4005 */
4426const unsigned int MAX_PTY_WRITE = 255; // minimum MAX_INPUT 4006static const unsigned int MAX_PTY_WRITE = 255; // minimum MAX_INPUT
4427 4007
4428void 4008void
4429rxvt_term::tt_write (const char *data, unsigned int len) 4009rxvt_term::tt_write (const char *data, unsigned int len)
4430{ 4010{
4431 if (HOOK_INVOKE ((this, HOOK_TT_WRITE, DT_STR_LEN, data, len, DT_END))) 4011 if (HOOK_INVOKE ((this, HOOK_TT_WRITE, DT_STR_LEN, data, len, DT_END)))
4436 4016
4437 if (v_buflen == 0) 4017 if (v_buflen == 0)
4438 { 4018 {
4439 ssize_t written = write (pty->pty, data, min (len, MAX_PTY_WRITE)); 4019 ssize_t written = write (pty->pty, data, min (len, MAX_PTY_WRITE));
4440 4020
4021 max_it (written, 0);
4022
4441 if ((unsigned int)written == len) 4023 if (written == len)
4442 return; 4024 return;
4443 4025
4444 data += written; 4026 data += written;
4445 len -= written; 4027 len -= written;
4446 } 4028 }
4447 4029
4448 v_buffer = (char *)realloc (v_buffer, v_buflen + len); 4030 v_buffer = (char *)rxvt_realloc (v_buffer, v_buflen + len);
4449 4031
4450 memcpy (v_buffer + v_buflen, data, len); 4032 memcpy (v_buffer + v_buflen, data, len);
4451 v_buflen += len; 4033 v_buflen += len;
4452 4034
4453 pty_ev.set (EVENT_READ | EVENT_WRITE); 4035 pty_ev.set (ev::READ | ev::WRITE);
4454} 4036}
4455 4037
4456void rxvt_term::pty_write () 4038void rxvt_term::pty_write ()
4457{ 4039{
4458 int written = write (pty->pty, v_buffer, min (v_buflen, MAX_PTY_WRITE)); 4040 int written = write (pty->pty, v_buffer, min (v_buflen, MAX_PTY_WRITE));
4463 4045
4464 if (v_buflen == 0) 4046 if (v_buflen == 0)
4465 { 4047 {
4466 free (v_buffer); 4048 free (v_buffer);
4467 v_buffer = 0; 4049 v_buffer = 0;
4468 v_buflen = 0;
4469 4050
4470 pty_ev.set (EVENT_READ); 4051 pty_ev.set (ev::READ);
4471 return; 4052 return;
4472 } 4053 }
4473 4054
4474 memmove (v_buffer, v_buffer + written, v_buflen); 4055 memmove (v_buffer, v_buffer + written, v_buflen);
4475 } 4056 }
4476 else if (written != -1 || (errno != EAGAIN && errno != EINTR)) 4057 else if (written != -1 || (errno != EAGAIN && errno != EINTR))
4477 pty_ev.set (EVENT_READ); 4058 pty_ev.set (ev::READ);
4478} 4059}
4479 4060
4480/*----------------------- end-of-file (C source) -----------------------*/ 4061/*----------------------- end-of-file (C source) -----------------------*/
4481 4062

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines