On this page:
menu:  can-restore<%>
restore-keybinding
menu:  can-restore-mixin
menu:  can-restore-underscore<%>
erase-underscores
restore-underscores
menu:  can-restore-underscore-mixin
menu:  can-restore-menu-item%
menu:  can-restore-checkable-menu-item%
menu:  can-restore-underscore-menu%

20 Menu🔗ℹ

Classes created with this mixin remember their keybindings so the keybindings can be removed and then restored.

method

(send a-menu:can-restore restore-keybinding)  void?

Sets the keyboard shortcut to the setting it had when the class was created.

mixin

menu:can-restore-mixin : (class? . -> . class?)

  argument extends/implements: selectable-menu-item<%>
  result implements: menu:can-restore<%>

These menus can save and restore the underscores (indicated via the & characters in the original labels) in their labels.
If the preference 'framework:menu-bindings is #f, calls erase-underscores during initialization.

method

(send a-menu:can-restore-underscore erase-underscores)  void?

Erases the underscores in the label of this menu, but remembers them so they can be restores with restore-underscores.

method

(send a-menu:can-restore-underscore restore-underscores)

  void?
Restores underscores in the menu’s label to their original state.

mixin

menu:can-restore-underscore-mixin : (class? . -> . class?)

  argument extends/implements: labelled-menu-item<%>
  result implements: menu:can-restore-underscore<%>