Hi all
I have some entry widget which contains anchor (some markup), something like this:
elm_entry_entry_append(entry, "Hello EFL <a href=http://ya.ru><link>My link</link></a> End"); evas_object_smart_callback_add(entry, "cursor,changed", entry_cursor_changed_cb, NULL);
Source of my entry with full markup is:
1) "Hello EFL <a href=http://ya.ru><link>My link</link></a> End"
How it is displayed on screen
2) "Hello EFL My link End"
I use elm_entry_cursor_pos_get(obj)) to get cursor position inside of my entry. But I always got position for case 2 (excluding markup).
For example: if cursor current position is after word 'My' - current position is 12
But real cursor position (with markup) should be 39
Is there some api in Tizen or some way to get such real cursor position?
Alexey.