Home
last modified time | relevance | path

Searched refs:lv_obj_get_content_width (Results 1 – 16 of 16) sorted by relevance

/lvgl-3.7.0/src/extra/widgets/tileview/
Dlv_tileview.c95 lv_coord_t w = lv_obj_get_content_width(tv); in lv_obj_set_tile_id()
143 lv_obj_set_pos(obj, create_col_id * lv_obj_get_content_width(parent), in lv_tileview_tile_constructor()
166 lv_coord_t w = lv_obj_get_content_width(obj); in tileview_event_cb()
/lvgl-3.7.0/tests/src/test_cases/
Dtest_bar.c73 lv_coord_t indicator_part_width = lv_obj_get_content_width(bar); in test_bar_should_update_indicator_right_coordinate_based_on_bar_value()
129 lv_coord_t indicator_part_width = lv_obj_get_content_width(bar); in test_bar_rtl_should_update_indicator_left_coordinate_based_on_bar_value()
/lvgl-3.7.0/src/core/
Dlv_obj_pos.c102 lv_coord_t parent_w = lv_obj_get_content_width(parent); in lv_obj_refr_size()
373 x = lv_obj_get_content_width(base) / 2 - lv_obj_get_width(obj) / 2 + bleft; in lv_obj_align_to()
381 x = lv_obj_get_content_width(base) / 2 - lv_obj_get_width(obj) / 2 + bleft; in lv_obj_align_to()
386 x = lv_obj_get_content_width(base) - lv_obj_get_width(obj) + bleft; in lv_obj_align_to()
395 x = lv_obj_get_content_width(base) / 2 - lv_obj_get_width(obj) / 2 + bleft; in lv_obj_align_to()
400 x = lv_obj_get_content_width(base) - lv_obj_get_width(obj) + bleft; in lv_obj_align_to()
410 x = lv_obj_get_content_width(base) - lv_obj_get_width(obj) + bleft; in lv_obj_align_to()
568 lv_coord_t lv_obj_get_content_width(const lv_obj_t * obj) in lv_obj_get_content_width() function
642 lv_coord_t pw = lv_obj_get_content_width(parent); in lv_obj_refr_pos()
Dlv_obj_pos.h298 lv_coord_t lv_obj_get_content_width(const struct _lv_obj_t * obj);
/lvgl-3.7.0/src/extra/widgets/tabview/
Dlv_tabview.c157 lv_coord_t w = lv_obj_get_content_width(cont); in lv_tabview_set_act()
335 lv_coord_t w = lv_obj_get_content_width(cont); in cont_scroll_end_event_cb()
/lvgl-3.7.0/src/extra/layouts/flex/
Dlv_flex.c225 …lv_coord_t max_main_size = (f.row ? lv_obj_get_content_width(cont) : lv_obj_get_content_height(con… in flex_update()
270 …oord_t max_cross_size = (f.row ? lv_obj_get_content_height(cont) : lv_obj_get_content_width(cont)); in flex_update()
449 if(f->row && rtl) main_pos += lv_obj_get_content_width(cont); in children_repos()
/lvgl-3.7.0/src/extra/widgets/chart/
Dlv_chart.c283 lv_coord_t w = ((int32_t)lv_obj_get_content_width(obj) * chart->zoom_x) >> 8; in lv_chart_get_point_pos_by_id()
742 p->x = ((int32_t)lv_obj_get_content_width(obj) * chart->zoom_x) >> 8; in lv_chart_event()
779 lv_coord_t w = ((int32_t)lv_obj_get_content_width(obj) * chart->zoom_x) >> 8; in draw_div_lines()
885 lv_coord_t w = ((int32_t)lv_obj_get_content_width(obj) * chart->zoom_x) >> 8; in draw_series_line()
1054 lv_coord_t w = ((int32_t)lv_obj_get_content_width(obj) * chart->zoom_x) >> 8; in draw_series_scatter()
1194 lv_coord_t w = ((int32_t)lv_obj_get_content_width(obj) * chart->zoom_x) >> 8; in draw_series_bar()
1530 lv_coord_t w = ((int32_t)lv_obj_get_content_width(obj) * chart->zoom_x) >> 8; in draw_x_ticks()
1669 lv_coord_t w = ((int32_t)lv_obj_get_content_width(obj) * chart->zoom_x) >> 8; in get_index_from_x()
1686 lv_coord_t w = ((int32_t)lv_obj_get_content_width(obj) * chart->zoom_x) >> 8; in invalidate_point()
/lvgl-3.7.0/src/widgets/
Dlv_label.c302 pos->x = lv_obj_get_content_width(obj); in lv_label_get_letter_pos()
305 pos->x = lv_obj_get_content_width(obj) / 2; in lv_label_get_letter_pos()
774 lv_coord_t w = lv_obj_get_content_width(obj); in lv_label_event()
776 else w = lv_obj_get_content_width(obj); in lv_label_event()
Dlv_roller.c603 lv_obj_set_x(label, (lv_obj_get_content_width(obj) - lv_obj_get_width(label)) / 2); in refr_position()
606 lv_obj_set_x(label, lv_obj_get_content_width(obj) - lv_obj_get_width(label)); in refr_position()
Dlv_btnmatrix.c112 lv_coord_t max_w = lv_obj_get_content_width(obj); in lv_btnmatrix_set_map()
Dlv_textarea.c384 lv_coord_t w = lv_obj_get_content_width(obj); in lv_textarea_set_cursor_pos()
/lvgl-3.7.0/src/extra/layouts/grid/
Dlv_grid.c402 lv_coord_t cont_w = lv_obj_get_content_width(cont); in calc()
429 lv_coord_t cont_w = lv_obj_get_content_width(cont); in calc_cols()
/lvgl-3.7.0/src/extra/widgets/span/
Dlv_span.c566 width = lv_obj_get_content_width(obj); in lv_spangroup_event()
580 width = self_size->x >= 0 ? lv_obj_get_content_width(obj) : 0; in lv_spangroup_event()
/lvgl-3.7.0/docs/overview/
Dcoords.md180 lv_coord_t content_w = lv_obj_get_content_width(obj);
/lvgl-3.7.0/demos/benchmark/
Dlv_demo_benchmark.c815 lv_coord_t w = lv_obj_get_content_width(lv_scr_act()); in generate_report()
/lvgl-3.7.0/demos/widgets/
Dlv_demo_widgets.c871 lv_obj_set_width(chart3, lv_obj_get_content_width(panel1) - 20); in shop_create()