edje: clean up part text anchor APIs

This commit is contained in:
Jee-Yong Um 2016-08-11 13:37:00 +09:00 committed by Jean-Philippe Andre
parent 69ffbbb3eb
commit afc04302ed
1 changed files with 23 additions and 15 deletions

View File

@ -1881,25 +1881,33 @@ class Edje.Object (Efl.Canvas.Group.Clipped, Efl.File, Efl.Container, Efl.Part)
ondemand: bool; [[If true, the input panel will be shown in case of only Mouse up event. (Focus event will be ignored.)]] ondemand: bool; [[If true, the input panel will be shown in case of only Mouse up event. (Focus event will be ignored.)]]
} }
} }
part_text_anchor_geometry_get @const { @property part_text_anchor_geometry {
[[Return a list of Evas_Textblock_Rectangle anchor rectangles. get {
[[Return a list of Evas_Textblock_Rectangle anchor rectangles.
This function return a list of Evas_Textblock_Rectangle anchor This function return a list of Evas_Textblock_Rectangle anchor
rectangles.]] rectangles.]]
return: const(list<const(Evas.Textblock_Rectangle)*>); [[The list of anchor rects (const Evas_Textblock_Rectangle }
*), do not modify! Geometry is relative to entry part.]] keys {
params { part: string; [[The part name]]
@in part: string; [[The part name]] anchor: string; [[The anchor name]]
@in anchor: string; [[The anchor name]] }
values {
rect_list: const(list<const(Evas.Textblock_Rectangle)*>); [[The list of anchor rects (const Evas_Textblock_Rectangle
*), do not modify! Geometry is relative to entry part.]]
} }
} }
part_text_anchor_list_get @const { @property part_text_anchor_list {
[[Return a list of char anchor names. get {
[[Return a list of char anchor names.
This function returns a list of char anchor names.]] This function returns a list of char anchor names.]]
return: const(list<string>); [[The list of anchors (const char *), do not modify!]] }
params { keys {
@in part: string; [[The part name]] part: string; [[The part name]]
}
values {
anchor_list: const(list<string>); [[The list of anchors (const char *), do not modify!]]
} }
} }
text_insert_filter_callback_add { text_insert_filter_callback_add {