Home
last modified time | relevance | path

Searched refs:th (Results 1 – 21 of 21) sorted by relevance

/lvgl-3.7.0/src/core/
Dlv_theme.c22 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 …]
Dlv_disp.h92 void lv_disp_set_theme(lv_disp_t * disp, lv_theme_t * th);
Dlv_disp.c124 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/
Dlv_example_style_14.c8 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()
Dlv_example_style_14.py42 def new_theme_apply_cb(self, th, obj): argument
43 print(th,obj)
/lvgl-3.7.0/docs/widgets/extra/
Dtileview.md20 …ile(tileview, row_id, col_id, dir)` creates a new tile on the `row_id`th row and `col_id`th column.
Dchart.md142 - `value`: value of `id`th point
151 - `value`: value of `id`th point
/lvgl-3.7.0/src/extra/libs/gif/
Dgifdec.h38 uint16_t tw, uint16_t th, uint8_t cw, uint8_t ch,
Dgifdec.c186 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/
Dlv_imgbtn.c229 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/
Dlv_theme_basic.c50 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/
Dlv_draw_sdl_img.c173 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/
Dlv_area.c170 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/
Dcustom.css1 table, th, td { selector
Dfontawesome.min.css5 ….fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\…
/lvgl-3.7.0/src/extra/themes/mono/
Dlv_theme_mono.c59 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/
Ddropdown.md67 …th `lv_dropdown_set_text(dropdown, "Some text")` it will be shown regardless to th selected option.
Dbtnmatrix.md70 `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/
Dlv_theme_default.c167 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/
Dstyle.md316 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/
Ddisplay.md165 * For example it makes the area to start only on 8th rows and have Nx8 pixel height.*/