Lines Matching refs:label

22     lv_obj_t * label = lv_label_create(lv_screen_active());  in label_create()  local
23 lv_label_set_text_fmt(label, "%s: the quick brown fox jumps over the lazy dog", text_base); in label_create()
25 lv_obj_set_style_text_font(label, font, 0); in label_create()
26 if(style) lv_obj_add_style(label, style, 0); in label_create()
28 return label; in label_create()
85 lv_obj_t * label = lv_label_create(lv_screen_active()); in decor_label_create() local
86 lv_label_set_text(label, "Hi,\nTesting the\nlabels."); in decor_label_create()
87 lv_obj_set_style_text_decor(label, decor, 0); in decor_label_create()
88 lv_obj_set_style_text_color(label, color, 0); in decor_label_create()
89 lv_obj_set_style_text_opa(label, opa, 0); in decor_label_create()
90 lv_obj_set_style_text_align(label, align, 0); in decor_label_create()
91 lv_obj_set_style_bg_color(label, sel_bg_color, LV_PART_SELECTED); in decor_label_create()
92 lv_obj_set_style_text_color(label, sel_color, LV_PART_SELECTED); in decor_label_create()
93 lv_label_set_text_selection_start(label, 10); in decor_label_create()
94 lv_label_set_text_selection_end(label, 19); in decor_label_create()
96 return label; in decor_label_create()
102 lv_obj_t * label; in all_decor_labels_create() local
103 label = decor_label_create(decor, LV_TEXT_ALIGN_LEFT, LV_OPA_COVER); in all_decor_labels_create()
104 lv_obj_add_flag(label, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK); in all_decor_labels_create()
106 label = decor_label_create(decor, LV_TEXT_ALIGN_CENTER, LV_OPA_COVER); in all_decor_labels_create()
107 label = decor_label_create(decor, LV_TEXT_ALIGN_RIGHT, LV_OPA_COVER); in all_decor_labels_create()
109 label = decor_label_create(decor, LV_TEXT_ALIGN_LEFT, LV_OPA_50); in all_decor_labels_create()
110 label = decor_label_create(decor, LV_TEXT_ALIGN_CENTER, LV_OPA_50); in all_decor_labels_create()
111 label = decor_label_create(decor, LV_TEXT_ALIGN_RIGHT, LV_OPA_50); in all_decor_labels_create()
131 lv_obj_t * label = lv_label_create(lv_screen_active()); in test_label_selection_and_recolor() local
132 lv_label_set_recolor(label, true); in test_label_selection_and_recolor()
133 lv_label_set_text(label, "Hi, Testing the #00ff00 colored labels.#"); in test_label_selection_and_recolor()
134 lv_obj_set_style_text_decor(label, decor, 0); in test_label_selection_and_recolor()
135 lv_obj_set_style_text_color(label, color, 0); in test_label_selection_and_recolor()
136 lv_obj_set_style_text_opa(label, LV_OPA_COVER, 0); in test_label_selection_and_recolor()
137 lv_obj_set_style_text_align(label, LV_TEXT_ALIGN_LEFT, 0); in test_label_selection_and_recolor()
138 lv_obj_set_style_bg_color(label, sel_bg_color, LV_PART_SELECTED); in test_label_selection_and_recolor()
139 lv_obj_set_style_text_color(label, sel_color, LV_PART_SELECTED); in test_label_selection_and_recolor()
140 lv_label_set_text_selection_start(label, 10); in test_label_selection_and_recolor()
141 lv_label_set_text_selection_end(label, 25); in test_label_selection_and_recolor()