summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_spin.eo
blob: 20b33a08713d77c7e514d0f7f9af0da636759f0b (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
class Efl.Ui.Spin (Efl.Ui.Layout, Efl.Ui.Range, Efl.Ui.Format,
                   Efl.Access.Value, Efl.Access.Widget.Action)
{
   [[A Spin.

     This is a widget which allows the user to increase or decrease numeric values
     using user interactions. It's a basic type of widget for choosing and displaying values.

     @since 1.21
   ]]
   implements {
      Efl.Object.constructor;
      Efl.Object.destructor;
      Elm.Widget.widget_event;
      Efl.Ui.Range.range_min_max { get; set; }
      Efl.Ui.Range.range_step { get; set; }
      Efl.Ui.Range.range_value { get; set; }
      Efl.Ui.Format.format_cb { set; }
   }
   events {
      changed; [[Called when spin changed]]
      min,reached; [[Called when spin value reached min]]
      max,reached; [[Called when spin value reached max]]
   }
}