Searched full:see (Results 1 – 25 of 141) sorted by relevance
123456
/lvgl-3.6.0/scripts/ |
D | Doxyfile | 23 # built into libc) for the transcoding. See http://www.gnu.org/software/libiconv 298 # documentation. See http://daringfireball.net/projects/markdown/ for details. 339 # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: 691 # version. For an example see the documentation. 711 # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. 714 # search path. See also \cite for info how to create references. 790 # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING 797 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv 798 # documentation (see: http://www.gnu.org/software/libiconv) for the list of 867 # that contain example code fragments that are included (see the \include [all …]
|
/lvgl-3.6.0/src/extra/libs/png/ |
D | lodepng.h | 127 colortype: the desired color type for the raw output image. See explanation on PNG color types. 128 bitdepth: the desired bit depth for the raw output image. See explanation on PNG color types. 176 colortype: the color type of the raw input image. See explanation on PNG color types. 177 bitdepth: the bit depth of the raw input image. See explanation on PNG color types. 309 …unsigned btype; /*the block type for LZ (0, 1, 2 or 3, see zlib standard). Should be 2 for proper … 342 …LodePNGColorType colortype; /*color type, see PNG standard or documentation further in this header… 343 …unsigned bitdepth; /*bits per sample, see PNG standard or documentation further in this header fi… 522 See the PNG, ICC and sRGB specifications for more information about the meaning of these values. 626 See the reference manual at the end of this header file to see which color conversions are supporte… 836 -4 bytes chunk type (ASCII a-z,A-Z only, see below) [all …]
|
/lvgl-3.6.0/src/extra/libs/qrcode/ |
D | qrcodegen.c | 127 // Public function - see documentation comment in header file. 165 // Public function - see documentation comment in header file. 194 // Public function - see documentation comment in header file. 202 // Public function - see documentation comment in header file. 738 // Public function - see documentation comment in header file. 748 // Public function - see documentation comment in header file. 796 // Public function - see documentation comment in header file. 807 // Public function - see documentation comment in header file. 818 // Public function - see documentation comment in header file. 862 // Public function - see documentation comment in header file. [all …]
|
/lvgl-3.6.0/docs/porting/ |
D | display.md | 10 … buffer is sent to the display using the `flush_cb` function set in the display driver (see below). 27 As you can see above, the draw buffer may be smaller than the screen. In this case, larger areas ar… 85 …screen in multiple chunks and therefore call `flush_cb` multiple times. To see if the current one … 95 - `rotated` and `sw_rotate` See the [Rotation](#rotation) section below. 98 - `full_refresh` always redrawn the whole screen (see above) 99 - `direct_mode` draw directly into the frame buffer (see above) 110 LVGL has built-in support to several GPUs (see `lv_conf.h`) but if something else is required these…
|
D | indev.md | 13 indev_drv.type =... /*See below.*/ 14 indev_drv.read_cb =... /*See below.*/ 60 - Use `LV_KEY_...` to navigate among the objects in the group. See `lv_core/lv_group.h` for the ava…
|
/lvgl-3.6.0/docs/overview/ |
D | style.md | 39 If the property is not set even for the default state the default value will be used. (See later) 42 States have a precedence which is shown by their value (see in the above list). A higher value mean… 58 …expect naturally. E.g. if an object is focused the user will still want to see if it's pressed, th… 125 This means all three parts of the slider can have their own styles. See later how to add styles to … 218 3. To make LVGL check all objects to see if they use a style and refresh them when needed, call `lv… 221 …operty - considering cascading, inheritance, local styles and transitions (see below) - property g… 246 In the documentation of the widgets you will see sentences like "The widget uses the typical backgr…
|
D | drawing.md | 41 For example, if a button's label has changed, the library will see that it's enough to draw the but… 53 To learn about masking let's see the steps of drawing first. 89 1. Initialize a mask parameter with `lv_draw_mask_<type>_init`. See `lv_draw_mask.h` for the whole … 152 To see which fields are set for a widget refer to the widget's documentation.
|
D | image.md | 13 - *cf* Color format. See [below](#color-format) 27 See the [File system](/overview/file-system) section to learn more. 127 As you can see in the [Color formats](#color-formats) section, LVGL supports several built-in image… 290 …the decoded image. LVGL tries to optimize the process as much as possible (see below), but you wil…
|
D | file-system.md | 9 See its [README](https://github.com/lvgl/lv_fs_if#readme) for the details. 54 The returned file object will be passed to other file system related callbacks. (see below) 64 For a template of these callbacks see [lv_fs_template.c](https://github.com/lvgl/lvgl/blob/master/e…
|
D | event.md | 11 The user can assign callback functions to an object to see its events. In practice, it looks like t… 23 In the example `LV_EVENT_CLICKED` means that only the click event will call `my_event_cb`. See the … 62 However, the *Special events* are specific to a particular widget type. See the [widgets' documenta…
|
D | scroll.md | 141 Here is an example to see how to combine scroll event and store the scroll top position. 169 If the user sets only 200 px height for the table LVGL will see that the self size is larger and ma… 173 …_SELF_SIZE` event to get the self size of an object. Here is an example to see how to handle the e…
|
/lvgl-3.6.0/docs/get-started/ |
D | quick-overview.md | 23 Alternatively, configure `LV_TICK_CUSTOM` (see `lv_conf.h`) so that LVGL can retrieve the current t… 87 …rts etc. are called objects or widgets. Go to [Widgets](/widgets/index) to see the full list of av… 118 To see the full API visit the documentation of the widgets or the related header file (e.g. [lvgl/s… 157 By using parts you can apply different styles to sub-elements of a widget. (See below) 194 See the full list of properties [here](/overview/style.html#properties). 237 To learn all the features of styles see the [Style overview](/overview/style) section.
|
D | index.md | 4 1. Check the [Online demos](https://lvgl.io/demos) to see LVGL in action (3 minutes) 10 7. Port LVGL to a board. See the [Porting](https://docs.lvgl.io/master/porting/index.html) guide or… 12 9. Check the documentation of the [Widgets](https://docs.lvgl.io/master/widgets/index.html) to see … 14 11. Read the [Contributing](https://docs.lvgl.io/master/CONTRIBUTING.html) guide to see how you can…
|
/lvgl-3.6.0/ |
D | README.md | 121 1. Check the [Online demos](https://lvgl.io/demos) to see LVGL in action (3 minutes) 126 6. Port LVGL to a board. See the [Porting](https://docs.lvgl.io/master/porting/index.html) guide or… 128 8. Check the documentation of the [Widgets](https://docs.lvgl.io/master/widgets/index.html) to see … 130 10. Read the [Contributing](https://docs.lvgl.io/master/CONTRIBUTING.html) guide to see how you can… 134 For more examples see the [examples](https://github.com/lvgl/lvgl/tree/master/examples) folder. 178 For more information see https://lvgl.io/services
|
/lvgl-3.6.0/docs/ |
D | ROADMAP.md | 7 See [#2790](https://github.com/lvgl/lvgl/issues/2790) 17 - Text node. See [#1701](https://github.com/lvgl/lvgl/issues/1701#issuecomment-699479408) 18 - CPP binding. See [Forum](https://forum.lvgl.io/t/is-it-possible-to-officially-support-optional-cp… 26 - Functional programming support, pure view? See [here](https://www.freecodecamp.org/news/the-revol… 27 - Circle layout. See [#2871](https://github.com/lvgl/lvgl/issues/2871)
|
D | CONTRIBUTING.md | 32 You can see what it looks like on GitHub for LVGL here: [https://github.com/lvgl/lvgl/pulls](https:… 196 See the [README](https://github.com/lvgl/blog) of the blog repo to see how to add your post. 213 - Update `index.rst` in the example's folder with your new example. To see how other examples are a… 217 As you read the documentation you might see some typos or unclear sentences. All the documentation …
|
D | CODING_STYLE.md | 94 See the [instalation guide](https://pre-commit.com/#installation) to get pre-commit python package 106 The `format-source` local hook (see `.pre-commit-config.yaml`) runs **astyle** on all the staged so… 107 files (that are not excluded, see `exclude` key of the hook configuration) before entering the comm…
|
/lvgl-3.6.0/demos/ |
D | README.md | 58 See in [widgets](https://github.com/lvgl/lvgl/tree/master/demos/widgets) folder. 73 See in [music](https://github.com/lvgl/lvgl/tree/master/demos/music) folder. 81 See in [keypad_encoder](https://github.com/lvgl/lvgl/tree/master/demos/keypad_encoder) folder. 87 See in [benchmark](https://github.com/lvgl/lvgl/tree/master/demos/benchmark) folder. 92 See in [stress](https://github.com/lvgl/lvgl/tree/master/demos/stress) folder.
|
/lvgl-3.6.0/src/draw/nxp/vglite/ |
D | lv_draw_vglite_blend.h | 81 * @retval LV_RES_INV Error occurred (\see LV_GPU_NXP_VG_LITE_LOG_ERRORS) 99 * @retval LV_RES_INV Error occurred (\see LV_GPU_NXP_VG_LITE_LOG_ERRORS) 116 * @retval LV_RES_INV Error occurred (\see LV_GPU_NXP_VG_LITE_LOG_ERRORS) 134 * @retval LV_RES_INV Error occurred (\see LV_GPU_NXP_VG_LITE_LOG_ERRORS) 153 * @retval LV_RES_INV Error occurred (\see LV_GPU_NXP_VG_LITE_LOG_ERRORS)
|
D | lv_vglite_utils.h | 52 /** Enable logging of VG-Lite errors (\see LV_LOG_ERROR)*/ 57 /** Enable logging of VG-Lite traces (\see LV_LOG_ERROR)*/ 63 * see: https://spencermortensen.com/articles/bezier-circle/ 104 * @retval LV_RES_INV Error occurred (\see LV_GPU_NXP_VG_LITE_LOG_ERRORS) 122 * @retval LV_RES_INV Error occurred (\see LV_GPU_NXP_VG_LITE_LOG_ERRORS)
|
/lvgl-3.6.0/src/extra/widgets/span/ |
D | lv_span.h | 58 uint8_t mode : 2; /* details see lv_span_mode_t */ 59 uint8_t overflow : 1; /* details see lv_span_overflow_t */ 112 * @param align see lv_text_align_t for details. 119 * @param overflow see lv_span_overflow_t for details. 133 * @param mode see lv_span_mode_t for details.
|
/lvgl-3.6.0/docs/intro/ |
D | index.md | 142 See the [Porting](/porting/display) section to learn more. 162 ### Why do I see only garbage on the screen? 163 …your display driver. Try the following code without using LVGL. You should see a square with red-b… 188 ### Why do I see nonsense colors on the screen? 215 See the [Operating system and interrupts](/porting/os) section to learn more.
|
/lvgl-3.6.0/docs/get-started/platforms/ |
D | arduino.md | 6 Note that you need to choose a board powerful enough to run LVGL and your GUI. See the [requiremen… 46 …m/lvgl/lvgl/blob/master/examples/arduino/LVGL_Arduino/LVGL_Arduino.ino) to see how to initialize L… 49 In the INO file you can see how to register a display and a touchpad for LVGL and call an example.
|
/lvgl-3.6.0/src/draw/nxp/pxp/ |
D | lv_gpu_nxp_pxp.h | 60 /** Enable logging of PXP errors (\see LV_LOG_ERROR)*/ 65 /** Enable logging of PXP errors (\see LV_LOG_ERROR)*/ 100 * @retval LV_RES_INV Error occurred (\see LV_GPU_NXP_PXP_LOG_ERRORS)
|
/lvgl-3.6.0/docs/widgets/ |
D | obj.md | 20 Only a small subset of coordinate settings is described here. To see all the features of LVGL (padd… 149 …`lv_group_add_obj(group, obj)`, and you can use `lv_obj_get_group(obj)` to see which group an obje… 178 …scroll up/down instead, making it compatible with an encoder input device. See [Input devices over…
|
123456