Searched refs:lv_font_get_line_height (Results 1 – 15 of 15) sorted by relevance
/lvgl-latest/src/widgets/label/ |
D | lv_label.c | 337 const int32_t letter_height = lv_font_get_line_height(font); in lv_label_get_letter_pos() 430 const int32_t letter_height = lv_font_get_line_height(font); in lv_label_get_letter_on() 553 const int32_t letter_height = lv_font_get_line_height(font); in lv_label_is_char_under_pos() 770 const int32_t font_h = lv_font_get_line_height(font); in lv_label_event() 896 … label_draw_dsc.ofs_y = label->offset.y + size.y + lv_font_get_line_height(label_draw_dsc.font); in draw_main() 1039 …anim_set_values(&a, 0, lv_area_get_height(&txt_coords) - size.y - (lv_font_get_line_height(font))); in lv_label_refr_text() 1135 lv_anim_set_values(&a, 0, -size.y - (lv_font_get_line_height(font))); in lv_label_refr_text() 1161 size.y > lv_font_get_line_height(font) && /*No break requested, so no dots required*/ in lv_label_refr_text() 1170 (lv_font_get_line_height(font) + line_space); /*Round down to the last line*/ in lv_label_refr_text() 1171 if(y_overed >= lv_font_get_line_height(font)) { in lv_label_refr_text() [all …]
|
/lvgl-latest/src/widgets/roller/ |
D | lv_roller.c | 155 …int32_t normal_h = roller->option_cnt * (lv_font_get_line_height(font) + lv_obj_get_style_text_let… in lv_roller_set_options() 257 … 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() 650 int32_t font_main_h = lv_font_get_line_height(font_main); in get_sel_area() 651 int32_t font_sel_h = lv_font_get_line_height(font_sel); in get_sel_area() 695 const int32_t font_h = lv_font_get_line_height(font); in refr_position() 779 int32_t font_h = lv_font_get_line_height(font); in release_handler() 833 int32_t font_h = lv_font_get_line_height(font); in inf_normalize()
|
/lvgl-latest/src/font/ |
D | lv_font.c | 138 int32_t lv_font_get_line_height(const lv_font_t * font) in lv_font_get_line_height() function
|
D | lv_font.h | 168 int32_t lv_font_get_line_height(const lv_font_t * font);
|
/lvgl-latest/examples/widgets/chart/ |
D | lv_example_chart_3.c | 58 lv_area_set_height(&label_area, lv_font_get_line_height(draw_label_dsc.font)); in event_cb()
|
/lvgl-latest/src/widgets/checkbox/ |
D | lv_checkbox.c | 184 int32_t font_h = lv_font_get_line_height(font); in lv_checkbox_event() 220 int32_t font_h = lv_font_get_line_height(font); in lv_checkbox_draw()
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_util.c | 479 … 30 * lv_font_get_line_height(&font_lv_demo_high_res_roboto_medium_8) / 100); /* +30% */ in init_fonts_sm() 496 … 30 * lv_font_get_line_height(&font_lv_demo_high_res_roboto_medium_12) / 100); /* +30% */ in init_fonts_md() 513 … 30 * lv_font_get_line_height(&font_lv_demo_high_res_roboto_medium_18) / 100); /* +30% */ in init_fonts_lg()
|
/lvgl-latest/src/draw/ |
D | lv_draw_label.c | 148 a.y2 = a.y1 + lv_font_get_line_height(g.resolved_font ? g.resolved_font : dsc->font); in lv_draw_character() 188 a.y2 = a.y1 + lv_font_get_line_height(font); in lv_draw_letter() 232 int32_t line_height_font = lv_font_get_line_height(font); in lv_draw_label_iterate_characters()
|
/lvgl-latest/src/widgets/dropdown/ |
D | lv_dropdown.c | 766 p->y = lv_font_get_line_height(font); in lv_dropdown_event() 1024 int32_t font_h = lv_font_get_line_height(font); in draw_box() 1071 int32_t font_h = lv_font_get_line_height(label_dsc.font); in draw_box_label() 1190 int32_t font_h = lv_font_get_line_height(font); in get_id_on_point() 1216 int32_t font_h = lv_font_get_line_height(font); in position_to_selected()
|
/lvgl-latest/src/widgets/span/ |
D | lv_span.c | 395 int32_t line_h = lv_font_get_line_height(font); in lv_spangroup_get_max_line_height() 490 snippet.line_h = lv_font_get_line_height(snippet.font) + line_space; in lv_spangroup_get_expand_height() 959 snippet.line_h = lv_font_get_line_height(snippet.font) + line_space; in lv_draw_span() 1022 … next_line_h = lv_font_get_line_height(lv_span_get_style_text_font(obj, next_span)) + line_space; in lv_draw_span()
|
/lvgl-latest/src/widgets/textarea/ |
D | lv_textarea.c | 476 int32_t font_h = lv_font_get_line_height(font); in lv_textarea_set_cursor_pos() 880 int32_t font_h = lv_font_get_line_height(font); in lv_textarea_cursor_down() 908 int32_t font_h = lv_font_get_line_height(font); in lv_textarea_cursor_up() 1185 const int32_t letter_h = lv_font_get_line_height(font); in refr_cursor_area()
|
/lvgl-latest/src/misc/ |
D | lv_text.c | 105 uint16_t letter_height = lv_font_get_line_height(font); in lv_text_get_size()
|
/lvgl-latest/src/widgets/table/ |
D | lv_table.c | 936 int32_t h_max = lv_font_get_line_height(font) + cell_top + cell_bottom; in get_row_height() 974 h_max = LV_MAX(lv_font_get_line_height(font) + cell_top + cell_bottom, in get_row_height()
|
/lvgl-latest/src/draw/nema_gfx/ |
D | lv_draw_nema_gfx_label.c | 422 int32_t line_height_font = lv_font_get_line_height(font); in _draw_label_iterate_characters()
|
/lvgl-latest/demos/music/ |
D | lv_demo_music_main.c | 504 lv_obj_set_height(title_label, lv_font_get_line_height(font_large) * 3 / 2); in create_title_box()
|