Lines Matching refs:size
7 - Explicitly set coordinates are stored in styles (size, position, layouts, etc.)
11 - width/height means the full size, the "content area" is smaller with padding and border width
16 - percentage: The percentage of the size of the object or its parent (depending on the property). `…
25 - content: the content area which is the size of the bounding box reduced by the border width and p…
38 …n LVGL checks if there are any "dirty" objects. If so it refreshes their position, size and layout.
43 The size and position might depend on the parent or layout. Therefore `lv_obj_update_layout` recalc…
62 /*The size of obj1 will be set back to the default in the end*/
63 lv_obj_set_size(obj1, 200, 100); /*Now obj1 has 200;100 size*/
67 /*obj2 will have 200;100 size in the end */
85 Percentage values are calculated from the parent's content area size.
121 If the parent's size changes, the set alignment and position of the children is updated automatical…
160 Percentage values are calculated based on the parent's content area size. For example to set the ob…
165 The size settings support a special value: `LV_SIZE_CONTENT`. It means the object's size in the res…
170 The above functions set the size of an object's bounding box but the size of the content area can b…
176 The size of the bounding box and the content area can be retrieved with the following functions:
185 Under the hood the position, size and alignment properties are style properties.
186 …e the style related code for the sake of simplicity and set the position, size, and alignment prop…
192 - The object can have different position or size depending on state. E.g. 100 px wide in `LV_STATE_…
196 Here are some examples to set an object's size using a style:
206 As you will see below there are some other great features of size and position setting.
256 … translations as well. The percentage is relative to the size of the object (and not to the size o…
264 Similarly to position, an object's size can be changed relative to the current size as well.
267 …size transformation doesn't make the object "really" larger. In other words scrollbars, layouts, a…
268 Hence, size transformation is "only" a visual effect.
280 ### Min and Max size
281 …`, `min-height` and `max-height`. These are limits preventing an object's size from becoming small…
282 They are especially useful if the size is set by percentage or `LV_SIZE_CONTENT`.
292 Percentage values can be used as well which are relative to the size of the parent's content area.
305 Layouts can update the position and size of an object's children. They can be used to automatically…
307 The position and size set by the layout overwrites the "normal" x, y, width, and height settings.