Lines Matching refs:control_music_play
35 static lv_obj_t * control_music_play; variable
90 control_music_play = lv_image_create(control_screen); in control_screen_create()
91 lv_image_set_src(control_music_play, &img_play_icon); in control_screen_create()
92 lv_obj_set_width(control_music_play, LV_SIZE_CONTENT); in control_screen_create()
93 lv_obj_set_height(control_music_play, LV_SIZE_CONTENT); in control_screen_create()
94 lv_obj_set_align(control_music_play, LV_ALIGN_CENTER); in control_screen_create()
95 lv_obj_add_flag(control_music_play, LV_OBJ_FLAG_CLICKABLE); in control_screen_create()
96 lv_obj_remove_flag(control_music_play, LV_OBJ_FLAG_SCROLLABLE); in control_screen_create()
97 lv_image_set_scale(control_music_play, 200); in control_screen_create()
98 lv_obj_set_style_radius(control_music_play, 5, LV_PART_MAIN | LV_STATE_PRESSED); in control_screen_create()
99 …lv_obj_set_style_bg_color(control_music_play, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_PRES… in control_screen_create()
100 lv_obj_set_style_bg_opa(control_music_play, 255, LV_PART_MAIN | LV_STATE_PRESSED); in control_screen_create()
203 …lv_obj_add_event_cb(control_music_play, control_music_events_cb, LV_EVENT_ALL, (void *)(intptr_t)0… in control_screen_create()