Searched refs:LV_DIR_BOTTOM (Results 1 – 14 of 14) sorted by relevance
/lvgl-latest/examples/widgets/dropdown/ |
D | lv_example_dropdown_2.c | 21 lv_dropdown_set_dir(dd, LV_DIR_BOTTOM); in lv_example_dropdown_2()
|
/lvgl-latest/src/misc/ |
D | lv_area.h | 83 LV_DIR_BOTTOM = (1 << 3), enumerator 85 LV_DIR_VER = LV_DIR_TOP | LV_DIR_BOTTOM,
|
/lvgl-latest/examples/widgets/tileview/ |
D | lv_example_tileview_1.c | 14 lv_obj_t * tile1 = lv_tileview_add_tile(tv, 0, 0, LV_DIR_BOTTOM); in lv_example_tileview_1()
|
/lvgl-latest/examples/widgets/chart/ |
D | lv_example_chart_6.c | 72 …cursor = lv_chart_add_cursor(chart, lv_palette_main(LV_PALETTE_BLUE), LV_DIR_LEFT | LV_DIR_BOTTOM); in lv_example_chart_6()
|
/lvgl-latest/src/extra/widgets/tabview/ |
D | lv_tabview.c | 209 case LV_DIR_BOTTOM: in lv_tabview_constructor() 240 case LV_DIR_BOTTOM: in lv_tabview_constructor()
|
/lvgl-latest/src/widgets/ |
D | lv_dropdown.c | 474 (dropdown->dir == LV_DIR_TOP || dropdown->dir == LV_DIR_BOTTOM)) { in lv_dropdown_open() 488 if(dropdown->dir == LV_DIR_BOTTOM) { in lv_dropdown_open() 505 dir = LV_DIR_BOTTOM; in lv_dropdown_open() 519 …if(dir == LV_DIR_BOTTOM) lv_obj_align_to(dropdown->list, dropdown_obj, LV_ALIGN_OUT_BOTTOM_LEF… in lv_dropdown_open() 602 dropdown->dir = LV_DIR_BOTTOM; in lv_dropdown_constructor()
|
/lvgl-latest/docs/widgets/core/ |
D | dropdown.md | 57 The list can be created on any side. The default `LV_DIR_BOTTOM` can be modified by `lv_dropdown_se…
|
/lvgl-latest/src/core/ |
D | lv_indev_scroll.c | 98 if((scroll_dir & LV_DIR_BOTTOM) == 0 && diff_y < 0) diff_y = 0; in _lv_indev_scroll_handler() 325 if((scroll_dir & LV_DIR_BOTTOM) == 0) down_en = false; in find_scroll_obj()
|
D | lv_obj_scroll.c | 791 if((scroll_dir & LV_DIR_BOTTOM) == 0 && y_scroll > 0) y_scroll = 0; in scroll_area_into_view()
|
D | lv_indev.c | 1156 proc->types.pointer.gesture_dir = LV_DIR_BOTTOM; in indev_gesture()
|
/lvgl-latest/tests/src/test_cases/ |
D | test_dropdown.c | 346 TEST_ASSERT_EQUAL(LV_DIR_BOTTOM, lv_dropdown_get_dir(dd3)); in test_dropdown_render_1()
|
/lvgl-latest/docs/overview/ |
D | indev.md | 50 case LV_DIR_BOTTOM:
|
D | scroll.md | 77 - `LV_DIR_BOTTOM` only scroll down
|
/lvgl-latest/src/extra/widgets/chart/ |
D | lv_chart.c | 1367 p2.y = cursor->dir & LV_DIR_BOTTOM ? obj->coords.y2 : cy; in draw_cursors()
|