Lines Matching refs:object

16 - percentage: The percentage of the size of the object or its parent (depending on the property). `…
17 - `LV_SIZE_CONTENT`: Special value to set the width/height of an object to involve all the children…
21 An object's "box" is built from the following parts:
24 - padding: space between the sides of the object and its children.
29 …he bounding box. Inside the border LVGL keeps a "padding margin" when placing an object's children.
40 In other words, if you need to get the coordinate of an object and the coordinates were just change…
47 …le property. If you use `lv_obj_set_x(obj, 20)` LVGL saves `x=20` in the local style of the object.
49 …se in which you need to be aware of the implementation. If the style(s) of an object are removed by
75 To simply set the x and y coordinates of an object use:
123 …ntroduced above align the object to its parent. However, it's also possible to align an object to …
128 …lignments options above, the following can be used to align an object outside the reference object:
148 …j_align()`, `lv_obj_align_to()` can not realign the object if its coordinates or the reference obj…
153 The width and the height of an object can be set easily as well:
160 …lculated based on the parent's content area size. For example to set the object's height to the sc…
165 The size settings support a special value: `LV_SIZE_CONTENT`. It means the object's size in the res…
170 …functions set the size of an object's bounding box but the size of the content area can be set as …
186 … simplicity and set the position, size, and alignment properties in the local styles of the object.
191 …ample `style_btn` makes the object `100x50` by default but adding `style_full_width` overwrites on…
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:
254 Translation is applied from the current position of the object.
256 … is relative to the size of the object (and not to the size of the parent). For example `lv_pct(50…
260 The translation actually moves the object. That means it makes the scrollbars and `LV_SIZE_CONTENT`…
264 Similarly to position, an object's size can be changed relative to the current size as well.
265 …dth and height are added on both sides of the object. This means a 10 px transformed width makes t…
267 Unlike position translation, the size transformation doesn't make the object "really" larger. In ot…
281 …ax-width`, `min-height` and `max-height`. These are limits preventing an object's size from becomi…
305 Layouts can update the position and size of an object's children. They can be used to automatically…
309 …is the same for every layout: `lv_obj_set_layout(obj, <LAYOUT_NAME>)` sets the layout on an object.
322 - `LV_OBJ_FLAG_IGNORE_LAYOUT` The object is simply ignored by the layouts. Its coordinates can be s…
323 - `LV_OBJ_FLAG_FLOATING` Same as `LV_OBJ_FLAG_IGNORE_LAYOUT` but the object with `LV_OBJ_FLAG_FLOAT…