i80_controller sample
lv_spinbox_t::value
is only used within i80_controller sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
i80_controller sample
lv_spinbox_t::value
lv_spinbox_t::value field
Syntax
Show:
Summary
Declaration
from
lv_spinbox_private.h:34
int32_t
value
;
Examples
References
from
examples
Code
Location
Referrer
int32_t
value
;
lv_spinbox_private.h:34
spinbox
->
value
=
v
;
lv_spinbox.c:76
lv_spinbox_set_value()
if
(
spinbox
->
value
>
spinbox
->
range_max
)
spinbox
->
value
=
spinbox
->
range_max
;
lv_spinbox.c:127
lv_spinbox_set_range()
if
(
spinbox
->
value
<
spinbox
->
range_min
)
spinbox
->
value
=
spinbox
->
range_min
;
lv_spinbox.c:128
lv_spinbox_set_range()
return
spinbox
->
value
;
lv_spinbox.c:164
lv_spinbox_get_value()
int32_t
v
=
spinbox
->
value
;
lv_spinbox.c:215
lv_spinbox_increment()
if
(
(
spinbox
->
value
<
0
)
&&
(
spinbox
->
value
+
spinbox
->
step
)
>
0
)
{
lv_spinbox.c:218
lv_spinbox_increment()
v
=
-
(
spinbox
->
step
+
spinbox
->
value
)
;
lv_spinbox.c:219
lv_spinbox_increment()
if
(
(
spinbox
->
rollover
)
&&
(
spinbox
->
value
==
spinbox
->
range_max
)
)
lv_spinbox.c:227
lv_spinbox_increment()
if
(
v
!=
spinbox
->
value
)
{
lv_spinbox.c:233
lv_spinbox_increment()
spinbox
->
value
=
v
;
lv_spinbox.c:234
lv_spinbox_increment()
int32_t
v
=
spinbox
->
value
;
lv_spinbox.c:244
lv_spinbox_decrement()
if
(
(
spinbox
->
value
>
0
)
&&
(
spinbox
->
value
-
spinbox
->
step
)
<
0
)
{
lv_spinbox.c:247
lv_spinbox_decrement()
v
=
spinbox
->
step
-
spinbox
->
value
;
lv_spinbox.c:248
lv_spinbox_decrement()
if
(
(
spinbox
->
rollover
)
&&
(
spinbox
->
value
==
spinbox
->
range_min
)
)
lv_spinbox.c:256
lv_spinbox_decrement()
if
(
v
!=
spinbox
->
value
)
{
lv_spinbox.c:262
lv_spinbox_decrement()
spinbox
->
value
=
v
;
lv_spinbox.c:263
lv_spinbox_decrement()
spinbox
->
value
=
0
;
lv_spinbox.c:280
lv_spinbox_constructor()
(
*
buf_p
)
=
spinbox
->
value
>=
0
?
'+'
:
'-'
;
lv_spinbox.c:411
lv_spinbox_updatevalue()
lv_snprintf
(
digits
,
LV_SPINBOX_MAX_DIGIT_COUNT_WITH_4BYTES
,
"%"
LV_PRId32
,
LV_ABS
(
spinbox
->
value
)
)
;
lv_spinbox.c:421
lv_spinbox_updatevalue()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
lv_spinbox_t::value
is written by 5 functions and is read by 5 functions:
lv_spinbox_set_value()
lv_spinbox_set_range()
lv_spinbox_increment()
lv_spinbox_decrement()
lv_spinbox_constructor()
All items filtered out
lv_spinbox_t::value
lv_spinbox_set_range()
lv_spinbox_get_value()
lv_spinbox_increment()
lv_spinbox_decrement()
lv_spinbox_updatevalue()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out