Variable: bubbles-menu
bubbles-menu is a variable defined in bubbles.el.gz.
Value
<nil-6> nil
<nil> nil
Documentation
Menu for bubbles.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(easy-menu-define bubbles-menu bubbles-mode-map
"Menu for `bubbles'."
'("Bubbles"
["Undo last move" bubbles-undo
:enable '(and bubbles--playing (listp buffer-undo-list))]
"---"
("Graphics Theme"
:enable bubbles--playing
["Circles" bubbles-set-graphics-theme-circles
:style radio
:selected (eq bubbles-graphics-theme 'circles)]
["Squares" bubbles-set-graphics-theme-squares
:style radio
:selected (eq bubbles-graphics-theme 'squares)]
["Diamonds" bubbles-set-graphics-theme-diamonds
:style radio
:selected (eq bubbles-graphics-theme 'diamonds)]
["Balls" bubbles-set-graphics-theme-balls
:style radio
:selected (eq bubbles-graphics-theme 'balls)]
["Emacs" bubbles-set-graphics-theme-emacs
:style radio
:selected (eq bubbles-graphics-theme 'emacs)]
["ASCII" bubbles-set-graphics-theme-ascii
:style radio
:selected (eq bubbles-graphics-theme 'ascii)])
("Game Theme"
["Easy" bubbles-set-game-easy
:style radio
:selected (eq bubbles-game-theme 'easy)]
["Medium" bubbles-set-game-medium
:style radio
:selected (eq bubbles-game-theme 'medium)]
["Difficult" bubbles-set-game-difficult
:style radio
:selected (eq bubbles-game-theme 'difficult)]
["Hard" bubbles-set-game-hard
:style radio
:selected (eq bubbles-game-theme 'hard)]
["User defined" bubbles-set-game-userdefined
:style radio
:selected (eq bubbles-game-theme 'user-defined)])
["Edit all settings" bubbles-customize]
["Save all settings" bubbles-save-settings]
"---"
["New game" bubbles]
["Quit" quit-window]))