/lvgl-latest/src/draw/nema_gfx/ |
D | lv_draw_nema_gfx_border.c | 49 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 …]
|
D | lv_draw_nema_gfx.c | 225 … 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/ |
D | lv_draw_vg_lite_border.c | 25 #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/ |
D | tvgSwStroke.cpp | 223 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 …]
|
D | tvgSwRasterTexmap.h | 706 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/ |
D | lv_draw_sw_mask.h | 118 int32_t p2y, lv_draw_sw_mask_line_side_t side); 131 lv_draw_sw_mask_line_side_t side);
|
D | lv_draw_sw_mask.c | 143 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 …]
|
D | lv_draw_sw_border.c | 58 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()
|
D | lv_draw_sw_mask_private.h | 56 lv_draw_sw_mask_line_side_t side : 3; member
|
D | lv_draw_sw_arc.c | 76 cir_dsc.side = LV_BORDER_SIDE_FULL; in lv_draw_sw_arc()
|
/lvgl-latest/demos/music/ |
D | README.md | 18 - 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/ |
D | switch.rst | 30 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.
|
D | tabview.rst | 20 side of the Tab View. 75 the tab bar can be moved to any side.
|
D | slider.rst | 31 with side length equal to the smaller dimension of the Slider. The knob can be
|
D | dropdown.rst | 105 The list can be created on any side. The default :cpp:enumerator:`LV_DIR_BOTTOM` can
|
D | chart.rst | 290 visible border on a side and no padding on that side, the division line
|
/lvgl-latest/src/draw/renesas/dave2d/ |
D | lv_draw_dave2d_border.c | 19 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/ |
D | custom.css | 49 .wy-side-nav-search { 52 .wy-side-nav-search>div.version {
|
/lvgl-latest/src/draw/nxp/vglite/ |
D | lv_draw_vglite_border.c | 74 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/ |
D | scroll.rst | 173 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/ |
D | lv_draw_rect.h | 90 lv_border_side_t side : 5; member
|
D | lv_draw_rect.c | 75 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/ |
D | alif.rst | 52 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/ |
D | wayland.rst | 45 **only** Mutter/GNOME enforces the use of client side decorations
|
/lvgl-latest/docs/details/main-components/ |
D | draw.rst | 117 As a side effect, this also ensures that the same Draw Unit will be selected
|