summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_multibuttonentry_item.eo
blob: b8d327edd56253efb09e8fb9dfde081b861cdbbf (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
class Elm.Multibuttonentry.Item(Elm.Widget.Item,
                                Efl.Access.Widget.Action,
                                Efl.Ui.Legacy)
{
   [[Elementary multibuttonentry class]]
   legacy_prefix: elm_multibuttonentry_item;
   eo_prefix: elm_obj_multibuttonentry_item;
   methods {
        @property selected {
             [[Control the selected state of an item]]
             get {
             }
             set {
             }
             values {
                 selected: bool; [[$true if selected $false otherwise]]
             }
        }
        prev_get @const {
             [[Get the previous item in the multibuttonentry]]
             return: Elm.Widget.Item; [[The item before the item]]
        }
        next_get @const {
             [[Get the next item in the multibuttonentry]]
             return: Elm.Widget.Item; [[The item after the item]]
        }
   }
   implements {
        Efl.Object.constructor;
        Efl.Object.destructor;
        Elm.Widget.Item.signal_emit;
        Elm.Widget.Item.part_text { get; set; }
        Elm.Widget.Item.disable;
        Efl.Access.Object.i18n_name { get; }
        Efl.Access.Object.state_set { get; }
        Efl.Access.Widget.Action.elm_actions { get; }
   }
}