Home
last modified time | relevance | path

Searched refs:LV_LABEL_LONG_MODE_SCROLL (Results 1 – 6 of 6) sorted by relevance

/lvgl-latest/src/others/xml/parsers/
Dlv_xml_label_parser.c70 if(lv_streq("scroll", txt)) return LV_LABEL_LONG_MODE_SCROLL; in long_mode_text_to_enum_value()
/lvgl-latest/src/
Dlv_api_map_v9_1.h88 #define LV_LABEL_LONG_SCROLL LV_LABEL_LONG_MODE_SCROLL
/lvgl-latest/src/widgets/label/
Dlv_label.h51 LV_LABEL_LONG_MODE_SCROLL, /**< Keep the size and roll the text back and forth*/ enumerator
Dlv_label.c232 if(long_mode == LV_LABEL_LONG_MODE_SCROLL || long_mode == LV_LABEL_LONG_MODE_SCROLL_CIRCULAR || in lv_label_set_long_mode()
845 …if((label->long_mode == LV_LABEL_LONG_MODE_SCROLL || label->long_mode == LV_LABEL_LONG_MODE_SCROLL… in draw_main()
866 …if(label->long_mode == LV_LABEL_LONG_MODE_SCROLL || label->long_mode == LV_LABEL_LONG_MODE_SCROLL_… in draw_main()
908 case LV_LABEL_LONG_MODE_SCROLL: in overwrite_anim_property()
960 if(label->long_mode == LV_LABEL_LONG_MODE_SCROLL) { in lv_label_refr_text()
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_obj_property.c305 prop.num = LV_LABEL_LONG_MODE_SCROLL; in test_label_properties()
307 TEST_ASSERT_EQUAL_INT(LV_LABEL_LONG_MODE_SCROLL, lv_label_get_long_mode(obj)); in test_label_properties()
308 …TEST_ASSERT_EQUAL_INT(LV_LABEL_LONG_MODE_SCROLL, lv_obj_get_property(obj, LV_PROPERTY_LABEL_LONG_M… in test_label_properties()
Dtest_label.c648 lv_label_set_long_mode(label1, LV_LABEL_LONG_MODE_SCROLL); in test_label_scroll_mid_update()