Lines Matching full:in

6 In short this means:
7 - Explicitly set coordinates are stored in styles (size, position, layouts, etc.)
15 - pixel: Simply a position in pixels. An integer always means pixels. E.g. `lv_obj_set_x(btn, 10)`
17 …th/height of an object to involve all the children. It's similar to `auto` in CSS. E.g. `lv_obj_se…
34 This section describes special cases in which LVGL's behavior might be unexpected.
40 In other words, if you need to get the coordinate of an object and the coordinates were just change…
46 As it's described in the [Using styles](#using-styles) section, coordinates can also be set via sty…
47 … as a style property. If you use `lv_obj_set_x(obj, 20)` LVGL saves `x=20` in the local style of t…
49 …hanism and doesn't matter much as you use LVGL. However, there is one case in which you need to be…
62 /*The size of obj1 will be set back to the default in the end*/
67 /*obj2 will have 200;100 size in the end */
79 lv_obj_set_pos(obj, 10, 20); //Or in one function
91 In some cases it's convenient to change the origin of the positioning from the default top left. If…
157 lv_obj_set_size(obj, 200, 100); //Or in one function
165 The size settings support a special value: `LV_SIZE_CONTENT`. It means the object's size in the res…
186 …he sake of simplicity and set the position, size, and alignment properties in the local styles of …
190 - It also makes possible to modify the values in one place.
192 …rent position or size depending on state. E.g. 100 px wide in `LV_STATE_DEFAULT` but 120 px in `LV…
256 Percentage values can be used in translations as well. The percentage is relative to the size of th…
267 Unlike position translation, the size transformation doesn't make the object "really" larger. In ot…
305 …an be used to automatically arrange the children into a line or column, or in much more complicate…
312 ### Built-in layout
321 - `LV_OBJ_FLAG_HIDDEN` Hidden objects are ignored in layout calculations.
323 …_IGNORE_LAYOUT` but the object with `LV_OBJ_FLAG_FLOATING` will be ignored in `LV_SIZE_CONTENT` ca…
345 Custom style properties can be added which can be retrieved and used in the update callback. For ex…