Lines Matching full:is
4 …L has by no means a complete implementation of CSS but a comparable subset is implemented (sometim…
11 - width/height means the full size, the "content area" is smaller with padding and border width
21 An object's "box" is built from the following parts:
25 - content: the content area which is the size of the bounding box reduced by the border width and p…
27 ![The box models of LVGL: The content area is smaller than the bounding box with the padding and bo…
29 The border is drawn inside the bounding box. Inside the border LVGL keeps a "padding margin" when p…
31 The outline is drawn outside the bounding box.
37 LVGL doesn't recalculate all the coordinate changes immediately. This is done to improve performanc…
47 To be more precise, under the hood every style coordinate related property is stored as a style pro…
49 This is an internal mechanism and doesn't matter much as you use LVGL. However, there is one case i…
91 …nge the origin of the positioning from the default top left. If the origin is changed e.g. to bott…
121 If the parent's size changes, the set alignment and position of the children is updated automatical…
211 Let's say the there are 3 buttons next to each other. Their position is set as described above.
214 One way to achieve this is by setting a new Y coordinate for the pressed state:
234 This works, but it's not really flexible because the pressed coordinate is hard-coded. If the butto…
254 Translation is applied from the current position of the object.
256 Percentage values can be used in translations as well. The percentage is relative to the size of th…
258 The translation is applied after the layouts are calculated. Therefore, even laid out objects' posi…
268 Hence, size transformation is "only" a visual effect.
282 They are especially useful if the size is set by percentage or `LV_SIZE_CONTENT`.
309 There is only one function that is the same for every layout: `lv_obj_set_layout(obj, <LAYOUT_NAME>…
322 - `LV_OBJ_FLAG_IGNORE_LAYOUT` The object is simply ignored by the layouts. Its coordinates can be s…