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.378 by sf-exg, Thu Mar 24 23:55:31 2011 UTC vs.
Revision 1.404 by sf-exg, Tue Nov 15 20:07:10 2011 UTC

49 if (option (Opt_scrollTtyOutput)) \ 49 if (option (Opt_scrollTtyOutput)) \
50 view_start = 0 50 view_start = 0
51#define CLEAR_SELECTION() \ 51#define CLEAR_SELECTION() \
52 selection.beg.row = selection.beg.col \ 52 selection.beg.row = selection.beg.col \
53 = selection.end.row = selection.end.col = 0 53 = selection.end.row = selection.end.col = 0
54#define CLEAR_ALL_SELECTION() \ 54#define CLEAR_SELECTION_MARK() \
55 selection.beg.row = selection.beg.col \
56 = selection.mark.row = selection.mark.col \
57 = selection.end.row = selection.end.col = 0 55 selection.mark.row = selection.mark.col = 0
58 56
59#define ROW_AND_COL_IS_AFTER(A, B, C, D) \ 57#define ROW_AND_COL_IS_AFTER(A, B, C, D) \
60 (((A) > (C)) || (((A) == (C)) && ((B) > (D)))) 58 (((A) > (C)) || (((A) == (C)) && ((B) > (D))))
61#define ROW_AND_COL_IS_BEFORE(A, B, C, D) \ 59#define ROW_AND_COL_IS_BEFORE(A, B, C, D) \
62 (((A) < (C)) || (((A) == (C)) && ((B) < (D)))) 60 (((A) < (C)) || (((A) == (C)) && ((B) < (D))))
159 * ------------------------------------------------------------------------- */ 157 * ------------------------------------------------------------------------- */
160 158
161void 159void
162rxvt_term::scr_reset () 160rxvt_term::scr_reset ()
163{ 161{
162#if ENABLE_OVERLAY
163 scr_overlay_off ();
164#endif
165
164 view_start = 0; 166 view_start = 0;
165 num_scr = 0; 167 num_scr = 0;
166 168
167 if (ncol == 0) 169 if (ncol == 0)
168 ncol = 80; 170 ncol = 80;
199 term_start = 0; 201 term_start = 0;
200 202
201 talloc = new rxvt_salloc (ncol * sizeof (text_t)); 203 talloc = new rxvt_salloc (ncol * sizeof (text_t));
202 ralloc = new rxvt_salloc (ncol * sizeof (rend_t)); 204 ralloc = new rxvt_salloc (ncol * sizeof (rend_t));
203 205
204 row_buf = (line_t *)rxvt_calloc (total_rows + nrow, sizeof (line_t)); 206 row_buf = (line_t *)rxvt_calloc (total_rows , sizeof (line_t));
205 drawn_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t)); 207 drawn_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t));
206 swap_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t)); 208 swap_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t));
207 209
208 for (int row = nrow; row--; ) 210 for (int row = nrow; row--; )
209 { 211 {
271 swap_buf [row].clear (); scr_blank_screen_mem (swap_buf [row], DEFAULT_RSTYLE); 273 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); 274 drawn_buf[row].clear (); scr_blank_screen_mem (drawn_buf[row], DEFAULT_RSTYLE);
273 } 275 }
274 276
275 line_t *old_buf = row_buf; 277 line_t *old_buf = row_buf;
276 row_buf = (line_t *)rxvt_calloc (total_rows + nrow, sizeof (line_t)); 278 row_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t));
277 279
278 int p = MOD (term_start + prev_nrow, prev_total_rows); // previous row 280 int p = MOD (term_start + prev_nrow, prev_total_rows); // previous row
279 int pend = MOD (term_start + top_row , prev_total_rows); 281 int pend = MOD (term_start + top_row , prev_total_rows);
280 int q = total_rows; // rewrapped row 282 int q = total_rows; // rewrapped row
281 283
401 tabs = (char *)rxvt_malloc (ncol); 403 tabs = (char *)rxvt_malloc (ncol);
402 404
403 for (int col = ncol; col--; ) 405 for (int col = ncol; col--; )
404 tabs [col] = col % TABSIZE == 0; 406 tabs [col] = col % TABSIZE == 0;
405 407
406 CLEAR_ALL_SELECTION (); 408 CLEAR_SELECTION ();
409 CLEAR_SELECTION_MARK ();
407 410
408 prev_nrow = nrow; 411 prev_nrow = nrow;
409 prev_ncol = ncol; 412 prev_ncol = ncol;
410 413
411 tt_winch (); 414 tt_winch ();
634 637
635 if (count > 0 638 if (count > 0
636 && row1 == 0 639 && row1 == 0
637 && (current_screen == PRIMARY || option (Opt_secondaryScroll))) 640 && (current_screen == PRIMARY || option (Opt_secondaryScroll)))
638 { 641 {
642 min_it (count, total_rows - (nrow - (row2 + 1)));
643
639 top_row = max (top_row - count, -saveLines); 644 top_row = max (top_row - count, -saveLines);
640
641 // scroll everything up 'count' lines
642 term_start = (term_start + count) % total_rows;
643 645
644 // sever bottommost line 646 // sever bottommost line
645 { 647 {
646 line_t &l = ROW(row2 - count); 648 line_t &l = ROW(row2);
647 l.is_longer (0); 649 l.is_longer (0);
648 l.touch (); 650 l.touch ();
649 } 651 }
650 652
653 // scroll everything up 'count' lines
654 term_start = (term_start + count) % total_rows;
655
656 // now copy lines below the scroll region bottom to the
657 // bottom of the screen again, so they look as if they
658 // hadn't moved.
659 for (int i = nrow; --i > row2; )
660 {
661 line_t &l1 = ROW(i - count);
662 line_t &l2 = ROW(i);
663
664 ::swap (l1, l2);
665 l2.touch ();
666 }
667
651 // erase newly scrolled-in lines 668 // erase newly scrolled-in lines
652 for (int i = count; i--; ) 669 for (int i = count; i--; )
653 { 670 {
654 line_t &l = ROW(nrow - 1 - i); 671 line_t &l = ROW(row2 - i);
655 672
656 // optimize if already cleared, can be significant on slow machines 673 // optimise if already cleared, can be significant on slow machines
657 // could be rolled into scr_blank_screen_mem 674 // could be rolled into scr_blank_screen_mem
658 if (l.r && l.l < ncol - 1 && !((l.r[l.l + 1] ^ rstyle) & (RS_fgMask | RS_bgMask))) 675 if (l.r && l.l < ncol - 1 && !((l.r[l.l + 1] ^ rstyle) & (RS_fgMask | RS_bgMask)))
659 { 676 {
660 scr_blank_line (l, 0, l.l, rstyle); 677 scr_blank_line (l, 0, l.l, rstyle);
661 l.l = 0; 678 l.l = 0;
663 } 680 }
664 else 681 else
665 scr_blank_screen_mem (l, rstyle); 682 scr_blank_screen_mem (l, rstyle);
666 } 683 }
667 684
668 // now copy lines below the scroll region bottom to the
669 // bottom of the screen again, so they look as if they
670 // hadn't moved.
671 for (int i = nrow; --i > row2; )
672 {
673 line_t &l1 = ROW(i - count);
674 line_t &l2 = ROW(i);
675
676 ::swap (l1, l2);
677 l2.touch ();
678 }
679
680 // move and/or clear selection, if any 685 // move and/or clear selection, if any
681 if (selection.op && current_screen == selection.screen) 686 if (selection.op && current_screen == selection.screen
687 && selection.beg.row <= row2)
682 { 688 {
683 selection.beg.row -= count; 689 selection.beg.row -= count;
684 selection.end.row -= count; 690 selection.end.row -= count;
685 selection.mark.row -= count; 691 selection.mark.row -= count;
686 692
687 if (selection.beg.row < top_row 693 selection_check (0);
688 || selection.end.row < top_row
689 || selection.mark.row < top_row)
690 {
691 CLEAR_ALL_SELECTION ();
692 selection.op = SELECTION_CLEAR;
693 }
694 } 694 }
695 695
696 // finally move the view window, if desired 696 // finally move the view window, if desired
697 if (option (Opt_scrollWithBuffer) 697 if (option (Opt_scrollWithBuffer)
698 && view_start != 0 698 && view_start != 0
711 || (selection.beg.row - count < row1 && selection.beg.row >= row1) 711 || (selection.beg.row - count < row1 && selection.beg.row >= row1)
712 || (selection.beg.row - count > row2 && selection.beg.row <= row2) 712 || (selection.beg.row - count > row2 && selection.beg.row <= row2)
713 || (selection.end.row - count < row1 && selection.end.row >= row1) 713 || (selection.end.row - count < row1 && selection.end.row >= row1)
714 || (selection.end.row - count > row2 && selection.end.row <= row2)) 714 || (selection.end.row - count > row2 && selection.end.row <= row2))
715 { 715 {
716 CLEAR_ALL_SELECTION (); 716 CLEAR_SELECTION ();
717 selection.op = SELECTION_CLEAR; 717 if (!IN_RANGE_EXC (selection.mark.row, top_row, nrow))
718 CLEAR_SELECTION_MARK ();
718 } 719 }
719 else if (selection.end.row >= row1 && selection.end.row <= row2) 720 else if (selection.end.row >= row1 && selection.end.row <= row2)
720 { 721 {
721 /* move selected region too */ 722 /* move selected region too */
722 selection.beg.row -= count; 723 selection.beg.row -= count;
728 } 729 }
729 730
730 // use a simple and robust scrolling algorithm, this 731 // use a simple and robust scrolling algorithm, this
731 // part of scr_scroll_text is not time-critical. 732 // part of scr_scroll_text is not time-critical.
732 733
734 // sever line above scroll region
735 if (row1)
736 {
737 line_t &l = ROW(row1 - 1);
738 l.is_longer (0);
739 l.touch ();
740 }
741
733 int rows = row2 - row1 + 1; 742 int rows = row2 - row1 + 1;
734 743
735 min_it (count, rows); 744 min_it (count, rows);
736 745
737 line_t *temp_buf = row_buf + total_rows; 746 line_t *temp_buf = rxvt_temp_buf<line_t> (rows);
738 747
739 for (int row = 0; row < rows; row++) 748 for (int row = 0; row < rows; row++)
740 { 749 {
741 temp_buf [row] = ROW(row1 + (row + count + rows) % rows); 750 temp_buf [row] = ROW(row1 + (row + count + rows) % rows);
742 751
744 scr_blank_screen_mem (temp_buf [row], rstyle); 753 scr_blank_screen_mem (temp_buf [row], rstyle);
745 } 754 }
746 755
747 for (int row = 0; row < rows; row++) 756 for (int row = 0; row < rows; row++)
748 ROW(row1 + row) = temp_buf [row]; 757 ROW(row1 + row) = temp_buf [row];
758
759 // sever bottommost line
760 {
761 line_t &l = ROW(row2);
762 l.is_longer (0);
763 l.touch ();
764 }
749 } 765 }
750 766
751 return count; 767 return count;
752} 768}
753 769
759rxvt_term::scr_add_lines (const wchar_t *str, int len, int minlines) NOTHROW 775rxvt_term::scr_add_lines (const wchar_t *str, int len, int minlines) NOTHROW
760{ 776{
761 if (len <= 0) /* sanity */ 777 if (len <= 0) /* sanity */
762 return; 778 return;
763 779
764 unsigned char checksel; 780 bool checksel;
765 unicode_t c; 781 unicode_t c;
766 int ncol = this->ncol; 782 int ncol = this->ncol;
767 const wchar_t *strend = str + len; 783 const wchar_t *strend = str + len;
768 784
769 want_refresh = 1; 785 want_refresh = 1;
795 811
796 while (str < strend) 812 while (str < strend)
797 { 813 {
798 c = (unicode_t)*str++; // convert to rxvt-unicodes representation 814 c = (unicode_t)*str++; // convert to rxvt-unicodes representation
799 815
800 if (expect_false (c < 0x20)) 816 if (ecb_unlikely (c < 0x20))
801 if (c == C0_LF) 817 if (c == C0_LF)
802 { 818 {
803 max_it (line->l, screen.cur.col); 819 max_it (line->l, screen.cur.col);
804 820
805 screen.flags &= ~Screen_WrapNext; 821 screen.flags &= ~Screen_WrapNext;
824 { 840 {
825 scr_tab (1, true); 841 scr_tab (1, true);
826 continue; 842 continue;
827 } 843 }
828 844
829 if (expect_false ( 845 if (ecb_unlikely (
830 checksel /* see if we're writing within selection */ 846 checksel /* see if we're writing within selection */
831 && !ROWCOL_IS_BEFORE (screen.cur, selection.beg) 847 && !ROWCOL_IS_BEFORE (screen.cur, selection.beg)
832 && ROWCOL_IS_BEFORE (screen.cur, selection.end) 848 && ROWCOL_IS_BEFORE (screen.cur, selection.end)
833 )) 849 ))
834 { 850 {
839 * should be a similar check. 855 * should be a similar check.
840 */ 856 */
841 CLEAR_SELECTION (); 857 CLEAR_SELECTION ();
842 } 858 }
843 859
844 if (expect_false (screen.flags & Screen_WrapNext)) 860 if (ecb_unlikely (screen.flags & Screen_WrapNext))
845 { 861 {
846 scr_do_wrap (); 862 scr_do_wrap ();
847 863
848 line->l = ncol; 864 line->l = ncol;
849 line->is_longer (1); 865 line->is_longer (1);
851 row = screen.cur.row; 867 row = screen.cur.row;
852 line = &ROW(row); /* _must_ refresh */ 868 line = &ROW(row); /* _must_ refresh */
853 } 869 }
854 870
855 // some utf-8 decoders "decode" surrogate characters: let's fix this. 871 // some utf-8 decoders "decode" surrogate characters: let's fix this.
856 if (expect_false (IN_RANGE_INC (c, 0xd800, 0xdfff))) 872 if (ecb_unlikely (IN_RANGE_INC (c, 0xd800, 0xdfff)))
857 c = 0xfffd; 873 c = 0xfffd;
858 874
859 // rely on wcwidth to tell us the character width, do wcwidth before 875 // rely on wcwidth to tell us the character width, do wcwidth before
860 // further replacements, as wcwidth might return -1 for the line 876 // further replacements, as wcwidth might return -1 for the line
861 // drawing characters below as they might be invalid in the current 877 // drawing characters below as they might be invalid in the current
862 // locale. 878 // locale.
863 int width = WCWIDTH (c); 879 int width = WCWIDTH (c);
864 880
865 if (expect_false (charsets [screen.charset] == '0')) // DEC SPECIAL 881 if (ecb_unlikely (charsets [screen.charset] == '0')) // DEC SPECIAL
866 { 882 {
867 // vt100 special graphics and line drawing 883 // vt100 special graphics and line drawing
868 // 5f-7e standard vt100 884 // 5f-7e standard vt100
869 // 40-5e rxvt extension for extra curses acs chars 885 // 40-5e rxvt extension for extra curses acs chars
870 static uint16_t vt100_0[62] = { // 41 .. 7e 886 static uint16_t vt100_0[62] = { // 41 .. 7e
883 c = vt100_0[c - 0x41]; 899 c = vt100_0[c - 0x41];
884 width = 1; // vt100 line drawing characters are always single-width 900 width = 1; // vt100 line drawing characters are always single-width
885 } 901 }
886 } 902 }
887 903
888 if (expect_false (screen.flags & Screen_Insert)) 904 if (ecb_unlikely (screen.flags & Screen_Insert))
889 scr_insdel_chars (width, INSERT); 905 scr_insdel_chars (width, INSERT);
890 906
891 if (width != 0) 907 if (width != 0)
892 { 908 {
893#if !UNICODE_3 909#if !UNICODE_3
901#endif 917#endif
902 918
903 rend_t rend = SET_FONT (rstyle, FONTSET (rstyle)->find_font (c)); 919 rend_t rend = SET_FONT (rstyle, FONTSET (rstyle)->find_font (c));
904 920
905 // if the character doesn't fit into the remaining columns... 921 // if the character doesn't fit into the remaining columns...
906 if (expect_false (screen.cur.col > ncol - width && ncol >= width)) 922 if (ecb_unlikely (screen.cur.col > ncol - width && ncol >= width))
907 { 923 {
908 if (screen.flags & Screen_Autowrap) 924 if (screen.flags & Screen_Autowrap)
909 { 925 {
910 // ... artificially enlargen the previous one 926 // ... artificially enlargen the previous one
911 c = NOCHAR; 927 c = NOCHAR;
918 934
919 // nuke the character at this position, if required 935 // nuke the character at this position, if required
920 // due to wonderful coincidences everywhere else in this loop 936 // due to wonderful coincidences everywhere else in this loop
921 // we never have to check for overwriting a wide char itself, 937 // we never have to check for overwriting a wide char itself,
922 // only its tail. 938 // only its tail.
923 if (expect_false (line->t[screen.cur.col] == NOCHAR)) 939 if (ecb_unlikely (line->t[screen.cur.col] == NOCHAR))
924 scr_kill_char (*line, screen.cur.col); 940 scr_kill_char (*line, screen.cur.col);
925 941
926 line->touch (); 942 line->touch ();
927 943
928 do 944 do
929 { 945 {
930 line->t[screen.cur.col] = c; 946 line->t[screen.cur.col] = c;
931 line->r[screen.cur.col] = rend; 947 line->r[screen.cur.col] = rend;
932 948
933 if (expect_true (screen.cur.col < ncol - 1)) 949 if (ecb_likely (screen.cur.col < ncol - 1))
934 screen.cur.col++; 950 screen.cur.col++;
935 else 951 else
936 { 952 {
937 line->l = ncol; 953 line->l = ncol;
938 if (screen.flags & Screen_Autowrap) 954 if (screen.flags & Screen_Autowrap)
941 goto end_of_line; 957 goto end_of_line;
942 } 958 }
943 959
944 c = NOCHAR; 960 c = NOCHAR;
945 } 961 }
946 while (expect_false (--width > 0)); 962 while (ecb_unlikely (--width > 0));
947 963
948 // pad with spaces when overwriting wide character with smaller one 964 // pad with spaces when overwriting wide character with smaller one
949 for (int c = screen.cur.col; expect_false (c < ncol && line->t[c] == NOCHAR); c++) 965 for (int c = screen.cur.col; ecb_unlikely (c < ncol && line->t[c] == NOCHAR); c++)
950 { 966 {
951 line->t[c] = ' '; 967 line->t[c] = ' ';
952 line->r[c] = rend; 968 line->r[c] = rend;
953 } 969 }
954 970
1920 1936
1921# ifndef NO_MAPALERT 1937# ifndef NO_MAPALERT
1922# ifdef MAPALERT_OPTION 1938# ifdef MAPALERT_OPTION
1923 if (option (Opt_mapAlert)) 1939 if (option (Opt_mapAlert))
1924# endif 1940# endif
1925 XMapWindow (dpy, parent[0]); 1941 XMapWindow (dpy, parent);
1926# endif 1942# endif
1927 1943
1928# if ENABLE_FRILLS 1944# if ENABLE_FRILLS
1929 if (option (Opt_urgentOnBell)) 1945 if (option (Opt_urgentOnBell))
1930 set_urgency (1); 1946 set_urgency (1);
1943 HOOK_INVOKE ((this, HOOK_BELL, DT_END)); 1959 HOOK_INVOKE ((this, HOOK_BELL, DT_END));
1944#endif 1960#endif
1945} 1961}
1946 1962
1947/* ------------------------------------------------------------------------- */ 1963/* ------------------------------------------------------------------------- */
1948/* ARGSUSED */
1949void 1964void
1950rxvt_term::scr_printscreen (int fullhist) NOTHROW 1965rxvt_term::scr_printscreen (int fullhist) NOTHROW
1951{ 1966{
1952#ifdef PRINTPIPE 1967#ifdef PRINTPIPE
1953 int nrows, row_start; 1968 int nrows, row_start;
2027 * A: set up vars 2042 * A: set up vars
2028 */ 2043 */
2029 refresh_count = 0; 2044 refresh_count = 0;
2030 2045
2031 unsigned int old_screen_flags = screen.flags; 2046 unsigned int old_screen_flags = screen.flags;
2032 char have_bg = 0; 2047 bool have_bg = 0;
2033#ifdef HAVE_BG_PIXMAP 2048#ifdef HAVE_BG_PIXMAP
2034 have_bg = bg_pixmap != None; 2049 have_bg = bg_pixmap != None;
2035#endif 2050#endif
2036 ocrow = oldcursor.row; /* is there an old outline cursor on screen? */ 2051 ocrow = oldcursor.row; /* is there an old outline cursor on screen? */
2037 2052
2043 HOOK_INVOKE ((this, HOOK_REFRESH_BEGIN, DT_END)); 2058 HOOK_INVOKE ((this, HOOK_REFRESH_BEGIN, DT_END));
2044#if ENABLE_OVERLAY 2059#if ENABLE_OVERLAY
2045 scr_swap_overlay (); 2060 scr_swap_overlay ();
2046#endif 2061#endif
2047 2062
2048 char showcursor = screen.flags & Screen_VisibleCursor; 2063 bool showcursor = screen.flags & Screen_VisibleCursor;
2049 2064
2050 /* 2065 /*
2051 * C: set the cursor character (s) 2066 * C: set the cursor character (s)
2052 */ 2067 */
2053 { 2068 {
2054 unsigned char setoldcursor; 2069 bool setoldcursor;
2055 2070
2056#ifdef CURSOR_BLINK 2071#ifdef CURSOR_BLINK
2057 if (hidden_cursor) 2072 if (hidden_cursor)
2058 showcursor = 0; 2073 showcursor = 0;
2059#endif 2074#endif
2231 continue; 2246 continue;
2232 2247
2233 // redraw one or more characters 2248 // redraw one or more characters
2234 2249
2235 // seek to the beginning of wide characters 2250 // seek to the beginning of wide characters
2236 while (expect_false (stp[col] == NOCHAR && col > 0)) 2251 while (ecb_unlikely (stp[col] == NOCHAR && col > 0))
2237 --col; 2252 --col;
2238 2253
2239 rend_t rend = srp[col]; /* screen rendition (target rendition) */ 2254 rend_t rend = srp[col]; /* screen rendition (target rendition) */
2240 text_t *text = stp + col; 2255 text_t *text = stp + col;
2241 int count = 1; 2256 int count = 1;
2279 2294
2280 col--; /* went one too far. move back */ 2295 col--; /* went one too far. move back */
2281 count -= i; /* dump any matching trailing chars */ 2296 count -= i; /* dump any matching trailing chars */
2282 2297
2283 // sometimes we optimize away the trailing NOCHAR's, add them back 2298 // sometimes we optimize away the trailing NOCHAR's, add them back
2284 while (expect_false (i && text[count] == NOCHAR)) 2299 while (ecb_unlikely (i && text[count] == NOCHAR))
2285 count++, i--; 2300 count++, i--;
2286 2301
2287 /* 2302 /*
2288 * Determine the attributes for the string 2303 * Determine the attributes for the string
2289 */ 2304 */
2290 int fore = fgcolor_of (rend); // desired foreground 2305 int fore = fgcolor_of (rend); // desired foreground
2291 int back = bgcolor_of (rend); // desired background 2306 int back = bgcolor_of (rend); // desired background
2292 2307
2293 // only do special processing if any attributes are set, which is unlikely 2308 // only do special processing if any attributes are set, which is unlikely
2294 if (expect_false (rend & (RS_baseattrMask | RS_Careful | RS_Sel))) 2309 if (ecb_unlikely (rend & (RS_baseattrMask | RS_Careful | RS_Sel)))
2295 { 2310 {
2296 bool invert = rend & RS_RVid; 2311 bool invert = rend & RS_RVid;
2297 2312
2298#ifndef NO_BOLD_UNDERLINE_REVERSE 2313#ifndef NO_BOLD_UNDERLINE_REVERSE
2299 if (rend & RS_Bold && fore == Color_fg) 2314 if (rend & RS_Bold && fore == Color_fg)
2388 /* 2403 /*
2389 * Actually do the drawing of the string here 2404 * Actually do the drawing of the string here
2390 */ 2405 */
2391 rxvt_font *font = (*fontset[GET_STYLE (rend)])[GET_FONT (rend)]; 2406 rxvt_font *font = (*fontset[GET_STYLE (rend)])[GET_FONT (rend)];
2392 2407
2393 if (expect_true (have_bg && back == Color_bg)) 2408 if (ecb_likely (have_bg && back == Color_bg))
2394 { 2409 {
2395 // this is very ugly, maybe push it into ->draw? 2410 // this is very ugly, maybe push it into ->draw?
2396 2411
2397 for (i = 0; i < count; i++) /* don't draw empty strings */ 2412 for (i = 0; i < count; i++) /* don't draw empty strings */
2398 if (text[i] != ' ') 2413 if (text[i] != ' ')
2405 did_clear: ; 2420 did_clear: ;
2406 } 2421 }
2407 else 2422 else
2408 font->draw (*drawable, xpixel, ypixel, text, count, fore, back); 2423 font->draw (*drawable, xpixel, ypixel, text, count, fore, back);
2409 2424
2410 if (expect_false (rend & RS_Uline && font->descent > 1 && fore != back)) 2425 if (ecb_unlikely (rend & RS_Uline && font->descent > 1 && fore != back))
2411 { 2426 {
2412#if ENABLE_FRILLS 2427#if ENABLE_FRILLS
2413 if (ISSET_PIXCOLOR (Color_underline)) 2428 if (ISSET_PIXCOLOR (Color_underline))
2414 XSetForeground (dpy, gc, pix_colors[Color_underline]); 2429 XSetForeground (dpy, gc, pix_colors[Color_underline]);
2415 else 2430 else
2516 if (bg_pixmap != None) 2531 if (bg_pixmap != None)
2517 { 2532 {
2518# ifdef ENABLE_TRANSPARENCY 2533# ifdef ENABLE_TRANSPARENCY
2519 if (bg_flags & BG_IS_TRANSPARENT) 2534 if (bg_flags & BG_IS_TRANSPARENT)
2520 { 2535 {
2521 XSetWindowBackgroundPixmap (dpy, parent[0], bg_pixmap); 2536 XSetWindowBackgroundPixmap (dpy, parent, bg_pixmap);
2522 XSetWindowBackgroundPixmap (dpy, vt, ParentRelative); 2537 XSetWindowBackgroundPixmap (dpy, vt, ParentRelative);
2523 2538
2524 transparent = true; 2539 transparent = true;
2525 } 2540 }
2526 else 2541 else
2527# endif 2542# endif
2528 { 2543 {
2529 XSetWindowBackground (dpy, parent[0], pix_colors[Color_border]); 2544 XSetWindowBackground (dpy, parent, pix_colors[Color_border]);
2530 XSetWindowBackgroundPixmap (dpy, vt, bg_pixmap); 2545 XSetWindowBackgroundPixmap (dpy, vt, bg_pixmap);
2531 } 2546 }
2532 } 2547 }
2533 else 2548 else
2534#endif 2549#endif
2535 { 2550 {
2536 XSetWindowBackground (dpy, parent[0], pix_colors[Color_border]); 2551 XSetWindowBackground (dpy, parent, pix_colors[Color_border]);
2537 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]); 2552 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]);
2538 } 2553 }
2539 2554
2540 XClearWindow (dpy, parent[0]); 2555 XClearWindow (dpy, parent);
2541 2556
2542 if (scrollBar.win) 2557 if (scrollBar.win)
2543 { 2558 {
2544 if (transparent) 2559 if (transparent)
2545 XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative); 2560 XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative);
2546 else 2561 else
2547 XSetWindowBackground (dpy, scrollBar.win, pix_colors[Color_border]); 2562 XSetWindowBackground (dpy, scrollBar.win, pix_colors[Color_border]);
2548 scrollBar.state = STATE_IDLE; 2563 scrollBar.state = SB_STATE_IDLE;
2549 scrollBar.show (0); 2564 scrollBar.show (0);
2550 } 2565 }
2551 2566
2552 if (refresh) 2567 if (refresh)
2553 { 2568 {
2676 * CHARACTER SELECTION * 2691 * CHARACTER SELECTION *
2677 * ------------------------------------------------------------------------- */ 2692 * ------------------------------------------------------------------------- */
2678void 2693void
2679rxvt_term::selection_check (int check_more) NOTHROW 2694rxvt_term::selection_check (int check_more) NOTHROW
2680{ 2695{
2681 row_col_t pos;
2682
2683 if (!selection.op) 2696 if (!selection.op)
2684 return; 2697 return;
2685 2698
2699 row_col_t pos;
2686 pos.row = pos.col = 0; 2700 pos.row = pos.col = 0;
2701
2687 if (!IN_RANGE_EXC (selection.beg.row, top_row, nrow) 2702 if (!IN_RANGE_EXC (selection.beg.row, top_row, nrow)
2688 || !IN_RANGE_EXC (selection.mark.row, top_row, nrow)
2689 || !IN_RANGE_EXC (selection.end.row, top_row, nrow) 2703 || !IN_RANGE_EXC (selection.end.row, top_row, nrow)
2690 || (check_more == 1 2704 || (check_more == 1
2691 && current_screen == selection.screen 2705 && current_screen == selection.screen
2692 && !ROWCOL_IS_BEFORE (screen.cur, selection.beg) 2706 && !ROWCOL_IS_BEFORE (screen.cur, selection.beg)
2693 && ROWCOL_IS_BEFORE (screen.cur, selection.end)) 2707 && ROWCOL_IS_BEFORE (screen.cur, selection.end))
2694 || (check_more == 2 2708 || (check_more == 2
2695 && ROWCOL_IS_BEFORE (selection.beg, pos) 2709 && ROWCOL_IS_BEFORE (selection.beg, pos)
2696 && ROWCOL_IS_AFTER (selection.end, pos)) 2710 && ROWCOL_IS_AFTER (selection.end, pos))
2697 || (check_more == 3 2711 || (check_more == 3
2698 && ROWCOL_IS_AFTER (selection.end, pos)) 2712 && ROWCOL_IS_AFTER (selection.end, pos)))
2699 || (check_more == 4 /* screen width change */
2700 && (selection.beg.row != selection.end.row
2701 || selection.end.col > ncol)))
2702 CLEAR_SELECTION (); 2713 CLEAR_SELECTION ();
2714
2715 if (!IN_RANGE_EXC (selection.mark.row, top_row, nrow))
2716 CLEAR_SELECTION_MARK ();
2703} 2717}
2704 2718
2705/* ------------------------------------------------------------------------- */ 2719/* ------------------------------------------------------------------------- */
2706/* 2720/*
2707 * Paste a selection direct to the command fd 2721 * Paste a selection direct to the command fd
2732 tt_paste (data, len); 2746 tt_paste (data, len);
2733} 2747}
2734 2748
2735/* ------------------------------------------------------------------------- */ 2749/* ------------------------------------------------------------------------- */
2736/* 2750/*
2737 * Request the current selection: 2751 * Request PRIMARY, SECONDARY or CLIPBOARD selection.
2738 * Order: > internal selection if available 2752 * if the requested selection has no owner or is empty CUT_BUFFER0 is used
2739 * > PRIMARY, SECONDARY, CLIPBOARD if ownership is claimed (+) 2753 * as fallback
2740 * > CUT_BUFFER0
2741 * (+) if ownership is claimed but property is empty, rxvt_selection_paste ()
2742 * will auto fallback to CUT_BUFFER0
2743 * EXT: button 2 release 2754 * EXT: button 2 release
2744 */ 2755 */
2745void 2756void
2746rxvt_term::selection_request (Time tm, int selnum) NOTHROW 2757rxvt_term::selection_request (Time tm, int selnum) NOTHROW
2747{ 2758{
3401 * EXT: SelectionRequest 3412 * EXT: SelectionRequest
3402 */ 3413 */
3403void 3414void
3404rxvt_term::selection_send (const XSelectionRequestEvent &rq) NOTHROW 3415rxvt_term::selection_send (const XSelectionRequestEvent &rq) NOTHROW
3405{ 3416{
3417 Atom property = rq.property == None ? rq.target : rq.property;
3406 XSelectionEvent ev; 3418 XSelectionEvent ev;
3407 3419
3408 ev.type = SelectionNotify; 3420 ev.type = SelectionNotify;
3409 ev.property = None; 3421 ev.property = None;
3410 ev.display = rq.display; 3422 ev.display = rq.display;
3425 *target++ = xa[XA_COMPOUND_TEXT]; 3437 *target++ = xa[XA_COMPOUND_TEXT];
3426#if X_HAVE_UTF8_STRING 3438#if X_HAVE_UTF8_STRING
3427 *target++ = xa[XA_UTF8_STRING]; 3439 *target++ = xa[XA_UTF8_STRING];
3428#endif 3440#endif
3429 3441
3430 XChangeProperty (dpy, rq.requestor, rq.property, XA_ATOM, 3442 XChangeProperty (dpy, rq.requestor, property, XA_ATOM,
3431 32, PropModeReplace, 3443 32, PropModeReplace,
3432 (unsigned char *)target_list, target - target_list); 3444 (unsigned char *)target_list, target - target_list);
3433 ev.property = rq.property; 3445 ev.property = property;
3434 } 3446 }
3435#if TODO // TODO 3447#if TODO // TODO
3436 else if (rq.target == xa[XA_MULTIPLE]) 3448 else if (rq.target == xa[XA_MULTIPLE])
3437 { 3449 {
3438 /* TODO: Handle MULTIPLE */ 3450 /* TODO: Handle MULTIPLE */
3439 } 3451 }
3440#endif 3452#endif
3441 else if (rq.target == xa[XA_TIMESTAMP] && rq.selection == XA_PRIMARY && selection.text) 3453 else if (rq.target == xa[XA_TIMESTAMP] && rq.selection == XA_PRIMARY && selection.text)
3442 { 3454 {
3443 XChangeProperty (dpy, rq.requestor, rq.property, rq.target, 3455 XChangeProperty (dpy, rq.requestor, property, rq.target,
3444 32, PropModeReplace, (unsigned char *)&selection_time, 1); 3456 32, PropModeReplace, (unsigned char *)&selection_time, 1);
3445 ev.property = rq.property; 3457 ev.property = property;
3446 } 3458 }
3447 else if (rq.target == xa[XA_TIMESTAMP] && rq.selection == xa[XA_CLIPBOARD] && selection.clip_text) 3459 else if (rq.target == xa[XA_TIMESTAMP] && rq.selection == xa[XA_CLIPBOARD] && selection.clip_text)
3448 { 3460 {
3449 XChangeProperty (dpy, rq.requestor, rq.property, rq.target, 3461 XChangeProperty (dpy, rq.requestor, property, rq.target,
3450 32, PropModeReplace, (unsigned char *)&clipboard_time, 1); 3462 32, PropModeReplace, (unsigned char *)&clipboard_time, 1);
3451 ev.property = rq.property; 3463 ev.property = property;
3452 } 3464 }
3453 else if (rq.target == XA_STRING 3465 else if (rq.target == XA_STRING
3454 || rq.target == xa[XA_TEXT] 3466 || rq.target == xa[XA_TEXT]
3455 || rq.target == xa[XA_COMPOUND_TEXT] 3467 || rq.target == xa[XA_COMPOUND_TEXT]
3456 || rq.target == xa[XA_UTF8_STRING] 3468 || rq.target == xa[XA_UTF8_STRING]
3527 ct.value = (unsigned char *)cl; 3539 ct.value = (unsigned char *)cl;
3528 ct.nitems = selectlen; 3540 ct.nitems = selectlen;
3529 ct.encoding = target; 3541 ct.encoding = target;
3530 } 3542 }
3531 3543
3532 XChangeProperty (dpy, rq.requestor, rq.property, 3544 XChangeProperty (dpy, rq.requestor, property,
3533 ct.encoding, 8, PropModeReplace, 3545 ct.encoding, 8, PropModeReplace,
3534 ct.value, (int)ct.nitems); 3546 ct.value, (int)ct.nitems);
3535 ev.property = rq.property; 3547 ev.property = property;
3536 3548
3537 if (freect) 3549 if (freect)
3538 XFree (ct.value); 3550 XFree (ct.value);
3539 } 3551 }
3540 3552

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines