summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_nstate.eo
blob: 8c3f1de642cc0e07b5d9b313da419dba1c11ab0e (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
class Efl.Ui.Nstate(Efl.Ui.Button)
{
   [[Efl UI nstate class]]
   methods {
      activate @protected {
         [[Activate widget]]
      }
      @property count {
          [[Maximum number of states]]
         set {
         }
         get {
         }
         values {
            nstate: int; [[The number of states.]]
         }
      }
      @property value {
         set {
            [[Set the particular state given in (0...nstate}.]]
         }
         get {
            [[Get the state value.]]
         }
         values {
            state: int; [[The state.]]
         }
      }
   }
   implements {
      class.constructor;
      Efl.Object.constructor;
      Efl.Ui.Widget.theme_apply;
      Efl.Ui.Widget.widget_event;
   }
   events {
      changed: void; [[Called when the value changed.]]
   }
}