Home
last modified time | relevance | path

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

/lvgl-latest/demos/music/
Dlv_demo_music_main.c81 static lv_obj_t * time_obj; variable
638 time_obj = lv_label_create(cont); in create_ctrl_box()
639 lv_obj_set_style_text_font(time_obj, font_small, 0); in create_ctrl_box()
640 lv_obj_set_style_text_color(time_obj, lv_color_hex(0x8a86b8), 0); in create_ctrl_box()
641 lv_label_set_text(time_obj, "0:00"); in create_ctrl_box()
642 lv_obj_set_grid_cell(time_obj, LV_GRID_ALIGN_END, 5, 1, LV_GRID_ALIGN_CENTER, 1, 1); in create_ctrl_box()
643 lv_obj_add_event_cb(time_obj, del_counter_timer_cb, LV_EVENT_DELETE, NULL); in create_ctrl_box()
683 lv_label_set_text(time_obj, "0:00"); in track_load()
1014 lv_label_set_text_fmt(time_obj, "%"LV_PRIu32":%02"LV_PRIu32, time_act / 60, time_act % 60); in timer_cb()