Tizen Native API  5.5
Spinner

spinner_inheritance_tree.png
preview-00.png

A spinner is a widget which allows the user to increase or decrease numeric values using arrow buttons, or edit values directly, clicking over it and typing the new value.

By default the spinner will not wrap and has a label of "%.0f" (just showing the integer value of the double).

A spinner has a label that is formatted with floating point values and thus accepts a printf-style format string, like “%1.2f units”.

It also allows specific values to be replaced by pre-defined labels.

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

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

Available styles for it:

Supported elm_object common APIs.

Here is an example on its usage: Spinner widget example

Functions

Evas_Objectelm_spinner_add (Evas_Object *parent)
void elm_spinner_special_value_del (Evas_Object *obj, double value)
const char * elm_spinner_special_value_get (Evas_Object *obj, double value)
void elm_spinner_min_max_set (Evas_Object *obj, double min, double max)
 Control the minimum and maximum values for the spinner.
void elm_spinner_min_max_get (const Evas_Object *obj, double *min, double *max)
 Control the minimum and maximum values for the spinner.
void elm_spinner_step_set (Evas_Object *obj, double step)
 Control the step used to increment or decrement the spinner value.
double elm_spinner_step_get (const Evas_Object *obj)
 Control the step used to increment or decrement the spinner value.
void elm_spinner_value_set (Evas_Object *obj, double val)
 Control the value the spinner displays.
double elm_spinner_value_get (const Evas_Object *obj)
 Control the value the spinner displays.

Function Documentation

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

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

This function inserts a new spinner widget on the canvas.

Since :
2.3
Examples:
bg_example_03.c, gengrid_example.c, slideshow_example.c, spinner_example.c, and transit_example_03.c.
void elm_spinner_min_max_get ( const Evas_Object obj,
double *  min,
double *  max 
)

Control the minimum and maximum values for the spinner.

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 elm_obj_spinner_value_get.

By default, min is equal to 0, and max is equal to 100.

Warning:
Maximum must be greater than minimum.
Parameters:
[out]minThe minimum value.
[out]maxThe maximum value.
Since :
2.3
void elm_spinner_min_max_set ( Evas_Object obj,
double  min,
double  max 
)

Control the minimum and maximum values for the spinner.

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 elm_obj_spinner_value_get.

By default, min is equal to 0, and max is equal to 100.

Warning:
Maximum must be greater than minimum.
Parameters:
[in]minThe minimum value.
[in]maxThe maximum value.
Since :
2.3
Examples:
bg_example_03.c, gengrid_example.c, slideshow_example.c, spinner_example.c, and transit_example_03.c.
void elm_spinner_special_value_del ( Evas_Object obj,
double  value 
)

Delete the special string display in the place of the numerical value.

Parameters:
objThe spinner object.
valueThe replaced value.

It will remove a previously added special value. After this, the spinner will display the value itself instead of a label.

See also:
elm_spinner_special_value_add() for more details.
Since (EFL) :
1.8
Since :
2.3
const char* elm_spinner_special_value_get ( Evas_Object obj,
double  value 
)

Get the special string display in the place of the numerical value.

Parameters:
objThe spinner object.
valueThe replaced value.
Returns:
The used label.
See also:
elm_spinner_special_value_add() for more details.
Since (EFL) :
1.8
Since :
2.3
double elm_spinner_step_get ( const Evas_Object obj)

Control the step used to increment or decrement the spinner value.

This value will be incremented or decremented to the displayed value. It will be incremented while the user keep right or top arrow pressed, and will be decremented while the user keep left or bottom arrow pressed.

The interval to increment / decrement can be set with elm_obj_spinner_interval_set.

By default step value is equal to 1.

Returns:
The step value.
Since :
2.3
void elm_spinner_step_set ( Evas_Object obj,
double  step 
)

Control the step used to increment or decrement the spinner value.

This value will be incremented or decremented to the displayed value. It will be incremented while the user keep right or top arrow pressed, and will be decremented while the user keep left or bottom arrow pressed.

The interval to increment / decrement can be set with elm_obj_spinner_interval_set.

By default step value is equal to 1.

Parameters:
[in]stepThe step value.
Since :
2.3
Examples:
slideshow_example.c, and spinner_example.c.
double elm_spinner_value_get ( const Evas_Object obj)

Control the value the spinner displays.

Value will be presented on the label following format specified with elm_spinner_format_set().

Warning The value must to be between min and max values. This values are set by elm_spinner_min_max_set().

Returns:
The value to be displayed.
Since :
2.3
Examples:
bg_example_03.c, gengrid_example.c, slideshow_example.c, spinner_example.c, and transit_example_03.c.
void elm_spinner_value_set ( Evas_Object obj,
double  val 
)

Control the value the spinner displays.

Value will be presented on the label following format specified with elm_spinner_format_set().

Warning The value must to be between min and max values. This values are set by elm_spinner_min_max_set().

Parameters:
[in]valThe value to be displayed.
Since :
2.3
Examples:
gengrid_example.c, and slideshow_example.c.