blob: 843e454edc1874cf6012205eb367b96486acf732 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
mixin Elm_Interface_Atspi_Accessible ()
{
legacy_prefix: null;
eo_prefix: elm_interface_atspi_accessible;
data: null;
properties {
protected localized_role_name {
get {
/*@ Gets an localized string describing ATSPI widget role name. */
}
values {
const(char)* localized_name;
}
}
protected name {
get {
/*@ Gets an string describing ATSPI widget role name. */
}
set {
}
values {
const(char)* name; /*@ obj name */
}
}
protected relation_set {
get {
/*@ Gets an string describing ATSPI widget role name. Lists and
elements Should be free by a user. */
}
values {
Eina_List *relations;
}
}
protected role {
get {
/*@ Gets the role of the widget in ATSPI Accessibility domain. */
}
set {
}
values {
Elm_Atspi_Role role;
}
}
protected children {
get {
/*@ Gets widget's accessible children. */
}
values {
Eina_List *children;
}
}
protected role_name {
get {
/*@ Gets human-readable string indentifying widget accessibility
role. */
}
values {
const(char)* role_name;
}
}
protected attributes {
get {
/*@ Gets key-value pairs indentifying widget extra
attributes. Must be free by a user. */
}
values {
Eina_List *attributes;
}
}
protected index_in_parent {
get {
/*@ Gets index of the child in parent's children list. */
}
values {
int idx;
}
}
description {
get {
/*@ Gets widget contextual information. */
}
set {
/*@ Sets contextual information about widget. */
}
values {
const(char)* description;
}
}
protected parent {
get {
/*@ Gets widget accessible parent. */
}
set {
/*@ Sets widget accessible parent. */
}
values {
Eo *parent;
}
}
protected state_set {
get {
/*@ Gets set describing widget accessible states. */
}
values {
Elm_Atspi_State_Set states;
}
}
}
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;
}
}
|