Home
last modified time | relevance | path

Searched refs:side (Results 1 – 25 of 36) sorted by relevance

12

/lvgl-latest/src/draw/nema_gfx/
Dlv_draw_nema_gfx_border.c49 if(dsc->side == LV_BORDER_SIDE_NONE) in lv_draw_nema_gfx_border()
113 if(dsc->side & LV_BORDER_SIDE_TOP) { in lv_draw_nema_gfx_border()
122 if(dsc->side & LV_BORDER_SIDE_BOTTOM) { in lv_draw_nema_gfx_border()
131 if(dsc->side & LV_BORDER_SIDE_LEFT) { in lv_draw_nema_gfx_border()
140 if(dsc->side & LV_BORDER_SIDE_RIGHT) { in lv_draw_nema_gfx_border()
151 if(dsc->side & LV_BORDER_SIDE_TOP || dsc->side & LV_BORDER_SIDE_LEFT) { in lv_draw_nema_gfx_border()
157 if(!(dsc->side & LV_BORDER_SIDE_TOP)) in lv_draw_nema_gfx_border()
159 else if(!(dsc->side & LV_BORDER_SIDE_LEFT)) in lv_draw_nema_gfx_border()
168 if(dsc->side & LV_BORDER_SIDE_TOP || dsc->side & LV_BORDER_SIDE_RIGHT) { in lv_draw_nema_gfx_border()
174 if(!(dsc->side & LV_BORDER_SIDE_TOP)) in lv_draw_nema_gfx_border()
[all …]
Dlv_draw_nema_gfx.c225 … if((!(draw_dsc->side != (lv_border_side_t)LV_BORDER_SIDE_FULL && draw_dsc->radius > 0)) && in nema_gfx_evaluate()
/lvgl-latest/src/draw/vg_lite/
Dlv_draw_vg_lite_border.c25 #define HAS_BORDER_SIDE(dsc_side, side) (((dsc_side) & (side)) == (side)) argument
137 if(dsc->side == LV_BORDER_SIDE_FULL) { in path_append_inner_rect()
153 if(dsc->side & LV_BORDER_SIDE_TOP) { in path_append_inner_rect()
157 if(dsc->side & LV_BORDER_SIDE_LEFT) { in path_append_inner_rect()
161 if(dsc->side & LV_BORDER_SIDE_BOTTOM) { in path_append_inner_rect()
164 if(dsc->side & LV_BORDER_SIDE_RIGHT) { in path_append_inner_rect()
229 if(dsc->side & LV_BORDER_SIDE_BOTTOM) { in path_append_inner_rect()
239 if(dsc->side & LV_BORDER_SIDE_TOP) { in path_append_inner_rect()
249 if(dsc->side & LV_BORDER_SIDE_LEFT) { in path_append_inner_rect()
259 if(dsc->side & LV_BORDER_SIDE_RIGHT) { in path_append_inner_rect()
[all …]
/lvgl-latest/src/libs/thorvg/
DtvgSwStroke.cpp223 static void _arcTo(SwStroke& stroke, int32_t side) in _arcTo() argument
225 auto border = stroke.borders + side; in _arcTo()
226 auto rotate = SIDE_TO_ROTATE(side); in _arcTo()
235 static void _outside(SwStroke& stroke, int32_t side, SwFixed lineLength) in _outside() argument
237 auto border = stroke.borders + side; in _outside()
240 _arcTo(stroke, side); in _outside()
243 auto rotate = SIDE_TO_ROTATE(side); in _outside()
296 static void _inside(SwStroke& stroke, int32_t side, SwFixed lineLength) in _inside() argument
298 auto border = stroke.borders + side; in _inside()
311 auto rotate = SIDE_TO_ROTATE(side); in _inside()
[all …]
DtvgSwRasterTexmap.h706 auto side = (dxdy[1] > dxdy[0]) ? true : false; in _rasterPolygonImage() local
708 if (tvg::equal(y[0], y[1])) side = x[0] > x[1]; in _rasterPolygonImage()
709 if (tvg::equal(y[1], y[2])) side = x[2] > x[1]; in _rasterPolygonImage()
716 if (!side) { in _rasterPolygonImage()
/lvgl-latest/src/draw/sw/
Dlv_draw_sw_mask.h118 int32_t p2y, lv_draw_sw_mask_line_side_t side);
131 lv_draw_sw_mask_line_side_t side);
Dlv_draw_sw_mask.c143 int32_t p2y, lv_draw_sw_mask_line_side_t side) in lv_draw_sw_mask_line_points_init() argument
147 if(p1y == p2y && side == LV_DRAW_SW_MASK_LINE_SIDE_BOTTOM) { in lv_draw_sw_mask_line_points_init()
165 param->cfg.side = side; in lv_draw_sw_mask_line_points_init()
208 if(param->cfg.side == LV_DRAW_SW_MASK_LINE_SIDE_LEFT) param->inv = 0; in lv_draw_sw_mask_line_points_init()
209 else if(param->cfg.side == LV_DRAW_SW_MASK_LINE_SIDE_RIGHT) param->inv = 1; in lv_draw_sw_mask_line_points_init()
210 else if(param->cfg.side == LV_DRAW_SW_MASK_LINE_SIDE_TOP) { in lv_draw_sw_mask_line_points_init()
214 else if(param->cfg.side == LV_DRAW_SW_MASK_LINE_SIDE_BOTTOM) { in lv_draw_sw_mask_line_points_init()
224 lv_draw_sw_mask_line_side_t side) in lv_draw_sw_mask_line_angle_init() argument
238 lv_draw_sw_mask_line_points_init(param, p1x, py, p2x, p2y, side); in lv_draw_sw_mask_line_angle_init()
395 if(p->cfg.side == LV_DRAW_SW_MASK_LINE_SIDE_LEFT || in lv_draw_mask_line()
[all …]
Dlv_draw_sw_border.c58 if(dsc->side == LV_BORDER_SIDE_NONE) return; in lv_draw_sw_border()
69 area_inner.x1 += ((dsc->side & LV_BORDER_SIDE_LEFT) ? dsc->width : - (dsc->width + rout)); in lv_draw_sw_border()
70 area_inner.x2 -= ((dsc->side & LV_BORDER_SIDE_RIGHT) ? dsc->width : - (dsc->width + rout)); in lv_draw_sw_border()
71 area_inner.y1 += ((dsc->side & LV_BORDER_SIDE_TOP) ? dsc->width : - (dsc->width + rout)); in lv_draw_sw_border()
72 area_inner.y2 -= ((dsc->side & LV_BORDER_SIDE_BOTTOM) ? dsc->width : - (dsc->width + rout)); in lv_draw_sw_border()
Dlv_draw_sw_mask_private.h56 lv_draw_sw_mask_line_side_t side : 3; member
Dlv_draw_sw_arc.c76 cir_dsc.side = LV_BORDER_SIDE_FULL; in lv_draw_sw_arc()
/lvgl-latest/demos/music/
DREADME.md18 - Display the 4 bands on the left side of a circle by default at 0°, 45°, 90°, 135°
22 - Mirror the bars to the right side of the circle
/lvgl-latest/docs/details/widgets/
Dswitch.rst30 side of the indicator; also uses the :ref:`typical background style properties
33 side of the slider. The knob can be made larger with the ``padding`` values.
Dtabview.rst20 side of the Tab View.
75 the tab bar can be moved to any side.
Dslider.rst31 with side length equal to the smaller dimension of the Slider. The knob can be
Ddropdown.rst105 The list can be created on any side. The default :cpp:enumerator:`LV_DIR_BOTTOM` can
Dchart.rst290 visible border on a side and no padding on that side, the division line
/lvgl-latest/src/draw/renesas/dave2d/
Dlv_draw_dave2d_border.c19 if(dsc->side == LV_BORDER_SIDE_NONE) return; in lv_draw_dave2d_border()
30 area_inner.x1 += ((dsc->side & LV_BORDER_SIDE_LEFT) ? dsc->width : - (dsc->width + rout)); in lv_draw_dave2d_border()
31 area_inner.x2 -= ((dsc->side & LV_BORDER_SIDE_RIGHT) ? dsc->width : - (dsc->width + rout)); in lv_draw_dave2d_border()
32 area_inner.y1 += ((dsc->side & LV_BORDER_SIDE_TOP) ? dsc->width : - (dsc->width + rout)); in lv_draw_dave2d_border()
33 area_inner.y2 -= ((dsc->side & LV_BORDER_SIDE_BOTTOM) ? dsc->width : - (dsc->width + rout)); in lv_draw_dave2d_border()
/lvgl-latest/docs/_static/css/
Dcustom.css49 .wy-side-nav-search {
52 .wy-side-nav-search>div.version {
/lvgl-latest/src/draw/nxp/vglite/
Dlv_draw_vglite_border.c74 if(dsc->side == (lv_border_side_t)LV_BORDER_SIDE_NONE) in lv_draw_vglite_border()
135 lv_border_side_t border_side = dsc->side; in _vglite_draw_border()
/lvgl-latest/docs/details/base-widget/
Dscroll.rst173 content. That is, the top side of the content can't be below the top side
174 of the Widget, and vice versa for the bottom side.
192 - :cpp:enumerator:`LV_SCROLL_SNAP_START`: Align the children to the left/top side of a scrolled Wid…
193 - :cpp:enumerator:`LV_SCROLL_SNAP_END`: Align the children to the right/bottom side of a scrolled W…
238 …_obj_scroll_to_x(widget, x, LV_ANIM_ON/OFF)`` scroll to bring the given coordinate to the left side
239 …v_obj_scroll_to_y(widget, y, LV_ANIM_ON/OFF)`` scroll to bring the given coordinate to the top side
/lvgl-latest/src/draw/
Dlv_draw_rect.h90 lv_border_side_t side : 5; member
Dlv_draw_rect.c75 dsc->side = LV_BORDER_SIDE_FULL; in lv_draw_border_dsc_init()
276 border_dsc->side = dsc->border_side; in lv_draw_rect()
298 outline_dsc->side = LV_BORDER_SIDE_FULL; in lv_draw_rect()
/lvgl-latest/docs/details/integration/chip/
Dalif.rst52 side panel.
116 Install the following VS Code extensions from the "Extensions" side panel
187 "First time pack installation". Click the play icon at the top of the CMSIS left side panel.
/lvgl-latest/docs/details/integration/driver/
Dwayland.rst45 **only** Mutter/GNOME enforces the use of client side decorations
/lvgl-latest/docs/details/main-components/
Ddraw.rst117 As a side effect, this also ensures that the same Draw Unit will be selected

12