Interface atspi component: migrate docs.

This commit is contained in:
Tom Hacohen 2015-08-07 14:28:13 +01:00
parent f052cd9d9c
commit a494b4c122
1 changed files with 17 additions and 27 deletions

View File

@ -6,11 +6,11 @@ mixin Elm_Interface_Atspi_Component ()
methods { methods {
@property size @protected { @property size @protected {
set { set {
/*@ Sets size of accessible widget. */ [[Sets size of accessible widget.]]
return: bool; return: bool;
} }
get { get {
/*@ Gets size of accessible widget. */ [[Gets size of accessible widget.]]
} }
values { values {
w: int; w: int;
@ -19,7 +19,7 @@ mixin Elm_Interface_Atspi_Component ()
} }
@property layer @protected { @property layer @protected {
get { get {
/*@ Sets evas layer of accessible widget. */ [[Sets evas layer of accessible widget.]]
} }
values { values {
layer: int; layer: int;
@ -27,16 +27,15 @@ mixin Elm_Interface_Atspi_Component ()
} }
@property alpha @protected { @property alpha @protected {
get { get {
/*@ Gets alpha of accessible widget. */ [[Gets alpha of accessible widget.]]
} }
values { values {
alpha: double; /*@ alpha value in [0, 1] range. */ alpha: double; [[alpha value in [0, 1] range.]]
} }
} }
@property z_order @protected { @property z_order @protected {
get { get {
/*@ Gets the depth at which the component is shown in relation to [[Gets the depth at which the component is shown in relation to other components in the same container.]]
other components in the same container. */
} }
values { values {
z_order: int; z_order: int;
@ -44,16 +43,14 @@ mixin Elm_Interface_Atspi_Component ()
} }
@property extents @protected { @property extents @protected {
get { get {
/*@ Gets geometry of accessible widget. */ [[Gets geometry of accessible widget.]]
} }
set { set {
/*@ Sets geometry of accessible widget. */ [[Sets geometry of accessible widget.]]
return: bool; return: bool;
} }
keys { keys {
screen_coords: bool; /*@ If true x and y values will be relative screen_coords: bool; [[If true x and y values will be relative to screen origin, otherwise relative to canvas]]
to screen origin, otherwise relative to
canvas */
} }
values { values {
x: int; x: int;
@ -64,16 +61,14 @@ mixin Elm_Interface_Atspi_Component ()
} }
@property position @protected { @property position @protected {
set { set {
/*@ Sets position of accessible widget. */ [[Sets position of accessible widget.]]
return: bool; return: bool;
} }
get { get {
/*@ Gets position of accessible widget. */ [[Gets position of accessible widget.]]
} }
keys { keys {
screen_coords: bool; /*@ If true x and y values will be relative screen_coords: bool; [[If true x and y values will be relative to screen origin, otherwise relative to canvas]]
to screen origin, otherwise relative to
canvas */
} }
values { values {
x: int; x: int;
@ -82,27 +77,22 @@ mixin Elm_Interface_Atspi_Component ()
} }
contains @protected { contains @protected {
params { params {
screen_coords: bool; /*@ If true x and y values will be relative screen_coords: bool; [[If true x and y values will be relative to screen origin, otherwise relative to canvas]]
to screen origin, otherwise relative to
canvas */
@in x: int; @in x: int;
@in y: int; @in y: int;
} }
return: bool; return: bool;
} }
focus_grab @protected { focus_grab @protected {
/*@ Focuses accessible widget. [[Focuses accessible widget.]]
@return true if focus grab focus has successed, false otherwise. */ return: bool; [[true if focus grab focus has successed, false otherwise.]]
return: bool;
} }
accessible_at_point_get @protected { accessible_at_point_get @protected {
/*@ Gets top component object occupying space at given coordinates. */ [[Gets top component object occupying space at given coordinates.]]
params { params {
screen_coords: bool; /*@ If true x and y values will be relative screen_coords: bool; [[If true x and y values will be relative to screen origin, otherwise relative to canvas]]
to screen origin, otherwise relative to
canvas */
@in x: int; @in x: int;
@in y: int; @in y: int;
} }