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.28 by pcg, Fri Jan 16 22:11:09 2004 UTC vs.
Revision 1.31 by pcg, Thu Jan 29 23:26:01 2004 UTC

1/*--------------------------------*-C-*---------------------------------* 1/*--------------------------------*-C-*---------------------------------*
2 * File: command.c 2 * File: command.c
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * $Id: command.C,v 1.28 2004/01/16 22:11:09 pcg Exp $ 4 * $Id: command.C,v 1.31 2004/01/29 23:26:01 pcg Exp $
5 * 5 *
6 * All portions of code are copyright by their respective author/s. 6 * All portions of code are copyright by their respective author/s.
7 * Copyright (c) 1992 John Bovey, University of Kent at Canterbury <jdb@ukc.ac.uk> 7 * Copyright (c) 1992 John Bovey, University of Kent at Canterbury <jdb@ukc.ac.uk>
8 * - original version 8 * - original version
9 * Copyright (c) 1994 Robert Nation <nation@rocket.sanders.lockheed.com> 9 * Copyright (c) 1994 Robert Nation <nation@rocket.sanders.lockheed.com>
716 XEvent xev; 716 XEvent xev;
717 717
718 XNextEvent (Xdisplay, &xev); 718 XNextEvent (Xdisplay, &xev);
719 719
720#if defined(CURSOR_BLINK) 720#if defined(CURSOR_BLINK)
721 if ((Options & Opt_cursorBlink) 721 if ((Options & Opt_cursorBlink) && xev.type == KeyPress)
722 && xev.type == KeyPress)
723 { 722 {
724 if (hidden_cursor) 723 if (hidden_cursor)
725 { 724 {
726 hidden_cursor = 0; 725 hidden_cursor = 0;
727 want_refresh = 1; 726 want_refresh = 1;
728 } 727 }
729 728
730 blink_ev.start (NOW + BLINK_INTERVAL); 729 cursor_blink_ev.start (NOW + BLINK_INTERVAL);
731 } 730 }
732#endif 731#endif
733 732
734#if defined(POINTER_BLANK) 733#if defined(POINTER_BLANK)
735 if ((Options & Opt_pointerBlank) 734 if ((Options & Opt_pointerBlank) && pointerBlankDelay > 0)
736 && (pointerBlankDelay > 0))
737 { 735 {
738 if (xev.type == MotionNotify 736 if (xev.type == MotionNotify
739 || xev.type == ButtonPress 737 || xev.type == ButtonPress
740 || xev.type == ButtonRelease) 738 || xev.type == ButtonRelease)
741 if (hidden_pointer) 739 if (hidden_pointer)
754 while (XPending (Xdisplay)); 752 while (XPending (Xdisplay));
755} 753}
756 754
757#ifdef CURSOR_BLINK 755#ifdef CURSOR_BLINK
758void 756void
759rxvt_term::blink_cb (time_watcher &w) 757rxvt_term::cursor_blink_cb (time_watcher &w)
760{ 758{
761 hidden_cursor = !hidden_cursor; 759 hidden_cursor = !hidden_cursor;
762 want_refresh = 1; 760 want_refresh = 1;
763 761
764 w.start (w.at + BLINK_INTERVAL); 762 w.start (w.at + BLINK_INTERVAL);
763}
764#endif
765
766#ifdef TEXT_BLINK
767void
768rxvt_term::text_blink_cb (time_watcher &w)
769{
770 if (scr_refresh_rend (RS_Blink, RS_Blink))
771 {
772 hidden_text = !hidden_text;
773 want_refresh = 1;
774 w.start (w.at + TEXT_BLINK_INTERVAL);
775 }
765} 776}
766#endif 777#endif
767 778
768void 779void
769rxvt_term::x_cb (io_watcher &w, short revents) 780rxvt_term::x_cb (io_watcher &w, short revents)
1020 quick_timeout |= R->want_full_refresh; 1031 quick_timeout |= R->want_full_refresh;
1021#endif 1032#endif
1022#endif 1033#endif
1023} 1034}
1024 1035
1036#ifdef POINTER_BLANK
1025void 1037void
1026rxvt_term::pointer_unblank () 1038rxvt_term::pointer_unblank ()
1027{ 1039{
1028 XDefineCursor (Xdisplay, TermWin.vt, TermWin_cursor); 1040 XDefineCursor (Xdisplay, TermWin.vt, TermWin_cursor);
1029 recolour_cursor (); 1041 recolour_cursor ();
1030 1042
1031#ifdef POINTER_BLANK
1032 hidden_pointer = 0; 1043 hidden_pointer = 0;
1033 1044
1034 if (Options & Opt_pointerBlank) 1045 if (Options & Opt_pointerBlank)
1035 pointer_ev.start (NOW + pointerBlankDelay); 1046 pointer_ev.start (NOW + pointerBlankDelay);
1036#endif
1037} 1047}
1038 1048
1039#ifdef POINTER_BLANK
1040void 1049void
1041rxvt_term::pointer_blank () 1050rxvt_term::pointer_blank ()
1042{ 1051{
1043 if (!(Options & Opt_pointerBlank)) 1052 if (!(Options & Opt_pointerBlank))
1044 return; 1053 return;
1294 if (R->Input_Context != NULL) 1303 if (R->Input_Context != NULL)
1295 XSetICFocus(R->Input_Context); 1304 XSetICFocus(R->Input_Context);
1296#endif 1305#endif
1297#ifdef CURSOR_BLINK 1306#ifdef CURSOR_BLINK
1298 if (R->Options & Opt_cursorBlink) 1307 if (R->Options & Opt_cursorBlink)
1299 R->blink_ev.start (NOW + BLINK_INTERVAL); 1308 R->cursor_blink_ev.start (NOW + BLINK_INTERVAL);
1300#endif 1309#endif
1301 } 1310 }
1302 break; 1311 break;
1303 1312
1304 case FocusOut: 1313 case FocusOut:
1309 if (R->Input_Context != NULL) 1318 if (R->Input_Context != NULL)
1310 XUnsetICFocus(R->Input_Context); 1319 XUnsetICFocus(R->Input_Context);
1311#endif 1320#endif
1312#ifdef CURSOR_BLINK 1321#ifdef CURSOR_BLINK
1313 if (R->Options & Opt_cursorBlink) 1322 if (R->Options & Opt_cursorBlink)
1314 R->blink_ev.stop (); 1323 R->cursor_blink_ev.stop ();
1315 R->hidden_cursor = 0; 1324 R->hidden_cursor = 0;
1316#endif 1325#endif
1317 } 1326 }
1318 break; 1327 break;
1319 1328
1360 rxvt_selection_send(aR_ &(ev->xselectionrequest)); 1369 rxvt_selection_send(aR_ &(ev->xselectionrequest));
1361 break; 1370 break;
1362 1371
1363 case UnmapNotify: 1372 case UnmapNotify:
1364 R->TermWin.mapped = 0; 1373 R->TermWin.mapped = 0;
1374#ifdef TEXT_BLINK
1375 R->text_blink_ev.stop ();
1376#endif
1365 break; 1377 break;
1366 1378
1367 case MapNotify: 1379 case MapNotify:
1368 R->TermWin.mapped = 1; 1380 R->TermWin.mapped = 1;
1381#ifdef TEXT_BLINK
1382 R->text_blink_ev.start (NOW + TEXT_BLINK_INTERVAL);
1383#endif
1369 break; 1384 break;
1370 1385
1371 case PropertyNotify: 1386 case PropertyNotify:
1372 if (ev->xproperty.atom == R->xa[XA_VT_SELECTION]) { 1387 if (ev->xproperty.atom == R->xa[XA_VT_SELECTION]) {
1373 if (ev->xproperty.state == PropertyNewValue) 1388 if (ev->xproperty.state == PropertyNewValue)
2693 break; 2708 break;
2694#endif 2709#endif
2695 2710
2696 case CSI_78: /* DECREQTPARM */ 2711 case CSI_78: /* DECREQTPARM */
2697 if (arg[0] == 0 || arg[0] == 1) 2712 if (arg[0] == 0 || arg[0] == 1)
2698 R->tt_printf("\033[%d;1;1;112;112;1;0x", arg[0] + 2); 2713 R->tt_printf("\033[%d;1;1;128;128;1;0x", arg[0] + 2);
2699 /* FALLTHROUGH */ 2714 /* FALLTHROUGH */
2700 2715
2701 default: 2716 default:
2702 break; 2717 break;
2703 } 2718 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines