I would like to include customizable keyboard shortcuts in my Java application (the user can change them). Since this is not very unusual request, I was wondering if there exists a library/project that could help me achieve my goal.
Unfortunately I was not able to find anything useful on Google.
Thank you, aZen
Ended up building my own shortcut manager from scratch. This took around 20h.
Shortcuts may be specified as accelerators in instances of
Action
. Less flexibly, shortcuts may be represented byKeyEvent
instances obtained viaKeyListener
. Either may be stored injava.util.Preferences
orjavax.jnlp.BasicService
, as suggested here.I'm unaware of a general purpose library, but this game offers an
RCKeys
dialog to remap keys. It includes the essential functionality to preclude duplicates.