Searched refs:is_rtl (Results 1 – 5 of 5) sorted by relevance
/lvgl-latest/src/misc/ |
D | lv_bidi_private.h | 61 uint32_t visual_pos, bool * is_rtl); 76 uint32_t logical_pos, bool * is_rtl);
|
D | lv_bidi.c | 25 #define SET_RTL_POS(x, is_rtl) (GET_POS(x) | ((is_rtl)? 0x8000: 0)) argument 126 uint32_t visual_pos, bool * is_rtl) in lv_bidi_get_logical_pos() argument 142 if(is_rtl) *is_rtl = IS_RTL_POS(pos_conv_buf[visual_pos]); in lv_bidi_get_logical_pos() 151 uint32_t logical_pos, bool * is_rtl) in lv_bidi_get_visual_pos() argument 170 if(is_rtl) *is_rtl = IS_RTL_POS(pos_conv_buf[i]); in lv_bidi_get_visual_pos()
|
/lvgl-latest/src/widgets/checkbox/ |
D | lv_checkbox.c | 222 const bool is_rtl = LV_BASE_DIR_RTL == lv_obj_get_style_base_dir(obj, LV_PART_MAIN); in lv_checkbox_draw() local 226 …int32_t bg_p = is_rtl ? lv_obj_get_style_pad_right(obj, LV_PART_MAIN) : lv_obj_get_style_pad_left(… in lv_checkbox_draw() 243 if(is_rtl) { in lv_checkbox_draw() 274 if(is_rtl) { in lv_checkbox_draw()
|
/lvgl-latest/src/widgets/slider/ |
D | lv_slider.c | 374 const bool is_rtl = LV_BASE_DIR_RTL == lv_obj_get_style_base_dir(obj, LV_PART_MAIN); in draw_knob() local 376 const bool is_reversed = slider->bar.val_reversed ^ (is_rtl && is_horizontal); in draw_knob() 480 const bool is_rtl = LV_BASE_DIR_RTL == lv_obj_get_style_base_dir(obj, LV_PART_MAIN); in drag_start() local 482 const bool is_reversed = slider->bar.val_reversed ^ (is_rtl && is_horizontal); in drag_start() 563 const bool is_rtl = LV_BASE_DIR_RTL == lv_obj_get_style_base_dir(obj, LV_PART_MAIN); in update_knob_pos() local 565 const bool is_reversed = slider->bar.val_reversed ^ (is_rtl && is_horizontal); in update_knob_pos()
|
/lvgl-latest/src/widgets/label/ |
D | lv_label.c | 382 bool is_rtl; in lv_label_get_letter_pos() local 384 base_dir, line_char_id, &is_rtl); in lv_label_get_letter_pos() 386 if(is_rtl) visual_char_pos++; in lv_label_get_letter_pos() 521 bool is_rtl; in lv_label_get_letter_on() local 523 … txt_len, lv_obj_get_style_base_dir(obj, LV_PART_MAIN), cid, &is_rtl); in lv_label_get_letter_on() 524 if(is_rtl) logical_pos++; in lv_label_get_letter_on()
|