Home
last modified time | relevance | path

Searched refs:lv_font_get_line_height (Results 1 – 13 of 13) sorted by relevance

/lvgl-3.6.0/src/widgets/
Dlv_label.c320 lv_coord_t letter_height = lv_font_get_line_height(font); in lv_label_get_letter_pos()
419 lv_coord_t letter_height = lv_font_get_line_height(font); in lv_label_get_letter_on()
539 lv_coord_t letter_height = lv_font_get_line_height(font); in lv_label_is_char_under_pos()
758 lv_coord_t font_h = lv_font_get_line_height(font); in lv_label_event()
882 … label_draw_dsc.ofs_y = label->offset.y + size.y + lv_font_get_line_height(label_draw_dsc.font); in draw_main()
989 …anim_set_values(&a, 0, lv_area_get_height(&txt_coords) - size.y - (lv_font_get_line_height(font))); in lv_label_refr_text()
1080 lv_anim_set_values(&a, 0, -size.y - (lv_font_get_line_height(font))); in lv_label_refr_text()
1109 … else if(size.y <= lv_font_get_line_height(font)) { /*No dots are required for one-line texts*/ in lv_label_refr_text()
1123 (lv_font_get_line_height(font) + line_space); /*Round down to the last line*/ in lv_label_refr_text()
1124 if(y_overed >= lv_font_get_line_height(font)) { in lv_label_refr_text()
[all …]
Dlv_roller.c198 … lv_obj_set_height(obj, (lv_font_get_line_height(font) + line_space) * row_cnt + 2 * border_width); in lv_roller_set_visible_row_count()
579 lv_coord_t font_main_h = lv_font_get_line_height(font_main); in get_sel_area()
580 lv_coord_t font_sel_h = lv_font_get_line_height(font_sel); in get_sel_area()
620 lv_coord_t font_h = lv_font_get_line_height(font); in refr_position()
703 lv_coord_t font_h = lv_font_get_line_height(font); in release_handler()
745 lv_coord_t font_h = lv_font_get_line_height(font); in inf_normalize()
Dlv_checkbox.c166 lv_coord_t font_h = lv_font_get_line_height(font); in lv_checkbox_event()
202 lv_coord_t font_h = lv_font_get_line_height(font); in lv_checkbox_draw()
Dlv_dropdown.c704 p->y = lv_font_get_line_height(font); in lv_dropdown_event()
948 lv_coord_t font_h = lv_font_get_line_height(font); in draw_box()
993 lv_coord_t font_h = lv_font_get_line_height(label_dsc.font); in draw_box_label()
1112 lv_coord_t font_h = lv_font_get_line_height(font); in get_id_on_point()
1138 lv_coord_t font_h = lv_font_get_line_height(font); in position_to_selected()
Dlv_textarea.c369 lv_coord_t font_h = lv_font_get_line_height(font); in lv_textarea_set_cursor_pos()
762 lv_coord_t font_h = lv_font_get_line_height(font); in lv_textarea_cursor_down()
790 lv_coord_t font_h = lv_font_get_line_height(font); in lv_textarea_cursor_up()
1065 const lv_coord_t letter_h = lv_font_get_line_height(font); in refr_cursor_area()
Dlv_table.c933 lv_coord_t h_max = lv_font_get_line_height(font) + cell_top + cell_bottom; in get_row_height()
971 h_max = LV_MAX(lv_font_get_line_height(font) + cell_top + cell_bottom, in get_row_height()
/lvgl-3.6.0/src/extra/widgets/msgbox/
Dlv_msgbox.c103 lv_coord_t close_btn_size = lv_font_get_line_height(font) + LV_DPX(10); in lv_msgbox_create()
132 lv_coord_t btn_h = lv_font_get_line_height(font) + LV_DPI_DEF / 10; in lv_msgbox_create()
/lvgl-3.6.0/src/font/
Dlv_font.h124 static inline lv_coord_t lv_font_get_line_height(const lv_font_t * font_p) in lv_font_get_line_height() function
/lvgl-3.6.0/examples/widgets/roller/
Dlv_example_roller_3.c20 lv_coord_t font_h = lv_font_get_line_height(font); in mask_event_cb()
/lvgl-3.6.0/src/extra/widgets/span/
Dlv_span.c350 lv_coord_t line_h = lv_font_get_line_height(font); in lv_spangroup_get_max_line_h()
443 snippet.line_h = lv_font_get_line_height(snippet.font) + line_space; in lv_spangroup_get_expand_height()
826 snippet.line_h = lv_font_get_line_height(snippet.font) + line_space; in lv_draw_span()
885 … next_line_h = lv_font_get_line_height(lv_span_get_style_text_font(obj, next_span)) + line_space; in lv_draw_span()
/lvgl-3.6.0/src/draw/
Dlv_draw_label.c121 int32_t line_height_font = lv_font_get_line_height(font); in lv_draw_label()
/lvgl-3.6.0/src/misc/
Dlv_txt.c104 uint16_t letter_height = lv_font_get_line_height(font); in lv_txt_get_size()
/lvgl-3.6.0/demos/music/
Dlv_demo_music_main.c488 lv_obj_set_height(title_label, lv_font_get_line_height(font_large) * 3 / 2); in create_title_box()