Lines Matching refs:padding
21 - x=0; y=0 coordinate means the top-left corner of the parent plus the left/top padding plus border…
22 - width/height means the full size, the "content area" is smaller with padding and border width
89 :padding: space between the sides of the Widget and its children.
91 … the content area which is the size of the bounding box reduced by the border width and padding.
94 …models of LVGL: The content area is smaller than the bounding box with the padding and border width
97 keeps a "padding margin" when placing a Widget's children.
192 pixels of padding on every side the above code will place ``obj`` at
193 (15, 25) because the content area starts after the padding.
326 bounding box will be enlarged with the addition of padding.
330 lv_obj_set_content_width(widget, 50); /* The actual width: padding left + 50 + padding right */
331 lv_obj_set_content_height(widget, 30); /* The actual width: padding top + 30 + padding bottom */