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