i80_controller sample
lv_obj_get_style_base_dir()
is only used within i80_controller sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
i80_controller sample
lv_obj_get_style_base_dir()
lv_obj_get_style_base_dir() function
Syntax
Show:
Summary
Declaration
from
lv_obj_style_gen.h:640
static
inline
lv_base_dir_t
lv_obj_get_style_base_dir
(
const
lv_obj_t
*
obj
,
lv_part_t
part
)
;
Arguments
Argument
obj
part
Examples
References
from
examples
Code
Location
Referrer
static
inline
lv_base_dir_t
lv_obj_get_style_base_dir
(
const
lv_obj_t
*
obj
,
lv_part_t
part
)
lv_obj_style_gen.h:640
lv_base_dir_t
base_dir
=
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
;
lv_bar.c:397
draw_indic()
lv_base_dir_t
base_dir
=
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
;
lv_buttonmatrix.c:110
lv_buttonmatrix_set_map()
const
bool
is_rtl
=
LV_BASE_DIR_RTL
==
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
;
lv_checkbox.c:222
lv_checkbox_draw()
if
(
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
symbol_to_left
=
true
;
lv_dropdown.c:881
draw_main()
bool
rtl
=
lv_obj_get_style_base_dir
(
cont
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
;
lv_flex.c:140
flex_update()
bool
rtl
=
lv_obj_get_style_base_dir
(
cont
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
;
lv_flex.c:365
children_repos()
bool
rev
=
lv_obj_get_style_base_dir
(
cont
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
;
lv_grid.c:246
calc()
if
(
lv_obj_get_style_base_dir
(
item
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
{
lv_grid.c:485
item_repos()
if
(
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
{
lv_obj_pos.c:183
lv_obj_refr_size()
if
(
lv_obj_get_style_base_dir
(
base
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
align
=
LV_ALIGN_TOP_RIGHT
;
lv_obj_pos.c:349
lv_obj_align_to()
if
(
lv_obj_get_style_base_dir
(
parent
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
{
lv_obj_pos.c:464
lv_obj_align_to()
if
(
lv_obj_get_style_base_dir
(
parent
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
align
=
LV_ALIGN_TOP_RIGHT
;
lv_obj_pos.c:645
lv_obj_refr_pos()
if
(
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
{
lv_obj_pos.c:994
calc_content_width()
if
(
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
!=
LV_BASE_DIR_RTL
)
{
lv_obj_scroll.c:170
lv_obj_get_scroll_left()
if
(
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
{
lv_obj_scroll.c:213
lv_obj_get_scroll_right()
if
(
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
!=
LV_BASE_DIR_RTL
)
{
lv_obj_scroll.c:269
lv_obj_scroll_by_bounded()
bool
rtl
=
lv_obj_get_style_base_dir
(
obj
,
LV_PART_SCROLLBAR
)
==
LV_BASE_DIR_RTL
;
lv_obj_scroll.c:495
lv_obj_get_scrollbar_area()
if
(
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
!=
LV_BASE_DIR_RTL
)
{
lv_obj_scroll.c:651
lv_obj_readjust_scroll()
lv_base_dir_t
base_dir
=
lv_obj_get_style_base_dir
(
obj
,
part
)
;
lv_obj_style.c:573
lv_obj_calculate_style_text_align()
const
bool
is_rtl
=
LV_BASE_DIR_RTL
==
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
;
lv_slider.c:304
draw_knob()
const
bool
is_rtl
=
LV_BASE_DIR_RTL
==
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
;
lv_slider.c:406
drag_start()
const
bool
is_rtl
=
LV_BASE_DIR_RTL
==
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
;
lv_slider.c:489
update_knob_pos()
if
(
LV_BASE_DIR_RTL
==
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
)
{
lv_switch.c:180
draw_main()
bool
rtl
=
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
;
lv_table.c:714
draw_main()
if
(
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
{
lv_table.c:1004
get_pressed_cell()
bool
rtl
=
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
;
lv_table.c:1071
get_cell_area()
if
(
lv_obj_get_style_base_dir
(
obj
,
LV_PART_MAIN
)
!=
LV_BASE_DIR_RTL
)
{
lv_tabview.c:130
lv_tabview_set_active()
if
(
lv_obj_get_style_base_dir
(
tv
,
LV_PART_MAIN
)
==
LV_BASE_DIR_RTL
)
t
=
-
(
p
.
x
-
w
/
2
)
/
w
;
lv_tabview.c:334
cont_scroll_end_event_cb()
Call Tree
from
examples
lv_obj_get_style_base_dir()
is called by 27 functions and calls 1 function:
lv_obj_refr_size()
lv_obj_align_to()
lv_obj_refr_pos()
calc_content_width()
lv_obj_get_scroll_left()
lv_obj_get_scroll_right()
lv_obj_scroll_by_bounded()
lv_obj_get_scrollbar_area()
lv_obj_readjust_scroll()
lv_obj_calculate_style_text_align()
flex_update()
children_repos()
calc()
item_repos()
draw_indic()
lv_buttonmatrix_set_map()
lv_checkbox_draw()
draw_main()
draw_knob()
drag_start()
update_knob_pos()
draw_main()
draw_main()
get_pressed_cell()
get_cell_area()
lv_tabview_set_active()
cont_scroll_end_event_cb()
All items filtered out
lv_obj_get_style_base_dir()
lv_obj_get_style_prop()
All items filtered out
Data Use
from
examples
lv_obj_get_style_base_dir()
reads 2 variables:
lv_style_value_t::num
::LV_STYLE_BASE_DIR
All items filtered out
lv_obj_get_style_base_dir()
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