Lines Matching refs:button
80 lv_obj_t * button = lv_button_create(tab_bar); in lv_tabview_add_tab() local
81 lv_obj_set_flex_grow(button, 1); in lv_tabview_add_tab()
82 lv_obj_set_size(button, lv_pct(100), lv_pct(100)); in lv_tabview_add_tab()
83 lv_obj_add_event_cb(button, button_clicked_event_cb, LV_EVENT_CLICKED, NULL); in lv_tabview_add_tab()
85 if(g) lv_group_add_obj(g, button); in lv_tabview_add_tab()
87 lv_obj_t * label = lv_label_create(button); in lv_tabview_add_tab()
105 lv_obj_t * button = lv_obj_get_child_by_type(tab_bar, idx, &lv_button_class); in lv_tabview_rename_tab() local
106 lv_obj_t * label = lv_obj_get_child_by_type(button, 0, &lv_label_class); in lv_tabview_rename_tab()
146 lv_obj_t * button = lv_obj_get_child_by_type(tab_bar, i, &lv_button_class); in lv_tabview_set_active() local
147 while(button) { in lv_tabview_set_active()
148 lv_obj_set_state(button, LV_STATE_CHECKED, i == idx); in lv_tabview_set_active()
150 button = lv_obj_get_child_by_type(tab_bar, (int32_t)i, &lv_button_class); in lv_tabview_set_active()
304 lv_obj_t * button = lv_event_get_current_target(e); in button_clicked_event_cb() local
306 lv_obj_t * tv = lv_obj_get_parent(lv_obj_get_parent(button)); in button_clicked_event_cb()
307 int32_t idx = lv_obj_get_index_by_type(button, &lv_button_class); in button_clicked_event_cb()