stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=b7b1048c3e7872c0df5db91f692f8362178f0329

commit b7b1048c3e7872c0df5db91f692f8362178f0329
Author: Stefan Schmidt <[email protected]>
Date:   Fri Oct 21 16:41:31 2016 +0200

    docs: atspi: add missing method docs for atspi component interface
---
 .../elementary/elm_interface_atspi_component.eo    | 34 +++++++++++-----------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/src/lib/elementary/elm_interface_atspi_component.eo 
b/src/lib/elementary/elm_interface_atspi_component.eo
index 16a8422..8f8f4cb 100644
--- a/src/lib/elementary/elm_interface_atspi_component.eo
+++ b/src/lib/elementary/elm_interface_atspi_component.eo
@@ -7,7 +7,7 @@ mixin Elm.Interface.Atspi_Component ()
       @property size @protected {
          [[Size of accessible widget.]]
          set {
-            return: bool;
+            return: bool; [[$true if size was set, $false otherwise]]
          }
          get {
          }
@@ -21,7 +21,7 @@ mixin Elm.Interface.Atspi_Component ()
          get {
          }
          values {
-            layer: int;
+            layer: int; [[Evas layer of the widget]]
          }
       }
       @property alpha @protected {
@@ -38,7 +38,7 @@ mixin Elm.Interface.Atspi_Component ()
          get {
          }
          values {
-            z_order: int;
+            z_order: int; [[Z order of component]]
          }
       }
       @property extents @protected {
@@ -46,23 +46,23 @@ mixin Elm.Interface.Atspi_Component ()
          get {
          }
          set {
-            return: bool;
+            return: bool; [[$true if geometry was set, $false otherwise]]
          }
          keys {
             screen_coords: bool; [[If true x and y values will be relative to
                                    screen origin, otherwise relative to 
canvas]]
          }
          values {
-            x: int;
-            y: int;
-            w: int;
-            h: int;
+            x: int; [[X coordinate]]
+            y: int; [[Y coordinate]]
+            w: int; [[Width]]
+            h: int; [[Height]]
          }
       }
       @property position @protected {
          [[Position of accessible widget.]]
          set {
-            return: bool;
+            return: bool; [[$true if position was set, $false otherwise]]
          }
          get {
          }
@@ -71,18 +71,18 @@ mixin Elm.Interface.Atspi_Component ()
                                    screen origin, otherwise relative to 
canvas]]
          }
          values {
-            x: int;
-            y: int;
+            x: int; [[X coordinate]]
+            y: int; [[Y coordinate]]
          }
       }
       contains @protected {
          params {
             screen_coords: bool; [[If true x and y values will be relative to
                                    screen origin, otherwise relative to 
canvas]]
-            @in x: int;
-            @in y: int;
+            @in x: int; [[X coordinate]]
+            @in y: int; [[Y coordinate]]
          }
-         return: bool;
+         return: bool; [[$true if params have been set, $false otherwise]]
       }
       focus_grab @protected {
          [[Focuses accessible widget.]]
@@ -95,10 +95,10 @@ mixin Elm.Interface.Atspi_Component ()
          params {
             screen_coords: bool; [[If $true x and y values will be relative to
                                    screen origin, otherwise relative to 
canvas]]
-            @in x: int;
-            @in y: int;
+            @in x: int; [[X coordinate]]
+            @in y: int; [[Y coordinate]]
          }
-         return: Efl.Object;
+         return: Efl.Object; [[Top component object at given coordinate]]
       }
    }
 }

-- 


Reply via email to