Searched refs:LV_PART_CURSOR (Results 1 – 10 of 10) sorted by relevance
/lvgl-latest/src/widgets/ |
D | lv_textarea.c | 1030 uint32_t blink_time = lv_obj_get_style_anim_time(obj, LV_PART_CURSOR); in start_cursor_blink() 1099 lv_coord_t border_width = lv_obj_get_style_border_width(obj, LV_PART_CURSOR); in refr_cursor_area() 1100 lv_coord_t top = lv_obj_get_style_pad_top(obj, LV_PART_CURSOR) + border_width; in refr_cursor_area() 1101 lv_coord_t bottom = lv_obj_get_style_pad_bottom(obj, LV_PART_CURSOR) + border_width; in refr_cursor_area() 1102 lv_coord_t left = lv_obj_get_style_pad_left(obj, LV_PART_CURSOR) + border_width; in refr_cursor_area() 1103 lv_coord_t right = lv_obj_get_style_pad_right(obj, LV_PART_CURSOR) + border_width; in refr_cursor_area() 1304 lv_obj_init_draw_rect_dsc(obj, LV_PART_CURSOR, &cur_dsc); in draw_cursor() 1317 lv_coord_t border_width = lv_obj_get_style_border_width(obj, LV_PART_CURSOR); in draw_cursor() 1318 lv_coord_t left = lv_obj_get_style_pad_left(obj, LV_PART_CURSOR) + border_width; in draw_cursor() 1319 lv_coord_t top = lv_obj_get_style_pad_top(obj, LV_PART_CURSOR) + border_width; in draw_cursor() [all …]
|
/lvgl-latest/src/extra/themes/basic/ |
D | lv_theme_basic.c | 278 lv_obj_add_style(obj, &styles->dark, LV_PART_CURSOR); in theme_apply() 343 lv_obj_add_style(obj, &styles->ta_cursor, LV_PART_CURSOR | LV_STATE_FOCUSED); in theme_apply() 383 lv_obj_add_style(obj, &styles->dark, LV_PART_CURSOR); in theme_apply()
|
/lvgl-latest/src/core/ |
D | lv_obj.h | 76 …LV_PART_CURSOR = 0x070000, /**< Mark a specific place e.g. for text area's cursor or on a … enumerator
|
/lvgl-latest/docs/widgets/core/ |
D | textarea.md | 15 - `LV_PART_CURSOR` Marks the position where the characters are inserted. The cursor's area is alway… 16 …n be created by adding a background color and background opacity to `LV_PART_CURSOR`'s style. The …
|
/lvgl-latest/src/extra/themes/mono/ |
D | lv_theme_mono.c | 355 lv_obj_add_style(obj, &styles->card, LV_PART_CURSOR); in theme_apply() 410 lv_obj_add_style(obj, &styles->ta_cursor, LV_PART_CURSOR | LV_STATE_FOCUSED); in theme_apply() 465 lv_obj_add_style(obj, &styles->inv, LV_PART_CURSOR); in theme_apply()
|
/lvgl-latest/docs/widgets/extra/ |
D | chart.md | 21 - `LV_PART_CURSOR` *Line* properties are used to style the cursors. `width`, `height`, `bg_color` … 156 - `part`: `LV_PART_CURSOR`
|
/lvgl-latest/src/extra/themes/default/ |
D | lv_theme_default.c | 927 lv_obj_add_style(obj, &styles->chart_series, LV_PART_CURSOR); in theme_apply() 1001 lv_obj_add_style(obj, &styles->ta_cursor, LV_PART_CURSOR | LV_STATE_FOCUSED); in theme_apply() 1117 lv_obj_add_style(obj, &styles->bg_color_primary, LV_PART_CURSOR); in theme_apply()
|
/lvgl-latest/src/extra/widgets/chart/ |
D | lv_chart.c | 1285 lv_obj_init_draw_line_dsc(obj, LV_PART_CURSOR, &line_dsc_ori); in draw_cursors() 1295 lv_coord_t point_w = lv_obj_get_style_width(obj, LV_PART_CURSOR) / 2; in draw_cursors() 1296 lv_coord_t point_h = lv_obj_get_style_width(obj, LV_PART_CURSOR) / 2; in draw_cursors() 1302 part_draw_dsc.part = LV_PART_CURSOR; in draw_cursors()
|
/lvgl-latest/docs/overview/ |
D | object.md | 193 - `LV_PART_CURSOR` Mark a specific place e.g. text area's or chart's cursor
|
D | style.md | 116 - `LV_PART_CURSOR` Mark a specific place e.g. text area's or chart's cursor
|