/lvgl-latest/docs/details/base-widget/styles/ |
D | style-properties.rst | 20 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Default</strong> Wi… 21 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Inherited</strong> … 22 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Layout</strong> Yes… 23 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Ext. draw</strong> … 34 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Default</strong> 0<… 35 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Inherited</strong> … 36 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Layout</strong> Yes… 37 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Ext. draw</strong> … 48 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Default</strong> LV… 49 …<li style='display:inline-block; margin-right: 20px; margin-left: 0px'><strong>Inherited</strong> … [all …]
|
/lvgl-latest/src/misc/ |
D | lv_rb.c | 95 else parent->right = node; in lv_rb_insert() 122 current = current->right; in lv_rb_find() 135 if(node->left != NULL && node->right != NULL) { in lv_rb_remove_node() 137 replace = lv_rb_minimum_from(replace->right); in lv_rb_remove_node() 144 node->parent->right = replace; in lv_rb_remove_node() 151 child = replace->right; in lv_rb_remove_node() 163 replace->right = node->right; in lv_rb_remove_node() 164 node->right->parent = replace; in lv_rb_remove_node() 181 child = node->right != NULL ? node->right : node->left; in lv_rb_remove_node() 194 parent->right = child; in lv_rb_remove_node() [all …]
|
D | lv_rb_private.h | 30 struct _lv_rb_node_t * right; member
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgMath.cpp | 57 Bezier left, right; in _bezLength() local 62 cur.split(left, right); in _bezLength() 63 return _bezLength(left, lineLengthFunc) + _bezLength(right, lineLengthFunc); in _bezLength() 81 auto right = bz; in _bezAt() local 83 right.split(t, left); in _bezAt() 234 void Line::split(float at, Line& left, Line& right) const in split() 242 right.pt1 = left.pt2; in split() 243 right.pt2 = pt2; in split() 247 void Bezier::split(Bezier& left, Bezier& right) const in split() 251 right.ctrl2.x = (ctrl2.x + end.x) * 0.5f; in split() [all …]
|
D | tvgSwShape.cpp | 124 Line left, right; in _dashLineTo() local 127 cur.split(dash.curLen, left, right); in _dashLineTo() 136 right = cur; in _dashLineTo() 141 cur = right; in _dashLineTo() 185 Bezier left, right; in _dashCubicTo() local 188 cur.split(dash.curLen, left, right); in _dashCubicTo() 197 right = cur; in _dashCubicTo() 202 cur = right; in _dashCubicTo() 203 dash.ptCur = right.start; in _dashCubicTo()
|
D | tvgSwStroke.cpp | 627 auto right = stroke.borders + 0; in _addReverseLeft() local 633 _growBorder(right, newPts); in _addReverseLeft() 635 auto dstPt = right->pts + right->ptsCnt; in _addReverseLeft() 636 auto dstTag = right->tags + right->ptsCnt; in _addReverseLeft() 659 right->ptsCnt += newPts; in _addReverseLeft() 660 right->movable = false; in _addReverseLeft() 716 auto right = stroke.borders; in _endSubPath() local 732 _borderClose(right, false); in _endSubPath()
|
D | tvgMath.h | 267 void split(float at, Line& left, Line& right) const; 284 void split(Bezier& left, Bezier& right) const; 285 void split(float at, Bezier& left, Bezier& right) const;
|
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_transitions.h | 78 void nema_transition_linear_hor(nema_tex_t left, nema_tex_t right, 105 void nema_transition_cube_hor(nema_tex_t left, nema_tex_t right, 133 void nema_transition_innercube_hor(nema_tex_t left, nema_tex_t right, 161 void nema_transition_stack_hor(nema_tex_t left, nema_tex_t right, float step,
|
D | nema_matrix4x4.h | 163 float left, float right, 177 float left, float right,
|
/lvgl-latest/tests/src/test_cases/ |
D | test_margin_align.c | 29 void obj_set_margin(lv_obj_t * obj, int32_t left, int32_t top, int32_t right, int32_t bottom) in obj_set_margin() argument 33 lv_obj_set_style_margin_right(obj, right, LV_PART_MAIN); in obj_set_margin()
|
D | test_margin_flex.c | 29 void obj_set_margin(lv_obj_t * obj, int32_t left, int32_t top, int32_t right, int32_t bottom) in obj_set_margin() argument 33 lv_obj_set_style_margin_right(obj, right, LV_PART_MAIN); in obj_set_margin()
|
D | test_margin_grid.c | 29 void obj_set_margin(lv_obj_t * obj, int32_t left, int32_t top, int32_t right, int32_t bottom) in obj_set_margin() argument 33 lv_obj_set_style_margin_right(obj, right, LV_PART_MAIN); in obj_set_margin()
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_triangle.c | 95 … bool right = ((p[1].x - p[0].x) * (p[2].y - p[0].y) - (p[1].y - p[0].y) * (p[2].x - p[0].x)) < 0; in lv_draw_sw_triangle() local 104 … right ? LV_DRAW_SW_MASK_LINE_SIDE_RIGHT : LV_DRAW_SW_MASK_LINE_SIDE_LEFT); in lv_draw_sw_triangle() 108 … right ? LV_DRAW_SW_MASK_LINE_SIDE_LEFT : LV_DRAW_SW_MASK_LINE_SIDE_RIGHT); in lv_draw_sw_triangle() 117 … right ? LV_DRAW_SW_MASK_LINE_SIDE_LEFT : LV_DRAW_SW_MASK_LINE_SIDE_RIGHT); in lv_draw_sw_triangle()
|
/lvgl-latest/docs/details/other-components/ |
D | gridnav.rst | 11 left and right arrows move focus to the nearest sibling in the 53 left/right keys) or first/last row (on up/down keys) 58 - :cpp:enumerator:`LV_GRIDNAV_CTRL_HORIZONTAL_MOVE_ONLY`: Only use the left/right keys 61 for grid navigation. Left/right key events will be sent to the Widget that has focus.
|
/lvgl-latest/src/drivers/windows/ |
D | lv_windows_context.c | 318 client_rect.right - client_rect.left, in lv_windows_display_driver_flush_callback() 332 client_rect.right - client_rect.left, in lv_windows_display_driver_flush_callback() 518 request_content_size.right - request_content_size.left, in lv_windows_window_message_callback_nolock() 579 window_rect.right - window_rect.left; in lv_windows_window_message_callback_nolock() 584 client_rect.right - client_rect.left; in lv_windows_window_message_callback_nolock() 625 suggested_rect->right, in lv_windows_window_message_callback_nolock()
|
/lvgl-latest/docs/details/widgets/ |
D | win.rst | 50 left to right. The Header occupies the full width of the Background (its parent) 63 will be placed in the Header in left-to-right order as they are added. These 74 on the far right of the Header.
|
D | spinbox.rst | 43 the right by default whenever the encoder button is clicked. To change this behaviour to shifting 87 - ``LV_KEY_LEFT/RIGHT`` With *Keypad* move the cursor left/right. With
|
D | dropdown.rst | 47 properties and width (for its own width) and right padding for the 48 spacing on the right. 118 will be shown on the left, otherwise on the right.
|
/lvgl-latest/docs/_static/css/ |
D | custom.css | 11 padding-right:8px; 16 padding-right:0px;
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_app_about.c | 138 lv_obj_t * right = create_button(buttons, c->imgs[IMG_PAGER_RIGHT], c); in lv_demo_high_res_app_about() local 139 lv_obj_set_width(right, c->sz->icon[3]); in lv_demo_high_res_app_about() 143 lv_obj_add_event_cb(right, right_clicked_cb, LV_EVENT_CLICKED, slide_deck); in lv_demo_high_res_app_about()
|
/lvgl-latest/src/libs/tjpgd/ |
D | tjpgd.h | 44 uint16_t right; /* Right end */ member
|
/lvgl-latest/docs/details/base-widget/layouts/ |
D | grid.rst | 91 - :cpp:enumerator:`LV_GRID_ALIGN_END`: means right when direction is horizontal and bottom when ver… 106 - :cpp:enumerator:`LV_GRID_ALIGN_END`: means right when direction is horizontal and bottom when ver… 195 swapped. I.e. ``START`` will mean right-most. 197 The columns will be placed from right to left.
|
D | flex.rst | 90 on the main axis. E.g. flush the items to the right on 102 - :cpp:enumerator:`LV_FLEX_ALIGN_END`: means right when direction is horizontal, bottom when vertic… 189 ``START`` will mean right. 192 placed from right to left.
|
/lvgl-latest/src/libs/qrcode/ |
D | qrcodegen.c | 597 …for(int right = qrsize - 1; right >= 1; right -= 2) { // Index of right column in each column pa… in drawCodewords() local 598 if(right == 6) in drawCodewords() 599 right = 5; in drawCodewords() 602 int x = right - j; // Actual x coordinate in drawCodewords() 603 bool upward = ((right + 1) & 2) == 0; in drawCodewords()
|
/lvgl-latest/demos/music/ |
D | README.md | 22 - Mirror the bars to the right side of the circle
|