Summary:
When selection is there we are passing the whole text and position to imf
which sees that next character like matras (eg .Hindi) should be inserted
(if pressed) and when matra comes the selected text is gone and only matra
remains in the entry.
eg: we have text in hindi like मानक, select all and hit matra in keyboard
selected text is gone, only matra is there.
@fix
Test Plan: Tested in Tizen device
Reviewers: jihoon, tasn, herdsman, thiepha
Subscribers: Hermet, shilpasingh, raster, subodh, jpeg, cedric
Differential Revision: https://phab.enlightenment.org/D2951
for (itr = plain_text; itr && *itr; ++itr)
*itr = '*';
}
-
- *text = strdup(plain_text);
+ if (en->have_selection)
+ {
+ if (en->sel_start)
+ {
+ *text = strndup(plain_text,
+ evas_textblock_cursor_pos_get(en->sel_start));
+ }
+ else
+ {
+ *text = strdup(plain_text);
+ }
+ }
+ else
+ {
+ *text = strdup(plain_text);
+ }
free(plain_text);
plain_text = NULL;
}
else
- *text = strdup("");
+ {
+ *text = strdup("");
+ }
}
else
- *text = strdup("");
+ {
+ *text = strdup("");
+ }
}
if (cursor_pos)
{
- if (en->cursor)
+ if (en->have_selection && en->sel_start)
+ *cursor_pos = evas_textblock_cursor_pos_get(en->sel_start);
+ else if (en->cursor)
*cursor_pos = evas_textblock_cursor_pos_get(en->cursor);
else
*cursor_pos = 0;