Searched defs:_lv_scale_t (Results 1 – 1 of 1) sorted by relevance
53 struct _lv_scale_t { struct54 lv_obj_t obj; /**< Base Widget part of Scale */55 … lv_ll_t section_ll; /**< Linked list for the sections (stores lv_scale_section_t)*/56 const char ** txt_src; /**< Optional list of text strings for major ticks58 lv_scale_mode_t mode; /**< Orientation and layout of scale. */59 int32_t range_min; /**< Scale's minimum value */60 int32_t range_max; /**< Scale's maximum value */61 uint32_t total_tick_count : 15; /**< Total number of ticks (major and minor) */62 uint32_t major_tick_every : 15; /**< Frequency of major ticks to minor ticks */63 uint32_t label_enabled : 1; /**< Draw labels for major ticks? */[all …]