Home
last modified time | relevance | path

Searched refs:padding (Results 1 – 22 of 22) sorted by relevance

/lvgl-latest/src/core/
Dlv_obj_style.h258 int32_t padding = lv_obj_get_style_pad_left(obj, part); in lv_obj_get_style_space_left() local
261 return (border_side & LV_BORDER_SIDE_LEFT) ? padding + border_width : padding; in lv_obj_get_style_space_left()
266 int32_t padding = lv_obj_get_style_pad_right(obj, part); in lv_obj_get_style_space_right() local
269 return (border_side & LV_BORDER_SIDE_RIGHT) ? padding + border_width : padding; in lv_obj_get_style_space_right()
274 int32_t padding = lv_obj_get_style_pad_top(obj, part); in lv_obj_get_style_space_top() local
277 return (border_side & LV_BORDER_SIDE_TOP) ? padding + border_width : padding; in lv_obj_get_style_space_top()
282 int32_t padding = lv_obj_get_style_pad_bottom(obj, part); in lv_obj_get_style_space_bottom() local
285 return (border_side & LV_BORDER_SIDE_BOTTOM) ? padding + border_width : padding; in lv_obj_get_style_space_bottom()
/lvgl-latest/docs/_static/css/
Dcustom.css3 padding: 10px;
11 padding-right:8px;
16 padding-right:0px;
75 padding: none;
91 padding-bottom: 16px;
100 padding: 4px 8px;
120 padding: 4px;
136 padding: 1.618em 3.236em;
150 padding: 2px 5px;
Dfontawesome.min.css5padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;wi…
/lvgl-latest/src/widgets/span/
Dlv_span.c73 lv_area_t padding, int32_t indent);
1144 const lv_area_t padding, const int32_t indent) in make_span_coords() argument
1152 lv_area_set(&coords.heading, padding.x1 + indent, padding.y1, width + padding.x1, in make_span_coords()
1153 curr_span->trailing_pos.y + padding.y1); in make_span_coords()
1154 …a_set(&coords.middle, coords.heading.x1, coords.heading.y2, curr_span->trailing_pos.x + padding.x1, in make_span_coords()
1165 prev_span->trailing_pos.x + padding.x1, prev_span->trailing_pos.y + padding.y1, in make_span_coords()
1166 …curr_span->trailing_pos.x + padding.x1, curr_span->trailing_pos.y + curr_span->trailing_height + p… in make_span_coords()
1175 pre_trailing_pos.x + padding.x1, pre_trailing_pos.y + padding.y1, in make_span_coords()
1176 width + padding.x1, pre_trailing_pos.y + pre_trailing_height + padding.y1); in make_span_coords()
1182 padding.x1, coords.heading.y2, in make_span_coords()
[all …]
/lvgl-latest/docs/details/widgets/
Darc.rst21 size and position will respect the *padding* style properties.
23 properties. Its padding values are interpreted relative to the
26 background properties and padding values. With zero padding the knob
27 size is the same as the indicator's width. Larger padding makes it
28 larger, smaller padding makes it smaller.
Dswitch.rst25 background style properties <typical bg props>`. ``padding`` makes the indicator smaller
33 side of the slider. The knob can be made larger with the ``padding`` values.
Dslider.rst24 :ref:`typical background style properties <typical bg props>`. ``padding`` makes
32 made larger with the ``padding`` values. Padding values can be asymmetric as well.
Dbar.rst25 background style properties <typical bg props>`. Adding padding makes the indicator
Dtable.rst68 padding etc) and the number of rows.
Ddropdown.rst47 properties and width (for its own width) and right padding for the
Dlabel.rst95 to the text size + padding + border width. Otherwise, if the width or height are
Dchart.rst290 visible border on a side and no padding on that side, the division line
/lvgl-latest/docs/details/base-widget/
Dcoord.rst21 - 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 */
[all …]
Dscroll.rst12 parent content area (the size without padding), the parent becomes
/lvgl-latest/docs/details/base-widget/layouts/
Dflex.rst162 Internal padding
166 following functions can be used to set the flex container padding style:
168 - :cpp:func:`lv_style_set_pad_row` sets padding between rows.
170 - :cpp:func:`lv_style_set_pad_column` sets padding between columns.
172 These can, for example, be used if you do not want any padding between
Dgrid.rst173 Internal padding
179 - :cpp:func:`lv_style_set_pad_row` sets padding between rows.
181 - :cpp:func:`lv_style_set_pad_column` sets padding between columns.
/lvgl-latest/src/font/
Dlv_binfont_loader.c47 uint8_t padding; member
59 uint8_t padding; member
572 int32_t padding; in load_kern() local
574 lv_fs_read(fp, &padding, 3 * sizeof(uint8_t), NULL) != LV_FS_RES_OK) { in load_kern()
/lvgl-latest/src/libs/tiny_ttf/
Dstb_truetype_htcw.h623 int stride_in_bytes, int padding, void * alloc_context);
701 int padding; member
867 unsigned char type, padding; member
991 …unsigned char * stbtt_GetGlyphSDF(const stbtt_fontinfo * info, float scale, int glyph, int padding,
993 … char * stbtt_GetCodepointSDF(const stbtt_fontinfo * info, float scale, int codepoint, int padding,
4313 int padding, void * alloc_context) argument
4316 int num_nodes = pw - padding;
4331 spc->padding = padding;
4337 stbrp_init_target(context, pw - padding, ph - padding, nodes, num_nodes);
4531 rects[k].w = (stbrp_coord)(x1 - x0 + spc->padding + spc->h_oversample - 1);
[all …]
/lvgl-latest/docs/details/base-widget/styles/
Dstyle-properties.rst323 …ent's sides and the children and among the children. Very similar to the padding properties in HTM…
328 Sets the padding on the top. It makes the content area smaller in this direction.
342 Sets the padding on the bottom. It makes the content area smaller in this direction.
356 Sets the padding on the left. It makes the content area smaller in this direction.
370 Sets the padding on the right. It makes the content area smaller in this direction.
384 Sets the padding between the rows. Used by the layouts.
398 Sets the padding between the columns. Used by the layouts.
810 Set padding of outline, i.e. the gap between Widget and the outline.
/lvgl-latest/scripts/
DLVGLImage.py551 padding = b'\x00' * (new_stride - current_stride)
555 data_out.append(padding)
/lvgl-latest/src/libs/thorvg/rapidjson/
Ddocument.h2065 char padding[4];
2073 char padding[4];
/lvgl-latest/docs/
DCHANGELOG.rst349 - **fix(script): update RLE compressed image raw len without padding** `dd70291 <https://github.com…