[vte/wip/egmont/bidi: 2/5] widget, bidi: Denote the direction in the I-beam cursor



commit 9260a2ad48e55d87e9bbdff8514ca991e8a8094f
Author: Egmont Koblinger <egmont gmail com>
Date:   Sat Jun 1 15:55:58 2019 +0200

    widget,bidi: Denote the direction in the I-beam cursor
    
    Show the direction of the character underneath if the paragraph contains
    a character of foreign direction. Currently for I-beam cursor shape only.

 src/vte.cc | 10 ++++++++++
 1 file changed, 10 insertions(+)
---
diff --git a/src/vte.cc b/src/vte.cc
index c6467db4..e1d5aed5 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -9470,6 +9470,16 @@ Terminal::paint_cursor()
                         _vte_draw_fill_rectangle(m_draw,
                                                  x, y + m_char_padding.top, stem_width, m_char_ascent + 
m_char_descent,
                                                  &bg, VTE_DRAW_OPAQUE);
+
+                        /* Show the direction of the current character if the paragraph contains a mixture
+                         * of directions. */
+                        if (focus && bidirow->has_foreign())
+                                _vte_draw_fill_rectangle(m_draw,
+                                                         bidirow->vis_is_rtl(vcol) ? x - stem_width : x + 
stem_width,
+                                                         y + m_char_padding.top,
+                                                         stem_width, stem_width,
+                                                         &bg, VTE_DRAW_OPAQUE);
+
                        break;
                 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]