Searched full:remove (Results 1 – 25 of 108) sorted by relevance
12345
/lvgl-latest/docs/ |
D | CHANGELOG.md | 70 - docs(simulator): remove SDL support from the Visual Studio project [`bcebafe`](https://github.com… 137 - fix(tabview): remove the animation if the tab is selected by clicking the button on the header [`… 232 - fix(monkey): remove executable permissions from source files [`3971`](https://github.com/lvgl/lvg… 281 - fix(style): remove the reduntant define of LV_GRADIENT_MAX_STOPS [`903e94b`](https://github.com/l… 311 - docs(draw) remove reference to old lv_fs_add_drv function [`3564`](https://github.com/lvgl/lvgl/p… 312 - docs(disp): LV_COLOR_SCREEN_TRANSP remove dependency on LV_COLOR_DEPTH_32 as transparency is supp… 323 - remove accidentally added code [`5022476`](https://github.com/lvgl/lvgl/commit/5022476edc8676f2a6… 448 - fix(benchmark): remove redundant string for the small screens [`3335`](https://github.com/lvgl/l… 471 - fix(chart): remove invalid decision branches [`3231`](https://github.com/lvgl/lvgl/pull/3231) 480 - fix(event): remove invalid decision branches [`3233`](https://github.com/lvgl/lvgl/pull/3233) [all …]
|
/lvgl-latest/src/core/ |
D | lv_obj_style.h | 80 * @param style pointer to a style to remove. Can be NULL to check only the selector 81 …* @param selector OR-ed values of states and a part to remove only styles with matching selectors… 82 * @example lv_obj_remove_style(obj, &style, LV_PART_ANY | LV_STATE_ANY); //Remove a specific style 83 …* @example lv_obj_remove_style(obj, NULL, LV_PART_MAIN | LV_STATE_ANY); //Remove all styles from t… 84 * @example lv_obj_remove_style(obj, NULL, LV_PART_ANY | LV_STATE_ANY); //Remove all styles 89 * Remove all styles from an object 150 * Remove a local style property from a part of an object with a given state. 152 * @param prop a style property to remove.
|
D | lv_event.h | 239 * Remove an event handler function for an object. 241 …* @param event_cb the event function to remove, or `NULL` to remove the firstly added event callb… 247 * Remove an event handler function with a specific user_data from an object. 249 * @param event_cb the event function to remove, or `NULL` only `user_data` matters. 258 * Remove an event handler function for an object. 260 * @param event_dsc pointer to an event descriptor to remove (returned by ::lv_obj_add_event_cb)
|
D | lv_obj_style.c | 709 * Remove the transition from object's part's property. 710 * - Remove the transition from `_lv_obj_style_trans_ll` and free it 713 * @param part a part of object or 0xFF to remove from all parts 714 * @param prop a property or 0xFF to remove all properties 730 /*Remove any transitioned properties from the trans. style in trans_del() 842 /*Remove the transitioned property from trans. style in trans_anim_ready_cb()
|
D | lv_obj_tree.h | 44 * Also remove the objects from their group and remove all animations (if any). 52 * Also remove the objects from their group and remove all animations (if any).
|
D | lv_obj_tree.c | 92 /*Just to remove scroll animations if any*/ in lv_obj_clean() 147 /*Remove the object from the old parent's child list*/ in lv_obj_set_parent() 387 /*Remove the screen for the screen list*/ in obj_del_core() 403 /*Remove the object from the child list of its parent*/ in obj_del_core()
|
D | lv_group.c | 80 /*Remove the objects from the group*/ in lv_group_del() 86 /*Remove the group from any indev devices */ in lv_group_del() 204 /*Search the object and remove it from its group*/ in lv_group_remove_obj() 226 /*Remove the objects from the group*/ in lv_group_remove_all_objs()
|
D | lv_group.h | 134 * Remove an object from its group 135 * @param obj pointer to an object to remove 140 * Remove all objects from a group
|
/lvgl-latest/docs/overview/ |
D | style.md | 98 …ue has been set on the style, so setting the value of the property afterwards will remove the flag. 149 To remove a property use: 188 ## Add and remove styles to a widget 206 ### Remove styles 207 To remove all styles from an object use `lv_obj_remove_style_all(obj)`. 209 To remove specific styles use `lv_obj_remove_style(obj, style, selector)`. This function will remov… 210 …only the `selector` and remove all matching styles. The `selector` can use the `LV_STATE_ANY` and …
|
D | drawing.md | 67 - `LV_DRAW_MASK_TYPE_ANGLE` Removes a circular sector. It is used by `lv_draw_arc` to remove the "e… 92 4. Remove the mask from the draw engine with `lv_draw_mask_remove_id(mask_id)` or `lv_draw_mask_rem… 126 …nished. You can draw anything here as well and it's also a good place to remove any masks created … 187 Finish the drawing of a part. This is a good place to draw extra content on the part or remove mask…
|
D | event.md | 47 ## Remove event(s) from an object 147 - add/remove styles to/from an object if a limit is exceeded, etc
|
/lvgl-latest/tests/unity/ |
D | generate_test_runner.rb | 125 …source_scrubbed = source_scrubbed.gsub(/\/\/(?:.+\/\*|\*(?:$|[^\/])).*$/, '') # remove line comme… 126 …source_scrubbed = source_scrubbed.gsub(/\/\*.*?\*\//m, '') # remove block comm… 127 …source_scrubbed = source_scrubbed.gsub(/\/\/.*$/, '') # remove line comme… 182 # remove comments (block and line, in three steps to ensure correct precedence) 183 …source.gsub!(/\/\/(?:.+\/\*|\*(?:$|[^\/])).*$/, '') # remove line comments that comment out the s… 184 source.gsub!(/\/\*.*?\*\//m, '') # remove block comments 185 source.gsub!(/\/\/.*$/, '') # remove line comments (all that remain)
|
/lvgl-latest/examples/get_started/ |
D | lv_example_get_started_2.py | 36 # Remove the styles coming from the theme 38 # so lv_obj_remove_style_all will remove the set size and position too 39 btn.remove_style_all() # Remove the styles coming from the theme 51 btn2.remove_style_all() # Remove the styles coming from the theme
|
D | lv_example_get_started_2.c | 54 /* Remove the styles coming from the theme in lv_example_get_started_2() 56 * so lv_obj_remove_style_all will remove the set size and position too */ in lv_example_get_started_2() 70 lv_obj_remove_style_all(btn2); /*Remove the styles coming from the theme*/ in lv_example_get_started_2()
|
/lvgl-latest/env_support/cmsis-pack/ |
D | README.md | 18 remove the misleading guide above this code segment. 44 4. Remove macro definitions for 131 9. Remove all content in `DEMO USAGE` section but keep the following: 148 10. Thoroughly remove the `3rd party libraries` section.
|
/lvgl-latest/src/widgets/ |
D | lv_objx_templ.c | 7 * TODO Remove these instructions 11 * You can remove the defined() clause from the #if statement below. This exists because 71 * Add/remove functions 75 * New object specific "add" or "remove" functions come here
|
D | lv_objx_templ.h | 7 * TODO Remove these instructions 56 * Add/remove functions
|
/lvgl-latest/src/misc/ |
D | lv_ll.c | 149 * Remove the node 'node_p' from 'll_p' linked list. 188 * Remove and free all elements from a linked list. The list remain valid but become empty. 338 /*It's much easier to remove from the list and add again*/ in _lv_ll_move_before()
|
D | lv_ll.h | 72 * Remove the node 'node_p' from 'll_p' linked list. 80 * Remove and free all elements from a linked list. The list remain valid but become empty.
|
/lvgl-latest/scripts/ |
D | Doxyfile | 672 # will remove the Files entry from the Quick Index and from the Folder Tree View 679 # page. This will remove the Namespaces entry from the Quick Index and from the 903 # Note that the filter must not add or remove lines; it is applied before the 1470 # doxygen run you need to manually remove any form_*.png images from the HTML 2075 # remove all references to function-like macros that are alone on a line, have 2450 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot
|
/lvgl-latest/.github/workflows/ |
D | close_old_issues.yml | 15 … 'This issue is stale because it has been open 14 days with no activity. Remove stale label or com… 21 Remove the "stale" label or comment else this will be closed in 7 days.
|
/lvgl-latest/examples/widgets/textarea/ |
D | lv_example_textarea_3.py | 9 # if there are more than 2 digits before the colon, remove the last one entered 13 # if there are more than 3 digits after the ":" remove the last one entered
|
/lvgl-latest/docs/widgets/extra/ |
D | keyboard.md | 58 … the button pressing, map changing, the assigned text area, etc. You can remove it and replace it … 62 …In 8.0 and newer, adding an event handler to the keyboard does not remove the default event handle…
|
/lvgl-latest/tests/src/test_cases/ |
D | test_bar.c | 66 /* FIXME: Remove wait */ in test_bar_should_update_indicator_right_coordinate_based_on_bar_value() 122 /* FIXME: Remove wait */ in test_bar_rtl_should_update_indicator_left_coordinate_based_on_bar_value()
|
/lvgl-latest/src/hal/ |
D | lv_hal_indev.c | 130 * Remove the provided input device. Make sure not to use the provided input device afterwards anymo… 140 /*Remove the input device from the list*/ in lv_indev_delete()
|
12345