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.216 by root, Tue Dec 27 01:25:42 2005 UTC vs.
Revision 1.227 by root, Mon Jan 2 15:35:43 2006 UTC

43 * along with this program; if not, write to the Free Software 43 * along with this program; if not, write to the Free Software
44 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 44 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
45 *----------------------------------------------------------------------*/ 45 *----------------------------------------------------------------------*/
46 46
47/*{{{ includes: */ 47/*{{{ includes: */
48#include "../config.h" /* NECESSARY */ 48#include "../config.h"
49#include "rxvt.h" /* NECESSARY */ 49#include "rxvt.h"
50#include "rxvtperl.h"
50#include "version.h" 51#include "version.h"
51#include "command.h" 52#include "command.h"
53
54#if HAVE_SCHED_YIELD
55# include <sched.h>
56#endif
52 57
53#ifdef KEYSYM_RESOURCE 58#ifdef KEYSYM_RESOURCE
54# include "keyboard.h" 59# include "keyboard.h"
55#endif 60#endif
56 61
147 152
148 text_t t = l.t[x]; 153 text_t t = l.t[x];
149 154
150 if (t != NOCHAR || !x) 155 if (t != NOCHAR || !x)
151 { 156 {
152 iso14755_51 (l.t[x], l.r[x]); 157 iso14755_51 (l.t[x], l.r[x], x, y);
153 iso14755buf = ISO_14755_54; 158 iso14755buf = ISO_14755_54;
154 break; 159 break;
155 } 160 }
156 161
157 x--; 162 x--;
158 } 163 }
159} 164}
160#endif
161 165
162#if ENABLE_OVERLAY
163void 166void
164rxvt_term::iso14755_51 (unicode_t ch, rend_t r) 167rxvt_term::iso14755_51 (unicode_t ch, rend_t r, int x, int y)
165{ 168{
166 rxvt_fontset *fs = FONTSET (r); 169 rxvt_fontset *fs = FONTSET (r);
167 rxvt_font *f = (*fs)[fs->find_font (ch)]; 170 rxvt_font *f = (*fs)[fs->find_font (ch)];
168 wchar_t *chr, *alloc, ch2, *fname; 171 wchar_t *chr, *alloc, ch2, *fname;
169 int len; 172 int len;
170 173
171 fname = rxvt_utf8towcs (f->name); 174 fname = rxvt_utf8towcs (f->name);
172 175
173#if ENABLE_COMBINING 176# if ENABLE_COMBINING
174 if (IS_COMPOSE (ch)) 177 if (IS_COMPOSE (ch))
175 { 178 {
176 len = rxvt_composite.expand (ch, 0); 179 len = rxvt_composite.expand (ch, 0);
177 alloc = chr = new wchar_t[len]; 180 alloc = chr = new wchar_t[len];
178 rxvt_composite.expand (ch, chr); 181 rxvt_composite.expand (ch, chr);
179 } 182 }
180 else 183 else
181#endif 184# endif
182 { 185 {
183 ch2 = ch; 186 ch2 = ch;
184 187
185 alloc = 0; 188 alloc = 0;
186 chr = &ch2; 189 chr = &ch2;
189 192
190 char attr[80]; // plenty 193 char attr[80]; // plenty
191 194
192 sprintf (attr, "%08x = fg %d bg %d%s%s%s%s%s%s", 195 sprintf (attr, "%08x = fg %d bg %d%s%s%s%s%s%s",
193 (int)r, 196 (int)r,
194 GET_FGCOLOR (r), GET_BGCOLOR (r), 197 fgcolor_of (r), bgcolor_of (r),
195 r & RS_Bold ? " bold" : "", 198 r & RS_Bold ? " bold" : "",
196 r & RS_Italic ? " italic" : "", 199 r & RS_Italic ? " italic" : "",
197 r & RS_Blink ? " blink" : "", 200 r & RS_Blink ? " blink" : "",
198 r & RS_RVid ? " rvid" : "", 201 r & RS_RVid ? " rvid" : "",
199 r & RS_Uline ? " uline" : "", 202 r & RS_Uline ? " uline" : "",
202 int width = wcswidth (fname, wcslen (fname)); 205 int width = wcswidth (fname, wcslen (fname));
203 206
204 max_it (width, 8+5); // for char + hey 207 max_it (width, 8+5); // for char + hey
205 max_it (width, strlen (attr)); 208 max_it (width, strlen (attr));
206 209
210 if (y >= 0)
211 {
212 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1;
213 x = 0;
214 }
215
207 scr_overlay_new (0, -1, width, len + 2); 216 scr_overlay_new (x, y, width, len + 2);
208 217
209 r = SET_STYLE (OVERLAY_RSTYLE, GET_STYLE (r)); 218 r = SET_STYLE (OVERLAY_RSTYLE, GET_STYLE (r));
210 219
211 for (int y = 0; y < len; y++) 220 for (int y = 0; y < len; y++)
212 { 221 {
215 ch = *chr++; 224 ch = *chr++;
216 225
217 sprintf (buf, "%8x", ch); 226 sprintf (buf, "%8x", ch);
218 scr_overlay_set (0, y, buf); 227 scr_overlay_set (0, y, buf);
219 scr_overlay_set (9, y, '='); 228 scr_overlay_set (9, y, '=');
220#if !UNICODE3 229# if !UNICODE3
221 if (ch >= 0x10000) 230 if (ch >= 0x10000)
222 ch = 0xfffd; 231 ch = 0xfffd;
223#endif 232# endif
224 scr_overlay_set (11, y, ch, r); 233 scr_overlay_set (11, y, ch, r);
225 scr_overlay_set (12, y, NOCHAR, r); 234 scr_overlay_set (12, y, NOCHAR, r);
226 } 235 }
227 236
228 scr_overlay_set (0, len , attr); 237 scr_overlay_set (0, len , attr);
229 scr_overlay_set (0, len + 1, fname); 238 scr_overlay_set (0, len + 1, fname);
230 239
231 free (fname); 240 free (fname);
232 241
233#if ENABLE_COMBINING 242# if ENABLE_COMBINING
234 if (alloc) 243 if (alloc)
235 delete [] alloc; 244 delete [] alloc;
236#endif 245# endif
237} 246}
238#endif 247#endif
239 248
240void 249void
241rxvt_term::commit_iso14755 () 250rxvt_term::commit_iso14755 ()
860 } 869 }
861 870
862 if (len <= 0) 871 if (len <= 0)
863 return; /* not mapped */ 872 return; /* not mapped */
864 873
865 if (options & Opt_scrollTtyKeypress) 874 if (OPTION (Opt_scrollTtyKeypress))
866 if (view_start) 875 if (view_start)
867 { 876 {
868 view_start = 0; 877 view_start = 0;
869 want_refresh = 1; 878 want_refresh = 1;
870 } 879 }
976 SET_LOCALE (locale); 985 SET_LOCALE (locale);
977 986
978 display->flush (); 987 display->flush ();
979 988
980 if (want_refresh && !flush_ev.active) 989 if (want_refresh && !flush_ev.active)
981 flush_ev.start (NOW + 0.01); 990 flush_ev.start (NOW + 1. / 60.); // refresh at max. 60 hz normally
982} 991}
983 992
984void 993void
985rxvt_term::flush_cb (time_watcher &w) 994rxvt_term::flush_cb (time_watcher &w)
986{ 995{
1061 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1070 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY);
1062 } 1071 }
1063} 1072}
1064#endif 1073#endif
1065 1074
1075#if HAVE_SCHED_YIELD
1076static struct event_handler
1077{
1078 check_watcher cw_yield;
1079
1080 void yield (check_watcher &w)
1081 {
1082 sched_yield ();
1083 w.stop ();
1084 }
1085
1086 event_handler ()
1087 : cw_yield (this, &event_handler::yield)
1088 {
1089 }
1090} event_handler;
1091#endif
1092
1066bool 1093bool
1067rxvt_term::pty_fill () 1094rxvt_term::pty_fill ()
1068{ 1095{
1069 ssize_t n = cmdbuf_endp - cmdbuf_ptr; 1096 ssize_t n = cmdbuf_endp - cmdbuf_ptr;
1070 1097
1076 1103
1077 memmove (cmdbuf_base, cmdbuf_ptr, n); 1104 memmove (cmdbuf_base, cmdbuf_ptr, n);
1078 cmdbuf_ptr = cmdbuf_base; 1105 cmdbuf_ptr = cmdbuf_base;
1079 cmdbuf_endp = cmdbuf_ptr + n; 1106 cmdbuf_endp = cmdbuf_ptr + n;
1080 1107
1081 n = read (pty.pty, cmdbuf_endp, CBUFSIZ - n); 1108 ssize_t r = read (pty.pty, cmdbuf_endp, CBUFSIZ - n);
1082 1109
1083 if (n > 0) 1110 if (r > 0)
1084 { 1111 {
1085 cmdbuf_endp += n; 1112 cmdbuf_endp += r;
1086 return true; 1113 return true;
1087 } 1114 }
1088 else if ((n < 0 && errno != EAGAIN && errno != EINTR) || n == 0) 1115 else if (r < 0 && (errno == EAGAIN || errno == EINTR))
1116 {
1117#if HAVE_SCHED_YIELD
1118 event_handler.cw_yield.start ();
1119#endif
1120 }
1121 else
1089 { 1122 {
1090 pty_ev.stop (); 1123 pty_ev.stop ();
1091 1124
1092 if (!(options & Opt_hold)) 1125 if (!OPTION (Opt_hold))
1093 destroy (); 1126 destroy ();
1094 } 1127 }
1095 1128
1096 return false; 1129 return false;
1097} 1130}
1119 recolour_cursor (); 1152 recolour_cursor ();
1120 1153
1121#ifdef POINTER_BLANK 1154#ifdef POINTER_BLANK
1122 hidden_pointer = 0; 1155 hidden_pointer = 0;
1123 1156
1124 if (options & Opt_pointerBlank) 1157 if (OPTION (Opt_pointerBlank))
1125 pointer_ev.start (NOW + pointerBlankDelay); 1158 pointer_ev.start (NOW + pointerBlankDelay);
1126#endif 1159#endif
1127} 1160}
1128 1161
1129#ifdef POINTER_BLANK 1162#ifdef POINTER_BLANK
1130void 1163void
1131rxvt_term::pointer_blank () 1164rxvt_term::pointer_blank ()
1132{ 1165{
1133 if (! (options & Opt_pointerBlank)) 1166 if (! OPTION (Opt_pointerBlank))
1134 return; 1167 return;
1135 1168
1136 XDefineCursor (display->display, vt, display->blank_cursor); 1169 XDefineCursor (display->display, vt, display->blank_cursor);
1137 XFlush (display->display); 1170 XFlush (display->display);
1138 1171
1236 1269
1237 SET_R (this); 1270 SET_R (this);
1238 SET_LOCALE (locale); 1271 SET_LOCALE (locale);
1239 1272
1240#if defined(CURSOR_BLINK) 1273#if defined(CURSOR_BLINK)
1241 if ((options & Opt_cursorBlink) && ev.type == KeyPress) 1274 if (OPTION (Opt_cursorBlink) && ev.type == KeyPress)
1242 { 1275 {
1243 if (hidden_cursor) 1276 if (hidden_cursor)
1244 { 1277 {
1245 hidden_cursor = 0; 1278 hidden_cursor = 0;
1246 want_refresh = 1; 1279 want_refresh = 1;
1249 cursor_blink_ev.start (NOW + BLINK_INTERVAL); 1282 cursor_blink_ev.start (NOW + BLINK_INTERVAL);
1250 } 1283 }
1251#endif 1284#endif
1252 1285
1253#if defined(POINTER_BLANK) 1286#if defined(POINTER_BLANK)
1254 if ((options & Opt_pointerBlank) && pointerBlankDelay > 0) 1287 if (OPTION (Opt_pointerBlank) && pointerBlankDelay > 0)
1255 { 1288 {
1256 if (ev.type == MotionNotify 1289 if (ev.type == MotionNotify
1257 || ev.type == ButtonPress 1290 || ev.type == ButtonPress
1258 || ev.type == ButtonRelease) 1291 || ev.type == ButtonRelease)
1259 if (hidden_pointer) 1292 if (hidden_pointer)
1455 seen_resize = 1; 1488 seen_resize = 1;
1456 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1); 1489 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1);
1457 } 1490 }
1458 1491
1459#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */ 1492#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */
1460 if (options & Opt_transparent) 1493 if (OPTION (Opt_transparent))
1461 check_our_parents (); 1494 check_our_parents ();
1462#endif 1495#endif
1463 } 1496 }
1464 break; 1497 break;
1465 1498
1666{ 1699{
1667 if (!focus) 1700 if (!focus)
1668 { 1701 {
1669 focus = 1; 1702 focus = 1;
1670 want_refresh = 1; 1703 want_refresh = 1;
1704
1705 PERL_INVOKE ((this, HOOK_FOCUS_OUT, DT_END));
1706
1671#if USE_XIM 1707#if USE_XIM
1672 if (Input_Context != NULL) 1708 if (Input_Context != NULL)
1673 { 1709 {
1674 IMSetStatusPosition (); 1710 IMSetStatusPosition ();
1675 XSetICFocus (Input_Context); 1711 XSetICFocus (Input_Context);
1676 } 1712 }
1677#endif 1713#endif
1678#if CURSOR_BLINK 1714#if CURSOR_BLINK
1679 if (options & Opt_cursorBlink) 1715 if (OPTION (Opt_cursorBlink))
1680 cursor_blink_ev.start (NOW + BLINK_INTERVAL); 1716 cursor_blink_ev.start (NOW + BLINK_INTERVAL);
1681#endif 1717#endif
1682#if OFF_FOCUS_FADING 1718#if OFF_FOCUS_FADING
1683 if (rs[Rs_fade]) 1719 if (rs[Rs_fade])
1684 { 1720 {
1695 if (focus) 1731 if (focus)
1696 { 1732 {
1697 focus = 0; 1733 focus = 0;
1698 want_refresh = 1; 1734 want_refresh = 1;
1699 1735
1736 PERL_INVOKE ((this, HOOK_FOCUS_OUT, DT_END));
1737
1700#if ENABLE_FRILLS || ISO_14755 1738#if ENABLE_FRILLS || ISO_14755
1739 if (iso14755buf)
1740 {
1701 iso14755buf = 0; 1741 iso14755buf = 0;
1702#endif
1703#if ENABLE_OVERLAY 1742# if ENABLE_OVERLAY
1704 scr_overlay_off (); 1743 scr_overlay_off ();
1744# endif
1745 }
1705#endif 1746#endif
1706#if USE_XIM 1747#if USE_XIM
1707 if (Input_Context != NULL) 1748 if (Input_Context != NULL)
1708 XUnsetICFocus (Input_Context); 1749 XUnsetICFocus (Input_Context);
1709#endif 1750#endif
1710#if CURSOR_BLINK 1751#if CURSOR_BLINK
1711 if (options & Opt_cursorBlink) 1752 if (OPTION (Opt_cursorBlink))
1712 cursor_blink_ev.stop (); 1753 cursor_blink_ev.stop ();
1713 hidden_cursor = 0; 1754 hidden_cursor = 0;
1714#endif 1755#endif
1715#if OFF_FOCUS_FADING 1756#if OFF_FOCUS_FADING
1716 if (rs[Rs_fade]) 1757 if (rs[Rs_fade])
1740 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID]) 1781 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID])
1741 return; 1782 return;
1742 1783
1743 /* FALLTHROUGH */ 1784 /* FALLTHROUGH */
1744 case ReparentNotify: 1785 case ReparentNotify:
1745 if ((options & Opt_transparent) && check_our_parents () && am_transparent) 1786 if (OPTION (Opt_transparent) && check_our_parents () && am_transparent)
1746 want_refresh = want_full_refresh = 1; 1787 want_refresh = want_full_refresh = 1;
1747 break; 1788 break;
1748 } 1789 }
1749} 1790}
1750#endif 1791#endif
2092 2133
2093 v = ev.button == Button4 ? UP : DN; 2134 v = ev.button == Button4 ? UP : DN;
2094 2135
2095 if (ev.state & ShiftMask) 2136 if (ev.state & ShiftMask)
2096 i = 1; 2137 i = 1;
2097 else if (options & Opt_mouseWheelScrollPage) 2138 else if (OPTION (Opt_mouseWheelScrollPage))
2098 i = nrow - 1; 2139 i = nrow - 1;
2099 else 2140 else
2100 i = 5; 2141 i = 5;
2101 2142
2102# ifdef MOUSE_SLIP_WHEELING 2143# ifdef MOUSE_SLIP_WHEELING
2388 XWindowAttributes wattr, wrootattr; 2429 XWindowAttributes wattr, wrootattr;
2389 dDisp; 2430 dDisp;
2390 2431
2391 pchanged = 0; 2432 pchanged = 0;
2392 2433
2393 if (!(options & Opt_transparent)) 2434 if (!OPTION (Opt_transparent))
2394 return pchanged; /* Don't try any more */ 2435 return pchanged; /* Don't try any more */
2395 2436
2396 XGetWindowAttributes (disp, display->root, &wrootattr); 2437 XGetWindowAttributes (disp, display->root, &wrootattr);
2397 rootdepth = wrootattr.depth; 2438 rootdepth = wrootattr.depth;
2398 2439
2676 if (ch == C0_LF) 2717 if (ch == C0_LF)
2677 nlines++; 2718 nlines++;
2678 2719
2679 refresh_count++; 2720 refresh_count++;
2680 2721
2681 if (!(options & Opt_jumpScroll) 2722 if (!OPTION (Opt_jumpScroll)
2682 || (refresh_count >= refresh_limit * (nrow - 1))) 2723 || (refresh_count >= refresh_limit * (nrow - 1)))
2683 { 2724 {
2684 refreshnow = true; 2725 refreshnow = true;
2726 refresh_count = 0;
2685 ch = NOCHAR; 2727 ch = NOCHAR;
2686 break; 2728 break;
2687 } 2729 }
2688 2730
2689 // scr_add_lines only works for nlines <= nrow - 1. 2731 // scr_add_lines only works for nlines <= nrow - 1.
2720 * the number of pages between refreshes is refresh_limit, which 2762 * the number of pages between refreshes is refresh_limit, which
2721 * is incremented here because we must be doing flat-out scrolling. 2763 * is incremented here because we must be doing flat-out scrolling.
2722 */ 2764 */
2723 if (refreshnow) 2765 if (refreshnow)
2724 { 2766 {
2725 if ((options & Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD) 2767 if (OPTION (Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD)
2726 refresh_limit++; 2768 refresh_limit++;
2727 else 2769 else
2728 { 2770 {
2729 flag = true; 2771 flag = true;
2730 scr_refresh (refresh_type); 2772 scr_refresh (refresh_type);
2773 flush_ev.stop ();
2731 } 2774 }
2732 } 2775 }
2733 2776
2734 } 2777 }
2735 else 2778 else
3394 break; 3437 break;
3395 case 6: /* CPR requested */ 3438 case 6: /* CPR requested */
3396 scr_report_position (); 3439 scr_report_position ();
3397 break; 3440 break;
3398 case 7: /* unofficial extension */ 3441 case 7: /* unofficial extension */
3399 if (options & Opt_insecure) 3442 if (OPTION (Opt_insecure))
3400 tt_printf ("%-.250s\012", rs[Rs_display_name]); 3443 tt_printf ("%-.250s\012", rs[Rs_display_name]);
3401 break; 3444 break;
3402 case 8: /* unofficial extension */ 3445 case 8: /* unofficial extension */
3403 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST); 3446 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST);
3404 break; 3447 break;
3568 break; 3611 break;
3569 case 20: /* report icon label */ 3612 case 20: /* report icon label */
3570 { 3613 {
3571 char *s; 3614 char *s;
3572 XGetIconName (disp, parent[0], &s); 3615 XGetIconName (disp, parent[0], &s);
3573 tt_printf ("\033]L%-.250s\234", (options & Opt_insecure) && s ? s : ""); /* 8bit ST */ 3616 tt_printf ("\033]L%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */
3574 XFree (s); 3617 XFree (s);
3575 } 3618 }
3576 break; 3619 break;
3577 case 21: /* report window title */ 3620 case 21: /* report window title */
3578 { 3621 {
3579 char *s; 3622 char *s;
3580 XFetchName (disp, parent[0], &s); 3623 XFetchName (disp, parent[0], &s);
3581 tt_printf ("\033]l%-.250s\234", (options & Opt_insecure) && s ? s : ""); /* 8bit ST */ 3624 tt_printf ("\033]l%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */
3582 XFree (s); 3625 XFree (s);
3583 } 3626 }
3584 break; 3627 break;
3585 } 3628 }
3586} 3629}
3862 // TODO, when secure mode? 3905 // TODO, when secure mode?
3863 break; 3906 break;
3864 3907
3865#ifdef MENUBAR 3908#ifdef MENUBAR
3866 case URxvt_Menu: 3909 case URxvt_Menu:
3867 if (options & Opt_insecure) 3910 if (OPTION (Opt_insecure))
3868 menubar_dispatch (const_cast<char *>(str)); // casting away constness is checked 3911 menubar_dispatch (const_cast<char *>(str)); // casting away constness is checked
3869 break; 3912 break;
3870#endif 3913#endif
3871#if 0 3914#if 0
3872 case XTerm_dumpscreen: /* no error notices */ 3915 case XTerm_dumpscreen: /* no error notices */
3888 case URxvt_italicFont: 3931 case URxvt_italicFont:
3889 case URxvt_boldItalicFont: 3932 case URxvt_boldItalicFont:
3890#endif 3933#endif
3891 if (query) 3934 if (query)
3892 tt_printf ("\33]%d;%-.250s%c", saveop, 3935 tt_printf ("\33]%d;%-.250s%c", saveop,
3893 (options & Opt_insecure) && fontset[op - URxvt_font]->fontdesc 3936 OPTION (Opt_insecure) && fontset[op - URxvt_font]->fontdesc
3894 ? fontset[op - URxvt_font]->fontdesc : "", 3937 ? fontset[op - URxvt_font]->fontdesc : "",
3895 resp); 3938 resp);
3896 else 3939 else
3897 { 3940 {
3898 const char *&res = rs[Rs_font + (op - URxvt_font)]; 3941 const char *&res = rs[Rs_font + (op - URxvt_font)];
3904 break; 3947 break;
3905 3948
3906#if ENABLE_FRILLS 3949#if ENABLE_FRILLS
3907 case URxvt_locale: 3950 case URxvt_locale:
3908 if (query) 3951 if (query)
3909 tt_printf ("\33]%d;%-.250s%c", URxvt_locale, (options & Opt_insecure) ? locale : "", resp); 3952 tt_printf ("\33]%d;%-.250s%c", URxvt_locale, OPTION (Opt_insecure) ? locale : "", resp);
3910 else 3953 else
3911 { 3954 {
3912 set_locale (str); 3955 set_locale (str);
3913 pty.set_utf8_mode (enc_utf8); 3956 pty.set_utf8_mode (enc_utf8);
3914 init_xlocale (); 3957 init_xlocale ();
4042 } 4085 }
4043 4086
4044 /* extra handling for values with state unkept */ 4087 /* extra handling for values with state unkept */
4045 switch (arg[i]) 4088 switch (arg[i])
4046 { 4089 {
4090#if ENABLE_STYLES
4091 case 1021:
4092 if (mode)
4093 SET_OPTION (Opt_intensityStyles);
4094 else
4095 CLR_OPTION (Opt_intensityStyles);
4096
4097 scr_touch (true);
4098 break;
4099#endif
4047 case 1048: /* alternative cursor save */ 4100 case 1048: /* alternative cursor save */
4048 case 1049: 4101 case 1049:
4049 if (options & Opt_secondaryScreen) 4102 if (OPTION (Opt_secondaryScreen))
4050 if (mode == 0) 4103 if (mode == 0)
4051 scr_cursor (RESTORE); 4104 scr_cursor (RESTORE);
4052 else if (mode == 1) 4105 else if (mode == 1)
4053 scr_cursor (SAVE); 4106 scr_cursor (SAVE);
4054 break; 4107 break;
4069 case 3: /* 80/132 */ 4122 case 3: /* 80/132 */
4070 if (priv_modes & PrivMode_132OK) 4123 if (priv_modes & PrivMode_132OK)
4071 set_widthheight (((state ? 132 : 80) * fwidth), height); 4124 set_widthheight (((state ? 132 : 80) * fwidth), height);
4072 break; 4125 break;
4073 case 4: /* smooth scrolling */ 4126 case 4: /* smooth scrolling */
4074 if (state) 4127 if (!state)
4075 options &= ~Opt_jumpScroll; 4128 SET_OPTION (Opt_jumpScroll);
4076 else 4129 else
4077 options |= Opt_jumpScroll; 4130 CLR_OPTION (Opt_jumpScroll);
4078 break; 4131 break;
4079 case 5: /* reverse video */ 4132 case 5: /* reverse video */
4080 scr_rvideo_mode (state); 4133 scr_rvideo_mode (state);
4081 break; 4134 break;
4082 case 6: /* relative/absolute origins */ 4135 case 6: /* relative/absolute origins */
4123#if 0 4176#if 0
4124 case 1001: 4177 case 1001:
4125 break; /* X11 mouse highlighting */ 4178 break; /* X11 mouse highlighting */
4126#endif 4179#endif
4127 case 1010: /* scroll to bottom on TTY output inhibit */ 4180 case 1010: /* scroll to bottom on TTY output inhibit */
4128 if (state) 4181 if (!state)
4129 options &= ~Opt_scrollTtyOutput; 4182 SET_OPTION (Opt_scrollTtyOutput);
4130 else 4183 else
4131 options |= Opt_scrollTtyOutput; 4184 CLR_OPTION (Opt_scrollTtyOutput);
4132 break; 4185 break;
4133 case 1011: /* scroll to bottom on key press */ 4186 case 1011: /* scroll to bottom on key press */
4134 if (state) 4187 if (state)
4135 options |= Opt_scrollTtyKeypress; 4188 SET_OPTION (Opt_scrollTtyKeypress);
4136 else 4189 else
4137 options &= ~Opt_scrollTtyKeypress; 4190 CLR_OPTION (Opt_scrollTtyKeypress);
4138 break; 4191 break;
4139 case 1047: /* secondary screen w/ clearing last */ 4192 case 1047: /* secondary screen w/ clearing last */
4140 if (options & Opt_secondaryScreen) 4193 if (OPTION (Opt_secondaryScreen))
4141 if (current_screen != PRIMARY) 4194 if (current_screen != PRIMARY)
4142 scr_erase_screen (2); 4195 scr_erase_screen (2);
4143 scr_change_screen (state); 4196 scr_change_screen (state);
4144 break; 4197 break;
4145 case 1049: /* secondary screen w/ clearing first */ 4198 case 1049: /* secondary screen w/ clearing first */
4146 scr_change_screen (state); 4199 scr_change_screen (state);
4147 if (options & Opt_secondaryScreen) 4200 if (OPTION (Opt_secondaryScreen))
4148 if (current_screen != PRIMARY) 4201 if (current_screen != PRIMARY)
4149 scr_erase_screen (2); 4202 scr_erase_screen (2);
4150 break; 4203 break;
4151 default: 4204 default:
4152 break; 4205 break;
4302 case 106: 4355 case 106:
4303 case 107: 4356 case 107:
4304 scr_color ((unsigned int) (minBrightCOLOR + (arg[i] - 100)), Color_bg); 4357 scr_color ((unsigned int) (minBrightCOLOR + (arg[i] - 100)), Color_bg);
4305 break; 4358 break;
4306#endif 4359#endif
4307
4308 } 4360 }
4309 } 4361 }
4310} 4362}
4311/*}}} */ 4363/*}}} */
4312 4364

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines