Home
last modified time | relevance | path

Searched refs:set (Results 1 – 25 of 128) sorted by relevance

123456

/lvgl-latest/env_support/cmake/
Dversion.cmake1 set(LVGL_VERSION_MAJOR "9")
2 set(LVGL_VERSION_MINOR "3")
3 set(LVGL_VERSION_PATCH "0")
4 set(LVGL_VERSION_INFO "dev")
6 set(LVGL_VERSION ${LVGL_VERSION_MAJOR}.${LVGL_VERSION_MINOR}.${LVGL_VERSION_PATCH}) # This is a CMa…
7 set(ENV{LVGL_VERSION} ${LVGL_VERSION}) # This is exported Environmental variable
8 set(LVGL_SOVERSION ${LVGL_VERSION_MAJOR})
/lvgl-latest/tests/
DCMakeLists.txt12 set(VCPKG_TARGET_TRIPLET "x64-windows")
17 set(CMAKE_CXX_STANDARD 14)
18 set(CMAKE_C_STANDARD 99)
20 set(FLAG_CHECK_WHITELIST --coverage -fsanitize=address -Werror)
25 set(options ${ARGN})
47 set(${options_out} ${${options_out}} PARENT_SCOPE)
52 set(MEMORYCHECK_COMMAND ${VALGRIND_EXECUTABLE})
53 set(MEMORYCHECK_COMMAND_OPTIONS --error-exitcode=1)
58 set(LVGL_TEST_DIR ${CMAKE_CURRENT_SOURCE_DIR})
60 set(SANITIZE_AND_COVERAGE_OPTIONS
[all …]
DFindLibDRM.cmake4 set(Libdrm_DEFINITIONS ${PKG_Libdrm_CFLAGS_OTHER})
5 set(Libdrm_VERSION ${PKG_Libdrm_VERSION})
43 set(Libdrm_LIBRARIES ${Libdrm_LIBRARY})
44 set(Libdrm_INCLUDE_DIRS ${Libdrm_INCLUDE_DIR} "${Libdrm_INCLUDE_DIR}/libdrm")
45 set(Libdrm_VERSION_STRING ${Libdrm_VERSION} ${PKG_Libdrm_LIBRARY_DIRS})
/lvgl-latest/docs/details/widgets/
Dimagebutton.rst15 You can set a left, right and middle image, and the middle image will be
37 To set the image in a state, use the
42 Typically the middle image should be one of the set image sources.
44 If only ``src_mid`` is specified, the width of the widget will be set automatically to the
45 width of the image. However, if all three sources are set, the width needs to be set by the user
57 The image sources set for state :cpp:enumerator:`LV_IMAGEBUTTON_STATE_RELEASED` are
58 used for any state that has not had image sources set for it. If an image sources
59 have been set for other states, e.g. :cpp:enumerator:`LV_IMAGEBUTTON_STATE_PRESSED`,
67 set the state of Image Buttons.
77 This requires the Image Button's :cpp:enumerator:`LV_OBJ_FLAG_CHECKABLE` flag to be set.
Dspangroup.rst49 After a Span is created, use the following functions to set its text
97 Like the Label Widget, a Spangroup can be set to one the following text-alignment modes:
105 to set text alignment.
111 A Spangroup can be set to one the following modes:
117 Use :cpp:expr:`lv_spangroup_set_mode(spangroup, LV_SPAN_MODE_BREAK)` to set its mode.
123 A Spangroup can be set to handle text overflow in one of the following ways:
128 Use :cpp:expr:`lv_spangroup_set_overflow(spangroup, LV_SPAN_OVERFLOW_CLIP)` to set
135 Use :cpp:expr:`lv_spangroup_set_indent(spangroup, 20)` to set the indent of the
144 Use :cpp:expr:`lv_spangroup_set_max_lines(spangroup, 10)` to set the maximum number
Dtable.rst16 The Table is added to the default group (if one is set).
56 To explicitly set number of rows and columns use
63 Column width can be set with
65 the Table Widget will be set to the sum of all column widths.
80 If a Table's width or height is set to :c:macro:`LV_SIZE_CONTENT` that size
85 If the width or height is set to a smaller number than its "intrinsic"
119 currently selected cell. Row and column will be set to
Dline.rst10 The Line Widget is capable of drawing straight lines between a set of
36 be set explicitly using :cpp:func:`lv_obj_set_width` and :cpp:func:`lv_obj_set_height`,
42 By default, the Line's width and height are set to :c:macro:`LV_SIZE_CONTENT`.
43 This means it will automatically set its size to fit all the points. If
44 the size is set explicitly, parts on the Line may not be visible.
Dled.rst29 You set the color of the LED with
36 You can set their brightness with :cpp:expr:`lv_led_set_brightness(led, brightness)`.
42 Use :cpp:expr:`lv_led_on(led)` and :cpp:expr:`lv_led_off(led)` to set the brightness to
46 You can set custom LED ON and OFF brightness values by defining macros
Dslider.rst13 a knob. The knob can be dragged to set the Slider's value. Like Bar, a Slider
52 To set different values use:
55 is set by the styles' ``anim_time`` property);
57 - for orientation, width and height, simply set width and height properties;
66 bottom to top in vertical orientation. If the minimum value is set to be greater
89 desirable to set the Slider to react on dragging the knob only. This
93 Any extended click area (set by :cpp:expr:`lv_obj_set_ext_click_area(slider, value)`)
Dbar.rst14 Both the start and end values of the Bar can be set. Changing the start value to a
27 animation time if the values set with :cpp:enumerator:`LV_ANIM_ON`.
40 - for orientation, width and height, simply set width and height style properties;
52 A new value can be set with
60 The new value in :cpp:func:`lv_bar_set_value` can be set with or without an
Danimimg.rst11 difference is that instead of one source image, you set an array of
33 To set the image animation images sources, use
43 :cpp:expr:`lv_anim_set_values(anim, start, end)` or to set a callback
Darc.rst39 A new value can be set using :cpp:expr:`lv_arc_set_value(arc, new_value)`. The
45 set to maximum the indicator Arc will cover the entire "background" Arc.
46 To set the start and end angle of the background Arc use any of these functions:
72 The mode can be set by :cpp:expr:`lv_arc_set_mode(arc, LV_ARC_MODE_...)` and
73 has no effect until angle is set by :cpp:func:`lv_arc_set_value` or value of the Arc
81 degrees/second units and can be set with
88 relative to the end of the Arc. The knob offset can be set by
95 It is possible to set indicator angle directly with any of these functions:
/lvgl-latest/.devcontainer/
D__CMakeLists.txt__4 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -s USE_SDL=2")
10 set(SOURCES ${MY_SOURCES})
15 set(LVGL_CHOSEN_DEMO lv_demo_widgets)
19 set(CMAKE_EXECUTABLE_SUFFIX ".html")
/lvgl-latest/docs/
DDoxyfile63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
74 # characters to appear in the names of generated files. If set to NO, non-ASCII
96 # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
103 # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
106 # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
133 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
140 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
148 # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
149 # before files name in the file list and in the header files. If set to NO the
[all …]
Ddoc_builder.py268 self.types = set()
345 typedefs=set(),
346 functions=set(),
347 enums=set(),
348 structures=set(),
349 unions=set(),
350 namespaces=set(),
351 variables=set(),
569 self.types = set()
702 typedefs=set(),
[all …]
/lvgl-latest/env_support/esp/rlottie/
DCMakeLists.txt10 set(LOTTIE_MODULE OFF)
11 set(LOTTIE_THREAD OFF)
12 set(BUILD_SHARED_LIBS OFF)
/lvgl-latest/src/libs/thorvg/
DtvgAccessor.cpp56 TVG_DEPRECATED unique_ptr<Picture> Accessor::set(unique_ptr<Picture> picture, function<bool(const P… in set() function in Accessor
65 set(picture.get(), backward, reinterpret_cast<void*>(&func)); in set()
70 Result Accessor::set(const Picture* picture, function<bool(const Paint* paint, void* data)> func, v… in set() function in Accessor
/lvgl-latest/src/core/
Dlv_obj_property.c23 if(!set) { \
94 static lv_result_t obj_property(lv_obj_t * obj, lv_prop_id_t id, lv_property_t * value, bool set);
246 static lv_result_t obj_property(lv_obj_t * obj, lv_prop_id_t id, lv_property_t * value, bool set) in obj_property() argument
273 if(set) return ((lv_property_setter_t)prop->setter)(obj, id, value); in obj_property()
282 if(set ? prop->setter == NULL : prop->getter == NULL) { in obj_property()
283 LV_LOG_WARN("NULL %s provided, id: 0x%" LV_PRIx32, set ? "setter" : "getter", id); in obj_property()
288 if(!set) value->id = prop->id; in obj_property()
313 if(set)((lv_property_set_point_t)(prop->setter))(obj, point); in obj_property()
/lvgl-latest/docs/intro/add-lvgl-to-your-project/
Dconfiguration.rst20 enable the file's content and set the :c:macro:`LV_COLOR_DEPTH` define to align with
32 options (e.g. ``-DLV_CONF_INCLUDE_SIMPLE`` for GCC compiler) and set the
37 be set via the :c:macro:`LV_CONF_PATH` define. For example
39 is set :c:macro:`LV_CONF_SKIP` is assumed to be ``0``. Please notice,
52 set in Kconfig. To ignore the configs from ``lv_conf.h`` simply remove
65 to at least set :c:macro:`LV_COLOR_DEPTH` according to your display's color
75 multi-instance feature, set :c:macro:`LV_GLOBAL_CUSTOM` in ``lv_conf.h``
/lvgl-latest/docs/details/main-components/
Danimation.rst32 This prototype makes it easy to use most of the LVGL *set* functions directly or via a trivial wrap…
35 …- functions that set :ref:`local style properties <style_local>`) directly on objects (needs a wra…
36 …- set properties on :cpp:type:`lv_style_t` objects (e.g. :ref:`shared styles <style_initialize>`) …
49 components. But you can provide your own "set" functions, and so the application of
146 calculates the next value to set based on the current state of the Animation.
162 you provide), you set it using :cpp:expr:`lv_anim_set_path_cb(&anim_template, path_cb)`.
177 Normally, you set the Animation duration directly using
184 you can set it like this:
202 To do this, pass a non-zero value to this function to set the duration for the
216 After you have set up your :cpp:type:`lv_anim_t` object, it is important to realize
[all …]
/lvgl-latest/docs/details/base-widget/
Dcoord.rst18 - Explicitly set coordinates are stored in styles (position, size, layouts, etc.)
53 meaning: it means to set the width and/or height of a Widget
137 coordinates can also be set via style properties. To be more precise,
156 the earlier set coordinates will be removed as well.
162 /* The size of obj1 will be set back to the default in the end */
164 lv_obj_remove_style_all(widget1); /* It removes the set sizes */
182 To simply set the x and y coordinates of a Widget use:
249 If the parent's size changes, the set alignment and position of the
300 The width and the height of a Widget can be set easily as well:
309 size. For example to set the Widget's height to the screen height:
[all …]
/lvgl-latest/docs/details/integration/renderers/
Darm2d.rst28 - you can set the macro :c:macro:`LV_USE_DRAW_ARM2D_SYNC` to ``1`` and
31 - You can set
39 check the environment and set the :c:macro:`LV_USE_DRAW_ARM2D_SYNC` accordingly.
45 there is no accelerator or dedicated instruction set (such as Helium or
/lvgl-latest/docs/details/integration/chip/
Darm.rst31 Arm2D and the Helium instruction set
34 … and Cortex-M85 have the `SIMD Helium <https://www.arm.com/technologies/helium>`__ instruction set.
35 …ing. :ref:`Arm2D <arm2d>` is a library maintained by Arm that leverages the Helium instruction set.
42 1. To utilize its power, ensure that ``mcpu`` is set to ``cortex-m85``, ``cortex-m55``, or ``cortex…
55 …ion set. LVGL has built-in support to improve the performance of software rendering by utilizing N…
/lvgl-latest/docs/details/debugging/
Dlog.rst14 To enable logging, set :c:macro:`LV_USE_LOG` in ``lv_conf.h`` and set
24 The events which have a higher level than the set log level will be logged
/lvgl-latest/docs/details/libs/
Dfs.rst36 A **default driver letter** can be set by ``LV_FS_DEFAULT_DRIVER_LETTER``,
39 For example if ``LV_FS_DEFAULT_DRIVER_LETTER`` is set the ``'S'`` *"path/to/file.txt"* will mean *"…
45 The **working directory** can be set with ``LV_FS_..._PATH``. E.g.
52 …ached reading <overview_file_system_cache>` is also supported if ``LV_FS_..._CACHE_SIZE`` is set to

123456