efl/src/lib/elementary/efl_access_action.eo

69 lines
1.9 KiB
Plaintext
Raw Normal View History

/* FIXME: This shouldn't be using undefined Elm_Access_Action */
import elm_general;
mixin Efl.Access.Action ()
{
[[Accessible action mixin]]
data: null;
2015-05-07 09:32:53 -07:00
methods {
@property action_name @protected @pure_virtual @beta {
[[Gets action name for given id]]
get {
}
values {
name: string; [[Action name]]
}
keys {
id: int; [[ID to get action name for]]
}
}
@property action_localized_name @protected @beta {
[[Gets localized action name for given id]]
get {
}
values {
name: string; [[Localized name]]
}
keys {
id: int; [[ID to get localized name for]]
}
}
@property action_description @protected @pure_virtual @beta {
[[Action description for given id]]
get {
}
set {
return: bool; [[$true if description was set, $false otherwise]]
}
values {
description: string; [[Action description]]
}
keys {
id: int; [[ID to set or get description for]]
}
}
@property actions @protected @beta {
[[Get list of available widget actions]]
get @pure_virtual {
}
values {
actions: list<ptr(Elm_Access_Action)>; [[Contains statically allocated strings]]
}
}
action_do @protected @pure_virtual @beta {
2015-08-07 06:26:50 -07:00
[[Performs action on given widget.]]
params {
@in id: int; [[ID for widget]]
}
return: bool; [[$true if action was performed, $false otherwise]]
}
action_keybinding_get @protected @pure_virtual @beta {
2015-08-07 06:26:50 -07:00
[[Gets configured keybinding for specific action and widget.]]
params {
@in id: int; [[ID for widget]]
}
return: mstring @owned @warn_unused; [[Should be freed by the user.]]
}
}
}