Searched refs:LV_PART_SELECTED (Results 1 – 16 of 16) sorted by relevance
/lvgl-3.5.0/examples/widgets/roller/ |
D | lv_example_roller_2.c | 33 lv_obj_add_style(roller, &style_sel, LV_PART_SELECTED); in lv_example_roller_2() 43 lv_obj_add_style(roller, &style_sel, LV_PART_SELECTED); in lv_example_roller_2() 53 lv_obj_add_style(roller, &style_sel, LV_PART_SELECTED); in lv_example_roller_2()
|
D | lv_example_roller_3.c | 70 lv_obj_set_style_bg_opa(roller1, LV_OPA_TRANSP, LV_PART_SELECTED); in lv_example_roller_3() 73 lv_obj_set_style_text_font(roller1, &lv_font_montserrat_22, LV_PART_SELECTED); in lv_example_roller_3()
|
/lvgl-3.5.0/src/extra/themes/basic/ |
D | lv_theme_basic.c | 289 lv_obj_add_style(obj, &styles->dark, LV_PART_SELECTED); in theme_apply() 300 lv_obj_add_style(obj, &styles->light, LV_PART_SELECTED); in theme_apply() 301 lv_obj_add_style(obj, &styles->dark, LV_PART_SELECTED | LV_STATE_CHECKED); in theme_apply()
|
/lvgl-3.5.0/src/widgets/ |
D | lv_roller.c | 461 lv_obj_init_draw_rect_dsc(obj, LV_PART_SELECTED, &sel_dsc); in draw_main() 470 lv_obj_init_draw_label_dsc(obj, LV_PART_SELECTED, &label_dsc); in draw_main() 578 const lv_font_t * font_sel = lv_obj_get_style_text_font(obj, LV_PART_SELECTED); in get_sel_area() 769 const lv_font_t * font = lv_obj_get_style_text_font(obj, LV_PART_SELECTED); in get_selected_label_width() 770 lv_coord_t letter_space = lv_obj_get_style_text_letter_space(obj, LV_PART_SELECTED); in get_selected_label_width()
|
D | lv_dropdown.c | 937 const lv_font_t * font = lv_obj_get_style_text_font(list_obj, LV_PART_SELECTED); in draw_box() 938 lv_coord_t line_space = lv_obj_get_style_text_line_space(list_obj, LV_PART_SELECTED); in draw_box() 954 lv_obj_init_draw_rect_dsc(list_obj, LV_PART_SELECTED, &sel_rect); in draw_box() 976 lv_obj_init_draw_label_dsc(list_obj, LV_PART_SELECTED, &label_dsc); in draw_box_label() 979 … LV_PART_SELECTED); /*Line space should come from the list*/ in draw_box_label()
|
D | lv_label.c | 818 label_draw_dsc.sel_color = lv_obj_get_style_text_color_filtered(obj, LV_PART_SELECTED); in draw_main() 819 label_draw_dsc.sel_bg_color = lv_obj_get_style_bg_color(obj, LV_PART_SELECTED); in draw_main()
|
/lvgl-3.5.0/src/core/ |
D | lv_obj.h | 73 LV_PART_SELECTED = 0x040000, /**< Indicate the currently selected option or section*/ enumerator
|
/lvgl-3.5.0/docs/widgets/core/ |
D | roller.md | 10 - `LV_PART_SELECTED` The selected option in the middle. Besides the typical background properties i…
|
D | dropdown.md | 26 - `LV_PART_SELECTED` Refers to the currently pressed, checked or pressed+checked option. Also uses …
|
D | textarea.md | 14 - `LV_PART_SELECTED` Determines the style of the [selected text](/widgets/core/label.html#text-sele…
|
D | label.md | 9 - `LV_PART_SELECTED` Tells the style of the [selected text](#text-selection). Only `text_color` and…
|
/lvgl-3.5.0/src/extra/themes/mono/ |
D | lv_theme_mono.c | 367 lv_obj_add_style(obj, &styles->inv, LV_PART_SELECTED); in theme_apply() 384 lv_obj_add_style(obj, &styles->inv, LV_PART_SELECTED | LV_STATE_CHECKED); in theme_apply() 385 lv_obj_add_style(obj, &styles->pr, LV_PART_SELECTED | LV_STATE_PRESSED); in theme_apply()
|
/lvgl-3.5.0/src/extra/themes/default/ |
D | lv_theme_default.c | 944 lv_obj_add_style(obj, &styles->bg_color_primary, LV_PART_SELECTED); in theme_apply() 966 lv_obj_add_style(obj, &styles->bg_color_white, LV_PART_SELECTED); in theme_apply() 967 lv_obj_add_style(obj, &styles->bg_color_primary, LV_PART_SELECTED | LV_STATE_CHECKED); in theme_apply() 968 lv_obj_add_style(obj, &styles->pressed, LV_PART_SELECTED | LV_STATE_PRESSED); in theme_apply()
|
/lvgl-3.5.0/tests/src/test_cases/ |
D | test_dropdown.c | 361 lv_obj_set_style_bg_color(list, lv_color_hex3(0xf00), LV_PART_SELECTED | LV_STATE_CHECKED); in test_dropdown_render_1()
|
/lvgl-3.5.0/docs/overview/ |
D | object.md | 190 - `LV_PART_SELECTED` Indicate the currently selected option or section
|
D | style.md | 113 - `LV_PART_SELECTED` Indicate the currently selected option or section
|