Home
last modified time | relevance | path

Searched full:set (Results 1 – 25 of 514) sorted by relevance

12345678910>>...21

/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
98 # documentation (similar to Javadoc). Set to NO to disable this.
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
[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/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 …]
/lvgl-latest/scripts/
Dstyle_api_gen.py39 …'dsc': "Set X coordinate of Widget considering the ``align`` setting. Pixel and percentage values …
43 …'dsc': "Set Y coordinate of Widget considering the ``align`` setting. Pixel and percentage values …
47 …'dsc': "Set the alignment which tells from which point of the parent the X and Y coordinates shoul…
83 …'dsc': "Set pivot point's X coordinate for transformations. Relative to Widget's top left corner'"…
87 …'dsc': "Set pivot point's Y coordinate for transformations. Relative to Widget's top left corner'"…
146 'dsc': "Set background color of Widget."},
150 …'dsc': "Set opacity of the background. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transpar…
154 'dsc': "Set gradient color of the background. Used only if `grad_dir` is not `LV_GRAD_DIR_NONE`"},
158 …'dsc': "Set direction of the gradient of the background. Possible values are `LV_GRAD_DIR_NONE/HOR…
162 …'dsc': "Set point from which background color should start for gradients. 0 means to top/left side…
[all …]
/lvgl-latest/src/draw/
Dlv_draw_vector.h139 * Begin a new sub path and set a point to path
234 * Set a matrix to current transformation matrix
241 * Set blend mode for descriptor
243 * @param blend the blend mode to be set in `lv_vector_blend_t`
248 * Set fill color for descriptor
250 * @param color the color to be set in lv_color32_t format
255 * Set fill color for descriptor
257 * @param color the color to be set in lv_color_t format
262 * Set fill opacity for descriptor
264 * @param opa the opacity to be set in lv_opa_t format
[all …]
/lvgl-latest/src/core/
Dlv_obj_pos.h45 * Set the position of an object relative to the set alignment.
52 * @note The values can be set in pixel or in percentage of parent size with `lv_pct(v)`
57 * Set the x coordinate of an object
63 * @note The values can be set in pixel or in percentage of parent size with `lv_pct(v)`
68 * Set the y coordinate of an object
74 * @note The values can be set in pixel or in percentage of parent size with `lv_pct(v)`
79 * Set the size of an object.
84 * pixel simple set the size accordingly
85 * LV_SIZE_CONTENT set the size to involve all children in the given direction
86 …* lv_pct(x) to set size in percentage of the parent's content area size…
[all …]
/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
87 /* Set the "animator" function */
90 /* Set target of the Animation */
96 /* Set start and end values. E.g. 0, 150 */
105 /* Set path (curve). Default is linear */
108 /* Set anim_template callback to indicate when the Animation is completed. */
111 /* Set anim_template callback to indicate when the Animation is deleted (idle). */
[all …]
/lvgl-latest/src/misc/
Dlv_anim.h31 * Macros used to set cubic-bezier anim parameter.
40 * LV_ANIM_SET_EASE_IN_SINE(&a); //Set cubic-bezier anim parameter to easeInSine
93 * Second parameter is the value to set.
139 …int32_t act_time; /**< Ms elapsed since animation started. Set to negative…
148 /* Animation system use these - user shouldn't set */
176 * Set a variable to animate
183 * Set a function to animate `var`
192 * Set the duration of an animation
199 * Set a delay before starting the animation
232 * Set the start and end values of an animation
[all …]
Dlv_ll.c71 ll_p->head = n_new; /*Set the new head in the dsc.*/ in lv_ll_ins_head()
72 if(ll_p->tail == NULL) { /*If there is no tail (1. node) set the tail too*/ in lv_ll_ins_head()
118 ll_p->tail = n_new; /*Set the new tail in the dsc.*/ in lv_ll_ins_tail()
119 if(ll_p->head == NULL) { /*If there is no head (1. node) set the head too*/ in lv_ll_ins_tail()
186 /*Set node as head*/ in lv_ll_chg_list()
194 ll_new_p->head = node; /*Set the new head in the dsc.*/ in lv_ll_chg_list()
195 if(ll_new_p->tail == NULL) { /*If there is no tail (first node) set the tail too*/ in lv_ll_chg_list()
200 /*Set node as tail*/ in lv_ll_chg_list()
208 ll_new_p->tail = node; /*Set the new tail in the dsc.*/ in lv_ll_chg_list()
209 if(ll_new_p->head == NULL) { /*If there is no head (first node) set the head too*/ in lv_ll_chg_list()
[all …]
/lvgl-latest/
Dlv_conf_template.h15 #if 0 /* Set this to "1" to enable content */
77 …/** Set an address for the memory pool instead of allocating it as a normal array. Can be in exter…
142 * "Transformed layers" (if `transform_angle/zoom` are set) use larger buffers
151 * Set it to 0 to have no limit. */
155 * NOTE: If FreeType or ThorVG is enabled, it is recommended to set it to 32KB or more.
181 /** Set number of draw units.
203 /** Set number of maximally-cached circle data.
339 /** Set value to one of the following levels of logging detail:
352 /** Set callback to print logs.
421 * If size is not set to 0, the decoder will fail to decode when the cache is full.
[all …]
DKconfig203 …"Transformed layers" (if `transform_angle/zoom` are set) use larger buffers and can't be drawn in …
212 Set it to 0 to have no limit.
219 If FreeType or ThorVG is enabled, it is recommended to set it to 32KB or more.
326 int "Set number of maximally cached circle data"
333 Set to 0 to disable caching.
360 string "Set the custom asm include file"
539 If not set the user needs to register a callback with `lv_log_register_print_cb`.
710 bool "Use obj property set/get API"
769 bool "For big endian systems set to 1"
776 bool "Set IRAM as LV_ATTRIBUTE_FAST_MEM"
[all …]
/lvgl-latest/docs/details/base-widget/styles/
Dstyle-properties.rst113 Set X coordinate of Widget considering the ``align`` setting. Pixel and percentage values can be us…
127 Set Y coordinate of Widget considering the ``align`` setting. Pixel and percentage values can be us…
141 Set the alignment which tells from which point of the parent the X and Y coordinates should be inte…
267 Set pivot point's X coordinate for transformations. Relative to Widget's top left corner'
281 Set pivot point's Y coordinate for transformations. Relative to Widget's top left corner'
492 Set background color of Widget.
506 Set opacity of the background. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255,…
520 Set gradient color of the background. Used only if `grad_dir` is not `LV_GRAD_DIR_NONE`
534 Set direction of the gradient of the background. Possible values are `LV_GRAD_DIR_NONE/HOR/VER`.
548 Set point from which background color should start for gradients. 0 means to top/left side, 255 the…
[all …]
Dstyle.rst7 Styles are used to set the appearance of Widgets. Styles in LVGL are
62 :cpp:enumerator:`LV_STATE_DEFAULT` is used.˛ If the property is not set even for the
89 5. It's possible to set e.g. rose color for :cpp:expr:`LV_STATE_PRESSED | LV_STATE_FOCUSED`.
92 6. When the Widget is in the checked state there is no property to set
103 - If you want to set a property for all states (e.g. red background color)
104 just set it for the default state. If the Widget can't find a property
122 It's not required to set all the properties in one style. It's possible
126 is set.
131 Styles added later have precedence over ones set earlier. So in the
155 property is not set in the Widget's styles (even in default state). In
[all …]
/lvgl-latest/env_support/cmsis-pack/
Dlv_conf_cmsis.h7 #if 1 /* Set this to "1" to enable content */
74 …/** Set an address for the memory pool instead of allocating it as a normal array. Can be in exter…
147 * "Transformed layers" (if `transform_angle/zoom` are set) use larger buffers
154 * NOTE: If FreeType or ThorVG is enabled, it is recommended to set it to 32KB or more.
176 /** Set number of draw units.
195 /** Set number of maximally-cached circle data.
322 /** Set value to one of the following levels of logging detail:
335 /** Set callback to print logs.
404 * If size is not set to 0, the decoder will fail to decode when the cache is full.
442 /** Use obj property set/get API. */
[all …]
/lvgl-latest/docs/details/integration/chip/
Dnxp.rst39 - Select NXP PXP engine in "lv_conf.h": Set :c:macro:`LV_USE_PXP` to `1`.
40 - In order to use PXP as a draw unit, select in "lv_conf.h": Set :c:macro:`LV_USE_DRAW_PXP` to `1`.
41 - In order to use PXP to rotate the screen, select in "lv_conf.h": Set :c:macro:`LV_USE_ROTATE_PXP`…
42 - Enable PXP asserts in "lv_conf.h": Set :c:macro: `LV_USE_PXP_ASSERT` to `1`.
44 c:macro:`LV_ASSERT_HANDLER` is set to `while(1);` (Halt by default). Else,
62 with the additional callbacks, if :c:macro:`LV_USE_DRAW_PXP` is set to `1`:
86 preferred score and the draw unit id will be set to the task. An `score` equal
91 task (having the `DRAW_UNIT_ID_PXP` set) and will pass the task to the PXP draw
145 is set to process 16x16 blocks to optimize the system for memory bandwidth and
153 - Buffer address must be aligned to 64 bytes: set :c:macro:`LV_DRAW_BUF_ALIGN`
[all …]
/lvgl-latest/docs/details/integration/driver/display/
Dlcd_stm32_guide.rst51 #. Set project name and location.
52 #. Set Targeted Project Type to STM32Cube and press Finish.
56 #. Set High Speed Clock to "BYPASS Clock Source", and Low Speed Clock to "Crystal/Ceramic Resonator…
57 #. In the System Core category select SYS, and set Timebase Source to other than SysTick (in our ex…
59 #. Set the HCLK clock frequency to the maximum value (216 MHz for the STM32F746).
65 #. Set Mode to Transmit Only Master, and Hardware NSS Signal to Disable.
67 #. Set Frame Format to Motorola, Data Size to 8 Bits, First Bit to MSB First.
68 #. Set the Prescaler to the maximum value according to the LCD controller’s datasheet (e.g., 15 MBi…
69 #. Set NSSP Mode to Disabled and NSS Signal Type to Software.
71 #. Set Priority to Medium, Data Width to Half Word.
[all …]
/lvgl-latest/src/libs/thorvg/rapidjson/
Dpointer.h713 //!@name Set a value
716 //! Set a value in a subtree, with move semantics.
722 \param value Value to be set.
726 …ValueType& Set(ValueType& root, ValueType& value, typename ValueType::AllocatorType& allocator) co… in Set() function
730 //! Set a value in a subtree, with copy semantics.
731 …ValueType& Set(ValueType& root, const ValueType& value, typename ValueType::AllocatorType& allocat… in Set() function
735 //! Set a null-terminated string in a subtree.
736 …ValueType& Set(ValueType& root, const Ch* value, typename ValueType::AllocatorType& allocator) con… in Set() function
741 //! Set a std::basic_string in a subtree.
742 …ValueType& Set(ValueType& root, const std::basic_string<Ch>& value, typename ValueType::AllocatorT… in Set() function
[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 …]
Dobj.rst61 You can set/get these attributes with ``lv_obj_set_...`` and
66 /* Set basic Widget attributes */
67 lv_obj_set_size(btn1, 100, 50); /* Set a button's size */
68 lv_obj_set_pos(btn1, 20,30); /* Set a button's position */
86 /* Set slider specific attributes */
87 lv_slider_set_range(slider1, 0, 100); /* Set the min. and max. values */
88 lv_slider_set_value(slider1, 40, LV_ANIM_ON); /* Set the current value (position) */
100 A Widget's parent is set when the widget is created --- the parent is passed to the
164 lv_obj_set_size(parent, 100, 80); /* Set size of parent */
167 lv_obj_set_pos(widget1, 10, 10); /* Set position of new Widget */
[all …]
/lvgl-latest/src/widgets/image/
Dlv_image.h91 * Set the image data to display on the object
100 * Set an offset for the source of an image so the image will be displayed from the new origin.
107 * Set an offset for the source of an image.
115 * Set the rotation angle of the image.
116 * The image will be rotated around the set pivot set by `lv_image_set_pivot()`
121 * rotation will be set to 0 automatically.
127 * Set the rotation center of the image.
129 …* x, y can be set with value of LV_PCT, lv_image_get_pivot will return the true pixel coordinate o…
137 * Set the zoom factor of the image.
150 * Set the horizontal zoom factor of the image.
[all …]
/lvgl-latest/src/
Dlv_conf_internal.h211 …/** Set an address for the memory pool instead of allocating it as a normal array. Can be in exter…
350 * "Transformed layers" (if `transform_angle/zoom` are set) use larger buffers
365 * Set it to 0 to have no limit. */
375 * NOTE: If FreeType or ThorVG is enabled, it is recommended to set it to 32KB or more.
513 /** Set number of draw units.
573 /** Set number of maximally-cached circle data.
929 /** Set value to one of the following levels of logging detail:
954 /** Set callback to print logs.
1213 * If size is not set to 0, the decoder will fail to decode when the cache is full.
1303 /** Use obj property set/get API. */
[all …]
/lvgl-latest/libs/nema_gfx/include/
Dnema_vg_paint.h77 /** \brief Set the paint type
95 /** \brief Set linear gradient to a paint object
112 /** \brief Set the paint color
115 * \param rgba Color to be set, in rgba (hex 0xAABBGGRR) format
120 /** \brief Set the paint opacity
123 * \param opacity Opacity to be set, 1 is fully opaque and 0 is fully transparent
128 /** \brief Set stroke width - DEPRECATED USE nema_vg_stroke_set_width
131 * \param stroke_width Stroke width to be set
136 /** \brief Set transformation matrix for texture
144 /** \brief Set texture to paint object
[all …]
Dnema_blender.h97 /** \brief Set blending mode
99 * \param blending_mode Blending mode to be set
107 /** \brief Set blending mode for filling
109 * \param blending_mode Blending mode to be set
116 /** \brief Set blending mode for filling with composing
118 * \param blending_mode Blending mode to be set
125 /** \brief Set blending mode for blitting
127 * \param blending_mode Blending mode to be set
134 /** \brief Set blending mode for blitting with composing
136 * \param blending_mode Blending mode to be set
[all …]
/lvgl-latest/src/misc/cache/
Dlv_cache.h45 …* @param ops A set of operations that can be performed on the cache. See lv_cache_ops_t …
138 * Set the maximum size of the cache.
140 * If set to 0, the cache will be disabled.
142 * @param cache The cache object pointer to set the maximum size.
181 * Set the compare callback of the cache.
182 * @param cache The cache object pointer to set the compare callback.
183 * @param compare_cb The compare callback to set.
189 * Set the create callback of the cache.
190 * @param cache The cache object pointer to set the create callback.
191 * @param alloc_cb The create callback to set.
[all …]
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_btnmatrix.c46 /* Verify if the map was set correctly. */ in test_button_matrix_set_map_works()
142 /* Verify if the ctrl map was set correctly. */ in test_button_matrix_set_ctrl_map_works()
149 /* Also checking randomly that no other flags are set. */ in test_button_matrix_set_ctrl_map_works()
161 /* Set btn control map using individual APIs. */ in test_button_matrix_set_button_ctrl_works()
167 /* Verify if the ctrl map was set correctly. */ in test_button_matrix_set_button_ctrl_works()
174 /* Also checking randomly that no other flags are set. */ in test_button_matrix_set_button_ctrl_works()
186 /* Set btn control map using individual APIs. */ in test_button_matrix_clear_button_ctrl_works()
305 /* Set expected event code before the event is raised. */ in test_button_matrix_pressed_event_works()
318 /* Set expected event code before the event is raised. */ in test_button_matrix_release_event_works()
341 /* Set expected event code before the event is raised. */ in test_button_matrix_key_event_works()
[all …]

12345678910>>...21