[Elm] Elm slider now a layout.

SVN revision: 70647
This commit is contained in:
Gustavo Lima Chaves 2012-05-02 16:59:35 +00:00
parent 1ccd611d74
commit 7b3265fd15
2 changed files with 617 additions and 761 deletions

File diff suppressed because it is too large Load Diff

View File

@ -26,11 +26,15 @@
* the object or applications scaling factor. At any point code can query the * the object or applications scaling factor. At any point code can query the
* slider for its value with elm_slider_value_get(). * slider for its value with elm_slider_value_get().
* *
* Smart callbacks one can listen to: * This widget inherits from the @ref Layout one, so that all the
* - "changed" - Whenever the slider value is changed by the user. * functions acting on it also work for slider objects.
* - "slider,drag,start" - dragging the slider indicator around has started. *
* - "slider,drag,stop" - dragging the slider indicator around has stopped. * This widget emits the following signals, besides the ones sent from
* - "delay,changed" - A short time after the value is changed by the user. * @ref Layout:
* - @c "changed" - Whenever the slider value is changed by the user.
* - @c "slider,drag,start" - dragging the slider indicator around has started.
* - @c "slider,drag,stop" - dragging the slider indicator around has stopped.
* - @c "delay,changed" - A short time after the value is changed by the user.
* This will be called only when the user stops dragging for * This will be called only when the user stops dragging for
* a very short period or when they release their * a very short period or when they release their
* finger/mouse, so it avoids possibly expensive reactions to * finger/mouse, so it avoids possibly expensive reactions to