Lines Matching refs:width

8 - support min-width, max-width, min-height, max-height
10 … y=0 coordinate means the top-left corner of the parent plus the left/top padding plus border width
11 - width/height means the full size, the "content area" is smaller with padding and border width
17 - `LV_SIZE_CONTENT`: Special value to set the width/height of an object to involve all the children…
22 - bounding box: the width/height of the elements.
23 - border width: the width of the border.
25 - content: the content area which is the size of the bounding box reduced by the border width and p…
27 …content area is smaller than the bounding box with the padding and border width](/misc/boxmodel.pn…
87 lv_obj_set_x(btn, lv_pct(10)); //x = 10 % of parent content area width
153 The width and the height of an object can be set easily as well:
172 lv_obj_set_content_width(obj, 50); //The actual width: padding left + 50 + padding right
173 lv_obj_set_content_height(obj, 30); //The actual width: padding top + 30 + padding bottom
189 - It makes it easy to set the width/height/etc. for several objects together. E.g. make all the sli…
191 …e object `100x50` by default but adding `style_full_width` overwrites only the width of the object.
256 …e size of the parent). For example `lv_pct(50)` will move the object with half of its width/height.
265 The transformed width and height are added on both sides of the object. This means a 10 px transfor…
281 Similarly to CSS, LVGL also supports `min-width`, `max-width`, `min-height` and `max-height`. These…
307 The position and size set by the layout overwrites the "normal" x, y, width, and height settings.