summaryrefslogtreecommitdiff
path: root/src/lib/elm_interface_atspi_accessible.eo
blob: 9556e5739e7633a9ac4343c55a6b6ec9c0592202 (plain)
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
117
mixin Elm_Interface_Atspi_Accessible ()
{
   legacy_prefix: null;
   eo_prefix: elm_interface_atspi_accessible;
   data: null;
   methods {
      @property localized_role_name @protected {
         get {
            /*@ Gets an localized string describing ATSPI widget role name. */
         }
         values {
            const(char)* localized_name;
         }
      }
      @property name @protected {
         get {
            /*@ Gets an string describing ATSPI widget role name. 
                Should be free by a user. */
         }
         set {
         }
         values {
            char* name; /*@ obj name */
         }
      }
      @property relation_set @protected {
         get {
            /*@ Gets an string describing ATSPI widget role name. Lists and
            elements Should be free by a user. */
         }
         values {
            own(list<own(Elm_Atspi_Relation *)> *) relations;
         }
      }
      @property role @protected {
         get {
            /*@ Gets the role of the widget in ATSPI Accessibility domain. */
         }
         set {
         }
         values {
            Elm_Atspi_Role role;
         }
      }
      @property children @protected {
         get {
            /*@ Gets widget's accessible children. */
         }
         values {
            free(own(list<Eo *> *), eina_list_free) children;
         }
      }
      @property role_name @protected {
         get {
            /*@ Gets human-readable string indentifying widget accessibility
            role. */
         }
         values {
            const(char)* role_name;
         }
      }
      @property attributes @protected {
         get {
            /*@ Gets key-value pairs indentifying widget extra 
            attributes. Must be free by a user. */
         }
         values {
            free(own(list<own(Elm_Atspi_Attribute *)> *), elm_atspi_attributes_list_free) attributes;
         }
      }
      @property index_in_parent @protected {
         get {
            /*@ Gets index of the child in parent's children list. */
         }
         values {
            int idx;
         }
      }
      @property description @protected {
         get {
            /*@ Gets widget contextual information. */
         }
         set {
            /*@ Sets contextual information about widget. */
         }
         values {
            const(char)* description;
         }
      }
      @property parent @protected {
         get {
            /*@ Gets widget accessible parent. */
         }
         set {
            /*@ Sets widget accessible parent. */
         }
         values {
            Eo *parent;
         }
      }
      @property state_set @protected {
         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;
   }
}