efl/legacy/elementary/src/lib/elm_interface_atspi_accessi...

114 lines
3.0 KiB
Plaintext
Raw Normal View History

mixin Elm_Interface_Atspi_Accessible ()
{
legacy_prefix: null;
eo_prefix: elm_interface_atspi_accessible;
data: null;
2015-05-07 09:32:53 -07:00
methods {
@property localized_role_name @protected {
get {
2015-08-06 06:53:50 -07:00
[[Gets an localized string describing ATSPI widget role name.]]
}
values {
localized_name: const(char)*;
}
}
2015-05-07 09:32:53 -07:00
@property name @protected {
get {
2015-08-06 06:53:50 -07:00
[[Gets an string describing ATSPI widget role name. Should be free by a user.]]
}
set {
}
values {
2015-08-06 06:53:50 -07:00
name: char*; [[obj name]]
}
}
2015-05-07 09:32:53 -07:00
@property relation_set @protected {
get {
2015-08-06 06:53:50 -07:00
[[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 *)> *);
}
}
2015-05-07 09:32:53 -07:00
@property role @protected {
get {
2015-08-06 06:53:50 -07:00
[[Gets the role of the widget in ATSPI Accessibility domain.]]
}
set {
}
values {
role: Elm_Atspi_Role;
}
}
2015-05-07 09:32:53 -07:00
@property children @protected {
get {
2015-08-06 06:53:50 -07:00
[[Gets widget's accessible children.]]
}
values {
children: free(own(list<Eo *> *), eina_list_free);
}
}
2015-05-07 09:32:53 -07:00
@property role_name @protected {
get {
2015-08-06 06:53:50 -07:00
[[Gets human-readable string indentifying widget accessibility role.]]
}
values {
role_name: const(char)*;
}
}
2015-05-07 09:32:53 -07:00
@property attributes @protected {
get {
2015-08-06 06:53:50 -07:00
[[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);
}
}
2015-05-07 09:32:53 -07:00
@property index_in_parent @protected {
get {
2015-08-06 06:53:50 -07:00
[[Gets index of the child in parent's children list.]]
}
values {
idx: int;
}
}
2015-05-07 09:32:53 -07:00
@property description @protected {
get {
2015-08-06 06:53:50 -07:00
[[Gets widget contextual information.]]
}
set {
2015-08-06 06:53:50 -07:00
[[Sets contextual information about widget.]]
}
values {
description: const(char)*;
}
}
2015-05-07 09:32:53 -07:00
@property parent @protected {
get {
2015-08-06 06:53:50 -07:00
[[Gets widget accessible parent.]]
}
set {
2015-08-06 06:53:50 -07:00
[[Sets widget accessible parent.]]
}
values {
parent: Eo *;
}
}
2015-05-07 09:32:53 -07:00
@property state_set @protected {
get {
2015-08-06 06:53:50 -07:00
[[Gets set describing widget accessible states.]]
}
values {
states: Elm_Atspi_State_Set;
}
}
}
events {
property,changed: const(char)*;
children,changed: Elm_Atspi_Event_Children_Changed_Data;
state,changed: Elm_Atspi_Event_State_Changed_Data;
visible,data,changed;
active,descendants,changed;
}
}