From 428f1854c177aa112f575bd3c68c4c3f6fa527ce Mon Sep 17 00:00:00 2001 From: tasn Date: Sun, 30 Jan 2011 10:32:27 +0000 Subject: [PATCH] Evas textblock: Fixed range geometry get in some cases involving rtl. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@56416 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/canvas/evas_object_textblock.c | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/src/lib/canvas/evas_object_textblock.c b/src/lib/canvas/evas_object_textblock.c index 475406e..c97e9b5 100644 --- a/src/lib/canvas/evas_object_textblock.c +++ b/src/lib/canvas/evas_object_textblock.c @@ -7165,17 +7165,30 @@ _evas_textblock_cursor_range_in_line_geometry_get( return NULL; } - /* This also takes bidi into account because of the positions - * in the text are taken into account */ - if (x2 > x1) + /* Make x2 the one on the right */ + if (x2 < x1) { - w = x2 - x1; - x = x1; + Evas_Coord tmp; + tmp = x1; + x1 = x2; + x2 = tmp; + + tmp = w1; + w1 = w2; + w2 = tmp; + } + +#ifdef BIDI_SUPPORT + if (evas_bidi_is_rtl_char(&ti->bidi_props, 0)) + { + x = x1 + w1; + w = x2 + w2 - x; } else +#endif { - w = x1 - x2; - x = x2; + x = x1; + w = x2 - x1; } } else @@ -7223,7 +7236,7 @@ _evas_textblock_cursor_range_in_line_geometry_get( #ifdef BIDI_SUPPORT if (evas_bidi_is_rtl_char(&ti->bidi_props, 0)) { - w = x; + w = x + w; x = 0; } else @@ -7284,6 +7297,7 @@ _evas_textblock_cursor_range_in_line_geometry_get( #ifdef BIDI_SUPPORT if (evas_bidi_is_rtl_char(&ti->bidi_props, 0)) { + x += w; w = it2->w - x; } else -- 2.7.4