stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a843f93c7d358f1b8329f0ac597cd02dabc0bbee
commit a843f93c7d358f1b8329f0ac597cd02dabc0bbee Author: Stefan Schmidt <[email protected]> Date: Fri Oct 21 16:14:27 2016 +0200 docs: atspi: document structs for atspi accessible interface --- .../elementary/elm_interface_atspi_accessible.eo | 29 +++++++++++++--------- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/src/lib/elementary/elm_interface_atspi_accessible.eo b/src/lib/elementary/elm_interface_atspi_accessible.eo index 289a99a..16850ba 100644 --- a/src/lib/elementary/elm_interface_atspi_accessible.eo +++ b/src/lib/elementary/elm_interface_atspi_accessible.eo @@ -198,34 +198,39 @@ struct Elm.Atspi.Event.Handler; [[ATSPI event listener]] struct Elm.Atspi.Event.State_Changed.Data { - type: Elm.Atspi.State_Type; - new_value: bool; + [[ATSPI state changed event data]] + type: Elm.Atspi.State_Type; [[Type of the state changed event]] + new_value: bool; [[New value]] } struct Elm.Atspi.Event.Geometry_Changed.Data { - x: int; - y: int; - width: int; - height: int; + [[ATSPI geometry changed event data]] + x: int; [[X coordinate]] + y: int; [[Y coordinate]] + width: int; [[Width]] + height: int; [[Height]] } struct Elm.Atspi.Event.Children_Changed.Data { - is_added: bool; - child: Efl.Object; + [[ATSPI children changed event data]] + is_added: bool; [[Child is added or not]] + child: Efl.Object; [[Child object]] } struct Elm.Atspi.Attribute { - key: string; - value: string; + [[ATSPI Attribute]] + key: string; [[Attribute key]] + value: string; [[Attribute value]] } struct Elm.Atspi.Relation { - type: Elm.Atspi.Relation_Type; - objects: list<Efl.Object>; + [[ATSPI Relation]] + type: Elm.Atspi.Relation_Type; [[Relation type]] + objects: list<Efl.Object>; [[List with relation objects]] } type Elm.Atspi.Relation_Set: list<Elm.Atspi.Relation *>; --
