Searched refs:all (Results 1 – 25 of 63) sorted by relevance
123
/lvgl-3.5.0/docs/overview/ |
D | event.md | 23 …ick event will call `my_event_cb`. See the [list of event codes](#event-codes) for all the options. 24 `LV_EVENT_ALL` can be used to receive all events. 32 lv_obj_add_event_cb(obj, my_event_cb_3, LV_EVENT_ALL, NULL); /*No filtering, receive all events*/ 94 - `LV_EVENT_DRAW_POST_BEGIN` Starting the post draw phase (when all children are drawn) 95 - `LV_EVENT_DRAW_POST` Perform the post draw phase (when all children are drawn) 96 - `LV_EVENT_DRAW_POST_END` Finishing the post draw phase (when all children are drawn) 106 - `LV_EVENT_CHILD_CREATED` Child was created, always bubbles up to all parents 107 - `LV_EVENT_CHILD_DELETED` Child was deleted, always bubbles up to all parents 114 - `LV_EVENT_SCREEN_LOADED` A screen was loaded, called when all animations are finished 115 - `LV_EVENT_SCREEN_UNLOADED` A screen was unloaded, called when all animations are finished [all …]
|
D | layer.md | 49 Both are visible and common on all screens of a display. **They are not, however, shared among mult… 51 …up, etc. If the `click` attribute is enabled, then `layer_top` will absorb all user clicks and act… 56 …or similar purposes in LVGL. For example, it places the mouse cursor above all layers to be sure i…
|
D | object.md | 6 You can see all the [Object types](/widgets/index) here. 30 To see all the available functions visit the [Base object's documentation](/widgets/obj). 58 Therefore, all positions are relative to the parent. 111 There is a common **delete** function for all object types. It deletes the object and all of its ch… 121 You can remove all the children of an object (but not the object itself) using `lv_obj_clean(obj)`.
|
D | style.md | 9 Therefore, not all properties have to be specified in a style. LVGL will search for a property unti… 60 - If you want to set a property for all states (e.g. red background color) just set it for the defa… 67 It's not required to set all the properties in one style. It's possible to add more styles to an ob… 125 This means all three parts of the slider can have their own styles. See later how to add styles to … 169 To reset a style (free all its data) use: 207 To remove all styles from an object use `lv_obj_remove_style_all(obj)`. 210 `style` can be `NULL` to check only the `selector` and remove all matching styles. The `selector` c… 217 To refresh all parts and properties use `lv_obj_refresh_style(obj, LV_PART_ANY, LV_STYLE_PROP_ANY)`. 218 …L check all objects to see if they use a style and refresh them when needed, call `lv_obj_report_s… 285 …et to their non-default value LVGL creates a snapshot about the widget and all its children in ord…
|
D | image.md | 80 In the generated C arrays (variables), bitmaps for all the color depths (1, 8, 16 or 32) are includ… 127 …LVGL supports several built-in image formats. In many cases, these will be all you need. LVGL does… 137 You can add any number of image decoders. When an image needs to be drawn, the library will try all… 139 …OR_...`, `LV_IMG_INDEXED_...` and `LV_IMG_ALPHA_...` formats (essentially, all non-`RAW` formats) … 241 /*Free all allocated data*/ 256 - In `decoder_close` you should free all allocated resources. 298 When you use more images than cache entries, LVGL can't cache all the images. Instead, the library … 304 …alue. Every time an image is opened through the cache, the *life* value of all entries is decrease…
|
/lvgl-3.5.0/docs/widgets/core/ |
D | switch.md | 10 - `LV_PART_MAIN` The background of the switch uses all the typical background style properties. `pa… 11 - `LV_PART_INDICATOR` The indicator that shows the current state of the switch. Also uses all the t… 12 …tangle (or circle) drawn at left or right side of the indicator. Also uses all the typical backgro…
|
D | line.md | 7 - `LV_PART_MAIN` uses all the typical background properties and line style properties. 15 …to `LV_SIZE_CONTENT`. This means it will automatically set its size to fit all the points. If the …
|
D | slider.md | 9 - `LV_PART_MAIN` The background of the slider. Uses all the typical background style properties. `p… 10 - `LV_PART_INDICATOR` The indicator that shows the current state of the slider. Also uses all the t… 11 - `LV_PART_KNOB` A rectangle (or circle) drawn at the current value. Also uses all the typical back…
|
D | table.md | 12 - `LV_PART_MAIN` The background of the table uses all the typical background style properties. 13 - `LV_PART_ITEMS` The cells of the table also use all the typical background style properties and t… 44 …_SIZE_CONTENT, LV_SIZE_CONTENT)` automatically sets the table size to show all the columns and row…
|
D | checkbox.md | 9 - `LV_PART_MAIN` The is the background of the Checkbox and it uses the text and all the typical bac… 11 - `LV_PART_INDICATOR` The "tick box" is a square that uses all the typical background style propert…
|
D | btnmatrix.md | 11 - `LV_PART_ITEMS` The buttons all use the text and typical background style properties except trans… 42 By default, all flags are disabled. 47 To set/clear the same control attribute for all buttons of a button matrix, use `lv_btnmatrix_set_b…
|
/lvgl-3.5.0/scripts/ |
D | cppcheck_run.sh | 1 cppcheck -j8 --template="{severity}\t{file}:{line}\t{id}: {message}" --enable=all ../src/ --output-…
|
/lvgl-3.5.0/tests/ |
D | README.md | 16 1. Run all executable tests with `./tests/main.py test`. 17 2. Build all build-only tests with `./tests/main.py build`. 18 3. Clean prior test build, build all build-only tests,
|
/lvgl-3.5.0/docs/widgets/extra/ |
D | colorwheel.md | 10 - `LV_PART_KNOB` A rectangle (or circle) drawn on the current value. It uses all the rectangle like… 20 The color can be set manually with `lv_colorwheel_set_hue/saturation/value(colorwheel, x)` or all a…
|
D | win.md | 29 …e width of the title is set to take all the remaining space on the header. In other words: it push…
|
D | keyboard.md | 11 - `LV_PART_MAIN` The main part. Uses all the typical background properties 12 - `LV_PART_ITEMS` The buttons. Also uses all typical background properties as well as the *text* pr… 33 …. If you use a custom keymap, set the `LV_BTNMATRIX_CTRL_POPOVER` flag for all keys that you want …
|
D | list.md | 9 - `LV_PART_MAIN` The main part of the list that uses all the typical background properties
|
D | led.md | 8 The LEDs have only one main part, called `LV_LED_PART_MAIN` and it uses all the typical background …
|
/lvgl-3.5.0/demos/stress/ |
D | README.md | 12 - In `lv_conf.h` enable all the widgets (`LV_USE_BTN 1`) and the animations (`LV_USE_ANIMATION 1`)
|
/lvgl-3.5.0/docs/porting/ |
D | sleep.md | 27 In addition to `lv_disp_get_inactive_time()` you can check `lv_anim_count_running()` to see if all …
|
/lvgl-3.5.0/docs/libs/ |
D | ffmpeg.md | 7 - `./configure --disable-all --disable-autodetect --disable-podpages --disable-asm --enable-avcodec…
|
/lvgl-3.5.0/docs/ |
D | CODING_STYLE.md | 30 * Declare variables where needed (not all at function start) 106 The `format-source` local hook (see `.pre-commit-config.yaml`) runs **astyle** on all the staged so… 110 The `trailing-whitespace` hook fixes trailing whitespaces on all of the files.
|
/lvgl-3.5.0/.github/ISSUE_TEMPLATE/ |
D | bug-report.md | 15 ### Perform all steps below and tick them with [x]
|
/lvgl-3.5.0/ |
D | LICENCE.txt | 6 The above copyright notice and this permission notice shall be included in all copies or substantia…
|
/lvgl-3.5.0/docs/get-started/platforms/ |
D | tasmota-berry.md | 11 …he interpreter of Berry include a one-pass compiler and register-based VM, all the code is written… 32 …available, similar to the mapping of Micropython. It allows to use +98% of all LVGL features. It i…
|
123