Searched refs:week_box (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/littlevgl/src/lv_themes/ |
A D | lv_theme_night.c | 360 static lv_style_t week_box; in calendar_init() local 361 lv_style_copy(&week_box, &panel); in calendar_init() 362 week_box.body.main_color = lv_color_hsv_to_rgb(_hue, 30, 45); in calendar_init() 364 week_box.body.radius = LV_DPI / 20; in calendar_init() 365 week_box.body.border.width = 1; in calendar_init() 366 week_box.body.padding.left = LV_DPI / 20; in calendar_init() 367 week_box.body.padding.right = LV_DPI / 20; in calendar_init() 368 week_box.body.padding.top = LV_DPI / 25; in calendar_init() 369 week_box.body.padding.bottom = LV_DPI / 25; in calendar_init() 372 lv_style_copy(&today_box, &week_box); in calendar_init() [all …]
|
A D | lv_theme_material.c | 374 static lv_style_t week_box; in calendar_init() local 375 lv_style_copy(&week_box, &def); in calendar_init() 376 week_box.body.main_color = lv_color_hsv_to_rgb(_hue, 40, 100); in calendar_init() 377 week_box.body.grad_color = lv_color_hsv_to_rgb(_hue, 40, 100); in calendar_init() 378 week_box.body.padding.top = LV_DPI / 20; in calendar_init() 379 week_box.body.padding.bottom = LV_DPI / 20; in calendar_init() 380 week_box.body.padding.left = theme.style.panel->body.padding.left; in calendar_init() 382 week_box.body.border.color = theme.style.panel->body.border.color; in calendar_init() 384 week_box.body.border.part = LV_BORDER_LEFT | LV_BORDER_RIGHT; in calendar_init() 385 week_box.body.radius = 0; in calendar_init() [all …]
|
A D | lv_theme_nemo.c | 440 static lv_style_t week_box; in calendar_init() local 441 lv_style_copy(&week_box, &def); in calendar_init() 442 week_box.body.opa = LV_OPA_TRANSP; in calendar_init() 443 week_box.body.border.color = theme.style.panel->body.border.color; in calendar_init() 444 week_box.body.padding.top = LV_DPI / 20; in calendar_init() 445 week_box.body.padding.bottom = LV_DPI / 20; in calendar_init() 459 theme.style.calendar.week_box = &week_box; in calendar_init() 460 theme.style.calendar.today_box = &week_box; in calendar_init()
|
A D | lv_theme.h | 157 lv_style_t * week_box; member
|
A D | lv_theme_templ.c | 198 theme.style.calendar.week_box = &def; in calendar_init()
|
A D | lv_theme_mono.c | 264 theme.style.calendar.week_box = &box; in calendar_init()
|
A D | lv_theme_zen.c | 366 theme.style.calendar.week_box = &lv_style_transp_fit; in calendar_init()
|
A D | lv_theme_alien.c | 479 theme.style.calendar.week_box = &header; in calendar_init()
|
/AliOS-Things-master/components/littlevgl/src/lv_objx/ |
A D | lv_calendar.c | 130 … lv_calendar_set_style(new_calendar, LV_CALENDAR_STYLE_WEEK_BOX, th->style.calendar.week_box); in lv_calendar_create()
|
Completed in 35 milliseconds