Lines Matching refs:control_music_previous
36 static lv_obj_t * control_music_previous; variable
102 control_music_previous = lv_image_create(control_screen); in control_screen_create()
103 lv_image_set_src(control_music_previous, &img_left_arrow_icon); in control_screen_create()
104 lv_obj_set_width(control_music_previous, LV_SIZE_CONTENT); in control_screen_create()
105 lv_obj_set_height(control_music_previous, LV_SIZE_CONTENT); in control_screen_create()
106 lv_obj_set_x(control_music_previous, -75); in control_screen_create()
107 lv_obj_set_y(control_music_previous, 0); in control_screen_create()
108 lv_obj_set_align(control_music_previous, LV_ALIGN_CENTER); in control_screen_create()
109 lv_obj_add_flag(control_music_previous, LV_OBJ_FLAG_CLICKABLE); in control_screen_create()
110 lv_obj_remove_flag(control_music_previous, LV_OBJ_FLAG_SCROLLABLE); in control_screen_create()
111 lv_image_set_scale(control_music_previous, 200); in control_screen_create()
112 lv_obj_set_style_radius(control_music_previous, 5, LV_PART_MAIN | LV_STATE_PRESSED); in control_screen_create()
113 …lv_obj_set_style_bg_color(control_music_previous, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_… in control_screen_create()
114 lv_obj_set_style_bg_opa(control_music_previous, 255, LV_PART_MAIN | LV_STATE_PRESSED); in control_screen_create()
204 …lv_obj_add_event_cb(control_music_previous, control_music_events_cb, LV_EVENT_ALL, (void *)(intptr… in control_screen_create()