efl/src/lib/elementary/elm_interface_atspi_action.eo

68 lines
1.6 KiB
Plaintext
Raw Normal View History

mixin Elm.Interface.Atspi_Action ()
{
legacy_prefix: null;
eo_prefix: elm_interface_atspi_action;
data: null;
2015-05-07 09:32:53 -07:00
methods {
@property name @protected @virtual_pure {
get {
2015-08-07 06:26:50 -07:00
[[Gets action name for given id]]
}
values {
name: const(char)*;
}
keys {
id: int;
}
}
2015-05-07 09:32:53 -07:00
@property localized_name @protected {
get {
2015-08-07 06:26:50 -07:00
[[Gets localized action name for given id]]
}
values {
name: const(char)*;
}
keys {
id: int;
}
}
@property description @protected @virtual_pure {
get {
2015-08-07 06:26:50 -07:00
[[Gets action description for given id]]
}
set {
2015-08-07 06:26:50 -07:00
[[Sets action description for given id]]
return: bool;
}
values {
description: const(char)*;
}
keys {
id: int;
}
}
2015-05-07 09:32:53 -07:00
@property actions @protected {
get @virtual_pure {
2015-08-07 06:26:50 -07:00
[[Get list of available widget actions]]
}
values {
2015-08-07 06:26:50 -07:00
actions: list<Elm_Atspi_Action> *; [[contains statically allocated strings]]
}
}
action_do @protected @virtual_pure {
2015-08-07 06:26:50 -07:00
[[Performs action on given widget.]]
params {
@in id: int;
}
return: bool;
}
keybinding_get @protected @virtual_pure {
2015-08-07 06:26:50 -07:00
[[Gets configured keybinding for specific action and widget.]]
params {
@in id: int;
}
2015-08-07 06:26:50 -07:00
return: own(char *) @warn_unused; [[Should be freed by the user.]]
}
}
}