MCPcopy Create free account
hub / github.com/TactilityProject/Tactility / show_keyboard

Function show_keyboard

Tactility/Source/service/gui/Keyboard.cpp:11–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9namespace tt::service::gui {
10
11static void show_keyboard(lv_event_t* event) {
12 auto service = findService();
13 if (service != nullptr) {
14 lv_obj_t* target = lv_event_get_current_target_obj(event);
15 service->softwareKeyboardShow(target);
16 lv_obj_scroll_to_view(target, LV_ANIM_ON);
17 }
18}
19
20static void hide_keyboard(lv_event_t* event) {
21 auto service = findService();

Callers

nothing calls this directly

Calls 2

softwareKeyboardShowMethod · 0.80
findServiceFunction · 0.70

Tested by

no test coverage detected