/*--------------------------------*-C-*--------------------------------------* * File: screen.C *---------------------------------------------------------------------------* * * Copyright (c) 1997-2001 Geoff Wing * Copyright (c) 2003-2004 Marc Lehmann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *--------------------------------------------------------------------------*/ /* * This file handles _all_ screen updates and selections */ #include "../config.h" /* NECESSARY */ #include "rxvt.h" /* NECESSARY */ #include /* get the typedef for CARD32 */ #include #include "salloc.C" // HACK, should be a seperate compile! inline void fill_text (text_t *start, text_t value, int len) { while (len--) *start++ = value; } /* ------------------------------------------------------------------------- */ #define PROP_SIZE 256*1024 #define PASTE_SIZE 32768 #define TABSIZE 8 /* default tab size */ /* ------------------------------------------------------------------------- * * GENERAL SCREEN AND SELECTION UPDATE ROUTINES * * ------------------------------------------------------------------------- */ #define ZERO_SCROLLBACK() \ if (options & Opt_scrollTtyOutput) \ view_start = 0 #define CLEAR_SELECTION() \ selection.beg.row = selection.beg.col \ = selection.end.row = selection.end.col = 0 #define CLEAR_ALL_SELECTION() \ selection.beg.row = selection.beg.col \ = selection.mark.row = selection.mark.col \ = selection.end.row = selection.end.col = 0 #define ROW_AND_COL_IS_AFTER(A, B, C, D) \ (((A) > (C)) || (((A) == (C)) && ((B) > (D)))) #define ROW_AND_COL_IS_BEFORE(A, B, C, D) \ (((A) < (C)) || (((A) == (C)) && ((B) < (D)))) #define ROW_AND_COL_IN_ROW_AFTER(A, B, C, D) \ (((A) == (C)) && ((B) > (D))) #define ROW_AND_COL_IN_ROW_AT_OR_AFTER(A, B, C, D) \ (((A) == (C)) && ((B) >= (D))) #define ROW_AND_COL_IN_ROW_BEFORE(A, B, C, D) \ (((A) == (C)) && ((B) < (D))) #define ROW_AND_COL_IN_ROW_AT_OR_BEFORE(A, B, C, D) \ (((A) == (C)) && ((B) <= (D))) /* these must be row_col_t */ #define ROWCOL_IS_AFTER(X, Y) \ ROW_AND_COL_IS_AFTER ((X).row, (X).col, (Y).row, (Y).col) #define ROWCOL_IS_BEFORE(X, Y) \ ROW_AND_COL_IS_BEFORE ((X).row, (X).col, (Y).row, (Y).col) #define ROWCOL_IN_ROW_AFTER(X, Y) \ ROW_AND_COL_IN_ROW_AFTER ((X).row, (X).col, (Y).row, (Y).col) #define ROWCOL_IN_ROW_BEFORE(X, Y) \ ROW_AND_COL_IN_ROW_BEFORE ((X).row, (X).col, (Y).row, (Y).col) #define ROWCOL_IN_ROW_AT_OR_AFTER(X, Y) \ ROW_AND_COL_IN_ROW_AT_OR_AFTER ((X).row, (X).col, (Y).row, (Y).col) #define ROWCOL_IN_ROW_AT_OR_BEFORE(X, Y) \ ROW_AND_COL_IN_ROW_AT_OR_BEFORE ((X).row, (X).col, (Y).row, (Y).col) /* * CLEAR_ROWS : clear rows starting from row * CLEAR_CHARS: clear chars starting from pixel position * ERASE_ROWS : set rows starting from row to the foreground colour */ #define drawBuffer vt #define CLEAR_ROWS(row, num) \ if (mapped) \ XClearArea (display->display, drawBuffer, 0, \ Row2Pixel (row), (unsigned int)width, \ (unsigned int)Height2Pixel (num), False) #define CLEAR_CHARS(x, y, num) \ if (mapped) \ XClearArea (display->display, drawBuffer, x, y, \ (unsigned int)Width2Pixel (num), \ (unsigned int)Height2Pixel (1), False) #define ERASE_ROWS(row, num) \ XFillRectangle (display->display, drawBuffer, gc, \ 0, Row2Pixel (row), \ (unsigned int)width, \ (unsigned int)Height2Pixel (num)) /* ------------------------------------------------------------------------- * * SCREEN `COMMON' ROUTINES * * ------------------------------------------------------------------------- */ /* Fill part/all of a line with blanks. */ void rxvt_term::scr_blank_line (line_t &l, unsigned int col, unsigned int width, rend_t efs) { if (!l.t) { lalloc (l); col = 0; width = ncol; } efs &= ~RS_baseattrMask; efs = SET_FONT (efs, FONTSET (efs)->find_font (' ')); text_t *et = l.t + col; rend_t *er = l.r + col; while (width--) { *et++ = ' '; *er++ = efs; } } /* ------------------------------------------------------------------------- */ /* Fill a full line with blanks - make sure it is allocated first */ void rxvt_term::scr_blank_screen_mem (line_t &l, rend_t efs) { scr_blank_line (l, 0, ncol, efs); } /* ------------------------------------------------------------------------- * * SCREEN INITIALISATION * * ------------------------------------------------------------------------- */ void rxvt_term::scr_reset () { #if ENABLE_OVERLAY scr_overlay_off (); #endif view_start = 0; num_scr = 0; if (ncol == 0) ncol = 80; if (nrow == 0) nrow = 24; if (ncol == prev_ncol && nrow == prev_nrow) return; // we need at least two lines for wrapping to work correctly if (nrow + saveLines < 2) { //TODO//FIXME saveLines++; prev_nrow--; nsaved++; } want_refresh = 1; int prev_total_rows = prev_nrow + saveLines; total_rows = nrow + saveLines; screen.tscroll = 0; screen.bscroll = nrow - 1; if (!row_buf) { /* * first time called so just malloc everything: don't rely on realloc * Note: this is still needed so that all the scrollback lines are NULL */ nsaved = 0; /* no saved lines */ term_start = 0; talloc = new rxvt_salloc (ncol * sizeof (text_t)); ralloc = new rxvt_salloc (ncol * sizeof (rend_t)); row_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t)); temp_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t)); drawn_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t)); swap_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t)); for (int row = nrow; row--; ) { scr_blank_screen_mem (ROW (row), DEFAULT_RSTYLE); scr_blank_screen_mem (swap_buf [row], DEFAULT_RSTYLE); scr_blank_screen_mem (drawn_buf[row], DEFAULT_RSTYLE); } memset (charsets, 'B', sizeof (charsets)); rstyle = DEFAULT_RSTYLE; screen.flags = Screen_DefaultFlags; screen.cur.row = screen.cur.col = 0; screen.charset = 0; current_screen = PRIMARY; scr_cursor (SAVE); #if NSCREENS swap.flags = Screen_DefaultFlags; swap.cur.row = swap.cur.col = 0; swap.charset = 0; current_screen = SECONDARY; scr_cursor (SAVE); current_screen = PRIMARY; #endif selection.text = NULL; selection.len = 0; selection.op = SELECTION_CLEAR; selection.screen = PRIMARY; selection.clicks = 0; CLEAR_ALL_SELECTION (); rvideo = 0; } else { /* * add or delete rows as appropriate */ rxvt_salloc *old_ta = talloc; talloc = new rxvt_salloc (ncol * sizeof (text_t)); rxvt_salloc *old_ra = ralloc; ralloc = new rxvt_salloc (ncol * sizeof (rend_t)); #if 0 if (nrow < prev_nrow) { for (int row = nrow; row < prev_nrow; row++) { lfree (swap_buf [row]); lfree (drawn_buf[row]); } } #endif drawn_buf = (line_t *)rxvt_realloc (drawn_buf, nrow * sizeof (line_t)); temp_buf = (line_t *)rxvt_realloc (temp_buf , nrow * sizeof (line_t)); swap_buf = (line_t *)rxvt_realloc (swap_buf , nrow * sizeof (line_t)); for (int row = min (nrow, prev_nrow); row--; ) { lresize (drawn_buf[row]); lresize (swap_buf [row]); } for (int row = prev_nrow; row < nrow; row++) { swap_buf [row].clear (); scr_blank_screen_mem (swap_buf [row], DEFAULT_RSTYLE); drawn_buf[row].clear (); scr_blank_screen_mem (drawn_buf[row], DEFAULT_RSTYLE); } line_t *old_buf = row_buf; row_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t)); int p = MOD (term_start + prev_nrow, prev_total_rows); // previous row int pend = MOD (term_start - nsaved , prev_total_rows); int q = total_rows; // rewrapped row if (nsaved) { // re-wrap lines, this is rather ugly, possibly because I am too dumb // to come up with a lean and mean algorithm. row_col_t ocur = screen.cur; ocur.row = MOD (term_start + ocur.row, prev_total_rows); do { p = MOD (p - 1, prev_total_rows); #ifdef DEBUG_STRICT assert (old_buf [MOD (p, prev_total_rows)].t); #endif int plines = 1; int llen = old_buf [MOD (p, prev_total_rows)].l; while (p != pend && old_buf [MOD (p - 1, prev_total_rows)].is_longer ()) { p = MOD (p - 1, prev_total_rows); plines++; llen += prev_ncol; } int qlines = max (0, (llen - 1) / ncol) + 1; // drop partial lines completely if (q < qlines) break; q -= qlines; int lofs = 0; line_t *qline; // re-assemble the full line by destination lines for (int qrow = q; qlines--; qrow++) { qline = row_buf + qrow; lalloc (*qline); qline->set_is_longer (); int qcol = 0; // fill a single destination line while (lofs < llen && qcol < ncol) { int prow = lofs / prev_ncol; int pcol = lofs % prev_ncol; prow = MOD (p + prow, prev_total_rows); // we only adjust the cursor _row_ and put it into // the topmost line of "long line" it was in, as // this seems to upset applications/shells/readline // least. if (prow == ocur.row) screen.cur.row = q - (total_rows - nrow); line_t &pline = old_buf [prow]; int len = min (min (prev_ncol - pcol, ncol - qcol), llen - lofs); assert (len); assert (pline.t); memcpy (qline->t + qcol, pline.t + pcol, len * sizeof (text_t)); memcpy (qline->r + qcol, pline.r + pcol, len * sizeof (rend_t)); lofs += len; qcol += len; } } qline->l = llen < ncol ? llen : MOD (llen - 1, ncol) + 1; scr_blank_line (*qline, qline->l, ncol - qline->l, DEFAULT_RSTYLE); } while (p != pend && q > 0); term_start = total_rows - nrow; nsaved = term_start - q; // make sure all terminal lines exist while (nsaved < 0) scr_blank_screen_mem (ROW (-++nsaved), DEFAULT_RSTYLE); } else { // if no scrollback exists (yet), wing, instead of wrap for (int row = min (nrow, prev_nrow); row--; ) { line_t &pline = old_buf [MOD (term_start + row, prev_total_rows)]; line_t &qline = row_buf [row]; qline = pline; lresize (qline); } for (int row = prev_nrow; row < nrow; row++) { row_buf [row].clear (); scr_blank_screen_mem (row_buf [row], DEFAULT_RSTYLE); } term_start = 0; } #ifdef DEBUG_STRICT for (int i = -nsaved; i < nrow; i++) assert (ROW (i).t); #endif free (old_buf); delete old_ta; delete old_ra; clamp_it (screen.cur.row, 0, nrow - 1); clamp_it (screen.cur.col, 0, ncol - 1); if (tabs) free (tabs); } prev_nrow = nrow; prev_ncol = ncol; tabs = (char *)rxvt_malloc (ncol * sizeof (char)); for (int col = ncol; col--; ) tabs [col] = col % TABSIZE == 0; tt_winch (); } /* ------------------------------------------------------------------------- */ /* * Free everything. That way malloc debugging can find leakage. */ void rxvt_term::scr_release () { delete talloc; talloc = 0; delete ralloc; ralloc = 0; free (row_buf); free (swap_buf); free (drawn_buf); free (temp_buf); free (tabs); row_buf = 0; // signal that we freed all the arrays } /* ------------------------------------------------------------------------- */ /* * Hard reset */ void rxvt_term::scr_poweron () { scr_release (); prev_nrow = prev_ncol = 0; scr_reset (); scr_clear (true); scr_refresh (SLOW_REFRESH); } /* ------------------------------------------------------------------------- * * PROCESS SCREEN COMMANDS * * ------------------------------------------------------------------------- */ /* * Save and Restore cursor * XTERM_SEQ: Save cursor : ESC 7 * XTERM_SEQ: Restore cursor: ESC 8 */ void rxvt_term::scr_cursor (int mode) { screen_t *s; #if NSCREENS && !defined(NO_SECONDARY_SCREEN_CURSOR) if (current_screen == SECONDARY) s = &swap; else #endif s = &screen; switch (mode) { case SAVE: s->s_cur.row = screen.cur.row; s->s_cur.col = screen.cur.col; s->s_rstyle = rstyle; s->s_charset = screen.charset; s->s_charset_char = charsets[screen.charset]; break; case RESTORE: want_refresh = 1; screen.cur.row = s->s_cur.row; screen.cur.col = s->s_cur.col; screen.flags &= ~Screen_WrapNext; rstyle = s->s_rstyle; screen.charset = s->s_charset; charsets[screen.charset] = s->s_charset_char; set_font_style (); break; } /* boundary check in case screen size changed between SAVE and RESTORE */ min_it (s->cur.row, nrow - 1); min_it (s->cur.col, ncol - 1); #ifdef DEBUG_STRICT assert (s->cur.row >= 0); assert (s->cur.col >= 0); #endif } /* ------------------------------------------------------------------------- */ /* * Swap between primary and secondary screens * XTERM_SEQ: Primary screen : ESC [ ? 4 7 h * XTERM_SEQ: Secondary screen: ESC [ ? 4 7 l */ int rxvt_term::scr_change_screen (int scrn) { want_refresh = 1; view_start = 0; if (current_screen == scrn) return scrn; selection_check (2); /* check for boundary cross */ int i = current_screen; current_screen = scrn; scrn = i; ::swap (screen.cur.row, swap.cur.row); ::swap (screen.cur.col, swap.cur.col); screen.cur.row = clamp (screen.cur.row, 0, prev_nrow - 1); screen.cur.col = clamp (screen.cur.col, 0, prev_ncol - 1); #if NSCREENS if (options & Opt_secondaryScreen) { num_scr = 0; for (int i = prev_nrow; i--; ) ::swap (ROW(i), swap_buf [i]); ::swap (screen.charset, swap.charset); ::swap (screen.flags, swap.flags); screen.flags |= Screen_VisibleCursor; swap.flags |= Screen_VisibleCursor; } else #endif if (options & Opt_secondaryScroll) scr_scroll_text (0, prev_nrow - 1, prev_nrow); return scrn; } // clear WrapNext indicator, solidifying position on next line void rxvt_term::scr_do_wrap () { if (!(screen.flags & Screen_WrapNext)) return; screen.flags &= ~Screen_WrapNext; screen.cur.col = 0; if (screen.cur.row == screen.bscroll) scr_scroll_text (screen.tscroll, screen.bscroll, 1); else if (screen.cur.row < nrow - 1) screen.cur.row++; } /* ------------------------------------------------------------------------- */ /* * Change the colour for following text */ void rxvt_term::scr_color (unsigned int color, int fgbg) { if (color > maxTermCOLOR) color = fgbg; if (fgbg == Color_fg) rstyle = SET_FGCOLOR (rstyle, color); else rstyle = SET_BGCOLOR (rstyle, color); } /* ------------------------------------------------------------------------- */ /* * Change the rendition style for following text */ void rxvt_term::scr_rendition (int set, int style) { if (set) rstyle |= style; else if (style == ~RS_None) rstyle = DEFAULT_RSTYLE; else rstyle &= ~style; } /* ------------------------------------------------------------------------- */ /* * Scroll text between and inclusive, by lines * count positive ==> scroll up * count negative ==> scroll down */ int rxvt_term::scr_scroll_text (int row1, int row2, int count) { if (count == 0 || (row1 > row2)) return 0; want_refresh = 1; num_scr += count; if (count > 0 && row1 == 0 && row2 == nrow - 1 && (current_screen == PRIMARY || options & Opt_secondaryScroll)) { nsaved = min (nsaved + count, saveLines); term_start = (term_start + count) % total_rows; if (selection.op && current_screen == selection.screen) { selection.beg.row -= count; selection.end.row -= count; selection.mark.row -= count; selection_check (0); } for (int i = count; i--; ) scr_blank_screen_mem (ROW(row2 - i), rstyle); if ((options & Opt_scrollWithBuffer) && view_start != 0 && view_start != saveLines) scr_page (UP, count); } else { if (selection.op && current_screen == selection.screen) { int i = selection.beg.row; int j = selection.end.row; if ((i < row1 && j > row1) || (i < row2 && j > row2) || (i - count < row1 && i >= row1) || (i - count > row2 && i <= row2) || (j - count < row1 && j >= row1) || (j - count > row2 && j <= row2)) { CLEAR_ALL_SELECTION (); selection.op = SELECTION_CLEAR; /* XXX: too aggressive? */ } else if (j >= row1 && j <= row2) { /* move selected region too */ selection.beg.row -= count; selection.end.row -= count; selection.mark.row -= count; selection_check (0); } } // use a simple and robust scrolling algorithm, this // part of scr_scroll_text is not time-critical. int rows = row2 - row1 + 1; min_it (count, rows); for (int row = 0; row < rows; row++) { temp_buf [row] = ROW(row1 + (row + count + rows) % rows); if (!IN_RANGE_EXC (row + count, 0, rows)) scr_blank_screen_mem (temp_buf [row], rstyle); } for (int row = 0; row < rows; row++) ROW(row1 + row) = temp_buf [row]; } return count; } /* ------------------------------------------------------------------------- */ /* * Add text given in of length to screen struct */ void rxvt_term::scr_add_lines (const unicode_t *str, int nlines, int len) { if (len <= 0) /* sanity */ return; unsigned char checksel; unicode_t c; int row, last_col; const unicode_t *strend = str + len; want_refresh = 1; ZERO_SCROLLBACK (); last_col = ncol; if (nlines > 0) { nlines += screen.cur.row - screen.bscroll; if (nlines > 0 && screen.tscroll == 0 && screen.bscroll == (nrow - 1)) { /* _at least_ this many lines need to be scrolled */ scr_scroll_text (screen.tscroll, screen.bscroll, nlines); screen.cur.row -= nlines; } } #ifdef DEBUG_STRICT assert (screen.cur.col < last_col); assert (screen.cur.row < nrow && screen.cur.row >= -nsaved); #endif row = screen.cur.row; checksel = selection.op && current_screen == selection.screen ? 1 : 0; line_t *line = &ROW(row); while (str < strend) { c = *str++; if (c < 0x20) if (c == C0_LF) { if (!line->is_longer ()) /* XXX: think about this */ max_it (line->l, screen.cur.col); screen.flags &= ~Screen_WrapNext; if (screen.cur.row == screen.bscroll) scr_scroll_text (screen.tscroll, screen.bscroll, 1); else if (screen.cur.row < (nrow - 1)) row = ++screen.cur.row; line = &ROW(row); /* _must_ refresh */ continue; } else if (c == C0_CR) { if (!line->is_longer ()) /* XXX: think about this */ max_it (line->l, screen.cur.col); screen.flags &= ~Screen_WrapNext; screen.cur.col = 0; continue; } else if (c == C0_HT) { scr_tab (1, true); continue; } if (checksel /* see if we're writing within selection */ && !ROWCOL_IS_BEFORE (screen.cur, selection.beg) && ROWCOL_IS_BEFORE (screen.cur, selection.end)) { checksel = 0; /* * If we wrote anywhere in the selected area, kill the selection * XXX: should we kill the mark too? Possibly, but maybe that * should be a similar check. */ CLEAR_SELECTION (); } if (screen.flags & Screen_WrapNext) { line->set_is_longer (); scr_do_wrap (); row = screen.cur.row; line = &ROW(row); /* _must_ refresh */ } // some utf-8 decoders "decode" surrogate characters: let's fix this. if (IN_RANGE_INC (c, 0xd800, 0xdfff)) c = 0xfffd; // rely on wcwidth to tell us the character width, at least for non-latin1 // do wcwidth before further replacements, as wcwidth might return -1 // for the line drawing characters below as they might be invalid in the current // locale. int width = c < 0x100 ? 1 : wcwidth (c); if (charsets[screen.charset] == '0') // DEC SPECIAL { // vt100 special graphics and line drawing // 5f-7e standard vt100 // 40-5e rxvt extension for extra curses acs chars static uint16_t vt100_0[62] = { // 41 .. 7e 0x2191, 0x2193, 0x2192, 0x2190, 0x2588, 0x259a, 0x2603, // 41-47 hi mr. snowman! 0, 0, 0, 0, 0, 0, 0, 0, // 48-4f 0, 0, 0, 0, 0, 0, 0, 0, // 50-57 0, 0, 0, 0, 0, 0, 0, 0x0020, // 58-5f 0x25c6, 0x2592, 0x2409, 0x240c, 0x240d, 0x240a, 0x00b0, 0x00b1, // 60-67 0x2424, 0x240b, 0x2518, 0x2510, 0x250c, 0x2514, 0x253c, 0x23ba, // 68-6f 0x23bb, 0x2500, 0x23bc, 0x23bd, 0x251c, 0x2524, 0x2534, 0x252c, // 70-77 0x2502, 0x2264, 0x2265, 0x03c0, 0x2260, 0x00a3, 0x00b7, // 78-7e }; if (c >= 0x41 && c <= 0x7e && vt100_0[c - 0x41]) { c = vt100_0[c - 0x41]; width = 1; // vt100 line drawing characters are always single-width } } if (screen.flags & Screen_Insert) scr_insdel_chars (width, INSERT); if (width != 0) { #if !UNICODE_3 // trim characters we can't store directly :( if (c >= 0x10000) # if ENABLE_COMBINING c = rxvt_composite.compose (c); // map to lower 16 bits # else c = 0xfffd; # endif #endif // nuke the character at this position, if required if (line->t[screen.cur.col] == NOCHAR || (screen.cur.col < ncol - 1 && line->t[screen.cur.col + 1] == NOCHAR)) { int col = screen.cur.col; // find begin while (col > 0 && line->t[col] == NOCHAR) col--; rend_t rend = SET_FONT (line->r[col], FONTSET (line->r[col])->find_font (' ')); // found begin, nuke do { line->t[col] = ' '; line->r[col] = rend; col++; } while (col < ncol && line->t[col] == NOCHAR); } rend_t rend = SET_FONT (rstyle, FONTSET (rstyle)->find_font (c)); // if the character doesn't fit into the remaining columns... if (screen.cur.col > last_col - width && last_col >= width) { // ...output spaces c = ' '; // and try the same character next loop iteration --str; } do { line->t[screen.cur.col] = c; line->r[screen.cur.col] = rend; if (screen.cur.col < last_col - 1) screen.cur.col++; else { line->l = last_col; if (screen.flags & Screen_Autowrap) screen.flags |= Screen_WrapNext; break; } c = NOCHAR; } while (--width > 0); // pad with spaces when overwriting wide character with smaller one if (!width) for (int c = screen.cur.col; c < last_col && line->t[c] == NOCHAR; c++) { line->t[c] = ' '; line->r[c] = rend; } } else // width == 0 { #if ENABLE_COMBINING // handle combining characters // we just tag the accent on the previous on-screen character. // this is arguably not correct, but also arguably not wrong. // we don't handle double-width characters nicely yet. text_t *tp; rend_t *rp; if (screen.cur.col > 0) { tp = line->t + screen.cur.col - 1; rp = line->r + screen.cur.col - 1; while (*tp == NOCHAR && tp > line->t) tp--, rp--; } else if (screen.cur.row > 0 && ROW(screen.cur.row - 1).is_longer ()) { line_t *line = &ROW(screen.cur.row - 1); tp = line->t + last_col - 1; rp = line->r + last_col - 1; while (*tp == NOCHAR && tp > line->t) tp--, rp--; } else continue; // first try to find a precomposed character unicode_t n = rxvt_compose (*tp, c); if (n == NOCHAR) n = rxvt_composite.compose (*tp, c); *tp = n; *rp = SET_FONT (*rp, FONTSET (*rp)->find_font (*tp)); #endif } } if (!line->is_longer ()) /* XXX: think about this */ max_it (line->l, screen.cur.col); #ifdef DEBUG_STRICT assert (screen.cur.row >= 0); #endif } /* ------------------------------------------------------------------------- */ /* * Process Backspace. Move back the cursor back a position, wrap if have to * XTERM_SEQ: CTRL-H */ void rxvt_term::scr_backspace () { want_refresh = 1; if (screen.cur.col == 0) { if (screen.cur.row > 0) { #ifdef TERMCAP_HAS_BW screen.cur.col = ncol - 1; screen.cur.row--; return; #endif } } else if (!(screen.flags & Screen_WrapNext)) scr_gotorc (0, -1, RELATIVE); screen.flags &= ~Screen_WrapNext; } /* ------------------------------------------------------------------------- */ /* * Process Horizontal Tab * count: +ve = forward; -ve = backwards * XTERM_SEQ: CTRL-I */ void rxvt_term::scr_tab (int count, bool ht) { int i, x; want_refresh = 1; i = x = screen.cur.col; if (count == 0) return; else if (count > 0) { int row = screen.cur.row; line_t &l = ROW(row); rend_t base_rend = l.r[i]; ht &= l.t[i] == ' '; for (; ++i < ncol; ) if (tabs[i]) { x = i; if (!--count) break; } else ht &= l.t[i] == ' ' && RS_SAME (l.r[i], base_rend); if (count) x = ncol - 1; // store horizontal tab commands as characters inside the text // buffer so they can be selected and pasted. if (ht && options & Opt_pastableTabs) { base_rend = SET_FONT (base_rend, 0); if (!l.is_longer ()) /* XXX: think about this */ max_it (l.l, x); i = screen.cur.col; l.t[i] = '\t'; l.r[i] = base_rend; while (++i < x) { l.t[i] = NOCHAR; l.r[i] = base_rend; } } } else /* if (count < 0) */ { for (; --i >= 0; ) if (tabs[i]) { x = i; if (!++count) break; } if (count) x = 0; } if (x != screen.cur.col) scr_gotorc (0, x, R_RELATIVE); } /* ------------------------------------------------------------------------- */ /* * Process DEC Back Index * XTERM_SEQ: ESC 6 * Move cursor left in row. If we're at the left boundary, shift everything * in that row right. Clear left column. */ #if ENABLE_FRILLS void rxvt_term::scr_backindex () { if (screen.cur.col > 0) scr_gotorc (0, -1, R_RELATIVE | C_RELATIVE); else scr_insdel_chars (1, INSERT); } #endif /* ------------------------------------------------------------------------- */ /* * Process DEC Forward Index * XTERM_SEQ: ESC 9 * Move cursor right in row. If we're at the right boundary, shift everything * in that row left. Clear right column. */ #if ENABLE_FRILLS void rxvt_term::scr_forwardindex () { int row; if (screen.cur.col < ncol - 1) scr_gotorc (0, 1, R_RELATIVE | C_RELATIVE); else { row = screen.cur.row; if (ROW(row).is_longer ()) //TODO//FIXME//LEN ROW(row).l = ncol; scr_gotorc (0, 0, R_RELATIVE); scr_insdel_chars (1, DELETE); scr_gotorc (0, ncol - 1, R_RELATIVE); } } #endif /* ------------------------------------------------------------------------- */ /* * Goto Row/Column */ void rxvt_term::scr_gotorc (int row, int col, int relative) { want_refresh = 1; ZERO_SCROLLBACK (); screen.cur.col = relative & C_RELATIVE ? screen.cur.col + col : col; clamp_it (screen.cur.col, 0, ncol - 1); screen.flags &= ~Screen_WrapNext; if (relative & R_RELATIVE) { if (row > 0) { if (screen.cur.row <= screen.bscroll && (screen.cur.row + row) > screen.bscroll) screen.cur.row = screen.bscroll; else screen.cur.row += row; } else if (row < 0) { if (screen.cur.row >= screen.tscroll && (screen.cur.row + row) < screen.tscroll) screen.cur.row = screen.tscroll; else screen.cur.row += row; } } else { if (screen.flags & Screen_Relative) { /* relative origin mode */ screen.cur.row = row + screen.tscroll; min_it (screen.cur.row, screen.bscroll); } else screen.cur.row = row; } clamp_it (screen.cur.row, 0, nrow - 1); } /* ------------------------------------------------------------------------- */ /* * direction should be UP or DN */ void rxvt_term::scr_index (enum page_dirn direction) { int dirn; want_refresh = 1; ZERO_SCROLLBACK (); dirn = ((direction == UP) ? 1 : -1); screen.flags &= ~Screen_WrapNext; if ((screen.cur.row == screen.bscroll && direction == UP) || (screen.cur.row == screen.tscroll && direction == DN)) scr_scroll_text (screen.tscroll, screen.bscroll, dirn); else screen.cur.row += dirn; clamp_it (screen.cur.row, 0, nrow - 1); selection_check (0); } /* ------------------------------------------------------------------------- */ /* * Erase part or whole of a line * XTERM_SEQ: Clear line to right: ESC [ 0 K * XTERM_SEQ: Clear line to left : ESC [ 1 K * XTERM_SEQ: Clear whole line : ESC [ 2 K */ void rxvt_term::scr_erase_line (int mode) { unsigned int row, col, num; want_refresh = 1; ZERO_SCROLLBACK (); selection_check (1); row = screen.cur.row; switch (mode) { case 0: /* erase to end of line */ col = screen.cur.col; num = ncol - col; min_it (ROW(row).l, col); if (ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur) || ROWCOL_IN_ROW_AT_OR_AFTER (selection.end, screen.cur)) CLEAR_SELECTION (); break; case 1: /* erase to beginning of line */ col = 0; num = screen.cur.col + 1; if (ROWCOL_IN_ROW_AT_OR_BEFORE (selection.beg, screen.cur) || ROWCOL_IN_ROW_AT_OR_BEFORE (selection.end, screen.cur)) CLEAR_SELECTION (); break; case 2: /* erase whole line */ col = 0; num = ncol; ROW(row).l = 0; if (selection.beg.row <= screen.cur.row && selection.end.row >= screen.cur.row) CLEAR_SELECTION (); break; default: return; } scr_blank_line (ROW(row), col, num, rstyle); } /* ------------------------------------------------------------------------- */ /* * Erase part of whole of the screen * XTERM_SEQ: Clear screen after cursor : ESC [ 0 J * XTERM_SEQ: Clear screen before cursor: ESC [ 1 J * XTERM_SEQ: Clear whole screen : ESC [ 2 J */ void rxvt_term::scr_erase_screen (int mode) { int num; int32_t row; rend_t ren; XGCValues gcvalue; want_refresh = 1; ZERO_SCROLLBACK (); switch (mode) { case 0: /* erase to end of screen */ selection_check (1); scr_erase_line (0); row = screen.cur.row + 1; /* possible OOB */ num = nrow - row; break; case 1: /* erase to beginning of screen */ selection_check (3); scr_erase_line (1); row = 0; num = screen.cur.row; break; case 2: /* erase whole screen */ selection_check (3); row = 0; num = nrow; break; default: return; } if (selection.op && current_screen == selection.screen && ((selection.beg.row >= row && selection.beg.row <= row + num) || (selection.end.row >= row && selection.end.row <= row + num))) CLEAR_SELECTION (); if (row >= nrow) /* Out Of Bounds */ return; min_it (num, nrow - row); if (rstyle & (RS_RVid | RS_Uline)) ren = (rend_t) ~RS_None; else if (GET_BASEBG (rstyle) == Color_bg) { ren = DEFAULT_RSTYLE; CLEAR_ROWS (row, num); } else { ren = rstyle & (RS_fgMask | RS_bgMask); gcvalue.foreground = pix_colors[GET_BGCOLOR (rstyle)]; XChangeGC (display->display, gc, GCForeground, &gcvalue); ERASE_ROWS (row, num); gcvalue.foreground = pix_colors[Color_fg]; XChangeGC (display->display, gc, GCForeground, &gcvalue); } for (; num--; row++) { scr_blank_screen_mem (ROW (row), rstyle); ROW (row).l = 0; scr_blank_line (drawn_buf [row], 0, ncol, ren); } } #if ENABLE_FRILLS void rxvt_term::scr_erase_savelines () { want_refresh = 1; ZERO_SCROLLBACK (); nsaved = 0; } #endif /* ------------------------------------------------------------------------- */ /* * Fill the screen with `E's * XTERM_SEQ: Screen Alignment Test: ESC # 8 */ void rxvt_term::scr_E () { rend_t fs; want_refresh = 1; ZERO_SCROLLBACK (); num_scr_allow = 0; selection_check (3); fs = SET_FONT (rstyle, FONTSET (rstyle)->find_font ('E')); for (int row = nrow; row--; ) { line_t &line = ROW(row); fill_text (line.t, 'E', ncol); rend_t *r1 = line.r; for (int j = ncol; j--; ) *r1++ = fs; line.l = ncol; /* make the `E's selectable */ } } /* ------------------------------------------------------------------------- */ /* * Insert/Delete lines */ void rxvt_term::scr_insdel_lines (int count, int insdel) { int end; ZERO_SCROLLBACK (); selection_check (1); if (screen.cur.row > screen.bscroll) return; end = screen.bscroll - screen.cur.row + 1; if (count > end) { if (insdel == DELETE) return; else if (insdel == INSERT) count = end; } scr_do_wrap (); scr_scroll_text (screen.cur.row, screen.bscroll, insdel * count); } /* ------------------------------------------------------------------------- */ /* * Insert/Delete characters from the current position */ void rxvt_term::scr_insdel_chars (int count, int insdel) { int col, row; rend_t tr; want_refresh = 1; ZERO_SCROLLBACK (); if (count <= 0) return; scr_do_wrap (); selection_check (1); min_it (count, ncol - screen.cur.col); row = screen.cur.row; line_t *line = &ROW(row); switch (insdel) { case INSERT: for (col = ncol - 1; (col - count) >= screen.cur.col; col--) { line->t[col] = line->t[col - count]; line->r[col] = line->r[col - count]; } if (!line->is_longer ()) { line->l += count; min_it (line->l, ncol); } if (selection.op && current_screen == selection.screen && ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur)) { if (selection.end.row != screen.cur.row || (selection.end.col + count >= ncol)) CLEAR_SELECTION (); else { /* shift selection */ selection.beg.col += count; selection.mark.col += count; /* XXX: yes? */ selection.end.col += count; } } scr_blank_line (*line, screen.cur.col, count, rstyle); break; case ERASE: screen.cur.col += count; /* don't worry if > ncol */ selection_check (1); screen.cur.col -= count; scr_blank_line (*line, screen.cur.col, count, rstyle); break; case DELETE: tr = line->r[ncol - 1] & (RS_fgMask | RS_bgMask | RS_baseattrMask); for (col = screen.cur.col; (col + count) < ncol; col++) { line->t[col] = line->t[col + count]; line->r[col] = line->r[col + count]; } scr_blank_line (*line, ncol - count, count, tr); if (line->is_longer ()) /* break line continuation */ line->l = ncol; line->l = max (line->l - count, 0); if (selection.op && current_screen == selection.screen && ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur)) { if (selection.end.row != screen.cur.row || (screen.cur.col >= selection.beg.col - count) || selection.end.col >= ncol) CLEAR_SELECTION (); else { /* shift selection */ selection.beg.col -= count; selection.mark.col -= count; /* XXX: yes? */ selection.end.col -= count; } } break; } } /* ------------------------------------------------------------------------- */ /* * Set the scrolling region * XTERM_SEQ: Set region - inclusive: ESC [ ; r */ void rxvt_term::scr_scroll_region (int top, int bot) { max_it (top, 0); min_it (bot, nrow - 1); if (top > bot) return; screen.tscroll = top; screen.bscroll = bot; scr_gotorc (0, 0, 0); } /* ------------------------------------------------------------------------- */ /* * Make the cursor visible/invisible * XTERM_SEQ: Make cursor visible : ESC [ ? 25 h * XTERM_SEQ: Make cursor invisible: ESC [ ? 25 l */ void rxvt_term::scr_cursor_visible (int mode) { want_refresh = 1; if (mode) screen.flags |= Screen_VisibleCursor; else screen.flags &= ~Screen_VisibleCursor; } /* ------------------------------------------------------------------------- */ /* * Set/unset automatic wrapping * XTERM_SEQ: Set Wraparound : ESC [ ? 7 h * XTERM_SEQ: Unset Wraparound: ESC [ ? 7 l */ void rxvt_term::scr_autowrap (int mode) { if (mode) screen.flags |= Screen_Autowrap; else screen.flags &= ~(Screen_Autowrap | Screen_WrapNext); } /* ------------------------------------------------------------------------- */ /* * Set/unset margin origin mode * Absolute mode: line numbers are counted relative to top margin of screen * and the cursor can be moved outside the scrolling region. * Relative mode: line numbers are relative to top margin of scrolling region * and the cursor cannot be moved outside. * XTERM_SEQ: Set Absolute: ESC [ ? 6 h * XTERM_SEQ: Set Relative: ESC [ ? 6 l */ void rxvt_term::scr_relative_origin (int mode) { if (mode) screen.flags |= Screen_Relative; else screen.flags &= ~Screen_Relative; scr_gotorc (0, 0, 0); } /* ------------------------------------------------------------------------- */ /* * Set insert/replace mode * XTERM_SEQ: Set Insert mode : ESC [ ? 4 h * XTERM_SEQ: Set Replace mode: ESC [ ? 4 l */ void rxvt_term::scr_insert_mode (int mode) { if (mode) screen.flags |= Screen_Insert; else screen.flags &= ~Screen_Insert; } /* ------------------------------------------------------------------------- */ /* * Set/Unset tabs * XTERM_SEQ: Set tab at current column : ESC H * XTERM_SEQ: Clear tab at current column: ESC [ 0 g * XTERM_SEQ: Clear all tabs : ESC [ 3 g */ void rxvt_term::scr_set_tab (int mode) { if (mode < 0) memset (tabs, 0, ncol * sizeof (char)); else if (screen.cur.col < ncol) tabs[screen.cur.col] = (mode ? 1 : 0); } /* ------------------------------------------------------------------------- */ /* * Set reverse/normal video * XTERM_SEQ: Reverse video: ESC [ ? 5 h * XTERM_SEQ: Normal video : ESC [ ? 5 l */ void rxvt_term::scr_rvideo_mode (int mode) { XGCValues gcvalue; if (rvideo != mode) { rvideo = mode; ::swap (pix_colors[Color_fg], pix_colors[Color_bg]); #if XPM_BACKGROUND if (bgPixmap.pixmap == None) #endif #if TRANSPARENT if (! (options & Opt_transparent) || am_transparent == 0) #endif XSetWindowBackground (display->display, vt, pix_colors[Color_bg]); gcvalue.foreground = pix_colors[Color_fg]; gcvalue.background = pix_colors[Color_bg]; XChangeGC (display->display, gc, GCBackground | GCForeground, &gcvalue); scr_clear (); scr_touch (true); } } /* ------------------------------------------------------------------------- */ /* * Report current cursor position * XTERM_SEQ: Report position: ESC [ 6 n */ void rxvt_term::scr_report_position () { tt_printf ("\033[%d;%dR", screen.cur.row + 1, screen.cur.col + 1); } /* ------------------------------------------------------------------------- * * FONTS * * ------------------------------------------------------------------------- */ /* * Set font style */ void rxvt_term::set_font_style () { switch (charsets[screen.charset]) { case '0': /* DEC Special Character & Line Drawing Set */ break; case 'A': /* United Kingdom (UK) */ break; case 'B': /* United States (USASCII) */ break; case '<': /* Multinational character set */ break; case '5': /* Finnish character set */ break; case 'C': /* Finnish character set */ break; case 'K': /* German character set */ break; } } /* ------------------------------------------------------------------------- */ /* * Choose a font * XTERM_SEQ: Invoke G0 character set: CTRL-O * XTERM_SEQ: Invoke G1 character set: CTRL-N * XTERM_SEQ: Invoke G2 character set: ESC N * XTERM_SEQ: Invoke G3 character set: ESC O */ void rxvt_term::scr_charset_choose (int set) { screen.charset = set; set_font_style (); } /* ------------------------------------------------------------------------- */ /* * Set a font * XTERM_SEQ: Set G0 character set: ESC ( * XTERM_SEQ: Set G1 character set: ESC ) * XTERM_SEQ: Set G2 character set: ESC * * XTERM_SEQ: Set G3 character set: ESC + * See set_font_style for possible values for */ void rxvt_term::scr_charset_set (int set, unsigned int ch) { charsets[set] = (unsigned char)ch; set_font_style (); } /* ------------------------------------------------------------------------- * * MAJOR SCREEN MANIPULATION * * ------------------------------------------------------------------------- */ /* * refresh matching text. */ bool rxvt_term::scr_refresh_rend (rend_t mask, rend_t value) { bool found = false; for (int i = 0; i < nrow; i++) { int col = 0; rend_t *drp = drawn_buf[i].r; for (; col < ncol; col++, drp++) if ((*drp & mask) == value) { found = true; *drp = ~value; } } return found; } /* * Refresh an area */ enum { PART_BEG = 0, PART_END, RC_COUNT }; void rxvt_term::scr_expose (int x, int y, int ewidth, int eheight, bool refresh) { int i; row_col_t rc[RC_COUNT]; if (!drawn_buf) /* sanity check */ return; #ifndef NO_SLOW_LINK_SUPPORT if (refresh_type == FAST_REFRESH && !display->is_local) { y = 0; eheight = height; } #endif /* round down */ rc[PART_BEG].col = Pixel2Col (x); rc[PART_BEG].row = Pixel2Row (y); /* round up */ rc[PART_END].col = Pixel2Width (x + ewidth + fwidth - 1); rc[PART_END].row = Pixel2Row (y + eheight + fheight - 1); /* sanity checks */ for (i = PART_BEG; i < RC_COUNT; i++) { min_it (rc[i].col, ncol - 1); min_it (rc[i].row, nrow - 1); } for (i = rc[PART_BEG].row; i <= rc[PART_END].row; i++) fill_text (&drawn_buf[i].t[rc[PART_BEG].col], 0, rc[PART_END].col - rc[PART_BEG].col + 1); if (refresh) scr_refresh (SLOW_REFRESH); } /* ------------------------------------------------------------------------- */ /* * Refresh the entire screen */ void rxvt_term::scr_touch (bool refresh) { scr_expose (0, 0, width, height, refresh); } /* ------------------------------------------------------------------------- */ /* * Move the display so that the line represented by scrollbar value Y is at * the top of the screen */ int rxvt_term::scr_move_to (int y, int len) { long p = 0; unsigned int oldviewstart; oldviewstart = view_start; if (y < len) { p = (nrow + nsaved) * (len - y) / len; p -= (long) (nrow - 1); p = max (p, 0); } view_start = (unsigned int)min (p, nsaved); return scr_changeview (oldviewstart); } /* ------------------------------------------------------------------------- */ /* * Page the screen up/down nlines * direction should be UP or DN */ int rxvt_term::scr_page (enum page_dirn direction, int nlines) { int n; unsigned int oldviewstart; oldviewstart = view_start; if (direction == UP) { n = view_start + nlines; view_start = min (n, nsaved); } else { n = view_start - nlines; view_start = max (n, 0); } return scr_changeview (oldviewstart); } int rxvt_term::scr_changeview (unsigned int oldviewstart) { if (view_start != oldviewstart) { want_refresh = 1; num_scr -= (view_start - oldviewstart); } return (int) (view_start - oldviewstart); } /* ------------------------------------------------------------------------- */ void rxvt_term::scr_bell () { #ifndef NO_BELL # ifndef NO_MAPALERT # ifdef MAPALERT_OPTION if (options & Opt_mapAlert) # endif XMapWindow (display->display, parent[0]); # endif if (options & Opt_visualBell) { scr_rvideo_mode (!rvideo); /* refresh also done */ rxvt_usleep (VISUAL_BELL_DURATION); scr_rvideo_mode (!rvideo); /* refresh also done */ } else XBell (display->display, 0); #endif } /* ------------------------------------------------------------------------- */ /* ARGSUSED */ void rxvt_term::scr_printscreen (int fullhist) { #ifdef PRINTPIPE int nrows, row_start; FILE *fd; if ((fd = popen_printer ()) == NULL) return; if (fullhist) { nrows = nrow + nsaved; row_start = -nsaved; } else { nrows = nrow; row_start = -view_start; } wctomb (0, 0); for (int r1 = 0; r1 < nrows; r1++) { text_t *tp = ROW(r1).t; int len = ROW(r1).l; for (int i = len >= 0 ? len : ncol - 1; i--; ) //TODO//FIXME//LEN { char mb[MB_LEN_MAX]; text_t t = *tp++; if (t == NOCHAR) continue; len = wctomb (mb, t); if (len <= 0) { mb[0] = ' '; len = 1; } fwrite (mb, 1, len, fd); } fputc ('\n', fd); } pclose_printer (fd); #endif } /* ------------------------------------------------------------------------- */ /* * Refresh the screen * drawn_text/drawn_rend contain the screen information before the update. * screen.text/screen.rend contain what the screen will change to. */ void rxvt_term::scr_refresh (unsigned char refresh_type) { unsigned char must_clear, /* use draw_string not draw_image_string */ showcursor; /* show the cursor */ int16_t col, row, /* column/row we're processing */ ocrow; /* old cursor row */ int i; /* tmp */ #ifndef NO_CURSORCOLOR rend_t cc1; /* store colours at cursor position (s) */ #endif rend_t *crp; // cursor rendition pointer want_refresh = 0; /* screen is current */ if (refresh_type == NO_REFRESH || !mapped) return; /* * A: set up vars */ must_clear = 0; refresh_count = 0; #if XPM_BACKGROUND must_clear |= bgPixmap.pixmap != None; #endif #if TRANSPARENT must_clear |= (options & Opt_transparent) && am_transparent; #endif ocrow = oldcursor.row; /* is there an old outline cursor on screen? */ /* * B: reverse any characters which are selected */ scr_reverse_selection (); /* * C: set the cursor character (s) */ { unsigned char setoldcursor; rend_t ccol1, /* Cursor colour */ ccol2; /* Cursor colour2 */ showcursor = (screen.flags & Screen_VisibleCursor); #ifdef CURSOR_BLINK if (hidden_cursor) showcursor = 0; #endif if (showcursor) { int col = screen.cur.col; while (col && ROW(screen.cur.row).t[col] == NOCHAR) col--; crp = &ROW(screen.cur.row).r[col]; if (showcursor && focus) { if (options & Opt_cursorUnderline) *crp ^= RS_Uline; else { *crp ^= RS_RVid; #ifndef NO_CURSORCOLOR cc1 = *crp & (RS_fgMask | RS_bgMask); if (ISSET_PIXCOLOR (Color_cursor)) ccol1 = Color_cursor; else #ifdef CURSOR_COLOR_IS_RENDITION_COLOR ccol1 = GET_FGCOLOR (rstyle); #else ccol1 = Color_fg; #endif if (ISSET_PIXCOLOR (Color_cursor2)) ccol2 = Color_cursor2; else #ifdef CURSOR_COLOR_IS_RENDITION_COLOR ccol2 = GET_BGCOLOR (rstyle); #else ccol2 = Color_bg; #endif *crp = SET_FGCOLOR (*crp, ccol1); *crp = SET_BGCOLOR (*crp, ccol2); #endif } } } /* make sure no outline cursor is left around */ setoldcursor = 0; if (ocrow != -1) { if (screen.cur.row + view_start != ocrow || screen.cur.col != oldcursor.col) { if (ocrow < nrow && oldcursor.col < ncol) drawn_buf[ocrow].r[oldcursor.col] ^= (RS_RVid | RS_Uline); if (focus || !showcursor) oldcursor.row = -1; else setoldcursor = 1; } } else if (!focus) setoldcursor = 1; if (setoldcursor) { if (screen.cur.row + view_start >= nrow) oldcursor.row = -1; else { oldcursor.row = screen.cur.row + view_start; oldcursor.col = screen.cur.col; } } } #if ENABLE_OVERLAY scr_swap_overlay (); #endif #ifndef NO_SLOW_LINK_SUPPORT /* * D: CopyArea pass - very useful for slower links * This has been deliberately kept simple. */ i = num_scr; if (!display->is_local && refresh_type == FAST_REFRESH && num_scr_allow && num_scr && abs (num_scr) < nrow && !must_clear) { int16_t nits; int j; int len, wlen; j = nrow; wlen = len = -1; row = i > 0 ? 0 : j - 1; for (; j-- >= 0; row += (i > 0 ? 1 : -1)) { if (row + i >= 0 && row + i < nrow && row + i != ocrow) { line_t s = ROW(row - view_start); line_t d = drawn_buf[row]; line_t d2 = drawn_buf[row + i]; for (nits = 0, col = ncol; col--; ) if (s.t[col] != d2.t[col] || s.r[col] != d2.r[col]) nits--; else if (s.t[col] != d.t[col] || s.r[col] != d.r[col]) nits++; if (nits > 8) /* XXX: arbitrary choice */ { for (col = ncol; col--; ) { *d.t++ = *d2.t++; *d.r++ = *d2.r++; } if (len == -1) len = row; wlen = row; continue; } } if (len != -1) { /* also comes here at end if needed because of >= above */ if (wlen < len) ::swap (wlen, len); XCopyArea (display->display, vt, vt, gc, 0, Row2Pixel (len + i), (unsigned int)TermWin_TotalWidth (), (unsigned int)Height2Pixel (wlen - len + 1), 0, Row2Pixel (len)); len = -1; } } } #endif /* * E: main pass across every character */ for (row = 0; row < nrow; row++) { text_t *stp = ROW(row - view_start).t; rend_t *srp = ROW(row - view_start).r; text_t *dtp = drawn_buf[row].t; rend_t *drp = drawn_buf[row].r; /* * E2: OK, now the real pass */ int ypixel = (int)Row2Pixel (row); for (col = 0; col < ncol; col++) { /* compare new text with old - if exactly the same then continue */ if (stp[col] == dtp[col] /* Must match characters to skip. */ && (RS_SAME (srp[col], drp[col]) /* Either rendition the same or */ || (stp[col] == ' ' /* space w/ no background change */ && GET_BGATTR (srp[col]) == GET_BGATTR (drp[col])))) continue; // redraw one or more characters // seek to the beginning of wide characters while (stp[col] == NOCHAR && col > 0) --col; rend_t rend = srp[col]; /* screen rendition (target rendtion) */ text_t *text = stp + col; int count = 1; dtp[col] = stp[col]; drp[col] = rend; int xpixel = Col2Pixel (col); for (i = 0; ++col < ncol; ) { if (stp[col] == NOCHAR) { dtp[col] = stp[col]; drp[col] = rend; count++; i++; continue; } if (!RS_SAME (rend, srp[col])) break; count++; if (stp[col] != dtp[col] || !RS_SAME (srp[col], drp[col])) { if (must_clear && (i++ > count / 2)) break; dtp[col] = stp[col]; drp[col] = rend; i = 0; } else if (must_clear || (stp[col] != ' ' && ++i >= 16)) break; } col--; /* went one too far. move back */ count -= i; /* dump any matching trailing chars */ // sometimes we optimize away the trailing NOCHAR's, add them back while (i && text[count] == NOCHAR) count++, i--; /* * Determine the attributes for the string */ int fore = GET_FGCOLOR (rend); // desired foreground int back = GET_BGCOLOR (rend); // desired background // only do special processing if any attributes are set, which is rare if (rend & (RS_Bold | RS_Italic | RS_Uline | RS_RVid | RS_Blink | RS_Careful)) { #if ENABLE_STYLES // force redraw after "careful" characters to avoid pixel droppings if (srp[col] & RS_Careful && col < ncol - 1 && 0) drp[col + 1] = ~srp[col + 1]; // include previous careful character(s) if possible, looks nicer (best effort...) while (text > stp && srp[text - stp - 1] & RS_Careful && RS_SAME (rend, srp[text - stp - 1])) text--, count++, xpixel -= fwidth; #endif bool invert = rend & RS_RVid; #ifndef NO_BOLD_UNDERLINE_REVERSE if (rend & RS_Bold && fore == Color_fg) { if (ISSET_PIXCOLOR (Color_BD)) fore = Color_BD; # if !ENABLE_STYLES else invert = !invert; # endif } if (rend & RS_Italic && fore == Color_fg) { if (ISSET_PIXCOLOR (Color_IT)) fore = Color_IT; # if !ENABLE_STYLES else invert = !invert; # endif } if (rend & RS_Uline && ISSET_PIXCOLOR (Color_UL)) fore = Color_UL; #endif if (invert) { ::swap (fore, back); #ifndef NO_BOLD_UNDERLINE_REVERSE if (ISSET_PIXCOLOR (Color_RV)) back = Color_RV; if (fore == back) { fore = Color_bg; back = Color_fg; } #endif } #ifdef TEXT_BLINK if (rend & RS_Blink && (back == Color_bg || fore == Color_bg)) { if (!text_blink_ev.active) { text_blink_ev.start (NOW + TEXT_BLINK_INTERVAL); hidden_text = 0; } else if (hidden_text) fore = back; } #endif } /* * Actually do the drawing of the string here */ rxvt_font *font = (*fontset[GET_STYLE (rend)])[GET_FONT (rend)]; if (back == fore) font->clear_rect (*drawable, xpixel, ypixel, fwidth * count, fheight, back); else if (back == Color_bg) { if (must_clear) { CLEAR_CHARS (xpixel, ypixel, count); for (i = 0; i < count; i++) /* don't draw empty strings */ if (text[i] != ' ') { font->draw (*drawable, xpixel, ypixel, text, count, fore, -1); break; } } else font->draw (*drawable, xpixel, ypixel, text, count, fore, Color_bg); } else font->draw (*drawable, xpixel, ypixel, text, count, fore, back); if (rend & RS_Uline && font->descent > 1 && fore != back) { #if ENABLE_FRILLS if (ISSET_PIXCOLOR (Color_underline)) XSetForeground (display->display, gc, pix_colors[Color_underline]); else #endif XSetForeground (display->display, gc, pix_colors[fore]); XDrawLine (display->display, drawBuffer, gc, xpixel, ypixel + font->ascent + 1, xpixel + Width2Pixel (count) - 1, ypixel + font->ascent + 1); } } /* for (col....) */ } /* for (row....) */ #if ENABLE_OVERLAY scr_swap_overlay (); #endif /* * G: cleanup cursor and display outline cursor if necessary */ if (showcursor) { if (focus) { if (options & Opt_cursorUnderline) *crp ^= RS_Uline; else { *crp ^= RS_RVid; #ifndef NO_CURSORCOLOR *crp = (*crp & ~ (RS_fgMask | RS_bgMask)) | cc1; #endif } } else if (oldcursor.row >= 0) { int cursorwidth = 1; int col = oldcursor.col; while (col && ROW(screen.cur.row).t[col] == NOCHAR) col--; while (col + cursorwidth < ncol && drawn_buf[oldcursor.row].t[col + cursorwidth] == NOCHAR) cursorwidth++; #ifndef NO_CURSORCOLOR if (ISSET_PIXCOLOR (Color_cursor)) XSetForeground (display->display, gc, pix_colors[Color_cursor]); #endif XDrawRectangle (display->display, drawBuffer, gc, Col2Pixel (col), Row2Pixel (oldcursor.row), (unsigned int) (Width2Pixel (cursorwidth) - 1), (unsigned int) (Height2Pixel (1) - lineSpace - 1)); } } /* * H: cleanup selection */ scr_reverse_selection (); if (refresh_type & SMOOTH_REFRESH) XFlush (display->display); num_scr = 0; num_scr_allow = 1; } void rxvt_term::scr_remap_chars (const line_t &l) { if (!l.t) return; for (int i = ncol; i--; ) l.r[i] = SET_FONT (l.r[i], FONTSET (l.r[i])->find_font (l.t[i])); } void rxvt_term::scr_remap_chars () { for (int i = total_rows; i--; ) scr_remap_chars (row_buf [i]); for (int i = nrow; i--; ) { scr_remap_chars (drawn_buf [i]); scr_remap_chars (swap_buf [i]); } } void rxvt_term::scr_recolour () { if (1 #if TRANSPARENT && !am_transparent #endif #if XPM_BACKGROUND && !bgPixmap.pixmap #endif ) { XSetWindowBackground (display->display, parent[0], pix_colors[Color_border]); XClearWindow (display->display, parent[0]); XSetWindowBackground (display->display, vt, pix_colors[Color_bg]); #if HAVE_SCROLLBARS if (scrollBar.win) { XSetWindowBackground (display->display, scrollBar.win, pix_colors[Color_border]); scrollBar.setIdle (); scrollbar_show (0); } #endif } scr_clear (); scr_touch (true); want_refresh = 1; } /* ------------------------------------------------------------------------- */ void rxvt_term::scr_clear (bool really) { if (!mapped) return; num_scr_allow = 0; want_refresh = 1; if (really) XClearWindow (display->display, vt); } /* ------------------------------------------------------------------------- */ void rxvt_term::scr_reverse_selection () { if (selection.op && current_screen == selection.screen && selection.end.row >= -view_start) { int view_end = -view_start + nrow; int row, col; #if ENABLE_FRILLS if (selection.rect) { for (row = max (selection.beg.row, -view_start); row <= min (selection.end.row, view_end); row++) for (rend_t *srp = ROW(row).r, col = selection.beg.col; col < selection.end.col; col++) srp[col] ^= RS_RVid; } else #endif { if (selection.beg.row >= -view_start) { col = selection.beg.col; row = selection.beg.row; } else { col = 0; row = view_start; } for (; row < min (selection.end.row, view_end); row++, col = 0) for (rend_t *srp = ROW(row).r; col < ncol; col++) srp[col] ^= RS_RVid; if (row == selection.end.row) for (rend_t *srp = ROW(row).r; col < selection.end.col; col++) srp[col] ^= RS_RVid; } } } /* ------------------------------------------------------------------------- */ /* * Dump the whole scrollback and screen to the passed filedescriptor. The * invoking routine must close the fd. */ #if 0 void rxvt_term::scr_dump (int fd) { int row, wrote; unsigned int width, towrite; char r1[] = "\n"; for (row = saveLines - nsaved; row < saveLines + nrow - 1; row++) { width = row_buf[row].l >= 0 ? row_buf[row].l : ncol; for (towrite = width; towrite; towrite -= wrote) { wrote = write (fd, & (row_buf[row].t[width - towrite]), towrite); if (wrote < 0) return; /* XXX: death, no report */ } if (row_buf[row].l >= 0) if (write (fd, r1, 1) <= 0) return; /* XXX: death, no report */ } } #endif /* ------------------------------------------------------------------------- * * CHARACTER SELECTION * * ------------------------------------------------------------------------- */ void rxvt_term::selection_check (int check_more) { row_col_t pos; if (!selection.op) return; pos.row = pos.col = 0; if (!IN_RANGE_EXC (selection.beg.row, -nsaved, nrow) || !IN_RANGE_EXC (selection.mark.row, -nsaved, nrow) || !IN_RANGE_EXC (selection.end.row, -nsaved, nrow) || (check_more == 1 && current_screen == selection.screen && !ROWCOL_IS_BEFORE (screen.cur, selection.beg) && ROWCOL_IS_BEFORE (screen.cur, selection.end)) || (check_more == 2 && ROWCOL_IS_BEFORE (selection.beg, pos) && ROWCOL_IS_AFTER (selection.end, pos)) || (check_more == 3 && ROWCOL_IS_AFTER (selection.end, pos)) || (check_more == 4 /* screen width change */ && (selection.beg.row != selection.end.row || selection.end.col > ncol))) CLEAR_SELECTION (); } /* ------------------------------------------------------------------------- */ /* * Paste a selection direct to the command fd */ void rxvt_term::paste (unsigned char *data, unsigned int len) { /* convert normal newline chars into common keyboard Return key sequence */ for (unsigned int i = 0; i < len; i++) if (data[i] == C0_LF) data[i] = C0_CR; tt_write (data, len); } /* ------------------------------------------------------------------------- */ /* * Respond to a notification that a primary selection has been sent * EXT: SelectionNotify */ void rxvt_term::selection_paste (Window win, Atom prop, bool delete_prop) { if (prop == None) /* check for failed XConvertSelection */ { if ((selection_type & Sel_CompoundText)) { int selnum = selection_type & Sel_whereMask; selection_type = 0; if (selnum != Sel_direct) selection_request_other (XA_STRING, selnum); } if ((selection_type & Sel_UTF8String)) { int selnum = selection_type & Sel_whereMask; selection_type = Sel_CompoundText; if (selnum != Sel_direct) selection_request_other (xa[XA_COMPOUND_TEXT], selnum); else selection_type = 0; } return; } unsigned long bytes_after; XTextProperty ct; if (XGetWindowProperty (display->display, win, prop, 0, PROP_SIZE / 4, delete_prop, AnyPropertyType, &ct.encoding, &ct.format, &ct.nitems, &bytes_after, &ct.value) != Success) { ct.value = 0; goto bailout; } if (ct.encoding == None) goto bailout; if (bytes_after) { // fetch and append remaining data XTextProperty ct2; if (XGetWindowProperty (display->display, win, prop, ct.nitems / 4, (bytes_after + 3) / 4, delete_prop, AnyPropertyType, &ct2.encoding, &ct2.format, &ct2.nitems, &bytes_after, &ct2.value) != Success) goto bailout; // realloc should be compatible to XFree, here, and elsewhere, too ct.value = (unsigned char *)realloc (ct.value, ct.nitems + ct2.nitems + 1); memcpy (ct.value + ct.nitems, ct2.value, ct2.nitems + 1); ct.nitems += ct2.nitems; XFree (ct2.value); } if (ct.value == 0) goto bailout; if (ct.encoding == xa[XA_INCR]) { // INCR selection, start handshake if (!delete_prop) XDeleteProperty (display->display, win, prop); selection_wait = Sel_incr; incr_buf_fill = 0; incr_ev.start (NOW + 10); goto bailout; } if (ct.nitems == 0) { if (selection_wait == Sel_incr) { XFree (ct.value); // finally complete, now paste the whole thing selection_wait = Sel_normal; ct.value = (unsigned char *)incr_buf; ct.nitems = incr_buf_fill; incr_buf = 0; incr_buf_size = 0; incr_ev.stop (); } else { if (selection_wait == Sel_normal && (win != display->root || prop != XA_CUT_BUFFER0)) // avoid recursion { /* * pass through again trying CUT_BUFFER0 if we've come from * XConvertSelection () but nothing was presented */ selection_paste (display->root, XA_CUT_BUFFER0, False); } goto bailout; } } else if (selection_wait == Sel_incr) { incr_ev.start (NOW + 10); while (incr_buf_fill + ct.nitems > incr_buf_size) { incr_buf_size = incr_buf_size ? incr_buf_size * 2 : 128*1024; incr_buf = (char *)realloc (incr_buf, incr_buf_size); } memcpy (incr_buf + incr_buf_fill, ct.value, ct.nitems); incr_buf_fill += ct.nitems; goto bailout; } char **cl; int cr; #if ENABLE_FRILLS // xlib is horribly broken with respect to UTF8_STRING, and nobody cares to fix it // so recode it manually if (ct.encoding == xa[XA_UTF8_STRING]) { wchar_t *w = rxvt_utf8towcs ((const char *)ct.value, ct.nitems); char *s = rxvt_wcstombs (w); free (w); // TODO: strlen == only the first element will be converted. well... paste ((unsigned char *)s, strlen (s)); free (s); } else #endif if (XmbTextPropertyToTextList (display->display, &ct, &cl, &cr) >= 0 && cl) { for (int i = 0; i < cr; i++) paste ((unsigned char *)cl[i], strlen (cl[i])); XFreeStringList (cl); } else paste (ct.value, ct.nitems); // paste raw bailout: XFree (ct.value); if (selection_wait == Sel_normal) selection_wait = Sel_none; } void rxvt_term::incr_cb (time_watcher &w) { selection_wait = Sel_none; incr_buf_size = 0; free (incr_buf); rxvt_warn ("data loss: timeout on INCR selection paste, ignoring.\n"); } void rxvt_term::selection_property (Window win, Atom prop) { if (prop == None || selection_wait != Sel_incr) return; selection_paste (win, prop, true); } /* ------------------------------------------------------------------------- */ /* * Request the current selection: * Order: > internal selection if available * > PRIMARY, SECONDARY, CLIPBOARD if ownership is claimed (+) * > CUT_BUFFER0 * (+) if ownership is claimed but property is empty, rxvt_selection_paste () * will auto fallback to CUT_BUFFER0 * EXT: button 2 release */ void rxvt_term::selection_request (Time tm, int x, int y) { if (x < 0 || x >= width || y < 0 || y >= height) return; /* outside window */ if (selection.text) { /* internal selection */ char *str = rxvt_wcstombs (selection.text, selection.len); paste ((unsigned char *)str, strlen (str)); free (str); return; } else { int i; selection_request_time = tm; selection_wait = Sel_normal; for (i = Sel_Primary; i <= Sel_Clipboard; i++) { #if X_HAVE_UTF8_STRING selection_type = Sel_UTF8String; if (selection_request_other (xa[XA_UTF8_STRING], i)) return; #else selection_type = Sel_CompoundText; if (selection_request_other (xa[XA_COMPOUND_TEXT], i)) return; #endif } } selection_wait = Sel_none; /* don't loop in selection_paste () */ selection_paste (display->root, XA_CUT_BUFFER0, false); } int rxvt_term::selection_request_other (Atom target, int selnum) { Atom sel; selection_type |= selnum; if (selnum == Sel_Primary) sel = XA_PRIMARY; else if (selnum == Sel_Secondary) sel = XA_SECONDARY; else sel = xa[XA_CLIPBOARD]; if (XGetSelectionOwner (display->display, sel) != None) { XConvertSelection (display->display, sel, target, xa[XA_VT_SELECTION], vt, selection_request_time); return 1; } return 0; } /* ------------------------------------------------------------------------- */ /* * Clear all selected text * EXT: SelectionClear */ void rxvt_term::selection_clear () { want_refresh = 1; free (selection.text); selection.text = NULL; selection.len = 0; CLEAR_SELECTION (); if (display->selection_owner == this) display->selection_owner = 0; } /* ------------------------------------------------------------------------- */ /* * Copy a selection into the cut buffer * EXT: button 1 or 3 release */ void rxvt_term::selection_make (Time tm) { int i; wchar_t *new_selection_text; text_t *t; switch (selection.op) { case SELECTION_CONT: break; case SELECTION_INIT: CLEAR_SELECTION (); /* FALLTHROUGH */ case SELECTION_BEGIN: selection.op = SELECTION_DONE; /* FALLTHROUGH */ default: return; } selection.op = SELECTION_DONE; if (selection.clicks == 4) return; /* nothing selected, go away */ i = (selection.end.row - selection.beg.row + 1) * (ncol + 1); new_selection_text = (wchar_t *)rxvt_malloc ((i + 4) * sizeof (wchar_t)); int ofs = 0; int extra = 0; int col = selection.beg.col; int row = selection.beg.row; int end_col; for (; row <= selection.end.row; row++, col = 0) { #if ENABLE_FRILLS if (selection.rect) { col = selection.beg.col; end_col = ncol + 1; } else #endif end_col = ROW(row).is_longer () ? ncol : ROW(row).l; //TODO//FIXME//LEN col = max (col, 0); if (row == selection.end.row || selection.rect) end_col = min (end_col, selection.end.col); t = ROW(row).t + col; for (; col < end_col; col++) { if (*t == NOCHAR) t++; #if ENABLE_COMBINING else if (IS_COMPOSE (*t)) { int len = rxvt_composite.expand (*t, 0); extra -= (len - 1); if (extra < 0) { extra += i; i += i; new_selection_text = (wchar_t *)rxvt_realloc (new_selection_text, (i + 4) * sizeof (wchar_t)); } ofs += rxvt_composite.expand (*t++, new_selection_text + ofs); } #endif else new_selection_text[ofs++] = *t++; } if (!ROW(row).is_longer () && row != selection.end.row) new_selection_text[ofs++] = C0_LF; } if (end_col != selection.end.col) new_selection_text[ofs++] = C0_LF; new_selection_text[ofs] = 0; if (ofs == 0) { free (new_selection_text); return; } free (selection.text); // we usually allocate much more than necessary, so realloc it smaller again selection.len = ofs; selection.text = (wchar_t *)rxvt_realloc (new_selection_text, (ofs + 1) * sizeof (wchar_t)); XSetSelectionOwner (display->display, XA_PRIMARY, vt, tm); if (XGetSelectionOwner (display->display, XA_PRIMARY) == vt) display->set_selection_owner (this); else rxvt_warn ("can't get primary selection, ignoring.\n"); #if 0 XTextProperty ct; if (XwcTextListToTextProperty (display->display, &selection.text, 1, XStringStyle, &ct) >= 0) { set_string_property (XA_CUT_BUFFER0, ct.value, ct.nitems); XFree (ct.value); } #endif selection_time = tm; } /* ------------------------------------------------------------------------- */ /* * Mark or select text based upon number of clicks: 1, 2, or 3 * EXT: button 1 press */ void rxvt_term::selection_click (int clicks, int x, int y) { clicks = ((clicks - 1) % 3) + 1; selection.clicks = clicks; /* save clicks so extend will work */ selection_start_colrow (Pixel2Col (x), Pixel2Row (y)); if (clicks == 2 || clicks == 3) selection_extend_colrow (selection.mark.col, selection.mark.row + view_start, 0, /* button 3 */ 1, /* button press */ 0); /* click change */ } /* ------------------------------------------------------------------------- */ /* * Mark a selection at the specified col/row */ void rxvt_term::selection_start_colrow (int col, int row) { want_refresh = 1; selection.mark.row = row - view_start; selection.mark.col = col; selection.mark.row = clamp (selection.mark.row, -nsaved, nrow - 1); selection.mark.col = clamp (selection.mark.col, 0, ncol - 1); while (selection.mark.col > 0 && ROW(selection.mark.row).t[selection.mark.col] == NOCHAR) --selection.mark.col; if (selection.op) { /* clear the old selection */ selection.beg.row = selection.end.row = selection.mark.row; selection.beg.col = selection.end.col = selection.mark.col; } selection.op = SELECTION_INIT; selection.screen = current_screen; } /* ------------------------------------------------------------------------- */ /* * Word select: select text for 2 clicks * We now only find out the boundary in one direction */ /* what do we want: spaces/tabs are delimiters or cutchars or non-cutchars */ #define DELIMIT_TEXT(x) \ (unicode::is_space (x) ? 2 : (x) <= 0xff && !!strchr (rs[Rs_cutchars], (x))) #define DELIMIT_REND(x) 1 void rxvt_term::selection_delimit_word (enum page_dirn dirn, const row_col_t *mark, row_col_t *ret) { int col, row, dirnadd, tcol, trow, w1, w2; row_col_t bound; text_t *stp; rend_t *srp; if (dirn == UP) { bound.row = - nsaved - 1; bound.col = 0; dirnadd = -1; } else { bound.row = nrow; bound.col = ncol - 1; dirnadd = 1; } row = mark->row; col = max (mark->col, 0); /* find the edge of a word */ stp = ROW(row).t + col; w1 = DELIMIT_TEXT (*stp); srp = ROW(row).r + col; w2 = DELIMIT_REND (*srp); for (;;) { for (; col != bound.col; col += dirnadd) { stp += dirnadd; srp += dirnadd; if (*stp == NOCHAR) continue; if (DELIMIT_TEXT (*stp) != w1) break; if (DELIMIT_REND (*srp) != w2) break; } if ((col == bound.col) && (row != bound.row)) { if (ROW(row - (dirn == UP ? 1 : 0)).is_longer ()) { trow = row + dirnadd; tcol = dirn == UP ? ncol - 1 : 0; if (!ROW(trow).t) break; stp = ROW(trow).t + tcol; srp = ROW(trow).r + tcol; if (DELIMIT_TEXT (*stp) != w1 || DELIMIT_REND (*srp) != w2) break; row = trow; col = tcol; continue; } } break; } Old_Word_Selection_You_Die: if (dirn == DN) col++; /* put us on one past the end */ /* Poke the values back in */ ret->row = row; ret->col = col; } /* ------------------------------------------------------------------------- */ /* * Extend the selection to the specified x/y pixel location * EXT: button 3 press; button 1 or 3 drag * flag == 0 ==> button 1 * flag == 1 ==> button 3 press * flag == 2 ==> button 3 motion */ void rxvt_term::selection_extend (int x, int y, int flag) { int col = clamp (Pixel2Col (x), 0, ncol); int row = clamp (Pixel2Row (y), 0, nrow - 1); /* * If we're selecting characters (single click) then we must check first * if we are at the same place as the original mark. If we are then * select nothing. Otherwise, if we're to the right of the mark, you have to * be _past_ a character for it to be selected. */ if (((selection.clicks % 3) == 1) && !flag && (col == selection.mark.col && (row == selection.mark.row + view_start))) { /* select nothing */ selection.beg.row = selection.end.row = 0; selection.beg.col = selection.end.col = 0; selection.clicks = 4; want_refresh = 1; return; } if (selection.clicks == 4) selection.clicks = 1; selection_extend_colrow (col, row, !!flag, /* ? button 3 */ flag == 1 ? 1 : 0, /* ? button press */ 0); /* no click change */ } /* ------------------------------------------------------------------------- */ /* * Extend the selection to the specified col/row */ void rxvt_term::selection_extend_colrow (int32_t col, int32_t row, int button3, int buttonpress, int clickchange) { row_col_t pos; enum { LEFT, RIGHT } closeto = RIGHT; want_refresh = 1; switch (selection.op) { case SELECTION_INIT: CLEAR_SELECTION (); selection.op = SELECTION_BEGIN; /* FALLTHROUGH */ case SELECTION_BEGIN: if (row != selection.mark.row || col != selection.mark.col || (!button3 && buttonpress)) selection.op = SELECTION_CONT; break; case SELECTION_DONE: selection.op = SELECTION_CONT; /* FALLTHROUGH */ case SELECTION_CONT: break; case SELECTION_CLEAR: selection_start_colrow (col, row); /* FALLTHROUGH */ default: return; } if (selection.beg.col == selection.end.col && selection.beg.col != selection.mark.col && selection.beg.row == selection.end.row && selection.beg.row != selection.mark.row) { selection.beg.col = selection.end.col = selection.mark.col; selection.beg.row = selection.end.row = selection.mark.row; } pos.col = col; pos.row = row - view_start; /* * This is mainly xterm style selection with a couple of differences, mainly * in the way button3 drag extension works. * We're either doing: button1 drag; button3 press; or button3 drag * a) button1 drag : select around a midpoint/word/line - that point/word/line * is always at the left/right edge of the selection. * b) button3 press: extend/contract character/word/line at whichever edge of * the selection we are closest to. * c) button3 drag : extend/contract character/word/line - we select around * a point/word/line which is either the start or end of the selection * and it was decided by whichever point/word/line was `fixed' at the * time of the most recent button3 press */ if (button3 && buttonpress) { /* button3 press */ /* * first determine which edge of the selection we are closest to */ if (ROWCOL_IS_BEFORE (pos, selection.beg) || (!ROWCOL_IS_AFTER (pos, selection.end) && (((pos.col - selection.beg.col) + ((pos.row - selection.beg.row) * ncol)) < ((selection.end.col - pos.col) + ((selection.end.row - pos.row) * ncol))))) closeto = LEFT; if (closeto == LEFT) { selection.beg.row = pos.row; selection.beg.col = pos.col; selection.mark.row = selection.end.row; selection.mark.col = selection.end.col - (selection.clicks == 2); } else { selection.end.row = pos.row; selection.end.col = pos.col; selection.mark.row = selection.beg.row; selection.mark.col = selection.beg.col; } } else { /* button1 drag or button3 drag */ if (ROWCOL_IS_AFTER (selection.mark, pos)) { if (selection.mark.row == selection.end.row && selection.mark.col == selection.end.col && clickchange && selection.clicks == 2) selection.mark.col--; selection.beg.row = pos.row; selection.beg.col = pos.col; selection.end.row = selection.mark.row; selection.end.col = selection.mark.col + (selection.clicks == 2); } else { selection.beg.row = selection.mark.row; selection.beg.col = selection.mark.col; selection.end.row = pos.row; selection.end.col = pos.col; } } if (selection.clicks == 1) { if (selection.beg.col > ROW(selection.beg.row).l //TODO//FIXME//LEN && !ROW(selection.beg.row).is_longer () #if ENABLE_FRILLS && !selection.rect #endif ) selection.beg.col = ncol; if ( selection.end.col > ROW(selection.end.row).l //TODO//FIXME//LEN && !ROW(selection.end.row).is_longer () #if ENABLE_FRILLS && !selection.rect #endif ) selection.end.col = ncol; } else if (selection.clicks == 2) { if (ROWCOL_IS_AFTER (selection.end, selection.beg)) selection.end.col--; selection_delimit_word (UP, &selection.beg, &selection.beg); selection_delimit_word (DN, &selection.end, &selection.end); } else if (selection.clicks == 3) { #if ENABLE_FRILLS if (options & Opt_tripleclickwords) { selection_delimit_word (UP, &selection.beg, &selection.beg); for (int end_row = selection.mark.row; end_row < nrow; end_row++) { if (!ROW(end_row).is_longer ()) { selection.end.row = end_row; selection.end.col = ROW(end_row).l; selection_remove_trailing_spaces (); break; } } } else #endif { if (ROWCOL_IS_AFTER (selection.mark, selection.beg)) selection.mark.col++; selection.beg.col = 0; selection.end.col = ncol; // select a complete logical line while (selection.beg.row > -saveLines && ROW(selection.beg.row - 1).is_longer ()) selection.beg.row--; while (selection.end.row < nrow && ROW(selection.end.row).is_longer ()) selection.end.row++; } } if (button3 && buttonpress) { /* mark may need to be changed */ if (closeto == LEFT) { selection.mark.row = selection.end.row; selection.mark.col = selection.end.col - (selection.clicks == 2); } else { selection.mark.row = selection.beg.row; selection.mark.col = selection.beg.col; } } #if ENABLE_FRILLS if (selection.rect && selection.beg.col > selection.end.col) ::swap (selection.beg.col, selection.end.col); #endif } #if ENABLE_FRILLS void rxvt_term::selection_remove_trailing_spaces () { int32_t end_col, end_row; text_t *stp; end_col = selection.end.col; end_row = selection.end.row; for (; end_row >= selection.beg.row; ) { stp = ROW(end_row).t; while (--end_col >= 0) { if (stp[end_col] != ' ' && stp[end_col] != '\t' && stp[end_col] != NOCHAR) break; } if (end_col >= 0 || !ROW(end_row - 1).is_longer ()) { selection.end.col = end_col + 1; selection.end.row = end_row; break; } end_row--; end_col = ncol; } if (selection.mark.row > selection.end.row) { selection.mark.row = selection.end.row; selection.mark.col = selection.end.col; } else if (selection.mark.row == selection.end.row && selection.mark.col > selection.end.col) selection.mark.col = selection.end.col; } #endif /* ------------------------------------------------------------------------- */ /* * Double click on button 3 when already selected * EXT: button 3 double click */ void rxvt_term::selection_rotate (int x, int y) { selection.clicks = selection.clicks % 3 + 1; selection_extend_colrow (Pixel2Col (x), Pixel2Row (y), 1, 0, 1); } /* ------------------------------------------------------------------------- */ /* * Respond to a request for our current selection * EXT: SelectionRequest */ void rxvt_term::selection_send (const XSelectionRequestEvent &rq) { XSelectionEvent ev; dDisp; ev.type = SelectionNotify; ev.property = None; ev.display = rq.display; ev.requestor = rq.requestor; ev.selection = rq.selection; ev.target = rq.target; ev.time = rq.time; if (rq.target == xa[XA_TARGETS]) { Atom target_list[6]; Atom *target = target_list; *target++ = xa[XA_TARGETS]; *target++ = xa[XA_TIMESTAMP]; *target++ = XA_STRING; *target++ = xa[XA_TEXT]; *target++ = xa[XA_COMPOUND_TEXT]; #if X_HAVE_UTF8_STRING *target++ = xa[XA_UTF8_STRING]; #endif XChangeProperty (disp, rq.requestor, rq.property, XA_ATOM, 32, PropModeReplace, (unsigned char *)target_list, target - target_list); ev.property = rq.property; } #if TODO // TODO else if (rq.target == xa[XA_MULTIPLE]) { /* TODO: Handle MULTIPLE */ } #endif else if (rq.target == xa[XA_TIMESTAMP] && selection.text) { XChangeProperty (disp, rq.requestor, rq.property, rq.target, 32, PropModeReplace, (unsigned char *)&selection_time, 1); ev.property = rq.property; } else if (rq.target == XA_STRING || rq.target == xa[XA_TEXT] || rq.target == xa[XA_COMPOUND_TEXT] || rq.target == xa[XA_UTF8_STRING] ) { XTextProperty ct; Atom target = rq.target; short freect = 0; int selectlen; wchar_t *cl; enum { enc_string = XStringStyle, enc_text = XStdICCTextStyle, enc_compound_text = XCompoundTextStyle, #ifdef X_HAVE_UTF8_STRING enc_utf8 = XUTF8StringStyle, #else enc_utf8 = -1, #endif } style; if (target == XA_STRING) // we actually don't do XA_STRING, but who cares, as i18n clients // will ask for another format anyways. style = enc_string; else if (target == xa[XA_TEXT]) style = enc_text; else if (target == xa[XA_COMPOUND_TEXT]) style = enc_compound_text; #if ENABLE_FRILLS else if (target == xa[XA_UTF8_STRING]) style = enc_utf8; #endif else { target = xa[XA_COMPOUND_TEXT]; style = enc_compound_text; } if (selection.text) { cl = selection.text; selectlen = selection.len; } else { cl = L""; selectlen = 0; } #if ENABLE_FRILLS // xlib is horribly broken with respect to UTF8_STRING, and nobody cares to fix it // so recode it manually if (style == enc_utf8) { freect = 1; ct.encoding = target; ct.format = 8; ct.value = (unsigned char *)rxvt_wcstoutf8 (cl, selectlen); ct.nitems = strlen ((char *)ct.value); } else #endif if (XwcTextListToTextProperty (disp, &cl, 1, (XICCEncodingStyle) style, &ct) >= 0) freect = 1; else { /* if we failed to convert then send it raw */ ct.value = (unsigned char *)cl; ct.nitems = selectlen; ct.encoding = target; } XChangeProperty (disp, rq.requestor, rq.property, ct.encoding, 8, PropModeReplace, ct.value, (int)ct.nitems); ev.property = rq.property; if (freect) XFree (ct.value); } XSendEvent (disp, rq.requestor, False, 0L, (XEvent *)&ev); } /* ------------------------------------------------------------------------- * * MOUSE ROUTINES * * ------------------------------------------------------------------------- */ /* * return col/row values corresponding to x/y pixel values */ void rxvt_term::pixel_position (int *x, int *y) { *x = Pixel2Col (*x); /* max_it (*x, 0); min_it (*x, (int)ncol - 1); */ *y = Pixel2Row (*y); /* max_it (*y, 0); min_it (*y, (int)nrow - 1); */ } /* ------------------------------------------------------------------------- */ #ifdef USE_XIM void rxvt_term::im_set_position (XPoint &pos) { XWindowAttributes xwa; XGetWindowAttributes (display->display, vt, &xwa); pos.x = xwa.x + Col2Pixel (screen.cur.col); pos.y = xwa.y + Height2Pixel (screen.cur.row) + fbase; } #endif #if ENABLE_OVERLAY void rxvt_term::scr_overlay_new (int x, int y, int w, int h) { if (nrow < 3 || ncol < 3) return; want_refresh = 1; scr_overlay_off (); if (x < 0) x = ncol - w; if (y < 0) y = nrow - h; // make space for border w += 2; min_it (w, ncol); h += 2; min_it (h, nrow); x -= 1; clamp_it (x, 0, ncol - w); y -= 1; clamp_it (y, 0, nrow - h); ov_x = x; ov_y = y; ov_w = w; ov_h = h; ov_text = new text_t *[h]; ov_rend = new rend_t *[h]; for (y = 0; y < h; y++) { text_t *tp = ov_text[y] = new text_t[w]; rend_t *rp = ov_rend[y] = new rend_t[w]; text_t t0, t1, t2; rend_t r = OVERLAY_RSTYLE; if (y == 0) t0 = 0x2554, t1 = 0x2550, t2 = 0x2557; else if (y < h - 1) t0 = 0x2551, t1 = 0x0020, t2 = 0x2551; else t0 = 0x255a, t1 = 0x2550, t2 = 0x255d; *tp++ = t0; *rp++ = r; for (x = w - 2; x > 0; --x) { *tp++ = t1; *rp++ = r; } *tp = t2; *rp = r; } } void rxvt_term::scr_overlay_off () { if (!ov_text) return; want_refresh = 1; for (int y = 0; y < ov_h; y++) { delete [] ov_text[y]; delete [] ov_rend[y]; } delete [] ov_text; ov_text = 0; delete [] ov_rend; ov_rend = 0; } void rxvt_term::scr_overlay_set (int x, int y, text_t text, rend_t rend) { if (!ov_text || x >= ov_w - 2 || y >= ov_h - 2) return; x++, y++; ov_text[y][x] = text; ov_rend[y][x] = rend; } void rxvt_term::scr_overlay_set (int x, int y, const char *s) { while (*s) scr_overlay_set (x++, y, *s++); } void rxvt_term::scr_overlay_set (int x, int y, const wchar_t *s) { while (*s) { text_t t = *s++; int width = wcwidth (t); while (width--) { scr_overlay_set (x++, y, t); t = NOCHAR; } } } void rxvt_term::scr_swap_overlay () { if (!ov_text) return; // swap screen mem with overlay for (int y = ov_h; y--; ) { text_t *t1 = ov_text[y]; rend_t *r1 = ov_rend[y]; text_t *t2 = ROW(y - view_start).t + ov_x; rend_t *r2 = ROW(y - view_start).r + ov_x; for (int x = ov_w; x--; ) { text_t t = *t1; *t1++ = *t2; *t2++ = t; rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, FONTSET (r)->find_font (t)); } } } #endif /* ------------------------------------------------------------------------- */