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.201 by root, Mon Feb 21 19:26:07 2005 UTC vs.
Revision 1.278 by root, Fri Jan 20 18:50:49 2006 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-2005 Marc Lehmann <pcg@goof.com> 30 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
31 * 31 *
32 * This program is free software; you can redistribute it and/or modify 32 * 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 33 * 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 34 * the Free Software Foundation; either version 2 of the License, or
35 * (at your option) any later version. 35 * (at your option) any later version.
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"
52 53
54#if HAVE_SCHED_YIELD
55#undef HAVE_SCHED_YIELD // disabled for the time being
56//# include <sched.h>
57#endif
58
53#ifdef KEYSYM_RESOURCE 59#ifdef KEYSYM_RESOURCE
54# include "keyboard.h" 60# include "keyboard.h"
55#endif 61#endif
56 62
57#include <csignal> 63#include <csignal>
58 64
59/*----------------------------------------------------------------------*/ 65/*----------------------------------------------------------------------*/
60 66
61#define IS_CONTROL(ch) !((ch) & 0xffffff60UL) 67#define IS_CONTROL(ch) !((ch) & 0xffffff60UL)
62
63// exception thrown when the command parser runs out of input data
64class out_of_input { } out_of_input;
65 68
66#if ENABLE_FRILLS || ISO_14755 69#if ENABLE_FRILLS || ISO_14755
67 70
68#define ISO_14755_STARTED 0x80000000UL 71#define ISO_14755_STARTED 0x80000000UL
69#define ISO_14755_51 0x40000000UL // basic (section 5.1) 72#define ISO_14755_51 0x40000000UL // basic (section 5.1)
135rxvt_term::iso14755_54 (int x, int y) 138rxvt_term::iso14755_54 (int x, int y)
136{ 139{
137 x = Pixel2Col (x); 140 x = Pixel2Col (x);
138 y = Pixel2Row (y); 141 y = Pixel2Row (y);
139 142
140 if (x < 0 || x >= TermWin.ncol 143 if (!IN_RANGE_EXC (x, 0, ncol)
141 || y < 0 || y >= TermWin.nrow) 144 || !IN_RANGE_EXC (y, 0, nrow))
142 return; 145 return;
143 146
144 for (;;) 147 for (;;)
145 { 148 {
146 text_t t = screen.text[y + TermWin.saveLines - TermWin.view_start][x]; 149 const line_t &l = ROW(y + view_start);
150
151 text_t t = l.t[x];
147 152
148 if (t != NOCHAR || !x) 153 if (t != NOCHAR || !x)
149 { 154 {
150 iso14755_51 (screen.text[y + TermWin.saveLines - TermWin.view_start][x], 155 iso14755_51 (l.t[x], l.r[x], x, y);
151 screen.rend[y + TermWin.saveLines - TermWin.view_start][x]);
152 iso14755buf = ISO_14755_54; 156 iso14755buf = ISO_14755_54;
153 break; 157 break;
154 } 158 }
155 159
156 x--; 160 x--;
157 } 161 }
158
159} 162}
160#endif
161 163
162#if ENABLE_OVERLAY
163void 164void
164rxvt_term::iso14755_51 (unicode_t ch, rend_t r) 165rxvt_term::iso14755_51 (unicode_t ch, rend_t r, int x, int y)
165{ 166{
166 rxvt_fontset *fs = FONTSET (r); 167 rxvt_fontset *fs = FONTSET (r);
167 rxvt_font *f = (*fs)[fs->find_font (ch)]; 168 rxvt_font *f = (*fs)[fs->find_font (ch)];
168 wchar_t *chr, *alloc, ch2; 169 wchar_t *chr, *alloc, ch2, *fname;
169 int len; 170 int len;
170 171
172 fname = rxvt_utf8towcs (f->name);
173
171#if ENABLE_COMBINING 174# if ENABLE_COMBINING
172 if (IS_COMPOSE (ch)) 175 if (IS_COMPOSE (ch))
173 { 176 {
174 len = rxvt_composite.expand (ch, 0); 177 len = rxvt_composite.expand (ch, 0);
175 alloc = chr = new wchar_t[len]; 178 alloc = chr = new wchar_t[len];
176 rxvt_composite.expand (ch, chr); 179 rxvt_composite.expand (ch, chr);
177 } 180 }
178 else 181 else
179#endif 182# endif
180 { 183 {
181 ch2 = ch; 184 ch2 = ch;
182 185
183 alloc = 0; 186 alloc = 0;
184 chr = &ch2; 187 chr = &ch2;
185 len = 1; 188 len = 1;
186 } 189 }
187 190
188 int width = strlen (f->name); 191 char attr[80]; // plenty
189 192
190 scr_overlay_new (0, -1, width < 8+5 ? 8+5 : width, len + 1); 193 sprintf (attr, "%08x = fg %d bg %d%s%s%s%s%s%s",
194 (int)r,
195 fgcolor_of (r), bgcolor_of (r),
196 r & RS_Bold ? " bold" : "",
197 r & RS_Italic ? " italic" : "",
198 r & RS_Blink ? " blink" : "",
199 r & RS_RVid ? " rvid" : "",
200 r & RS_Uline ? " uline" : "",
201 r & RS_Careful ? " careful" : "");
202
203 int width = wcswidth (fname, wcslen (fname));
204
205 max_it (width, 8+5); // for char + hey
206 max_it (width, strlen (attr));
207
208 if (y >= 0)
209 {
210 y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1;
211 x = 0;
212 }
213
214 scr_overlay_new (x, y, width, len + 2);
191 215
192 r = SET_STYLE (OVERLAY_RSTYLE, GET_STYLE (r)); 216 r = SET_STYLE (OVERLAY_RSTYLE, GET_STYLE (r));
193 217
194 for (int y = 0; y < len; y++) 218 for (int y = 0; y < len; y++)
195 { 219 {
198 ch = *chr++; 222 ch = *chr++;
199 223
200 sprintf (buf, "%8x", ch); 224 sprintf (buf, "%8x", ch);
201 scr_overlay_set (0, y, buf); 225 scr_overlay_set (0, y, buf);
202 scr_overlay_set (9, y, '='); 226 scr_overlay_set (9, y, '=');
203#if !UNICODE3 227# if !UNICODE3
204 if (ch >= 0x10000) 228 if (ch >= 0x10000)
205 ch = 0xfffd; 229 ch = 0xfffd;
206#endif 230# endif
207 scr_overlay_set (11, y, ch, r); 231 scr_overlay_set (11, y, ch, r);
208 scr_overlay_set (12, y, NOCHAR, r); 232 scr_overlay_set (12, y, NOCHAR, r);
209 } 233 }
210 234
235 scr_overlay_set (0, len , attr);
211 scr_overlay_set (0, len, f->name); 236 scr_overlay_set (0, len + 1, fname);
212 237
238 free (fname);
239
213#if ENABLE_COMBINING 240# if ENABLE_COMBINING
214 if (alloc) 241 if (alloc)
215 delete [] alloc; 242 delete [] alloc;
216#endif 243# endif
217} 244}
218#endif 245#endif
219 246
220void 247void
221rxvt_term::commit_iso14755 () 248rxvt_term::commit_iso14755 ()
238 mb[0] = ch[0]; 265 mb[0] = ch[0];
239 len = 1; 266 len = 1;
240 } 267 }
241 268
242 if (len > 0) 269 if (len > 0)
243 tt_write ((unsigned char *)mb, len); 270 tt_write (mb, len);
244 else 271 else
245 scr_bell (); 272 scr_bell ();
246 } 273 }
247 274
248 iso14755buf = 0; 275 iso14755buf = 0;
276 KeySym keysym; 303 KeySym keysym;
277#ifdef DEBUG_CMD 304#ifdef DEBUG_CMD
278 static int debug_key = 1; /* accessible by a debugger only */ 305 static int debug_key = 1; /* accessible by a debugger only */
279#endif 306#endif
280 int valid_keysym; 307 int valid_keysym;
281 unsigned char kbuf[KBUFSZ]; 308 char kbuf[KBUFSZ];
282 309
283 /* 310 /*
284 * use Num_Lock to toggle Keypad on/off. If Num_Lock is off, allow an 311 * use Num_Lock to toggle Keypad on/off. If Num_Lock is off, allow an
285 * escape sequence to toggle the Keypad. 312 * escape sequence to toggle the Keypad.
286 * 313 *
304 Status status_return; 331 Status status_return;
305 332
306#if 0 333#if 0
307#ifdef X_HAVE_UTF8_STRING 334#ifdef X_HAVE_UTF8_STRING
308 if (enc_utf8 && 0) // currently disabled, doesn't seem to work, nor is useful 335 if (enc_utf8 && 0) // currently disabled, doesn't seem to work, nor is useful
309 len = Xutf8LookupString (Input_Context, &ev, (char *)kbuf, 336 len = Xutf8LookupString (Input_Context, &ev, kbuf,
310 KBUFSZ, &keysym, &status_return); 337 KBUFSZ, &keysym, &status_return);
311 else 338 else
312#endif 339#endif
313#endif 340#endif
314 { 341 {
316 343
317 // the XOpenIM manpage lies about hardcoding the locale 344 // the XOpenIM manpage lies about hardcoding the locale
318 // at the point of XOpenIM, so temporarily switch locales 345 // at the point of XOpenIM, so temporarily switch locales
319 if (rs[Rs_imLocale]) 346 if (rs[Rs_imLocale])
320 SET_LOCALE (rs[Rs_imLocale]); 347 SET_LOCALE (rs[Rs_imLocale]);
348
321 // assume wchar_t == unicode or better 349 // assume wchar_t == unicode or better
322 len = XwcLookupString (Input_Context, &ev, wkbuf, 350 len = XwcLookupString (Input_Context, &ev, wkbuf,
323 KBUFSZ, &keysym, &status_return); 351 KBUFSZ, &keysym, &status_return);
352
324 if (rs[Rs_imLocale]) 353 if (rs[Rs_imLocale])
325 SET_LOCALE (locale); 354 SET_LOCALE (locale);
326 355
327 if (status_return == XLookupChars 356 if (status_return == XLookupChars
328 || status_return == XLookupBoth) 357 || status_return == XLookupBoth)
349 || status_return == XLookupBoth; 378 || status_return == XLookupBoth;
350 } 379 }
351 else 380 else
352#endif 381#endif
353 { 382 {
354 len = XLookupString (&ev, (char *)kbuf, KBUFSZ, &keysym, &compose); 383 len = XLookupString (&ev, kbuf, KBUFSZ, &keysym, &compose);
355 valid_keysym = keysym != NoSymbol; 384 valid_keysym = keysym != NoSymbol;
356 } 385 }
357 386
358 if (valid_keysym) 387 if (valid_keysym)
359 { 388 {
360#ifdef KEYSYM_RESOURCE 389#ifdef KEYSYM_RESOURCE
361 if (keyboard->dispatch (this, keysym, ev.state)) 390 if (keyboard->dispatch (this, keysym, ev.state))
362 return; 391 return;
363#endif 392#endif
364 393
365 if (TermWin.saveLines) 394 if (saveLines)
366 { 395 {
367#ifdef UNSHIFTED_SCROLLKEYS 396#ifdef UNSHIFTED_SCROLLKEYS
368 if (!ctrl && !meta) 397 if (!ctrl && !meta)
369#else 398#else
370 if (IS_SCROLL_MOD) 399 if (IS_SCROLL_MOD)
371#endif 400#endif
372 { 401 {
373 int lnsppg; 402 int lnsppg;
374 403
375#ifdef PAGING_CONTEXT_LINES 404#ifdef PAGING_CONTEXT_LINES
376 lnsppg = TermWin.nrow - PAGING_CONTEXT_LINES; 405 lnsppg = nrow - PAGING_CONTEXT_LINES;
377#else 406#else
378 lnsppg = TermWin.nrow * 4 / 5; 407 lnsppg = nrow * 4 / 5;
379#endif 408#endif
380 if (keysym == XK_Prior) 409 if (keysym == XK_Prior)
381 { 410 {
382 scr_page (UP, lnsppg); 411 scr_page (UP, lnsppg);
383 return; 412 return;
411 scr_move_to (0, 1); 440 scr_move_to (0, 1);
412 return; 441 return;
413 } 442 }
414 else if (keysym == XK_End) 443 else if (keysym == XK_End)
415 { 444 {
416 scr_move_to (1, 0); 445 scr_move_to (1, 1);
417 return; 446 return;
418 } 447 }
419 } 448 }
420#endif 449#endif
421 } 450 }
432 { 461 {
433 switch (keysym) 462 switch (keysym)
434 { 463 {
435 /* normal XTerm key bindings */ 464 /* normal XTerm key bindings */
436 case XK_Insert: /* Shift+Insert = paste mouse selection */ 465 case XK_Insert: /* Shift+Insert = paste mouse selection */
437 selection_request (ev.time, 0, 0); 466 selection_request (ev.time);
438 return; 467 return;
439#if TODO 468#if TODO
440 /* rxvt extras */ 469 /* rxvt extras */
441 case XK_KP_Add: /* Shift+KP_Add = bigger font */ 470 case XK_KP_Add: /* Shift+KP_Add = bigger font */
442 change_font (FONT_UP); 471 change_font (FONT_UP);
823 { 852 {
824#ifdef META8_OPTION 853#ifdef META8_OPTION
825 /* set 8-bit on */ 854 /* set 8-bit on */
826 if (meta && (meta_char == 0x80)) 855 if (meta && (meta_char == 0x80))
827 { 856 {
828 unsigned char *ch; 857 char *ch;
829 858
830 for (ch = kbuf; ch < kbuf + len; ch++) 859 for (ch = kbuf; ch < kbuf + len; ch++)
831 *ch |= 0x80; 860 *ch |= 0x80;
832 861
833 meta = 0; 862 meta = 0;
835#endif 864#endif
836 /* nil */ ; 865 /* nil */ ;
837 } 866 }
838 } 867 }
839 868
869 if (HOOK_INVOKE ((this, HOOK_KEY_PRESS, DT_XEVENT, &ev, DT_INT, keysym, DT_STR_LEN, kbuf, len, DT_END)))
870 return;
871
840 if (len <= 0) 872 if (len <= 0)
841 return; /* not mapped */ 873 return; /* not mapped */
842 874
843 if (options & Opt_scrollTtyKeypress) 875 if (OPTION (Opt_scrollTtyKeypress))
844 if (TermWin.view_start) 876 if (view_start)
845 { 877 {
846 TermWin.view_start = 0; 878 view_start = 0;
847 want_refresh = 1; 879 want_refresh = 1;
848 } 880 }
849 881
850 /* 882 /*
851 * these modifications only affect the static keybuffer 883 * these modifications only affect the static keybuffer
866#ifdef META8_OPTION 898#ifdef META8_OPTION
867 && meta_char == C0_ESC 899 && meta_char == C0_ESC
868#endif 900#endif
869 ) 901 )
870 { 902 {
871 const unsigned char ch = C0_ESC; 903 const char ch = C0_ESC;
872 tt_write (&ch, 1); 904 tt_write (&ch, 1);
873 } 905 }
874 906
875#if defined(DEBUG_CMD) 907#if defined(DEBUG_CMD)
876 /* Display keyboard buffer contents */ 908 /* Display keyboard buffer contents */
884#endif /* DEBUG_CMD */ 916#endif /* DEBUG_CMD */
885 tt_write (kbuf, (unsigned int)len); 917 tt_write (kbuf, (unsigned int)len);
886} 918}
887/*}}} */ 919/*}}} */
888 920
889#if MENUBAR_MAX || defined (KEYSYM_RESOURCE) 921#if defined (KEYSYM_RESOURCE)
890/*{{{ rxvt_cmd_write (), rxvt_cmd_getc () */
891/* attempt to `write' count to the input buffer */
892unsigned int 922unsigned int
893rxvt_term::cmd_write (const unsigned char *str, unsigned int count) 923rxvt_term::cmd_write (const char *str, unsigned int count)
894{ 924{
895 unsigned int n, s; 925 unsigned int n, s;
896 926
897 n = cmdbuf_ptr - cmdbuf_base; 927 n = cmdbuf_ptr - cmdbuf_base;
898 s = cmdbuf_base + CBUFSIZ - 1 - cmdbuf_endp; 928 s = cmdbuf_base + CBUFSIZ - 1 - cmdbuf_endp;
935 } 965 }
936#endif 966#endif
937 967
938 if (want_refresh) 968 if (want_refresh)
939 { 969 {
970 if (SHOULD_INVOKE (HOOK_LINE_UPDATE))
971 {
972 int row = view_start;
973 int end_row = row + nrow;
974
975 while (row > top_row && ROW (row - 1).is_longer ())
976 --row;
977
978 do
979 {
980 int start_row = row;
981 line_t *l;
982
983 do
984 {
985 l = &ROW (row++);
986
987 if (!(l->f & LINE_FILTERED))
988 {
989 // line not filtered, mark it as filtered
990 l->f |= LINE_FILTERED;
991 while (l->is_longer ())
992 {
993 l = &ROW (row++);
994 l->f |= LINE_FILTERED;
995 }
996
997 // and filter it
998 HOOK_INVOKE ((this, HOOK_LINE_UPDATE, DT_INT, start_row, DT_END));
999
1000 break;
1001 }
1002 }
1003 while (l->is_longer () && row < end_row);
1004 }
1005 while (row < end_row);
1006 }
1007
940 scr_refresh (refresh_type); 1008 scr_refresh ();
941 scrollbar_show (1); 1009 scrollbar_show (1);
942#ifdef USE_XIM 1010#ifdef USE_XIM
943 IMSendSpot (); 1011 IMSendSpot ();
944#endif 1012#endif
945 } 1013 }
948} 1016}
949 1017
950void 1018void
951rxvt_term::check_cb (check_watcher &w) 1019rxvt_term::check_cb (check_watcher &w)
952{ 1020{
953 SET_R (this); 1021 make_current ();
954 SET_LOCALE (locale);
955 1022
956 display->flush (); 1023 display->flush ();
957 1024
958 if (want_refresh && !flush_ev.active) 1025 if (want_refresh && !flush_ev.active)
959 flush_ev.start (NOW + 0.01); 1026 flush_ev.start (NOW + 1. / 60.); // refresh at max. 60 hz normally
960} 1027}
961 1028
962void 1029void
963rxvt_term::flush_cb (time_watcher &w) 1030rxvt_term::flush_cb (time_watcher &w)
964{ 1031{
965 SET_R (this); 1032 make_current ();
966 SET_LOCALE (locale);
967 1033
968 refresh_limit = 1; 1034 refresh_limit = 1;
969 refresh_count = 0; 1035 refresh_count = 0;
970 flush (); 1036 flush ();
971} 1037}
975rxvt_term::cursor_blink_cb (time_watcher &w) 1041rxvt_term::cursor_blink_cb (time_watcher &w)
976{ 1042{
977 hidden_cursor = !hidden_cursor; 1043 hidden_cursor = !hidden_cursor;
978 want_refresh = 1; 1044 want_refresh = 1;
979 1045
980 w.start (w.at + BLINK_INTERVAL); 1046 w.start (w.at + CURSOR_BLINK_INTERVAL);
981} 1047}
982#endif 1048#endif
983 1049
984#ifdef TEXT_BLINK 1050#ifdef TEXT_BLINK
985void 1051void
999rxvt_term::cont_scroll_cb (time_watcher &w) 1065rxvt_term::cont_scroll_cb (time_watcher &w)
1000{ 1066{
1001 if ((scrollbar_isUp() || scrollbar_isDn()) && 1067 if ((scrollbar_isUp() || scrollbar_isDn()) &&
1002 scr_page (scrollbar_isUp() ? UP : DN, 1)) 1068 scr_page (scrollbar_isUp() ? UP : DN, 1))
1003 { 1069 {
1004 refresh_type |= SMOOTH_REFRESH;
1005 want_refresh = 1; 1070 want_refresh = 1;
1006 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1071 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY);
1007 } 1072 }
1008} 1073}
1009#endif 1074#endif
1013rxvt_term::sel_scroll_cb (time_watcher &w) 1078rxvt_term::sel_scroll_cb (time_watcher &w)
1014{ 1079{
1015 if (scr_page (scroll_selection_dir, scroll_selection_lines)) 1080 if (scr_page (scroll_selection_dir, scroll_selection_lines))
1016 { 1081 {
1017 selection_extend (selection_save_x, selection_save_y, selection_save_state); 1082 selection_extend (selection_save_x, selection_save_y, selection_save_state);
1018 refresh_type |= SMOOTH_REFRESH;
1019 want_refresh = 1; 1083 want_refresh = 1;
1020 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1084 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY);
1021 } 1085 }
1022} 1086}
1023#endif 1087#endif
1028{ 1092{
1029 if (mouse_slip_wheel_speed == 0 1093 if (mouse_slip_wheel_speed == 0
1030 || mouse_slip_wheel_speed < 0 ? scr_page (DN, -mouse_slip_wheel_speed) 1094 || mouse_slip_wheel_speed < 0 ? scr_page (DN, -mouse_slip_wheel_speed)
1031 : scr_page (UP, mouse_slip_wheel_speed)) 1095 : scr_page (UP, mouse_slip_wheel_speed))
1032 { 1096 {
1033 if (TermWin.view_start == TermWin.nscrolled || 1097 if (view_start == top_row || view_start == 0)
1034 TermWin.view_start == 0)
1035 mouse_slip_wheel_speed = 0; 1098 mouse_slip_wheel_speed = 0;
1036 1099
1037 refresh_type |= SMOOTH_REFRESH;
1038 want_refresh = 1; 1100 want_refresh = 1;
1039 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1101 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY);
1040 } 1102 }
1041} 1103}
1042#endif 1104#endif
1043 1105
1106#if HAVE_SCHED_YIELD
1107static struct event_handler
1108{
1109 check_watcher cw_yield;
1110
1111 void yield (check_watcher &w)
1112 {
1113 sched_yield ();
1114 w.stop ();
1115 }
1116
1117 event_handler ()
1118 : cw_yield (this, &event_handler::yield)
1119 {
1120 }
1121} event_handler;
1122#endif
1123
1044bool 1124bool
1045rxvt_term::pty_fill () 1125rxvt_term::pty_fill ()
1046{ 1126{
1047 ssize_t n = cmdbuf_endp - cmdbuf_ptr; 1127 ssize_t n = cmdbuf_endp - cmdbuf_ptr;
1048 1128
1049 if (CBUFSIZ == n) 1129 if (CBUFSIZ == n)
1050 { 1130 {
1051 rxvt_warn ("pty_fill on full buffer, draining input, continuing.\n"); 1131 rxvt_warn ("PLEASE REPORT: pty_fill on full buffer, draining input, continuing.\n");
1052 n = 0; 1132 n = 0;
1053 } 1133 }
1054 1134
1055 memmove (cmdbuf_base, cmdbuf_ptr, n); 1135 memmove (cmdbuf_base, cmdbuf_ptr, n);
1056 cmdbuf_ptr = cmdbuf_base; 1136 cmdbuf_ptr = cmdbuf_base;
1057 cmdbuf_endp = cmdbuf_ptr + n; 1137 cmdbuf_endp = cmdbuf_ptr + n;
1058 1138
1059 n = read (pty.pty, cmdbuf_endp, CBUFSIZ - n); 1139 ssize_t r = read (pty->pty, cmdbuf_endp, CBUFSIZ - n);
1060 1140
1061 if (n > 0) 1141 if (r > 0)
1062 { 1142 {
1063 cmdbuf_endp += n; 1143 cmdbuf_endp += r;
1064 return true; 1144 return true;
1065 } 1145 }
1066 else if (n < 0 && errno != EAGAIN) 1146 else if (r < 0 && (errno == EAGAIN || errno == EINTR))
1147 {
1148#if HAVE_SCHED_YIELD
1149 if (display->is_local)
1150 event_handler.cw_yield.start ();
1151#endif
1152 }
1153 else
1154 {
1155 pty_ev.stop ();
1156
1157 if (!OPTION (Opt_hold))
1067 destroy (); 1158 destroy ();
1159 }
1068 1160
1069 return false; 1161 return false;
1070} 1162}
1071 1163
1072void 1164void
1073rxvt_term::pty_cb (io_watcher &w, short revents) 1165rxvt_term::pty_cb (io_watcher &w, short revents)
1074{ 1166{
1075 SET_R (this); 1167 make_current ();
1076 SET_LOCALE (locale);
1077 1168
1078 if (revents & EVENT_READ) 1169 if (revents & EVENT_READ)
1079 // loop, but don't allow a single term to monopolize us 1170 // loop, but don't allow a single term to monopolize us
1080 while (pty_fill ()) 1171 while (pty_fill ())
1081 if (cmd_parse ()) 1172 if (cmd_parse ())
1086} 1177}
1087 1178
1088void 1179void
1089rxvt_term::pointer_unblank () 1180rxvt_term::pointer_unblank ()
1090{ 1181{
1091 XDefineCursor (display->display, TermWin.vt, TermWin_cursor); 1182 XDefineCursor (display->display, vt, TermWin_cursor);
1092 recolour_cursor (); 1183 recolour_cursor ();
1093 1184
1094#ifdef POINTER_BLANK 1185#ifdef POINTER_BLANK
1095 hidden_pointer = 0; 1186 hidden_pointer = 0;
1096 1187
1097 if (options & Opt_pointerBlank) 1188 if (OPTION (Opt_pointerBlank))
1098 pointer_ev.start (NOW + pointerBlankDelay); 1189 pointer_ev.start (NOW + pointerBlankDelay);
1099#endif 1190#endif
1100} 1191}
1101 1192
1102#ifdef POINTER_BLANK 1193#ifdef POINTER_BLANK
1103void 1194void
1104rxvt_term::pointer_blank () 1195rxvt_term::pointer_blank ()
1105{ 1196{
1106 if (! (options & Opt_pointerBlank)) 1197 if (!OPTION (Opt_pointerBlank))
1107 return; 1198 return;
1108 1199
1109 XDefineCursor (display->display, TermWin.vt, display->blank_cursor); 1200 XDefineCursor (display->display, vt, display->blank_cursor);
1110 XFlush (display->display); 1201 XFlush (display->display);
1111 1202
1112 hidden_pointer = 1; 1203 hidden_pointer = 1;
1113} 1204}
1114 1205
1115void 1206void
1116rxvt_term::pointer_cb (time_watcher &w) 1207rxvt_term::pointer_cb (time_watcher &w)
1117{ 1208{
1118 SET_R (this); 1209 make_current ();
1119 SET_LOCALE (locale);
1120 1210
1121 pointer_blank (); 1211 pointer_blank ();
1122} 1212}
1123#endif 1213#endif
1124 1214
1203 1293
1204/*{{{ process an X event */ 1294/*{{{ process an X event */
1205void 1295void
1206rxvt_term::x_cb (XEvent &ev) 1296rxvt_term::x_cb (XEvent &ev)
1207{ 1297{
1298 make_current ();
1299
1208 dDisp; 1300 dDisp;
1209 1301
1210 SET_R (this); 1302 if (ev.xany.window == vt
1211 SET_LOCALE (locale); 1303 && SHOULD_INVOKE (HOOK_X_EVENT)
1304 && HOOK_INVOKE ((this, HOOK_X_EVENT, DT_XEVENT, &ev, DT_END)))
1305 return;
1212 1306
1213#if defined(CURSOR_BLINK) 1307 // for XQueryPointer
1214 if ((options & Opt_cursorBlink) && ev.type == KeyPress)
1215 {
1216 if (hidden_cursor)
1217 {
1218 hidden_cursor = 0;
1219 want_refresh = 1;
1220 }
1221
1222 cursor_blink_ev.start (NOW + BLINK_INTERVAL);
1223 }
1224#endif
1225
1226#if defined(POINTER_BLANK)
1227 if ((options & Opt_pointerBlank) && pointerBlankDelay > 0)
1228 {
1229 if (ev.type == MotionNotify
1230 || ev.type == ButtonPress
1231 || ev.type == ButtonRelease)
1232 if (hidden_pointer)
1233 pointer_unblank ();
1234
1235 if (ev.type == KeyPress && hidden_pointer == 0)
1236 pointer_blank ();
1237 }
1238#endif
1239
1240 Window unused_root, unused_child; 1308 Window unused_root, unused_child;
1241 int unused_root_x, unused_root_y; 1309 int unused_root_x, unused_root_y;
1242 unsigned int unused_mask; 1310 unsigned int unused_mask;
1243 1311
1244 switch (ev.type) 1312 switch (ev.type)
1251 1319
1252 break; 1320 break;
1253 1321
1254 case KeyRelease: 1322 case KeyRelease:
1255 { 1323 {
1256#if (MOUSE_WHEEL && MOUSE_SLIP_WHEELING) || ISO_14755 1324#if (MOUSE_WHEEL && MOUSE_SLIP_WHEELING) || ISO_14755 || ENABLE_PERL
1257 KeySym ks; 1325 KeySym keysym;
1258 1326
1259 ks = XLookupKeysym (&ev.xkey, ev.xkey.state & ShiftMask ? 1 : 0); // sorry, only shift supported :/ 1327 keysym = XLookupKeysym (&ev.xkey, ev.xkey.state & ShiftMask ? 1 : 0); // sorry, only shift supported :/
1260#endif 1328#endif
1261 1329
1262#if ENABLE_FRILLS || ISO_14755 1330#if ENABLE_FRILLS || ISO_14755
1263 // ISO 14755 support 1331 // ISO 14755 support
1264 if (iso14755buf) 1332 if (iso14755buf)
1269# endif 1337# endif
1270# if ISO_14755 1338# if ISO_14755
1271 // iso14755 part 5.2 handling: release time 1339 // iso14755 part 5.2 handling: release time
1272 // first: controls 1340 // first: controls
1273 if ((ev.xkey.state & ControlMask) 1341 if ((ev.xkey.state & ControlMask)
1274 && ((ks >= 0x40 && ks <= 0x5f) 1342 && ((keysym >= 0x40 && keysym <= 0x5f)
1275 || (ks >= 0x61 && ks <= 0x7f))) 1343 || (keysym >= 0x61 && keysym <= 0x7f)))
1276 { 1344 {
1277 iso14755buf = ISO_14755_51 | 0x2400 | (ks & 0x1f); 1345 iso14755buf = ISO_14755_51 | 0x2400 | (keysym & 0x1f);
1278 commit_iso14755 (); 1346 commit_iso14755 ();
1279 return; // case-break; 1347 goto skip_switch;
1280 } 1348 }
1281 1349
1282 for (unsigned short *i = iso14755_symtab; i[0]; i+= 2) 1350 for (unsigned short *i = iso14755_symtab; i[0]; i+= 2)
1283 if (i[0] == ks) 1351 if (i[0] == keysym)
1284 { 1352 {
1285 iso14755buf = ISO_14755_51 | i[1]; 1353 iso14755buf = ISO_14755_51 | i[1];
1286 commit_iso14755 (); 1354 commit_iso14755 ();
1287 return; // case-break; 1355 goto skip_switch;
1288 } 1356 }
1289 1357
1290 scr_bell (); 1358 scr_bell ();
1291# endif 1359# endif
1292 iso14755buf = 0; 1360 iso14755buf = 0;
1311 else 1379 else
1312 iso14755buf = 0; 1380 iso14755buf = 0;
1313 } 1381 }
1314#endif 1382#endif
1315 1383
1384 if (ev.xany.window == vt
1385 && HOOK_INVOKE ((this, HOOK_KEY_RELEASE, DT_XEVENT, &ev, DT_INT, keysym, DT_END)))
1386 break;
1387
1316#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING) 1388#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
1317 if (!(ev.xkey.state & ControlMask)) 1389 if (!(ev.xkey.state & ControlMask))
1318 slip_wheel_ev.stop (); 1390 slip_wheel_ev.stop ();
1319 else if (ks == XK_Control_L || ks == XK_Control_R) 1391 else if (keysym == XK_Control_L || keysym == XK_Control_R)
1320 mouse_slip_wheel_speed = 0; 1392 mouse_slip_wheel_speed = 0;
1321#endif 1393#endif
1322 break; 1394 break;
1323 } 1395 }
1324 1396
1330 button_release (ev.xbutton); 1402 button_release (ev.xbutton);
1331 break; 1403 break;
1332 1404
1333 case ClientMessage: 1405 case ClientMessage:
1334 if (ev.xclient.format == 32 1406 if (ev.xclient.format == 32
1335 && ev.xclient.message_type == xa[XA_WM_PROTOCOLS]) 1407 && !HOOK_INVOKE ((this, HOOK_CLIENT_MESSAGE, DT_XEVENT, &ev, DT_END)))
1336 { 1408 {
1409 if (ev.xclient.message_type == xa[XA_WM_PROTOCOLS])
1410 {
1411 if (!HOOK_INVOKE ((this, HOOK_WM_PROTOCOLS, DT_XEVENT, &ev, DT_END)))
1412 {
1337 if (ev.xclient.data.l[0] == xa[XA_WM_DELETE_WINDOW]) 1413 if (ev.xclient.data.l[0] == xa[XA_WM_DELETE_WINDOW])
1414 {
1415 if (!HOOK_INVOKE ((this, HOOK_WM_DELETE_WINDOW, DT_XEVENT, &ev, DT_END)))
1338 destroy (); 1416 destroy ();
1417 }
1339#if ENABLE_EWMH 1418#if ENABLE_EWMH
1340 else if (ev.xclient.data.l[0] == xa[XA_NET_WM_PING]) 1419 else if (ev.xclient.data.l[0] == xa[XA_NET_WM_PING])
1341 XSendEvent (disp, ev.xclient.window = display->root, 1420 XSendEvent (disp, ev.xclient.window = display->root,
1342 False, SubstructureRedirectMask | SubstructureNotifyMask, 1421 False, SubstructureRedirectMask | SubstructureNotifyMask,
1343 &ev); 1422 &ev);
1423#endif
1424 }
1425 }
1426#if ENABLE_XEMBED
1427 else if (ev.xclient.format == 32 && ev.xclient.message_type == xa[XA_XEMBED])
1428 {
1429 if (ev.xclient.data.l[1] == XEMBED_FOCUS_IN)
1430 focus_in ();
1431 else if (ev.xclient.data.l[1] == XEMBED_FOCUS_OUT)
1432 focus_out ();
1433 }
1344#endif 1434#endif
1345 } 1435 }
1346#if ENABLE_XEMBED
1347 else if (ev.xclient.format == 32 && ev.xclient.message_type == xa[XA_XEMBED])
1348 {
1349 if (ev.xclient.data.l[1] == XEMBED_FOCUS_IN)
1350 focus_in ();
1351 else if (ev.xclient.data.l[1] == XEMBED_FOCUS_OUT)
1352 focus_out ();
1353 }
1354#endif
1355#ifdef OFFIX_DND
1356 /* OffiX Dnd (drag 'n' drop) protocol */
1357 else if (ev.xclient.message_type == xa[XA_DNDPROTOCOL]
1358 && (ev.xclient.data.l[0] == DndFile
1359 || ev.xclient.data.l[0] == DndDir
1360 || ev.xclient.data.l[0] == DndLink))
1361 {
1362 /* Get Dnd data */
1363 Atom ActualType;
1364 int ActualFormat;
1365 unsigned char *data;
1366 unsigned long Size, RemainingBytes;
1367
1368 XGetWindowProperty (disp, display->root,
1369 xa[XA_DNDSELECTION],
1370 0L, 1000000L,
1371 False, AnyPropertyType,
1372 &ActualType, &ActualFormat,
1373 &Size, &RemainingBytes,
1374 &data);
1375 set_string_property (XA_CUT_BUFFER0, data);
1376 XFree (data);
1377 selection_paste (display->root, XA_CUT_BUFFER0, true);
1378 XSetInputFocus (disp, display->root, RevertToNone, CurrentTime);
1379 }
1380#endif /* OFFIX_DND */
1381 break; 1436 break;
1382 1437
1383 case MappingNotify: 1438 case MappingNotify:
1384 XRefreshKeyboardMapping (&ev.xmapping); 1439 XRefreshKeyboardMapping (&ev.xmapping);
1385 break; 1440 break;
1416 case FocusOut: 1471 case FocusOut:
1417 focus_out (); 1472 focus_out ();
1418 break; 1473 break;
1419 1474
1420 case ConfigureNotify: 1475 case ConfigureNotify:
1421 if (ev.xconfigure.window == TermWin.parent[0]) 1476 if (ev.xconfigure.window == parent[0])
1422 { 1477 {
1423 int height, width;
1424
1425 do
1426 { /* Wrap lots of configures into one */
1427 width = ev.xconfigure.width;
1428 height = ev.xconfigure.height;
1429 D_SIZE ((stderr, "Size: ConfigureNotify: %4d x %4d", width, height));
1430 }
1431 while (XCheckTypedWindowEvent (disp, ev.xconfigure.window, ConfigureNotify, &ev)); 1478 while (XCheckTypedWindowEvent (disp, ev.xconfigure.window, ConfigureNotify, &ev))
1479 ;
1432 1480
1433 if (szHint.width != width || szHint.height != height) 1481 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height)
1434 { 1482 {
1435 seen_resize = 1; 1483 seen_resize = 1;
1436 resize_all_windows (width, height, 1); 1484 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1);
1437 } 1485 }
1438 1486
1487 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END));
1488
1439#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */ 1489#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */
1440 if (options & Opt_transparent) 1490 if (OPTION (Opt_transparent))
1441 check_our_parents (); 1491 check_our_parents ();
1442#endif 1492#endif
1443 } 1493 }
1444 break; 1494 break;
1445 1495
1446 case PropertyNotify: 1496 case PropertyNotify:
1497 if (!HOOK_INVOKE ((this, HOOK_PROPERTY_NOTIFY, DT_XEVENT, &ev, DT_END)))
1447 if (ev.xproperty.atom == xa[XA_VT_SELECTION] 1498 if (ev.xproperty.atom == xa[XA_VT_SELECTION]
1448 && ev.xproperty.state == PropertyNewValue) 1499 && ev.xproperty.state == PropertyNewValue)
1449 selection_property (ev.xproperty.window, ev.xproperty.atom); 1500 selection_property (ev.xproperty.window, ev.xproperty.atom);
1450 1501
1451 break; 1502 break;
1452 1503
1453 case SelectionClear: 1504 case SelectionClear:
1454 selection_clear (); 1505 selection_clear ();
1461 1512
1462 case SelectionRequest: 1513 case SelectionRequest:
1463 selection_send (ev.xselectionrequest); 1514 selection_send (ev.xselectionrequest);
1464 break; 1515 break;
1465 1516
1517 case MapNotify:
1518 mapped = 1;
1519#ifdef TEXT_BLINK
1520 text_blink_ev.start (NOW + TEXT_BLINK_INTERVAL);
1521#endif
1522 HOOK_INVOKE ((this, HOOK_MAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1523 break;
1524
1466 case UnmapNotify: 1525 case UnmapNotify:
1467 TermWin.mapped = 0; 1526 mapped = 0;
1468#ifdef TEXT_BLINK 1527#ifdef TEXT_BLINK
1469 text_blink_ev.stop (); 1528 text_blink_ev.stop ();
1470#endif 1529#endif
1471 break; 1530 HOOK_INVOKE ((this, HOOK_UNMAP_NOTIFY, DT_XEVENT, &ev, DT_END));
1472
1473 case MapNotify:
1474 TermWin.mapped = 1;
1475#ifdef TEXT_BLINK
1476 text_blink_ev.start (NOW + TEXT_BLINK_INTERVAL);
1477#endif
1478 break; 1531 break;
1479 1532
1480#ifdef TRANSPARENT 1533#ifdef TRANSPARENT
1481 case ReparentNotify: 1534 case ReparentNotify:
1482 rootwin_cb (ev); 1535 rootwin_cb (ev);
1483 break; 1536 break;
1484#endif /* TRANSPARENT */ 1537#endif /* TRANSPARENT */
1485 1538
1486 case GraphicsExpose: 1539 case GraphicsExpose:
1487 case Expose: 1540 case Expose:
1488 if (ev.xany.window == TermWin.vt) 1541 if (ev.xany.window == vt)
1489 { 1542 {
1490 do 1543 do
1491 scr_expose (ev.xexpose.x, ev.xexpose.y, 1544 scr_expose (ev.xexpose.x, ev.xexpose.y,
1492 ev.xexpose.width, ev.xexpose.height, False); 1545 ev.xexpose.width, ev.xexpose.height, False);
1493 while (XCheckTypedWindowEvent (disp, TermWin.vt, ev.xany.type, &ev)); 1546 while (XCheckTypedWindowEvent (disp, vt, ev.xany.type, &ev));
1494 1547
1495 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose; 1548 ev.xany.type = ev.xany.type == Expose ? GraphicsExpose : Expose;
1496 1549
1497 while (XCheckTypedWindowEvent (disp, TermWin.vt, ev.xany.type, &ev)) 1550 while (XCheckTypedWindowEvent (disp, vt, ev.xany.type, &ev))
1498 scr_expose (ev.xexpose.x, ev.xexpose.y, 1551 scr_expose (ev.xexpose.x, ev.xexpose.y,
1499 ev.xexpose.width, ev.xexpose.height, False); 1552 ev.xexpose.width, ev.xexpose.height, False);
1500 1553
1501 scr_refresh (refresh_type); 1554 want_refresh = 1;
1502 } 1555 }
1503 else 1556 else
1504 { 1557 {
1505 XEvent unused_event; 1558 XEvent unused_event;
1506 1559
1512 if (isScrollbarWindow (ev.xany.window)) 1565 if (isScrollbarWindow (ev.xany.window))
1513 { 1566 {
1514 scrollBar.setIdle (); 1567 scrollBar.setIdle ();
1515 scrollbar_show (0); 1568 scrollbar_show (0);
1516 } 1569 }
1517#ifdef MENUBAR
1518 if (menubar_visible () && isMenuBarWindow (ev.xany.window))
1519 menubar_expose ();
1520#endif
1521 1570
1522#ifdef TRANSPARENT 1571#ifdef TRANSPARENT
1523 if (am_transparent && ev.xany.window == TermWin.parent[0]) 1572 if (am_transparent && ev.xany.window == parent[0])
1524 XClearWindow (disp, ev.xany.window); 1573 XClearWindow (disp, ev.xany.window);
1525#endif 1574#endif
1526 } 1575 }
1527 break; 1576 break;
1528 1577
1529 case MotionNotify: 1578 case MotionNotify:
1530#ifdef POINTER_BLANK 1579#ifdef POINTER_BLANK
1531 if (hidden_pointer) 1580 if (hidden_pointer)
1532 pointer_unblank (); 1581 pointer_unblank ();
1533#endif 1582#endif
1534#if MENUBAR
1535 if (isMenuBarWindow (ev.xany.window))
1536 {
1537 menubar_control (ev.xbutton);
1538 break;
1539 }
1540#endif
1541 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate) 1583 if ((priv_modes & PrivMode_mouse_report) && !bypass_keystate)
1542 break; 1584 break;
1543 1585
1544 if (ev.xany.window == TermWin.vt) 1586 if (ev.xany.window == vt)
1545 { 1587 {
1588 if (SHOULD_INVOKE (HOOK_MOTION_NOTIFY)
1589 && HOOK_INVOKE ((this, HOOK_MOTION_NOTIFY, DT_XEVENT, &ev, DT_END)))
1590 ; // nop
1546 if (ev.xbutton.state & (Button1Mask | Button3Mask)) 1591 else if (ev.xbutton.state & (Button1Mask | Button3Mask))
1547 { 1592 {
1548 while (XCheckTypedWindowEvent (disp, TermWin.vt, MotionNotify, &ev)) 1593 while (XCheckTypedWindowEvent (disp, vt, MotionNotify, &ev))
1549 ; 1594 ;
1550 1595
1551 XQueryPointer (disp, TermWin.vt, 1596 XQueryPointer (disp, vt,
1552 &unused_root, &unused_child, 1597 &unused_root, &unused_child,
1553 &unused_root_x, &unused_root_y, 1598 &unused_root_x, &unused_root_y,
1554 &ev.xbutton.x, &ev.xbutton.y, 1599 &ev.xbutton.x, &ev.xbutton.y,
1555 &ev.xbutton.state); 1600 &ev.xbutton.state);
1556#ifdef MOUSE_THRESHOLD 1601#ifdef MOUSE_THRESHOLD
1568#endif 1613#endif
1569 selection_extend (ev.xbutton.x, ev.xbutton.y, 1614 selection_extend (ev.xbutton.x, ev.xbutton.y,
1570 ev.xbutton.state & Button3Mask ? 2 : 0); 1615 ev.xbutton.state & Button3Mask ? 2 : 0);
1571 1616
1572#ifdef SELECTION_SCROLLING 1617#ifdef SELECTION_SCROLLING
1573 if (ev.xbutton.y < TermWin.int_bwidth 1618 if (ev.xbutton.y < int_bwidth
1574 || Pixel2Row (ev.xbutton.y) > (TermWin.nrow-1)) 1619 || Pixel2Row (ev.xbutton.y) > (nrow-1))
1575 { 1620 {
1576 int dist; 1621 int dist;
1577 1622
1578 /* don't clobber the current delay if we are 1623 /* don't clobber the current delay if we are
1579 * already in the middle of scrolling. 1624 * already in the middle of scrolling.
1587 selection_save_x = ev.xbutton.x; 1632 selection_save_x = ev.xbutton.x;
1588 selection_save_y = ev.xbutton.y; 1633 selection_save_y = ev.xbutton.y;
1589 selection_save_state = (ev.xbutton.state & Button3Mask) ? 2 : 0; 1634 selection_save_state = (ev.xbutton.state & Button3Mask) ? 2 : 0;
1590 1635
1591 /* calc number of lines to scroll */ 1636 /* calc number of lines to scroll */
1592 if (ev.xbutton.y < TermWin.int_bwidth) 1637 if (ev.xbutton.y < int_bwidth)
1593 { 1638 {
1594 scroll_selection_dir = UP; 1639 scroll_selection_dir = UP;
1595 dist = TermWin.int_bwidth - ev.xbutton.y; 1640 dist = int_bwidth - ev.xbutton.y;
1596 } 1641 }
1597 else 1642 else
1598 { 1643 {
1599 scroll_selection_dir = DN; 1644 scroll_selection_dir = DN;
1600 dist = ev.xbutton.y - (TermWin.int_bwidth + TermWin.height); 1645 dist = ev.xbutton.y - (int_bwidth + height);
1601 } 1646 }
1602 1647
1603 scroll_selection_lines = Pixel2Height (dist) 1648 scroll_selection_lines = Pixel2Height (dist)
1604 / SELECTION_SCROLL_LINE_SPEEDUP 1649 / SELECTION_SCROLL_LINE_SPEEDUP
1605 + 1; 1650 + 1;
1606 MIN_IT (scroll_selection_lines, 1651 min_it (scroll_selection_lines,
1607 SELECTION_SCROLL_MAX_LINES); 1652 SELECTION_SCROLL_MAX_LINES);
1608 } 1653 }
1609 else 1654 else
1610 { 1655 {
1611 /* we are within the text window, so we 1656 /* we are within the text window, so we
1631 &unused_root_x, &unused_root_y, 1676 &unused_root_x, &unused_root_y,
1632 &ev.xbutton.x, &ev.xbutton.y, 1677 &ev.xbutton.x, &ev.xbutton.y,
1633 &unused_mask); 1678 &unused_mask);
1634 scr_move_to (scrollbar_position (ev.xbutton.y) - csrO, 1679 scr_move_to (scrollbar_position (ev.xbutton.y) - csrO,
1635 scrollbar_size ()); 1680 scrollbar_size ());
1636 scr_refresh (refresh_type); 1681 want_refresh = 1;
1637 refresh_limit = 0; 1682 refresh_limit = 0;
1638 scrollbar_show (1); 1683 scrollbar_show (1);
1639 } 1684 }
1640 break; 1685 break;
1641 } 1686 }
1687
1688skip_switch: ;
1689
1690#if defined(CURSOR_BLINK)
1691 if (OPTION (Opt_cursorBlink) && ev.type == KeyPress)
1692 {
1693 if (hidden_cursor)
1694 {
1695 hidden_cursor = 0;
1696 want_refresh = 1;
1697 }
1698
1699 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL);
1700 }
1701#endif
1702
1703#if defined(POINTER_BLANK)
1704 if (OPTION (Opt_pointerBlank) && pointerBlankDelay > 0)
1705 {
1706 if (ev.type == MotionNotify
1707 || ev.type == ButtonPress
1708 || ev.type == ButtonRelease)
1709 if (hidden_pointer)
1710 pointer_unblank ();
1711
1712 if (ev.type == KeyPress && hidden_pointer == 0)
1713 pointer_blank ();
1714 }
1715#endif
1642} 1716}
1643 1717
1644void 1718void
1645rxvt_term::focus_in () 1719rxvt_term::focus_in ()
1646{ 1720{
1647 if (!TermWin.focus) 1721 if (!focus)
1648 { 1722 {
1649 TermWin.focus = 1; 1723 focus = 1;
1650 want_refresh = 1; 1724 want_refresh = 1;
1725
1726 HOOK_INVOKE ((this, HOOK_FOCUS_OUT, DT_END));
1727
1651#ifdef USE_XIM 1728#if USE_XIM
1652 if (Input_Context != NULL) 1729 if (Input_Context != NULL)
1653 { 1730 {
1654 IMSetStatusPosition (); 1731 IMSetStatusPosition ();
1655 XSetICFocus (Input_Context); 1732 XSetICFocus (Input_Context);
1656 } 1733 }
1657#endif 1734#endif
1658#ifdef CURSOR_BLINK 1735#if CURSOR_BLINK
1659 if (options & Opt_cursorBlink) 1736 if (OPTION (Opt_cursorBlink))
1660 cursor_blink_ev.start (NOW + BLINK_INTERVAL); 1737 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL);
1661#endif 1738#endif
1662#ifdef OFF_FOCUS_FADING 1739#if OFF_FOCUS_FADING
1663 if (rs[Rs_fade]) 1740 if (rs[Rs_fade])
1664 { 1741 {
1665 pix_colors = pix_colors_focused; 1742 pix_colors = pix_colors_focused;
1666 scr_recolour (); 1743 scr_recolour ();
1667 } 1744 }
1670} 1747}
1671 1748
1672void 1749void
1673rxvt_term::focus_out () 1750rxvt_term::focus_out ()
1674{ 1751{
1675 if (TermWin.focus) 1752 if (focus)
1676 { 1753 {
1677 TermWin.focus = 0; 1754 focus = 0;
1678 want_refresh = 1; 1755 want_refresh = 1;
1679 1756
1757 HOOK_INVOKE ((this, HOOK_FOCUS_OUT, DT_END));
1758
1680#if ENABLE_FRILLS || ISO_14755 1759#if ENABLE_FRILLS || ISO_14755
1760 if (iso14755buf)
1761 {
1681 iso14755buf = 0; 1762 iso14755buf = 0;
1682#endif
1683#if ENABLE_OVERLAY 1763# if ENABLE_OVERLAY
1684 scr_overlay_off (); 1764 scr_overlay_off ();
1685#endif 1765# endif
1766 }
1767#endif
1686#ifdef USE_XIM 1768#if USE_XIM
1687 if (Input_Context != NULL) 1769 if (Input_Context != NULL)
1688 XUnsetICFocus (Input_Context); 1770 XUnsetICFocus (Input_Context);
1689#endif 1771#endif
1690#ifdef CURSOR_BLINK 1772#if CURSOR_BLINK
1691 if (options & Opt_cursorBlink) 1773 if (OPTION (Opt_cursorBlink))
1692 cursor_blink_ev.stop (); 1774 cursor_blink_ev.stop ();
1693 hidden_cursor = 0; 1775 hidden_cursor = 0;
1694#endif 1776#endif
1695#ifdef OFF_FOCUS_FADING 1777#if OFF_FOCUS_FADING
1696 if (rs[Rs_fade]) 1778 if (rs[Rs_fade])
1697 { 1779 {
1698 pix_colors = pix_colors_unfocused; 1780 pix_colors = pix_colors_unfocused;
1699 scr_recolour (); 1781 scr_recolour ();
1700 } 1782 }
1704 1786
1705#if TRANSPARENT 1787#if TRANSPARENT
1706void 1788void
1707rxvt_term::rootwin_cb (XEvent &ev) 1789rxvt_term::rootwin_cb (XEvent &ev)
1708{ 1790{
1709 SET_R (this); 1791 make_current ();
1710 SET_LOCALE (locale);
1711 1792
1712 switch (ev.type) 1793 switch (ev.type)
1713 { 1794 {
1714 case PropertyNotify: 1795 case PropertyNotify:
1715 /* 1796 /*
1720 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID]) 1801 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID])
1721 return; 1802 return;
1722 1803
1723 /* FALLTHROUGH */ 1804 /* FALLTHROUGH */
1724 case ReparentNotify: 1805 case ReparentNotify:
1725 if ((options & Opt_transparent) && check_our_parents () && am_transparent) 1806 if (OPTION (Opt_transparent) && check_our_parents () && am_transparent)
1726 want_refresh = want_full_refresh = 1; 1807 want_refresh = want_full_refresh = 1;
1727 break; 1808 break;
1728 } 1809 }
1729} 1810}
1730#endif 1811#endif
1733rxvt_term::button_press (XButtonEvent &ev) 1814rxvt_term::button_press (XButtonEvent &ev)
1734{ 1815{
1735 int reportmode = 0, clickintime; 1816 int reportmode = 0, clickintime;
1736 1817
1737 bypass_keystate = ev.state & (ModMetaMask | ShiftMask); 1818 bypass_keystate = ev.state & (ModMetaMask | ShiftMask);
1819
1738 if (!bypass_keystate) 1820 if (!bypass_keystate)
1739 reportmode = !! (priv_modes & PrivMode_mouse_report); 1821 reportmode = !! (priv_modes & PrivMode_mouse_report);
1740 1822
1741 /* 1823 /*
1742 * VT window processing of button press 1824 * VT window processing of button press
1743 */ 1825 */
1744 if (ev.window == TermWin.vt) 1826 if (ev.window == vt)
1745 { 1827 {
1746#if ISO_14755 1828#if ISO_14755
1747 // 5.4 1829 // 5.4
1748 if (iso14755buf & (ISO_14755_STARTED | ISO_14755_54)) 1830 if (iso14755buf & (ISO_14755_STARTED | ISO_14755_54))
1749 { 1831 {
1762#ifdef MOUSE_REPORT_DOUBLECLICK 1844#ifdef MOUSE_REPORT_DOUBLECLICK
1763 if (ev.button == MEvent.button && clickintime) 1845 if (ev.button == MEvent.button && clickintime)
1764 { 1846 {
1765 /* same button, within alloted time */ 1847 /* same button, within alloted time */
1766 MEvent.clicks++; 1848 MEvent.clicks++;
1849
1767 if (MEvent.clicks > 1) 1850 if (MEvent.clicks > 1)
1768 { 1851 {
1769 /* only report double clicks */ 1852 /* only report double clicks */
1770 MEvent.clicks = 2; 1853 MEvent.clicks = 2;
1771 mouse_report (ev); 1854 mouse_report (ev);
1791 else 1874 else
1792 { 1875 {
1793 if (ev.button != MEvent.button) 1876 if (ev.button != MEvent.button)
1794 MEvent.clicks = 0; 1877 MEvent.clicks = 0;
1795 1878
1879 if (!HOOK_INVOKE ((this, HOOK_BUTTON_PRESS, DT_XEVENT, &ev, DT_END)))
1796 switch (ev.button) 1880 switch (ev.button)
1797 { 1881 {
1798 case Button1: 1882 case Button1:
1799 /* allow meta + click to select rectangular areas */ 1883 /* allow meta + click to select rectangular areas */
1800 /* should be done in screen.C */ 1884 /* should be done in screen.C */
1801#if ENABLE_FRILLS 1885#if ENABLE_FRILLS
1802 selection.rect = !!(ev.state & ModMetaMask); 1886 selection.rect = !!(ev.state & ModMetaMask);
1803#else 1887#else
1804 selection.rect = false; 1888 selection.rect = false;
1805#endif 1889#endif
1806 1890
1807 /* allow shift+left click to extend selection */ 1891 /* allow shift+left click to extend selection */
1808 if (ev.state & ShiftMask && ! (priv_modes & PrivMode_mouse_report)) 1892 if (ev.state & ShiftMask && !(priv_modes & PrivMode_mouse_report))
1809 { 1893 {
1810 if (MEvent.button == Button1 && clickintime) 1894 if (MEvent.button == Button1 && clickintime)
1811 selection_rotate (ev.x, ev.y); 1895 selection_rotate (ev.x, ev.y);
1812 else 1896 else
1813 selection_extend (ev.x, ev.y, 1); 1897 selection_extend (ev.x, ev.y, 1);
1814 } 1898 }
1815 else 1899 else
1816 { 1900 {
1817 if (MEvent.button == Button1 && clickintime) 1901 if (MEvent.button == Button1 && clickintime)
1818 MEvent.clicks++; 1902 MEvent.clicks++;
1819 else 1903 else
1820 MEvent.clicks = 1; 1904 MEvent.clicks = 1;
1821 1905
1822 selection_click (MEvent.clicks, ev.x, ev.y); 1906 selection_click (MEvent.clicks, ev.x, ev.y);
1823 } 1907 }
1824 1908
1825 MEvent.button = Button1; 1909 MEvent.button = Button1;
1826 break; 1910 break;
1827 1911
1828 case Button3: 1912 case Button3:
1829 if (MEvent.button == Button3 && clickintime) 1913 if (MEvent.button == Button3 && clickintime)
1830 selection_rotate (ev.x, ev.y); 1914 selection_rotate (ev.x, ev.y);
1831 else 1915 else
1832 selection_extend (ev.x, ev.y, 1); 1916 selection_extend (ev.x, ev.y, 1);
1833 1917
1834 MEvent.button = Button3; 1918 MEvent.button = Button3;
1835 break; 1919 break;
1836 } 1920 }
1837 } 1921 }
1838 1922
1839 MEvent.time = ev.time; 1923 MEvent.time = ev.time;
1840 return; 1924 return;
1841 } 1925 }
1842 1926
1954 case Button3: 2038 case Button3:
1955 if (scrollBar.style != R_SB_XTERM) 2039 if (scrollBar.style != R_SB_XTERM)
1956 { 2040 {
1957 if (scrollbar_above_slider (ev.y)) 2041 if (scrollbar_above_slider (ev.y))
1958# ifdef RXVT_SCROLL_FULL 2042# ifdef RXVT_SCROLL_FULL
1959 scr_page (UP, TermWin.nrow - 1); 2043 scr_page (UP, nrow - 1);
1960# else 2044# else
1961 scr_page (UP, TermWin.nrow / 4); 2045 scr_page (UP, nrow / 4);
1962# endif 2046# endif
1963 else if (scrollbar_below_slider (ev.y)) 2047 else if (scrollbar_below_slider (ev.y))
1964# ifdef RXVT_SCROLL_FULL 2048# ifdef RXVT_SCROLL_FULL
1965 scr_page (DN, TermWin.nrow - 1); 2049 scr_page (DN, nrow - 1);
1966# else 2050# else
1967 scr_page (DN, TermWin.nrow / 4); 2051 scr_page (DN, nrow / 4);
1968# endif 2052# endif
1969 else 2053 else
1970 scrollBar.setMotion (); 2054 scrollBar.setMotion ();
1971 } 2055 }
1972 else 2056 else
1973 { 2057 {
1974 scr_page ((ev.button == Button1 ? DN : UP), 2058 scr_page ((ev.button == Button1 ? DN : UP),
1975 (TermWin.nrow 2059 (nrow
1976 * scrollbar_position (ev.y) 2060 * scrollbar_position (ev.y)
1977 / scrollbar_size ())); 2061 / scrollbar_size ()));
1978 } 2062 }
1979 2063
1980 break; 2064 break;
1981 } 2065 }
1982 } 2066 }
2067
1983 return; 2068 return;
1984 } 2069 }
1985#if MENUBAR
1986 /*
1987 * Menubar window processing of button press
1988 */
1989 if (isMenuBarWindow (ev.window))
1990 menubar_control (ev);
1991#endif
1992} 2070}
1993 2071
1994void 2072void
1995rxvt_term::button_release (XButtonEvent &ev) 2073rxvt_term::button_release (XButtonEvent &ev)
1996{ 2074{
2002 2080
2003 if (scrollbar_isUpDn ()) 2081 if (scrollbar_isUpDn ())
2004 { 2082 {
2005 scrollBar.setIdle (); 2083 scrollBar.setIdle ();
2006 scrollbar_show (0); 2084 scrollbar_show (0);
2007#ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
2008 refresh_type &= ~SMOOTH_REFRESH;
2009#endif
2010 } 2085 }
2011 2086
2012#ifdef SELECTION_SCROLLING 2087#ifdef SELECTION_SCROLLING
2013 if (sel_scroll_ev.active) 2088 if (sel_scroll_ev.active)
2014 sel_scroll_ev.stop(); 2089 sel_scroll_ev.stop();
2015#endif 2090#endif
2016 2091
2017 if (ev.window == TermWin.vt) 2092 if (ev.window == vt)
2018 { 2093 {
2019#if ISO_14755 2094#if ISO_14755
2020 // 5.4 2095 // 5.4
2021 if (iso14755buf & (ISO_14755_STARTED | ISO_14755_54)) 2096 if (iso14755buf & (ISO_14755_STARTED | ISO_14755_54))
2022 return; 2097 return;
2052 if (priv_modes & PrivMode_mouse_report 2127 if (priv_modes & PrivMode_mouse_report
2053 && bypass_keystate 2128 && bypass_keystate
2054 && ev.button == Button1 && MEvent.clicks <= 1) 2129 && ev.button == Button1 && MEvent.clicks <= 1)
2055 selection_extend (ev.x, ev.y, 0); 2130 selection_extend (ev.x, ev.y, 0);
2056 2131
2132 if (HOOK_INVOKE ((this, HOOK_BUTTON_RELEASE, DT_XEVENT, &ev, DT_END)))
2133 return;
2134
2057 switch (ev.button) 2135 switch (ev.button)
2058 { 2136 {
2059 case Button1: 2137 case Button1:
2060 case Button3: 2138 case Button3:
2061 selection_make (ev.time); 2139 selection_make (ev.time);
2062 break; 2140 break;
2141
2063 case Button2: 2142 case Button2:
2064 selection_request (ev.time, ev.x, ev.y); 2143 if (IN_RANGE_EXC (ev.x, 0, width) && IN_RANGE_EXC (ev.y, 0, height)) // inside window?
2144 selection_request (ev.time, ev.state & ShiftMask ? Sel_Clipboard : Sel_Primary);
2065 break; 2145 break;
2146
2066#ifdef MOUSE_WHEEL 2147#ifdef MOUSE_WHEEL
2067 case Button4: 2148 case Button4:
2068 case Button5: 2149 case Button5:
2069 { 2150 {
2070 int i; 2151 int i;
2072 2153
2073 v = ev.button == Button4 ? UP : DN; 2154 v = ev.button == Button4 ? UP : DN;
2074 2155
2075 if (ev.state & ShiftMask) 2156 if (ev.state & ShiftMask)
2076 i = 1; 2157 i = 1;
2077 else if (options & Opt_mouseWheelScrollPage) 2158 else if (OPTION (Opt_mouseWheelScrollPage))
2078 i = TermWin.nrow - 1; 2159 i = nrow - 1;
2079 else 2160 else
2080 i = 5; 2161 i = 5;
2081 2162
2082# ifdef MOUSE_SLIP_WHEELING 2163# ifdef MOUSE_SLIP_WHEELING
2083 if (ev.state & ControlMask) 2164 if (ev.state & ControlMask)
2084 { 2165 {
2085 mouse_slip_wheel_speed += v ? -1 : 1; 2166 mouse_slip_wheel_speed += v ? -1 : 1;
2086 if (mouse_slip_wheel_speed < -TermWin.nrow) mouse_slip_wheel_speed = -TermWin.nrow; 2167 if (mouse_slip_wheel_speed < -nrow) mouse_slip_wheel_speed = -nrow;
2087 if (mouse_slip_wheel_speed > +TermWin.nrow) mouse_slip_wheel_speed = +TermWin.nrow; 2168 if (mouse_slip_wheel_speed > +nrow) mouse_slip_wheel_speed = +nrow;
2088 2169
2089 if (slip_wheel_ev.at < NOW) 2170 if (slip_wheel_ev.at < NOW)
2090 slip_wheel_ev.at = NOW + SCROLLBAR_CONTINUOUS_DELAY; 2171 slip_wheel_ev.at = NOW + SCROLLBAR_CONTINUOUS_DELAY;
2091 2172
2092 slip_wheel_ev.start (); 2173 slip_wheel_ev.start ();
2093 } 2174 }
2094 else 2175 else
2095 { 2176 {
2096# endif 2177# endif
2097# ifdef JUMP_MOUSE_WHEEL
2098 scr_page (v, i); 2178 scr_page (v, i);
2099 scr_refresh (SMOOTH_REFRESH);
2100 scrollbar_show (1); 2179 scrollbar_show (1);
2101# else
2102 while (i--)
2103 {
2104 scr_page (v, 1);
2105 scr_refresh (SMOOTH_REFRESH);
2106 scrollbar_show (1);
2107 }
2108# endif
2109# ifdef MOUSE_SLIP_WHEELING 2180# ifdef MOUSE_SLIP_WHEELING
2110 } 2181 }
2111#endif 2182# endif
2112 } 2183 }
2113 break; 2184 break;
2114#endif 2185#endif
2115 } 2186 }
2116 } 2187 }
2117#ifdef MENUBAR
2118 else if (isMenuBarWindow (ev.window))
2119 menubar_control (ev);
2120#endif
2121} 2188}
2122 2189
2123#ifdef TRANSPARENT 2190#ifdef TRANSPARENT
2124#if TINTING 2191#if TINTING
2125/* taken from aterm-0.4.2 */ 2192/* taken from aterm-0.4.2 */
2368 XWindowAttributes wattr, wrootattr; 2435 XWindowAttributes wattr, wrootattr;
2369 dDisp; 2436 dDisp;
2370 2437
2371 pchanged = 0; 2438 pchanged = 0;
2372 2439
2373 if (!(options & Opt_transparent)) 2440 if (!OPTION (Opt_transparent))
2374 return pchanged; /* Don't try any more */ 2441 return pchanged; /* Don't try any more */
2375 2442
2376 XGetWindowAttributes (disp, display->root, &wrootattr); 2443 XGetWindowAttributes (disp, display->root, &wrootattr);
2377 rootdepth = wrootattr.depth; 2444 rootdepth = wrootattr.depth;
2378 2445
2379 XGetWindowAttributes (disp, TermWin.parent[0], &wattr); 2446 XGetWindowAttributes (disp, parent[0], &wattr);
2380 2447
2381 if (rootdepth != wattr.depth) 2448 if (rootdepth != wattr.depth)
2382 { 2449 {
2383 if (am_transparent) 2450 if (am_transparent)
2384 { 2451 {
2385 pchanged = 1; 2452 pchanged = 1;
2386 XSetWindowBackground (disp, TermWin.vt, pix_colors_focused[Color_bg]); 2453 XSetWindowBackground (disp, vt, pix_colors_focused[Color_bg]);
2387 am_transparent = am_pixmap_trans = 0; 2454 am_transparent = am_pixmap_trans = 0;
2388 } 2455 }
2389 2456
2390 return pchanged; /* Don't try any more */ 2457 return pchanged; /* Don't try any more */
2391 } 2458 }
2432 Window cr; 2499 Window cr;
2433 XImage *image; 2500 XImage *image;
2434 GC gc; 2501 GC gc;
2435 XGCValues gcvalue; 2502 XGCValues gcvalue;
2436 2503
2437 XTranslateCoordinates (disp, TermWin.parent[0], display->root, 2504 XTranslateCoordinates (disp, parent[0], display->root,
2438 0, 0, &sx, &sy, &cr); 2505 0, 0, &sx, &sy, &cr);
2439 nw = (unsigned int)szHint.width; 2506 nw = (unsigned int)szHint.width;
2440 nh = (unsigned int)szHint.height; 2507 nh = (unsigned int)szHint.height;
2441 nx = ny = 0; 2508 nx = ny = 0;
2442 2509
2452 nh += sy; 2519 nh += sy;
2453 ny = -sy; 2520 ny = -sy;
2454 sy = 0; 2521 sy = 0;
2455 } 2522 }
2456 2523
2457 MIN_IT (nw, (unsigned int) (wrootattr.width - sx)); 2524 min_it (nw, (unsigned int) (wrootattr.width - sx));
2458 MIN_IT (nh, (unsigned int) (wrootattr.height - sy)); 2525 min_it (nh, (unsigned int) (wrootattr.height - sy));
2459 2526
2460 XSync (disp, False); 2527 XSync (disp, False);
2461 allowedxerror = -1; 2528 allowedxerror = -1;
2462 image = XGetImage (disp, rootpixmap, sx, sy, nw, nh, AllPlanes, ZPixmap); 2529 image = XGetImage (disp, rootpixmap, sx, sy, nw, nh, AllPlanes, ZPixmap);
2463 2530
2468 if (image == NULL) 2535 if (image == NULL)
2469 { 2536 {
2470 if (am_transparent && am_pixmap_trans) 2537 if (am_transparent && am_pixmap_trans)
2471 { 2538 {
2472 pchanged = 1; 2539 pchanged = 1;
2473 if (TermWin.pixmap != None) 2540 if (pixmap != None)
2474 { 2541 {
2475 XFreePixmap (disp, TermWin.pixmap); 2542 XFreePixmap (disp, pixmap);
2476 TermWin.pixmap = None; 2543 pixmap = None;
2477 } 2544 }
2478 } 2545 }
2479 2546
2480 am_pixmap_trans = 0; 2547 am_pixmap_trans = 0;
2481 } 2548 }
2482 else 2549 else
2483 { 2550 {
2484 if (TermWin.pixmap != None) 2551 if (pixmap != None)
2485 XFreePixmap (disp, TermWin.pixmap); 2552 XFreePixmap (disp, pixmap);
2486 2553
2487#if TINTING 2554#if TINTING
2488 if (ISSET_PIXCOLOR (Color_tint)) 2555 if (ISSET_PIXCOLOR (Color_tint))
2489 { 2556 {
2490 unsigned short rm, gm, bm; 2557 unsigned short rm, gm, bm;
2494 2561
2495 ShadeXImage (display, image, shade, rm, gm, bm); 2562 ShadeXImage (display, image, shade, rm, gm, bm);
2496 } 2563 }
2497#endif 2564#endif
2498 2565
2499 TermWin.pixmap = XCreatePixmap (disp, TermWin.vt, 2566 pixmap = XCreatePixmap (disp, vt,
2500 szHint.width, szHint.height, image->depth); 2567 szHint.width, szHint.height, image->depth);
2501 gc = XCreateGC (disp, TermWin.vt, 0UL, &gcvalue); 2568 gc = XCreateGC (disp, vt, 0UL, &gcvalue);
2502 XPutImage (disp, TermWin.pixmap, gc, image, 0, 0, 2569 XPutImage (disp, pixmap, gc, image, 0, 0,
2503 nx, ny, image->width, image->height); 2570 nx, ny, image->width, image->height);
2504 XFreeGC (disp, gc); 2571 XFreeGC (disp, gc);
2505 XDestroyImage (image); 2572 XDestroyImage (image);
2506 XSetWindowBackgroundPixmap (disp, TermWin.parent[0], TermWin.pixmap); 2573 XSetWindowBackgroundPixmap (disp, parent[0], pixmap);
2507 XClearWindow (disp, TermWin.parent[0]); 2574 XClearWindow (disp, parent[0]);
2508 2575
2509 if (!am_transparent || !am_pixmap_trans) 2576 if (!am_transparent || !am_pixmap_trans)
2510 pchanged = 1; 2577 pchanged = 1;
2511 2578
2512 am_transparent = am_pixmap_trans = 1; 2579 am_transparent = am_pixmap_trans = 1;
2513 } 2580 }
2514 } 2581 }
2515 2582
2516 if (am_pixmap_trans) 2583 if (am_pixmap_trans)
2517 XSetWindowBackgroundPixmap (disp, TermWin.vt, ParentRelative); 2584 XSetWindowBackgroundPixmap (disp, vt, ParentRelative);
2518 else 2585 else
2519 { 2586 {
2520 unsigned int n; 2587 unsigned int n;
2521 /* 2588 /*
2522 * InheritPixmap transparency 2589 * InheritPixmap transparency
2523 */ 2590 */
2524 for (i = 1; i < (int) (sizeof (TermWin.parent) / sizeof (Window)); i++) 2591 for (i = 1; i < (int) (sizeof (parent) / sizeof (Window)); i++)
2525 { 2592 {
2526 oldp = TermWin.parent[i]; 2593 oldp = parent[i];
2527 XQueryTree (disp, TermWin.parent[i - 1], &root, 2594 XQueryTree (disp, parent[i - 1], &root,
2528 &TermWin.parent[i], &list, &n); 2595 &parent[i], &list, &n);
2529 XFree (list); 2596 XFree (list);
2530 2597
2531 if (TermWin.parent[i] == display->root) 2598 if (parent[i] == display->root)
2532 { 2599 {
2533 if (oldp != None) 2600 if (oldp != None)
2534 pchanged = 1; 2601 pchanged = 1;
2535 2602
2536 break; 2603 break;
2537 } 2604 }
2538 2605
2539 if (oldp != TermWin.parent[i]) 2606 if (oldp != parent[i])
2540 pchanged = 1; 2607 pchanged = 1;
2541 } 2608 }
2542 2609
2543 n = 0; 2610 n = 0;
2544 2611
2545 if (pchanged) 2612 if (pchanged)
2546 { 2613 {
2547 for (; n < (unsigned int)i; n++) 2614 for (; n < (unsigned int)i; n++)
2548 { 2615 {
2549 XGetWindowAttributes (disp, TermWin.parent[n], &wattr); 2616 XGetWindowAttributes (disp, parent[n], &wattr);
2550 if (wattr.depth != rootdepth || wattr.c_class == InputOnly) 2617 if (wattr.depth != rootdepth || wattr.c_class == InputOnly)
2551 { 2618 {
2552 n = (int) (sizeof (TermWin.parent) / sizeof (Window)) + 1; 2619 n = (int) (sizeof (parent) / sizeof (Window)) + 1;
2553 break; 2620 break;
2554 } 2621 }
2555 } 2622 }
2556 } 2623 }
2557 2624
2558 if (n > (int) (sizeof (TermWin.parent) / sizeof (TermWin.parent[0]))) 2625 if (n > (int) (sizeof (parent) / sizeof (parent[0])))
2559 { 2626 {
2560 XSetWindowBackground (disp, TermWin.parent[0], pix_colors_focused[Color_fg]); 2627 XSetWindowBackground (disp, parent[0], pix_colors_focused[Color_border]);
2561 XSetWindowBackground (disp, TermWin.vt, pix_colors_focused[Color_bg]); 2628 XSetWindowBackground (disp, vt, pix_colors_focused[Color_bg]);
2562 am_transparent = 0; 2629 am_transparent = 0;
2563 /* XXX: also turn off Opt_transparent? */ 2630 /* XXX: also turn off Opt_transparent? */
2564 } 2631 }
2565 else 2632 else
2566 { 2633 {
2569 * needed for fvwm2.2.2 (and before?) */ 2636 * needed for fvwm2.2.2 (and before?) */
2570 sleep (1); 2637 sleep (1);
2571#endif 2638#endif
2572 for (n = 0; n < (unsigned int)i; n++) 2639 for (n = 0; n < (unsigned int)i; n++)
2573 { 2640 {
2574 XSetWindowBackgroundPixmap (disp, TermWin.parent[n], ParentRelative); 2641 XSetWindowBackgroundPixmap (disp, parent[n], ParentRelative);
2575 XClearWindow (disp, TermWin.parent[n]); 2642 XClearWindow (disp, parent[n]);
2576 } 2643 }
2577 2644
2578 XSetWindowBackgroundPixmap (disp, TermWin.vt, ParentRelative); 2645 XSetWindowBackgroundPixmap (disp, vt, ParentRelative);
2579 am_transparent = 1; 2646 am_transparent = 1;
2580 } 2647 }
2581 2648
2582 for (; i < (int) (sizeof (TermWin.parent) / sizeof (Window)); i++) 2649 for (; i < (int) (sizeof (parent) / sizeof (Window)); i++)
2583 TermWin.parent[i] = None; 2650 parent[i] = None;
2584 } 2651 }
2585 2652
2586 if (scrollBar.win) 2653 if (scrollBar.win)
2587 { 2654 {
2588 XSetWindowBackgroundPixmap (disp, scrollBar.win, ParentRelative); 2655 XSetWindowBackgroundPixmap (disp, scrollBar.win, ParentRelative);
2605 2672
2606bool 2673bool
2607rxvt_term::cmd_parse () 2674rxvt_term::cmd_parse ()
2608{ 2675{
2609 bool flag = false; 2676 bool flag = false;
2610 unicode_t ch = NOCHAR; 2677 wchar_t ch = NOCHAR;
2611 unsigned char *seq_begin; // remember start of esc-sequence here 2678 char *seq_begin; // remember start of esc-sequence here
2612 2679
2613 for (;;) 2680 for (;;)
2614 { 2681 {
2615 if (ch == NOCHAR) 2682 if (ch == NOCHAR)
2616 { 2683 {
2617 seq_begin = cmdbuf_ptr; 2684 seq_begin = cmdbuf_ptr;
2618 ch = next_char (); 2685 ch = next_char ();
2619 }
2620 2686
2621 if (ch == NOCHAR) // TODO: improve 2687 if (ch == NOCHAR)
2622 break; 2688 break;
2689 }
2623 2690
2624 if (!IS_CONTROL (ch) || ch == C0_LF || ch == C0_CR || ch == C0_HT) 2691 if (!IS_CONTROL (ch) || ch == C0_LF || ch == C0_CR || ch == C0_HT)
2625 { 2692 {
2626 if (!seen_input) 2693 if (!seen_input)
2627 { 2694 {
2636 if (seen_resize && cmd_pid) 2703 if (seen_resize && cmd_pid)
2637 kill (-cmd_pid, SIGWINCH); 2704 kill (-cmd_pid, SIGWINCH);
2638 } 2705 }
2639 2706
2640 /* Read a text string from the input buffer */ 2707 /* Read a text string from the input buffer */
2641 unicode_t buf[UBUFSIZ]; 2708 wchar_t buf[UBUFSIZ];
2642 bool refreshnow = false; 2709 bool refreshnow = false;
2643 int nlines = 0; 2710 int nlines = 0;
2644 unicode_t *str = buf; 2711 wchar_t *str = buf;
2712 wchar_t *eol = str + min (ncol, UBUFSIZ);
2645 2713
2646 for (;;) 2714 for (;;)
2647 { 2715 {
2648 if (ch == NOCHAR || (IS_CONTROL (ch) && ch != C0_LF && ch != C0_CR && ch != C0_HT)) 2716 if (ch == NOCHAR || (IS_CONTROL (ch) && ch != C0_LF && ch != C0_CR && ch != C0_HT))
2649 break; 2717 break;
2650 2718
2651 *str++ = ch; 2719 *str++ = ch;
2652 2720
2653 if (ch == C0_LF) 2721 if (ch == C0_LF || str >= eol)
2654 { 2722 {
2723 if (ch == C0_LF)
2655 nlines++; 2724 nlines++;
2725
2656 refresh_count++; 2726 refresh_count++;
2657 2727
2658 if (!(options & Opt_jumpScroll) 2728 if (!OPTION (Opt_jumpScroll)
2659 || (refresh_count >= refresh_limit * (TermWin.nrow - 1))) 2729 || (refresh_count >= refresh_limit * (nrow - 1)))
2660 { 2730 {
2661 refreshnow = true; 2731 refreshnow = true;
2732 refresh_count = 0;
2662 ch = NOCHAR; 2733 ch = NOCHAR;
2663 break; 2734 break;
2664 } 2735 }
2665 2736
2666 // scr_add_lines only works for nlines <= TermWin.nrow - 1. 2737 // scr_add_lines only works for nlines <= nrow - 1.
2667 if (nlines >= TermWin.nrow - 1) 2738 if (nlines >= nrow - 1)
2668 { 2739 {
2740 if (!(SHOULD_INVOKE (HOOK_ADD_LINES)
2741 && HOOK_INVOKE ((this, HOOK_ADD_LINES, DT_WCS_LEN, buf, str - buf, DT_END))))
2669 scr_add_lines (buf, nlines, str - buf); 2742 scr_add_lines (buf, str - buf, nlines);
2743
2670 nlines = 0; 2744 nlines = 0;
2671 str = buf; 2745 str = buf;
2746 eol = str + min (ncol, UBUFSIZ);
2672 } 2747 }
2673 }
2674 2748
2675 if (str >= buf + UBUFSIZ) 2749 if (str >= eol)
2676 { 2750 {
2751 if (eol >= buf + UBUFSIZ)
2752 {
2677 ch = NOCHAR; 2753 ch = NOCHAR;
2678 break; 2754 break;
2755 }
2756 else
2757 eol = min (eol + ncol, buf + UBUFSIZ);
2758 }
2759
2679 } 2760 }
2680 2761
2681 seq_begin = cmdbuf_ptr; 2762 seq_begin = cmdbuf_ptr;
2682 ch = next_char (); 2763 ch = next_char ();
2683 } 2764 }
2684 2765
2766 if (!(SHOULD_INVOKE (HOOK_ADD_LINES)
2767 && HOOK_INVOKE ((this, HOOK_ADD_LINES, DT_WCS_LEN, buf, str - buf, DT_END))))
2685 scr_add_lines (buf, nlines, str - buf); 2768 scr_add_lines (buf, str - buf, nlines);
2686 2769
2687 /* 2770 /*
2688 * If there have been a lot of new lines, then update the screen 2771 * If there have been a lot of new lines, then update the screen
2689 * What the heck I'll cheat and only refresh less than every page-full. 2772 * What the heck I'll cheat and only refresh less than every page-full.
2690 * the number of pages between refreshes is refresh_limit, which 2773 * the number of pages between refreshes is refresh_limit, which
2691 * is incremented here because we must be doing flat-out scrolling. 2774 * is incremented here because we must be doing flat-out scrolling.
2692 */ 2775 */
2693 if (refreshnow) 2776 if (refreshnow)
2694 { 2777 {
2695 if ((options & Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD) 2778 if (OPTION (Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD)
2696 refresh_limit++; 2779 refresh_limit++;
2697 else 2780 else
2698 { 2781 {
2699 flag = true; 2782 flag = true;
2700 scr_refresh (refresh_type); 2783 scr_refresh ();
2784 want_refresh = 1;
2701 } 2785 }
2702 } 2786 }
2703 2787
2704 } 2788 }
2705 else 2789 else
2720 } 2804 }
2721 2805
2722 return flag; 2806 return flag;
2723} 2807}
2724 2808
2725// read the next octet
2726unicode_t
2727rxvt_term::next_octet ()
2728{
2729 return cmdbuf_ptr < cmdbuf_endp
2730 ? *cmdbuf_ptr++
2731 : NOCHAR;
2732}
2733
2734// read the next character 2809// read the next character
2735unicode_t 2810wchar_t
2736rxvt_term::next_char () 2811rxvt_term::next_char () NOTHROW
2737{ 2812{
2738 while (cmdbuf_ptr < cmdbuf_endp) 2813 while (cmdbuf_ptr < cmdbuf_endp)
2739 { 2814 {
2740 // assume 7-bit to be ascii ALWAYS 2815 // assume 7-bit to be ascii ALWAYS
2741 if (*cmdbuf_ptr <= 0x7f && *cmdbuf_ptr != 0x1b) 2816 if ((unsigned char)*cmdbuf_ptr <= 0x7f && *cmdbuf_ptr != 0x1b)
2742 return *cmdbuf_ptr++; 2817 return *cmdbuf_ptr++;
2743 2818
2744 wchar_t wc; 2819 wchar_t wc;
2745 size_t len = mbrtowc (&wc, (char *)cmdbuf_ptr, cmdbuf_endp - cmdbuf_ptr, mbstate); 2820 size_t len = mbrtowc (&wc, cmdbuf_ptr, cmdbuf_endp - cmdbuf_ptr, mbstate);
2746 2821
2747 if (len == (size_t)-2) 2822 if (len == (size_t)-2)
2748 { 2823 {
2749 // the mbstate stores incomplete sequences. didn't know this :/ 2824 // the mbstate stores incomplete sequences. didn't know this :/
2750 cmdbuf_ptr = cmdbuf_endp; 2825 cmdbuf_ptr = cmdbuf_endp;
2751 break; 2826 break;
2752 } 2827 }
2753 2828
2754 if (len == (size_t)-1) 2829 if (len == (size_t)-1)
2755 return *cmdbuf_ptr++; // the _occasional_ latin1 character is allowed to slip through 2830 return (unsigned char)*cmdbuf_ptr++; // the _occasional_ latin1 character is allowed to slip through
2756 2831
2757 // assume wchar == unicode 2832 // assume wchar == unicode
2758 cmdbuf_ptr += len; 2833 cmdbuf_ptr += len;
2759 return wc & UNICODE_MASK; 2834 return wc & UNICODE_MASK;
2760 } 2835 }
2761 2836
2762 return NOCHAR; 2837 return NOCHAR;
2763} 2838}
2839
2840// read the next octet
2841uint32_t
2842rxvt_term::next_octet () NOTHROW
2843{
2844 return cmdbuf_ptr < cmdbuf_endp
2845 ? (unsigned char)*cmdbuf_ptr++
2846 : NOCHAR;
2847}
2848
2849static class out_of_input out_of_input;
2764 2850
2765/* rxvt_cmd_getc () - Return next input character */ 2851/* rxvt_cmd_getc () - Return next input character */
2766/* 2852/*
2767 * Return the next input character after first passing any keyboard input 2853 * Return the next input character after first passing any keyboard input
2768 * to the command. 2854 * to the command.
2769 */ 2855 */
2770unicode_t 2856wchar_t
2771rxvt_term::cmd_getc () 2857rxvt_term::cmd_getc () THROW ((class out_of_input))
2772{ 2858{
2773 unicode_t c = next_char (); 2859 wchar_t c = next_char ();
2774 2860
2775 if (c == NOCHAR) 2861 if (c == NOCHAR)
2776 throw out_of_input; 2862 throw out_of_input;
2777 2863
2778 return c; 2864 return c;
2779} 2865}
2780 2866
2781unicode_t 2867uint32_t
2782rxvt_term::cmd_get8 () 2868rxvt_term::cmd_get8 () THROW ((class out_of_input))
2783{ 2869{
2784 unicode_t c = next_octet (); 2870 uint32_t c = next_octet ();
2785 2871
2786 if (c == NOCHAR) 2872 if (c == NOCHAR)
2787 throw out_of_input; 2873 throw out_of_input;
2788 2874
2789 return c; 2875 return c;
2889 case C0_ESC: 2975 case C0_ESC:
2890 process_escape_seq (); 2976 process_escape_seq ();
2891 break; 2977 break;
2892 case C0_ENQ: /* terminal Status */ 2978 case C0_ENQ: /* terminal Status */
2893 if (rs[Rs_answerbackstring]) 2979 if (rs[Rs_answerbackstring])
2894 tt_write ((const unsigned char *)rs[Rs_answerbackstring], 2980 tt_write (rs [Rs_answerbackstring], strlen (rs [Rs_answerbackstring]));
2895 (unsigned int)strlen (rs[Rs_answerbackstring]));
2896 else 2981 else
2897 tt_write ((unsigned char *)VT100_ANS, 2982 tt_write (VT100_ANS, strlen (VT100_ANS));
2898 (unsigned int)strlen (VT100_ANS));
2899 break; 2983 break;
2900 case C0_BEL: /* bell */ 2984 case C0_BEL: /* bell */
2901 scr_bell (); 2985 scr_bell ();
2902 break; 2986 break;
2903 case C0_BS: /* backspace */ 2987 case C0_BS: /* backspace */
3058 break; 3142 break;
3059 3143
3060 /* 8.3.87: NEXT LINE */ 3144 /* 8.3.87: NEXT LINE */
3061 case C1_NEL: /* ESC E */ 3145 case C1_NEL: /* ESC E */
3062 { 3146 {
3063 unicode_t nlcr[] = { C0_LF, C0_CR }; 3147 wchar_t nlcr[] = { C0_LF, C0_CR };
3064 scr_add_lines (nlcr, 1, 2); 3148 scr_add_lines (nlcr, sizeof (nlcr) / sizeof (nlcr [0]), 1);
3065 } 3149 }
3066 break; 3150 break;
3067 3151
3068 /* kidnapped escape sequence: Should be 8.3.48 */ 3152 /* kidnapped escape sequence: Should be 8.3.48 */
3069 case C1_ESA: /* ESC G */ 3153 case C1_ESA: /* ESC G */
3091 process_dcs_seq (); 3175 process_dcs_seq ();
3092 break; 3176 break;
3093 3177
3094 /* 8.3.110: SINGLE CHARACTER INTRODUCER */ 3178 /* 8.3.110: SINGLE CHARACTER INTRODUCER */
3095 case C1_SCI: /* ESC Z */ 3179 case C1_SCI: /* ESC Z */
3096 tt_write ((const unsigned char *)ESCZ_ANSWER, 3180 tt_write (ESCZ_ANSWER, sizeof (ESCZ_ANSWER) - 1);
3097 (unsigned int) (sizeof (ESCZ_ANSWER) - 1));
3098 break; /* steal obsolete ESC [ c */ 3181 break; /* steal obsolete ESC [ c */
3099 3182
3100 /* 8.3.16: CONTROL SEQUENCE INTRODUCER */ 3183 /* 8.3.16: CONTROL SEQUENCE INTRODUCER */
3101 case C1_CSI: /* ESC [ */ 3184 case C1_CSI: /* ESC [ */
3102 process_csi_seq (); 3185 process_csi_seq ();
3342 3425
3343 case CSI_SD: /* 8.3.114: (1) SCROLL DOWN */ 3426 case CSI_SD: /* 8.3.114: (1) SCROLL DOWN */
3344 arg[0] = -arg[0]; 3427 arg[0] = -arg[0];
3345 /* FALLTHROUGH */ 3428 /* FALLTHROUGH */
3346 case CSI_SU: /* 8.3.148: (1) SCROLL UP */ 3429 case CSI_SU: /* 8.3.148: (1) SCROLL UP */
3347 scr_scroll_text (screen.tscroll, screen.bscroll, arg[0], 0); 3430 scr_scroll_text (screen.tscroll, screen.bscroll, arg[0]);
3348 break; 3431 break;
3349 3432
3350 case CSI_DA: /* 8.3.24: (0) DEVICE ATTRIBUTES */ 3433 case CSI_DA: /* 8.3.24: (0) DEVICE ATTRIBUTES */
3351 tt_write ((const unsigned char *)VT100_ANS, 3434 tt_write (VT100_ANS, sizeof (VT100_ANS) - 1);
3352 (unsigned int) (sizeof (VT100_ANS) - 1));
3353 break; 3435 break;
3354 3436
3355 case CSI_SGR: /* 8.3.118: (0) SELECT GRAPHIC RENDITION */ 3437 case CSI_SGR: /* 8.3.118: (0) SELECT GRAPHIC RENDITION */
3356 process_sgr_mode (nargs, arg); 3438 process_sgr_mode (nargs, arg);
3357 break; 3439 break;
3364 break; 3446 break;
3365 case 6: /* CPR requested */ 3447 case 6: /* CPR requested */
3366 scr_report_position (); 3448 scr_report_position ();
3367 break; 3449 break;
3368 case 7: /* unofficial extension */ 3450 case 7: /* unofficial extension */
3369 if (options & Opt_insecure) 3451 if (OPTION (Opt_insecure))
3370 tt_printf ("%-.250s\012", rs[Rs_display_name]); 3452 tt_printf ("%-.250s\012", rs[Rs_display_name]);
3371 break; 3453 break;
3372 case 8: /* unofficial extension */ 3454 case 8: /* unofficial extension */
3373 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST); 3455 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST);
3374 break; 3456 break;
3477 { 3559 {
3478 /* 3560 /*
3479 * commands 3561 * commands
3480 */ 3562 */
3481 case 1: /* deiconify window */ 3563 case 1: /* deiconify window */
3482 XMapWindow (disp, TermWin.parent[0]); 3564 XMapWindow (disp, parent[0]);
3483 break; 3565 break;
3484 case 2: /* iconify window */ 3566 case 2: /* iconify window */
3485 XIconifyWindow (disp, TermWin.parent[0], display->screen); 3567 XIconifyWindow (disp, parent[0], display->screen);
3486 break; 3568 break;
3487 case 3: /* set position (pixels) */ 3569 case 3: /* set position (pixels) */
3488 XMoveWindow (disp, TermWin.parent[0], args[1], args[2]); 3570 XMoveWindow (disp, parent[0], args[1], args[2]);
3489 break; 3571 break;
3490 case 4: /* set size (pixels) */ 3572 case 4: /* set size (pixels) */
3491 set_widthheight ((unsigned int)args[2], (unsigned int)args[1]); 3573 set_widthheight ((unsigned int)args[2], (unsigned int)args[1]);
3492 break; 3574 break;
3493 case 5: /* raise window */ 3575 case 5: /* raise window */
3494 XRaiseWindow (disp, TermWin.parent[0]); 3576 XRaiseWindow (disp, parent[0]);
3495 break; 3577 break;
3496 case 6: /* lower window */ 3578 case 6: /* lower window */
3497 XLowerWindow (disp, TermWin.parent[0]); 3579 XLowerWindow (disp, parent[0]);
3498 break; 3580 break;
3499 case 7: /* refresh window */ 3581 case 7: /* refresh window */
3500 scr_touch (true); 3582 scr_touch (true);
3501 break; 3583 break;
3502 case 8: /* set size (chars) */ 3584 case 8: /* set size (chars) */
3503 set_widthheight ((unsigned int) (args[2] * TermWin.fwidth), 3585 set_widthheight ((unsigned int) (args[2] * fwidth),
3504 (unsigned int) (args[1] * TermWin.fheight)); 3586 (unsigned int) (args[1] * fheight));
3505 break; 3587 break;
3506 3588
3507 //case 9: NYI, TODO, restore maximized window or maximize window 3589 //case 9: NYI, TODO, restore maximized window or maximize window
3508 default: 3590 default:
3509 if (args[0] >= 24) /* set height (chars) */ 3591 if (args[0] >= 24) /* set height (chars) */
3510 set_widthheight ((unsigned int)TermWin.width, 3592 set_widthheight ((unsigned int)width,
3511 (unsigned int) (args[1] * TermWin.fheight)); 3593 (unsigned int) (args[1] * fheight));
3512 break; 3594 break;
3513 3595
3514 3596
3515 /* 3597 /*
3516 * reports - some output format copied from XTerm 3598 * reports - some output format copied from XTerm
3517 */ 3599 */
3518 case 11: /* report window state */ 3600 case 11: /* report window state */
3519 XGetWindowAttributes (disp, TermWin.parent[0], &wattr); 3601 XGetWindowAttributes (disp, parent[0], &wattr);
3520 tt_printf ("\033[%dt", wattr.map_state == IsViewable ? 1 : 2); 3602 tt_printf ("\033[%dt", wattr.map_state == IsViewable ? 1 : 2);
3521 break; 3603 break;
3522 case 13: /* report window position */ 3604 case 13: /* report window position */
3523 XGetWindowAttributes (disp, TermWin.parent[0], &wattr); 3605 XGetWindowAttributes (disp, parent[0], &wattr);
3524 XTranslateCoordinates (disp, TermWin.parent[0], wattr.root, 3606 XTranslateCoordinates (disp, parent[0], wattr.root,
3525 -wattr.border_width, -wattr.border_width, 3607 -wattr.border_width, -wattr.border_width,
3526 &x, &y, &wdummy); 3608 &x, &y, &wdummy);
3527 tt_printf ("\033[3;%d;%dt", x, y); 3609 tt_printf ("\033[3;%d;%dt", x, y);
3528 break; 3610 break;
3529 case 14: /* report window size (pixels) */ 3611 case 14: /* report window size (pixels) */
3530 XGetWindowAttributes (disp, TermWin.parent[0], &wattr); 3612 XGetWindowAttributes (disp, parent[0], &wattr);
3531 tt_printf ("\033[4;%d;%dt", wattr.height, wattr.width); 3613 tt_printf ("\033[4;%d;%dt", wattr.height, wattr.width);
3532 break; 3614 break;
3533 case 18: /* report text area size (chars) */ 3615 case 18: /* report text area size (chars) */
3534 tt_printf ("\033[8;%d;%dt", TermWin.nrow, TermWin.ncol); 3616 tt_printf ("\033[8;%d;%dt", nrow, ncol);
3535 break; 3617 break;
3536 case 19: /* report window size (chars) */ 3618 case 19: /* report window size (chars) */
3537 tt_printf ("\033[9;%d;%dt", TermWin.nrow, TermWin.ncol); 3619 tt_printf ("\033[9;%d;%dt", nrow, ncol);
3538 break; 3620 break;
3539 case 20: /* report icon label */ 3621 case 20: /* report icon label */
3540 { 3622 {
3541 char *s; 3623 char *s;
3542 XGetIconName (disp, TermWin.parent[0], &s); 3624 XGetIconName (disp, parent[0], &s);
3543 tt_printf ("\033]L%-.250s\234", (options & Opt_insecure) && s ? s : ""); /* 8bit ST */ 3625 tt_printf ("\033]L%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */
3544 XFree (s); 3626 XFree (s);
3545 } 3627 }
3546 break; 3628 break;
3547 case 21: /* report window title */ 3629 case 21: /* report window title */
3548 { 3630 {
3549 char *s; 3631 char *s;
3550 XFetchName (disp, TermWin.parent[0], &s); 3632 XFetchName (disp, parent[0], &s);
3551 tt_printf ("\033]l%-.250s\234", (options & Opt_insecure) && s ? s : ""); /* 8bit ST */ 3633 tt_printf ("\033]l%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */
3552 XFree (s); 3634 XFree (s);
3553 } 3635 }
3554 break; 3636 break;
3555 } 3637 }
3556} 3638}
3559/*----------------------------------------------------------------------*/ 3641/*----------------------------------------------------------------------*/
3560/* 3642/*
3561 * get input up until STRING TERMINATOR (or BEL) 3643 * get input up until STRING TERMINATOR (or BEL)
3562 * ends_how is terminator used. returned input must be free()'d 3644 * ends_how is terminator used. returned input must be free()'d
3563 */ 3645 */
3564unsigned char * 3646char *
3565rxvt_term::get_to_st (unicode_t &ends_how) 3647rxvt_term::get_to_st (unicode_t &ends_how)
3566{ 3648{
3567 unicode_t ch; 3649 unicode_t ch;
3568 bool seen_esc = false; 3650 bool seen_esc = false;
3569 unsigned int n = 0; 3651 unsigned int n = 0;
3588 else if (ch < 0x20) 3670 else if (ch < 0x20)
3589 return NULL; /* other control character - exit */ 3671 return NULL; /* other control character - exit */
3590 3672
3591 seen_esc = false; 3673 seen_esc = false;
3592 3674
3593 if (n >= sizeof (string) - 1) 3675 if (n >= STRING_MAX - 1)
3594 // stop at some sane length 3676 // stop at some sane length
3595 return NULL; 3677 return NULL;
3596 3678
3597 if (ch == C0_SYN) 3679 if (ch == C0_SYN)
3598 string[n++] = cmd_get8 (); 3680 string[n++] = cmd_get8 ();
3602 3684
3603 string[n++] = '\0'; 3685 string[n++] = '\0';
3604 3686
3605 ends_how = (ch == 0x5c ? C0_ESC : ch); 3687 ends_how = (ch == 0x5c ? C0_ESC : ch);
3606 3688
3607 return (unsigned char *)rxvt_wcstombs (string); 3689 return rxvt_wcstombs (string);
3608} 3690}
3609 3691
3610/*----------------------------------------------------------------------*/ 3692/*----------------------------------------------------------------------*/
3611/* 3693/*
3612 * process DEVICE CONTROL STRING `ESC P ... (ST|BEL)' or `0x90 ... (ST|BEL)' 3694 * process DEVICE CONTROL STRING `ESC P ... (ST|BEL)' or `0x90 ... (ST|BEL)'
3613 */ 3695 */
3614void 3696void
3615rxvt_term::process_dcs_seq () 3697rxvt_term::process_dcs_seq ()
3616{ 3698{
3617 unsigned char *s; 3699 char *s;
3618 unicode_t eh; 3700 unicode_t eh;
3619 3701
3620 /* 3702 /*
3621 * Not handled yet 3703 * Not handled yet
3622 */ 3704 */
3641 for (arg = 0; isdigit (ch); ch = cmd_getc ()) 3723 for (arg = 0; isdigit (ch); ch = cmd_getc ())
3642 arg = arg * 10 + (ch - '0'); 3724 arg = arg * 10 + (ch - '0');
3643 3725
3644 if (ch == ';') 3726 if (ch == ';')
3645 { 3727 {
3646 unsigned char *s = get_to_st (eh); 3728 char *s = get_to_st (eh);
3647 3729
3648 if (s) 3730 if (s)
3649 { 3731 {
3650 process_xterm_seq (arg, (char *)s, eh); 3732 process_xterm_seq (arg, s, eh);
3651 free (s); 3733 free (s);
3652 } 3734 }
3653 } 3735 }
3654} 3736}
3655 3737
3656void 3738void
3657rxvt_term::process_color_seq (int report, int color, const char *str, unsigned char resp) 3739rxvt_term::process_color_seq (int report, int color, const char *str, char resp)
3658{ 3740{
3659 if (str[0] == '?' && !str[1]) 3741 if (str[0] == '?' && !str[1])
3660 { 3742 {
3661 unsigned short r, g, b; 3743 unsigned short r, g, b;
3662 pix_colors_focused[color].get (display, r, g, b); 3744 pix_colors_focused[color].get (display, r, g, b);
3668 3750
3669/* 3751/*
3670 * XTerm escape sequences: ESC ] Ps;Pt (ST|BEL) 3752 * XTerm escape sequences: ESC ] Ps;Pt (ST|BEL)
3671 */ 3753 */
3672void 3754void
3673rxvt_term::process_xterm_seq (int op, const char *str, unsigned char resp) 3755rxvt_term::process_xterm_seq (int op, const char *str, char resp)
3674{ 3756{
3675 int changed = 0;
3676 int color; 3757 int color;
3677 char *buf, *name; 3758 char *buf, *name;
3678 bool query = str[0] == '?' && !str[1]; 3759 bool query = str[0] == '?' && !str[1];
3679 int saveop = op; 3760 int saveop = op;
3680 dDisp; 3761 dDisp;
3701 unsigned long bytes_after; 3782 unsigned long bytes_after;
3702 unsigned char *value = 0; 3783 unsigned char *value = 0;
3703 const char *str = ""; 3784 const char *str = "";
3704 3785
3705 if (prop 3786 if (prop
3706 && XGetWindowProperty (disp, TermWin.parent[0], 3787 && XGetWindowProperty (disp, parent[0],
3707 prop, 0, 1<<16, 0, AnyPropertyType, 3788 prop, 0, 1<<16, 0, AnyPropertyType,
3708 &actual_type, &actual_format, 3789 &actual_type, &actual_format,
3709 &nitems, &bytes_after, &value) == Success 3790 &nitems, &bytes_after, &value) == Success
3710 && actual_type != None 3791 && actual_type != None
3711 && actual_format == 8) 3792 && actual_format == 8)
3723 { 3804 {
3724 *eq = 0; 3805 *eq = 0;
3725 set_utf8_property (display->atom (str), eq + 1); 3806 set_utf8_property (display->atom (str), eq + 1);
3726 } 3807 }
3727 else 3808 else
3728 XDeleteProperty (disp, TermWin.parent[0], 3809 XDeleteProperty (disp, parent[0],
3729 display->atom (str)); 3810 display->atom (str));
3730 } 3811 }
3731 break; 3812 break;
3732 3813
3733 case XTerm_Color: 3814 case XTerm_Color:
3735 { 3816 {
3736 if ((name = strchr (buf, ';')) == NULL) 3817 if ((name = strchr (buf, ';')) == NULL)
3737 break; 3818 break;
3738 3819
3739 *name++ = '\0'; 3820 *name++ = '\0';
3740 color = atoi (buf); 3821 color = atoi (buf) + minCOLOR;
3741 3822
3742 if (color < 0 || color >= TOTAL_COLORS) 3823 if (!IN_RANGE_INC (color, minCOLOR, maxTermCOLOR))
3743 break; 3824 break;
3744 3825
3745 if ((buf = strchr (name, ';')) != NULL) 3826 if ((buf = strchr (name, ';')) != NULL)
3746 *buf++ = '\0'; 3827 *buf++ = '\0';
3747 3828
3748 if (name[0] == '?' && !name[1]) 3829 if (name[0] == '?' && !name[1])
3749 { 3830 {
3750 unsigned short r, g, b; 3831 unsigned short r, g, b;
3751 pix_colors_focused[color + minCOLOR].get (display, r, g, b); 3832 pix_colors_focused[color].get (display, r, g, b);
3752 tt_printf ("\033]%d;%d;rgb:%04x/%04x/%04x%c", XTerm_Color, color, r, g, b, resp); 3833 tt_printf ("\033]%d;%d;rgb:%04x/%04x/%04x%c", XTerm_Color, color, r, g, b, resp);
3753 } 3834 }
3754 else 3835 else
3755 set_window_color (color + minCOLOR, name); 3836 set_window_color (color, name);
3756 } 3837 }
3757 break; 3838 break;
3758 case XTerm_Color00: 3839 case XTerm_Color00:
3759 process_color_seq (XTerm_Color00, Color_fg, str, resp); 3840 process_color_seq (XTerm_Color00, Color_fg, str, resp);
3760 break; 3841 break;
3761 case XTerm_Color01: 3842 case XTerm_Color01:
3762 process_color_seq (XTerm_Color00, Color_bg, str, resp); 3843 process_color_seq (XTerm_Color01, Color_bg, str, resp);
3763 break; 3844 break;
3764#ifndef NO_CURSORCOLOR 3845#ifndef NO_CURSORCOLOR
3765 case XTerm_Color_cursor: 3846 case XTerm_Color_cursor:
3766 process_color_seq (XTerm_Color_cursor, Color_cursor, str, resp); 3847 process_color_seq (XTerm_Color_cursor, Color_cursor, str, resp);
3767 break; 3848 break;
3771 break; 3852 break;
3772 case XTerm_Color_pointer_bg: 3853 case XTerm_Color_pointer_bg:
3773 process_color_seq (XTerm_Color_pointer_bg, Color_pointer_bg, str, resp); 3854 process_color_seq (XTerm_Color_pointer_bg, Color_pointer_bg, str, resp);
3774 break; 3855 break;
3775#ifndef NO_BOLD_UNDERLINE_REVERSE 3856#ifndef NO_BOLD_UNDERLINE_REVERSE
3776 case XTerm_Color_BD:
3777 process_color_seq (XTerm_Color_BD, Color_BD, str, resp);
3778 break;
3779 case XTerm_Color_UL:
3780 process_color_seq (XTerm_Color_UL, Color_UL, str, resp);
3781 break;
3782 case XTerm_Color_RV: 3857 case XTerm_Color_RV:
3783 process_color_seq (XTerm_Color_RV, Color_RV, str, resp); 3858 process_color_seq (XTerm_Color_RV, Color_RV, str, resp);
3859 break;
3860 case Rxvt_Color_BD:
3861 case URxvt_Color_BD:
3862 process_color_seq (op, Color_BD, str, resp);
3863 break;
3864 case Rxvt_Color_UL:
3865 case URxvt_Color_UL:
3866 process_color_seq (op, Color_UL, str, resp);
3784 break; 3867 break;
3785 case URxvt_Color_IT: 3868 case URxvt_Color_IT:
3786 process_color_seq (URxvt_Color_IT, Color_IT, str, resp); 3869 process_color_seq (URxvt_Color_IT, Color_IT, str, resp);
3787 break; 3870 break;
3788#endif 3871#endif
3793 if (am_transparent) 3876 if (am_transparent)
3794 want_full_refresh = want_refresh = 1; 3877 want_full_refresh = want_refresh = 1;
3795 break; 3878 break;
3796#endif 3879#endif
3797 3880
3798 case XTerm_Pixmap: 3881 case Rxvt_Pixmap:
3882 {
3799 if (*str != ';') 3883 if (*str != ';')
3800 { 3884 {
3801#if XPM_BACKGROUND 3885#if XPM_BACKGROUND
3802 scale_pixmap (""); /* reset to default scaling */ 3886 scale_pixmap (""); /* reset to default scaling */
3803 set_bgPixmap (str); /* change pixmap */ 3887 set_bgPixmap (str); /* change pixmap */
3804#endif
3805 scr_touch (true); 3888 scr_touch (true);
3889#endif
3806 } 3890 }
3891
3892 int changed = 0;
3893
3807 while ((str = strchr (str, ';')) != NULL) 3894 while ((str = strchr (str, ';')) != NULL)
3808 { 3895 {
3809 str++; 3896 str++;
3810#if XPM_BACKGROUND 3897#if XPM_BACKGROUND
3811 changed += scale_pixmap (str); 3898 changed += scale_pixmap (str);
3812#endif 3899#endif
3813 } 3900 }
3814 3901
3815 if (changed) 3902 if (changed)
3816 { 3903 {
3817#ifdef XPM_BACKGROUND 3904#ifdef XPM_BACKGROUND
3818 resize_pixmap (); 3905 resize_pixmap ();
3819#endif
3820 scr_touch (true); 3906 scr_touch (true);
3907#endif
3821 } 3908 }
3909 }
3822 break; 3910 break;
3823 3911
3824 case XTerm_restoreFG: 3912 case Rxvt_restoreFG:
3825 set_window_color (Color_fg, str); 3913 set_window_color (Color_fg, str);
3826 break; 3914 break;
3827 case XTerm_restoreBG: 3915 case Rxvt_restoreBG:
3828 set_window_color (Color_bg, str); 3916 set_window_color (Color_bg, str);
3829 break; 3917 break;
3830 3918
3831 case XTerm_logfile: 3919 case XTerm_logfile:
3832 // TODO, when secure mode? 3920 // TODO, when secure mode?
3833 break; 3921 break;
3834 3922
3835#ifdef MENUBAR
3836 case URxvt_Menu:
3837 if (options & Opt_insecure)
3838 menubar_dispatch (const_cast<char *>(str)); // casting away constness is checked
3839 break;
3840#endif
3841#if 0 3923#if 0
3842 case XTerm_dumpscreen: /* no error notices */ 3924 case Rxvt_dumpscreen: /* no error notices */
3843 { 3925 {
3844 int fd; 3926 int fd;
3845 if ((fd = open (str, O_RDWR | O_CREAT | O_EXCL, 0600)) >= 0) 3927 if ((fd = open (str, O_RDWR | O_CREAT | O_EXCL, 0600)) >= 0)
3846 { 3928 {
3847 scr_dump (fd); 3929 scr_dump (fd);
3858 case URxvt_italicFont: 3940 case URxvt_italicFont:
3859 case URxvt_boldItalicFont: 3941 case URxvt_boldItalicFont:
3860#endif 3942#endif
3861 if (query) 3943 if (query)
3862 tt_printf ("\33]%d;%-.250s%c", saveop, 3944 tt_printf ("\33]%d;%-.250s%c", saveop,
3863 (options & Opt_insecure) && TermWin.fontset[op - URxvt_font]->fontdesc 3945 OPTION (Opt_insecure) && fontset[op - URxvt_font]->fontdesc
3864 ? TermWin.fontset[op - URxvt_font]->fontdesc : "", 3946 ? fontset[op - URxvt_font]->fontdesc : "",
3865 resp); 3947 resp);
3866 else 3948 else
3867 { 3949 {
3868 const char *&res = rs[Rs_font + (op - URxvt_font)]; 3950 const char *&res = rs[Rs_font + (op - URxvt_font)];
3869 3951
3874 break; 3956 break;
3875 3957
3876#if ENABLE_FRILLS 3958#if ENABLE_FRILLS
3877 case URxvt_locale: 3959 case URxvt_locale:
3878 if (query) 3960 if (query)
3879 tt_printf ("\33]%d;%-.250s%c", URxvt_locale, (options & Opt_insecure) ? locale : "", resp); 3961 tt_printf ("\33]%d;%-.250s%c", URxvt_locale, OPTION (Opt_insecure) ? locale : "", resp);
3880 else 3962 else
3881 { 3963 {
3882 set_locale (str); 3964 set_locale (str);
3883 pty.set_utf8_mode (enc_utf8); 3965 pty->set_utf8_mode (enc_utf8);
3884 init_xlocale (); 3966 init_xlocale ();
3885 } 3967 }
3886 break; 3968 break;
3887 3969
3888 case URxvt_view_up: 3970 case URxvt_view_up:
3889 case URxvt_view_down: 3971 case URxvt_view_down:
3972 {
3890 int lines = atoi (str); 3973 int lines = atoi (str);
3891 3974
3892 if (lines) 3975 if (lines)
3893 scr_page (op == URxvt_view_up ? UP : DN, lines); 3976 scr_page (op == URxvt_view_up ? UP : DN, lines);
3894 else 3977 else
3895 {
3896 scr_erase_savelines (); 3978 scr_erase_savelines ();
3897 } 3979 }
3898 3980
3981 break;
3982#endif
3983
3984#if ENABLE_PERL
3985 case URxvt_perl:
3986 if (HOOK_INVOKE ((this, HOOK_OSC_SEQ, DT_STR, str, DT_END)))
3987 ; // no responses yet
3899 break; 3988 break;
3900#endif 3989#endif
3901 } 3990 }
3902} 3991}
3903/*----------------------------------------------------------------------*/ 3992/*----------------------------------------------------------------------*/
3934 return state; 4023 return state;
3935} 4024}
3936 4025
3937/* we're not using priv _yet_ */ 4026/* we're not using priv _yet_ */
3938void 4027void
3939rxvt_term::process_terminal_mode (int mode, int priv __attribute__ ((unused)), unsigned int nargs, const int *arg) 4028rxvt_term::process_terminal_mode (int mode, int priv UNUSED, unsigned int nargs, const int *arg)
3940{ 4029{
3941 unsigned int i, j; 4030 unsigned int i, j;
3942 int state; 4031 int state;
3943 4032
3944 static const struct 4033 static const struct
3955 { 5, PrivMode_rVideo }, 4044 { 5, PrivMode_rVideo },
3956 { 6, PrivMode_relOrigin }, 4045 { 6, PrivMode_relOrigin },
3957 { 7, PrivMode_Autowrap }, 4046 { 7, PrivMode_Autowrap },
3958 // 8, bi-directional support mode 4047 // 8, bi-directional support mode
3959 { 9, PrivMode_MouseX10 }, 4048 { 9, PrivMode_MouseX10 },
3960#ifdef menuBar_esc
3961 { menuBar_esc, PrivMode_menuBar },
3962#endif
3963 // 18, 19 printing-related 4049 // 18, 19 printing-related
3964 { 25, PrivMode_VisibleCursor }, 4050 { 25, PrivMode_VisibleCursor },
3965#ifdef scrollBar_esc 4051#ifdef scrollBar_esc
3966 { scrollBar_esc, PrivMode_scrollBar }, 4052 { scrollBar_esc, PrivMode_scrollBar },
3967#endif 4053#endif
4012 } 4098 }
4013 4099
4014 /* extra handling for values with state unkept */ 4100 /* extra handling for values with state unkept */
4015 switch (arg[i]) 4101 switch (arg[i])
4016 { 4102 {
4103#if ENABLE_STYLES
4104 case 1021:
4105 set_option (Opt_intensityStyles, mode);
4106
4107 scr_touch (true);
4108 break;
4109#endif
4017 case 1048: /* alternative cursor save */ 4110 case 1048: /* alternative cursor save */
4018 case 1049: 4111 case 1049:
4019 if (options & Opt_secondaryScreen) 4112 if (OPTION (Opt_secondaryScreen))
4020 if (mode == 0) 4113 if (mode == 0)
4021 scr_cursor (RESTORE); 4114 scr_cursor (RESTORE);
4022 else if (mode == 1) 4115 else if (mode == 1)
4023 scr_cursor (SAVE); 4116 scr_cursor (SAVE);
4024 break; 4117 break;
4036 */ 4129 */
4037 PrivMode (1, PrivMode_vt52); 4130 PrivMode (1, PrivMode_vt52);
4038 break; 4131 break;
4039 case 3: /* 80/132 */ 4132 case 3: /* 80/132 */
4040 if (priv_modes & PrivMode_132OK) 4133 if (priv_modes & PrivMode_132OK)
4041 set_widthheight (((state ? 132 : 80) * TermWin.fwidth), TermWin.height); 4134 set_widthheight (((state ? 132 : 80) * fwidth), height);
4042 break; 4135 break;
4043 case 4: /* smooth scrolling */ 4136 case 4: /* smooth scrolling */
4044 if (state)
4045 options &= ~Opt_jumpScroll;
4046 else
4047 options |= Opt_jumpScroll; 4137 set_option (Opt_jumpScroll, !state);
4048 break; 4138 break;
4049 case 5: /* reverse video */ 4139 case 5: /* reverse video */
4050 scr_rvideo_mode (state); 4140 scr_rvideo_mode (state);
4051 break; 4141 break;
4052 case 6: /* relative/absolute origins */ 4142 case 6: /* relative/absolute origins */
4058 /* case 8: - auto repeat, can't do on a per window basis */ 4148 /* case 8: - auto repeat, can't do on a per window basis */
4059 case 9: /* X10 mouse reporting */ 4149 case 9: /* X10 mouse reporting */
4060 if (state) /* orthogonal */ 4150 if (state) /* orthogonal */
4061 priv_modes &= ~PrivMode_MouseX11; 4151 priv_modes &= ~PrivMode_MouseX11;
4062 break; 4152 break;
4063#ifdef menuBar_esc
4064 case menuBar_esc:
4065#ifdef MENUBAR
4066 map_menuBar (state);
4067#endif
4068 break;
4069#endif
4070#ifdef scrollBar_esc 4153#ifdef scrollBar_esc
4071 case scrollBar_esc: 4154 case scrollBar_esc:
4072 if (scrollbar_mapping (state)) 4155 if (scrollbar_mapping (state))
4073 { 4156 {
4074 resize_all_windows (0, 0, 0); 4157 resize_all_windows (0, 0, 0);
4093#if 0 4176#if 0
4094 case 1001: 4177 case 1001:
4095 break; /* X11 mouse highlighting */ 4178 break; /* X11 mouse highlighting */
4096#endif 4179#endif
4097 case 1010: /* scroll to bottom on TTY output inhibit */ 4180 case 1010: /* scroll to bottom on TTY output inhibit */
4098 if (state)
4099 options &= ~Opt_scrollTtyOutput;
4100 else
4101 options |= Opt_scrollTtyOutput; 4181 set_option (Opt_scrollTtyOutput, !state);
4102 break; 4182 break;
4103 case 1011: /* scroll to bottom on key press */ 4183 case 1011: /* scroll to bottom on key press */
4104 if (state)
4105 options |= Opt_scrollTtyKeypress; 4184 set_option (Opt_scrollTtyKeypress, state);
4106 else
4107 options &= ~Opt_scrollTtyKeypress;
4108 break; 4185 break;
4109 case 1047: /* secondary screen w/ clearing last */ 4186 case 1047: /* secondary screen w/ clearing last */
4110 if (options & Opt_secondaryScreen) 4187 if (OPTION (Opt_secondaryScreen))
4111 if (current_screen != PRIMARY) 4188 if (current_screen != PRIMARY)
4112 scr_erase_screen (2); 4189 scr_erase_screen (2);
4113 scr_change_screen (state); 4190 scr_change_screen (state);
4114 break; 4191 break;
4115 case 1049: /* secondary screen w/ clearing first */ 4192 case 1049: /* secondary screen w/ clearing first */
4116 scr_change_screen (state); 4193 scr_change_screen (state);
4117 if (options & Opt_secondaryScreen) 4194 if (OPTION (Opt_secondaryScreen))
4118 if (current_screen != PRIMARY) 4195 if (current_screen != PRIMARY)
4119 scr_erase_screen (2); 4196 scr_erase_screen (2);
4120 break; 4197 break;
4121 default: 4198 default:
4122 break; 4199 break;
4250 scr_color (Color_bg, Color_bg); 4327 scr_color (Color_bg, Color_bg);
4251 break; 4328 break;
4252 4329
4253 //case 50: // not variable spacing 4330 //case 50: // not variable spacing
4254 4331
4255#ifndef NO_BRIGHTCOLOR 4332#if ENABLE_FRILLS
4256 case 90: 4333 case 90:
4257 case 91: /* set bright fg color */ 4334 case 91: /* set bright fg color */
4258 case 92: 4335 case 92:
4259 case 93: 4336 case 93:
4260 case 94: 4337 case 94:
4272 case 106: 4349 case 106:
4273 case 107: 4350 case 107:
4274 scr_color ((unsigned int) (minBrightCOLOR + (arg[i] - 100)), Color_bg); 4351 scr_color ((unsigned int) (minBrightCOLOR + (arg[i] - 100)), Color_bg);
4275 break; 4352 break;
4276#endif 4353#endif
4277
4278 } 4354 }
4279 } 4355 }
4280} 4356}
4281/*}}} */ 4357/*}}} */
4282 4358
4306 */ 4382 */
4307void 4383void
4308rxvt_term::tt_printf (const char *fmt,...) 4384rxvt_term::tt_printf (const char *fmt,...)
4309{ 4385{
4310 va_list arg_ptr; 4386 va_list arg_ptr;
4311 unsigned char buf[256]; 4387 char buf[256];
4312 4388
4313 va_start (arg_ptr, fmt); 4389 va_start (arg_ptr, fmt);
4314 vsnprintf ((char *)buf, 256, fmt, arg_ptr); 4390 vsnprintf ((char *)buf, 256, fmt, arg_ptr);
4315 va_end (arg_ptr); 4391 va_end (arg_ptr);
4316 tt_write (buf, strlen (buf)); 4392 tt_write (buf, strlen (buf));
4321 * or generated by us in response to a query ESC sequence. 4397 * or generated by us in response to a query ESC sequence.
4322 */ 4398 */
4323const unsigned int MAX_PTY_WRITE = 255; // minimum MAX_INPUT 4399const unsigned int MAX_PTY_WRITE = 255; // minimum MAX_INPUT
4324 4400
4325void 4401void
4326rxvt_term::tt_write (const unsigned char *data, unsigned int len) 4402rxvt_term::tt_write (const char *data, unsigned int len)
4327{ 4403{
4404 if (HOOK_INVOKE ((this, HOOK_TT_WRITE, DT_STR_LEN, data, len, DT_END)))
4405 return;
4406
4407 if (pty->pty < 0)
4408 return;
4409
4328 if (v_buflen == 0) 4410 if (v_buflen == 0)
4329 { 4411 {
4330 ssize_t written = write (pty.pty, data, min (len, MAX_PTY_WRITE)); 4412 ssize_t written = write (pty->pty, data, min (len, MAX_PTY_WRITE));
4331 4413
4332 if ((unsigned int)written == len) 4414 if ((unsigned int)written == len)
4333 return; 4415 return;
4334 4416
4335 data += written; 4417 data += written;
4336 len -= written; 4418 len -= written;
4337 } 4419 }
4338 4420
4339 v_buffer = (unsigned char *)realloc (v_buffer, v_buflen + len); 4421 v_buffer = (char *)realloc (v_buffer, v_buflen + len);
4340 4422
4341 memcpy (v_buffer + v_buflen, data, len); 4423 memcpy (v_buffer + v_buflen, data, len);
4342 v_buflen += len; 4424 v_buflen += len;
4343 4425
4344 pty_ev.set (EVENT_READ | EVENT_WRITE); 4426 pty_ev.set (EVENT_READ | EVENT_WRITE);
4345} 4427}
4346 4428
4347void rxvt_term::pty_write () 4429void rxvt_term::pty_write ()
4348{ 4430{
4349 int written = write (pty.pty, v_buffer, min (v_buflen, MAX_PTY_WRITE)); 4431 int written = write (pty->pty, v_buffer, min (v_buflen, MAX_PTY_WRITE));
4350 4432
4351 if (written > 0) 4433 if (written > 0)
4352 { 4434 {
4353 v_buflen -= written; 4435 v_buflen -= written;
4354 4436
4363 } 4445 }
4364 4446
4365 memmove (v_buffer, v_buffer + written, v_buflen); 4447 memmove (v_buffer, v_buffer + written, v_buflen);
4366 } 4448 }
4367 else if (written != -1 || (errno != EAGAIN && errno != EINTR)) 4449 else if (written != -1 || (errno != EAGAIN && errno != EINTR))
4368 // original code just ignores this... 4450 pty_ev.set (EVENT_READ);
4369 destroy ();
4370} 4451}
4371 4452
4372/*----------------------- end-of-file (C source) -----------------------*/ 4453/*----------------------- end-of-file (C source) -----------------------*/
4373 4454

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines