Atspi accessible: migrate docs.

This commit is contained in:
Tom Hacohen 2015-08-06 14:53:50 +01:00
parent e77b152bd8
commit 46fc75210b
1 changed files with 14 additions and 18 deletions

View File

@ -6,7 +6,7 @@ mixin Elm_Interface_Atspi_Accessible ()
methods {
@property localized_role_name @protected {
get {
/*@ Gets an localized string describing ATSPI widget role name. */
[[Gets an localized string describing ATSPI widget role name.]]
}
values {
localized_name: const(char)*;
@ -14,19 +14,17 @@ mixin Elm_Interface_Atspi_Accessible ()
}
@property name @protected {
get {
/*@ Gets an string describing ATSPI widget role name.
Should be free by a user. */
[[Gets an string describing ATSPI widget role name. Should be free by a user.]]
}
set {
}
values {
name: char*; /*@ obj name */
name: char*; [[obj name]]
}
}
@property relation_set @protected {
get {
/*@ Gets an string describing ATSPI widget role name. Lists and
elements Should be free by a user. */
[[Gets an string describing ATSPI widget role name. Lists and elements Should be free by a user.]]
}
values {
relations: own(list<own(Elm_Atspi_Relation *)> *);
@ -34,7 +32,7 @@ mixin Elm_Interface_Atspi_Accessible ()
}
@property role @protected {
get {
/*@ Gets the role of the widget in ATSPI Accessibility domain. */
[[Gets the role of the widget in ATSPI Accessibility domain.]]
}
set {
}
@ -44,7 +42,7 @@ mixin Elm_Interface_Atspi_Accessible ()
}
@property children @protected {
get {
/*@ Gets widget's accessible children. */
[[Gets widget's accessible children.]]
}
values {
children: free(own(list<Eo *> *), eina_list_free);
@ -52,8 +50,7 @@ mixin Elm_Interface_Atspi_Accessible ()
}
@property role_name @protected {
get {
/*@ Gets human-readable string indentifying widget accessibility
role. */
[[Gets human-readable string indentifying widget accessibility role.]]
}
values {
role_name: const(char)*;
@ -61,8 +58,7 @@ mixin Elm_Interface_Atspi_Accessible ()
}
@property attributes @protected {
get {
/*@ Gets key-value pairs indentifying widget extra
attributes. Must be free by a user. */
[[Gets key-value pairs indentifying widget extra attributes. Must be free by a user.]]
}
values {
attributes: free(own(list<own(Elm_Atspi_Attribute *)> *), elm_atspi_attributes_list_free);
@ -70,7 +66,7 @@ mixin Elm_Interface_Atspi_Accessible ()
}
@property index_in_parent @protected {
get {
/*@ Gets index of the child in parent's children list. */
[[Gets index of the child in parent's children list.]]
}
values {
idx: int;
@ -78,10 +74,10 @@ mixin Elm_Interface_Atspi_Accessible ()
}
@property description @protected {
get {
/*@ Gets widget contextual information. */
[[Gets widget contextual information.]]
}
set {
/*@ Sets contextual information about widget. */
[[Sets contextual information about widget.]]
}
values {
description: const(char)*;
@ -89,10 +85,10 @@ mixin Elm_Interface_Atspi_Accessible ()
}
@property parent @protected {
get {
/*@ Gets widget accessible parent. */
[[Gets widget accessible parent.]]
}
set {
/*@ Sets widget accessible parent. */
[[Sets widget accessible parent.]]
}
values {
parent: Eo *;
@ -100,7 +96,7 @@ mixin Elm_Interface_Atspi_Accessible ()
}
@property state_set @protected {
get {
/*@ Gets set describing widget accessible states. */
[[Gets set describing widget accessible states.]]
}
values {
states: Elm_Atspi_State_Set;