summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_ui_range.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/efl/interfaces/efl_ui_range.eo')
-rw-r--r--src/lib/efl/interfaces/efl_ui_range.eo18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/lib/efl/interfaces/efl_ui_range.eo b/src/lib/efl/interfaces/efl_ui_range.eo
index a13ce57c5b..56d4f89919 100644
--- a/src/lib/efl/interfaces/efl_ui_range.eo
+++ b/src/lib/efl/interfaces/efl_ui_range.eo
@@ -28,7 +28,7 @@ interface Efl.Ui.Range
If it is bigger then $max, will be updated to $max. Actual value
can be get with @Efl.Ui.Range.range_value.get
- By default, min is equal to 0.0, and max is equal to 1.0.
+ The minimum and maximum values may be different for each class.
Warning: maximum must be greater than minimum, otherwise behavior
is undefined.
@@ -46,5 +46,21 @@ interface Efl.Ui.Range
max: double; [[The maximum value.]]
}
}
+ @property range_step {
+ [[Control the step used to increment or decrement values for given widget.
+
+ This value will be incremented or decremented to the displayed value.
+
+ By default step value is equal to 1.
+
+ Warning: The step value should be bigger than 0.]]
+ set {
+ }
+ get {
+ }
+ values {
+ step: double; [[The step value.]]
+ }
+ }
}
}