/lvgl-3.7.0/src/core/ |
D | lv_theme.c | 22 static void apply_theme(lv_theme_t * th, lv_obj_t * obj); 49 lv_theme_t * th = lv_theme_get_from_obj(obj); in lv_theme_apply() local 50 if(th == NULL) return; in lv_theme_apply() 54 apply_theme(th, obj); /*Apply the theme including the base theme(s)*/ in lv_theme_apply() 82 lv_theme_t * th = lv_theme_get_from_obj(obj); in lv_theme_get_font_small() local 83 return th ? th->font_small : LV_FONT_DEFAULT; in lv_theme_get_font_small() 88 lv_theme_t * th = lv_theme_get_from_obj(obj); in lv_theme_get_font_normal() local 89 return th ? th->font_normal : LV_FONT_DEFAULT; in lv_theme_get_font_normal() 94 lv_theme_t * th = lv_theme_get_from_obj(obj); in lv_theme_get_font_large() local 95 return th ? th->font_large : LV_FONT_DEFAULT; in lv_theme_get_font_large() [all …]
|
D | lv_disp.h | 92 void lv_disp_set_theme(lv_disp_t * disp, lv_theme_t * th);
|
D | lv_disp.c | 124 void lv_disp_set_theme(lv_disp_t * disp, lv_theme_t * th) in lv_disp_set_theme() argument 132 disp->theme = th; in lv_disp_set_theme()
|
/lvgl-3.7.0/examples/styles/ |
D | lv_example_style_14.c | 8 static void new_theme_apply_cb(lv_theme_t * th, lv_obj_t * obj) in new_theme_apply_cb() argument 10 LV_UNUSED(th); in new_theme_apply_cb()
|
D | lv_example_style_14.py | 42 def new_theme_apply_cb(self, th, obj): argument 43 print(th,obj)
|
/lvgl-3.7.0/docs/widgets/extra/ |
D | tileview.md | 20 …ile(tileview, row_id, col_id, dir)` creates a new tile on the `row_id`th row and `col_id`th column.
|
D | chart.md | 142 - `value`: value of `id`th point 151 - `value`: value of `id`th point
|
/lvgl-3.7.0/src/extra/libs/gif/ |
D | gifdec.h | 38 uint16_t tw, uint16_t th, uint8_t cw, uint8_t ch,
|
D | gifdec.c | 186 uint16_t tx, ty, tw, th; in read_plain_text_ext() local 193 th = read_num(gif); in read_plain_text_ext() 199 gif->plain_text(gif, tx, ty, tw, th, cw, ch, fg, bg); in read_plain_text_ext()
|
/lvgl-3.7.0/src/extra/widgets/imgbtn/ |
D | lv_imgbtn.c | 229 lv_coord_t th = lv_obj_get_style_transform_height(obj, LV_PART_MAIN); in draw_main() local 234 coords.y1 -= th; in draw_main() 235 coords.y2 += th; in draw_main()
|
/lvgl-3.7.0/src/extra/themes/basic/ |
D | lv_theme_basic.c | 50 static void theme_apply(lv_theme_t * th, lv_obj_t * obj); 169 static void theme_apply(lv_theme_t * th, lv_obj_t * obj) in theme_apply() argument 171 LV_UNUSED(th); in theme_apply()
|
/lvgl-3.7.0/src/draw/sdl/ |
D | lv_draw_sdl_img.c | 173 int access = 0, tw, th; in calc_draw_part() local 174 SDL_QueryTexture(texture, &format, &access, &tw, &th); in calc_draw_part() 176 h = th; in calc_draw_part()
|
/lvgl-3.7.0/src/misc/ |
D | lv_area.c | 170 lv_coord_t th = a2_p->y1 - a1_p->y1; in _lv_area_diff() local 171 if(th > 0) { in _lv_area_diff() 175 n.y2 = a1_p->y1 + th; in _lv_area_diff()
|
/lvgl-3.7.0/docs/_static/css/ |
D | custom.css | 1 table, th, td { selector
|
D | fontawesome.min.css | 5 ….fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\…
|
/lvgl-3.7.0/src/extra/themes/mono/ |
D | lv_theme_mono.c | 59 static void theme_apply(lv_theme_t * th, lv_obj_t * obj); 197 static void theme_apply(lv_theme_t * th, lv_obj_t * obj) in theme_apply() argument 199 LV_UNUSED(th); in theme_apply()
|
/lvgl-3.7.0/docs/widgets/core/ |
D | dropdown.md | 67 …th `lv_dropdown_set_text(dropdown, "Some text")` it will be shown regardless to th selected option.
|
D | btnmatrix.md | 70 `lv_btnmatrix_get_btn_text(btnm, btn_id)` returns a pointer to the text of `btn_id`th button.
|
/lvgl-3.7.0/src/extra/themes/default/ |
D | lv_theme_default.c | 167 static void theme_apply(lv_theme_t * th, lv_obj_t * obj); 694 static void theme_apply(lv_theme_t * th, lv_obj_t * obj) in theme_apply() argument 696 LV_UNUSED(th); in theme_apply()
|
/lvgl-3.7.0/docs/overview/ |
D | style.md | 316 lv_theme_t * th = lv_theme_default_init(display, /*Use the DPI, size, etc from this display*/ 321 lv_disp_set_theme(display, th); /*Assign the theme to the display*/
|
/lvgl-3.7.0/docs/porting/ |
D | display.md | 165 * For example it makes the area to start only on 8th rows and have Nx8 pixel height.*/
|