stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a4deea012e31931548720ed657c759630b49d9b7
commit a4deea012e31931548720ed657c759630b49d9b7 Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Fri Oct 21 18:13:58 2016 +0200 docs: atspi: add missing docs for enums and structs in atspi text interface --- src/lib/elementary/elm_interface_atspi_text.eo | 41 +++++++++++++++----------- 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/src/lib/elementary/elm_interface_atspi_text.eo b/src/lib/elementary/elm_interface_atspi_text.eo index 313ab60..cd8550f 100644 --- a/src/lib/elementary/elm_interface_atspi_text.eo +++ b/src/lib/elementary/elm_interface_atspi_text.eo @@ -2,41 +2,46 @@ import eina_types; enum Elm.Atspi_Text.Granularity { - char, - word, - sentence, - line, - paragraph + [[Text accessibility granularity]] + char, [[Character granularity]] + word, [[Word granularity]] + sentence, [[Sentence granularity]] + line, [[Line granularity]] + paragraph [[Paragraph granularity]] } enum Elm.Atspi_Text.Clip_Type { + [[Text clip type]] legacy: elm_atspi_text_clip; - none, - min, - max, - both + none, [[No clip type]] + min, [[Minimum clip type]] + max, [[Maximum clip type]] + both [[Both clip types]] } struct Elm.Atspi_Text.Attribute { - name: string; - value: string; + [[Text attribute]] + name: string; [[Text attribute name]] + value: string; [[Text attribute value]] } struct Elm.Atspi_Text.Range { - start_offset: int; - end_offset : int; - content: char *; + [[Text range]] + start_offset: int; [[Range start offset]] + end_offset : int; [[Range end offset]] + content: char *; [[Range content]] } struct Elm.Atspi_Text.Change_Info { - content: string; - inserted: bool; - pos: size; - len: size; + [[Text change information]] + content: string; [[Change content]] + inserted: bool; [[$true if text got inserted]] + pos: size; [[Change position]] + len: size; [[Change length]] } interface Elm.Interface.Atspi.Text () --