abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/Pointers.java
AgeCommit message (Collapse)AuthorFilesLines
2022-05-08Better handling of removed keys and swipe getureJules Aguillon1-13/+35
The "closest key" logic must be careful not to reveal keys removed by a modifier. Must check [_handler.onPointerSwipe] for every candidate values. [selected_value] is changed back to [selected_direction]. This adds a new bug: When the direction change, the selected value might not change but a vibration will be triggered anyway.
2022-05-08Improve nearest key computationJules Aguillon1-3/+3
getAtDirection was too hard to maintain and might contain bugs. Change slightly the meaning of directions and implement a the nearest key calculation as a loop.
2022-05-08only vibrate when the swipe key changesRodrigo Batista de Moraes1-21/+28
2022-05-08use the closest swipe key on swipeRodrigo Batista de Moraes1-13/+16
fix a direction
2022-05-01Fix latched pointers accumulating on the same keyJules Aguillon1-3/+6
It was possible to latch and lock the same modifier several time at the same time independently. Remove that.
2022-04-30Fix modifiers not cleared when presses overlapJules Aguillon1-4/+22
When typing fast, a second key might be pressed before the first is released. Clearing modifiers earlier would prevent this but would break modifiers placed in corners (especially the accent keys). Instead, don't take latched modifiers into account when registering the second press. A new flag is needed to not interfere with holding modifers, which is merged with the norepeat flag.
2022-04-30Record activated modifiers on key downJules Aguillon1-11/+17
The View no longer keeps flags for something other than rendering.
2022-03-19Allow modifiers to hide keysJules Aguillon1-29/+47
Modifiers can temporarily remove a key from the layout by returning 'null'. Make sure pointer handling code handle these modified keys gracefully and doesn't trigger a key event and a vibration for the removed key.
2022-03-17Avoid ghost touches while holding modulated keysJules Aguillon1-0/+15
On some devices, bogus touch events can be sent while holding a key. With modulated keys, it can happens on top of other keys. Ignore every new pointers when a modulated key is pressed.
2022-03-15Handle CANCEL touch eventsJules Aguillon1-0/+10
Handling this event is part of the API but was never done. This caused unstoppable key-repeat. This event isn't common, the only way I found on Android 10 is to switch to the emoji keyboard while holding a key. Some apps might cause this event more often.
2022-03-13Fix crash since 2ea256eJules Aguillon1-1/+1
2022-03-12Fix inconsistent highlighting of lockable keysJules Aguillon1-1/+1
Pointers.getKeyFlags might receive a different KeyValue than what's stored in the pointer due to caching. Compare names instead.
2022-02-22Tweak repeat timing for modulated keysJules Aguillon1-3/+11
Make modulated keys repeat twice as slow by default and start repeating twice as early.
2022-02-21Improve modulated key repeatJules Aguillon1-9/+29
Change the formula: don't use an external constant, add a state. It's now the ratio between where the finger is at the first repeat and where it is now. Keep the repeat going when swiping into an other key. Currently only for arrows: It's now possible to go from an arrow to an other without waiting again for the key repeat timeout. The backspace and delete keys don't work well with this.
2022-02-20Move pointer handling code to its own classJules Aguillon1-0/+262
Separate the concerns and have a clearer interface between the two parts of the code.