/lvgl-3.5.0/src/misc/ |
D | lv_bidi.c | 117 if(dir == LV_BASE_DIR_RTL || dir == LV_BASE_DIR_LTR) return dir; in _lv_bidi_detect_base_dir() 228 if(base_dir == LV_BASE_DIR_RTL) { in _lv_bidi_process_paragraph() 313 if(*base_dir == LV_BASE_DIR_RTL) *align = LV_TEXT_ALIGN_RIGHT; in lv_bidi_calculate_align() 347 if(lv_bidi_letter_is_rtl(letter)) return LV_BASE_DIR_RTL; in lv_bidi_get_letter_dir() 448 if(dir == LV_BASE_DIR_LTR || dir == LV_BASE_DIR_RTL) break; in get_next_run() 473 if(run_dir == LV_BASE_DIR_RTL) { in get_next_run() 474 if(base_dir == LV_BASE_DIR_RTL) { in get_next_run() 481 if((next_dir == LV_BASE_DIR_RTL || next_dir == LV_BASE_DIR_LTR) && next_dir != run_dir) { in get_next_run() 643 if(letter_dir == LV_BASE_DIR_LTR || letter_dir == LV_BASE_DIR_RTL) { in bracket_process()
|
D | lv_bidi.h | 35 LV_BASE_DIR_RTL = 0x01, enumerator
|
/lvgl-3.5.0/examples/scroll/ |
D | lv_example_scroll_5.c | 11 lv_obj_set_style_base_dir(obj, LV_BASE_DIR_RTL, 0); in lv_example_scroll_5()
|
/lvgl-3.5.0/examples/layouts/flex/ |
D | lv_example_flex_6.c | 11 lv_obj_set_style_base_dir(cont, LV_BASE_DIR_RTL, 0); in lv_example_flex_6()
|
/lvgl-3.5.0/examples/widgets/label/ |
D | lv_example_label_3.c | 18 lv_obj_set_style_base_dir(rtl_label, LV_BASE_DIR_RTL, 0); in lv_example_label_3()
|
/lvgl-3.5.0/examples/widgets/bar/ |
D | lv_example_bar_5.c | 22 lv_obj_set_style_base_dir(bar_rtl, LV_BASE_DIR_RTL, 0); in lv_example_bar_5()
|
/lvgl-3.5.0/examples/layouts/grid/ |
D | lv_example_grid_6.c | 17 lv_obj_set_style_base_dir(cont, LV_BASE_DIR_RTL, 0); in lv_example_grid_6()
|
/lvgl-3.5.0/src/widgets/ |
D | lv_slider.c | 143 …if((base_dir != LV_BASE_DIR_RTL && p.x > slider->right_knob_area.x2) || (base_dir == LV_BASE_DIR_R… in lv_slider_event() 147 …else if((base_dir != LV_BASE_DIR_RTL && p.x < slider->left_knob_area.x1) || (base_dir == LV_BASE_D… in lv_slider_event() 207 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) == LV_BASE_DIR_RTL) { in lv_slider_event() 338 const bool is_rtl = LV_BASE_DIR_RTL == lv_obj_get_style_base_dir(obj, LV_PART_MAIN); in draw_knob()
|
D | lv_switch.c | 188 if(LV_BASE_DIR_RTL == lv_obj_get_style_base_dir(obj, LV_PART_MAIN)) { in draw_main()
|
D | lv_table.c | 618 bool rtl = lv_obj_get_style_base_dir(obj, LV_PART_MAIN) == LV_BASE_DIR_RTL; in draw_main() 917 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) == LV_BASE_DIR_RTL) { in get_pressed_cell() 986 bool rtl = lv_obj_get_style_base_dir(obj, LV_PART_MAIN) == LV_BASE_DIR_RTL; in get_cell_area()
|
D | lv_label.c | 357 visual_byte_pos = base_dir == LV_BASE_DIR_RTL ? 0 : byte_id - line_start; in lv_label_get_letter_pos() 941 if(base_dir == LV_BASE_DIR_RTL) { in lv_label_refr_text() 1041 if(base_dir == LV_BASE_DIR_RTL) { in lv_label_refr_text()
|
D | lv_bar.c | 340 if(hor && base_dir == LV_BASE_DIR_RTL) { in draw_indic()
|
D | lv_btnmatrix.c | 157 if(base_dir == LV_BASE_DIR_RTL) { in lv_btnmatrix_set_map()
|
D | lv_dropdown.c | 799 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) == LV_BASE_DIR_RTL) symbol_to_left = true; in draw_main()
|
/lvgl-3.5.0/src/ |
D | lv_conf_kconfig.h | 173 # define CONFIG_LV_BIDI_BASE_DIR_DEF LV_BASE_DIR_RTL
|
/lvgl-3.5.0/src/core/ |
D | lv_obj_scroll.c | 167 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) != LV_BASE_DIR_RTL) { in lv_obj_get_scroll_left() 210 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) == LV_BASE_DIR_RTL) { in lv_obj_get_scroll_right() 265 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) != LV_BASE_DIR_RTL) { in lv_obj_scroll_by_bounded() 494 bool rtl = lv_obj_get_style_base_dir(obj, LV_PART_SCROLLBAR) == LV_BASE_DIR_RTL ? true : false; in lv_obj_get_scrollbar_area() 650 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) != LV_BASE_DIR_RTL) { in lv_obj_readjust_scroll()
|
D | lv_obj_pos.c | 187 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) == LV_BASE_DIR_RTL) { in lv_obj_refr_size() 367 … if(lv_obj_get_style_base_dir(base, LV_PART_MAIN) == LV_BASE_DIR_RTL) align = LV_ALIGN_TOP_RIGHT; in lv_obj_align_to() 475 if(lv_obj_get_style_base_dir(parent, LV_PART_MAIN) == LV_BASE_DIR_RTL) { in lv_obj_align_to() 664 … if(lv_obj_get_style_base_dir(parent, LV_PART_MAIN) == LV_BASE_DIR_RTL) align = LV_ALIGN_TOP_RIGHT; in lv_obj_refr_pos() 1009 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) == LV_BASE_DIR_RTL) { in calc_content_width()
|
/lvgl-3.5.0/src/extra/widgets/tabview/ |
D | lv_tabview.c | 156 if(lv_obj_get_style_base_dir(obj, LV_PART_MAIN) != LV_BASE_DIR_RTL) { in lv_tabview_set_act() 336 … if(lv_obj_get_style_base_dir(tv, LV_PART_MAIN) == LV_BASE_DIR_RTL) t = -(p.x - w / 2) / w; in cont_scroll_end_event_cb()
|
/lvgl-3.5.0/tests/src/test_cases/ |
D | test_bar.c | 120 lv_obj_set_style_base_dir(bar, LV_BASE_DIR_RTL, 0); in test_bar_rtl_should_update_indicator_left_coordinate_based_on_bar_value()
|
/lvgl-3.5.0/src/extra/layouts/flex/ |
D | lv_flex.c | 223 bool rtl = lv_obj_get_style_base_dir(cont, LV_PART_MAIN) == LV_BASE_DIR_RTL ? true : false; in flex_update() 448 bool rtl = lv_obj_get_style_base_dir(cont, LV_PART_MAIN) == LV_BASE_DIR_RTL ? true : false; in children_repos()
|
/lvgl-3.5.0/docs/layouts/ |
D | grid.md | 93 If the base direction of the container is set to `LV_BASE_DIR_RTL`, the meaning of `LV_GRID_ALIGN_S…
|
D | flex.md | 95 If the base direction of the container is set the `LV_BASE_DIR_RTL` the meaning of `LV_FLEX_ALIGN_S…
|
/lvgl-3.5.0/src/extra/layouts/grid/ |
D | lv_grid.c | 404 bool rev = lv_obj_get_style_base_dir(cont, LV_PART_MAIN) == LV_BASE_DIR_RTL ? true : false; in calc() 605 if(lv_obj_get_style_base_dir(item, LV_PART_MAIN) == LV_BASE_DIR_RTL) { in item_repos()
|
/lvgl-3.5.0/docs/overview/ |
D | scroll.md | 46 If the base direction of the `LV_PART_SCROLLBAR` is RTL (`LV_BASE_DIR_RTL`) the vertical scrollbar …
|