I'm trying to create a notebook (in JavaFX) where the tabs have shortcuts much like buttons do. So, in the following example, there's a notebook with "Labor", "Parts" and "Tax".
The user can click on the tabs, of course, but they can also click Alt+L, Alt+P, Alt+T to select the labor, parts and tax panes respectively.
Looking at the docs, it appears the standard shortcut behavior comes from the Labeled class, from which Tab does not descend. How do I get this behavior into my tabbed-pane tabs?
EDIT: To be more specific, I'm looking for the visual effect that matches the existing behavior and control code which does not require the controlling code to know what the hotkeys are.
So, as with buttons, the user presses the meta-key (CTRL, ALT, OPT, whatever) and the appropriate character underlines itself, when they press the key, the parent would probably have to search the text of the tabs to know which one to select.
