Home
last modified time | relevance | path

Searched refs:LV_DIR_BOTTOM (Results 1 – 14 of 14) sorted by relevance

/lvgl-latest/examples/widgets/dropdown/
Dlv_example_dropdown_2.c21 lv_dropdown_set_dir(dd, LV_DIR_BOTTOM); in lv_example_dropdown_2()
/lvgl-latest/src/misc/
Dlv_area.h83 LV_DIR_BOTTOM = (1 << 3), enumerator
85 LV_DIR_VER = LV_DIR_TOP | LV_DIR_BOTTOM,
/lvgl-latest/examples/widgets/tileview/
Dlv_example_tileview_1.c14 lv_obj_t * tile1 = lv_tileview_add_tile(tv, 0, 0, LV_DIR_BOTTOM); in lv_example_tileview_1()
/lvgl-latest/examples/widgets/chart/
Dlv_example_chart_6.c72 …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/
Dlv_tabview.c209 case LV_DIR_BOTTOM: in lv_tabview_constructor()
240 case LV_DIR_BOTTOM: in lv_tabview_constructor()
/lvgl-latest/src/widgets/
Dlv_dropdown.c474 (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/
Ddropdown.md57 The list can be created on any side. The default `LV_DIR_BOTTOM` can be modified by `lv_dropdown_se…
/lvgl-latest/src/core/
Dlv_indev_scroll.c98 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()
Dlv_obj_scroll.c791 if((scroll_dir & LV_DIR_BOTTOM) == 0 && y_scroll > 0) y_scroll = 0; in scroll_area_into_view()
Dlv_indev.c1156 proc->types.pointer.gesture_dir = LV_DIR_BOTTOM; in indev_gesture()
/lvgl-latest/tests/src/test_cases/
Dtest_dropdown.c346 TEST_ASSERT_EQUAL(LV_DIR_BOTTOM, lv_dropdown_get_dir(dd3)); in test_dropdown_render_1()
/lvgl-latest/docs/overview/
Dindev.md50 case LV_DIR_BOTTOM:
Dscroll.md77 - `LV_DIR_BOTTOM` only scroll down
/lvgl-latest/src/extra/widgets/chart/
Dlv_chart.c1367 p2.y = cursor->dir & LV_DIR_BOTTOM ? obj->coords.y2 : cy; in draw_cursors()