Lines Matching refs:alert_panel
59 static lv_obj_t * alert_panel; variable
393 alert_panel = lv_obj_create(clock_screen); in create_screen_home()
394 lv_obj_set_width(alert_panel, 200); in create_screen_home()
395 lv_obj_set_height(alert_panel, 55); in create_screen_home()
396 lv_obj_set_align(alert_panel, LV_ALIGN_CENTER); in create_screen_home()
397 lv_obj_add_flag(alert_panel, LV_OBJ_FLAG_HIDDEN); in create_screen_home()
398 lv_obj_remove_flag(alert_panel, LV_OBJ_FLAG_GESTURE_BUBBLE | LV_OBJ_FLAG_SCROLLABLE); in create_screen_home()
399 lv_obj_set_style_bg_color(alert_panel, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_home()
400 lv_obj_set_style_bg_opa(alert_panel, 240, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_home()
401 …lv_obj_set_style_border_color(alert_panel, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT… in create_screen_home()
402 lv_obj_set_style_border_opa(alert_panel, 240, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_home()
403 lv_obj_set_style_border_width(alert_panel, 1, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_home()
404 lv_obj_set_style_pad_left(alert_panel, 5, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_home()
405 lv_obj_set_style_pad_right(alert_panel, 5, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_home()
406 lv_obj_set_style_pad_top(alert_panel, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_home()
407 lv_obj_set_style_pad_bottom(alert_panel, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_home()
409 alert_icon = lv_image_create(alert_panel); in create_screen_home()
417 alert_text = lv_label_create(alert_panel); in create_screen_home()