Jules Aguillon
Jules Aguillon
This would be a nice addition. Anyone interested in implementing it?
@zuobot Sorry for the slow reply! This feature would probably have to be implemented in [KeyEventHandler.java](https://github.com/Julow/Unexpected-Keyboard/blob/master/srcs/juloo.keyboard2/KeyEventHandler.java#L58). Pressing a character keys immediately result in a [`send_text`](https://github.com/Julow/Unexpected-Keyboard/blob/master/srcs/juloo.keyboard2/KeyEventHandler.java#L133). You would certainly need to...
To be clear, this isn't related to https://github.com/Julow/Unexpected-Keyboard/issues/224 ?
This is a wonderful contribution, thanks ! There's is currently no documentation about how to use the app. But if there's ever one, this should be mentioned. This can also...
Added in d2a92795, thanks again ! Some remarks: - Layouts can have more or less than 10 columns. The largest row (accounting for each key `width` and `shift`) defines the...
Documentation would be greatly appreciated ! Thanks for contributing :)
It's possible to add emtpy space on either side of the keyboard (though not on the right without having at least one row touching the right side). Here's an impractical...
Thanks for asking :) The letter indicators are purely decorative, https://github.com/Julow/Unexpected-Keyboard/issues/153. This layout pops up when only numbers are expected, the input box wouldn't accept letters anyway.
This is a good idea! A key is currently represented as an object with two fields: https://github.com/Julow/Unexpected-Keyboard/blob/master/srcs/juloo.keyboard2/KeyValue.java#L130-L133, which makes a 3 words object. Adding anything to this object will add...
This can be implemented by adding more cases to this function: https://github.com/Julow/Unexpected-Keyboard/blob/master/srcs/juloo.keyboard2/KeyModifier.java#L387 A related issue is open: https://github.com/Julow/Unexpected-Keyboard/issues/109