ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/screen.C
(Generate patch)

Comparing rxvt-unicode/src/screen.C (file contents):
Revision 1.205 by root, Tue Jan 3 04:18:47 2006 UTC vs.
Revision 1.253 by root, Fri Jan 27 18:36:43 2006 UTC

1/*--------------------------------*-C-*--------------------------------------* 1/*--------------------------------*-C-*--------------------------------------*
2 * File: screen.C 2 * File: screen.C
3 *---------------------------------------------------------------------------* 3 *---------------------------------------------------------------------------*
4 * 4 *
5 * Copyright (c) 1997-2001 Geoff Wing <gcw@pobox.com> 5 * Copyright (c) 1997-2001 Geoff Wing <gcw@pobox.com>
6 * Copyright (c) 2003-2004 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
93 */ 93 */
94#define drawBuffer vt 94#define drawBuffer vt
95 95
96#define CLEAR_ROWS(row, num) \ 96#define CLEAR_ROWS(row, num) \
97 if (mapped) \ 97 if (mapped) \
98 XClearArea (display->display, drawBuffer, 0, \ 98 XClearArea (xdisp, drawBuffer, 0, \
99 Row2Pixel (row), (unsigned int)width, \ 99 Row2Pixel (row), (unsigned int)width, \
100 (unsigned int)Height2Pixel (num), False) 100 (unsigned int)Height2Pixel (num), False)
101 101
102#define CLEAR_CHARS(x, y, num) \ 102#define CLEAR_CHARS(x, y, num) \
103 if (mapped) \ 103 if (mapped) \
104 XClearArea (display->display, drawBuffer, x, y, \ 104 XClearArea (xdisp, drawBuffer, x, y, \
105 (unsigned int)Width2Pixel (num), \ 105 (unsigned int)Width2Pixel (num), \
106 (unsigned int)Height2Pixel (1), False) 106 (unsigned int)Height2Pixel (1), False)
107 107
108#define ERASE_ROWS(row, num) \ 108#define ERASE_ROWS(row, num) \
109 XFillRectangle (display->display, drawBuffer, gc, \ 109 XFillRectangle (xdisp, drawBuffer, gc, \
110 0, Row2Pixel (row), \ 110 0, Row2Pixel (row), \
111 (unsigned int)width, \ 111 (unsigned int)width, \
112 (unsigned int)Height2Pixel (num)) 112 (unsigned int)Height2Pixel (num))
113 113
114/* ------------------------------------------------------------------------- * 114/* ------------------------------------------------------------------------- *
115 * SCREEN `COMMON' ROUTINES * 115 * SCREEN `COMMON' ROUTINES *
116 * ------------------------------------------------------------------------- */ 116 * ------------------------------------------------------------------------- */
117 117
118/* Fill part/all of a line with blanks. */ 118/* Fill part/all of a line with blanks. */
119void 119void
120rxvt_term::scr_blank_line (line_t &l, unsigned int col, unsigned int width, rend_t efs) 120rxvt_term::scr_blank_line (line_t &l, unsigned int col, unsigned int width, rend_t efs) const NOTHROW
121{ 121{
122 if (!l.t) 122 if (!l.t)
123 { 123 {
124 lalloc (l); 124 lalloc (l);
125 col = 0; 125 col = 0;
126 width = ncol; 126 width = ncol;
127 } 127 }
128 128
129 l.touch ();
130
129 efs &= ~RS_baseattrMask; 131 efs &= ~RS_baseattrMask;
130 efs = SET_FONT (efs, FONTSET (efs)->find_font (' ')); 132 efs = SET_FONT (efs, FONTSET (efs)->find_font (' '));
131 133
132 text_t *et = l.t + col; 134 text_t *et = l.t + col;
133 rend_t *er = l.r + col; 135 rend_t *er = l.r + col;
140} 142}
141 143
142/* ------------------------------------------------------------------------- */ 144/* ------------------------------------------------------------------------- */
143/* Fill a full line with blanks - make sure it is allocated first */ 145/* Fill a full line with blanks - make sure it is allocated first */
144void 146void
145rxvt_term::scr_blank_screen_mem (line_t &l, rend_t efs) 147rxvt_term::scr_blank_screen_mem (line_t &l, rend_t efs) const NOTHROW
146{ 148{
147 scr_blank_line (l, 0, ncol, efs); 149 scr_blank_line (l, 0, ncol, efs);
150
151 l.l = 0;
152 l.f = 0;
148} 153}
149 154
150/* ------------------------------------------------------------------------- * 155/* ------------------------------------------------------------------------- *
151 * SCREEN INITIALISATION * 156 * SCREEN INITIALISATION *
152 * ------------------------------------------------------------------------- */ 157 * ------------------------------------------------------------------------- */
168 nrow = 24; 173 nrow = 24;
169 174
170 if (ncol == prev_ncol && nrow == prev_nrow) 175 if (ncol == prev_ncol && nrow == prev_nrow)
171 return; 176 return;
172 177
178 if (current_screen != PRIMARY)
179 scr_swap_screen ();
180
173 // we need at least two lines for wrapping to work correctly 181 // we need at least two lines for wrapping to work correctly
174 if (nrow + saveLines < 2) 182 while (nrow + saveLines < 2)
175 { 183 {
176 //TODO//FIXME 184 //TODO//FIXME
177 saveLines++; 185 saveLines++;
178 prev_nrow--; 186 prev_nrow--;
179 nsaved++; 187 top_row--;
180 } 188 }
181 189
182 want_refresh = 1; 190 want_refresh = 1;
183 191
184 int prev_total_rows = prev_nrow + saveLines; 192 int prev_total_rows = prev_nrow + saveLines;
189 197
190 if (!row_buf) 198 if (!row_buf)
191 { 199 {
192 /* 200 /*
193 * first time called so just malloc everything: don't rely on realloc 201 * first time called so just malloc everything: don't rely on realloc
194 * Note: this is still needed so that all the scrollback lines are NULL
195 */ 202 */
196 nsaved = 0; /* no saved lines */ 203 top_row = 0;
197 term_start = 0; 204 term_start = 0;
198 205
199 talloc = new rxvt_salloc (ncol * sizeof (text_t)); 206 talloc = new rxvt_salloc (ncol * sizeof (text_t));
200 ralloc = new rxvt_salloc (ncol * sizeof (rend_t)); 207 ralloc = new rxvt_salloc (ncol * sizeof (rend_t));
201 208
202 row_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t)); 209 row_buf = (line_t *)rxvt_calloc (total_rows + nrow, sizeof (line_t));
203 temp_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t));
204 drawn_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t)); 210 drawn_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t));
205 swap_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t)); 211 swap_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t));
206 212
207 for (int row = nrow; row--; ) 213 for (int row = nrow; row--; )
208 { 214 {
209 scr_blank_screen_mem (ROW (row), DEFAULT_RSTYLE); 215 scr_blank_screen_mem (ROW (row), DEFAULT_RSTYLE);
210 scr_blank_screen_mem (swap_buf [row], DEFAULT_RSTYLE); 216 scr_blank_screen_mem (swap_buf [row], DEFAULT_RSTYLE);
231 selection.text = NULL; 237 selection.text = NULL;
232 selection.len = 0; 238 selection.len = 0;
233 selection.op = SELECTION_CLEAR; 239 selection.op = SELECTION_CLEAR;
234 selection.screen = PRIMARY; 240 selection.screen = PRIMARY;
235 selection.clicks = 0; 241 selection.clicks = 0;
236 CLEAR_ALL_SELECTION (); 242 rvideo_state = rvideo_mode = false;
237 rvideo = 0;
238 } 243 }
239 else 244 else
240 { 245 {
241 /* 246 /*
242 * add or delete rows as appropriate 247 * add or delete rows as appropriate
255 } 260 }
256 } 261 }
257#endif 262#endif
258 263
259 drawn_buf = (line_t *)rxvt_realloc (drawn_buf, nrow * sizeof (line_t)); 264 drawn_buf = (line_t *)rxvt_realloc (drawn_buf, nrow * sizeof (line_t));
260 temp_buf = (line_t *)rxvt_realloc (temp_buf , nrow * sizeof (line_t));
261 swap_buf = (line_t *)rxvt_realloc (swap_buf , nrow * sizeof (line_t)); 265 swap_buf = (line_t *)rxvt_realloc (swap_buf , nrow * sizeof (line_t));
262 266
263 for (int row = min (nrow, prev_nrow); row--; ) 267 for (int row = min (nrow, prev_nrow); row--; )
264 { 268 {
265 lresize (drawn_buf[row]); 269 lresize (drawn_buf[row]);
270 { 274 {
271 swap_buf [row].clear (); scr_blank_screen_mem (swap_buf [row], DEFAULT_RSTYLE); 275 swap_buf [row].clear (); scr_blank_screen_mem (swap_buf [row], DEFAULT_RSTYLE);
272 drawn_buf[row].clear (); scr_blank_screen_mem (drawn_buf[row], DEFAULT_RSTYLE); 276 drawn_buf[row].clear (); scr_blank_screen_mem (drawn_buf[row], DEFAULT_RSTYLE);
273 } 277 }
274 278
279 line_t *old_buf = row_buf;
275 line_t *old_buf = row_buf; row_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t)); 280 row_buf = (line_t *)rxvt_calloc (total_rows + nrow, sizeof (line_t));
276 281
277 int p = MOD (term_start + prev_nrow, prev_total_rows); // previous row 282 int p = MOD (term_start + prev_nrow, prev_total_rows); // previous row
278 int pend = MOD (term_start - nsaved , prev_total_rows); 283 int pend = MOD (term_start + top_row , prev_total_rows);
279 int q = total_rows; // rewrapped row 284 int q = total_rows; // rewrapped row
280 285
281 if (nsaved) 286 if (top_row)
282 { 287 {
283 // re-wrap lines, this is rather ugly, possibly because I am too dumb 288 // Re-wrap lines. This is rather ugly, possibly because I am too dumb
284 // to come up with a lean and mean algorithm. 289 // to come up with a lean and mean algorithm.
285 290
286 row_col_t ocur = screen.cur; 291 row_col_t ocur = screen.cur;
287 ocur.row = MOD (term_start + ocur.row, prev_total_rows); 292 ocur.row = MOD (term_start + ocur.row, prev_total_rows);
288 293
290 { 295 {
291 p = MOD (p - 1, prev_total_rows); 296 p = MOD (p - 1, prev_total_rows);
292#ifdef DEBUG_STRICT 297#ifdef DEBUG_STRICT
293 assert (old_buf [MOD (p, prev_total_rows)].t); 298 assert (old_buf [MOD (p, prev_total_rows)].t);
294#endif 299#endif
295
296 int plines = 1; 300 int plines = 1;
297 int llen = old_buf [MOD (p, prev_total_rows)].l; 301 int llen = old_buf [MOD (p, prev_total_rows)].l;
298 302
299 while (p != pend && old_buf [MOD (p - 1, prev_total_rows)].is_longer ()) 303 while (p != pend && old_buf [MOD (p - 1, prev_total_rows)].is_longer ())
300 { 304 {
318 // re-assemble the full line by destination lines 322 // re-assemble the full line by destination lines
319 for (int qrow = q; qlines--; qrow++) 323 for (int qrow = q; qlines--; qrow++)
320 { 324 {
321 qline = row_buf + qrow; 325 qline = row_buf + qrow;
322 lalloc (*qline); 326 lalloc (*qline);
327 qline->l = ncol;
323 qline->set_is_longer (); 328 qline->is_longer (1);
324 329
325 int qcol = 0; 330 int qcol = 0;
326 331
332 // see below for cursor adjustment rationale
333 if (p == ocur.row)
334 screen.cur.row = q - (total_rows - nrow);
335
327 // fill a single destination line 336 // fill a single destination line
328 while (lofs < llen && qcol < ncol) 337 while (lofs < llen && qcol < ncol)
329 { 338 {
330 int prow = lofs / prev_ncol; 339 int prow = lofs / prev_ncol;
331 int pcol = lofs % prev_ncol; 340 int pcol = lofs % prev_ncol;
341 350
342 line_t &pline = old_buf [prow]; 351 line_t &pline = old_buf [prow];
343 352
344 int len = min (min (prev_ncol - pcol, ncol - qcol), llen - lofs); 353 int len = min (min (prev_ncol - pcol, ncol - qcol), llen - lofs);
345 354
346 assert (len);
347 assert (pline.t);
348
349 memcpy (qline->t + qcol, pline.t + pcol, len * sizeof (text_t)); 355 memcpy (qline->t + qcol, pline.t + pcol, len * sizeof (text_t));
350 memcpy (qline->r + qcol, pline.r + pcol, len * sizeof (rend_t)); 356 memcpy (qline->r + qcol, pline.r + pcol, len * sizeof (rend_t));
351 357
352 lofs += len; 358 lofs += len;
353 qcol += len; 359 qcol += len;
354 } 360 }
355 } 361 }
356 362
357 qline->l = llen ? MOD (llen - 1, ncol) + 1 : 0; 363 qline->l = llen ? MOD (llen - 1, ncol) + 1 : 0;
358#ifdef DEBUG_STRICT //TODO//FIXME//TEMPORARY 364 qline->is_longer (0);
359 if (qline->l < 0)
360 {
361 fprintf (stderr, "ERROR, PLEASE REPORT to rxvt-unicode@plan9.de: qline->l %d = llen %d < ncol %d ? %d : MOD %d\n", qline->l,llen,ncol,llen,MOD (llen - 1, ncol) + 1);//D
362 qline->l = 0;
363 }
364#endif
365 scr_blank_line (*qline, qline->l, ncol - qline->l, DEFAULT_RSTYLE); 365 scr_blank_line (*qline, qline->l, ncol - qline->l, DEFAULT_RSTYLE);
366 } 366 }
367 while (p != pend && q > 0); 367 while (p != pend && q > 0);
368 368
369 term_start = total_rows - nrow; 369 term_start = total_rows - nrow;
370 nsaved = term_start - q; 370 top_row = q - term_start;
371 371
372 // make sure all terminal lines exist 372 // make sure all terminal lines exist
373 while (nsaved < 0) 373 while (top_row > 0)
374 scr_blank_screen_mem (ROW (-++nsaved), DEFAULT_RSTYLE); 374 scr_blank_screen_mem (ROW (--top_row), DEFAULT_RSTYLE);
375
376 } 375 }
377 else 376 else
378 { 377 {
379 // if no scrollback exists (yet), wing, instead of wrap 378 // if no scrollback exists (yet), wing, instead of wrap
380 379
393 } 392 }
394 393
395 term_start = 0; 394 term_start = 0;
396 } 395 }
397 396
398#ifdef DEBUG_STRICT //TODO: remove
399 for (int i = -nsaved; i < nrow; i++)
400 assert (ROW (i).t);
401#endif
402
403 free (old_buf); 397 free (old_buf);
404 delete old_ta; 398 delete old_ta;
405 delete old_ra; 399 delete old_ra;
406 400
407 clamp_it (screen.cur.row, 0, nrow - 1); 401 clamp_it (screen.cur.row, 0, nrow - 1);
408 clamp_it (screen.cur.col, 0, ncol - 1); 402 clamp_it (screen.cur.col, 0, ncol - 1);
409 403
410 if (tabs)
411 free (tabs); 404 free (tabs);
412 } 405 }
406
407 CLEAR_ALL_SELECTION ();
413 408
414 prev_nrow = nrow; 409 prev_nrow = nrow;
415 prev_ncol = ncol; 410 prev_ncol = ncol;
416 411
417 tabs = (char *)rxvt_malloc (ncol * sizeof (char)); 412 tabs = (char *)rxvt_malloc (ncol * sizeof (char));
418 413
419 for (int col = ncol; col--; ) 414 for (int col = ncol; col--; )
420 tabs [col] = col % TABSIZE == 0; 415 tabs [col] = col % TABSIZE == 0;
421 416
417 if (current_screen != PRIMARY)
418 scr_swap_screen ();
419
422 tt_winch (); 420 tt_winch ();
423 421
424 PERL_INVOKE ((this, HOOK_RESET, DT_END)); 422 HOOK_INVOKE ((this, HOOK_RESET, DT_END));
425} 423}
426 424
427/* ------------------------------------------------------------------------- */ 425/* ------------------------------------------------------------------------- */
428/* 426/*
429 * Free everything. That way malloc debugging can find leakage. 427 * Free everything. That way malloc debugging can find leakage.
430 */ 428 */
431void 429void
432rxvt_term::scr_release () 430rxvt_term::scr_release () NOTHROW
433{ 431{
432 if (row_buf)
433 {
434 delete talloc; talloc = 0; 434 delete talloc; talloc = 0;
435 delete ralloc; ralloc = 0; 435 delete ralloc; ralloc = 0;
436 436
437 free (row_buf); 437 free (row_buf);
438 free (swap_buf); 438 free (swap_buf);
439 free (drawn_buf); 439 free (drawn_buf);
440 free (temp_buf);
441 free (tabs); 440 free (tabs);
442 441
443 row_buf = 0; // signal that we freed all the arrays 442 row_buf = 0; // signal that we freed all the arrays
443 }
444} 444}
445 445
446/* ------------------------------------------------------------------------- */ 446/* ------------------------------------------------------------------------- */
447/* 447/*
448 * Hard reset 448 * Hard reset
453 scr_release (); 453 scr_release ();
454 prev_nrow = prev_ncol = 0; 454 prev_nrow = prev_ncol = 0;
455 scr_reset (); 455 scr_reset ();
456 456
457 scr_clear (true); 457 scr_clear (true);
458 scr_refresh (SLOW_REFRESH); 458 scr_refresh ();
459} 459}
460 460
461/* ------------------------------------------------------------------------- * 461/* ------------------------------------------------------------------------- *
462 * PROCESS SCREEN COMMANDS * 462 * PROCESS SCREEN COMMANDS *
463 * ------------------------------------------------------------------------- */ 463 * ------------------------------------------------------------------------- */
465 * Save and Restore cursor 465 * Save and Restore cursor
466 * XTERM_SEQ: Save cursor : ESC 7 466 * XTERM_SEQ: Save cursor : ESC 7
467 * XTERM_SEQ: Restore cursor: ESC 8 467 * XTERM_SEQ: Restore cursor: ESC 8
468 */ 468 */
469void 469void
470rxvt_term::scr_cursor (int mode) 470rxvt_term::scr_cursor (cursor_mode mode) NOTHROW
471{ 471{
472 screen_t *s; 472 screen_t *s;
473 473
474#if NSCREENS && !defined(NO_SECONDARY_SCREEN_CURSOR) 474#if NSCREENS && !defined(NO_SECONDARY_SCREEN_CURSOR)
475 if (current_screen == SECONDARY) 475 if (current_screen == SECONDARY)
507 assert (s->cur.row >= 0); 507 assert (s->cur.row >= 0);
508 assert (s->cur.col >= 0); 508 assert (s->cur.col >= 0);
509#endif 509#endif
510} 510}
511 511
512void
513rxvt_term::scr_swap_screen ()
514{
515 if (!OPTION (Opt_secondaryScreen))
516 return;
517
518 for (int i = prev_nrow; i--; )
519 ::swap (ROW(i), swap_buf [i]);
520
521 ::swap (screen.cur, swap.cur);
522
523 screen.cur.row = clamp (screen.cur.row, 0, prev_nrow - 1);
524 screen.cur.col = clamp (screen.cur.col, 0, prev_ncol - 1);
525}
526
512/* ------------------------------------------------------------------------- */ 527/* ------------------------------------------------------------------------- */
513/* 528/*
514 * Swap between primary and secondary screens 529 * Swap between primary and secondary screens
515 * XTERM_SEQ: Primary screen : ESC [ ? 4 7 h 530 * XTERM_SEQ: Primary screen : ESC [ ? 4 7 h
516 * XTERM_SEQ: Secondary screen: ESC [ ? 4 7 l 531 * XTERM_SEQ: Secondary screen: ESC [ ? 4 7 l
517 */ 532 */
518int 533void
519rxvt_term::scr_change_screen (int scrn) 534rxvt_term::scr_change_screen (int scrn)
520{ 535{
536 if (scrn == current_screen)
537 return;
538
521 want_refresh = 1; 539 want_refresh = 1;
522 view_start = 0; 540 view_start = 0;
523 541
524 if (current_screen == scrn)
525 return scrn;
526
527 selection_check (2); /* check for boundary cross */ 542 selection_check (2); /* check for boundary cross */
528 543
529 int i = current_screen; current_screen = scrn; scrn = i; 544 int i = current_screen; current_screen = scrn; scrn = i;
530
531 ::swap (screen.cur.row, swap.cur.row);
532 ::swap (screen.cur.col, swap.cur.col);
533
534 screen.cur.row = clamp (screen.cur.row, 0, prev_nrow - 1);
535 screen.cur.col = clamp (screen.cur.col, 0, prev_ncol - 1);
536 545
537#if NSCREENS 546#if NSCREENS
538 if (OPTION (Opt_secondaryScreen)) 547 if (OPTION (Opt_secondaryScreen))
539 { 548 {
540 num_scr = 0; 549 num_scr = 0;
541 550
542 for (int i = prev_nrow; i--; ) 551 scr_swap_screen ();
543 ::swap (ROW(i), swap_buf [i]);
544 552
545 ::swap (screen.charset, swap.charset); 553 ::swap (screen.charset, swap.charset);
546 ::swap (screen.flags, swap.flags); 554 ::swap (screen.flags, swap.flags);
547 screen.flags |= Screen_VisibleCursor; 555 screen.flags |= Screen_VisibleCursor;
548 swap.flags |= Screen_VisibleCursor; 556 swap.flags |= Screen_VisibleCursor;
549 } 557 }
550 else 558 else
551#endif 559#endif
552 if (OPTION (Opt_secondaryScroll)) 560 if (OPTION (Opt_secondaryScroll))
553 scr_scroll_text (0, prev_nrow - 1, prev_nrow); 561 scr_scroll_text (0, prev_nrow - 1, prev_nrow);
554
555 return scrn;
556} 562}
557 563
558// clear WrapNext indicator, solidifying position on next line 564// clear WrapNext indicator, solidifying position on next line
559void 565void
560rxvt_term::scr_do_wrap () 566rxvt_term::scr_do_wrap () NOTHROW
561{ 567{
562 if (!(screen.flags & Screen_WrapNext)) 568 if (!(screen.flags & Screen_WrapNext))
563 return; 569 return;
564 570
565 screen.flags &= ~Screen_WrapNext; 571 screen.flags &= ~Screen_WrapNext;
575/* ------------------------------------------------------------------------- */ 581/* ------------------------------------------------------------------------- */
576/* 582/*
577 * Change the colour for following text 583 * Change the colour for following text
578 */ 584 */
579void 585void
580rxvt_term::scr_color (unsigned int color, int fgbg) 586rxvt_term::scr_color (unsigned int color, int fgbg) NOTHROW
581{ 587{
582 if (color > maxTermCOLOR) 588 if (!IN_RANGE_INC (color, minCOLOR, maxTermCOLOR))
583 color = fgbg; 589 color = fgbg;
584 590
585 if (fgbg == Color_fg) 591 if (fgbg == Color_fg)
586 rstyle = SET_FGCOLOR (rstyle, color); 592 rstyle = SET_FGCOLOR (rstyle, color);
587 else 593 else
591/* ------------------------------------------------------------------------- */ 597/* ------------------------------------------------------------------------- */
592/* 598/*
593 * Change the rendition style for following text 599 * Change the rendition style for following text
594 */ 600 */
595void 601void
596rxvt_term::scr_rendition (int set, int style) 602rxvt_term::scr_rendition (int set, int style) NOTHROW
597 { 603 {
598 if (set) 604 if (set)
599 rstyle |= style; 605 rstyle |= style;
600 else if (style == ~RS_None) 606 else if (style == ~RS_None)
601 rstyle = DEFAULT_RSTYLE; 607 rstyle = DEFAULT_RSTYLE;
608 * Scroll text between <row1> and <row2> inclusive, by <count> lines 614 * Scroll text between <row1> and <row2> inclusive, by <count> lines
609 * count positive ==> scroll up 615 * count positive ==> scroll up
610 * count negative ==> scroll down 616 * count negative ==> scroll down
611 */ 617 */
612int 618int
613rxvt_term::scr_scroll_text (int row1, int row2, int count) 619rxvt_term::scr_scroll_text (int row1, int row2, int count) NOTHROW
614{ 620{
615 if (count == 0 || (row1 > row2)) 621 if (count == 0 || (row1 > row2))
616 return 0; 622 return 0;
617 623
618 want_refresh = 1; 624 want_refresh = 1;
619 num_scr += count; 625 num_scr += count;
620 626
621 if (count > 0 627 if (count > 0
622 && row1 == 0 628 && row1 == 0
623 && row2 == nrow - 1
624 && (current_screen == PRIMARY || OPTION (Opt_secondaryScroll))) 629 && (current_screen == PRIMARY || OPTION (Opt_secondaryScroll)))
625 { 630 {
626 nsaved = min (nsaved + count, saveLines); 631 top_row = max (top_row - count, -saveLines);
627 632
628 PERL_INVOKE ((this, HOOK_SCROLL_BACK, DT_INT, count, DT_INT, nsaved, DT_END)); 633 // scroll everything up 'count' lines
634 term_start = (term_start + count) % total_rows;
635
636 // sever bottommost line
637 {
638 line_t &l = ROW(row2 - count);
639 l.is_longer (0);
640 l.touch ();
641 }
642
643 // erase newly scrolled-in lines
644 for (int i = count; i--; )
645 scr_blank_screen_mem (ROW(nrow - 1 - i), rstyle);
646
647 // now copy lines below the scroll region bottom to the
648 // bottom of the screen again, so they look as if they
649 // hadn't moved.
650 for (int i = nrow; --i > row2; )
651 {
652 line_t &l1 = ROW(i - count);
653 line_t &l2 = ROW(i);
654
655 ::swap (l1, l2);
656 l2.touch ();
657 }
629 658
630 term_start = (term_start + count) % total_rows; 659 // move and/or clear selection, if any
631
632 if (selection.op && current_screen == selection.screen) 660 if (selection.op && current_screen == selection.screen)
633 { 661 {
634 selection.beg.row -= count; 662 selection.beg.row -= count;
635 selection.end.row -= count; 663 selection.end.row -= count;
636 selection.mark.row -= count; 664 selection.mark.row -= count;
637 665
638 if (selection.beg.row < -nsaved 666 if (selection.beg.row < top_row
639 || selection.end.row < -nsaved 667 || selection.end.row < top_row
640 || selection.mark.row < -nsaved) 668 || selection.mark.row < top_row)
641 { 669 {
642 CLEAR_ALL_SELECTION (); 670 CLEAR_ALL_SELECTION ();
643 selection.op = SELECTION_CLEAR; 671 selection.op = SELECTION_CLEAR;
644 } 672 }
645 } 673 }
646 674
647 for (int i = count; i--; ) 675 // finally move the view window, if desired
648 {
649 ROW(row2 - i).l = 0;
650 scr_blank_screen_mem (ROW(row2 - i), rstyle);
651 }
652
653 if (OPTION (Opt_scrollWithBuffer) 676 if (OPTION (Opt_scrollWithBuffer)
654 && view_start != 0 677 && view_start != 0
655 && view_start != saveLines) 678 && view_start != -saveLines)
656 scr_page (UP, count); 679 scr_page (UP, count);
680
681 if (SHOULD_INVOKE (HOOK_SCROLL_BACK))
682 HOOK_INVOKE ((this, HOOK_SCROLL_BACK, DT_INT, count, DT_INT, top_row, DT_END));
657 } 683 }
658 else 684 else
659 { 685 {
660 if (selection.op && current_screen == selection.screen) 686 if (selection.op && current_screen == selection.screen)
661 { 687 {
685 711
686 int rows = row2 - row1 + 1; 712 int rows = row2 - row1 + 1;
687 713
688 min_it (count, rows); 714 min_it (count, rows);
689 715
716 line_t *temp_buf = row_buf + total_rows;
717
690 for (int row = 0; row < rows; row++) 718 for (int row = 0; row < rows; row++)
691 { 719 {
692 temp_buf [row] = ROW(row1 + (row + count + rows) % rows); 720 temp_buf [row] = ROW(row1 + (row + count + rows) % rows);
693 721
694 if (!IN_RANGE_EXC (row + count, 0, rows)) 722 if (!IN_RANGE_EXC (row + count, 0, rows))
705/* ------------------------------------------------------------------------- */ 733/* ------------------------------------------------------------------------- */
706/* 734/*
707 * Add text given in <str> of length <len> to screen struct 735 * Add text given in <str> of length <len> to screen struct
708 */ 736 */
709void 737void
710rxvt_term::scr_add_lines (const unicode_t *str, int nlines, int len) 738rxvt_term::scr_add_lines (const wchar_t *str, int len, int minlines) NOTHROW
711{ 739{
712 if (len <= 0) /* sanity */ 740 if (len <= 0) /* sanity */
713 return; 741 return;
714 742
715 unsigned char checksel; 743 unsigned char checksel;
716 unicode_t c; 744 unicode_t c;
717 int last_col; 745 int ncol = this->ncol;
718 const unicode_t *strend = str + len; 746 const wchar_t *strend = str + len;
719 747
720 want_refresh = 1; 748 want_refresh = 1;
721 ZERO_SCROLLBACK (); 749 ZERO_SCROLLBACK ();
722 last_col = ncol;
723 750
724 if (nlines > 0) 751 if (minlines > 0)
725 { 752 {
726 nlines += screen.cur.row - screen.bscroll; 753 minlines += screen.cur.row - screen.bscroll;
754 min_it (minlines, screen.cur.row - top_row);
755
727 if (nlines > 0 756 if (minlines > 0
728 && screen.tscroll == 0 757 && screen.tscroll == 0
729 && screen.bscroll == (nrow - 1)) 758 && screen.bscroll == nrow - 1)
730 { 759 {
731 /* _at least_ this many lines need to be scrolled */ 760 /* _at least_ this many lines need to be scrolled */
732 scr_scroll_text (screen.tscroll, screen.bscroll, nlines); 761 scr_scroll_text (screen.tscroll, screen.bscroll, minlines);
733 screen.cur.row -= nlines; 762 screen.cur.row -= minlines;
734 } 763 }
735 } 764 }
736 765
737#ifdef DEBUG_STRICT 766#ifdef DEBUG_STRICT
738 assert (screen.cur.col < last_col); 767 assert (screen.cur.col < ncol);
739 assert (screen.cur.row < nrow 768 assert (screen.cur.row < nrow
740 && screen.cur.row >= -nsaved); 769 && screen.cur.row >= top_row);
741#endif 770#endif
742 int row = screen.cur.row; 771 int row = screen.cur.row;
743 772
744 checksel = selection.op && current_screen == selection.screen ? 1 : 0; 773 checksel = selection.op && current_screen == selection.screen ? 1 : 0;
745 774
746 line_t *line = &ROW(row); 775 line_t *line = &ROW(row);
747 776
748 while (str < strend) 777 while (str < strend)
749 { 778 {
750 c = *str++; 779 c = (unicode_t)*str++; // convert to rxvt-unicodes representation
751 780
752 if (c < 0x20) 781 if (c < 0x20)
753 if (c == C0_LF) 782 if (c == C0_LF)
754 { 783 {
755 if (!line->is_longer ()) /* XXX: think about this */
756 max_it (line->l, screen.cur.col); 784 max_it (line->l, screen.cur.col);
757 785
758 screen.flags &= ~Screen_WrapNext; 786 screen.flags &= ~Screen_WrapNext;
759 787
760 if (screen.cur.row == screen.bscroll) 788 if (screen.cur.row == screen.bscroll)
761 scr_scroll_text (screen.tscroll, screen.bscroll, 1); 789 scr_scroll_text (screen.tscroll, screen.bscroll, 1);
765 line = &ROW(row); /* _must_ refresh */ 793 line = &ROW(row); /* _must_ refresh */
766 continue; 794 continue;
767 } 795 }
768 else if (c == C0_CR) 796 else if (c == C0_CR)
769 { 797 {
770 if (!line->is_longer ()) /* XXX: think about this */
771 max_it (line->l, screen.cur.col); 798 max_it (line->l, screen.cur.col);
772 799
773 screen.flags &= ~Screen_WrapNext; 800 screen.flags &= ~Screen_WrapNext;
774 screen.cur.col = 0; 801 screen.cur.col = 0;
775 continue; 802 continue;
776 } 803 }
793 CLEAR_SELECTION (); 820 CLEAR_SELECTION ();
794 } 821 }
795 822
796 if (screen.flags & Screen_WrapNext) 823 if (screen.flags & Screen_WrapNext)
797 { 824 {
798 line->set_is_longer ();
799
800 scr_do_wrap (); 825 scr_do_wrap ();
801 826
827 line->l = ncol;
828 line->is_longer (1);
829
802 row = screen.cur.row; 830 row = screen.cur.row;
803 line = &ROW(row); /* _must_ refresh */ 831 line = &ROW(row); /* _must_ refresh */
804 } 832 }
805 833
806 // some utf-8 decoders "decode" surrogate characters: let's fix this. 834 // some utf-8 decoders "decode" surrogate characters: let's fix this.
807 if (IN_RANGE_INC (c, 0xd800, 0xdfff)) 835 if (IN_RANGE_INC (c, 0xd800, 0xdfff))
808 c = 0xfffd; 836 c = 0xfffd;
809 837
810 // rely on wcwidth to tell us the character width, at least for non-latin1 838 // rely on wcwidth to tell us the character width, do wcwidth before
811 // do wcwidth before further replacements, as wcwidth might return -1 839 // further replacements, as wcwidth might return -1 for the line
812 // for the line drawing characters below as they might be invalid in the current 840 // drawing characters below as they might be invalid in the current
813 // locale. 841 // locale.
814 int width = c < 0x100 ? 1 : wcwidth (c); 842 int width = WCWIDTH (c);
815 843
816 if (charsets[screen.charset] == '0') // DEC SPECIAL 844 if (charsets [screen.charset] == '0') // DEC SPECIAL
817 { 845 {
818 // vt100 special graphics and line drawing 846 // vt100 special graphics and line drawing
819 // 5f-7e standard vt100 847 // 5f-7e standard vt100
820 // 40-5e rxvt extension for extra curses acs chars 848 // 40-5e rxvt extension for extra curses acs chars
821 static uint16_t vt100_0[62] = { // 41 .. 7e 849 static uint16_t vt100_0[62] = { // 41 .. 7e
873 } 901 }
874 902
875 rend_t rend = SET_FONT (rstyle, FONTSET (rstyle)->find_font (c)); 903 rend_t rend = SET_FONT (rstyle, FONTSET (rstyle)->find_font (c));
876 904
877 // if the character doesn't fit into the remaining columns... 905 // if the character doesn't fit into the remaining columns...
878 if (screen.cur.col > last_col - width && last_col >= width) 906 if (screen.cur.col > ncol - width && ncol >= width)
879 { 907 {
880 // ...output spaces 908 // ...output spaces
881 c = ' '; 909 c = ' ';
882 // and try the same character next loop iteration 910 // and try the same character next loop iteration
883 --str; 911 --str;
884 } 912 }
885 913
914 line->touch ();
915
886 do 916 do
887 { 917 {
888 line->t[screen.cur.col] = c; 918 line->t[screen.cur.col] = c;
889 line->r[screen.cur.col] = rend; 919 line->r[screen.cur.col] = rend;
890 920
891 if (screen.cur.col < last_col - 1) 921 if (screen.cur.col < ncol - 1)
892 screen.cur.col++; 922 screen.cur.col++;
893 else 923 else
894 { 924 {
895 line->l = last_col; 925 line->l = ncol;
896 if (screen.flags & Screen_Autowrap) 926 if (screen.flags & Screen_Autowrap)
897 screen.flags |= Screen_WrapNext; 927 screen.flags |= Screen_WrapNext;
898 break; 928 break;
899 } 929 }
900 930
902 } 932 }
903 while (--width > 0); 933 while (--width > 0);
904 934
905 // pad with spaces when overwriting wide character with smaller one 935 // pad with spaces when overwriting wide character with smaller one
906 if (!width) 936 if (!width)
937 {
938 line->touch ();
939
907 for (int c = screen.cur.col; c < last_col && line->t[c] == NOCHAR; c++) 940 for (int c = screen.cur.col; c < ncol && line->t[c] == NOCHAR; c++)
908 { 941 {
909 line->t[c] = ' '; 942 line->t[c] = ' ';
910 line->r[c] = rend; 943 line->r[c] = rend;
911 } 944 }
945 }
912 } 946 }
913 else // width == 0 947 else // width == 0
914 { 948 {
915#if ENABLE_COMBINING 949#if ENABLE_COMBINING
916 // handle combining characters 950 // handle combining characters
917 // we just tag the accent on the previous on-screen character. 951 // we just tag the accent on the previous on-screen character.
918 // this is arguably not correct, but also arguably not wrong. 952 // this is arguably not correct, but also arguably not wrong.
919 // we don't handle double-width characters nicely yet. 953 // we don't handle double-width characters nicely yet.
954 line_t *linep;
920 text_t *tp; 955 text_t *tp;
921 rend_t *rp; 956 rend_t *rp;
922 957
923 if (screen.cur.col > 0) 958 if (screen.cur.col > 0)
924 { 959 {
960 linep = line;
925 tp = line->t + screen.cur.col - 1; 961 tp = line->t + screen.cur.col - 1;
926 rp = line->r + screen.cur.col - 1; 962 rp = line->r + screen.cur.col - 1;
927
928 while (*tp == NOCHAR && tp > line->t)
929 tp--, rp--;
930 } 963 }
931 else if (screen.cur.row > 0 964 else if (screen.cur.row > 0
932 && ROW(screen.cur.row - 1).is_longer ()) 965 && ROW(screen.cur.row - 1).is_longer ())
933 { 966 {
934 line_t *line = &ROW(screen.cur.row - 1); 967 linep = &ROW(screen.cur.row - 1);
935
936 tp = line->t + last_col - 1; 968 tp = line->t + ncol - 1;
937 rp = line->r + last_col - 1; 969 rp = line->r + ncol - 1;
938
939 while (*tp == NOCHAR && tp > line->t)
940 tp--, rp--;
941 } 970 }
942 else 971 else
943 continue; 972 continue;
973
974 linep->touch ();
975
976 while (*tp == NOCHAR && tp > linep->t)
977 tp--, rp--;
944 978
945 // first try to find a precomposed character 979 // first try to find a precomposed character
946 unicode_t n = rxvt_compose (*tp, c); 980 unicode_t n = rxvt_compose (*tp, c);
947 if (n == NOCHAR) 981 if (n == NOCHAR)
948 n = rxvt_composite.compose (*tp, c); 982 n = rxvt_composite.compose (*tp, c);
951 *rp = SET_FONT (*rp, FONTSET (*rp)->find_font (*tp)); 985 *rp = SET_FONT (*rp, FONTSET (*rp)->find_font (*tp));
952#endif 986#endif
953 } 987 }
954 } 988 }
955 989
956 if (!line->is_longer ()) /* XXX: think about this */
957 max_it (line->l, screen.cur.col); 990 max_it (line->l, screen.cur.col);
958 991
959#ifdef DEBUG_STRICT 992#ifdef DEBUG_STRICT
960 assert (screen.cur.row >= 0); 993 assert (screen.cur.row >= 0);
961#endif 994#endif
962} 995}
965/* 998/*
966 * Process Backspace. Move back the cursor back a position, wrap if have to 999 * Process Backspace. Move back the cursor back a position, wrap if have to
967 * XTERM_SEQ: CTRL-H 1000 * XTERM_SEQ: CTRL-H
968 */ 1001 */
969void 1002void
970rxvt_term::scr_backspace () 1003rxvt_term::scr_backspace () NOTHROW
971{ 1004{
972 want_refresh = 1; 1005 want_refresh = 1;
973 1006
974 if (screen.cur.col == 0) 1007 if (screen.cur.col == 0)
975 { 1008 {
993 * Process Horizontal Tab 1026 * Process Horizontal Tab
994 * count: +ve = forward; -ve = backwards 1027 * count: +ve = forward; -ve = backwards
995 * XTERM_SEQ: CTRL-I 1028 * XTERM_SEQ: CTRL-I
996 */ 1029 */
997void 1030void
998rxvt_term::scr_tab (int count, bool ht) 1031rxvt_term::scr_tab (int count, bool ht) NOTHROW
999{ 1032{
1000 int i, x; 1033 int i, x;
1001 1034
1002 want_refresh = 1; 1035 want_refresh = 1;
1003 i = x = screen.cur.col; 1036 i = x = screen.cur.col;
1012 1045
1013 for (; ++i < ncol; ) 1046 for (; ++i < ncol; )
1014 if (tabs[i]) 1047 if (tabs[i])
1015 { 1048 {
1016 x = i; 1049 x = i;
1050
1017 if (!--count) 1051 if (!--count)
1018 break; 1052 break;
1019 } 1053 }
1020 else 1054 else
1021 ht &= l.t[i] == ' ' 1055 ht &= l.t[i] == ' '
1028 // buffer so they can be selected and pasted. 1062 // buffer so they can be selected and pasted.
1029 if (ht && OPTION (Opt_pastableTabs)) 1063 if (ht && OPTION (Opt_pastableTabs))
1030 { 1064 {
1031 base_rend = SET_FONT (base_rend, 0); 1065 base_rend = SET_FONT (base_rend, 0);
1032 1066
1033 if (!l.is_longer ()) /* XXX: think about this */ 1067 l.touch (x);
1034 max_it (l.l, x);
1035 1068
1036 i = screen.cur.col; 1069 i = screen.cur.col;
1037 1070
1038 l.t[i] = '\t'; 1071 l.t[i] = '\t';
1039 l.r[i] = base_rend; 1072 l.r[i] = base_rend;
1070 * Move cursor left in row. If we're at the left boundary, shift everything 1103 * Move cursor left in row. If we're at the left boundary, shift everything
1071 * in that row right. Clear left column. 1104 * in that row right. Clear left column.
1072 */ 1105 */
1073#if ENABLE_FRILLS 1106#if ENABLE_FRILLS
1074void 1107void
1075rxvt_term::scr_backindex () 1108rxvt_term::scr_backindex () NOTHROW
1076{ 1109{
1077 if (screen.cur.col > 0) 1110 if (screen.cur.col > 0)
1078 scr_gotorc (0, -1, R_RELATIVE | C_RELATIVE); 1111 scr_gotorc (0, -1, R_RELATIVE | C_RELATIVE);
1079 else 1112 else
1080 scr_insdel_chars (1, INSERT); 1113 scr_insdel_chars (1, INSERT);
1087 * Move cursor right in row. If we're at the right boundary, shift everything 1120 * Move cursor right in row. If we're at the right boundary, shift everything
1088 * in that row left. Clear right column. 1121 * in that row left. Clear right column.
1089 */ 1122 */
1090#if ENABLE_FRILLS 1123#if ENABLE_FRILLS
1091void 1124void
1092rxvt_term::scr_forwardindex () 1125rxvt_term::scr_forwardindex () NOTHROW
1093{ 1126{
1094 if (screen.cur.col < ncol - 1) 1127 if (screen.cur.col < ncol - 1)
1095 scr_gotorc (0, 1, R_RELATIVE | C_RELATIVE); 1128 scr_gotorc (0, 1, R_RELATIVE | C_RELATIVE);
1096 else 1129 else
1097 { 1130 {
1098 if (ROW(screen.cur.row).is_longer ()) //TODO//FIXME//LEN 1131 line_t &l = ROW(screen.cur.row);
1099 ROW(screen.cur.row).l = ncol; 1132
1133 l.touch ();
1134 l.is_longer (0);
1100 1135
1101 scr_gotorc (0, 0, R_RELATIVE); 1136 scr_gotorc (0, 0, R_RELATIVE);
1102 scr_insdel_chars (1, DELETE); 1137 scr_insdel_chars (1, DELETE);
1103 scr_gotorc (0, ncol - 1, R_RELATIVE); 1138 scr_gotorc (0, ncol - 1, R_RELATIVE);
1104 } 1139 }
1108/* ------------------------------------------------------------------------- */ 1143/* ------------------------------------------------------------------------- */
1109/* 1144/*
1110 * Goto Row/Column 1145 * Goto Row/Column
1111 */ 1146 */
1112void 1147void
1113rxvt_term::scr_gotorc (int row, int col, int relative) 1148rxvt_term::scr_gotorc (int row, int col, int relative) NOTHROW
1114{ 1149{
1115 want_refresh = 1; 1150 want_refresh = 1;
1116 ZERO_SCROLLBACK (); 1151 ZERO_SCROLLBACK ();
1117 1152
1118 screen.cur.col = relative & C_RELATIVE ? screen.cur.col + col : col; 1153 screen.cur.col = relative & C_RELATIVE ? screen.cur.col + col : col;
1156/* ------------------------------------------------------------------------- */ 1191/* ------------------------------------------------------------------------- */
1157/* 1192/*
1158 * direction should be UP or DN 1193 * direction should be UP or DN
1159 */ 1194 */
1160void 1195void
1161rxvt_term::scr_index (enum page_dirn direction) 1196rxvt_term::scr_index (enum page_dirn direction) NOTHROW
1162{ 1197{
1163 int dirn; 1198 int dirn;
1164 1199
1165 want_refresh = 1; 1200 want_refresh = 1;
1166 ZERO_SCROLLBACK (); 1201 ZERO_SCROLLBACK ();
1185 * XTERM_SEQ: Clear line to right: ESC [ 0 K 1220 * XTERM_SEQ: Clear line to right: ESC [ 0 K
1186 * XTERM_SEQ: Clear line to left : ESC [ 1 K 1221 * XTERM_SEQ: Clear line to left : ESC [ 1 K
1187 * XTERM_SEQ: Clear whole line : ESC [ 2 K 1222 * XTERM_SEQ: Clear whole line : ESC [ 2 K
1188 */ 1223 */
1189void 1224void
1190rxvt_term::scr_erase_line (int mode) 1225rxvt_term::scr_erase_line (int mode) NOTHROW
1191{ 1226{
1192 unsigned int col, num; 1227 unsigned int col, num;
1193 1228
1194 want_refresh = 1; 1229 want_refresh = 1;
1195 ZERO_SCROLLBACK (); 1230 ZERO_SCROLLBACK ();
1196 1231
1197 selection_check (1); 1232 selection_check (1);
1198 1233
1199 line_t &line = ROW(screen.cur.row); 1234 line_t &line = ROW(screen.cur.row);
1235
1236 line.touch ();
1237 line.is_longer (0);
1200 1238
1201 switch (mode) 1239 switch (mode)
1202 { 1240 {
1203 case 0: /* erase to end of line */ 1241 case 0: /* erase to end of line */
1204 col = screen.cur.col; 1242 col = screen.cur.col;
1236 * XTERM_SEQ: Clear screen after cursor : ESC [ 0 J 1274 * XTERM_SEQ: Clear screen after cursor : ESC [ 0 J
1237 * XTERM_SEQ: Clear screen before cursor: ESC [ 1 J 1275 * XTERM_SEQ: Clear screen before cursor: ESC [ 1 J
1238 * XTERM_SEQ: Clear whole screen : ESC [ 2 J 1276 * XTERM_SEQ: Clear whole screen : ESC [ 2 J
1239 */ 1277 */
1240void 1278void
1241rxvt_term::scr_erase_screen (int mode) 1279rxvt_term::scr_erase_screen (int mode) NOTHROW
1242{ 1280{
1243 int num; 1281 int num;
1244 int32_t row; 1282 int32_t row;
1245 rend_t ren; 1283 rend_t ren;
1246 XGCValues gcvalue; 1284 XGCValues gcvalue;
1291 } 1329 }
1292 else 1330 else
1293 { 1331 {
1294 ren = rstyle & (RS_fgMask | RS_bgMask); 1332 ren = rstyle & (RS_fgMask | RS_bgMask);
1295 gcvalue.foreground = pix_colors[bgcolor_of (rstyle)]; 1333 gcvalue.foreground = pix_colors[bgcolor_of (rstyle)];
1296 XChangeGC (display->display, gc, GCForeground, &gcvalue); 1334 XChangeGC (xdisp, gc, GCForeground, &gcvalue);
1297 ERASE_ROWS (row, num); 1335 ERASE_ROWS (row, num);
1298 gcvalue.foreground = pix_colors[Color_fg]; 1336 gcvalue.foreground = pix_colors[Color_fg];
1299 XChangeGC (display->display, gc, GCForeground, &gcvalue); 1337 XChangeGC (xdisp, gc, GCForeground, &gcvalue);
1300 } 1338 }
1301 1339
1302 for (; num--; row++) 1340 for (; num--; row++)
1303 { 1341 {
1304 ROW (row).l = 0;
1305 scr_blank_screen_mem (ROW (row), rstyle); 1342 scr_blank_screen_mem (ROW(row), rstyle);
1306 scr_blank_line (drawn_buf [row], 0, ncol, ren); 1343 scr_blank_line (drawn_buf [row], 0, ncol, ren);
1307 } 1344 }
1308} 1345}
1309 1346
1310#if ENABLE_FRILLS 1347#if ENABLE_FRILLS
1311void 1348void
1312rxvt_term::scr_erase_savelines () 1349rxvt_term::scr_erase_savelines () NOTHROW
1313{ 1350{
1314 want_refresh = 1; 1351 want_refresh = 1;
1315 ZERO_SCROLLBACK (); 1352 ZERO_SCROLLBACK ();
1316 1353
1317 nsaved = 0; 1354 top_row = 0;
1318} 1355}
1319#endif 1356#endif
1320 1357
1321/* ------------------------------------------------------------------------- */ 1358/* ------------------------------------------------------------------------- */
1322/* 1359/*
1323 * Fill the screen with `E's 1360 * Fill the screen with `E's
1324 * XTERM_SEQ: Screen Alignment Test: ESC # 8 1361 * XTERM_SEQ: Screen Alignment Test: ESC # 8
1325 */ 1362 */
1326void 1363void
1327rxvt_term::scr_E () 1364rxvt_term::scr_E () NOTHROW
1328{ 1365{
1329 rend_t fs; 1366 rend_t fs;
1330 1367
1331 want_refresh = 1; 1368 want_refresh = 1;
1332 ZERO_SCROLLBACK (); 1369 ZERO_SCROLLBACK ();
1343 rend_t *r1 = line.r; 1380 rend_t *r1 = line.r;
1344 1381
1345 for (int j = ncol; j--; ) 1382 for (int j = ncol; j--; )
1346 *r1++ = fs; 1383 *r1++ = fs;
1347 1384
1348 line.l = ncol; /* make the `E's selectable */ 1385 line.is_longer (0);
1386 line.touch (ncol);
1349 } 1387 }
1350} 1388}
1351 1389
1352/* ------------------------------------------------------------------------- */ 1390/* ------------------------------------------------------------------------- */
1353/* 1391/*
1354 * Insert/Delete <count> lines 1392 * Insert/Delete <count> lines
1355 */ 1393 */
1356void 1394void
1357rxvt_term::scr_insdel_lines (int count, int insdel) 1395rxvt_term::scr_insdel_lines (int count, int insdel) NOTHROW
1358{ 1396{
1359 int end; 1397 int end;
1360 1398
1361 ZERO_SCROLLBACK (); 1399 ZERO_SCROLLBACK ();
1362 1400
1382/* ------------------------------------------------------------------------- */ 1420/* ------------------------------------------------------------------------- */
1383/* 1421/*
1384 * Insert/Delete <count> characters from the current position 1422 * Insert/Delete <count> characters from the current position
1385 */ 1423 */
1386void 1424void
1387rxvt_term::scr_insdel_chars (int count, int insdel) 1425rxvt_term::scr_insdel_chars (int count, int insdel) NOTHROW
1388{ 1426{
1389 int col, row; 1427 int col, row;
1390 rend_t tr; 1428 rend_t tr;
1391 1429
1392 want_refresh = 1; 1430 want_refresh = 1;
1401 min_it (count, ncol - screen.cur.col); 1439 min_it (count, ncol - screen.cur.col);
1402 1440
1403 row = screen.cur.row; 1441 row = screen.cur.row;
1404 1442
1405 line_t *line = &ROW(row); 1443 line_t *line = &ROW(row);
1444
1445 line->touch ();
1446 line->is_longer (0);
1406 1447
1407 switch (insdel) 1448 switch (insdel)
1408 { 1449 {
1409 case INSERT: 1450 case INSERT:
1410 for (col = ncol - 1; (col - count) >= screen.cur.col; col--) 1451 for (col = ncol - 1; (col - count) >= screen.cur.col; col--)
1411 { 1452 {
1412 line->t[col] = line->t[col - count]; 1453 line->t[col] = line->t[col - count];
1413 line->r[col] = line->r[col - count]; 1454 line->r[col] = line->r[col - count];
1414 } 1455 }
1415 1456
1416 if (!line->is_longer ()) 1457 line->l = min (line->l + count, ncol);
1417 {
1418 line->l += count;
1419 min_it (line->l, ncol);
1420 }
1421 1458
1422 if (selection.op && current_screen == selection.screen 1459 if (selection.op && current_screen == selection.screen
1423 && ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur)) 1460 && ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur))
1424 { 1461 {
1425 if (selection.end.row != screen.cur.row 1462 if (selection.end.row != screen.cur.row
1438 1475
1439 case ERASE: 1476 case ERASE:
1440 screen.cur.col += count; /* don't worry if > ncol */ 1477 screen.cur.col += count; /* don't worry if > ncol */
1441 selection_check (1); 1478 selection_check (1);
1442 screen.cur.col -= count; 1479 screen.cur.col -= count;
1480
1481 line->l = max (line->l - count, 0);
1443 scr_blank_line (*line, screen.cur.col, count, rstyle); 1482 scr_blank_line (*line, screen.cur.col, count, rstyle);
1444 break; 1483 break;
1445 1484
1446 case DELETE: 1485 case DELETE:
1447 tr = line->r[ncol - 1] & (RS_fgMask | RS_bgMask | RS_baseattrMask); 1486 tr = line->r[ncol - 1] & (RS_fgMask | RS_bgMask | RS_baseattrMask);
1450 { 1489 {
1451 line->t[col] = line->t[col + count]; 1490 line->t[col] = line->t[col + count];
1452 line->r[col] = line->r[col + count]; 1491 line->r[col] = line->r[col + count];
1453 } 1492 }
1454 1493
1494 line->l = max (line->l - count, 0);
1455 scr_blank_line (*line, ncol - count, count, tr); 1495 scr_blank_line (*line, ncol - count, count, tr);
1456
1457 if (line->is_longer ()) /* break line continuation */
1458 line->l = ncol;
1459
1460 line->l = max (line->l - count, 0);
1461 1496
1462 if (selection.op && current_screen == selection.screen 1497 if (selection.op && current_screen == selection.screen
1463 && ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur)) 1498 && ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur))
1464 { 1499 {
1465 if (selection.end.row != screen.cur.row 1500 if (selection.end.row != screen.cur.row
1483/* 1518/*
1484 * Set the scrolling region 1519 * Set the scrolling region
1485 * XTERM_SEQ: Set region <top> - <bot> inclusive: ESC [ <top> ; <bot> r 1520 * XTERM_SEQ: Set region <top> - <bot> inclusive: ESC [ <top> ; <bot> r
1486 */ 1521 */
1487void 1522void
1488rxvt_term::scr_scroll_region (int top, int bot) 1523rxvt_term::scr_scroll_region (int top, int bot) NOTHROW
1489{ 1524{
1490 max_it (top, 0); 1525 max_it (top, 0);
1491 min_it (bot, nrow - 1); 1526 min_it (bot, nrow - 1);
1492 1527
1493 if (top > bot) 1528 if (top > bot)
1503 * Make the cursor visible/invisible 1538 * Make the cursor visible/invisible
1504 * XTERM_SEQ: Make cursor visible : ESC [ ? 25 h 1539 * XTERM_SEQ: Make cursor visible : ESC [ ? 25 h
1505 * XTERM_SEQ: Make cursor invisible: ESC [ ? 25 l 1540 * XTERM_SEQ: Make cursor invisible: ESC [ ? 25 l
1506 */ 1541 */
1507void 1542void
1508rxvt_term::scr_cursor_visible (int mode) 1543rxvt_term::scr_cursor_visible (int mode) NOTHROW
1509{ 1544{
1510 want_refresh = 1; 1545 want_refresh = 1;
1511 1546
1512 if (mode) 1547 if (mode)
1513 screen.flags |= Screen_VisibleCursor; 1548 screen.flags |= Screen_VisibleCursor;
1520 * Set/unset automatic wrapping 1555 * Set/unset automatic wrapping
1521 * XTERM_SEQ: Set Wraparound : ESC [ ? 7 h 1556 * XTERM_SEQ: Set Wraparound : ESC [ ? 7 h
1522 * XTERM_SEQ: Unset Wraparound: ESC [ ? 7 l 1557 * XTERM_SEQ: Unset Wraparound: ESC [ ? 7 l
1523 */ 1558 */
1524void 1559void
1525rxvt_term::scr_autowrap (int mode) 1560rxvt_term::scr_autowrap (int mode) NOTHROW
1526{ 1561{
1527 if (mode) 1562 if (mode)
1528 screen.flags |= Screen_Autowrap; 1563 screen.flags |= Screen_Autowrap;
1529 else 1564 else
1530 screen.flags &= ~(Screen_Autowrap | Screen_WrapNext); 1565 screen.flags &= ~(Screen_Autowrap | Screen_WrapNext);
1539 * and the cursor cannot be moved outside. 1574 * and the cursor cannot be moved outside.
1540 * XTERM_SEQ: Set Absolute: ESC [ ? 6 h 1575 * XTERM_SEQ: Set Absolute: ESC [ ? 6 h
1541 * XTERM_SEQ: Set Relative: ESC [ ? 6 l 1576 * XTERM_SEQ: Set Relative: ESC [ ? 6 l
1542 */ 1577 */
1543void 1578void
1544rxvt_term::scr_relative_origin (int mode) 1579rxvt_term::scr_relative_origin (int mode) NOTHROW
1545{ 1580{
1546 if (mode) 1581 if (mode)
1547 screen.flags |= Screen_Relative; 1582 screen.flags |= Screen_Relative;
1548 else 1583 else
1549 screen.flags &= ~Screen_Relative; 1584 screen.flags &= ~Screen_Relative;
1556 * Set insert/replace mode 1591 * Set insert/replace mode
1557 * XTERM_SEQ: Set Insert mode : ESC [ ? 4 h 1592 * XTERM_SEQ: Set Insert mode : ESC [ ? 4 h
1558 * XTERM_SEQ: Set Replace mode: ESC [ ? 4 l 1593 * XTERM_SEQ: Set Replace mode: ESC [ ? 4 l
1559 */ 1594 */
1560void 1595void
1561rxvt_term::scr_insert_mode (int mode) 1596rxvt_term::scr_insert_mode (int mode) NOTHROW
1562{ 1597{
1563 if (mode) 1598 if (mode)
1564 screen.flags |= Screen_Insert; 1599 screen.flags |= Screen_Insert;
1565 else 1600 else
1566 screen.flags &= ~Screen_Insert; 1601 screen.flags &= ~Screen_Insert;
1572 * XTERM_SEQ: Set tab at current column : ESC H 1607 * XTERM_SEQ: Set tab at current column : ESC H
1573 * XTERM_SEQ: Clear tab at current column: ESC [ 0 g 1608 * XTERM_SEQ: Clear tab at current column: ESC [ 0 g
1574 * XTERM_SEQ: Clear all tabs : ESC [ 3 g 1609 * XTERM_SEQ: Clear all tabs : ESC [ 3 g
1575 */ 1610 */
1576void 1611void
1577rxvt_term::scr_set_tab (int mode) 1612rxvt_term::scr_set_tab (int mode) NOTHROW
1578{ 1613{
1579 if (mode < 0) 1614 if (mode < 0)
1580 memset (tabs, 0, ncol * sizeof (char)); 1615 memset (tabs, 0, ncol * sizeof (char));
1581 else if (screen.cur.col < ncol) 1616 else if (screen.cur.col < ncol)
1582 tabs[screen.cur.col] = (mode ? 1 : 0); 1617 tabs [screen.cur.col] = !!mode;
1583} 1618}
1584 1619
1585/* ------------------------------------------------------------------------- */ 1620/* ------------------------------------------------------------------------- */
1586/* 1621/*
1587 * Set reverse/normal video 1622 * Set reverse/normal video
1588 * XTERM_SEQ: Reverse video: ESC [ ? 5 h 1623 * XTERM_SEQ: Reverse video: ESC [ ? 5 h
1589 * XTERM_SEQ: Normal video : ESC [ ? 5 l 1624 * XTERM_SEQ: Normal video : ESC [ ? 5 l
1590 */ 1625 */
1591void 1626void
1592rxvt_term::scr_rvideo_mode (int mode) 1627rxvt_term::scr_rvideo_mode (bool on) NOTHROW
1593{ 1628{
1594 XGCValues gcvalue; 1629 rvideo_mode = on;
1595 1630
1631#ifndef NO_BELL
1632 on ^= rvideo_bell;
1633#endif
1634
1596 if (rvideo != mode) 1635 if (rvideo_state != on)
1597 { 1636 {
1598 rvideo = mode; 1637 rvideo_state = on;
1638
1599 ::swap (pix_colors[Color_fg], pix_colors[Color_bg]); 1639 ::swap (pix_colors[Color_fg], pix_colors[Color_bg]);
1600#if XPM_BACKGROUND 1640#if XPM_BACKGROUND
1601 if (bgPixmap.pixmap == None) 1641 if (bgPixmap.pixmap == None)
1602#endif 1642#endif
1603#if TRANSPARENT 1643#if TRANSPARENT
1604 if (! OPTION (Opt_transparent) || am_transparent == 0) 1644 if (!OPTION (Opt_transparent) || am_transparent == 0)
1605#endif 1645#endif
1606 XSetWindowBackground (display->display, vt, 1646 XSetWindowBackground (xdisp, vt, pix_colors[Color_bg]);
1607 pix_colors[Color_bg]);
1608 1647
1648 XGCValues gcvalue;
1609 gcvalue.foreground = pix_colors[Color_fg]; 1649 gcvalue.foreground = pix_colors[Color_fg];
1610 gcvalue.background = pix_colors[Color_bg]; 1650 gcvalue.background = pix_colors[Color_bg];
1611 XChangeGC (display->display, gc, GCBackground | GCForeground, 1651 XChangeGC (xdisp, gc, GCBackground | GCForeground, &gcvalue);
1612 &gcvalue); 1652
1613 scr_clear (); 1653 scr_clear ();
1614 scr_touch (true); 1654 scr_touch (true);
1615 } 1655 }
1616} 1656}
1617 1657
1619/* 1659/*
1620 * Report current cursor position 1660 * Report current cursor position
1621 * XTERM_SEQ: Report position: ESC [ 6 n 1661 * XTERM_SEQ: Report position: ESC [ 6 n
1622 */ 1662 */
1623void 1663void
1624rxvt_term::scr_report_position () 1664rxvt_term::scr_report_position () NOTHROW
1625{ 1665{
1626 tt_printf ("\033[%d;%dR", screen.cur.row + 1, screen.cur.col + 1); 1666 tt_printf ("\033[%d;%dR", screen.cur.row + 1, screen.cur.col + 1);
1627} 1667}
1628 1668
1629/* ------------------------------------------------------------------------- * 1669/* ------------------------------------------------------------------------- *
1632 1672
1633/* 1673/*
1634 * Set font style 1674 * Set font style
1635 */ 1675 */
1636void 1676void
1637rxvt_term::set_font_style () 1677rxvt_term::set_font_style () NOTHROW
1638{ 1678{
1679#if 0
1639 switch (charsets[screen.charset]) 1680 switch (charsets [screen.charset])
1640 { 1681 {
1641 case '0': /* DEC Special Character & Line Drawing Set */ 1682 case '0': /* DEC Special Character & Line Drawing Set */
1642 break; 1683 break;
1643 case 'A': /* United Kingdom (UK) */ 1684 case 'A': /* United Kingdom (UK) */
1644 break; 1685 break;
1651 case 'C': /* Finnish character set */ 1692 case 'C': /* Finnish character set */
1652 break; 1693 break;
1653 case 'K': /* German character set */ 1694 case 'K': /* German character set */
1654 break; 1695 break;
1655 } 1696 }
1697#endif
1656} 1698}
1657 1699
1658/* ------------------------------------------------------------------------- */ 1700/* ------------------------------------------------------------------------- */
1659/* 1701/*
1660 * Choose a font 1702 * Choose a font
1662 * XTERM_SEQ: Invoke G1 character set: CTRL-N 1704 * XTERM_SEQ: Invoke G1 character set: CTRL-N
1663 * XTERM_SEQ: Invoke G2 character set: ESC N 1705 * XTERM_SEQ: Invoke G2 character set: ESC N
1664 * XTERM_SEQ: Invoke G3 character set: ESC O 1706 * XTERM_SEQ: Invoke G3 character set: ESC O
1665 */ 1707 */
1666void 1708void
1667rxvt_term::scr_charset_choose (int set) 1709rxvt_term::scr_charset_choose (int set) NOTHROW
1668{ 1710{
1669 screen.charset = set; 1711 screen.charset = set;
1670 set_font_style (); 1712 set_font_style ();
1671} 1713}
1672 1714
1678 * XTERM_SEQ: Set G2 character set: ESC * <C> 1720 * XTERM_SEQ: Set G2 character set: ESC * <C>
1679 * XTERM_SEQ: Set G3 character set: ESC + <C> 1721 * XTERM_SEQ: Set G3 character set: ESC + <C>
1680 * See set_font_style for possible values for <C> 1722 * See set_font_style for possible values for <C>
1681 */ 1723 */
1682void 1724void
1683rxvt_term::scr_charset_set (int set, unsigned int ch) 1725rxvt_term::scr_charset_set (int set, unsigned int ch) NOTHROW
1684{ 1726{
1685 charsets[set] = (unsigned char)ch; 1727 charsets[set] = (unsigned char)ch;
1686 set_font_style (); 1728 set_font_style ();
1687} 1729}
1688 1730
1693 1735
1694/* 1736/*
1695 * refresh matching text. 1737 * refresh matching text.
1696 */ 1738 */
1697bool 1739bool
1698rxvt_term::scr_refresh_rend (rend_t mask, rend_t value) 1740rxvt_term::scr_refresh_rend (rend_t mask, rend_t value) NOTHROW
1699{ 1741{
1700 bool found = false; 1742 bool found = false;
1701 1743
1702 for (int i = 0; i < nrow; i++) 1744 for (int i = 0; i < nrow; i++)
1703 { 1745 {
1723 PART_END, 1765 PART_END,
1724 RC_COUNT 1766 RC_COUNT
1725}; 1767};
1726 1768
1727void 1769void
1728rxvt_term::scr_expose (int x, int y, int ewidth, int eheight, bool refresh) 1770rxvt_term::scr_expose (int x, int y, int ewidth, int eheight, bool refresh) NOTHROW
1729{ 1771{
1730 int i; 1772 int i;
1731 row_col_t rc[RC_COUNT]; 1773 row_col_t rc[RC_COUNT];
1732 1774
1733 if (!drawn_buf) /* sanity check */ 1775 if (!drawn_buf) /* sanity check */
1756 } 1798 }
1757 1799
1758 for (i = rc[PART_BEG].row; i <= rc[PART_END].row; i++) 1800 for (i = rc[PART_BEG].row; i <= rc[PART_END].row; i++)
1759 fill_text (&drawn_buf[i].t[rc[PART_BEG].col], 0, rc[PART_END].col - rc[PART_BEG].col + 1); 1801 fill_text (&drawn_buf[i].t[rc[PART_BEG].col], 0, rc[PART_END].col - rc[PART_BEG].col + 1);
1760 1802
1803 num_scr_allow = 0;
1804
1761 if (refresh) 1805 if (refresh)
1762 scr_refresh (SLOW_REFRESH); 1806 scr_refresh ();
1763} 1807}
1764 1808
1765/* ------------------------------------------------------------------------- */ 1809/* ------------------------------------------------------------------------- */
1766/* 1810/*
1767 * Refresh the entire screen 1811 * Refresh the entire screen
1768 */ 1812 */
1769void 1813void
1770rxvt_term::scr_touch (bool refresh) 1814rxvt_term::scr_touch (bool refresh) NOTHROW
1771{ 1815{
1772 scr_expose (0, 0, width, height, refresh); 1816 scr_expose (0, 0, width, height, refresh);
1773} 1817}
1774 1818
1775/* ------------------------------------------------------------------------- */ 1819/* ------------------------------------------------------------------------- */
1776/* 1820/*
1777 * Move the display so that the line represented by scrollbar value Y is at 1821 * Move the display so that the line represented by scrollbar value Y is at
1778 * the top of the screen 1822 * the top of the screen
1779 */ 1823 */
1780int 1824void
1781rxvt_term::scr_move_to (int y, int len) 1825rxvt_term::scr_move_to (int y, int len) NOTHROW
1782{ 1826{
1783 long p = 0; 1827 scr_changeview ((top_row - nrow) * (len - y) / len + (nrow - 1));
1784 unsigned int oldviewstart;
1785
1786 oldviewstart = view_start;
1787
1788 if (y < len)
1789 {
1790 p = (nrow + nsaved) * (len - y) / len;
1791 p -= (long) (nrow - 1);
1792 p = max (p, 0);
1793 }
1794
1795 view_start = (unsigned int)min (p, nsaved);
1796
1797 return scr_changeview (oldviewstart);
1798} 1828}
1799 1829
1800/* ------------------------------------------------------------------------- */ 1830/* ------------------------------------------------------------------------- */
1801/* 1831/*
1802 * Page the screen up/down nlines 1832 * Page the screen up/down nlines
1803 * direction should be UP or DN 1833 * direction should be UP or DN
1804 */ 1834 */
1805int 1835bool
1806rxvt_term::scr_page (enum page_dirn direction, int nlines) 1836rxvt_term::scr_page (enum page_dirn direction, int nlines) NOTHROW
1807{ 1837{
1808 int n; 1838 int new_view_start =
1809 unsigned int oldviewstart;
1810
1811 oldviewstart = view_start;
1812
1813 if (direction == UP)
1814 {
1815 n = view_start + nlines;
1816 view_start = min (n, nsaved);
1817 }
1818 else
1819 {
1820 n = view_start - nlines; 1839 direction == UP ? view_start - nlines
1821 view_start = max (n, 0); 1840 : view_start + nlines;
1822 }
1823 1841
1824 return scr_changeview (oldviewstart); 1842 return scr_changeview (new_view_start);
1825} 1843}
1826 1844
1827int 1845bool
1828rxvt_term::scr_changeview (unsigned int oldviewstart) 1846rxvt_term::scr_changeview (int new_view_start) NOTHROW
1829{ 1847{
1848 clamp_it (new_view_start, top_row, 0);
1849
1850 if (new_view_start == view_start)
1851 return false;
1852
1853 num_scr += new_view_start - view_start;
1854 view_start = new_view_start;
1855 want_refresh = 1;
1856
1830 PERL_INVOKE ((this, HOOK_VIEW_CHANGE, DT_INT, view_start, DT_END)); 1857 HOOK_INVOKE ((this, HOOK_VIEW_CHANGE, DT_INT, view_start, DT_END));
1831 1858
1832 if (view_start != oldviewstart) 1859 return true;
1833 {
1834 want_refresh = 1;
1835 num_scr -= (view_start - oldviewstart);
1836 }
1837
1838 return (int) (view_start - oldviewstart);
1839} 1860}
1840 1861
1841/* ------------------------------------------------------------------------- */ 1862#ifndef NO_BELL
1842void 1863void
1864rxvt_term::bell_cb (time_watcher &w)
1865{
1866 rvideo_bell = false;
1867 scr_rvideo_mode (rvideo_mode);
1868}
1869#endif
1870
1871/* ------------------------------------------------------------------------- */
1872void
1843rxvt_term::scr_bell () 1873rxvt_term::scr_bell () NOTHROW
1844{ 1874{
1845#ifndef NO_BELL 1875#ifndef NO_BELL
1846 1876
1847# ifndef NO_MAPALERT 1877# ifndef NO_MAPALERT
1848# ifdef MAPALERT_OPTION 1878# ifdef MAPALERT_OPTION
1849 if (OPTION (Opt_mapAlert)) 1879 if (OPTION (Opt_mapAlert))
1850# endif 1880# endif
1851 XMapWindow (display->display, parent[0]); 1881 XMapWindow (xdisp, parent[0]);
1852# endif 1882# endif
1853 1883
1854 if (OPTION (Opt_visualBell)) 1884 if (OPTION (Opt_visualBell))
1855 { 1885 {
1856 scr_rvideo_mode (!rvideo); /* refresh also done */ 1886 rvideo_bell = true;
1857 rxvt_usleep (VISUAL_BELL_DURATION); 1887 scr_rvideo_mode (rvideo_mode);
1858 scr_rvideo_mode (!rvideo); /* refresh also done */ 1888 display->flush ();
1889
1890 bell_ev.start (NOW + VISUAL_BELL_DURATION);
1859 } 1891 }
1860 else 1892 else
1861 XBell (display->display, 0); 1893 XBell (xdisp, 0);
1862 1894
1863#endif 1895#endif
1864} 1896}
1865 1897
1866/* ------------------------------------------------------------------------- */ 1898/* ------------------------------------------------------------------------- */
1867/* ARGSUSED */ 1899/* ARGSUSED */
1868void 1900void
1869rxvt_term::scr_printscreen (int fullhist) 1901rxvt_term::scr_printscreen (int fullhist) NOTHROW
1870{ 1902{
1871#ifdef PRINTPIPE 1903#ifdef PRINTPIPE
1872 int nrows, row_start; 1904 int nrows, row_start;
1873 FILE *fd; 1905 FILE *fd;
1874 1906
1875 if ((fd = popen_printer ()) == NULL) 1907 if ((fd = popen_printer ()) == NULL)
1876 return; 1908 return;
1877 1909
1878 if (fullhist) 1910 if (fullhist)
1879 { 1911 {
1880 nrows = nrow + nsaved; 1912 nrows = nrow - top_row;
1881 row_start = -nsaved; 1913 row_start = top_row;
1882 } 1914 }
1883 else 1915 else
1884 { 1916 {
1885 nrows = nrow; 1917 nrows = nrow;
1886 row_start = -view_start; 1918 row_start = view_start;
1887 } 1919 }
1888 1920
1889 wctomb (0, 0); 1921 wctomb (0, 0);
1890 1922
1891 for (int r1 = 0; r1 < nrows; r1++) 1923 for (int r1 = 0; r1 < nrows; r1++)
1923 * Refresh the screen 1955 * Refresh the screen
1924 * drawn_text/drawn_rend contain the screen information before the update. 1956 * drawn_text/drawn_rend contain the screen information before the update.
1925 * screen.text/screen.rend contain what the screen will change to. 1957 * screen.text/screen.rend contain what the screen will change to.
1926 */ 1958 */
1927void 1959void
1928rxvt_term::scr_refresh (unsigned char refresh_type) 1960rxvt_term::scr_refresh () NOTHROW
1929{ 1961{
1930 unsigned char must_clear, /* use draw_string not draw_image_string */ 1962 unsigned char must_clear, /* use draw_string not draw_image_string */
1931 showcursor; /* show the cursor */ 1963 showcursor; /* show the cursor */
1932 int16_t col, row, /* column/row we're processing */ 1964 int16_t col, row, /* column/row we're processing */
1933 ocrow; /* old cursor row */ 1965 ocrow; /* old cursor row */
2019 2051
2020 /* make sure no outline cursor is left around */ 2052 /* make sure no outline cursor is left around */
2021 setoldcursor = 0; 2053 setoldcursor = 0;
2022 if (ocrow != -1) 2054 if (ocrow != -1)
2023 { 2055 {
2024 if (screen.cur.row + view_start != ocrow 2056 if (screen.cur.row - view_start != ocrow
2025 || screen.cur.col != oldcursor.col) 2057 || screen.cur.col != oldcursor.col)
2026 { 2058 {
2027 if (ocrow < nrow 2059 if (ocrow < nrow
2028 && oldcursor.col < ncol) 2060 && oldcursor.col < ncol)
2029 drawn_buf[ocrow].r[oldcursor.col] ^= (RS_RVid | RS_Uline); 2061 drawn_buf[ocrow].r[oldcursor.col] ^= (RS_RVid | RS_Uline);
2037 else if (!focus) 2069 else if (!focus)
2038 setoldcursor = 1; 2070 setoldcursor = 1;
2039 2071
2040 if (setoldcursor) 2072 if (setoldcursor)
2041 { 2073 {
2042 if (screen.cur.row + view_start >= nrow) 2074 if (screen.cur.row - view_start >= nrow)
2043 oldcursor.row = -1; 2075 oldcursor.row = -1;
2044 else 2076 else
2045 { 2077 {
2046 oldcursor.row = screen.cur.row + view_start; 2078 oldcursor.row = screen.cur.row - view_start;
2047 oldcursor.col = screen.cur.col; 2079 oldcursor.col = screen.cur.col;
2048 } 2080 }
2049 } 2081 }
2050 } 2082 }
2051 2083
2052 PERL_INVOKE ((this, HOOK_REFRESH_BEGIN, DT_END)); 2084 HOOK_INVOKE ((this, HOOK_REFRESH_BEGIN, DT_END));
2053#if ENABLE_OVERLAY 2085#if ENABLE_OVERLAY
2054 scr_swap_overlay (); 2086 scr_swap_overlay ();
2055#endif 2087#endif
2056 2088
2057#ifndef NO_SLOW_LINK_SUPPORT 2089#ifndef NO_SLOW_LINK_SUPPORT
2058 /* 2090 /*
2059 * D: CopyArea pass - very useful for slower links 2091 * D: CopyArea pass - very useful for slower links
2060 * This has been deliberately kept simple. 2092 * This has been deliberately kept simple.
2061 */ 2093 */
2062 i = num_scr;
2063 if (!display->is_local 2094 if (!display->is_local
2064 && refresh_type == FAST_REFRESH && num_scr_allow && num_scr 2095 && refresh_type == FAST_REFRESH && num_scr_allow && num_scr
2065 && abs (num_scr) < nrow && !must_clear) 2096 && abs (num_scr) < nrow && !must_clear)
2066 { 2097 {
2067 int16_t nits; 2098 int16_t nits;
2068 int j; 2099 int j;
2069 int len, wlen; 2100 int len, wlen;
2101 dLocal (int, num_scr);
2070 2102
2071 j = nrow; 2103 j = nrow;
2072 wlen = len = -1; 2104 wlen = len = -1;
2073 row = i > 0 ? 0 : j - 1; 2105 row = i > 0 ? 0 : j - 1;
2074 for (; j-- >= 0; row += (i > 0 ? 1 : -1)) 2106 for (; j-- >= 0; row += (i > 0 ? 1 : -1))
2075 { 2107 {
2076 if (row + i >= 0 && row + i < nrow && row + i != ocrow) 2108 if (row + i >= 0 && row + i < nrow && row + i != ocrow)
2077 { 2109 {
2078 line_t s = ROW(row - view_start); 2110 line_t s = ROW(view_start + row);
2079 line_t d = drawn_buf[row]; 2111 line_t d = drawn_buf[row];
2080 line_t d2 = drawn_buf[row + i]; 2112 line_t d2 = drawn_buf[row + i];
2081 2113
2082 for (nits = 0, col = ncol; col--; ) 2114 for (nits = 0, col = ncol; col--; )
2083 if (s.t[col] != d2.t[col] || s.r[col] != d2.r[col]) 2115 if (s.t[col] != d2.t[col] || s.r[col] != d2.r[col])
2105 { 2137 {
2106 /* also comes here at end if needed because of >= above */ 2138 /* also comes here at end if needed because of >= above */
2107 if (wlen < len) 2139 if (wlen < len)
2108 ::swap (wlen, len); 2140 ::swap (wlen, len);
2109 2141
2110 XCopyArea (display->display, vt, vt, 2142 XCopyArea (xdisp, vt, vt,
2111 gc, 0, Row2Pixel (len + i), 2143 gc, 0, Row2Pixel (len + i),
2112 (unsigned int)TermWin_TotalWidth (), 2144 (unsigned int)this->width,
2113 (unsigned int)Height2Pixel (wlen - len + 1), 2145 (unsigned int)Height2Pixel (wlen - len + 1),
2114 0, Row2Pixel (len)); 2146 0, Row2Pixel (len));
2115 len = -1; 2147 len = -1;
2116 } 2148 }
2117 } 2149 }
2121 /* 2153 /*
2122 * E: main pass across every character 2154 * E: main pass across every character
2123 */ 2155 */
2124 for (row = 0; row < nrow; row++) 2156 for (row = 0; row < nrow; row++)
2125 { 2157 {
2126 text_t *stp = ROW(row - view_start).t; 2158 text_t *stp = ROW(view_start + row).t;
2127 rend_t *srp = ROW(row - view_start).r; 2159 rend_t *srp = ROW(view_start + row).r;
2128 text_t *dtp = drawn_buf[row].t; 2160 text_t *dtp = drawn_buf[row].t;
2129 rend_t *drp = drawn_buf[row].r; 2161 rend_t *drp = drawn_buf[row].r;
2130 2162
2131 /* 2163 /*
2132 * E2: OK, now the real pass 2164 * E2: OK, now the real pass
2203 2235
2204 // only do special processing if any attributes are set, which is unlikely 2236 // only do special processing if any attributes are set, which is unlikely
2205 if (rend & (RS_Bold | RS_Italic | RS_Uline | RS_RVid | RS_Blink | RS_Careful)) 2237 if (rend & (RS_Bold | RS_Italic | RS_Uline | RS_RVid | RS_Blink | RS_Careful))
2206 { 2238 {
2207#if ENABLE_STYLES 2239#if ENABLE_STYLES
2208 // force redraw after "careful" characters to avoid pixel droppings 2240 // "careful" (too wide) character handling
2209 if (srp[col] & RS_Careful && col < ncol - 1 && 0)
2210 drp[col + 1] = ~srp[col + 1];
2211 2241
2212 // include previous careful character(s) if possible, looks nicer (best effort...) 2242 // include previous careful character(s) if possible, looks nicer (best effort...)
2213 while (text > stp 2243 while (text > stp
2214 && srp[text - stp - 1] & RS_Careful 2244 && srp[text - stp - 1] & RS_Careful
2215 && RS_SAME (rend, srp[text - stp - 1])) 2245 && RS_SAME (rend, srp[text - stp - 1]))
2216 text--, count++, xpixel -= fwidth; 2246 text--, count++, xpixel -= fwidth;
2247
2248 // force redraw after "careful" characters to avoid pixel droppings
2249 for (int i = 0; srp[col + i] & RS_Careful && col + i < ncol - 1; i++)
2250 drp[col + i + 1] = ~srp[col + i + 1];
2251
2252 // force redraw before "careful" characters to avoid pixel droppings
2253 for (int i = 0; srp[text - stp - i] & RS_Careful && text - i > stp; i++)
2254 drp[text - stp - i - 1] = ~srp[text - stp - i - 1];
2217#endif 2255#endif
2218 2256
2219 bool invert = rend & RS_RVid; 2257 bool invert = rend & RS_RVid;
2220 2258
2221#ifndef NO_BOLD_UNDERLINE_REVERSE 2259#ifndef NO_BOLD_UNDERLINE_REVERSE
2305 2343
2306 if (rend & RS_Uline && font->descent > 1 && fore != back) 2344 if (rend & RS_Uline && font->descent > 1 && fore != back)
2307 { 2345 {
2308#if ENABLE_FRILLS 2346#if ENABLE_FRILLS
2309 if (ISSET_PIXCOLOR (Color_underline)) 2347 if (ISSET_PIXCOLOR (Color_underline))
2310 XSetForeground (display->display, gc, pix_colors[Color_underline]); 2348 XSetForeground (xdisp, gc, pix_colors[Color_underline]);
2311 else 2349 else
2312#endif 2350#endif
2313 XSetForeground (display->display, gc, pix_colors[fore]); 2351 XSetForeground (xdisp, gc, pix_colors[fore]);
2314 2352
2315 XDrawLine (display->display, drawBuffer, gc, 2353 XDrawLine (xdisp, drawBuffer, gc,
2316 xpixel, ypixel + font->ascent + 1, 2354 xpixel, ypixel + font->ascent + 1,
2317 xpixel + Width2Pixel (count) - 1, ypixel + font->ascent + 1); 2355 xpixel + Width2Pixel (count) - 1, ypixel + font->ascent + 1);
2318 } 2356 }
2319 } /* for (col....) */ 2357 } /* for (col....) */
2320 } /* for (row....) */ 2358 } /* for (row....) */
2321 2359
2322#if ENABLE_OVERLAY 2360#if ENABLE_OVERLAY
2323 scr_swap_overlay (); 2361 scr_swap_overlay ();
2324#endif 2362#endif
2325 PERL_INVOKE ((this, HOOK_REFRESH_END, DT_END)); 2363 HOOK_INVOKE ((this, HOOK_REFRESH_END, DT_END));
2326 2364
2327 /* 2365 /*
2328 * G: cleanup cursor and display outline cursor if necessary 2366 * G: cleanup cursor and display outline cursor if necessary
2329 */ 2367 */
2330 if (showcursor) 2368 if (showcursor)
2353 && drawn_buf[oldcursor.row].t[col + cursorwidth] == NOCHAR) 2391 && drawn_buf[oldcursor.row].t[col + cursorwidth] == NOCHAR)
2354 cursorwidth++; 2392 cursorwidth++;
2355 2393
2356#ifndef NO_CURSORCOLOR 2394#ifndef NO_CURSORCOLOR
2357 if (ISSET_PIXCOLOR (Color_cursor)) 2395 if (ISSET_PIXCOLOR (Color_cursor))
2358 XSetForeground (display->display, gc, pix_colors[Color_cursor]); 2396 XSetForeground (xdisp, gc, pix_colors[Color_cursor]);
2359#endif 2397#endif
2360 2398
2361 XDrawRectangle (display->display, drawBuffer, gc, 2399 XDrawRectangle (xdisp, drawBuffer, gc,
2362 Col2Pixel (col), 2400 Col2Pixel (col),
2363 Row2Pixel (oldcursor.row), 2401 Row2Pixel (oldcursor.row),
2364 (unsigned int) (Width2Pixel (cursorwidth) - 1), 2402 (unsigned int) (Width2Pixel (cursorwidth) - 1),
2365 (unsigned int) (Height2Pixel (1) - lineSpace - 1)); 2403 (unsigned int) (Height2Pixel (1) - lineSpace - 1));
2366 } 2404 }
2369 /* 2407 /*
2370 * H: cleanup selection 2408 * H: cleanup selection
2371 */ 2409 */
2372 scr_reverse_selection (); 2410 scr_reverse_selection ();
2373 2411
2374 if (refresh_type & SMOOTH_REFRESH)
2375 XFlush (display->display);
2376
2377 num_scr = 0; 2412 num_scr = 0;
2378 num_scr_allow = 1; 2413 num_scr_allow = 1;
2379} 2414}
2380 2415
2381void 2416void
2382rxvt_term::scr_remap_chars (const line_t &l) 2417rxvt_term::scr_remap_chars (line_t &l) NOTHROW
2383{ 2418{
2384 if (!l.t) 2419 if (!l.t)
2385 return; 2420 return;
2386 2421
2422 l.touch (); // maybe a bit of an overkill, but it's not performance-relevant
2423
2387 for (int i = ncol; i--; ) 2424 for (int i = ncol; i--; )
2388 l.r[i] = SET_FONT (l.r[i], FONTSET (l.r[i])->find_font (l.t[i])); 2425 l.r[i] = SET_FONT (l.r[i], FONTSET (l.r[i])->find_font (l.t[i]));
2389} 2426}
2390 2427
2391void 2428void
2392rxvt_term::scr_remap_chars () 2429rxvt_term::scr_remap_chars () NOTHROW
2393{ 2430{
2394 for (int i = total_rows; i--; ) 2431 for (int i = total_rows; i--; )
2395 scr_remap_chars (row_buf [i]); 2432 scr_remap_chars (row_buf [i]);
2396 2433
2397 for (int i = nrow; i--; ) 2434 for (int i = nrow; i--; )
2400 scr_remap_chars (swap_buf [i]); 2437 scr_remap_chars (swap_buf [i]);
2401 } 2438 }
2402} 2439}
2403 2440
2404void 2441void
2405rxvt_term::scr_recolour () 2442rxvt_term::scr_recolour () NOTHROW
2406{ 2443{
2407 if (1 2444 if (1
2408#if TRANSPARENT 2445#if TRANSPARENT
2409 && !am_transparent 2446 && !am_transparent
2410#endif 2447#endif
2411#if XPM_BACKGROUND 2448#if XPM_BACKGROUND
2412 && !bgPixmap.pixmap 2449 && !bgPixmap.pixmap
2413#endif 2450#endif
2414 ) 2451 )
2415 { 2452 {
2416 XSetWindowBackground (display->display, parent[0], pix_colors[Color_border]); 2453 XSetWindowBackground (xdisp, parent[0], pix_colors[Color_border]);
2417 XClearWindow (display->display, parent[0]); 2454 XClearWindow (xdisp, parent[0]);
2418 XSetWindowBackground (display->display, vt, pix_colors[Color_bg]); 2455 XSetWindowBackground (xdisp, vt, pix_colors[Color_bg]);
2419#if HAVE_SCROLLBARS 2456#if HAVE_SCROLLBARS
2420 if (scrollBar.win) 2457 if (scrollBar.win)
2421 { 2458 {
2422 XSetWindowBackground (display->display, scrollBar.win, pix_colors[Color_border]); 2459 XSetWindowBackground (xdisp, scrollBar.win, pix_colors[Color_border]);
2423 scrollBar.setIdle (); 2460 scrollBar.setIdle ();
2424 scrollbar_show (0); 2461 scrollbar_show (0);
2425 } 2462 }
2426#endif 2463#endif
2427 } 2464 }
2431 want_refresh = 1; 2468 want_refresh = 1;
2432} 2469}
2433 2470
2434/* ------------------------------------------------------------------------- */ 2471/* ------------------------------------------------------------------------- */
2435void 2472void
2436rxvt_term::scr_clear (bool really) 2473rxvt_term::scr_clear (bool really) NOTHROW
2437{ 2474{
2438 if (!mapped) 2475 if (!mapped)
2439 return; 2476 return;
2440 2477
2441 num_scr_allow = 0; 2478 num_scr_allow = 0;
2442 want_refresh = 1; 2479 want_refresh = 1;
2443 2480
2444 if (really) 2481 if (really)
2445 XClearWindow (display->display, vt); 2482 XClearWindow (xdisp, vt);
2446} 2483}
2447 2484
2448/* ------------------------------------------------------------------------- */
2449void 2485void
2486rxvt_term::scr_xor_rect (int beg_row, int beg_col, int end_row, int end_col, rend_t rstyle1, rend_t rstyle2) NOTHROW
2487{
2488 int view_end = view_start + nrow;
2489 int row, col;
2490
2491 for (row = max (beg_row, view_start); row <= min (end_row, view_end); row++)
2492 {
2493 text_t *stp = ROW(row).t;
2494 rend_t *srp = ROW(row).r;
2495
2496 for (col = beg_col; col < end_col; col++)
2497 srp[col] ^= rstyle1;
2498
2499 while (col-- > beg_col && (stp[col] == NOCHAR || unicode::is_space (stp[col])))
2500 srp[col] ^= rstyle2;
2501
2502 if (++col < end_col)
2503 srp[col] ^= rstyle2;
2504 }
2505}
2506
2507void
2508rxvt_term::scr_xor_span (int beg_row, int beg_col, int end_row, int end_col, rend_t rstyle) NOTHROW
2509{
2510 int view_end = view_start + nrow;
2511 int row, col;
2512
2513 if (beg_row >= view_start)
2514 {
2515 col = beg_col;
2516 row = beg_row;
2517 }
2518 else
2519 {
2520 col = 0;
2521 row = view_start;
2522 }
2523
2524 for (; row < min (end_row, view_end); row++, col = 0)
2525 for (rend_t *srp = ROW(row).r; col < ncol; col++)
2526 srp[col] ^= rstyle;
2527
2528 if (row == end_row)
2529 for (rend_t *srp = ROW(row).r; col < end_col; col++)
2530 srp[col] ^= rstyle;
2531}
2532
2533/* ------------------------------------------------------------------------- */
2534void
2450rxvt_term::scr_reverse_selection () 2535rxvt_term::scr_reverse_selection () NOTHROW
2451{ 2536{
2452 if (selection.op 2537 if (selection.op
2453 && current_screen == selection.screen 2538 && current_screen == selection.screen
2454 && selection.end.row >= -view_start) 2539 && selection.end.row >= view_start)
2455 { 2540 {
2456 int view_end = -view_start + nrow;
2457 int row, col;
2458
2459#if ENABLE_FRILLS 2541#if ENABLE_FRILLS
2460 if (selection.rect) 2542 if (selection.rect)
2461 { 2543 scr_xor_rect (selection.beg.row, selection.beg.col,
2462 for (row = max (selection.beg.row, -view_start); row <= min (selection.end.row, view_end); row++) 2544 selection.end.row, selection.end.col,
2463 { 2545 RS_RVid, RS_RVid | RS_Uline);
2464 text_t *stp = ROW(row).t;
2465 rend_t *srp = ROW(row).r;
2466
2467 for (col = selection.beg.col; col < selection.end.col; col++)
2468 srp[col] ^= RS_RVid;
2469
2470 while (col-- > selection.beg.col && (stp[col] == NOCHAR || unicode::is_space (stp[col])))
2471 srp[col] ^= RS_RVid | RS_Uline;
2472
2473 if (++col < selection.end.col)
2474 srp[col] ^= RS_RVid | RS_Uline;
2475 }
2476 }
2477 else 2546 else
2478#endif 2547#endif
2479 { 2548 scr_xor_span (selection.beg.row, selection.beg.col,
2480 if (selection.beg.row >= -view_start) 2549 selection.end.row, selection.end.col,
2481 { 2550 RS_RVid);
2482 col = selection.beg.col;
2483 row = selection.beg.row;
2484 }
2485 else
2486 {
2487 col = 0;
2488 row = -view_start;
2489 }
2490
2491 for (; row < min (selection.end.row, view_end); row++, col = 0)
2492 for (rend_t *srp = ROW(row).r; col < ncol; col++)
2493 srp[col] ^= RS_RVid;
2494
2495 if (row == selection.end.row)
2496 for (rend_t *srp = ROW(row).r; col < selection.end.col; col++)
2497 srp[col] ^= RS_RVid;
2498 }
2499 } 2551 }
2500} 2552}
2501 2553
2502/* ------------------------------------------------------------------------- */ 2554/* ------------------------------------------------------------------------- */
2503/* 2555/*
2504 * Dump the whole scrollback and screen to the passed filedescriptor. The 2556 * Dump the whole scrollback and screen to the passed filedescriptor. The
2505 * invoking routine must close the fd. 2557 * invoking routine must close the fd.
2506 */ 2558 */
2507#if 0 2559#if 0
2508void 2560void
2509rxvt_term::scr_dump (int fd) 2561rxvt_term::scr_dump (int fd) NOTHROW
2510{ 2562{
2511 int row, wrote; 2563 int row, wrote;
2512 unsigned int width, towrite; 2564 unsigned int width, towrite;
2513 char r1[] = "\n"; 2565 char r1[] = "\n";
2514 2566
2533 2585
2534/* ------------------------------------------------------------------------- * 2586/* ------------------------------------------------------------------------- *
2535 * CHARACTER SELECTION * 2587 * CHARACTER SELECTION *
2536 * ------------------------------------------------------------------------- */ 2588 * ------------------------------------------------------------------------- */
2537void 2589void
2538rxvt_term::selection_check (int check_more) 2590rxvt_term::selection_check (int check_more) NOTHROW
2539{ 2591{
2540 row_col_t pos; 2592 row_col_t pos;
2541 2593
2542 if (!selection.op) 2594 if (!selection.op)
2543 return; 2595 return;
2544 2596
2545 pos.row = pos.col = 0; 2597 pos.row = pos.col = 0;
2546 if (!IN_RANGE_EXC (selection.beg.row, -nsaved, nrow) 2598 if (!IN_RANGE_EXC (selection.beg.row, top_row, nrow)
2547 || !IN_RANGE_EXC (selection.mark.row, -nsaved, nrow) 2599 || !IN_RANGE_EXC (selection.mark.row, top_row, nrow)
2548 || !IN_RANGE_EXC (selection.end.row, -nsaved, nrow) 2600 || !IN_RANGE_EXC (selection.end.row, top_row, nrow)
2549 || (check_more == 1 2601 || (check_more == 1
2550 && current_screen == selection.screen 2602 && current_screen == selection.screen
2551 && !ROWCOL_IS_BEFORE (screen.cur, selection.beg) 2603 && !ROWCOL_IS_BEFORE (screen.cur, selection.beg)
2552 && ROWCOL_IS_BEFORE (screen.cur, selection.end)) 2604 && ROWCOL_IS_BEFORE (screen.cur, selection.end))
2553 || (check_more == 2 2605 || (check_more == 2
2564/* ------------------------------------------------------------------------- */ 2616/* ------------------------------------------------------------------------- */
2565/* 2617/*
2566 * Paste a selection direct to the command fd 2618 * Paste a selection direct to the command fd
2567 */ 2619 */
2568void 2620void
2569rxvt_term::paste (unsigned char *data, unsigned int len) 2621rxvt_term::paste (char *data, unsigned int len) NOTHROW
2570{ 2622{
2571 /* convert normal newline chars into common keyboard Return key sequence */ 2623 /* convert normal newline chars into common keyboard Return key sequence */
2572 for (unsigned int i = 0; i < len; i++) 2624 for (unsigned int i = 0; i < len; i++)
2573 if (data[i] == C0_LF) 2625 if (data[i] == C0_LF)
2574 data[i] = C0_CR; 2626 data[i] = C0_CR;
2580/* 2632/*
2581 * Respond to a notification that a primary selection has been sent 2633 * Respond to a notification that a primary selection has been sent
2582 * EXT: SelectionNotify 2634 * EXT: SelectionNotify
2583 */ 2635 */
2584void 2636void
2585rxvt_term::selection_paste (Window win, Atom prop, bool delete_prop) 2637rxvt_term::selection_paste (Window win, Atom prop, bool delete_prop) NOTHROW
2586{ 2638{
2587 if (prop == None) /* check for failed XConvertSelection */ 2639 if (prop == None) /* check for failed XConvertSelection */
2588 { 2640 {
2589 if ((selection_type & Sel_CompoundText)) 2641 if ((selection_type & Sel_CompoundText))
2590 { 2642 {
2610 } 2662 }
2611 2663
2612 unsigned long bytes_after; 2664 unsigned long bytes_after;
2613 XTextProperty ct; 2665 XTextProperty ct;
2614 2666
2615 if (XGetWindowProperty (display->display, win, prop, 2667 if (XGetWindowProperty (xdisp, win, prop,
2616 0, PROP_SIZE / 4, 2668 0, PROP_SIZE / 4,
2617 delete_prop, AnyPropertyType, 2669 delete_prop, AnyPropertyType,
2618 &ct.encoding, &ct.format, 2670 &ct.encoding, &ct.format,
2619 &ct.nitems, &bytes_after, 2671 &ct.nitems, &bytes_after,
2620 &ct.value) != Success) 2672 &ct.value) != Success)
2629 if (bytes_after) 2681 if (bytes_after)
2630 { 2682 {
2631 // fetch and append remaining data 2683 // fetch and append remaining data
2632 XTextProperty ct2; 2684 XTextProperty ct2;
2633 2685
2634 if (XGetWindowProperty (display->display, win, prop, 2686 if (XGetWindowProperty (xdisp, win, prop,
2635 ct.nitems / 4, (bytes_after + 3) / 4, 2687 ct.nitems / 4, (bytes_after + 3) / 4,
2636 delete_prop, AnyPropertyType, 2688 delete_prop, AnyPropertyType,
2637 &ct2.encoding, &ct2.format, 2689 &ct2.encoding, &ct2.format,
2638 &ct2.nitems, &bytes_after, 2690 &ct2.nitems, &bytes_after,
2639 &ct2.value) != Success) 2691 &ct2.value) != Success)
2652 2704
2653 if (ct.encoding == xa[XA_INCR]) 2705 if (ct.encoding == xa[XA_INCR])
2654 { 2706 {
2655 // INCR selection, start handshake 2707 // INCR selection, start handshake
2656 if (!delete_prop) 2708 if (!delete_prop)
2657 XDeleteProperty (display->display, win, prop); 2709 XDeleteProperty (xdisp, win, prop);
2658 2710
2659 selection_wait = Sel_incr; 2711 selection_wait = Sel_incr;
2660 incr_buf_fill = 0; 2712 incr_buf_fill = 0;
2661 incr_ev.start (NOW + 10); 2713 incr_ev.start (NOW + 10);
2662 2714
2718 { 2770 {
2719 wchar_t *w = rxvt_utf8towcs ((const char *)ct.value, ct.nitems); 2771 wchar_t *w = rxvt_utf8towcs ((const char *)ct.value, ct.nitems);
2720 char *s = rxvt_wcstombs (w); 2772 char *s = rxvt_wcstombs (w);
2721 free (w); 2773 free (w);
2722 // TODO: strlen == only the first element will be converted. well... 2774 // TODO: strlen == only the first element will be converted. well...
2723 paste ((unsigned char *)s, strlen (s)); 2775 paste (s, strlen (s));
2724 free (s); 2776 free (s);
2725 } 2777 }
2726 else 2778 else
2727#endif 2779#endif
2728 if (XmbTextPropertyToTextList (display->display, &ct, &cl, &cr) >= 0 2780 if (XmbTextPropertyToTextList (xdisp, &ct, &cl, &cr) >= 0
2729 && cl) 2781 && cl)
2730 { 2782 {
2731 for (int i = 0; i < cr; i++) 2783 for (int i = 0; i < cr; i++)
2732 paste ((unsigned char *)cl[i], strlen (cl[i])); 2784 paste (cl[i], strlen (cl[i]));
2733 2785
2734 XFreeStringList (cl); 2786 XFreeStringList (cl);
2735 } 2787 }
2736 else 2788 else
2737 paste (ct.value, ct.nitems); // paste raw 2789 paste ((char *)ct.value, ct.nitems); // paste raw
2738 2790
2739bailout: 2791bailout:
2740 XFree (ct.value); 2792 XFree (ct.value);
2741 2793
2742 if (selection_wait == Sel_normal) 2794 if (selection_wait == Sel_normal)
2743 selection_wait = Sel_none; 2795 selection_wait = Sel_none;
2744} 2796}
2745 2797
2746void 2798void
2747rxvt_term::incr_cb (time_watcher &w) 2799rxvt_term::incr_cb (time_watcher &w) NOTHROW
2748{ 2800{
2749 selection_wait = Sel_none; 2801 selection_wait = Sel_none;
2750 2802
2751 incr_buf_size = 0; 2803 incr_buf_size = 0;
2752 free (incr_buf); 2804 free (incr_buf);
2753 2805
2754 rxvt_warn ("data loss: timeout on INCR selection paste, ignoring.\n"); 2806 rxvt_warn ("data loss: timeout on INCR selection paste, ignoring.\n");
2755} 2807}
2756 2808
2757void 2809void
2758rxvt_term::selection_property (Window win, Atom prop) 2810rxvt_term::selection_property (Window win, Atom prop) NOTHROW
2759{ 2811{
2760 if (prop == None || selection_wait != Sel_incr) 2812 if (prop == None || selection_wait != Sel_incr)
2761 return; 2813 return;
2762 2814
2763 selection_paste (win, prop, true); 2815 selection_paste (win, prop, true);
2772 * (+) if ownership is claimed but property is empty, rxvt_selection_paste () 2824 * (+) if ownership is claimed but property is empty, rxvt_selection_paste ()
2773 * will auto fallback to CUT_BUFFER0 2825 * will auto fallback to CUT_BUFFER0
2774 * EXT: button 2 release 2826 * EXT: button 2 release
2775 */ 2827 */
2776void 2828void
2777rxvt_term::selection_request (Time tm, int x, int y) 2829rxvt_term::selection_request (Time tm, int selnum) NOTHROW
2778{ 2830{
2779 if (x < 0 || x >= width || y < 0 || y >= height) 2831 if (selection.text && selnum == Sel_Primary)
2780 return; /* outside window */
2781
2782 if (selection.text)
2783 { /* internal selection */ 2832 { /* internal selection */
2784 char *str = rxvt_wcstombs (selection.text, selection.len); 2833 char *str = rxvt_wcstombs (selection.text, selection.len);
2785 paste ((unsigned char *)str, strlen (str)); 2834 paste (str, strlen (str));
2786 free (str); 2835 free (str);
2787 return; 2836 return;
2788 } 2837 }
2789 else 2838 else
2790 { 2839 {
2791 int i;
2792
2793 selection_request_time = tm; 2840 selection_request_time = tm;
2794 selection_wait = Sel_normal; 2841 selection_wait = Sel_normal;
2795 2842
2796 for (i = Sel_Primary; i <= Sel_Clipboard; i++)
2797 {
2798#if X_HAVE_UTF8_STRING 2843#if X_HAVE_UTF8_STRING
2799 selection_type = Sel_UTF8String; 2844 selection_type = Sel_UTF8String;
2800 if (selection_request_other (xa[XA_UTF8_STRING], i)) 2845 if (selection_request_other (xa[XA_UTF8_STRING], selnum))
2801 return; 2846 return;
2802#else 2847#else
2803 selection_type = Sel_CompoundText; 2848 selection_type = Sel_CompoundText;
2804 if (selection_request_other (xa[XA_COMPOUND_TEXT], i)) 2849 if (selection_request_other (xa[XA_COMPOUND_TEXT], selnum))
2805 return; 2850 return;
2806#endif 2851#endif
2807 }
2808 } 2852 }
2809 2853
2810 selection_wait = Sel_none; /* don't loop in selection_paste () */ 2854 selection_wait = Sel_none; /* don't loop in selection_paste () */
2811 selection_paste (display->root, XA_CUT_BUFFER0, false); 2855 selection_paste (display->root, XA_CUT_BUFFER0, false);
2812} 2856}
2813 2857
2814int 2858int
2815rxvt_term::selection_request_other (Atom target, int selnum) 2859rxvt_term::selection_request_other (Atom target, int selnum) NOTHROW
2816{ 2860{
2817 Atom sel; 2861 Atom sel;
2818 2862
2819 selection_type |= selnum; 2863 selection_type |= selnum;
2820 2864
2823 else if (selnum == Sel_Secondary) 2867 else if (selnum == Sel_Secondary)
2824 sel = XA_SECONDARY; 2868 sel = XA_SECONDARY;
2825 else 2869 else
2826 sel = xa[XA_CLIPBOARD]; 2870 sel = xa[XA_CLIPBOARD];
2827 2871
2828 if (XGetSelectionOwner (display->display, sel) != None) 2872 if (XGetSelectionOwner (xdisp, sel) != None)
2829 { 2873 {
2830 XConvertSelection (display->display, sel, target, xa[XA_VT_SELECTION], 2874 XConvertSelection (xdisp, sel, target, xa[XA_VT_SELECTION],
2831 vt, selection_request_time); 2875 vt, selection_request_time);
2832 return 1; 2876 return 1;
2833 } 2877 }
2834 2878
2835 return 0; 2879 return 0;
2839/* 2883/*
2840 * Clear all selected text 2884 * Clear all selected text
2841 * EXT: SelectionClear 2885 * EXT: SelectionClear
2842 */ 2886 */
2843void 2887void
2844rxvt_term::selection_clear () 2888rxvt_term::selection_clear () NOTHROW
2845{ 2889{
2846 want_refresh = 1; 2890 want_refresh = 1;
2847 free (selection.text); 2891 free (selection.text);
2848 selection.text = NULL; 2892 selection.text = NULL;
2849 selection.len = 0; 2893 selection.len = 0;
2882 selection.op = SELECTION_DONE; 2926 selection.op = SELECTION_DONE;
2883 2927
2884 if (selection.clicks == 4) 2928 if (selection.clicks == 4)
2885 return; /* nothing selected, go away */ 2929 return; /* nothing selected, go away */
2886 2930
2887 if (PERL_INVOKE ((this, HOOK_SEL_MAKE, DT_LONG, (long)tm, DT_END))) 2931 if (HOOK_INVOKE ((this, HOOK_SEL_MAKE, DT_LONG, (long)tm, DT_END)))
2888 return; 2932 return;
2889 2933
2890 i = (selection.end.row - selection.beg.row + 1) * (ncol + 1); 2934 i = (selection.end.row - selection.beg.row + 1) * (ncol + 1);
2891 new_selection_text = (wchar_t *)rxvt_malloc ((i + 4) * sizeof (wchar_t)); 2935 new_selection_text = (wchar_t *)rxvt_malloc ((i + 4) * sizeof (wchar_t));
2892 2936
2906 col = selection.beg.col; 2950 col = selection.beg.col;
2907 end_col = ncol + 1; 2951 end_col = ncol + 1;
2908 } 2952 }
2909 else 2953 else
2910#endif 2954#endif
2911 end_col = ROW(row).is_longer () ? ncol : ROW(row).l; //TODO//FIXME//LEN 2955 end_col = ROW(row).l;
2912 2956
2913 col = max (col, 0); 2957 col = max (col, 0);
2914 2958
2915 if (row == selection.end.row 2959 if (row == selection.end.row
2916#if ENABLE_FRILLS 2960#if ENABLE_FRILLS
2918#endif 2962#endif
2919 ) 2963 )
2920 min_it (end_col, selection.end.col); 2964 min_it (end_col, selection.end.col);
2921 2965
2922 t = ROW(row).t + col; 2966 t = ROW(row).t + col;
2967
2923 for (; col < end_col; col++) 2968 for (; col < end_col; col++)
2924 { 2969 {
2925 if (*t == NOCHAR) 2970 if (*t == NOCHAR)
2926 t++; 2971 t++;
2927#if ENABLE_COMBINING 2972#if ENABLE_COMBINING
2976 3021
2977 // we usually allocate much more than necessary, so realloc it smaller again 3022 // we usually allocate much more than necessary, so realloc it smaller again
2978 selection.len = ofs; 3023 selection.len = ofs;
2979 selection.text = (wchar_t *)rxvt_realloc (new_selection_text, (ofs + 1) * sizeof (wchar_t)); 3024 selection.text = (wchar_t *)rxvt_realloc (new_selection_text, (ofs + 1) * sizeof (wchar_t));
2980 3025
2981 if (PERL_INVOKE ((this, HOOK_SEL_GRAB, DT_LONG, (long)tm, DT_END))) 3026 if (HOOK_INVOKE ((this, HOOK_SEL_GRAB, DT_LONG, (long)tm, DT_END)))
2982 return; 3027 return;
2983 3028
2984 selection_grab (tm); 3029 selection_grab (tm);
2985} 3030}
2986 3031
2987bool 3032bool
2988rxvt_term::selection_grab (Time tm) 3033rxvt_term::selection_grab (Time tm) NOTHROW
2989{ 3034{
2990 selection_time = tm; 3035 selection_time = tm;
2991 3036
2992 XSetSelectionOwner (display->display, XA_PRIMARY, vt, tm); 3037 XSetSelectionOwner (xdisp, XA_PRIMARY, vt, tm);
2993 if (XGetSelectionOwner (display->display, XA_PRIMARY) == vt) 3038 if (XGetSelectionOwner (xdisp, XA_PRIMARY) == vt)
2994 { 3039 {
2995 display->set_selection_owner (this); 3040 display->set_selection_owner (this);
2996 return true; 3041 return true;
2997 } 3042 }
2998 else 3043 else
3044 {
3045 selection_clear ();
2999 return false; 3046 return false;
3047 }
3000 3048
3001#if 0 3049#if 0
3002 XTextProperty ct; 3050 XTextProperty ct;
3003 3051
3004 if (XwcTextListToTextProperty (display->display, &selection.text, 1, XStringStyle, &ct) >= 0) 3052 if (XwcTextListToTextProperty (xdisp, &selection.text, 1, XStringStyle, &ct) >= 0)
3005 { 3053 {
3006 set_string_property (XA_CUT_BUFFER0, ct.value, ct.nitems); 3054 set_string_property (XA_CUT_BUFFER0, ct.value, ct.nitems);
3007 XFree (ct.value); 3055 XFree (ct.value);
3008 } 3056 }
3009#endif 3057#endif
3013/* 3061/*
3014 * Mark or select text based upon number of clicks: 1, 2, or 3 3062 * Mark or select text based upon number of clicks: 1, 2, or 3
3015 * EXT: button 1 press 3063 * EXT: button 1 press
3016 */ 3064 */
3017void 3065void
3018rxvt_term::selection_click (int clicks, int x, int y) 3066rxvt_term::selection_click (int clicks, int x, int y) NOTHROW
3019{ 3067{
3020 clicks = ((clicks - 1) % 3) + 1; 3068 clicks = ((clicks - 1) % 3) + 1;
3021 selection.clicks = clicks; /* save clicks so extend will work */ 3069 selection.clicks = clicks; /* save clicks so extend will work */
3022 3070
3071 if (clicks == 2 && !selection.rect
3072 && HOOK_INVOKE ((this, HOOK_SEL_EXTEND, DT_END)))
3073 {
3074 MEvent.clicks = 1; // what a mess
3075 selection.screen = current_screen;
3076 selection.op = SELECTION_CONT;
3077 return;
3078 }
3079
3023 selection_start_colrow (Pixel2Col (x), Pixel2Row (y)); 3080 selection_start_colrow (Pixel2Col (x), Pixel2Row (y));
3024 3081
3025 if (clicks == 2 || clicks == 3) 3082 if (clicks == 2 || clicks == 3)
3026 selection_extend_colrow (selection.mark.col, 3083 selection_extend_colrow (selection.mark.col,
3027 selection.mark.row + view_start, 3084 selection.mark.row - view_start,
3028 0, /* button 3 */ 3085 0, /* button 3 */
3029 1, /* button press */ 3086 1, /* button press */
3030 0); /* click change */ 3087 0); /* click change */
3031} 3088}
3032 3089
3033/* ------------------------------------------------------------------------- */ 3090/* ------------------------------------------------------------------------- */
3034/* 3091/*
3035 * Mark a selection at the specified col/row 3092 * Mark a selection at the specified col/row
3036 */ 3093 */
3037void 3094void
3038rxvt_term::selection_start_colrow (int col, int row) 3095rxvt_term::selection_start_colrow (int col, int row) NOTHROW
3039{ 3096{
3040 want_refresh = 1; 3097 want_refresh = 1;
3041 3098
3042 selection.mark.row = row - view_start; 3099 selection.mark.row = row + view_start;
3043 selection.mark.col = col; 3100 selection.mark.col = col;
3044 3101
3045 selection.mark.row = clamp (selection.mark.row, -nsaved, nrow - 1); 3102 selection.mark.row = clamp (selection.mark.row, top_row, nrow - 1);
3046 selection.mark.col = clamp (selection.mark.col, 0, ncol - 1); 3103 selection.mark.col = clamp (selection.mark.col, 0, ncol - 1);
3047 3104
3048 while (selection.mark.col > 0 3105 while (selection.mark.col > 0
3049 && ROW(selection.mark.row).t[selection.mark.col] == NOCHAR) 3106 && ROW(selection.mark.row).t[selection.mark.col] == NOCHAR)
3050 --selection.mark.col; 3107 --selection.mark.col;
3069#define DELIMIT_TEXT(x) \ 3126#define DELIMIT_TEXT(x) \
3070 (unicode::is_space (x) ? 2 : (x) <= 0xff && !!strchr (rs[Rs_cutchars], (x))) 3127 (unicode::is_space (x) ? 2 : (x) <= 0xff && !!strchr (rs[Rs_cutchars], (x)))
3071#define DELIMIT_REND(x) 1 3128#define DELIMIT_REND(x) 1
3072 3129
3073void 3130void
3074rxvt_term::selection_delimit_word (enum page_dirn dirn, const row_col_t *mark, row_col_t *ret) 3131rxvt_term::selection_delimit_word (enum page_dirn dirn, const row_col_t *mark, row_col_t *ret) NOTHROW
3075{ 3132{
3076 int col, row, dirnadd, tcol, trow, w1, w2; 3133 int col, row, dirnadd, tcol, trow, w1, w2;
3077 row_col_t bound; 3134 row_col_t bound;
3078 text_t *stp; 3135 text_t *stp;
3079 rend_t *srp; 3136 rend_t *srp;
3080 3137
3081 if (dirn == UP) 3138 if (dirn == UP)
3082 { 3139 {
3083 bound.row = - nsaved - 1; 3140 bound.row = top_row - 1;
3084 bound.col = 0; 3141 bound.col = 0;
3085 dirnadd = -1; 3142 dirnadd = -1;
3086 } 3143 }
3087 else 3144 else
3088 { 3145 {
3136 } 3193 }
3137 } 3194 }
3138 break; 3195 break;
3139 } 3196 }
3140 3197
3141Old_Word_Selection_You_Die:
3142 if (dirn == DN) 3198 if (dirn == DN)
3143 col++; /* put us on one past the end */ 3199 col++; /* put us on one past the end */
3144 3200
3145 /* Poke the values back in */ 3201 /* Poke the values back in */
3146 ret->row = row; 3202 ret->row = row;
3154 * flag == 0 ==> button 1 3210 * flag == 0 ==> button 1
3155 * flag == 1 ==> button 3 press 3211 * flag == 1 ==> button 3 press
3156 * flag == 2 ==> button 3 motion 3212 * flag == 2 ==> button 3 motion
3157 */ 3213 */
3158void 3214void
3159rxvt_term::selection_extend (int x, int y, int flag) 3215rxvt_term::selection_extend (int x, int y, int flag) NOTHROW
3160{ 3216{
3161 int col = clamp (Pixel2Col (x), 0, ncol); 3217 int col = clamp (Pixel2Col (x), 0, ncol);
3162 int row = clamp (Pixel2Row (y), 0, nrow - 1); 3218 int row = clamp (Pixel2Row (y), 0, nrow - 1);
3163 3219
3164 /* 3220 /*
3167 * select nothing. Otherwise, if we're to the right of the mark, you have to 3223 * select nothing. Otherwise, if we're to the right of the mark, you have to
3168 * be _past_ a character for it to be selected. 3224 * be _past_ a character for it to be selected.
3169 */ 3225 */
3170 if (((selection.clicks % 3) == 1) && !flag 3226 if (((selection.clicks % 3) == 1) && !flag
3171 && (col == selection.mark.col 3227 && (col == selection.mark.col
3172 && (row == selection.mark.row + view_start))) 3228 && (row == selection.mark.row - view_start)))
3173 { 3229 {
3174 /* select nothing */ 3230 /* select nothing */
3175 selection.beg.row = selection.end.row = 0; 3231 selection.beg.row = selection.end.row = 0;
3176 selection.beg.col = selection.end.col = 0; 3232 selection.beg.col = selection.end.col = 0;
3177 selection.clicks = 4; 3233 selection.clicks = 4;
3190/* ------------------------------------------------------------------------- */ 3246/* ------------------------------------------------------------------------- */
3191/* 3247/*
3192 * Extend the selection to the specified col/row 3248 * Extend the selection to the specified col/row
3193 */ 3249 */
3194void 3250void
3195rxvt_term::selection_extend_colrow (int32_t col, int32_t row, int button3, int buttonpress, int clickchange) 3251rxvt_term::selection_extend_colrow (int32_t col, int32_t row, int button3, int buttonpress, int clickchange) NOTHROW
3196{ 3252{
3197 row_col_t pos; 3253 row_col_t pos;
3198 enum { 3254 enum {
3199 LEFT, RIGHT 3255 LEFT, RIGHT
3200 } closeto = RIGHT; 3256 } closeto = RIGHT;
3232 selection.beg.col = selection.end.col = selection.mark.col; 3288 selection.beg.col = selection.end.col = selection.mark.col;
3233 selection.beg.row = selection.end.row = selection.mark.row; 3289 selection.beg.row = selection.end.row = selection.mark.row;
3234 } 3290 }
3235 3291
3236 pos.col = col; 3292 pos.col = col;
3237 pos.row = row - view_start; 3293 pos.row = view_start + row;
3238 3294
3239 /* 3295 /*
3240 * This is mainly xterm style selection with a couple of differences, mainly 3296 * This is mainly xterm style selection with a couple of differences, mainly
3241 * in the way button3 drag extension works. 3297 * in the way button3 drag extension works.
3242 * We're either doing: button1 drag; button3 press; or button3 drag 3298 * We're either doing: button1 drag; button3 press; or button3 drag
3386#endif 3442#endif
3387} 3443}
3388 3444
3389#if ENABLE_FRILLS 3445#if ENABLE_FRILLS
3390void 3446void
3391rxvt_term::selection_remove_trailing_spaces () 3447rxvt_term::selection_remove_trailing_spaces () NOTHROW
3392{ 3448{
3393 int32_t end_col, end_row; 3449 int32_t end_col, end_row;
3394 text_t *stp; 3450 text_t *stp;
3395 3451
3396 end_col = selection.end.col; 3452 end_col = selection.end.col;
3434/* 3490/*
3435 * Double click on button 3 when already selected 3491 * Double click on button 3 when already selected
3436 * EXT: button 3 double click 3492 * EXT: button 3 double click
3437 */ 3493 */
3438void 3494void
3439rxvt_term::selection_rotate (int x, int y) 3495rxvt_term::selection_rotate (int x, int y) NOTHROW
3440{ 3496{
3441 selection.clicks = selection.clicks % 3 + 1; 3497 selection.clicks = selection.clicks % 3 + 1;
3442 selection_extend_colrow (Pixel2Col (x), Pixel2Row (y), 1, 0, 1); 3498 selection_extend_colrow (Pixel2Col (x), Pixel2Row (y), 1, 0, 1);
3443} 3499}
3444 3500
3446/* 3502/*
3447 * Respond to a request for our current selection 3503 * Respond to a request for our current selection
3448 * EXT: SelectionRequest 3504 * EXT: SelectionRequest
3449 */ 3505 */
3450void 3506void
3451rxvt_term::selection_send (const XSelectionRequestEvent &rq) 3507rxvt_term::selection_send (const XSelectionRequestEvent &rq) NOTHROW
3452{ 3508{
3453 XSelectionEvent ev; 3509 XSelectionEvent ev;
3454 dDisp;
3455 3510
3456 ev.type = SelectionNotify; 3511 ev.type = SelectionNotify;
3457 ev.property = None; 3512 ev.property = None;
3458 ev.display = rq.display; 3513 ev.display = rq.display;
3459 ev.requestor = rq.requestor; 3514 ev.requestor = rq.requestor;
3473 *target++ = xa[XA_COMPOUND_TEXT]; 3528 *target++ = xa[XA_COMPOUND_TEXT];
3474#if X_HAVE_UTF8_STRING 3529#if X_HAVE_UTF8_STRING
3475 *target++ = xa[XA_UTF8_STRING]; 3530 *target++ = xa[XA_UTF8_STRING];
3476#endif 3531#endif
3477 3532
3478 XChangeProperty (disp, rq.requestor, rq.property, XA_ATOM, 3533 XChangeProperty (xdisp, rq.requestor, rq.property, XA_ATOM,
3479 32, PropModeReplace, 3534 32, PropModeReplace,
3480 (unsigned char *)target_list, target - target_list); 3535 (unsigned char *)target_list, target - target_list);
3481 ev.property = rq.property; 3536 ev.property = rq.property;
3482 } 3537 }
3483#if TODO // TODO 3538#if TODO // TODO
3486 /* TODO: Handle MULTIPLE */ 3541 /* TODO: Handle MULTIPLE */
3487 } 3542 }
3488#endif 3543#endif
3489 else if (rq.target == xa[XA_TIMESTAMP] && selection.text) 3544 else if (rq.target == xa[XA_TIMESTAMP] && selection.text)
3490 { 3545 {
3491 XChangeProperty (disp, rq.requestor, rq.property, rq.target, 3546 XChangeProperty (xdisp, rq.requestor, rq.property, rq.target,
3492 32, PropModeReplace, (unsigned char *)&selection_time, 1); 3547 32, PropModeReplace, (unsigned char *)&selection_time, 1);
3493 ev.property = rq.property; 3548 ev.property = rq.property;
3494 } 3549 }
3495 else if (rq.target == XA_STRING 3550 else if (rq.target == XA_STRING
3496 || rq.target == xa[XA_TEXT] 3551 || rq.target == xa[XA_TEXT]
3554 ct.value = (unsigned char *)rxvt_wcstoutf8 (cl, selectlen); 3609 ct.value = (unsigned char *)rxvt_wcstoutf8 (cl, selectlen);
3555 ct.nitems = strlen ((char *)ct.value); 3610 ct.nitems = strlen ((char *)ct.value);
3556 } 3611 }
3557 else 3612 else
3558#endif 3613#endif
3559 if (XwcTextListToTextProperty (disp, &cl, 1, (XICCEncodingStyle) style, &ct) >= 0) 3614 if (XwcTextListToTextProperty (xdisp, &cl, 1, (XICCEncodingStyle) style, &ct) >= 0)
3560 freect = 1; 3615 freect = 1;
3561 else 3616 else
3562 { 3617 {
3563 /* if we failed to convert then send it raw */ 3618 /* if we failed to convert then send it raw */
3564 ct.value = (unsigned char *)cl; 3619 ct.value = (unsigned char *)cl;
3565 ct.nitems = selectlen; 3620 ct.nitems = selectlen;
3566 ct.encoding = target; 3621 ct.encoding = target;
3567 } 3622 }
3568 3623
3569 XChangeProperty (disp, rq.requestor, rq.property, 3624 XChangeProperty (xdisp, rq.requestor, rq.property,
3570 ct.encoding, 8, PropModeReplace, 3625 ct.encoding, 8, PropModeReplace,
3571 ct.value, (int)ct.nitems); 3626 ct.value, (int)ct.nitems);
3572 ev.property = rq.property; 3627 ev.property = rq.property;
3573 3628
3574 if (freect) 3629 if (freect)
3575 XFree (ct.value); 3630 XFree (ct.value);
3576 } 3631 }
3577 3632
3578 XSendEvent (disp, rq.requestor, False, 0L, (XEvent *)&ev); 3633 XSendEvent (xdisp, rq.requestor, False, 0L, (XEvent *)&ev);
3579} 3634}
3580 3635
3581/* ------------------------------------------------------------------------- * 3636/* ------------------------------------------------------------------------- *
3582 * MOUSE ROUTINES * 3637 * MOUSE ROUTINES *
3583 * ------------------------------------------------------------------------- */ 3638 * ------------------------------------------------------------------------- */
3584 3639
3585/* 3640/*
3586 * return col/row values corresponding to x/y pixel values 3641 * return col/row values corresponding to x/y pixel values
3587 */ 3642 */
3588void 3643void
3589rxvt_term::pixel_position (int *x, int *y) 3644rxvt_term::pixel_position (int *x, int *y) NOTHROW
3590{ 3645{
3591 *x = Pixel2Col (*x); 3646 *x = Pixel2Col (*x);
3592 /* max_it (*x, 0); min_it (*x, (int)ncol - 1); */ 3647 /* max_it (*x, 0); min_it (*x, (int)ncol - 1); */
3593 *y = Pixel2Row (*y); 3648 *y = Pixel2Row (*y);
3594 /* max_it (*y, 0); min_it (*y, (int)nrow - 1); */ 3649 /* max_it (*y, 0); min_it (*y, (int)nrow - 1); */
3595} 3650}
3596 3651
3597/* ------------------------------------------------------------------------- */ 3652/* ------------------------------------------------------------------------- */
3598#ifdef USE_XIM 3653#ifdef USE_XIM
3599void 3654void
3600rxvt_term::im_set_position (XPoint &pos) 3655rxvt_term::im_set_position (XPoint &pos) NOTHROW
3601{ 3656{
3602 XWindowAttributes xwa; 3657 XWindowAttributes xwa;
3603 3658
3604 XGetWindowAttributes (display->display, vt, &xwa); 3659 XGetWindowAttributes (xdisp, vt, &xwa);
3605 3660
3606 pos.x = xwa.x + Col2Pixel (screen.cur.col); 3661 pos.x = xwa.x + Col2Pixel (screen.cur.col);
3607 pos.y = xwa.y + Height2Pixel (screen.cur.row) + fbase; 3662 pos.y = xwa.y + Height2Pixel (screen.cur.row) + fbase;
3608} 3663}
3609#endif 3664#endif
3610 3665
3611#if ENABLE_OVERLAY 3666#if ENABLE_OVERLAY
3612void 3667void
3613rxvt_term::scr_overlay_new (int x, int y, int w, int h) 3668rxvt_term::scr_overlay_new (int x, int y, int w, int h) NOTHROW
3614{ 3669{
3615 if (nrow < 1 || ncol < 1) 3670 if (nrow < 1 || ncol < 1)
3616 return; 3671 return;
3617 3672
3618 want_refresh = 1; 3673 want_refresh = 1;
3663 *rp = r; 3718 *rp = r;
3664 } 3719 }
3665} 3720}
3666 3721
3667void 3722void
3668rxvt_term::scr_overlay_off () 3723rxvt_term::scr_overlay_off () NOTHROW
3669{ 3724{
3670 if (!ov_text) 3725 if (!ov_text)
3671 return; 3726 return;
3672 3727
3673 want_refresh = 1; 3728 want_refresh = 1;
3681 delete [] ov_text; ov_text = 0; 3736 delete [] ov_text; ov_text = 0;
3682 delete [] ov_rend; ov_rend = 0; 3737 delete [] ov_rend; ov_rend = 0;
3683} 3738}
3684 3739
3685void 3740void
3686rxvt_term::scr_overlay_set (int x, int y, text_t text, rend_t rend) 3741rxvt_term::scr_overlay_set (int x, int y, text_t text, rend_t rend) NOTHROW
3687{ 3742{
3688 if (!ov_text || x >= ov_w - 2 || y >= ov_h - 2) 3743 if (!ov_text || x >= ov_w - 2 || y >= ov_h - 2)
3689 return; 3744 return;
3690 3745
3691 x++, y++; 3746 x++, y++;
3693 ov_text[y][x] = text; 3748 ov_text[y][x] = text;
3694 ov_rend[y][x] = rend; 3749 ov_rend[y][x] = rend;
3695} 3750}
3696 3751
3697void 3752void
3698rxvt_term::scr_overlay_set (int x, int y, const char *s) 3753rxvt_term::scr_overlay_set (int x, int y, const char *s) NOTHROW
3699{ 3754{
3700 while (*s) 3755 while (*s)
3701 scr_overlay_set (x++, y, *s++); 3756 scr_overlay_set (x++, y, *s++);
3702} 3757}
3703 3758
3704void 3759void
3705rxvt_term::scr_overlay_set (int x, int y, const wchar_t *s) 3760rxvt_term::scr_overlay_set (int x, int y, const wchar_t *s) NOTHROW
3706{ 3761{
3707 while (*s) 3762 while (*s)
3708 { 3763 {
3709 text_t t = *s++; 3764 text_t t = *s++;
3710 int width = wcwidth (t); 3765 int width = WCWIDTH (t);
3711 3766
3712 while (width--) 3767 while (width--)
3713 { 3768 {
3714 scr_overlay_set (x++, y, t); 3769 scr_overlay_set (x++, y, t);
3715 t = NOCHAR; 3770 t = NOCHAR;
3716 } 3771 }
3717 } 3772 }
3718} 3773}
3719 3774
3720void 3775void
3721rxvt_term::scr_swap_overlay () 3776rxvt_term::scr_swap_overlay () NOTHROW
3722{ 3777{
3723 if (!ov_text) 3778 if (!ov_text)
3724 return; 3779 return;
3725 3780
3726 // swap screen mem with overlay 3781 // swap screen mem with overlay
3727 for (int y = ov_h; y--; ) 3782 for (int y = ov_h; y--; )
3728 { 3783 {
3729 text_t *t1 = ov_text[y]; 3784 text_t *t1 = ov_text[y];
3730 rend_t *r1 = ov_rend[y]; 3785 rend_t *r1 = ov_rend[y];
3731 3786
3732 text_t *t2 = ROW(y + ov_y - view_start).t + ov_x; 3787 text_t *t2 = ROW(y + ov_y + view_start).t + ov_x;
3733 rend_t *r2 = ROW(y + ov_y - view_start).r + ov_x; 3788 rend_t *r2 = ROW(y + ov_y + view_start).r + ov_x;
3734 3789
3735 for (int x = ov_w; x--; ) 3790 for (int x = ov_w; x--; )
3736 { 3791 {
3737 text_t t = *t1; *t1++ = *t2; *t2++ = t; 3792 text_t t = *t1; *t1++ = *t2; *t2++ = t;
3738 rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, FONTSET (r)->find_font (t)); 3793 rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, FONTSET (r)->find_font (t));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines