Macros | Typedefs | Functions

Macros

#define ELM_SLIDER_CLASS   elm_slider_class_get()
 Elementary slider class.
 

Typedefs

typedef char *(* slider_func_type) (double)
 
typedef void(* slider_freefunc_type) (char *)
 

Functions

void elm_config_slider_indicator_visible_mode_set (Elm_Slider_Indicator_Visible_Mode mode)
 Sets the slider's indicator visible mode. More...
 
Elm_Slider_Indicator_Visible_Mode elm_config_slider_indicator_visible_mode_get (void)
 Get the slider's indicator visible mode. More...
 
Evas_Objectelm_slider_add (Evas_Object *parent)
 Add a new slider widget to the given parent Elementary (container) object. More...
 
void elm_slider_horizontal_set (Evas_Object *obj, Eina_Bool horizontal)
 Set the orientation of a given slider widget. More...
 
Eina_Bool elm_slider_horizontal_get (const Evas_Object *obj)
 Get the orientation of a given slider widget.
 
void elm_slider_value_set (Evas_Object *obj, double val)
 Set the value the slider displays. More...
 
double elm_slider_value_get (const Evas_Object *obj)
 Get the value displayed by the slider. More...
 
void elm_slider_inverted_set (Evas_Object *obj, Eina_Bool inverted)
 Invert a given slider widget's displaying values order. More...
 
Eina_Bool elm_slider_inverted_get (const Evas_Object *obj)
 Get whether a given slider widget's displaying values are inverted or not. More...
 
void elm_slider_span_size_set (Evas_Object *obj, Evas_Coord size)
 Set the (exact) length of the bar region of a given slider widget. More...
 
Evas_Coord elm_slider_span_size_get (const Evas_Object *obj)
 Get the length set for the bar region of a given slider widget. More...
 
void elm_slider_unit_format_set (Evas_Object *obj, const char *units)
 Set the format string for the unit label. More...
 
const char * elm_slider_unit_format_get (const Evas_Object *obj)
 Get the unit label format of the slider. More...
 
void elm_slider_units_format_function_set (Evas_Object *obj, slider_func_type func, slider_freefunc_type free_func)
 Set the format function pointer for the units label. More...
 
void elm_slider_min_max_set (Evas_Object *obj, double min, double max)
 Set the minimum and maximum values for the slider. More...
 
void elm_slider_min_max_get (const Evas_Object *obj, double *min, double *max)
 Get the minimum and maximum values of the slider. More...
 
void elm_slider_indicator_format_set (Evas_Object *obj, const char *indicator)
 Set the format string for the indicator label. More...
 
const char * elm_slider_indicator_format_get (const Evas_Object *obj)
 Get the indicator label format of the slider. More...
 
void elm_slider_indicator_format_function_set (Evas_Object *obj, slider_func_type func, slider_freefunc_type free_func)
 Set the format function pointer for the indicator label. More...
 
void elm_slider_indicator_show_on_focus_set (Evas_Object *obj, Eina_Bool flag)
 Show the indicator of slider on focus. More...
 
Eina_Bool elm_slider_indicator_show_on_focus_get (const Evas_Object *obj)
 Get whether the indicator of the slider is set or not. More...
 
void elm_slider_indicator_show_set (Evas_Object *obj, Eina_Bool show)
 Set whether to enlarge slider indicator (augmented knob) or not. More...
 
Eina_Bool elm_slider_indicator_show_get (const Evas_Object *obj)
 Get whether a given slider widget's enlarging indicator or not. More...
 
void elm_slider_indicator_visible_mode_set (Evas_Object *obj, Elm_Slider_Indicator_Visible_Mode indicator_visible_mode)
 Set/Get the visible mode of indicator. More...
 
Elm_Slider_Indicator_Visible_Mode elm_slider_indicator_visible_mode_get (const Evas_Object *obj)
 Set/Get the visible mode of indicator. More...
 
double elm_slider_step_get (const Evas_Object *obj)
 Get the step by which slider indicator moves. More...
 
void elm_slider_step_set (Evas_Object *obj, double step)
 Set the step by which slider indicator will move. More...
 

Detailed Description

slider_inheritance_tree.png
preview-00.png

The slider adds a draggable “slider” widget for selecting the value of something within a range.

A slider can be horizontal or vertical. It can contain an Icon and has a primary label as well as a units label (that is formatted with floating point values and thus accepts a printf-style format string, like “%1.2f units”. There is also an indicator string that may be somewhere else (like on the slider itself) that also accepts a format string like units. Label, Icon Unit and Indicator strings/objects are optional.

A slider may be inverted which means values invert, with high vales being on the left or top and low values on the right or bottom (as opposed to normally being low on the left or top and high on the bottom and right).

The slider should have its minimum and maximum values set by the application with elm_slider_min_max_set() and value should also be set by the application before use with elm_slider_value_set(). The span of the slider is its length (horizontally or vertically). This will be scaled by the object or applications scaling factor. At any point code can query the slider for its value with elm_slider_value_get().

This widget inherits from the Layout one, so that all the functions acting on it also work for slider objects.

This widget emits the following signals, besides the ones sent from Layout :

Available styles for it:

Default content parts of the slider widget that you can use for are:

Default text parts of the slider widget that you can use for are:

Supported elm_object common APIs.

Here is an example on its usage:

Function Documentation

◆ elm_config_slider_indicator_visible_mode_set()

void elm_config_slider_indicator_visible_mode_set ( Elm_Slider_Indicator_Visible_Mode  mode)

Sets the slider's indicator visible mode.

Parameters
modeElm_Slider_Indicator_Visible_Mode. viewport.
Since
1.13

References EINA_TRUE, and _Elm_Config::slider_indicator_visible_mode.

◆ elm_config_slider_indicator_visible_mode_get()

Elm_Slider_Indicator_Visible_Mode elm_config_slider_indicator_visible_mode_get ( void  )

Get the slider's indicator visible mode.

Returns
ELM_SLIDER_INDICATOR_VISIBLE_MODE_DEFAULT if not set anything by the user. ELM_SLIDER_INDICATOR_VISIBLE_MODE_ALWAYS, ELM_SLIDER_INDICATOR_VISIBLE_MODE_ON_FOCUS, ELM_SLIDER_INDICATOR_VISIBLE_MODE_NONE if any of the above is set by user.
Since
1.13

References _Elm_Config::slider_indicator_visible_mode.

◆ elm_slider_add()

Evas_Object* elm_slider_add ( Evas_Object parent)

Add a new slider widget to the given parent Elementary (container) object.

Parameters
parentThe parent object.
Returns
a new slider widget handle or NULL, on errors.

This function inserts a new slider widget on the canvas.

References EINA_SAFETY_ON_NULL_RETURN_VAL.

◆ elm_slider_horizontal_set()

void elm_slider_horizontal_set ( Evas_Object obj,
Eina_Bool  horizontal 
)

Set the orientation of a given slider widget.

Use this function to change how your slider is to be disposed: vertically or horizontally.

By default it's displayed horizontally.

Parameters
[in]horizontal

◆ elm_slider_value_set()

void elm_slider_value_set ( Evas_Object obj,
double  val 
)

Set the value the slider displays.

Value will be presented on the unit label following format specified with elm_slider_unit_format_set and on indicator with elm_slider_indicator_format_set.

Note
The value must to be between min and max values. This values are set by elm_slider_min_max_set.
Parameters
[in]valThe value to be displayed.

References EINA_DBL_EQ.

◆ elm_slider_value_get()

double elm_slider_value_get ( const Evas_Object obj)

Get the value displayed by the slider.

Returns
The value to be displayed.

◆ elm_slider_inverted_set()

void elm_slider_inverted_set ( Evas_Object obj,
Eina_Bool  inverted 
)

Invert a given slider widget's displaying values order.

A slider may be inverted, in which state it gets its values inverted, with high vales being on the left or top and low values on the right or bottom, as opposed to normally have the low values on the former and high values on the latter, respectively, for horizontal and vertical modes.

Parameters
[in]invertedUse true to make obj inverted, false to bring it back to default, non-inverted values.

◆ elm_slider_inverted_get()

Eina_Bool elm_slider_inverted_get ( const Evas_Object obj)

Get whether a given slider widget's displaying values are inverted or not.

Returns
Use true to make obj inverted, false to bring it back to default, non-inverted values.

References EINA_FALSE.

◆ elm_slider_span_size_set()

void elm_slider_span_size_set ( Evas_Object obj,
Evas_Coord  size 
)

Set the (exact) length of the bar region of a given slider widget.

This sets the minimum width (when in horizontal mode) or height (when in vertical mode) of the actual bar area of the slider obj. This in turn affects the object's minimum size. Use this when you're not setting other size hints expanding on the given direction (like weight and alignment hints) and you would like it to have a specific size.

Note
Icon, end, label, indicator and unit text around obj will require their own space, which will make obj to require more the size, actually.
Parameters
[in]sizeThe length of the slider's bar region.

◆ elm_slider_span_size_get()

Evas_Coord elm_slider_span_size_get ( const Evas_Object obj)

Get the length set for the bar region of a given slider widget.

If that size was not set previously, with elm_slider_span_size_set, this call will return $0.

Returns
The length of the slider's bar region.

◆ elm_slider_unit_format_set()

void elm_slider_unit_format_set ( Evas_Object obj,
const char *  units 
)

Set the format string for the unit label.

Unit label is displayed all the time, if set, after slider's bar. In horizontal mode, at right and in vertical mode, at bottom.

If null, unit label won't be visible. If not it sets the format string for the label text. To the label text is provided a floating point value, so the label text can display up to 1 floating point value. Note that this is optional.

Use a format string such as "%1.2f meters" for example, and it will display values like: "3.14 meters" for a value equal to 3.14159.

Default is unit label disabled.

Parameters
[in]unitsThe format string for the unit display.

◆ elm_slider_unit_format_get()

const char* elm_slider_unit_format_get ( const Evas_Object obj)

Get the unit label format of the slider.

Unit label is displayed all the time, if set, after slider's bar. In horizontal mode, at right and in vertical mode, at bottom.

Returns
The format string for the unit display.

◆ elm_slider_units_format_function_set()

void elm_slider_units_format_function_set ( Evas_Object obj,
slider_func_type  func,
slider_freefunc_type  free_func 
)

Set the format function pointer for the units label.

Set the callback function to format the units string.

Parameters
[in]funcThe units format function.
[in]free_funcThe freeing function for the format string.

◆ elm_slider_min_max_set()

void elm_slider_min_max_set ( Evas_Object obj,
double  min,
double  max 
)

Set the minimum and maximum values for the slider.

Define the allowed range of values to be selected by the user.

If actual value is less than min, it will be updated to min. If it is bigger then max, will be updated to max. Actual value can be get with Efl.Ui.Progress.progress_value.get

By default, min is equal to 0.0, and max is equal to 1.0.

Warning
maximum must be greater than minimum, otherwise behavior is undefined.
Parameters
[in]minThe minimum value.
[in]maxThe maximum value.

References EINA_DBL_EQ, and ERR.

◆ elm_slider_min_max_get()

void elm_slider_min_max_get ( const Evas_Object obj,
double *  min,
double *  max 
)

Get the minimum and maximum values of the slider.

Note
If only one value is needed, the other pointer can be passed as null.
Parameters
[out]minThe minimum value.
[out]maxThe maximum value.

◆ elm_slider_indicator_format_set()

void elm_slider_indicator_format_set ( Evas_Object obj,
const char *  indicator 
)

Set the format string for the indicator label.

The slider may display its value somewhere else then unit label, for example, above the slider knob that is dragged around. This function sets the format string used for this.

If null, indicator label won't be visible. If not it sets the format string for the label text. To the label text is provided a floating point value, so the label text can display up to 1 floating point value. Note that this is optional.

Use a format string such as "%1.2f meters" for example, and it will display values like: "3.14 meters" for a value equal to 3.14159.

Default is indicator label disabled.

Parameters
[in]objThe object.
[in]indicatorThe format string for the indicator display.

◆ elm_slider_indicator_format_get()

const char* elm_slider_indicator_format_get ( const Evas_Object obj)

Get the indicator label format of the slider.

The slider may display its value somewhere else then unit label, for example, above the slider knob that is dragged around. This function gets the format string used for this.

Parameters
[in]objThe object.
Returns
The format string for the indicator display.

◆ elm_slider_indicator_format_function_set()

void elm_slider_indicator_format_function_set ( Evas_Object obj,
slider_func_type  func,
slider_freefunc_type  free_func 
)

Set the format function pointer for the indicator label.

Set the callback function to format the indicator string.

Parameters
[in]objThe object.
[in]funcThe indicator format function.
[in]free_funcThe freeing function for the format string.

◆ elm_slider_indicator_show_on_focus_set()

void elm_slider_indicator_show_on_focus_set ( Evas_Object obj,
Eina_Bool  flag 
)

Show the indicator of slider on focus.

Parameters
[in]objThe object.
[in]flagtrue if indicator is shown on focus, false otherwise

References ELM_SLIDER_INDICATOR_VISIBLE_MODE_DEFAULT, and ELM_SLIDER_INDICATOR_VISIBLE_MODE_ON_FOCUS.

◆ elm_slider_indicator_show_on_focus_get()

Eina_Bool elm_slider_indicator_show_on_focus_get ( const Evas_Object obj)

Get whether the indicator of the slider is set or not.

Parameters
[in]objThe object.
Returns
true if indicator is shown on focus, false otherwise

References ELM_SLIDER_INDICATOR_VISIBLE_MODE_ON_FOCUS.

◆ elm_slider_indicator_show_set()

void elm_slider_indicator_show_set ( Evas_Object obj,
Eina_Bool  show 
)

Set whether to enlarge slider indicator (augmented knob) or not.

By default, indicator will be bigger while dragged by the user.

Parameters
[in]objThe object.
[in]showtrue will make it enlarge, false will let the knob always at default size.

References edje_object_signal_emit(), EINA_FALSE, EINA_TRUE, elm_layout_signal_emit(), and evas_object_smart_changed().

◆ elm_slider_indicator_show_get()

Eina_Bool elm_slider_indicator_show_get ( const Evas_Object obj)

Get whether a given slider widget's enlarging indicator or not.

Parameters
[in]objThe object.
Returns
true will make it enlarge, false will let the knob always at default size.

References EINA_FALSE.

◆ elm_slider_indicator_visible_mode_set()

void elm_slider_indicator_visible_mode_set ( Evas_Object obj,
Elm_Slider_Indicator_Visible_Mode  indicator_visible_mode 
)

Set/Get the visible mode of indicator.

Parameters
[in]objThe object.
[in]indicator_visible_modeThe indicator visible mode.

◆ elm_slider_indicator_visible_mode_get()

Elm_Slider_Indicator_Visible_Mode elm_slider_indicator_visible_mode_get ( const Evas_Object obj)

Set/Get the visible mode of indicator.

Parameters
[in]objThe object.
Returns
The indicator visible mode.

◆ elm_slider_step_get()

double elm_slider_step_get ( const Evas_Object obj)

Get the step by which slider indicator moves.

Parameters
[in]objThe object.
Returns
The step value.
Since
1.8

◆ elm_slider_step_set()

void elm_slider_step_set ( Evas_Object obj,
double  step 
)

Set the step by which slider indicator will move.

This value is used when a draggable object is moved automatically such as when key events like the up/down/left/right key are pressed or in case accessibility is set and flick event is used to inc/dec slider values. By default step value is 0.05.

Parameters
[in]objThe object.
[in]stepThe step value.
Since
1.8

References EINA_DBL_EQ, and ERR.