Lines Matching refs:label
39 lv_obj_t * label; in lv_example_style_18() local
49 label = lv_label_create(btn); in lv_example_style_18()
50 lv_label_set_text(label, "Horizontal"); in lv_example_style_18()
51 lv_obj_center(label); in lv_example_style_18()
61 label = lv_label_create(btn); in lv_example_style_18()
62 lv_label_set_text(label, "Vertical"); in lv_example_style_18()
63 lv_obj_center(label); in lv_example_style_18()
71 label = lv_label_create(btn); in lv_example_style_18()
72 lv_label_set_text(label, "Linear"); in lv_example_style_18()
73 lv_obj_center(label); in lv_example_style_18()
81 label = lv_label_create(btn); in lv_example_style_18()
82 lv_label_set_text(label, "Radial"); in lv_example_style_18()
83 lv_obj_center(label); in lv_example_style_18()
90 lv_obj_t * label = lv_label_create(lv_screen_active()); in lv_example_style_18() local
91 lv_obj_set_width(label, LV_PCT(80)); in lv_example_style_18()
92 lv_label_set_text(label, "LV_USE_DRAW_SW_COMPLEX_GRADIENTS is not enabled"); in lv_example_style_18()
93 lv_label_set_long_mode(label, LV_LABEL_LONG_MODE_SCROLL_CIRCULAR); in lv_example_style_18()
94 lv_obj_center(label); in lv_example_style_18()