Home
last modified time | relevance | path

Searched refs:textarea (Results 1 – 15 of 15) sorted by relevance

/lvgl-latest/tests/src/test_cases/
Dtest_textarea.c7 static lv_obj_t * textarea = NULL; variable
14 textarea = lv_textarea_create(active_screen); in setUp()
24 TEST_ASSERT(lv_textarea_get_cursor_click_pos(textarea)); in test_textarea_should_have_valid_documented_defualt_values()
25 TEST_ASSERT_EQUAL(0U, lv_textarea_get_one_line(textarea)); in test_textarea_should_have_valid_documented_defualt_values()
27 TEST_ASSERT_EQUAL_STRING(textarea_default_text, lv_textarea_get_placeholder_text(textarea)); in test_textarea_should_have_valid_documented_defualt_values()
28 TEST_ASSERT_EQUAL_STRING(textarea_default_text, lv_textarea_get_text(textarea)); in test_textarea_should_have_valid_documented_defualt_values()
37 lv_textarea_add_text(textarea, text); in test_textarea_should_return_actual_text_when_password_mode_is_enabled()
38 lv_textarea_set_password_mode(textarea, true); in test_textarea_should_return_actual_text_when_password_mode_is_enabled()
40 TEST_ASSERT_TRUE(lv_textarea_get_password_mode(textarea)); in test_textarea_should_return_actual_text_when_password_mode_is_enabled()
41 TEST_ASSERT_EQUAL_STRING(text, lv_textarea_get_text(textarea)); in test_textarea_should_return_actual_text_when_password_mode_is_enabled()
[all …]
/lvgl-latest/docs/widgets/core/
Dtextarea.md26 - `lv_textarea_add_char(textarea, 'c')`
27 - `lv_textarea_add_text(textarea, "insert this text")`
39 …lete a character from the left of the current cursor position use `lv_textarea_del_char(textarea)`.
40 To delete from the right use `lv_textarea_del_char_forward(textarea)`
44 The cursor position can be modified directly like `lv_textarea_set_cursor_pos(textarea, 10)`.
49 - `lv_textarea_cursor_right(textarea)`
50 - `lv_textarea_cursor_left(textarea)`
51 - `lv_textarea_cursor_up(textarea)`
52 - `lv_textarea_cursor_down(textarea)`
54 If `lv_textarea_set_cursor_click_pos(textarea, true)` is applied the cursor will jump to the positi…
[all …]
Dindex.md22 textarea
Dlabel.md53 …you drag your finger/mouse) is implemented in [Text area](/widgets/core/textarea) and the Label wi…
/lvgl-latest/examples/widgets/textarea/
Dindex.rst5 .. lv_example:: widgets/textarea/lv_example_textarea_1
12 .. lv_example:: widgets/textarea/lv_example_textarea_2
18 .. lv_example:: widgets/textarea/lv_example_textarea_3
Dlv_example_textarea_2.py17 pwd_ta = lv.textarea(lv.scr_act())
31 text_ta = lv.textarea(lv.scr_act())
Dlv_example_textarea_3.py36 ta = lv.textarea(lv.scr_act())
Dlv_example_textarea_1.py16 ta = lv.textarea(lv.scr_act())
/lvgl-latest/examples/widgets/keyboard/
Dlv_example_keyboard_1.py16 ta = lv.textarea(lv.scr_act())
22 ta = lv.textarea(lv.scr_act())
/lvgl-latest/docs/widgets/extra/
Dspinbox.md5 Under the hood the Spinbox is a modified [Text area](/widgets/core/textarea).
8 The parts of the Spinbox are identical to the [Text area](/widgets/core/textarea).
34 See the events of the [Text area](/widgets/core/textarea) too.
Dkeyboard.md7 …r features to realize a virtual keyboard to write texts into a [Text area](/widgets/core/textarea).
29 You can assign a [Text area](/widgets/core/textarea) to the Keyboard to automatically put the click…
/lvgl-latest/docs/overview/
Dindev.md75 For example, if a [Text area](/widgets/core/textarea) is focused and you press some letter on a key…
94 - **LV_KEY_DEL** Delete (E.g. a character on the right in a [Text area](/widgets/core/textarea))
95 - **LV_KEY_BACKSPACE** Delete a character on the left (E.g. in a [Text area](/widgets/core/textarea
96 - **LV_KEY_HOME** Go to the beginning/top (E.g. in a [Text area](/widgets/core/textarea))
97 - **LV_KEY_END** Go to the end (E.g. in a [Text area](/widgets/core/textarea))
Dobject.md4 … [List](/widgets/extra/list), [Chart](/widgets/extra/chart) or [Text area](/widgets/core/textarea).
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.py214 ta = lv.textarea(h, None)
222 ta = lv.textarea(h, ta)
226 ta = lv.textarea(h, None)
/lvgl-latest/docs/
DCHANGELOG.md18 - fix(ime_pinyin): keep cursor in the textarea when a candidate is pressed [`4731`](https://github.…
373 - feat(textarea): make it possible to customize the bullet character [`3388`](https://github.com/lv…
543 - fix(textarea): fix max length handling [`127d8e8`](https://github.com/lvgl/lvgl/commit/127d8e82e3…
563 - fix(theme): in the basic theme show the textarea cursor only in focuses state [`bb03fb1`](https:/…
565 - fix(theme) add disabled style to textarea in the default theme [`00f6759`](https://github.com/lvg…
619 - test(textarea): add unit test [`3074`](https://github.com/lvgl/lvgl/pull/3074)
981 - feat(textarea) remove the need of lv_textarea_set_align [`56ebb1a`](https://github.com/lvgl/lvgl/…
1112 - fix(textarea) style update in oneline mode + improve sroll to cursor [`60d9a5e`](https://github.c…
1147 - fix(textarea) various cursor drawing fixes [`273a0eb`](https://github.com/lvgl/lvgl/commit/273a0e…
1240 - fix(textarea) allow using cursor with not full bg_opa [`c9d3965`](https://github.com/lvgl/lvgl/co…
[all …]