Home
last modified time | relevance | path

Searched refs:menu_cont (Results 1 – 2 of 2) sorted by relevance

/lvgl-latest/demos/ebike/
Dlv_demo_ebike.c132 lv_obj_t * menu_cont = lv_obj_create(lv_screen_active()); in menu_bar_create() local
133 lv_obj_set_style_bg_color(menu_cont, lv_color_black(), 0); in menu_bar_create()
134 … lv_obj_set_flex_flow(menu_cont, LV_DEMO_EBIKE_PORTRAIT ? LV_FLEX_FLOW_ROW : LV_FLEX_FLOW_COLUMN); in menu_bar_create()
135 …lv_obj_set_flex_align(menu_cont, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER); in menu_bar_create()
137 lv_obj_set_size(menu_cont, lv_pct(100), 64); in menu_bar_create()
138 lv_obj_set_style_pad_gap(menu_cont, 32, 0); in menu_bar_create()
140 lv_obj_set_size(menu_cont, 44, lv_pct(100)); in menu_bar_create()
141 lv_obj_set_style_pad_gap(menu_cont, 16, 0); in menu_bar_create()
144 lv_obj_add_event_cb(menu_cont, menu_delete_event_cb, LV_EVENT_DELETE, NULL); in menu_bar_create()
148 lv_obj_t * icon1 = lv_image_create(menu_cont); in menu_bar_create()
[all …]
/lvgl-latest/src/themes/default/
Dlv_theme_default.c128 …lv_style_t menu_bg, menu_cont, menu_sidebar_cont, menu_main_cont, menu_page, menu_header_cont, men… member
489 style_init_reset(&theme->styles.menu_cont); in style_init()
490 lv_style_set_pad_hor(&theme->styles.menu_cont, PAD_SMALL); in style_init()
491 lv_style_set_pad_ver(&theme->styles.menu_cont, PAD_SMALL); in style_init()
492 lv_style_set_pad_gap(&theme->styles.menu_cont, PAD_SMALL); in style_init()
493 lv_style_set_border_width(&theme->styles.menu_cont, LV_DPX_CALC(theme->disp_dpi, 1)); in style_init()
494 lv_style_set_border_opa(&theme->styles.menu_cont, LV_OPA_10); in style_init()
495 lv_style_set_border_color(&theme->styles.menu_cont, theme->color_text); in style_init()
496 lv_style_set_border_side(&theme->styles.menu_cont, LV_BORDER_SIDE_NONE); in style_init()
1109 lv_obj_add_style(obj, &theme->styles.menu_cont, 0); in theme_apply()