Lines Matching full:with
4 …te implementation of CSS but a comparable subset is implemented (sometimes with minor adjustments).
11 - width/height means the full size, the "content area" is smaller with padding and border width
27 ![The box models of LVGL: The content area is smaller than the bounding box with the padding and bo…
148 Note that, unlike with `lv_obj_align()`, `lv_obj_align_to()` can not realign the object if its coor…
168 Objects with `LV_OBJ_FLAG_HIDDEN` or `LV_OBJ_FLAG_FLOATING` will be ignored by the `LV_SIZE_CONTENT…
170 … can be set as well. This means an object's bounding box will be enlarged with the addition of pad…
176 The size of the bounding box and the content area can be retrieved with the following functions:
256 …to the size of the parent). For example `lv_pct(50)` will move the object with half of its width/h…
313 LVGL comes with two very powerful layouts:
317 Both are heavily inspired by the CSS layouts with the same name.
320 There are some flags that can be used on objects to affect how they behave with layouts:
323 - `LV_OBJ_FLAG_FLOATING` Same as `LV_OBJ_FLAG_IGNORE_LAYOUT` but the object with `LV_OBJ_FLAG_FLOAT…
325 These flags can be added/removed with `lv_obj_add/clear_flag(obj, FLAG);`