Lines Matching refs:notification_screen

39 static lv_obj_t * notification_screen;  variable
96 lv_screen_load_anim(notification_screen, anim_type, time, delay, false); in lv_demo_smartwatch_notifications_load()
154 lv_tileview_set_tile_by_index(notification_screen, 1, 0, LV_ANIM_ON); in lv_demo_smartwatch_show_notification()
234 lv_tileview_set_tile_by_index(notification_screen, 0, 0, LV_ANIM_OFF); in notification_screen_events_cb()
239 lv_obj_set_scrollbar_mode(notification_screen, lv_demo_smartwatch_get_scrollbar_mode()); in notification_screen_events_cb()
253 if(lv_tileview_get_tile_active(notification_screen) == message_list_panel) { in notification_screen_events_cb()
262 else if(lv_tileview_get_tile_active(notification_screen) == message_info_panel) { in notification_screen_events_cb()
293 lv_tileview_get_tile_active(notification_screen) == message_list_panel) { in notification_screen_events_cb()
310 notification_screen = lv_tileview_create(NULL); in create_screen_notifications()
311 …lv_obj_set_style_bg_color(notification_screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEF… in create_screen_notifications()
312 lv_obj_set_style_bg_opa(notification_screen, 255, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_notifications()
314 message_info_panel = lv_tileview_add_tile(notification_screen, 1, 0, LV_DIR_LEFT); in create_screen_notifications()
355 message_list_panel = lv_tileview_add_tile(notification_screen, 0, 0, LV_DIR_NONE); in create_screen_notifications()
386 lv_obj_add_event_cb(notification_screen, notification_screen_events_cb, LV_EVENT_ALL, NULL); in create_screen_notifications()