/lvgl-2.7.6/src/lv_themes/ |
D | lv_theme.h | 160 const lv_font_t * font_small; 161 const lv_font_t * font_normal; 162 const lv_font_t * font_subtitle; 163 const lv_font_t * font_title; 221 const lv_font_t * lv_theme_get_font_small(void); 227 const lv_font_t * lv_theme_get_font_normal(void); 233 const lv_font_t * lv_theme_get_font_subtitle(void); 239 const lv_font_t * lv_theme_get_font_title(void);
|
D | lv_theme_mono.h | 45 … const lv_font_t * font_small, const lv_font_t * font_normal, const lv_font_t * font_subtitle, 46 const lv_font_t * font_title);
|
D | lv_theme_template.h | 45 … const lv_font_t * font_small, const lv_font_t * font_normal, const lv_font_t * font_subtitle, 46 const lv_font_t * font_title);
|
D | lv_theme_empty.h | 45 … const lv_font_t * font_small, const lv_font_t * font_normal, const lv_font_t * font_subtitle, 46 const lv_font_t * font_title);
|
D | lv_theme_material.h | 50 … const lv_font_t * font_small, const lv_font_t * font_normal, const lv_font_t * font_subtitle, 51 const lv_font_t * font_title);
|
D | lv_theme_empty.c | 69 … const lv_font_t * font_small, const lv_font_t * font_normal, const lv_font_t * font_subtitle, in lv_theme_empty_init() 70 const lv_font_t * font_title) in lv_theme_empty_init()
|
D | lv_theme.c | 124 const lv_font_t * lv_theme_get_font_small(void) in lv_theme_get_font_small() 133 const lv_font_t * lv_theme_get_font_normal(void) in lv_theme_get_font_normal() 142 const lv_font_t * lv_theme_get_font_subtitle(void) in lv_theme_get_font_subtitle() 151 const lv_font_t * lv_theme_get_font_title(void) in lv_theme_get_font_title()
|
D | lv_theme_template.c | 348 … const lv_font_t * font_small, const lv_font_t * font_normal, const lv_font_t * font_subtitle, in lv_theme_template_init() 349 const lv_font_t * font_title) in lv_theme_template_init()
|
D | lv_theme_mono.c | 510 … const lv_font_t * font_small, const lv_font_t * font_normal, const lv_font_t * font_subtitle, in lv_theme_mono_init() 511 const lv_font_t * font_title) in lv_theme_mono_init()
|
/lvgl-2.7.6/tests/lv_test_core/ |
D | lv_test_font_loader.c | 32 static int compare_fonts(lv_font_t * f1, lv_font_t * f2); 47 extern lv_font_t font_1; 48 extern lv_font_t font_2; 49 extern lv_font_t font_3; 54 lv_font_t * font_1_bin = lv_font_load("f:font_1.fnt"); in lv_test_font_loader() 55 lv_font_t * font_2_bin = lv_font_load("f:font_2.fnt"); in lv_test_font_loader() 56 lv_font_t * font_3_bin = lv_font_load("f:font_3.fnt"); in lv_test_font_loader() 71 static int compare_fonts(lv_font_t * f1, lv_font_t * f2) in compare_fonts()
|
/lvgl-2.7.6/src/lv_font/ |
D | lv_font.h | 84 } lv_font_t; typedef 96 const uint8_t * lv_font_get_glyph_bitmap(const lv_font_t * font_p, uint32_t letter); 106 bool lv_font_get_glyph_dsc(const lv_font_t * font_p, lv_font_glyph_dsc_t * dsc_out, uint32_t letter, 116 uint16_t lv_font_get_glyph_width(const lv_font_t * font, uint32_t letter, uint32_t letter_next); 123 static inline lv_coord_t lv_font_get_line_height(const lv_font_t * font_p) in lv_font_get_line_height() 132 #define LV_FONT_DECLARE(font_name) extern lv_font_t font_name;
|
D | lv_font.c | 48 const uint8_t * lv_font_get_glyph_bitmap(const lv_font_t * font_p, uint32_t letter) in lv_font_get_glyph_bitmap() 61 bool lv_font_get_glyph_dsc(const lv_font_t * font_p, lv_font_glyph_dsc_t * dsc_out, uint32_t letter, in lv_font_get_glyph_dsc() 74 uint16_t lv_font_get_glyph_width(const lv_font_t * font, uint32_t letter, uint32_t letter_next) in lv_font_get_glyph_width()
|
D | lv_font_loader.h | 31 lv_font_t * lv_font_load(const char * fontName); 32 void lv_font_free(lv_font_t * font);
|
D | lv_font_fmt_txt.h | 209 const uint8_t * lv_font_get_bitmap_fmt_txt(const lv_font_t * font, uint32_t letter); 219 bool lv_font_get_glyph_dsc_fmt_txt(const lv_font_t * font, lv_font_glyph_dsc_t * dsc_out, uint32_t …
|
D | lv_font_fmt_txt.c | 39 static uint32_t get_glyph_dsc_id(const lv_font_t * font, uint32_t letter); 40 static int8_t get_kern_value(const lv_font_t * font, uint32_t gid_left, uint32_t gid_right); 84 const uint8_t * lv_font_get_bitmap_fmt_txt(const lv_font_t * font, uint32_t unicode_letter) in lv_font_get_bitmap_fmt_txt() 148 bool lv_font_get_glyph_dsc_fmt_txt(const lv_font_t * font, lv_font_glyph_dsc_t * dsc_out, uint32_t … in lv_font_get_glyph_dsc_fmt_txt() 207 static uint32_t get_glyph_dsc_id(const lv_font_t * font, uint32_t letter) in get_glyph_dsc_id() 266 static int8_t get_kern_value(const lv_font_t * font, uint32_t gid_left, uint32_t gid_right) in get_kern_value()
|
D | lv_font_loader.c | 69 static bool lvgl_load_font(lv_fs_file_t * fp, lv_font_t * font); 89 lv_font_t * lv_font_load(const char * font_name) in lv_font_load() 93 lv_font_t * font = lv_mem_alloc(sizeof(lv_font_t)); in lv_font_load() 94 memset(font, 0, sizeof(lv_font_t)); in lv_font_load() 124 void lv_font_free(lv_font_t * font) in lv_font_free() 491 static bool lvgl_load_font(lv_fs_file_t * fp, lv_font_t * font) in lvgl_load_font()
|
/lvgl-2.7.6/src/lv_misc/ |
D | lv_txt.h | 73 void _lv_txt_get_size(lv_point_t * size_res, const char * text, const lv_font_t * font, lv_coord_t … 87 uint32_t _lv_txt_get_next_line(const char * txt, const lv_font_t * font, lv_coord_t letter_space, l… 100 lv_coord_t _lv_txt_get_width(const char * txt, uint32_t length, const lv_font_t * font, lv_coord_t …
|
D | lv_txt.c | 93 void _lv_txt_get_size(lv_point_t * size_res, const char * text, const lv_font_t * font, lv_coord_t … in _lv_txt_get_size() 172 static uint32_t lv_txt_get_next_word(const char * txt, const lv_font_t * font, in lv_txt_get_next_word() 293 uint32_t _lv_txt_get_next_line(const char * txt, const lv_font_t * font, in _lv_txt_get_next_line() 353 lv_coord_t _lv_txt_get_width(const char * txt, uint32_t length, const lv_font_t * font, lv_coord_t … in _lv_txt_get_width()
|
/lvgl-2.7.6/src/lv_draw/ |
D | lv_draw_rect.h | 64 const lv_font_t * pattern_font; 73 const lv_font_t * value_font;
|
D | lv_draw_label.h | 32 const lv_font_t * font;
|
D | lv_draw_label.c | 36 const lv_font_t * font_p, 121 const lv_font_t * font = dsc->font; in lv_draw_label() 401 const lv_font_t * font_p, in lv_draw_letter()
|
/lvgl-2.7.6/src/lv_widgets/ |
D | lv_roller.c | 270 const lv_font_t * font = lv_obj_get_style_text_font(roller, LV_ROLLER_PART_BG); in lv_roller_set_visible_row_count() 426 const lv_font_t * font = lv_obj_get_style_text_font(roller, LV_ROLLER_PART_BG); in lv_roller_design() 487 … const lv_font_t * normal_label_font = lv_obj_get_style_text_font(roller, LV_ROLLER_PART_BG); in lv_roller_design() 532 const lv_font_t * font = lv_obj_get_style_text_font(roller, LV_ROLLER_PART_BG); in lv_roller_label_design() 731 const lv_font_t * font = lv_obj_get_style_text_font(roller, LV_ROLLER_PART_BG); in lv_roller_scrl_signal() 845 const lv_font_t * font = lv_obj_get_style_text_font(roller, LV_ROLLER_PART_BG); in refr_position() 966 const lv_font_t * base_font = lv_obj_get_style_text_font(roller, LV_ROLLER_PART_BG); in refr_width() 967 const lv_font_t * sel_font = lv_obj_get_style_text_font(roller, LV_ROLLER_PART_SELECTED); in refr_width() 1017 const lv_font_t * font = lv_obj_get_style_text_font(roller, LV_ROLLER_PART_BG); in inf_normalize()
|
D | lv_calendar.c | 652 const lv_font_t * font = lv_obj_get_style_text_font(calendar, LV_CALENDAR_PART_HEADER); in get_header_height() 666 const lv_font_t * font = lv_obj_get_style_text_font(calendar, LV_CALENDAR_PART_DAY_NAMES); in get_day_names_height() 683 const lv_font_t * font = lv_obj_get_style_text_font(calendar, LV_CALENDAR_PART_HEADER); in draw_header() 768 const lv_font_t * font = lv_obj_get_style_text_font(calendar, LV_CALENDAR_PART_DAY_NAMES); in draw_day_names() 801 const lv_font_t * nums_font = lv_obj_get_style_text_font(calendar, LV_CALENDAR_PART_DATE); in draw_dates()
|
D | lv_textarea.c | 621 const lv_font_t * font = lv_obj_get_style_text_font(ta, LV_TEXTAREA_PART_BG); in lv_textarea_set_cursor_pos() 762 const lv_font_t * font = lv_obj_get_style_text_font(ta, LV_TEXTAREA_PART_BG); in lv_textarea_set_one_line() 1230 const lv_font_t * font = lv_obj_get_style_text_font(ta, LV_TEXTAREA_PART_BG); in lv_textarea_cursor_down() 1262 const lv_font_t * font = lv_obj_get_style_text_font(ta, LV_TEXTAREA_PART_BG); in lv_textarea_cursor_up() 1438 const lv_font_t * font = lv_obj_get_style_text_font(ta, LV_TEXTAREA_PART_BG); in lv_textarea_signal() 1529 const lv_font_t * font = lv_obj_get_style_text_font(ta, LV_TEXTAREA_PART_BG); in lv_textarea_scrollable_signal() 1656 const lv_font_t * font = lv_obj_get_style_text_font(ta, LV_TEXTAREA_PART_BG); in pwd_char_hider() 1717 const lv_font_t * font = lv_obj_get_style_text_font(ta, LV_TEXTAREA_PART_BG); in refr_cursor_area()
|
/lvgl-2.7.6/src/lv_core/ |
D | lv_obj_style_dec.h | 158 _LV_OBJ_STYLE_SET_GET_DECLARE(VALUE_FONT, value_font, const lv_font_t *, _ptr, scalar) in _LV_OBJ_STYLE_SET_GET_DECLARE() 167 _LV_OBJ_STYLE_SET_GET_DECLARE(TEXT_FONT, text_font, const lv_font_t *, _ptr, scalar) in _LV_OBJ_STYLE_SET_GET_DECLARE()
|