blob: 9d0ce3458b26d83f04bdf38724bb4b8be838abed (
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
|
import elm_general;
mixin Elm.Interface.Atspi_Widget_Action (Efl.Access.Action)
{
[[AT-SPI widget action mixin]]
eo_prefix: elm_interface_atspi_widget_action;
data: null;
methods {
@property elm_actions @protected {
[[Elementary actions]]
get @pure_virtual {
}
values {
actions: ptr(const(Elm_Atspi_Action)); [[NULL-terminated array of Elm_Atspi_Action]]
}
}
}
implements {
Efl.Access.Action.action_do;
Efl.Access.Action.action_keybinding_get;
Efl.Access.Action.action_name { get; }
Efl.Access.Action.action_description { get; set; }
Efl.Access.Action.actions { get; }
}
}
|