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.342 by ayin, Fri Aug 3 23:32:14 2007 UTC vs.
Revision 1.408 by ayin, Sat Feb 16 13:36:10 2008 UTC

25 * - extensive modifications 25 * - extensive modifications
26 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org> 26 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org>
27 * Copyright (c) 2001 Marius Gedminas 27 * Copyright (c) 2001 Marius Gedminas
28 * - Ctrl/Mod4+Tab works like Meta+Tab (options) 28 * - Ctrl/Mod4+Tab works like Meta+Tab (options)
29 * Copyright (c) 2003 Rob McMullen <robm@flipturn.org> 29 * Copyright (c) 2003 Rob McMullen <robm@flipturn.org>
30 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com> 30 * Copyright (c) 2003-2007 Marc Lehmann <pcg@goof.com>
31 * Copyright (c) 2007 Emanuele Giaquinta <e.giaquinta@glauco.it>
31 * 32 *
32 * This program is free software; you can redistribute it and/or modify 33 * This program is free software; you can redistribute it and/or modify
33 * it under the terms of the GNU General Public License as published by 34 * it under the terms of the GNU General Public License as published by
34 * the Free Software Foundation; either version 2 of the License, or 35 * the Free Software Foundation; either version 2 of the License, or
35 * (at your option) any later version. 36 * (at your option) any later version.
95 XK_Shift_L, 0x21e7, 96 XK_Shift_L, 0x21e7,
96 XK_Shift_R, 0x21e7, 97 XK_Shift_R, 0x21e7,
97 98
98 XK_Shift_Lock, 0x21eb, 99 XK_Shift_Lock, 0x21eb,
99 XK_ISO_Lock, 0x21eb, 100 XK_ISO_Lock, 0x21eb,
100 XK_ISO_Lock, 0x21eb,
101 XK_Caps_Lock, 0x21ec, 101 XK_Caps_Lock, 0x21ec,
102 XK_Num_Lock, 0x21ed, 102 XK_Num_Lock, 0x21ed,
103 XK_ISO_Level3_Shift, 0x21ee, 103 XK_ISO_Level3_Shift, 0x21ee,
104 XK_ISO_Level3_Lock, 0x21ef, 104 XK_ISO_Level3_Lock, 0x21ef,
105 XK_ISO_Group_Lock, 0x21f0, 105 XK_ISO_Group_Lock, 0x21f0,
199 r & RS_Uline ? " uline" : "", 199 r & RS_Uline ? " uline" : "",
200 r & RS_Careful ? " careful" : ""); 200 r & RS_Careful ? " careful" : "");
201 201
202 int width = wcswidth (fname, wcslen (fname)); 202 int width = wcswidth (fname, wcslen (fname));
203 203
204 max_it (width, 8+5); // for char + hey 204 max_it (width, 8+5); // for char + hex
205 max_it (width, strlen (attr)); 205 max_it (width, strlen (attr));
206 206
207 if (y >= 0) 207 if (y >= 0)
208 { 208 {
209 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1; 209 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1;
221 ch = *chr++; 221 ch = *chr++;
222 222
223 sprintf (buf, "%8x", ch); 223 sprintf (buf, "%8x", ch);
224 scr_overlay_set (0, y, buf); 224 scr_overlay_set (0, y, buf);
225 scr_overlay_set (9, y, '='); 225 scr_overlay_set (9, y, '=');
226# if !UNICODE3 226# if !UNICODE_3
227 if (ch >= 0x10000) 227 if (ch >= 0x10000)
228 ch = 0xfffd; 228 ch = 0xfffd;
229# endif 229# endif
230 scr_overlay_set (11, y, ch, r); 230 scr_overlay_set (11, y, ch, r);
231 231
279 } 279 }
280 280
281 iso14755buf = 0; 281 iso14755buf = 0;
282} 282}
283 283
284int 284static int
285rxvt_term::hex_keyval (XKeyEvent &ev) 285hex_keyval (XKeyEvent &ev)
286{ 286{
287 // check wether this event corresponds to a hex digit 287 // check wether this event corresponds to a hex digit
288 // if the modifiers had not been pressed. 288 // if the modifiers had not been pressed.
289 for (int index = 0; index < 8; index++) 289 for (int index = 0; index < 8; index++)
290 { 290 {
298 298
299 return -1; 299 return -1;
300} 300}
301#endif 301#endif
302 302
303static inline KeySym
304translate_keypad (KeySym keysym, bool kp)
305{
306#ifdef XK_KP_Home
307 static const KeySym keypadtrans[] = {
308 XK_KP_7, // XK_KP_Home
309 XK_KP_4, // XK_KP_Left
310 XK_KP_8, // XK_KP_Up
311 XK_KP_6, // XK_KP_Right
312 XK_KP_2, // XK_KP_Down
313# ifndef UNSHIFTED_SCROLLKEYS
314 XK_KP_9, // XK_KP_Prior
315 XK_KP_3, // XK_KP_Next
316# else
317 XK_Prior,
318 XK_Next,
319# endif
320 XK_KP_1, // XK_KP_End
321 XK_KP_5, // XK_KP_Begin
322 };
323
324 if (IN_RANGE_INC (keysym, XK_KP_Home, XK_KP_Begin))
325 {
326 unsigned int index = keysym - XK_KP_Home;
327 keysym = kp ? keypadtrans[index] : XK_Home + index;
328 }
329 else if (keysym == XK_KP_Insert)
330 keysym = kp ? XK_KP_0 : XK_Insert;
331# ifndef NO_DELETE_KEY
332 else if (keysym == XK_KP_Delete)
333 keysym = kp ? XK_KP_Decimal : XK_Delete;
334# endif
335#endif
336 return keysym;
337}
338
303void 339void
304rxvt_term::key_press (XKeyEvent &ev) 340rxvt_term::key_press (XKeyEvent &ev)
305{ 341{
306 int ctrl, meta, shft, len; 342 int ctrl, meta, shft, len;
307 unsigned int newlen;
308 KeySym keysym; 343 KeySym keysym;
309 int valid_keysym; 344 int valid_keysym;
310 char kbuf[KBUFSZ]; 345 char kbuf[KBUFSZ];
311 346
312#if ISO_14755 347#if ISO_14755
547 } 582 }
548#endif 583#endif
549 584
550 if (keysym >= 0xFF00 && keysym <= 0xFFFF) 585 if (keysym >= 0xFF00 && keysym <= 0xFFFF)
551 { 586 {
552 { 587 bool kp = priv_modes & PrivMode_aplKP ? !shft : shft;
553 newlen = 1; 588 unsigned int newlen = 1;
554 switch (keysym) 589
590 switch (translate_keypad (keysym, kp))
555 { 591 {
556#ifndef NO_BACKSPACE_KEY 592#ifndef NO_BACKSPACE_KEY
557 case XK_BackSpace: 593 case XK_BackSpace:
558 if (priv_modes & PrivMode_HaveBackSpace) 594 if (priv_modes & PrivMode_HaveBackSpace)
559 { 595 {
560 kbuf[0] = (!! (priv_modes & PrivMode_BackSpace) 596 kbuf[0] = (!! (priv_modes & PrivMode_BackSpace)
561 ^ !!ctrl) ? '\b' : '\177'; 597 ^ !!ctrl) ? '\b' : '\177';
562 kbuf[1] = '\0'; 598 kbuf[1] = '\0';
563 } 599 }
564 else 600 else
565 strcpy (kbuf, key_backspace); 601 strcpy (kbuf, rs[Rs_backspace_key]);
566 break; 602 break;
567#endif 603#endif
568#ifndef NO_DELETE_KEY 604#ifndef NO_DELETE_KEY
569# ifdef XK_KP_Prior
570 case XK_KP_Delete:
571 /* allow shift to override */
572 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
573 {
574 strcpy (kbuf, "\033On");
575 break;
576 }
577 /* FALLTHROUGH */
578# endif
579 case XK_Delete: 605 case XK_Delete:
580 strcpy (kbuf, key_delete); 606 strcpy (kbuf, rs[Rs_delete_key]);
581 break; 607 break;
582#endif 608#endif
583 case XK_Tab: 609 case XK_Tab:
584 if (shft) 610 if (shft)
585 strcpy (kbuf, "\033[Z"); 611 strcpy (kbuf, "\033[Z");
595#endif 621#endif
596 newlen = 0; 622 newlen = 0;
597 } 623 }
598 break; 624 break;
599 625
600#ifdef XK_KP_Left
601 case XK_KP_Up: /* \033Ox or standard */
602 case XK_KP_Down: /* \033Or or standard */
603 case XK_KP_Right: /* \033Ov or standard */
604 case XK_KP_Left: /* \033Ot or standard */
605 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
606 {
607 strcpy (kbuf, "\033OZ");
608 kbuf[2] = "txvr"[keysym - XK_KP_Left];
609 break;
610 }
611 else
612 /* translate to std. cursor key */
613 keysym = XK_Left + (keysym - XK_KP_Left);
614 /* FALLTHROUGH */
615#endif
616 case XK_Up: /* "\033[A" */ 626 case XK_Up: /* "\033[A" */
617 case XK_Down: /* "\033[B" */ 627 case XK_Down: /* "\033[B" */
618 case XK_Right: /* "\033[C" */ 628 case XK_Right: /* "\033[C" */
619 case XK_Left: /* "\033[D" */ 629 case XK_Left: /* "\033[D" */
620 strcpy (kbuf, "\033[Z"); 630 strcpy (kbuf, "\033[Z");
630 else if (priv_modes & PrivMode_aplCUR) 640 else if (priv_modes & PrivMode_aplCUR)
631 kbuf[1] = 'O'; 641 kbuf[1] = 'O';
632 break; 642 break;
633 643
634#ifndef UNSHIFTED_SCROLLKEYS 644#ifndef UNSHIFTED_SCROLLKEYS
635# ifdef XK_KP_Prior
636 case XK_KP_Prior:
637 /* allow shift to override */
638 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
639 {
640 strcpy (kbuf, "\033Oy");
641 break;
642 }
643 /* FALLTHROUGH */
644# endif
645 case XK_Prior: 645 case XK_Prior:
646 strcpy (kbuf, "\033[5~"); 646 strcpy (kbuf, "\033[5~");
647 break; 647 break;
648# ifdef XK_KP_Next
649 case XK_KP_Next:
650 /* allow shift to override */
651 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
652 {
653 strcpy (kbuf, "\033Os");
654 break;
655 }
656 /* FALLTHROUGH */
657# endif
658 case XK_Next: 648 case XK_Next:
659 strcpy (kbuf, "\033[6~"); 649 strcpy (kbuf, "\033[6~");
660 break; 650 break;
661#endif 651#endif
662 case XK_KP_Enter: 652 case XK_KP_Enter:
663 /* allow shift to override */ 653 /* allow shift to override */
664 if ((priv_modes & PrivMode_aplKP) ? !shft : shft) 654 if (kp)
665 { 655 {
666 strcpy (kbuf, "\033OM"); 656 strcpy (kbuf, "\033OM");
667 break; 657 break;
668 } 658 }
669 659
681 kbuf[0] = '\015'; 671 kbuf[0] = '\015';
682 kbuf[1] = '\0'; 672 kbuf[1] = '\0';
683 } 673 }
684 break; 674 break;
685 675
686#ifdef XK_KP_Begin
687 case XK_KP_Begin:
688 strcpy (kbuf, "\033Ou");
689 break;
690
691#endif
692 case XK_KP_F1: /* "\033OP" */ 676 case XK_KP_F1: /* "\033OP" */
693 case XK_KP_F2: /* "\033OQ" */ 677 case XK_KP_F2: /* "\033OQ" */
694 case XK_KP_F3: /* "\033OR" */ 678 case XK_KP_F3: /* "\033OR" */
695 case XK_KP_F4: /* "\033OS" */ 679 case XK_KP_F4: /* "\033OS" */
696 strcpy (kbuf, "\033OP"); 680 strcpy (kbuf, "\033OP");
712 case XK_KP_6: /* "\033Ov" : "6" */ 696 case XK_KP_6: /* "\033Ov" : "6" */
713 case XK_KP_7: /* "\033Ow" : "7" */ 697 case XK_KP_7: /* "\033Ow" : "7" */
714 case XK_KP_8: /* "\033Ox" : "8" */ 698 case XK_KP_8: /* "\033Ox" : "8" */
715 case XK_KP_9: /* "\033Oy" : "9" */ 699 case XK_KP_9: /* "\033Oy" : "9" */
716 /* allow shift to override */ 700 /* allow shift to override */
717 if ((priv_modes & PrivMode_aplKP) ? !shft : shft) 701 if (kp)
718 { 702 {
719 strcpy (kbuf, "\033Oj"); 703 strcpy (kbuf, "\033Oj");
720 kbuf[2] += (keysym - XK_KP_Multiply); 704 kbuf[2] += (keysym - XK_KP_Multiply);
721 } 705 }
722 else 706 else
728 712
729 case XK_Find: 713 case XK_Find:
730 strcpy (kbuf, "\033[1~"); 714 strcpy (kbuf, "\033[1~");
731 break; 715 break;
732 716
733#ifdef XK_KP_Insert
734 case XK_KP_Insert:
735 /* allow shift to override */
736 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
737 {
738 strcpy (kbuf, "\033Op");
739 break;
740 }
741 /* FALLTHROUGH */
742#endif
743 case XK_Insert: 717 case XK_Insert:
744 strcpy (kbuf, "\033[2~"); 718 strcpy (kbuf, "\033[2~");
745 break; 719 break;
746#ifdef DXK_Remove /* support for DEC remove like key */ 720#ifdef DXK_Remove /* support for DEC remove like key */
747 case DXK_Remove: 721 case DXK_Remove:
751 strcpy (kbuf, "\033[3~"); 725 strcpy (kbuf, "\033[3~");
752 break; 726 break;
753 case XK_Select: 727 case XK_Select:
754 strcpy (kbuf, "\033[4~"); 728 strcpy (kbuf, "\033[4~");
755 break; 729 break;
756#ifdef XK_KP_End
757 case XK_KP_End:
758 /* allow shift to override */
759 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
760 {
761 strcpy (kbuf, "\033Oq");
762 break;
763 }
764 /* FALLTHROUGH */
765#endif
766 case XK_End: 730 case XK_End:
767 strcpy (kbuf, KS_END); 731 strcpy (kbuf, KS_END);
768 break; 732 break;
769#ifdef XK_KP_Home
770 case XK_KP_Home:
771 /* allow shift to override */
772 if ((priv_modes & PrivMode_aplKP) ? !shft : shft)
773 {
774 strcpy (kbuf, "\033Ow");
775 break;
776 }
777 /* FALLTHROUGH */
778#endif
779 case XK_Home: 733 case XK_Home:
780 strcpy (kbuf, KS_HOME); 734 strcpy (kbuf, KS_HOME);
781 break; 735 break;
782 736
783#define FKEY(n, fkey) \ 737#define FKEY(n, fkey) \
840 break; 794 break;
841 } 795 }
842 796
843 if (newlen) 797 if (newlen)
844 len = strlen (kbuf); 798 len = strlen (kbuf);
845 }
846 799
847 /* 800 /*
848 * Pass meta for all function keys, if 'meta' option set 801 * Pass meta for all function keys, if 'meta' option set
849 */ 802 */
850#ifdef META8_OPTION 803#ifdef META8_OPTION
1035void 988void
1036rxvt_term::flush () 989rxvt_term::flush ()
1037{ 990{
1038 flush_ev.stop (); 991 flush_ev.stop ();
1039 992
1040#ifdef ENABLE_TRANSPARENCY 993#ifdef HAVE_BG_PIXMAP
1041 if (want_full_refresh) 994 if (bgPixmap.check_clearChanged ())
1042 { 995 {
1043 want_full_refresh = 0; 996// scr_clear (true); This needs to be researched further!
1044 scr_clear ();
1045 scr_touch (false); 997 scr_touch (false);
1046 } 998 }
1047#endif 999#endif
1048 1000
1049 if (want_refresh) 1001 if (want_refresh)
1094 } 1046 }
1095 1047
1096 display->flush (); 1048 display->flush ();
1097} 1049}
1098 1050
1051/* checks wether a refresh is requested and starts the refresh timer */
1099void 1052void
1100rxvt_term::check_cb (check_watcher &w) 1053rxvt_term::refresh_check ()
1101{ 1054{
1102 make_current (); 1055 if (want_refresh && !flush_ev.is_active ())
1056 flush_ev.start (1. / 60.); // refresh at max. 60 Hz normally
1103 1057
1104 display->flush (); 1058 display->flush ();
1105
1106 if (want_refresh && !flush_ev.active)
1107 flush_ev.start (NOW + 1. / 60.); // refresh at max. 60 hz normally
1108} 1059}
1109 1060
1110void 1061void
1111rxvt_term::flush_cb (time_watcher &w) 1062rxvt_term::flush_cb (ev::timer &w, int revents)
1112{ 1063{
1113 make_current (); 1064 make_current ();
1114 1065
1115 refresh_count = 0; 1066 refresh_count = 0;
1116 flush (); 1067 flush ();
1117} 1068}
1118 1069
1119#ifdef CURSOR_BLINK 1070#ifdef CURSOR_BLINK
1120void 1071void
1121rxvt_term::cursor_blink_cb (time_watcher &w) 1072rxvt_term::cursor_blink_cb (ev::timer &w, int revents)
1122{ 1073{
1123 hidden_cursor = !hidden_cursor; 1074 hidden_cursor = !hidden_cursor;
1124 want_refresh = 1; 1075 want_refresh = 1;
1125 1076 refresh_check ();
1126 w.start (w.at + CURSOR_BLINK_INTERVAL);
1127} 1077}
1128#endif 1078#endif
1129 1079
1130#ifdef TEXT_BLINK 1080#ifdef TEXT_BLINK
1131void 1081void
1132rxvt_term::text_blink_cb (time_watcher &w) 1082rxvt_term::text_blink_cb (ev::timer &w, int revents)
1133{ 1083{
1134 if (scr_refresh_rend (RS_Blink, RS_Blink)) 1084 if (scr_refresh_rend (RS_Blink, RS_Blink))
1135 { 1085 {
1136 hidden_text = !hidden_text; 1086 hidden_text = !hidden_text;
1137 want_refresh = 1; 1087 want_refresh = 1;
1138 w.start (w.at + TEXT_BLINK_INTERVAL); 1088 refresh_check ();
1139 } 1089 }
1090 else
1091 w.stop ();
1140} 1092}
1141#endif 1093#endif
1142 1094
1143#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 1095#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
1144void 1096void
1145rxvt_term::cont_scroll_cb (time_watcher &w) 1097rxvt_term::cont_scroll_cb (ev::timer &w, int revents)
1146{ 1098{
1147 if ((scrollbar_isUp() || scrollbar_isDn()) && 1099 if ((scrollBar.state == STATE_UP || scrollBar.state == STATE_DOWN)
1148 scr_page (scrollbar_isUp() ? UP : DN, 1)) 1100 && scr_page (scrollBar.state == STATE_UP ? UP : DN, 1))
1149 { 1101 {
1150 want_refresh = 1; 1102 want_refresh = 1;
1151 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1103 refresh_check ();
1152 } 1104 }
1105 else
1106 w.stop ();
1153} 1107}
1154#endif 1108#endif
1155 1109
1156#ifdef SELECTION_SCROLLING 1110#ifdef SELECTION_SCROLLING
1157void 1111void
1158rxvt_term::sel_scroll_cb (time_watcher &w) 1112rxvt_term::sel_scroll_cb (ev::timer &w, int revents)
1159{ 1113{
1160 if (scr_page (scroll_selection_dir, scroll_selection_lines)) 1114 if (scr_page (scroll_selection_dir, scroll_selection_lines))
1161 { 1115 {
1162 selection_extend (selection_save_x, selection_save_y, selection_save_state); 1116 selection_extend (selection_save_x, selection_save_y, selection_save_state);
1163 want_refresh = 1; 1117 want_refresh = 1;
1164 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1118 refresh_check ();
1165 } 1119 }
1120 else
1121 w.stop ();
1166} 1122}
1167#endif 1123#endif
1168 1124
1169#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING) 1125#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
1170void 1126void
1171rxvt_term::slip_wheel_cb (time_watcher &w) 1127rxvt_term::slip_wheel_cb (ev::timer &w, int revents)
1172{ 1128{
1173 if (mouse_slip_wheel_speed == 0 1129 if (scr_changeview (view_start - mouse_slip_wheel_speed))
1174 || mouse_slip_wheel_speed < 0 ? scr_page (DN, -mouse_slip_wheel_speed)
1175 : scr_page (UP, mouse_slip_wheel_speed))
1176 { 1130 {
1177 if (view_start == top_row || view_start == 0)
1178 mouse_slip_wheel_speed = 0;
1179
1180 want_refresh = 1; 1131 want_refresh = 1;
1181 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1132 refresh_check ();
1133 }
1134
1135 if (view_start == top_row || view_start == 0 || mouse_slip_wheel_speed == 0)
1136 {
1137 mouse_slip_wheel_speed = 0;
1138 w.stop ();
1182 } 1139 }
1183} 1140}
1184#endif 1141#endif
1185 1142
1186#if LINUX_YIELD_HACK 1143#if LINUX_YIELD_HACK
1187static struct event_handler 1144static struct event_handler
1188{ 1145{
1189 check_watcher yield_ev; 1146 ev::prepare yield_ev;
1190 1147
1191 void yield_cb (check_watcher &w) 1148 void yield_cb (ev::prepare &w, int revents)
1192 { 1149 {
1193 // this should really be sched_yield(), but the linux guys thought 1150 // this should really be sched_yield(), but the linux guys thought
1194 // that giving a process calling sched_yield () less cpu time than 1151 // that giving a process calling sched_yield () less cpu time than
1195 // ones with high nice levels is a useful thing to do. It surely is is 1152 // ones with high nice levels is a useful thing to do. It surely is is
1196 // allowed by the sus... as is returning ENOSYS. 1153 // allowed by the sus... as is returning ENOSYS.
1247 1204
1248 return false; 1205 return false;
1249} 1206}
1250 1207
1251void 1208void
1252rxvt_term::pty_cb (io_watcher &w, short revents) 1209rxvt_term::pty_cb (ev::io &w, int revents)
1253{ 1210{
1254 make_current (); 1211 make_current ();
1255 1212
1256 if (revents & EVENT_READ) 1213 if (revents & ev::READ)
1257 // loop, but don't allow a single term to monopolize us 1214 // loop, but don't allow a single term to monopolize us
1258 while (pty_fill ()) 1215 while (pty_fill ())
1259 if (cmd_parse ()) 1216 if (cmd_parse ())
1260 break; 1217 break;
1261 1218
1262 if (revents & EVENT_WRITE) 1219 if (revents & ev::WRITE)
1263 pty_write (); 1220 pty_write ();
1221
1222 refresh_check ();
1264} 1223}
1265 1224
1266void 1225void
1267rxvt_term::pointer_unblank () 1226rxvt_term::pointer_unblank ()
1268{ 1227{
1271 1230
1272#ifdef POINTER_BLANK 1231#ifdef POINTER_BLANK
1273 hidden_pointer = 0; 1232 hidden_pointer = 0;
1274 1233
1275 if (option (Opt_pointerBlank)) 1234 if (option (Opt_pointerBlank))
1276 pointer_ev.start (NOW + pointerBlankDelay); 1235 pointer_ev.start (pointerBlankDelay);
1277#endif 1236#endif
1278} 1237}
1279 1238
1280#ifdef POINTER_BLANK 1239#ifdef POINTER_BLANK
1281void 1240void
1289 1248
1290 hidden_pointer = 1; 1249 hidden_pointer = 1;
1291} 1250}
1292 1251
1293void 1252void
1294rxvt_term::pointer_cb (time_watcher &w) 1253rxvt_term::pointer_cb (ev::timer &w, int revents)
1295{ 1254{
1296 make_current (); 1255 make_current ();
1297 1256
1298 pointer_blank (); 1257 pointer_blank ();
1299} 1258}
1302void 1261void
1303rxvt_term::mouse_report (XButtonEvent &ev) 1262rxvt_term::mouse_report (XButtonEvent &ev)
1304{ 1263{
1305 int button_number, key_state = 0; 1264 int button_number, key_state = 0;
1306 int x, y; 1265 int x, y;
1266 int code = 32;
1307 1267
1308 x = ev.x; 1268 x = Pixel2Col (ev.x);
1309 y = ev.y; 1269 y = Pixel2Row (ev.y);
1310 pixel_position (&x, &y); 1270 if (ev.type == MotionNotify)
1271 {
1272 if (x == mouse_row && y == mouse_col)
1273 return;
1274 mouse_row = x;
1275 mouse_col = y;
1276 code += 32;
1277 }
1311 1278
1312 if (MEvent.button == AnyButton) 1279 if (MEvent.button == AnyButton)
1313 button_number = 3; 1280 button_number = 3;
1314 else 1281 else
1315 { 1282 {
1361 x + 1, 1328 x + 1,
1362 y + 1); 1329 y + 1);
1363#endif 1330#endif
1364 1331
1365 tt_printf ("\033[M%c%c%c", 1332 tt_printf ("\033[M%c%c%c",
1366 (32 + button_number + key_state), 1333 (code + button_number + key_state),
1367 (32 + x + 1), 1334 (32 + x + 1),
1368 (32 + y + 1)); 1335 (32 + y + 1));
1369} 1336}
1370 1337
1371/*{{{ process an X event */ 1338/*{{{ process an X event */
1475 && ev.xfocus.mode != NotifyGrab) 1442 && ev.xfocus.mode != NotifyGrab)
1476 focus_out (); 1443 focus_out ();
1477 break; 1444 break;
1478 1445
1479 case ConfigureNotify: 1446 case ConfigureNotify:
1447 /*fprintf (stderr, "ConfigureNotify for %X, parent is %X, geom is %dx%d%+d%+d, old geom was %dx%d\n",
1448 ev.xconfigure.window, parent[0], ev.xconfigure.width, ev.xconfigure.height, ev.xconfigure.x, ev.xconfigure.y,
1449 szHint.width, szHint.height);*/
1480 if (ev.xconfigure.window == parent[0]) 1450 if (ev.xconfigure.window == parent[0])
1481 { 1451 {
1482 while (XCheckTypedWindowEvent (dpy, ev.xconfigure.window, ConfigureNotify, &ev)) 1452 while (XCheckTypedWindowEvent (dpy, ev.xconfigure.window, ConfigureNotify, &ev))
1483 ; 1453 ;
1484 1454
1485 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height) 1455 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height)
1486 { 1456 {
1487 seen_resize = 1; 1457 seen_resize = 1;
1488 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1); 1458 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1);
1489#ifdef XPM_BACKGROUND 1459 }
1490 /* TODO: replace with update_pixmap() that should unify transparency and bg image handling ! */ 1460 else
1491 if (!option (Opt_transparent) && bgPixmap.window_size_sensitive ()) 1461 {
1462#ifdef HAVE_BG_PIXMAP
1463 if (bgPixmap.window_position_sensitive ())
1492 { 1464 {
1465 if (mapped)
1466 update_background ();
1493 resize_pixmap (); 1467 else
1494 scr_touch (true); 1468 bgPixmap.invalidate ();
1495 } 1469 }
1496#endif 1470#endif
1497 } 1471 }
1498 1472
1499 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END)); 1473 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END));
1500
1501#ifdef ENABLE_TRANSPARENCY
1502 if (option (Opt_transparent))
1503 check_our_parents ();
1504#endif
1505 } 1474 }
1506 break; 1475 break;
1507 1476
1508 case PropertyNotify: 1477 case PropertyNotify:
1509 if (!HOOK_INVOKE ((this, HOOK_PROPERTY_NOTIFY, DT_XEVENT, &ev, DT_END))) 1478 if (!HOOK_INVOKE ((this, HOOK_PROPERTY_NOTIFY, DT_XEVENT, &ev, DT_END)))
1525 case SelectionRequest: 1494 case SelectionRequest:
1526 selection_send (ev.xselectionrequest); 1495 selection_send (ev.xselectionrequest);
1527 break; 1496 break;
1528 1497
1529 case MapNotify: 1498 case MapNotify:
1499#ifdef HAVE_BG_PIXMAP
1500 /* This is needed spcifically to fix the case of no window manager or a
1501 * non-reparenting window manager. In those cases we never get first
1502 * ConfigureNotify. Also that speeds startup under normal WM, by taking
1503 * care of multiplicity of ConfigureNotify events arriwing while WM does
1504 * reparenting.
1505 * We should not render background immidiately, as there could be several
1506 * ConfigureNotify's to follow. Lets take care of all of them in one scoop
1507 * by scheduling background redraw as soon as we can, but giving a short
1508 * bit of time for ConfigureNotifies to arrive.
1509 * We should render background PRIOR to drawing any text, but AFTER all
1510 * of ConfigureNotifys for the best results.
1511 */
1512 if (bgPixmap.flags & bgPixmap_t::isInvalid)
1513 update_background_ev.start (0.025);
1514#endif
1530 mapped = 1; 1515 mapped = 1;
1531#ifdef TEXT_BLINK 1516#ifdef TEXT_BLINK
1532 text_blink_ev.start (NOW + TEXT_BLINK_INTERVAL); 1517 text_blink_ev.start ();
1533#endif 1518#endif
1534 HOOK_INVOKE ((this, HOOK_MAP_NOTIFY, DT_XEVENT, &ev, DT_END)); 1519 HOOK_INVOKE ((this, HOOK_MAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1535 break; 1520 break;
1536 1521
1537 case UnmapNotify: 1522 case UnmapNotify:
1539#ifdef TEXT_BLINK 1524#ifdef TEXT_BLINK
1540 text_blink_ev.stop (); 1525 text_blink_ev.stop ();
1541#endif 1526#endif
1542 HOOK_INVOKE ((this, HOOK_UNMAP_NOTIFY, DT_XEVENT, &ev, DT_END)); 1527 HOOK_INVOKE ((this, HOOK_UNMAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1543 break; 1528 break;
1544
1545#ifdef ENABLE_TRANSPARENCY
1546 case ReparentNotify:
1547 rootwin_cb (ev);
1548 break;
1549#endif /* ENABLE_TRANSPARENCY */
1550 1529
1551 case GraphicsExpose: 1530 case GraphicsExpose:
1552 case Expose: 1531 case Expose:
1553 if (ev.xany.window == vt) 1532 if (ev.xany.window == vt)
1554 { 1533 {
1555 do 1534 do
1535 {
1556 scr_expose (ev.xexpose.x, ev.xexpose.y, 1536 scr_expose (ev.xexpose.x, ev.xexpose.y,
1557 ev.xexpose.width, ev.xexpose.height, False); 1537 ev.xexpose.width, ev.xexpose.height, False);
1538 }
1558 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev)); 1539 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev));
1559 1540
1560 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose; 1541 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose;
1561 1542
1562 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev)) 1543 while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev))
1544 {
1563 scr_expose (ev.xexpose.x, ev.xexpose.y, 1545 scr_expose (ev.xexpose.x, ev.xexpose.y,
1564 ev.xexpose.width, ev.xexpose.height, False); 1546 ev.xexpose.width, ev.xexpose.height, False);
1547 }
1565 1548
1566 want_refresh = 1; 1549 want_refresh = 1;
1567 } 1550 }
1568 else 1551 else
1569 { 1552 {
1572 while (XCheckTypedWindowEvent (dpy, ev.xany.window, Expose, &unused_event)) 1555 while (XCheckTypedWindowEvent (dpy, ev.xany.window, Expose, &unused_event))
1573 ; 1556 ;
1574 while (XCheckTypedWindowEvent (dpy, ev.xany.window, GraphicsExpose, &unused_event)) 1557 while (XCheckTypedWindowEvent (dpy, ev.xany.window, GraphicsExpose, &unused_event))
1575 ; 1558 ;
1576 1559
1577 if (isScrollbarWindow (ev.xany.window)) 1560 if (scrollBar.state && ev.xany.window == scrollBar.win)
1578 { 1561 {
1579 scrollBar.setIdle (); 1562 scrollBar.state = STATE_IDLE;
1580 scrollbar_show (0); 1563 scrollbar_show (0);
1581 } 1564 }
1582
1583#ifdef ENABLE_TRANSPARENCY
1584 if (am_transparent && ev.xany.window == parent[0])
1585 XClearWindow (dpy, ev.xany.window);
1586#endif
1587 } 1565 }
1588 break; 1566 break;
1589 1567
1590 case MotionNotify: 1568 case MotionNotify:
1591#ifdef POINTER_BLANK 1569#ifdef POINTER_BLANK
1592 if (hidden_pointer) 1570 if (hidden_pointer)
1593 pointer_unblank (); 1571 pointer_unblank ();
1594#endif 1572#endif
1573 if ((priv_modes & PrivMode_MouseBtnEvent && ev.xbutton.state & (Button1Mask|Button2Mask|Button3Mask))
1574 || priv_modes & PrivMode_MouseAnyEvent)
1575 mouse_report (ev.xbutton);
1595 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate) 1576 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate)
1596 break; 1577 break;
1597 1578
1598 if (ev.xany.window == vt) 1579 if (ev.xany.window == vt)
1599 { 1580 {
1633 int dist; 1614 int dist;
1634 1615
1635 /* don't clobber the current delay if we are 1616 /* don't clobber the current delay if we are
1636 * already in the middle of scrolling. 1617 * already in the middle of scrolling.
1637 */ 1618 */
1638 if (!sel_scroll_ev.active) 1619 if (!sel_scroll_ev.is_active ())
1639 sel_scroll_ev.start (NOW + SCROLLBAR_INITIAL_DELAY); 1620 sel_scroll_ev.start (SCROLLBAR_INITIAL_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
1640 1621
1641 /* save the event params so we can highlight 1622 /* save the event params so we can highlight
1642 * the selection in the pending-scroll loop 1623 * the selection in the pending-scroll loop
1643 */ 1624 */
1644 selection_save_x = ev.xbutton.x; 1625 selection_save_x = ev.xbutton.x;
1666 else 1647 else
1667 { 1648 {
1668 /* we are within the text window, so we 1649 /* we are within the text window, so we
1669 * shouldn't be scrolling 1650 * shouldn't be scrolling
1670 */ 1651 */
1671 if (sel_scroll_ev.active)
1672 sel_scroll_ev.stop(); 1652 sel_scroll_ev.stop();
1673 } 1653 }
1674#endif 1654#endif
1675#ifdef MOUSE_THRESHOLD 1655#ifdef MOUSE_THRESHOLD
1676 } 1656 }
1677#endif 1657#endif
1678 } 1658 }
1679 } 1659 }
1680 else if (isScrollbarWindow (ev.xany.window) && scrollbar_isMotion ()) 1660 else if (scrollBar.state == STATE_MOTION && ev.xany.window == scrollBar.win)
1681 { 1661 {
1682 while (XCheckTypedWindowEvent (dpy, scrollBar.win, 1662 while (XCheckTypedWindowEvent (dpy, scrollBar.win,
1683 MotionNotify, &ev)) 1663 MotionNotify, &ev))
1684 ; 1664 ;
1685 1665
1703 { 1683 {
1704 hidden_cursor = 0; 1684 hidden_cursor = 0;
1705 want_refresh = 1; 1685 want_refresh = 1;
1706 } 1686 }
1707 1687
1708 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL); 1688 cursor_blink_ev.again ();
1709 } 1689 }
1710#endif 1690#endif
1711 1691
1712#if defined(POINTER_BLANK) 1692#if defined(POINTER_BLANK)
1713 if (option (Opt_pointerBlank) && pointerBlankDelay > 0) 1693 if (option (Opt_pointerBlank) && pointerBlankDelay > 0)
1720 1700
1721 if (ev.type == KeyPress && hidden_pointer == 0) 1701 if (ev.type == KeyPress && hidden_pointer == 0)
1722 pointer_blank (); 1702 pointer_blank ();
1723 } 1703 }
1724#endif 1704#endif
1705
1706 refresh_check ();
1725} 1707}
1726 1708
1727void 1709void
1728rxvt_term::focus_in () 1710rxvt_term::focus_in ()
1729{ 1711{
1741 XSetICFocus (Input_Context); 1723 XSetICFocus (Input_Context);
1742 } 1724 }
1743#endif 1725#endif
1744#if CURSOR_BLINK 1726#if CURSOR_BLINK
1745 if (option (Opt_cursorBlink)) 1727 if (option (Opt_cursorBlink))
1746 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL); 1728 cursor_blink_ev.again ();
1747#endif 1729#endif
1748#if OFF_FOCUS_FADING 1730#if OFF_FOCUS_FADING
1749 if (rs[Rs_fade]) 1731 if (rs[Rs_fade])
1750 { 1732 {
1751 pix_colors = pix_colors_focused; 1733 pix_colors = pix_colors_focused;
1753 } 1735 }
1754#endif 1736#endif
1755#if ENABLE_FRILLS 1737#if ENABLE_FRILLS
1756 if (option (Opt_urgentOnBell)) 1738 if (option (Opt_urgentOnBell))
1757 { 1739 {
1758 XWMHints *h;
1759
1760 h = XGetWMHints(dpy, parent[0]); 1740 if (XWMHints *h = XGetWMHints(dpy, parent[0]))
1761 if (h != NULL)
1762 { 1741 {
1763 h->flags &= ~XUrgencyHint; 1742 h->flags &= ~XUrgencyHint;
1764 XSetWMHints(dpy, parent[0], h); 1743 XSetWMHints (dpy, parent[0], h);
1765 } 1744 }
1766 } 1745 }
1767#endif 1746#endif
1768 } 1747 }
1769} 1748}
1792 XUnsetICFocus (Input_Context); 1771 XUnsetICFocus (Input_Context);
1793#endif 1772#endif
1794#if CURSOR_BLINK 1773#if CURSOR_BLINK
1795 if (option (Opt_cursorBlink)) 1774 if (option (Opt_cursorBlink))
1796 cursor_blink_ev.stop (); 1775 cursor_blink_ev.stop ();
1776
1797 hidden_cursor = 0; 1777 hidden_cursor = 0;
1798#endif 1778#endif
1799#if OFF_FOCUS_FADING 1779#if OFF_FOCUS_FADING
1800 if (rs[Rs_fade]) 1780 if (rs[Rs_fade])
1801 { 1781 {
1835 case PropertyNotify: 1815 case PropertyNotify:
1836 /* 1816 /*
1837 * if user used some Esetroot compatible prog to set the root bg, 1817 * if user used some Esetroot compatible prog to set the root bg,
1838 * use the property to determine the pixmap. We use it later on. 1818 * use the property to determine the pixmap. We use it later on.
1839 */ 1819 */
1840 if (ev.xproperty.atom != xa[XA_XROOTPMAP_ID] 1820 if (ev.xproperty.atom == xa[XA_XROOTPMAP_ID]
1841 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID]) 1821 || ev.xproperty.atom == xa[XA_ESETROOT_PMAP_ID])
1842 return; 1822 {
1823 bgPixmap.set_root_pixmap ();
1824 update_background ();
1825 }
1843 1826
1844 /* FALLTHROUGH */
1845 case ReparentNotify:
1846 if (option (Opt_transparent))
1847 check_our_parents ();
1848 break; 1827 break;
1849 } 1828 }
1850# endif 1829# endif
1830
1831 refresh_check ();
1851} 1832}
1852#endif 1833#endif
1853 1834
1854void 1835void
1855rxvt_term::button_press (XButtonEvent &ev) 1836rxvt_term::button_press (XButtonEvent &ev)
1910 mouse_report (ev); 1891 mouse_report (ev);
1911 } 1892 }
1912#else 1893#else
1913 MEvent.button = ev.button; 1894 MEvent.button = ev.button;
1914 mouse_report (ev); 1895 mouse_report (ev);
1915#endif /* MOUSE_REPORT_DOUBLECLICK */ 1896#endif /* MOUSE_REPORT_DOUBLECLICK */
1916 1897
1917 } 1898 }
1918 else 1899 else
1919 { 1900 {
1920 if (ev.button != MEvent.button) 1901 if (ev.button != MEvent.button)
1968 } 1949 }
1969 1950
1970 /* 1951 /*
1971 * Scrollbar window processing of button press 1952 * Scrollbar window processing of button press
1972 */ 1953 */
1973 if (isScrollbarWindow (ev.window)) 1954 if (scrollBar.state && ev.window == scrollBar.win)
1974 { 1955 {
1975 scrollBar.setIdle (); 1956 page_dirn direction = NO_DIR;
1957
1958 if (scrollBar.upButton (ev.y))
1959 direction = UP; /* up */
1960 else if (scrollBar.dnButton (ev.y))
1961 direction = DN; /* down */
1962
1963 scrollBar.state = STATE_IDLE;
1976 /* 1964 /*
1977 * Rxvt-style scrollbar: 1965 * Rxvt-style scrollbar:
1978 * move up if mouse is above slider 1966 * move up if mouse is above slider
1979 * move dn if mouse is below slider 1967 * move dn if mouse is below slider
1980 * 1968 *
1989 /* 1977 /*
1990 * Mouse report disabled scrollbar: 1978 * Mouse report disabled scrollbar:
1991 * arrow buttons - send up/down 1979 * arrow buttons - send up/down
1992 * click on scrollbar - send pageup/down 1980 * click on scrollbar - send pageup/down
1993 */ 1981 */
1994 if ((scrollBar.style == R_SB_NEXT 1982 if (direction == UP)
1995 && scrollbarnext_upButton (ev.y))
1996 || (scrollBar.style == R_SB_RXVT
1997 && scrollbarrxvt_upButton (ev.y)))
1998 tt_printf ("\033[A"); 1983 tt_printf ("\033[A");
1999 else if ((scrollBar.style == R_SB_NEXT 1984 else if (direction == DN)
2000 && scrollbarnext_dnButton (ev.y))
2001 || (scrollBar.style == R_SB_RXVT
2002 && scrollbarrxvt_dnButton (ev.y)))
2003 tt_printf ("\033[B"); 1985 tt_printf ("\033[B");
2004 else 1986 else
2005 switch (ev.button) 1987 switch (ev.button)
2006 { 1988 {
2007 case Button2: 1989 case Button2:
2014 tt_printf ("\033[5~"); 1996 tt_printf ("\033[5~");
2015 break; 1997 break;
2016 } 1998 }
2017 } 1999 }
2018 else 2000 else
2019#endif /* NO_SCROLLBAR_REPORT */ 2001#endif /* NO_SCROLLBAR_REPORT */
2020
2021 {
2022 char upordown = 0;
2023
2024 if (scrollBar.style == R_SB_NEXT)
2025 { 2002 {
2026 if (scrollbarnext_upButton (ev.y)) 2003 if (direction != NO_DIR)
2027 upordown = -1; /* up */
2028 else if (scrollbarnext_dnButton (ev.y))
2029 upordown = 1; /* down */
2030 }
2031 else if (scrollBar.style == R_SB_RXVT)
2032 {
2033 if (scrollbarrxvt_upButton (ev.y))
2034 upordown = -1; /* up */
2035 else if (scrollbarrxvt_dnButton (ev.y))
2036 upordown = 1; /* down */
2037 }
2038 if (upordown)
2039 { 2004 {
2040#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 2005#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
2006 if (!cont_scroll_ev.is_active ())
2041 cont_scroll_ev.start (NOW + SCROLLBAR_INITIAL_DELAY); 2007 cont_scroll_ev.start (SCROLLBAR_INITIAL_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
2042#endif 2008#endif
2043 if (scr_page (upordown < 0 ? UP : DN, 1)) 2009 if (scr_page (direction, 1))
2044 { 2010 {
2045 if (upordown < 0) 2011 if (direction == UP)
2046 scrollBar.setUp (); 2012 scrollBar.state = STATE_UP;
2047 else 2013 else
2048 scrollBar.setDn (); 2014 scrollBar.state = STATE_DOWN;
2049 } 2015 }
2050 } 2016 }
2051 else 2017 else
2052 switch (ev.button) 2018 switch (ev.button)
2053 { 2019 {
2054 case Button2: 2020 case Button2:
2055 switch (scrollbar_align) 2021 switch (scrollBar.align)
2056 { 2022 {
2057 case R_SB_ALIGN_TOP: 2023 case R_SB_ALIGN_TOP:
2058 csrO = 0; 2024 csrO = 0;
2059 break; 2025 break;
2060 case R_SB_ALIGN_CENTRE: 2026 case R_SB_ALIGN_CENTRE:
2068 if (scrollBar.style == R_SB_XTERM 2034 if (scrollBar.style == R_SB_XTERM
2069 || scrollbar_above_slider (ev.y) 2035 || scrollbar_above_slider (ev.y)
2070 || scrollbar_below_slider (ev.y)) 2036 || scrollbar_below_slider (ev.y))
2071 scr_move_to (scrollbar_position (ev.y) - csrO, scrollbar_size ()); 2037 scr_move_to (scrollbar_position (ev.y) - csrO, scrollbar_size ());
2072 2038
2073 scrollBar.setMotion (); 2039 scrollBar.state = STATE_MOTION;
2074 break; 2040 break;
2075 2041
2076 case Button1: 2042 case Button1:
2077 if (scrollbar_align == R_SB_ALIGN_CENTRE) 2043 if (scrollBar.align == R_SB_ALIGN_CENTRE)
2078 csrO = ev.y - scrollBar.top; 2044 csrO = ev.y - scrollBar.top;
2079 /* FALLTHROUGH */ 2045 /* FALLTHROUGH */
2080 2046
2081 case Button3: 2047 case Button3:
2082 if (scrollBar.style != R_SB_XTERM) 2048 if (scrollBar.style != R_SB_XTERM)
2092 scr_page (DN, nrow - 1); 2058 scr_page (DN, nrow - 1);
2093# else 2059# else
2094 scr_page (DN, nrow / 4); 2060 scr_page (DN, nrow / 4);
2095# endif 2061# endif
2096 else 2062 else
2097 scrollBar.setMotion (); 2063 scrollBar.state = STATE_MOTION;
2098 } 2064 }
2099 else 2065 else
2100 { 2066 {
2101 scr_page ((ev.button == Button1 ? DN : UP), 2067 scr_page ((ev.button == Button1 ? DN : UP),
2102 (nrow 2068 (nrow
2119 2085
2120 csrO = 0; /* reset csr Offset */ 2086 csrO = 0; /* reset csr Offset */
2121 if (!bypass_keystate) 2087 if (!bypass_keystate)
2122 reportmode = !! (priv_modes & PrivMode_mouse_report); 2088 reportmode = !! (priv_modes & PrivMode_mouse_report);
2123 2089
2124 if (scrollbar_isUpDn ()) 2090 if (scrollBar.state == STATE_UP || scrollBar.state == STATE_DOWN)
2125 { 2091 {
2126 scrollBar.setIdle (); 2092 scrollBar.state = STATE_IDLE;
2127 scrollbar_show (0); 2093 scrollbar_show (0);
2128 } 2094 }
2129 2095
2130#ifdef SELECTION_SCROLLING 2096#ifdef SELECTION_SCROLLING
2131 if (sel_scroll_ev.active)
2132 sel_scroll_ev.stop(); 2097 sel_scroll_ev.stop();
2133#endif 2098#endif
2134 2099
2135 if (ev.window == vt) 2100 if (ev.window == vt)
2136 { 2101 {
2137 if (HOOK_INVOKE ((this, HOOK_BUTTON_RELEASE, DT_XEVENT, &ev, DT_END))) 2102 if (HOOK_INVOKE ((this, HOOK_BUTTON_RELEASE, DT_XEVENT, &ev, DT_END)))
2161 mouse_report (ev); 2126 mouse_report (ev);
2162 } 2127 }
2163#else /* MOUSE_REPORT_DOUBLECLICK */ 2128#else /* MOUSE_REPORT_DOUBLECLICK */
2164 MEvent.button = AnyButton; 2129 MEvent.button = AnyButton;
2165 mouse_report (ev); 2130 mouse_report (ev);
2166#endif /* MOUSE_REPORT_DOUBLECLICK */ 2131#endif /* MOUSE_REPORT_DOUBLECLICK */
2167 return; 2132 return;
2168 } 2133 }
2169 2134
2170 /* 2135 /*
2171 * dumb hack to compensate for the failure of click-and-drag 2136 * dumb hack to compensate for the failure of click-and-drag
2209 { 2174 {
2210 mouse_slip_wheel_speed += v ? -1 : 1; 2175 mouse_slip_wheel_speed += v ? -1 : 1;
2211 if (mouse_slip_wheel_speed < -nrow) mouse_slip_wheel_speed = -nrow; 2176 if (mouse_slip_wheel_speed < -nrow) mouse_slip_wheel_speed = -nrow;
2212 if (mouse_slip_wheel_speed > +nrow) mouse_slip_wheel_speed = +nrow; 2177 if (mouse_slip_wheel_speed > +nrow) mouse_slip_wheel_speed = +nrow;
2213 2178
2214 if (slip_wheel_ev.at < NOW) 2179 if (!slip_wheel_ev.is_active ())
2215 slip_wheel_ev.at = NOW + SCROLLBAR_CONTINUOUS_DELAY; 2180 slip_wheel_ev.start (SCROLLBAR_CONTINUOUS_DELAY, SCROLLBAR_CONTINUOUS_DELAY);
2216
2217 slip_wheel_ev.start ();
2218 } 2181 }
2219 else 2182 else
2183# endif
2220 { 2184 {
2221# endif
2222 scr_page (v, i); 2185 scr_page (v, i);
2223 scrollbar_show (1); 2186 scrollbar_show (1);
2224# ifdef MOUSE_SLIP_WHEELING
2225 } 2187 }
2226# endif
2227 } 2188 }
2228 break; 2189 break;
2229#endif 2190#endif
2230 } 2191 }
2231 } 2192 }
2290 2251
2291 if (!option (Opt_jumpScroll) || refresh_count >= nrow - 1) 2252 if (!option (Opt_jumpScroll) || refresh_count >= nrow - 1)
2292 { 2253 {
2293 refresh_count = 0; 2254 refresh_count = 0;
2294 2255
2295 if (!option (Opt_skipScroll) || io_manager::now () > NOW + 1. / 60.) 2256 if (!option (Opt_skipScroll) || ev_time () > ev::now () + 1. / 60.)
2296 { 2257 {
2297 refreshnow = true; 2258 refreshnow = true;
2298 ch = NOCHAR; 2259 ch = NOCHAR;
2299 break; 2260 break;
2300 } 2261 }
2511 } 2472 }
2512 } 2473 }
2513 2474
2514 pclose_printer (fd); 2475 pclose_printer (fd);
2515} 2476}
2516#endif /* PRINTPIPE */ 2477#endif /* PRINTPIPE */
2517/*}}} */ 2478/*}}} */
2518 2479
2519/* *INDENT-OFF* */ 2480/* *INDENT-OFF* */
2520enum { 2481enum {
2521 C1_40 = 0x40, 2482 C1_40 = 0x40,
2807rxvt_term::process_csi_seq () 2768rxvt_term::process_csi_seq ()
2808{ 2769{
2809 unicode_t ch, priv, i; 2770 unicode_t ch, priv, i;
2810 unsigned int nargs, p; 2771 unsigned int nargs, p;
2811 int n, ndef; 2772 int n, ndef;
2812 int arg[ESC_ARGS]; 2773 int arg[ESC_ARGS] = { };
2813 2774
2814 memset (arg, 0, sizeof (arg));
2815 nargs = 0; 2775 nargs = 0;
2816 2776
2817 priv = 0; 2777 priv = 0;
2818 ch = cmd_getc (); 2778 ch = cmd_getc ();
2819 if (ch >= '<' && ch <= '?') 2779 if (ch >= '<' && ch <= '?')
2780 {
2820 { /* '<' '=' '>' '?' */ 2781 /* '<' '=' '>' '?' */
2821 priv = ch; 2782 priv = ch;
2822 ch = cmd_getc (); 2783 ch = cmd_getc ();
2823 } 2784 }
2824 2785
2825 /* read any numerical arguments */ 2786 /* read any numerical arguments */
2868 { 2829 {
2869 // first parameter is normally 0 for vt100, 1 for vt220, 'R' for rxvt, 2830 // first parameter is normally 0 for vt100, 1 for vt220, 'R' for rxvt,
2870 // 'U' for rxvt-unicode != 7.[34] (where it was broken). 2831 // 'U' for rxvt-unicode != 7.[34] (where it was broken).
2871 // 2832 //
2872 // second parameter is xterm patch level for xterm, MMmmpp (e.g. 20703) for rxvt 2833 // second parameter is xterm patch level for xterm, MMmmpp (e.g. 20703) for rxvt
2873 // and Mm (e.g. 72 for 7.2) for urxvt <= 7.2, and 94 for later versions, to signify 2834 // and Mm (e.g. 72 for 7.2) for urxvt <= 7.2, 94 for urxvt <= 8.3, and 95 for later
2874 // that we do not support xterm mouse reporting (should be 95 when we do). 2835 // versions.
2875 // 2836 //
2876 tt_printf ("\033[>%d;94;0c", 'U'); 2837 tt_printf ("\033[>%d;95;0c", 'U');
2877 } 2838 }
2878 break; 2839 break;
2840
2879 case '?': 2841 case '?':
2880 if (ch == 'h' || ch == 'l' || ch == 'r' || ch == 's' || ch == 't') 2842 if (ch == 'h' || ch == 'l' || ch == 'r' || ch == 's' || ch == 't')
2881 process_terminal_mode (ch, priv, nargs, arg); 2843 process_terminal_mode (ch, priv, nargs, arg);
2882 break; 2844 break;
2883 } 2845 }
3399 *buf++ = '\0'; 3361 *buf++ = '\0';
3400 3362
3401 process_color_seq (op, color, name, resp); 3363 process_color_seq (op, color, name, resp);
3402 } 3364 }
3403 break; 3365 break;
3366 case Rxvt_restoreFG:
3404 case XTerm_Color00: 3367 case XTerm_Color00:
3405 process_color_seq (op, Color_fg, str, resp); 3368 process_color_seq (op, Color_fg, str, resp);
3406 break; 3369 break;
3370 case Rxvt_restoreBG:
3407 case XTerm_Color01: 3371 case XTerm_Color01:
3408 process_color_seq (op, Color_bg, str, resp); 3372 process_color_seq (op, Color_bg, str, resp);
3409 break; 3373 break;
3410#ifndef NO_CURSORCOLOR 3374#ifndef NO_CURSORCOLOR
3411 case XTerm_Color_cursor: 3375 case XTerm_Color_cursor:
3435 break; 3399 break;
3436#endif 3400#endif
3437#if ENABLE_TRANSPARENCY 3401#if ENABLE_TRANSPARENCY
3438 case URxvt_Color_tint: 3402 case URxvt_Color_tint:
3439 process_color_seq (op, Color_tint, str, resp); 3403 process_color_seq (op, Color_tint, str, resp);
3404 {
3405 bool changed = false;
3440 3406
3441 check_our_parents (); 3407 if (ISSET_PIXCOLOR (Color_tint))
3408 changed = bgPixmap.set_tint (pix_colors_focused [Color_tint]);
3409 else
3410 changed = bgPixmap.unset_tint ();
3442 3411
3443 if (am_transparent) 3412 if (changed)
3444 want_full_refresh = want_refresh = 1; 3413 update_background ();
3414 }
3445 3415
3446 break; 3416 break;
3447#endif 3417#endif
3448 3418
3449#if XPM_BACKGROUND 3419#if BG_IMAGE_FROM_FILE
3450 case Rxvt_Pixmap: 3420 case Rxvt_Pixmap:
3451 { 3421 if (!strcmp (str, "?"))
3452 if (*str != ';')
3453 { 3422 {
3454 bgPixmap.handle_geometry (""); /* reset to default scaling */ 3423 char str[256];
3455 set_bgPixmap (str); /* change pixmap */ 3424
3456 scr_touch (true); 3425 sprintf (str, "[%dx%d+%d+%d]", /* can't presume snprintf () ! */
3426 min (bgPixmap.h_scale, 32767), min (bgPixmap.v_scale, 32767),
3427 min (bgPixmap.h_align, 32767), min (bgPixmap.v_align, 32767));
3428 process_xterm_seq (XTerm_title, str, CHAR_ST);
3457 } 3429 }
3458 3430 else
3431 {
3459 int changed = 0; 3432 int changed = 0;
3460 3433
3461 while ((str = strchr (str, ';')) != NULL) 3434 if (*str != ';')
3462 { 3435 {
3436 /* reset to default scaling :*/
3437 bgPixmap.unset_geometry ();
3438 if (bgPixmap.set_file (str)) /* change pixmap */
3439 changed++;
3440 str = strchr (str, ';');
3441 if (str == NULL)
3442 bgPixmap.set_defaultGeometry ();
3443 }
3444
3445 while (str)
3446 {
3463 str++; 3447 str++;
3464 changed += bgPixmap.handle_geometry (str); 3448 if (bgPixmap.set_geometry (str))
3449 changed++;
3450 str = strchr (str, ';');
3465 } 3451 }
3466 3452
3467 if (changed) 3453 if (changed)
3468 { 3454 update_background ();
3469 resize_pixmap ();
3470 scr_touch (true);
3471 } 3455 }
3472#if ENABLE_TRANSPARENCY && defined(HAVE_AFTERIMAGE)
3473 if (option (Opt_transparent))
3474 check_our_parents ();
3475#endif
3476 }
3477 break; 3456 break;
3478#endif 3457#endif
3479
3480 case Rxvt_restoreFG:
3481 set_window_color (Color_fg, str);
3482 break;
3483 case Rxvt_restoreBG:
3484 set_window_color (Color_bg, str);
3485 break;
3486 3458
3487 case XTerm_logfile: 3459 case XTerm_logfile:
3488 // TODO, when secure mode? 3460 // TODO, when secure mode?
3489 break; 3461 break;
3490 3462
3605{ 3577{
3606 unsigned int i, j; 3578 unsigned int i, j;
3607 int state; 3579 int state;
3608 3580
3609 static const struct 3581 static const struct
3610 { 3582 {
3611 const int argval; 3583 const int argval;
3612 const unsigned long bit; 3584 const unsigned long bit;
3613 }
3614
3615 argtopriv[] = { 3585 } argtopriv[] = {
3616 { 1, PrivMode_aplCUR }, 3586 { 1, PrivMode_aplCUR },
3617 { 2, PrivMode_vt52 }, 3587 { 2, PrivMode_vt52 },
3618 { 3, PrivMode_132 }, 3588 { 3, PrivMode_132 },
3619 { 4, PrivMode_smoothScroll }, 3589 { 4, PrivMode_smoothScroll },
3620 { 5, PrivMode_rVideo }, 3590 { 5, PrivMode_rVideo },
3636 { 66, PrivMode_aplKP }, 3606 { 66, PrivMode_aplKP },
3637#ifndef NO_BACKSPACE_KEY 3607#ifndef NO_BACKSPACE_KEY
3638 { 67, PrivMode_BackSpace }, 3608 { 67, PrivMode_BackSpace },
3639#endif 3609#endif
3640 { 1000, PrivMode_MouseX11 }, 3610 { 1000, PrivMode_MouseX11 },
3641 // 1001 Use Hilite Mouse Tracking. NYI, TODO 3611 { 1002, PrivMode_MouseBtnEvent },
3642 // 1002 Use Cell Motion Mouse Tracking. NYI, TODO 3612 { 1003, PrivMode_MouseAnyEvent },
3643 // 1003 Use All Motion Mouse Tracking. NYI, TODO
3644 { 1010, PrivMode_TtyOutputInh }, // rxvt extension 3613 { 1010, PrivMode_TtyOutputInh }, // rxvt extension
3645 { 1011, PrivMode_Keypress }, // rxvt extension 3614 { 1011, PrivMode_Keypress }, // rxvt extension
3646 // 1035 enable modifiers for alt, numlock NYI 3615 // 1035 enable modifiers for alt, numlock NYI
3647 // 1036 send ESC for meta keys NYI 3616 // 1036 send ESC for meta keys NYI
3648 // 1037 send DEL for keypad delete NYI 3617 // 1037 send DEL for keypad delete NYI
3649 { 1047, PrivMode_Screen }, 3618 { 1047, PrivMode_Screen },
3650 // 1048 save and restore cursor 3619 // 1048 save and restore cursor
3651 { 1049, PrivMode_Screen }, /* xterm extension, clear screen on ti rather than te */ 3620 { 1049, PrivMode_Screen }, /* xterm extension, clear screen on ti rather than te */
3652 // 1051, 1052, 1060, 1061 keyboard emulation NYI 3621 // 1051, 1052, 1060, 1061 keyboard emulation NYI
3622 { 2004, PrivMode_BracketPaste },
3653 }; 3623 };
3654 3624
3655 if (nargs == 0) 3625 if (nargs == 0)
3656 return; 3626 return;
3657 3627
3705 */ 3675 */
3706 PrivMode (1, PrivMode_vt52); 3676 PrivMode (1, PrivMode_vt52);
3707 break; 3677 break;
3708 case 3: /* 80/132 */ 3678 case 3: /* 80/132 */
3709 if (priv_modes & PrivMode_132OK) 3679 if (priv_modes & PrivMode_132OK)
3680 {
3681 scr_poweron ();
3710 set_widthheight (((state ? 132 : 80) * fwidth), height); 3682 set_widthheight (((state ? 132 : 80) * fwidth), 24 * fheight);
3683 }
3711 break; 3684 break;
3712 case 4: /* smooth scrolling */ 3685 case 4: /* smooth scrolling */
3713 set_option (Opt_jumpScroll, !state); 3686 set_option (Opt_jumpScroll, !state);
3714 break; 3687 break;
3715 case 5: /* reverse video */ 3688 case 5: /* reverse video */
3722 scr_autowrap (state); 3695 scr_autowrap (state);
3723 break; 3696 break;
3724 /* case 8: - auto repeat, can't do on a per window basis */ 3697 /* case 8: - auto repeat, can't do on a per window basis */
3725 case 9: /* X10 mouse reporting */ 3698 case 9: /* X10 mouse reporting */
3726 if (state) /* orthogonal */ 3699 if (state) /* orthogonal */
3727 priv_modes &= ~PrivMode_MouseX11; 3700 priv_modes &= ~(PrivMode_MouseX11|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent);
3728 break; 3701 break;
3729#ifdef scrollBar_esc 3702#ifdef scrollBar_esc
3730 case scrollBar_esc: 3703 case scrollBar_esc:
3731 if (scrollbar_mapping (state)) 3704 if (scrollbar_mapping (state))
3732 { 3705 {
3745 break; 3718 break;
3746 /* case 66: - application key pad */ 3719 /* case 66: - application key pad */
3747 /* case 67: - backspace key */ 3720 /* case 67: - backspace key */
3748 case 1000: /* X11 mouse reporting */ 3721 case 1000: /* X11 mouse reporting */
3749 if (state) /* orthogonal */ 3722 if (state) /* orthogonal */
3750 priv_modes &= ~PrivMode_MouseX10; 3723 priv_modes &= ~(PrivMode_MouseX10|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent);
3751 break; 3724 break;
3752#if 0
3753 case 1001: 3725 case 1002:
3754 break; /* X11 mouse highlighting */ 3726 case 1003:
3755#endif 3727 if (state)
3728 {
3729 priv_modes &= ~(PrivMode_MouseX10|PrivMode_MouseX11);
3730 priv_modes &= arg[i] == 1003 ? ~PrivMode_MouseBtnEvent : ~PrivMode_MouseAnyEvent;
3731 vt_emask_mouse = PointerMotionMask;
3732 }
3733 else
3734 vt_emask_mouse = NoEventMask;
3735 vt_select_input ();
3736 break;
3756 case 1010: /* scroll to bottom on TTY output inhibit */ 3737 case 1010: /* scroll to bottom on TTY output inhibit */
3757 set_option (Opt_scrollTtyOutput, !state); 3738 set_option (Opt_scrollTtyOutput, !state);
3758 break; 3739 break;
3759 case 1011: /* scroll to bottom on key press */ 3740 case 1011: /* scroll to bottom on key press */
3760 set_option (Opt_scrollTtyKeypress, state); 3741 set_option (Opt_scrollTtyKeypress, state);
3937rxvt_term::process_graphics () 3918rxvt_term::process_graphics ()
3938{ 3919{
3939 unicode_t ch, cmd = cmd_getc (); 3920 unicode_t ch, cmd = cmd_getc ();
3940 3921
3941 if (cmd == 'Q') 3922 if (cmd == 'Q')
3923 {
3942 { /* query graphics */ 3924 /* query graphics */
3943 tt_printf ("\033G0\012"); /* no graphics */ 3925 tt_printf ("\033G0\012"); /* no graphics */
3944 return; 3926 return;
3945 } 3927 }
3946 /* swallow other graphics sequences until terminating ':' */ 3928 /* swallow other graphics sequences until terminating ':' */
3947 do 3929 do
3997 v_buffer = (char *)realloc (v_buffer, v_buflen + len); 3979 v_buffer = (char *)realloc (v_buffer, v_buflen + len);
3998 3980
3999 memcpy (v_buffer + v_buflen, data, len); 3981 memcpy (v_buffer + v_buflen, data, len);
4000 v_buflen += len; 3982 v_buflen += len;
4001 3983
4002 pty_ev.set (EVENT_READ | EVENT_WRITE); 3984 pty_ev.set (ev::READ | ev::WRITE);
4003} 3985}
4004 3986
4005void rxvt_term::pty_write () 3987void rxvt_term::pty_write ()
4006{ 3988{
4007 int written = write (pty->pty, v_buffer, min (v_buflen, MAX_PTY_WRITE)); 3989 int written = write (pty->pty, v_buffer, min (v_buflen, MAX_PTY_WRITE));
4012 3994
4013 if (v_buflen == 0) 3995 if (v_buflen == 0)
4014 { 3996 {
4015 free (v_buffer); 3997 free (v_buffer);
4016 v_buffer = 0; 3998 v_buffer = 0;
4017 v_buflen = 0;
4018 3999
4019 pty_ev.set (EVENT_READ); 4000 pty_ev.set (ev::READ);
4020 return; 4001 return;
4021 } 4002 }
4022 4003
4023 memmove (v_buffer, v_buffer + written, v_buflen); 4004 memmove (v_buffer, v_buffer + written, v_buflen);
4024 } 4005 }
4025 else if (written != -1 || (errno != EAGAIN && errno != EINTR)) 4006 else if (written != -1 || (errno != EAGAIN && errno != EINTR))
4026 pty_ev.set (EVENT_READ); 4007 pty_ev.set (ev::READ);
4027} 4008}
4028 4009
4029/*----------------------- end-of-file (C source) -----------------------*/ 4010/*----------------------- end-of-file (C source) -----------------------*/
4030 4011

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines