Searched refs:scrollbar (Results 1 – 12 of 12) sorted by relevance
/lvgl-3.7.0/src/extra/themes/basic/ |
D | lv_theme_basic.c | 36 lv_style_t scrollbar; member 69 style_init_reset(&styles->scrollbar); in style_init() 70 lv_style_set_bg_opa(&styles->scrollbar, LV_OPA_COVER); in style_init() 71 lv_style_set_bg_color(&styles->scrollbar, COLOR_DARK); in style_init() 72 lv_style_set_width(&styles->scrollbar, SCROLLBAR_WIDTH); in style_init() 175 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() 190 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() 204 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() 209 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() 253 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() [all …]
|
/lvgl-3.7.0/src/extra/themes/mono/ |
D | lv_theme_mono.c | 36 lv_style_t scrollbar; member 78 style_init_reset(&styles->scrollbar); in style_init() 79 lv_style_set_bg_opa(&styles->scrollbar, LV_OPA_COVER); in style_init() 80 lv_style_set_bg_color(&styles->scrollbar, COLOR_FG); in style_init() 81 lv_style_set_width(&styles->scrollbar, PAD_DEF); in style_init() 203 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() 218 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() 234 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() 239 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() 312 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() [all …]
|
/lvgl-3.7.0/src/extra/themes/default/ |
D | lv_theme_default.c | 45 lv_style_t scrollbar; member 233 style_init_reset(&styles->scrollbar); in style_init() 236 lv_style_set_bg_color(&styles->scrollbar, sb_color); in style_init() 238 lv_style_set_radius(&styles->scrollbar, LV_RADIUS_CIRCLE); in style_init() 239 lv_style_set_pad_all(&styles->scrollbar, lv_disp_dpx(theme.disp, 7)); in style_init() 240 lv_style_set_width(&styles->scrollbar, lv_disp_dpx(theme.disp, 5)); in style_init() 241 lv_style_set_bg_opa(&styles->scrollbar, LV_OPA_40); in style_init() 243 lv_style_set_transition(&styles->scrollbar, &trans_normal); in style_init() 700 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() 715 lv_obj_add_style(obj, &styles->scrollbar, LV_PART_SCROLLBAR); in theme_apply() [all …]
|
/lvgl-3.7.0/docs/overview/ |
D | scroll.md | 4 …tent area (the size without padding), the parent becomes scrollable and scrollbar(s) will appear. … 19 `lv_obj_set_scrollbar_mode(obj, LV_SCROLLBAR_MODE_...)` sets the scrollbar mode on an object. 23 The scrollbars have their own dedicated part, called `LV_PART_SCROLLBAR`. For example a scrollbar c… 34 …e while it's being scrolled. This allows adding different styles to the scrollbar or the object it… 35 This code makes the scrollbar blue when the object is scrolled: 46 If the base direction of the `LV_PART_SCROLLBAR` is RTL (`LV_BASE_DIR_RTL`) the vertical scrollbar … 48 or on the object's or any parent's main part to make a scrollbar inherit the base direction. 50 `pad_left/right/top/bottom` sets the spacing around the scrollbars and `width` sets the scrollbar's…
|
D | object.md | 182 …iple parts. For example a [Base object](/widgets/obj) uses the main and scrollbar parts but a [Sli… 187 - `LV_PART_SCROLLBAR` The scrollbar(s)
|
D | style.md | 110 - `LV_PART_SCROLLBAR` The scrollbar(s) 195 - `LV_PART_SCROLLBAR`: The scrollbar part in the default state. `LV_STATE_DEFAULT` can be omitted. 196 - `LV_PART_SCROLLBAR | LV_STATE_SCROLLED`: The scrollbar part when the object is being scrolled
|
/lvgl-3.7.0/docs/widgets/extra/ |
D | list.md | 10 - `LV_PART_SCROLLBAR` The scrollbar. See the [Base objects](/widgets/obj) documentation for details.
|
D | chart.md | 16 - `LV_PART_SCROLLBAR` The scrollbar used if the chart is zoomed. See the [Base object](/widgets/obj…
|
/lvgl-3.7.0/docs/widgets/core/ |
D | dropdown.md | 25 - `LV_PART_SCROLLBAR` The scrollbar background, border, shadow properties and width (for its own wi…
|
D | textarea.md | 13 - `LV_PART_SCROLLBAR` The scrollbar that is shown when the text is too long.
|
D | label.md | 8 - `LV_PART_SCROLLBAR` The scrollbar that is shown when the text is larger than the widget's size.
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 697 - feat(scrollbar): add more control over scrollbar paddings [`4197b2f`](https://github.com/littlevg… 974 - feat(obj) place the scrollbar to the left with RTL base dir. [`906448e`](https://github.com/lvgl/… 1170 - fix(scrollbar) hide the scrollbar if the scrollble flag is removed [`188a946`](https://github.com… 1190 - fix(scrollbar) hide the scrollbar if the scrollable flag is removed [`d9c6ad0`](https://github.co…
|