Lines Matching refs:letter_height
337 const int32_t letter_height = lv_font_get_line_height(font); in lv_label_get_letter_pos() local
348 bool last_line = y + letter_height + line_space + letter_height > max_h; in lv_label_get_letter_pos()
355 y += letter_height + line_space; in lv_label_get_letter_pos()
362 y += letter_height + line_space; in lv_label_get_letter_pos()
430 const int32_t letter_height = lv_font_get_line_height(font); in lv_label_get_letter_on() local
439 bool last_line = y + letter_height + line_space + letter_height > max_h; in lv_label_get_letter_on()
444 if(pos.y <= y + letter_height) { in lv_label_get_letter_on()
453 y += letter_height + line_space; 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() local
560 bool last_line = y + letter_height + line_space + letter_height > max_h; in lv_label_is_char_under_pos()
565 if(pos->y <= y + letter_height) break; /*The line is found (stored in 'line_start')*/ in lv_label_is_char_under_pos()
566 y += letter_height + line_space; in lv_label_is_char_under_pos()