Searched refs:lv_buttonmatrix_get_button_text (Results 1 – 11 of 11) sorted by relevance
/lvgl-latest/examples/widgets/buttonmatrix/ |
D | lv_example_buttonmatrix_1.c | 10 const char * txt = lv_buttonmatrix_get_button_text(obj, id); in event_handler()
|
/lvgl-latest/examples/widgets/textarea/ |
D | lv_example_textarea_1.c | 15 … const char * txt = lv_buttonmatrix_get_button_text(obj, lv_buttonmatrix_get_selected_button(obj)); in btnm_event_handler()
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_btnmatrix.c | 285 TEST_ASSERT_EQUAL_STRING("A", lv_buttonmatrix_get_button_text(btnm, 0)); in test_button_matrix_get_button_text_works() 286 TEST_ASSERT_EQUAL_STRING("B", lv_buttonmatrix_get_button_text(btnm, 1)); in test_button_matrix_get_button_text_works() 287 TEST_ASSERT_EQUAL_STRING("C", lv_buttonmatrix_get_button_text(btnm, 2)); in test_button_matrix_get_button_text_works() 288 TEST_ASSERT_EQUAL_STRING("D", lv_buttonmatrix_get_button_text(btnm, 3)); in test_button_matrix_get_button_text_works()
|
/lvgl-latest/src/widgets/buttonmatrix/ |
D | lv_buttonmatrix.h | 174 const char * lv_buttonmatrix_get_button_text(const lv_obj_t * obj, uint32_t btn_id);
|
D | lv_buttonmatrix.c | 315 const char * lv_buttonmatrix_get_button_text(const lv_obj_t * obj, uint32_t btn_id) in lv_buttonmatrix_get_button_text() function
|
/lvgl-latest/src/widgets/keyboard/ |
D | lv_keyboard.c | 318 const char * txt = lv_buttonmatrix_get_button_text(obj, btn_id); in lv_keyboard_def_event_cb() 425 return lv_buttonmatrix_get_button_text(obj, btn_id); in lv_keyboard_get_button_text()
|
/lvgl-latest/src/ |
D | lv_api_map_v8.h | 221 #define lv_btnmatrix_get_btn_text lv_buttonmatrix_get_button_text
|
/lvgl-latest/tests/src/test_cases/ |
D | test_bindings.c | 210 const char * text = lv_buttonmatrix_get_button_text(buttonmatrix, idx); in buttonmatrix_event_cb()
|
/lvgl-latest/src/others/ime/ |
D | lv_ime_pinyin.c | 620 … const char * txt = lv_buttonmatrix_get_button_text(kb, lv_buttonmatrix_get_selected_button(kb)); in lv_ime_pinyin_kb_event() 766 const char * txt = lv_buttonmatrix_get_button_text(cand_panel, id); in lv_ime_pinyin_cand_panel_event()
|
/lvgl-latest/docs/details/widgets/ |
D | buttonmatrix.rst | 136 :cpp:expr:`lv_buttonmatrix_get_button_text(btn_matrix, button_id)` returns a pointer
|
/lvgl-latest/src/widgets/calendar/ |
D | lv_calendar.c | 271 …const char * txt = lv_buttonmatrix_get_button_text(calendar->btnm, lv_buttonmatrix_get_selected_bu… in lv_calendar_get_pressed_date()
|