Home
last modified time | relevance | path

Searched refs:card (Results 1 – 15 of 15) sorted by relevance

/lvgl-latest/demos/transform/
Dlv_demo_transform.c82 lv_obj_t * card; in lv_demo_transform() local
83 card = card_create(); in lv_demo_transform()
84 lv_obj_set_style_opa(card, LV_OPA_50, 0); in lv_demo_transform()
85 lv_obj_center(card); in lv_demo_transform()
113 lv_obj_t * card = lv_obj_create(lv_screen_active()); in card_create() local
114 lv_obj_add_style(card, &style_card, 0); in card_create()
115 …lv_obj_remove_flag(card, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE | LV_OBJ_FLAG_SCROLL_CHAIN… in card_create()
117 lv_obj_t * avatar = lv_image_create(card); in card_create()
122 lv_obj_t * name = lv_label_create(card); in card_create()
127 lv_obj_t * btn = lv_button_create(card); in card_create()
[all …]
/lvgl-latest/src/themes/mono/
Dlv_theme_mono.c40 lv_style_t card; member
101 style_init_reset(&theme->styles.card); in style_init()
102 lv_style_set_bg_opa(&theme->styles.card, LV_OPA_COVER); in style_init()
103 lv_style_set_bg_color(&theme->styles.card, COLOR_BG); in style_init()
104 lv_style_set_border_color(&theme->styles.card, COLOR_FG); in style_init()
105 lv_style_set_radius(&theme->styles.card, 2); in style_init()
106 lv_style_set_border_width(&theme->styles.card, BORDER_W_NORMAL); in style_init()
107 lv_style_set_pad_all(&theme->styles.card, PAD_DEF); in style_init()
108 lv_style_set_pad_gap(&theme->styles.card, PAD_DEF); in style_init()
109 lv_style_set_text_color(&theme->styles.card, COLOR_FG); in style_init()
[all …]
/lvgl-latest/examples/others/xml/
Dlv_example_xml_1.c45 lv_obj_t * card; in lv_example_xml_1() local
47 card = lv_xml_create(lv_screen_active(), "card", NULL); in lv_example_xml_1()
50 card = lv_xml_create(lv_screen_active(), "motor_card", NULL); in lv_example_xml_1()
51 lv_obj_set_y(card, 90); in lv_example_xml_1()
60 card = lv_xml_create(lv_screen_active(), "card", attrs); in lv_example_xml_1()
/lvgl-latest/tests/src/test_cases/xml/
Dtest_xml_general.c106 lv_obj_t * card; in test_xml_nesting() local
107 card = lv_xml_create(lv_screen_active(), "card", NULL); in test_xml_nesting()
108 card = lv_xml_create(lv_screen_active(), "card", NULL); in test_xml_nesting()
109 lv_obj_set_y(card, 80); in test_xml_nesting()
116 card = lv_xml_create(lv_screen_active(), "card", attrs); in test_xml_nesting()
/lvgl-latest/docs/details/libs/
Darduino_sd.rst8 Once an SD memory card is connected to the SPI interface of the Arduino or Genuino board you can cr…
9 and read/write on them. You can also move through directories on the SD card..
20 You will need to initialize the SD card before LVGL can use it (i.e. :cpp:expr:`SD.begin(0, SPI, 40…
/lvgl-latest/demos/multilang/
Dlv_demo_multilang.c314 lv_obj_t * card = lv_obj_create(cont); in card_create() local
315 lv_obj_add_style(card, &style_card, 0); in card_create()
316 …lv_obj_remove_flag(card, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE | LV_OBJ_FLAG_SCROLL_CHAIN… in card_create()
318 lv_obj_t * avatar = lv_image_create(card); in card_create()
323 lv_obj_t * name = lv_label_create(card); in card_create()
328 lv_obj_t * description = lv_label_create(card); in card_create()
334 lv_obj_t * btn = lv_button_create(card); in card_create()
335 lv_obj_remove_flag(card, LV_OBJ_FLAG_SCROLL_CHAIN_HOR); in card_create()
348 lv_obj_scroll_to_view(card, LV_ANIM_OFF); in card_create()
/lvgl-latest/demos/benchmark/
Dlv_demo_benchmark.c328 lv_obj_t * card = card_create(); in containers_cb() local
329 if(x == 0) lv_obj_add_flag(card, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK); in containers_cb()
330 fall_anim(card, 30); in containers_cb()
352 lv_obj_t * card = card_create(); in containers_with_overlay_cb() local
353 if(x == 0) lv_obj_add_flag(card, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK); in containers_with_overlay_cb()
354 fall_anim(card, 30); in containers_with_overlay_cb()
379 lv_obj_t * card = card_create(); in containers_with_opa_cb() local
380 if(x == 0) lv_obj_add_flag(card, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK); in containers_with_opa_cb()
381 lv_obj_set_style_opa(card, LV_OPA_50, 0); in containers_with_opa_cb()
382 fall_anim(card, 30); in containers_with_opa_cb()
[all …]
/lvgl-latest/src/themes/default/
Dlv_theme_default.c54 lv_style_t card; member
269 style_init_reset(&theme->styles.card); in style_init()
270 lv_style_set_radius(&theme->styles.card, RADIUS_DEFAULT); in style_init()
271 lv_style_set_bg_opa(&theme->styles.card, LV_OPA_COVER); in style_init()
272 lv_style_set_bg_color(&theme->styles.card, theme->color_card); in style_init()
273 lv_style_set_border_color(&theme->styles.card, theme->color_grey); in style_init()
274 lv_style_set_border_width(&theme->styles.card, BORDER_WIDTH); in style_init()
275 lv_style_set_border_post(&theme->styles.card, true); in style_init()
276 lv_style_set_text_color(&theme->styles.card, theme->color_text); in style_init()
277 lv_style_set_pad_all(&theme->styles.card, PAD_DEF); in style_init()
[all …]
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.c1554 lv_obj_t * card = lv_obj_get_parent(scale1); in scale1_indic1_anim_cb() local
1555 lv_obj_t * label = lv_obj_get_child(card, -5); in scale1_indic1_anim_cb()
1602 lv_obj_t * card = lv_obj_get_parent(scale2); in scale2_timer_cb() local
1605 label = lv_obj_get_child(card, -5); in scale2_timer_cb()
1608 label = lv_obj_get_child(card, -3); in scale2_timer_cb()
1611 label = lv_obj_get_child(card, -1); in scale2_timer_cb()
/lvgl-latest/docs/details/integration/os/buildroot/
Dimage_generation.rst174 Insert the SD card into the laptop and check its mount point. It is typically
/lvgl-latest/docs/_static/css/
Dfontawesome.min.css5card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-a…
/lvgl-latest/docs/details/widgets/
Dimage.rst36 - a file stored externally (e.g. on an SD card).
/lvgl-latest/docs/details/other-components/
Dxml.rst20 - XML files can be loaded at runtime (e.g., from an SD card) to change the application build.
/lvgl-latest/docs/details/main-components/
Dfs.rst9 identifier letter. For example, if an SD card is associated with the letter
Dimage.rst47 a standard file system (FAT32 on SD card) or you create your simple file