feat(keyboard): add cursor mode for text navigation and editing

This commit is contained in:
pablohc
2026-04-15 11:50:43 +02:00
committed by jpirnay
parent 7108fadd63
commit 226e8cf4ed
2 changed files with 130 additions and 32 deletions
@@ -48,6 +48,13 @@ class KeyboardEntryActivity : public Activity {
bool confirmHeld = false;
bool confirmLongHandled = false;
bool cursorMode = false;
size_t cursorPos = 0;
bool upHeld = false;
bool upLongHandled = false;
bool downHeld = false;
bool downLongHandled = false;
void onComplete(std::string text);
void onCancel();