Home
last modified time | relevance | path

Searched refs:lv_buttonmatrix_get_button_text (Results 1 – 11 of 11) sorted by relevance

/lvgl-latest/examples/widgets/buttonmatrix/
Dlv_example_buttonmatrix_1.c10 const char * txt = lv_buttonmatrix_get_button_text(obj, id); in event_handler()
/lvgl-latest/examples/widgets/textarea/
Dlv_example_textarea_1.c15 … 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/
Dtest_btnmatrix.c285 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/
Dlv_buttonmatrix.h174 const char * lv_buttonmatrix_get_button_text(const lv_obj_t * obj, uint32_t btn_id);
Dlv_buttonmatrix.c315 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/
Dlv_keyboard.c318 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/
Dlv_api_map_v8.h221 #define lv_btnmatrix_get_btn_text lv_buttonmatrix_get_button_text
/lvgl-latest/tests/src/test_cases/
Dtest_bindings.c210 const char * text = lv_buttonmatrix_get_button_text(buttonmatrix, idx); in buttonmatrix_event_cb()
/lvgl-latest/src/others/ime/
Dlv_ime_pinyin.c620 … 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/
Dbuttonmatrix.rst136 :cpp:expr:`lv_buttonmatrix_get_button_text(btn_matrix, button_id)` returns a pointer
/lvgl-latest/src/widgets/calendar/
Dlv_calendar.c271 …const char * txt = lv_buttonmatrix_get_button_text(calendar->btnm, lv_buttonmatrix_get_selected_bu… in lv_calendar_get_pressed_date()