summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_access_action.eo
blob: cbdbc71fc7c12ca4861dccd5b508e6c561685f03 (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
import elm_general;

mixin Efl.Access.Action ()
{
   [[Accessible action mixin]]
   data: null;
   methods {
      @property name @protected @pure_virtual {
         [[Gets action name for given id]]
         get {
         }
         values {
            name: string; [[Action name]]
         }
         keys {
            id: int; [[ID to get action name for]]
         }
      }
      @property localized_name @protected {
         [[Gets localized action name for given id]]
         get {
         }
         values {
            name: string; [[Localized name]]
         }
         keys {
            id: int; [[ID to get localized name for]]
         }
      }
      @property description @protected @pure_virtual {
         [[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 {
         [[Get list of available widget actions]]
         get @pure_virtual {
         }
         values {
            actions: list<Elm_Atspi_Action>; [[Contains statically allocated strings]]
         }
      }
      action_do @protected @pure_virtual {
         [[Performs action on given widget.]]
         params {
            @in id: int; [[ID for widget]]
         }
         return: bool; [[$true if action was performed, $false otherwise]]
      }
      keybinding_get @protected @pure_virtual {
         [[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.]]
      }
   }
}