summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_check.eo
blob: 508d3fa7a7afc1c20022c904a1ec2e07da6570ec (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
class Efl.Ui.Check (Efl.Ui.Nstate, Efl.Access.Widget.Action)
{
   [[Check widget

   The check widget allows for toggling a value between true and false.
   Check objects are a lot like radio objects in layout and functionality,
   except they do not work as a group, but independently, and only toggle
   the value of a boolean between false and true.
   ]]
   legacy_prefix: elm_check;
   methods {
      @property selected {
         [[The on/off state of the check object.]]
         set {
         }
         get {
         }
         values {
            value: bool; [[$true if the check object is selected, $false otherwise]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Ui.Widget.on_access_activate;
      Efl.Ui.Widget.theme_apply;
      Efl.Ui.Widget.widget_sub_object_del;
      Efl.Ui.Widget.widget_event;
      Efl.Ui.Nstate.count { set; }
      Efl.Ui.Nstate.value { set; }
      Efl.Access.state_set { get; }
      Efl.Access.Widget.Action.elm_actions { get; }
   }
}