1class Efl.Ui.Slider extends Efl.Ui.Layout_Base implements Efl.Ui.Range_Interactive, Efl.Ui.Layout_Orientable,
2                     Efl.Access.Widget.Action
3{
4   [[Elementary slider class
5
6     This lets the UI user select a numerical value inside the @Efl.Ui.Range_Display.range_limits limits.
7     The current value can be retrieved using the @Efl.Ui.Range_Interactive interface. Events monitoring its
8     changes are also available in that interface.
9     The visual representation of min and max can be swapped using @Efl.Ui.Layout_Orientable.orientation.
10     Normally the minimum of @Efl.Ui.Range_Display.range_limits is shown on the left side, the max on the right side.
11
12     @since 1.23
13   ]]
14   implements {
15      Efl.Object.constructor;
16      Efl.Object.destructor;
17      Efl.Ui.Widget.theme_apply;
18      Efl.Ui.Widget.on_access_activate;
19      Efl.Ui.Focus.Object.on_focus_update;
20      Efl.Ui.Widget.widget_input_event_handler;
21      Efl.Ui.Range_Display.range_value { get; set; }
22      Efl.Ui.Range_Display.range_limits {get; set; }
23      Efl.Ui.Range_Interactive.range_step { get; set; }
24      Efl.Ui.Layout_Orientable.orientation { get; set; }
25      Efl.Access.Widget.Action.elm_actions { get; }
26   }
27   events {
28      slider,drag,start: void; [[Called when a slider drag operation has started. This means a $press event
29                                 has been received on the slider thumb but not the $unpress.]]
30      slider,drag,stop: void; [[Called when a slider drag operation has finished. This means an $unpress event
31                                has been received on the slider thumb.]]
32   }
33}
34