Lines Matching full:id
61 .id = LV_PROPERTY_ROLLER_OPTIONS,
66 .id = LV_PROPERTY_ROLLER_SELECTED,
71 .id = LV_PROPERTY_ROLLER_VISIBLE_ROW_COUNT,
199 /*In infinite mode interpret the new ID relative to the currently visible "page"*/ in lv_roller_set_selected()
665 * Refresh the position of the roller. It uses the id stored in: roller->ddlist.selected_option_id
707 int32_t id = roller->sel_opt_id; in refr_position() local
708 const int32_t sel_y1 = id * (font_h + line_space); in refr_position()
796 int32_t id = (mid - label_y1) / label_unit; in release_handler() local
798 if(id < 0) id = 0; in release_handler()
799 if(id >= (int32_t)roller->option_cnt) id = roller->option_cnt - 1; in release_handler()
801 new_opt = id; in release_handler()
809 uint32_t id = roller->sel_opt_id; /*Just to use uint32_t in event data*/ in release_handler() local
810 lv_result_t res = lv_obj_send_event(obj, LV_EVENT_VALUE_CHANGED, &id); in release_handler()
830 /*Move to the new id*/ in inf_normalize()