Home
last modified time | relevance | path

Searched refs:functions (Results 1 – 25 of 70) sorted by relevance

123

/lvgl-latest/docs/
Ddoc_builder.py224 functions = {} variable
346 functions=set(),
362 elif type_ in functions:
363 self._deps['functions'].add(functions[type_])
542 self.__dict__.update(functions[name].__dict__)
544 functions[name] = self
562 if name in functions:
563 self.__dict__.update(functions[name].__dict__)
565 functions[name] = self
703 functions=set(),
[all …]
DCODING_STYLE.rst26 - followed by the action (for functions): *set*, *get*, etc.
65 - Write functions that use the single-responsibility principle.
66 - Make functions ``static`` when not part of that object's public API (where possible).
74 - Variables in a file (outside functions) are always *static*.
75 - Do not use global variables (use functions to set/get static variables).
307 { /* Main brackets of functions in new line */
/lvgl-latest/docs/details/integration/driver/display/
Dili9341.rst15 …he display flush callback. The user needs to implement only two platform-specific functions to send
16 … Typically these are implemented by calling the appropriate SDK library functions on the given pla…
35 You need to implement two platform-dependent functions:
Dst7735.rst17 …he display flush callback. The user needs to implement only two platform-specific functions to send
18 … Typically these are implemented by calling the appropriate SDK library functions on the given pla…
37 You need to implement two platform-dependent functions:
Dst7789.rst16 …he display flush callback. The user needs to implement only two platform-specific functions to send
17 … Typically these are implemented by calling the appropriate SDK library functions on the given pla…
36 You need to implement two platform-dependent functions:
Dst7796.rst17 …he display flush callback. The user needs to implement only two platform-specific functions to send
18 … Typically these are implemented by calling the appropriate SDK library functions on the given pla…
37 You need to implement two platform-dependent functions:
/lvgl-latest/docs/intro/add-lvgl-to-your-project/
Dthreading.rst71 Assuming the above is the case, it is safe to call LVGL functions in
83 inconsistent state. A high percentage LVGL functions (functions that start with
86 multi-step sequences), but return them to a consistent state before those functions
94 These two LVGL functions may be called from any thread:
103 LVGL functions, set a flag or other atomic value that your LVGL-calling thread
160 by another task or in an interrupt), the thread calling LVGL functions can read that
168 data to the thread calling LVGL functions is to pass a private copy of that data to
234 /* You must always hold (lock) the MUTEX while calling LVGL functions. */
Dconnecting_lvgl.rst38 functions.
61 elapsed since system start up. Many platforms have built-in functions that can
77 .. note:: :cpp:func:`lv_tick_inc` is only one of two LVGL functions that may be
/lvgl-latest/docs/details/other-components/
Dobj_id.rst24 - these two API functions become available:
29 - several more Widget-ID-related API functions become available if
47 Because of this timing, custom versions of these functions can be used according to
108 functions. You do this by first setting :c:macro:`LV_USE_OBJ_ID_BUILTIN` to `0` in
111 You will then need to provide implementations for the following functions (and link
136 Examples of implementations of these functions exist in ``lv_obj_id_builtin.c``, but
Dobj_property.rst90 The 3 functions that then become available are:
133 That array is attached to the Widget's class, enabling "getter" and "setter" functions
237 following functions to look up property IDs by passing property name (a string):
250 The latter two functions are useful when you already know ``name`` is among the
Dfile_explorer.rst30 event callback functions. What happens next is up to the application designer.
113 This list of functions provides access to the parts shown in diagram above:
209 through functions such as :cpp:func:`strcpy` and :cpp:func:`strcat` for later use.
Dobserver.rst96 The following functions can be used to set a subject's value:
106 The following functions can be used to get a subject's value:
118 The following functions can be used to get a subject's previous value:
/lvgl-latest/docs/details/main-components/
Dfs.rst54 then the path strings you pass to ``lv_fs_...()`` functions would look like this::
59 | +-- This part gets passed to the OS-level file-system functions.
62 driver (i.e. set of functions) that apply to that file system.
199 portion of of the path strings provided to ``lv_fs_...()`` functions when files and
202 path strings provided to ``lv_fs_...()`` functions.
221 Then in both cases, path strings passed to ``lv_fs_...()`` functions in the
318 The implementation is documented below. Note that the FS functions make calls
319 to other driver FS functions when the cache is enabled. i.e., ``lv_fs_read`` may call the driver's …
Dcolor.rst7 The color module handles all color-related functions like changing color
103 The following functions can modify a color:
Danimation.rst18 "variable"), which is available in the callback functions that are called as the
32 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…
49 components. But you can provide your own "set" functions, and so the application of
71 ``lv_anim_set_...()`` functions.
230 /* ...and other set-up functions above. */
/lvgl-latest/docs/details/widgets/
Dcanvas.rst77 To draw something to the Canvas use LVGL's draw functions directly. See the examples for more detai…
79 The draw functions can draw to any color format to which LVGL can render. Typically this means
Darc.rst46 To set the start and end angle of the background Arc use any of these functions:
95 It is possible to set indicator angle directly with any of these functions:
141 A typical use case is to call these functions in the ``VALUE_CHANGED``
Danimimg.rst41 use the :ref:`Animation <animation>` functions, for example, to
Dwin.rst62 You can add Button and Label Widgets to the Header using these two functions. They
64 functions can be called in any order, any number of times.
Dlist.rst51 with one of the ``lv_label_set_text...()`` functions.
Dspangroup.rst49 After a Span is created, use the following functions to set its text
66 normal functions for getting children won't work.
/lvgl-latest/docs/details/debugging/
Dprofiler.rst19 The trace system has a configurable record buffer that stores the names of event functions and thei…
165 Use the mouse to move the focus and click on functions on the timeline to observe their execution t…
170 Users can add their own measured functions:
241 2. Optimize the execution time of log printing functions, such as increasing the serial port baud r…
Dlog.rst63 functions. Here:
/lvgl-latest/examples/arduino/LVGL_Arduino/
DLVGL_Arduino.ino41 /*For example ("my_..." functions needs to be implemented by you)
56 /*For example ("my_..." functions needs to be implemented by you)
/lvgl-latest/docs/details/base-widget/layouts/
Dflex.rst47 Use the following functions to set and control the Flex layout on any parent Widget.
52 The functions below cause the parent Widget to become a Flex container if it is
166 following functions can be used to set the flex container padding style:

123