Searched refs:LV_BORDER_SIDE_TOP (Results 1 – 16 of 16) sorted by relevance
/lvgl-latest/src/draw/nema_gfx/ |
D | lv_draw_nema_gfx_border.c | 113 if(dsc->side & LV_BORDER_SIDE_TOP) { 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() 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()
|
/lvgl-latest/src/draw/vg_lite/ |
D | lv_draw_vg_lite_border.c | 153 if(dsc->side & LV_BORDER_SIDE_TOP) { in path_append_inner_rect() 239 if(dsc->side & LV_BORDER_SIDE_TOP) { in path_append_inner_rect() 337 if(dsc->side & LV_BORDER_SIDE_TOP) { in path_append_inner_rect() 364 if(HAS_BORDER_SIDE(dsc->side, LV_BORDER_SIDE_TOP | LV_BORDER_SIDE_LEFT)) { in path_append_inner_rect() 372 if(HAS_BORDER_SIDE(dsc->side, LV_BORDER_SIDE_TOP | LV_BORDER_SIDE_RIGHT)) { in path_append_inner_rect()
|
/lvgl-latest/src/draw/nxp/vglite/ |
D | lv_draw_vglite_border.c | 138 …border_side = LV_BORDER_SIDE_TOP | LV_BORDER_SIDE_BOTTOM | LV_BORDER_SIDE_LEFT | LV_BORDER_SIDE_RI… in _vglite_draw_border() 147 if(border_side & LV_BORDER_SIDE_TOP) { in _vglite_draw_border()
|
/lvgl-latest/demos/render/ |
D | lv_demo_render.c | 137 LV_BORDER_SIDE_TOP, in border_cb() 139 LV_BORDER_SIDE_TOP | LV_BORDER_SIDE_RIGHT, in border_cb() 142 LV_BORDER_SIDE_LEFT | LV_BORDER_SIDE_TOP, in border_cb() 144 LV_BORDER_SIDE_TOP | LV_BORDER_SIDE_BOTTOM, in border_cb() 146 LV_BORDER_SIDE_LEFT | LV_BORDER_SIDE_BOTTOM | LV_BORDER_SIDE_TOP, in border_cb() 147 LV_BORDER_SIDE_LEFT | LV_BORDER_SIDE_RIGHT | LV_BORDER_SIDE_TOP, in border_cb() 148 LV_BORDER_SIDE_BOTTOM | LV_BORDER_SIDE_RIGHT | LV_BORDER_SIDE_TOP, in border_cb()
|
/lvgl-latest/demos/flex_layout/ |
D | lv_demo_flex_layout_view.c | 90 lv_obj_set_style_border_side(obj, LV_BORDER_SIDE_TOP, 0); in view_create()
|
/lvgl-latest/src/others/xml/ |
D | lv_xml_base_types.c | 83 if(lv_streq("top", txt)) return LV_BORDER_SIDE_TOP; in lv_xml_border_side_to_enum()
|
/lvgl-latest/src/core/ |
D | lv_obj_style.h | 277 return (border_side & LV_BORDER_SIDE_TOP) ? padding + border_width : padding; in lv_obj_get_style_space_top()
|
/lvgl-latest/src/misc/ |
D | lv_style.h | 102 LV_BORDER_SIDE_TOP = 0x02, enumerator
|
/lvgl-latest/src/draw/ |
D | lv_draw_rect.c | 175 bg_coords.y1 += (dsc->border_side & LV_BORDER_SIDE_TOP) ? 1 : 0; in lv_draw_rect()
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_border.c | 71 area_inner.y1 += ((dsc->side & LV_BORDER_SIDE_TOP) ? dsc->width : - (dsc->width + rout)); in lv_draw_sw_border()
|
/lvgl-latest/src/draw/renesas/dave2d/ |
D | lv_draw_dave2d_border.c | 32 area_inner.y1 += ((dsc->side & LV_BORDER_SIDE_TOP) ? dsc->width : - (dsc->width + rout)); in lv_draw_dave2d_border()
|
/lvgl-latest/src/widgets/buttonmatrix/ |
D | lv_buttonmatrix.c | 771 … if(btn_area.y1 == obj->coords.y1 + ptop) draw_rect_dsc_act.border_side &= ~LV_BORDER_SIDE_TOP; in draw_main()
|
/lvgl-latest/src/widgets/table/ |
D | lv_table.c | 775 …if((rect_dsc_def.border_side & LV_BORDER_SIDE_TOP) && cell_area_border.y1 > obj->coords.y1 + bg_to… in draw_main()
|
/lvgl-latest/src/widgets/chart/ |
D | lv_chart.c | 760 …if((border_side & LV_BORDER_SIDE_TOP) && (lv_obj_get_style_pad_top(obj, LV_PART_MAIN) == 0)) i_sta… in draw_div_lines()
|
/lvgl-latest/src/themes/default/ |
D | lv_theme_default.c | 539 lv_style_set_border_side(&theme->styles.table_cell, LV_BORDER_SIDE_TOP | LV_BORDER_SIDE_BOTTOM); in style_init()
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style-properties.rst | 735 …TTOM/LEFT/RIGHT/INTERNAL`. OR-ed values can be used as well, e.g. `LV_BORDER_SIDE_TOP | LV_BORDER_…
|