Lines Matching full:can

6 Any object can be scrollable including `lv_obj_t`, `lv_img`, `lv_btn`, `lv_meter`, etc
8 The object can either be scrolled horizontally or vertically in one stroke; diagonal scrolling is n…
23 …ir own dedicated part, called `LV_PART_SCROLLBAR`. For example a scrollbar can turn to red like th…
47 Note that, the `base_dir` style property is inherited. Therefore, it can be set directly on the `LV…
54 …eter is `NULL` or an `lv_anim_t *` with a scroll animation descriptor that can be modified if requ…
71 Non-scrollable objects can still propagate the scrolling (chain) to their parents.
73 The direction in which scrolling happens can be controlled by `lv_obj_set_scroll_dir(obj, LV_DIR_..…
87 …t can't be scrolled further (e.g. its content has reached the bottom-most position) additional scr…
90 The propagation on scrolling is called "scroll chaining" and it can be enabled/disabled with `LV_OB…
94 When the user scrolls an object and releases it, LVGL can emulate inertial momentum for the scrolli…
96 The scroll momentum can be enabled/disabled with the `LV_OBJ_FLAG_SCROLL_MOMENTUM` flag.
99 Normally an object can't be scrolled past the extremeties of its content. That is the top side of t…
101 …user "over-scrolls" the content. The scrolling slows down, and the content can be scrolled inside …
105 The children of an object can be snapped according to specific rules when scrolling ends. Children
107 An object can align snapped children in four ways:
125 This feature can be enabled by the `LV_OBJ_FLAG_SCROLL_ONE` flag.
155 Scrool coordinates can be retrieve from differents axes with these functions:
171 This means not only the children can make an object scrollable but a larger self size will too.