/lvgl-latest/examples/others/observer/ |
D | lv_example_observer_6.c | 67 lv_style_set_bg_color(&styles->style_main, lv_color_hex3(0xfff)); in my_panel_style_observer_cb() 68 lv_style_set_shadow_color(&styles->style_main, lv_color_hex3(0x888)); in my_panel_style_observer_cb() 69 lv_style_set_text_color(&styles->style_main, lv_color_hex3(0x222)); in my_panel_style_observer_cb() 70 lv_style_set_bg_color(&styles->style_scrollbar, lv_color_hex3(0x888)); in my_panel_style_observer_cb() 74 lv_style_set_shadow_color(&styles->style_main, lv_color_hex3(0xaaa)); in my_panel_style_observer_cb() 75 lv_style_set_text_color(&styles->style_main, lv_color_hex3(0xeee)); in my_panel_style_observer_cb() 76 lv_style_set_bg_color(&styles->style_scrollbar, lv_color_hex3(0xaaa)); in my_panel_style_observer_cb() 140 lv_style_set_text_color(&styles->style_main, lv_color_hex3(0xfff)); in my_button_style_observer_cb() 148 lv_style_set_text_color(&styles->style_main, lv_color_hex3(0xfff)); in my_button_style_observer_cb()
|
D | lv_example_observer_5.c | 53 lv_obj_set_style_shadow_color(win, lv_color_hex3(0x888), 0); in fw_update_btn_clicked_event_cb()
|
/lvgl-latest/examples/widgets/roller/ |
D | lv_example_roller_2.c | 24 lv_style_set_bg_color(&style_sel, lv_color_hex3(0xf88)); in lv_example_roller_2() 26 lv_style_set_border_color(&style_sel, lv_color_hex3(0xf00)); in lv_example_roller_2() 38 lv_obj_set_style_bg_color(roller, lv_color_hex3(0x0f0), 0); in lv_example_roller_2() 39 lv_obj_set_style_bg_grad_color(roller, lv_color_hex3(0xafa), 0); in lv_example_roller_2()
|
/lvgl-latest/demos/render/ |
D | lv_demo_render.c | 40 lv_color_t colors[] = {lv_color_hex3(0x000), in fill_obj_create() 41 lv_color_hex3(0xfff), in fill_obj_create() 42 lv_color_hex3(0xf00), in fill_obj_create() 43 lv_color_hex3(0x0f0), in fill_obj_create() 44 lv_color_hex3(0x00f), in fill_obj_create() 45 lv_color_hex3(0xff0), in fill_obj_create() 46 lv_color_hex3(0x0ff), in fill_obj_create() 47 lv_color_hex3(0xf0f), in fill_obj_create() 84 lv_obj_set_style_bg_grad_color(obj, lv_color_hex3(0x888), 0); in fill_cb() 92 lv_obj_set_style_bg_grad_color(obj, lv_color_hex3(0x888), 0); in fill_cb() [all …]
|
/lvgl-latest/tests/src/test_cases/ |
D | test_observer.c | 166 lv_subject_init_color(&subject, lv_color_hex3(0x123)); in test_observer_color() 167 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x123), lv_subject_get_color(&subject)); in test_observer_color() 168 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x123), lv_subject_get_previous_color(&subject)); in test_observer_color() 170 lv_subject_set_color(&subject, lv_color_hex3(0x456)); in test_observer_color() 171 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x456), lv_subject_get_color(&subject)); in test_observer_color() 172 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x123), lv_subject_get_previous_color(&subject)); in test_observer_color() 174 lv_subject_set_color(&subject, lv_color_hex3(0xabc)); in test_observer_color() 175 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0xabc), lv_subject_get_color(&subject)); in test_observer_color() 176 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x456), lv_subject_get_previous_color(&subject)); in test_observer_color() 180 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0xabc), lv_subject_get_color(&subject)); in test_observer_color() [all …]
|
D | test_bindings.c | 255 line_draw_dsc.color = lv_color_hex3(0xCA8); in draw_to_canvas()
|
/lvgl-latest/tests/src/test_cases/draw/ |
D | test_layer_transform.c | 23 lv_obj_set_style_border_color(obj, lv_color_hex3(0xf00), 0); in test_no_residual_border_on_scale_down() 24 lv_obj_set_style_bg_color(obj, lv_color_hex3(0x0f0), 0); in test_no_residual_border_on_scale_down()
|
D | test_draw_layer.c | 23 lv_obj_set_style_bg_color(obj, lv_color_hex3(0xf88), 0); in test_obj_create()
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_bar.c | 335 lv_obj_set_style_bg_color(bar, lv_color_hex3(0x0ff), LV_PART_MAIN); in styled_bar_create() 340 lv_obj_set_style_bg_color(bar, lv_color_hex3(0xf0f), LV_PART_INDICATOR); in styled_bar_create() 341 lv_obj_set_style_bg_grad_color(bar, lv_color_hex3(0x8f8), LV_PART_INDICATOR); in styled_bar_create() 345 lv_obj_set_style_border_color(bar, lv_color_hex3(0x0f0), LV_PART_INDICATOR); in styled_bar_create() 349 lv_obj_set_style_outline_color(bar, lv_color_hex3(0xff0), LV_PART_INDICATOR); in styled_bar_create() 353 lv_obj_set_style_shadow_color(bar, lv_color_hex3(0xf00), LV_PART_INDICATOR); in styled_bar_create()
|
D | test_obj_tree.c | 30 lv_color_t c2 = lv_color_hex3(0x444); in test_obj_tree_2()
|
/lvgl-latest/examples/widgets/canvas/ |
D | lv_example_canvas_4.c | 19 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_4()
|
D | lv_example_canvas_6.c | 18 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_6()
|
D | lv_example_canvas_5.c | 19 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_5()
|
D | lv_example_canvas_7.c | 19 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_7()
|
D | lv_example_canvas_3.c | 20 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_3()
|
D | lv_example_canvas_8.c | 21 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_8()
|
D | lv_example_canvas_1.c | 57 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_1()
|
/lvgl-latest/demos/transform/ |
D | lv_demo_transform.c | 62 lv_style_set_shadow_color(&style_card, lv_color_hex3(0xccc)); in lv_demo_transform() 70 lv_style_set_shadow_color(&style_avatar, lv_color_hex3(0xbbb)); in lv_demo_transform()
|
/lvgl-latest/examples/widgets/slider/ |
D | lv_example_slider_2.c | 20 lv_style_set_bg_color(&style_main, lv_color_hex3(0xbbb)); in lv_example_slider_2()
|
D | lv_example_slider_3.c | 61 label_draw_dsc.color = lv_color_hex3(0x888); in slider_event_cb()
|
/lvgl-latest/demos/flex_layout/ |
D | lv_demo_flex_layout_view_ctrl_pad.c | 175 lv_obj_set_style_outline_color(cont_spinbox, lv_color_hex3(0xddd), LV_PART_MAIN); in spinbox_ctrl_create() 186 lv_style_set_outline_color(&btn_style, lv_color_hex3(0xddd)); in spinbox_ctrl_create() 205 lv_obj_set_style_outline_color(spinbox, lv_color_hex3(0xddd), LV_PART_MAIN); in spinbox_ctrl_create()
|
D | lv_demo_flex_layout_view.c | 69 lv_obj_set_style_shadow_color(obj, lv_color_hex3(0xaaa), 0); in view_create()
|
/lvgl-latest/demos/multilang/ |
D | lv_demo_multilang.c | 188 lv_style_set_shadow_color(&style_card, lv_color_hex3(0xccc)); in lv_demo_multilang() 212 lv_style_set_shadow_color(&style_avatar, lv_color_hex3(0xbbb)); in lv_demo_multilang()
|
/lvgl-latest/src/misc/ |
D | lv_color.h | 319 lv_color_t lv_color_hex3(uint32_t c);
|
/lvgl-latest/demos/music/ |
D | lv_demo_music_list.c | 86 lv_style_set_bg_color(&style_scrollbar, lv_color_hex3(0xeee)); in lv_demo_music_list_create()
|