summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_nstate.eo
blob: 981ae6e1ecbde91e3aa5eb119ce248203bd0e44b (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
class Efl.Ui.Nstate(Elm.Button)
{
   methods {
      activate @protected {
      }
      @property count {
         set {
            [[Set the maximum number of states.
            ]]
         }
         get {
             [[Get the max number of states.
             ]]
         }
         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;
      Eo.Base.constructor;
      Evas.Object.Smart.add;
      Evas.Object.Smart.del;
      Elm.Widget.theme_apply;
      Elm.Widget.event;
   }
   events {
      state,changed;
   }
}