/lvgl-latest/src/libs/thorvg/ |
D | tvgSwRasterTexmap.h | 46 AALine *lines; member 136 if (aaSpans->lines[ay].x[0] > x1) aaSpans->lines[ay].x[0] = x1; 137 if (aaSpans->lines[ay].x[1] < x2) aaSpans->lines[ay].x[1] = x2; 330 if (aaSpans->lines[ay].x[0] > x1) aaSpans->lines[ay].x[0] = x1; in _rasterBlendingPolygonImageSegment() 331 if (aaSpans->lines[ay].x[1] < x2) aaSpans->lines[ay].x[1] = x2; in _rasterBlendingPolygonImageSegment() 512 if (aaSpans->lines[ay].x[0] > x1) aaSpans->lines[ay].x[0] = x1; in _rasterPolygonImageSegment() 513 if (aaSpans->lines[ay].x[1] < x2) aaSpans->lines[ay].x[1] = x2; in _rasterPolygonImageSegment() 841 aaSpans->lines = static_cast<AALine*>(malloc(height * sizeof(AALine))); in _AASpans() 844 aaSpans->lines[i].x[0] = INT32_MAX; in _AASpans() 845 aaSpans->lines[i].x[1] = 0; in _AASpans() [all …]
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_span.c | 178 const int32_t lines = 100; in test_spangroup_set_max_lines() local 180 lv_spangroup_set_max_lines(spangroup, lines); in test_spangroup_set_max_lines() 182 TEST_ASSERT_EQUAL_INT32(lines, lv_spangroup_get_max_lines(spangroup)); in test_spangroup_set_max_lines() 187 int32_t lines; in test_spangroup_get_max_lines_for_new_span_group() local 189 lines = lv_spangroup_get_max_lines(spangroup); in test_spangroup_get_max_lines_for_new_span_group() 191 TEST_ASSERT_EQUAL_INT32(-1, lines); in test_spangroup_get_max_lines_for_new_span_group() 193 lines = 3; in test_spangroup_get_max_lines_for_new_span_group() 194 lv_spangroup_set_max_lines(spangroup, lines); in test_spangroup_get_max_lines_for_new_span_group() 195 lines = lv_spangroup_get_max_lines(spangroup); in test_spangroup_get_max_lines_for_new_span_group() 197 TEST_ASSERT_EQUAL_INT32(3, lines); in test_spangroup_get_max_lines_for_new_span_group()
|
/lvgl-latest/scripts/ |
D | update_version.py | 57 lines = file.readlines() 60 for i, line in enumerate(lines): 63 lines[i] = line_with_version 71 file.writelines(lines)
|
/lvgl-latest/docs/details/widgets/ |
D | chart.rst | 15 - 0 or more background division lines (horizontal and vertical), 43 Horizontal and Vertical division lines 97 - The chart's background (with optional division lines) 116 background <typical bg props>` and line style properties (for division lines). 123 - LINE chart: *line* properties are used by lines. 134 or ``height`` are set to 0, only the cursor's lines are drawn. 149 - :cpp:enumerator:`LV_CHART_TYPE_LINE`: Draw lines between data points. Data points 155 lines between the points if line-width style values for 268 horizontally, the Chart will draw only vertical lines to make the 271 draws a vertical lines between them to ensure no peaks are missed. [all …]
|
D | line.rst | 10 The Line Widget is capable of drawing straight lines between a set of 30 the Widget by the :cpp:expr:`lv_line_set_points(lines, point_array, point_cnt)`
|
D | label.rst | 96 explicitly set (using e.g.\ :cpp:func:`lv_obj_set_width` or a layout), the lines 101 - :cpp:enumerator:`LV_LABEL_LONG_WRAP` Wrap lines that are too long. If the height is :c:macro:`LV_… 150 To horizontally align the lines of a Label the `text_align` style property can be used with 156 - the text has multiple lines with different line lengths.
|
D | spangroup.rst | 115 - :cpp:enumerator:`LV_SPAN_MODE_BREAK` Keep width; break lines that are too long and auto-expand he… 145 of lines to be displayed in :cpp:enumerator:`LV_SPAN_MODE_BREAK` mode. A negative
|
D | canvas.rst | 12 anything. Rectangles, text, images, lines, arcs, etc. can be drawn here using
|
D | msgbox.rst | 16 The text will be broken into multiple lines and the height
|
D | scale.rst | 158 Sheets) take precedence while drawing the PARTS (lines, arcs, ticks and labels) of 253 - For tick lines (:cpp:enumerator:`LV_PART_ITEMS` and :cpp:enumerator:`LV_PART_INDICATOR`):
|
D | textarea.rst | 12 it. Text or characters can be added to it. Long lines are wrapped and when the
|
/lvgl-latest/src/widgets/span/ |
D | lv_span_private.h | 43 int32_t lines; member
|
D | lv_span.c | 247 void lv_spangroup_set_max_lines(lv_obj_t * obj, int32_t lines) in lv_spangroup_set_max_lines() argument 251 spans->lines = lines; in lv_spangroup_set_max_lines() 349 return spans->lines; in lv_spangroup_get_max_lines() 464 int32_t lines = spans->lines < 0 ? INT32_MAX : spans->lines; in lv_spangroup_get_expand_height() local 549 if(line_cnt >= lines) { in lv_spangroup_get_expand_height() 631 spans->lines = -1; in lv_spangroup_constructor()
|
D | lv_span.h | 133 void lv_spangroup_set_max_lines(lv_obj_t * obj, int32_t lines);
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | building_lvgl.rst | 12 To add LVGL to your Makefile based build system add these lines to your
|
D | threading.rst | 273 You should also add the following lines to your input device read
|
/lvgl-latest/examples/widgets/chart/ |
D | index.rst | 27 Faded area line chart with custom division lines
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | st7796.rst | 9 source lines and 480 gate lines driving circuits. The ST7796S is capable of connecting directly to …
|
D | lcd_stm32_guide.rst | 127 #. Save the file, then open Core/Src/main.c. Add the following lines to the Private includes (if yo… 137 #. Add the following lines to Private defines (change them according to your LCD specs): 146 #. Add the following lines to the Private variables: 161 #. Add the following lines after USER CODE BEGIN RTOS_THREADS:
|
/lvgl-latest/src/draw/renesas/dave2d/ |
D | lv_draw_dave2d.c | 135 int32_t lines = lv_area_get_height(area); in _dave2d_buf_invalidate_cache_cb() local 141 for(i = 0; i < lines; i++) { in _dave2d_buf_invalidate_cache_cb()
|
/lvgl-latest/docs/ |
D | README.md | 187 For improved readability in the .RST file, place at least 2 blank lines above section headings. 223 - If you want to span multiple lines, indent subsequent 224 lines to align with item text like this.
|
D | CODING_STYLE.rst | 89 * on subsequent lines. List of accepted values: 124 - Short "code summaries" of a few lines are accepted: ``/* Calculate new coordinates */`` 135 - Blank lines within comments are desirable when they improve clarity and readability.
|
/lvgl-latest/docs/details/integration/chip/ |
D | espressif.rst | 156 The core functionality requires only a few lines. The following example draws the image as well. 191 To make your configuration permanent, add the following lines to ``sdkconfig.defaults``:
|
D | stm32.rst | 279 when blending fills and images. Some STM32 product lines such as STM32F4 STM32F7, STM32L4,
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style-properties.rst | 965 Set width of lines in pixels. 979 Set width of dashes in pixels. Note that dash works only on horizontal and vertical lines 993 Set gap between dashes in pixels. Note that dash works only on horizontal and vertical lines 1007 Make end points of the lines rounded. `true`: rounded, `false`: perpendicular line ending 1021 Set color of lines. 1035 Set opacity of lines. 1213 Set how to align the lines of the text. Note that it doesn't align the Widget itself, only the line…
|