/lvgl-3.7.0/docs/widgets/extra/ |
D | meter.md | 4 The Meter widget can visualize data in very flexible ways. It can show arcs, needles, ticks lines a… 8 - `LV_PART_TICKS` The tick lines a labels using the *line* and *text* style properties. 21 The minor tick lines can be configured with: `lv_meter_set_scale_ticks(meter, scale, tick_count, li… 23 To add major tick lines use `lv_meter_set_scale_major_ticks(meter, scale, nth_major, tick_width, ti… 53 #### Scale lines (ticks) 54 … scale, color_start, color_end, local, width_mod)` adds an indicator that modifies the ticks lines. 57 `width_mod` modifies the width of the tick lines. 69 - `LV_METER_DRAW_PART_NEEDLE_LINE` The needle lines 79 - `LV_METER_DRAW_PART_TICK` The tick lines and labels 82 - `text`: `value` converted to decimal or `NULL` on minor lines [all …]
|
D | chart.md | 5 …ct to visualize data points. Currently *Line* charts (connect points with lines and/or draw points… 8 - division lines 15 …f the chart. Uses all the typical background and *line* (for the division lines) related style pro… 18 …- Line chart: The *line* properties are used by the lines. `width`, `height`, `bg_color` and `radi… 30 - `LV_CHART_TYPE_LINE` Draw lines between the data points and/or points (rectangles or circles) on… 32 - `LV_CHART_TYPE_SCATTER` - X/Y chart drawing point's and lines between the points. . 81 …s greater than the pixels horizontally, the Chart will draw only vertical lines to make the drawin… 82 …el, LVGL searches the smallest and the largest value and draws a vertical lines between them to en… 90 ### Division lines 91 The number of horizontal and vertical division lines can be modified by `lv_chart_set_div_line_coun… [all …]
|
D | span.md | 43 - `LV_SPAN_MODE_BREAK` Keep width, break the too long lines and auto expand height. 57 ### lines subsection 58 Use `lv_spangroup_set_lines(spangroup, 10)` to set the maximum number of lines to be displayed in L…
|
D | msgbox.md | 7 The text will be broken into multiple lines automatically and the height will be set automatically …
|
/lvgl-3.7.0/src/draw/ |
D | lv_draw_mask.c | 1256 } lines[2], tmp; in lv_draw_mask_polygon() local 1258 lv_memset_00(&lines, sizeof(lines)); in lv_draw_mask_polygon() 1266 lines[line_cnt].p1 = p2; in lv_draw_mask_polygon() 1267 lines[line_cnt].p2 = p1; in lv_draw_mask_polygon() 1271 lines[line_cnt].p1 = p1; in lv_draw_mask_polygon() 1272 lines[line_cnt].p2 = p2; in lv_draw_mask_polygon() 1280 if(lines[0].p1.x > lines[1].p1.x || lines[0].p2.x > lines[1].p2.x) { in lv_draw_mask_polygon() 1281 tmp = lines[0]; in lv_draw_mask_polygon() 1282 lines[0] = lines[1]; in lv_draw_mask_polygon() 1283 lines[1] = tmp; in lv_draw_mask_polygon() [all …]
|
/lvgl-3.7.0/src/extra/widgets/span/ |
D | lv_span.h | 53 int32_t lines; member 142 void lv_spangroup_set_lines(lv_obj_t * obj, int32_t lines);
|
D | lv_span.c | 212 void lv_spangroup_set_lines(lv_obj_t * obj, int32_t lines) in lv_spangroup_set_lines() argument 216 spans->lines = lines; in lv_spangroup_set_lines() 304 return spans->lines; in lv_spangroup_get_lines() 419 int32_t lines = spans->lines < 0 ? INT32_MAX : spans->lines; in lv_spangroup_get_expand_height() local 488 if(line_cnt >= lines) { in lv_spangroup_get_expand_height() 507 spans->lines = -1; in lv_spangroup_constructor()
|
/lvgl-3.7.0/docs/widgets/core/ |
D | line.md | 4 The Line object is capable of drawing straight lines between a set of points. 12 …an `lv_point_t` array and passed to the object by the `lv_line_set_points(lines, point_array, poin…
|
D | label.md | 31 …eight are explicitly set (using e.g.`lv_obj_set_width` or a layout), the lines wider than the lab… 33 - `LV_LABEL_LONG_WRAP` Wrap too long lines. If the height is `LV_SIZE_CONTENT` the label's height w…
|
D | canvas.md | 7 Rectangles, texts, images, lines, arcs can be drawn here using lvgl's drawing engine.
|
D | textarea.md | 7 Long lines are wrapped and when the text becomes long enough the Text area can be scrolled.
|
/lvgl-3.7.0/examples/widgets/chart/ |
D | index.rst | 9 Faded area line chart with custom division lines
|
/lvgl-3.7.0/docs/porting/ |
D | sleep.md | 20 You should also add the following lines to your input device read function to signal a wake-up (pre…
|
D | project.md | 18 …out of the box. To add LVGL to your Makefile based build system add these lines to your main Makef…
|
/lvgl-3.7.0/docs/ |
D | CODING_STYLE.md | 25 * Try to write function shorter than is 50 lines 26 * Always shorter than 200 lines (except very straightforwards) 56 Short "code summaries" of a few lines are accepted. E.g. `/*Calculate the new coordinates*/`
|
D | CHANGELOG.md | 393 - feat(span): add an interface for setting the number of lines [`3200`](https://github.com/lvgl/lvg… 534 - fix(chart): fix misaligned horizontal tick lines on bar charts [`4572a0c`](https://github.com/lvg… 1230 - fix(chart) don't draw series lines with < 1 points [`655f42b`](https://github.com/lvgl/lvgl/co… 1748 - fix(linemeter) draw critical lines with correct color 1908 - Remove duplicated lines from `lv_tabview_add_tab` 2020 It also allows drawing perfectly anti-aliased circles, lines, and arcs. 2042 - dashed vertical and horizontal lines (*dash gap*, *dash_width*) 2079 … makes the scale/lines smaller. scale_border_width and scale_end_border_width allow to draw an arc…
|
/lvgl-3.7.0/src/draw/sdl/ |
D | README.md | 13 `lv_draw_arc`, `lv_draw_line` is not enabled, due to incomplete implementation. So lines and arcs w…
|
/lvgl-3.7.0/docs/libs/ |
D | sjpg.md | 13 - SJPEG frame fragment cache enables fast fetching of lines if available in cache.
|
/lvgl-3.7.0/docs/overview/ |
D | style-props.md | 514 Set the width of the lines in pixel. 523 Set the width of dashes in pixel. Note that dash works only on horizontal and vertical lines 532 Set the gap between dashes in pixel. Note that dash works only on horizontal and vertical lines 541 Make the end points of the lines rounded. `true`: rounded, `false`: perpendicular line ending 550 Set the color fo the lines. 559 Set the opacity of the lines. 673 Set how to align the lines of the text. Note that it doesn't align the object itself, only the line…
|
D | drawing.md | 35 If the area doesn't fit into the buffer, draw as many lines as possible to the *draw buffer*.
|
/lvgl-3.7.0/ |
D | Kconfig | 136 Required to draw shadow, gradient, rounded corners, circles, arc, skew lines, 198 … LV_DITHER_GRADIENT implies allocating one or two more lines of the object's rendering surface
|
/lvgl-3.7.0/scripts/ |
D | Doxyfile | 653 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the 655 # documentation. If the initializer consists of more lines than specified here 903 # Note that the filter must not add or remove lines; it is applied before the 904 # code is scanned, but not when the output code is generated. If lines are added
|
/lvgl-3.7.0/docs/_static/css/ |
D | fontawesome.min.css | 5 …c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines…
|