Searched refs:dialog_close (Results 1 – 1 of 1) sorted by relevance
/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch.c | 61 static lv_obj_t * dialog_close; variable 458 dialog_close = lv_button_create(dialog_panel); in create_dialog_window() 459 lv_obj_set_width(dialog_close, lv_pct(60)); in create_dialog_window() 460 lv_obj_set_height(dialog_close, LV_SIZE_CONTENT); in create_dialog_window() 461 lv_obj_set_align(dialog_close, LV_ALIGN_BOTTOM_MID); in create_dialog_window() 462 lv_obj_add_flag(dialog_close, LV_OBJ_FLAG_SCROLL_ON_FOCUS); in create_dialog_window() 463 lv_obj_remove_flag(dialog_close, LV_OBJ_FLAG_SCROLLABLE); in create_dialog_window() 464 lv_obj_set_style_radius(dialog_close, 20, LV_PART_MAIN | LV_STATE_DEFAULT); in create_dialog_window() 466 dialog_close_label = lv_label_create(dialog_close); in create_dialog_window() 473 lv_obj_add_event_cb(dialog_close, dialog_close_event_cb, LV_EVENT_CLICKED, NULL); in create_dialog_window()
|