[vte/wip/egmont/bidi: 46/75] fix cursor on double wide rtl or mirrored box drawing
- From: Egmont Koblinger <egmontkob src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte/wip/egmont/bidi: 46/75] fix cursor on double wide rtl or mirrored box drawing
- Date: Tue, 20 Nov 2018 00:09:12 +0000 (UTC)
commit 5e33a32082c77449d86513ab2effd8a8dd191638
Author: Egmont Koblinger <egmont gmail com>
Date: Wed Aug 29 00:24:11 2018 +0200
fix cursor on double wide rtl or mirrored box drawing
src/vte.cc | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/src/vte.cc b/src/vte.cc
index 3b37ab68..dd064715 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -9077,7 +9077,7 @@ Terminal::paint_cursor()
{
struct _vte_draw_text_request item;
vte::grid::row_t drow;
- vte::grid::column_t col;
+ vte::grid::column_t col, viscol;
int width, height, cursor_width;
guint style = 0;
guint fore, back, deco;
@@ -9122,6 +9122,7 @@ Terminal::paint_cursor()
/* Find the first cell of the character "under" the cursor.
* This is for CJK. For TAB, paint the cursor where it really is. */
+ VteRowData const *row_data = find_row_data(drow);
bidicellmap const *bidimap = m_ringview.get_row_map(drow);
auto cell = find_charcell(col, drow);
@@ -9131,10 +9132,13 @@ Terminal::paint_cursor()
}
/* Draw the cursor. */
+ viscol = bidimap[col].log2vis;
item.c = (cell && cell->c) ? cell->c : ' ';
item.columns = item.c == '\t' ? 1 : cell ? cell->attr.columns() : 1;
- item.x = bidimap[col].log2vis * width;
+ item.x = (viscol - (bidimap[viscol].vis_rtl ? cell->attr.columns() - 1 : 0)) * width;
item.y = row_to_pixel(drow);
+ item.mirror = bidimap[viscol].vis_rtl;
+ item.box_mirror = (row_data && (row_data->attr.bidi_flags & VTE_BIDI_BOX_MIRROR));
if (cell && cell->c != 0) {
style = _vte_draw_get_style(cell->attr.bold(), cell->attr.italic());
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]