
6 Creating Menus
menu-item class lets you create individual menu items. These items can be passed to menu-components or menus via the:items keyword. Using this class, you can assign different callbacks to different menu items.
(setq test (make-instance 'menu-item
                            :title "Test"
                            :callback 'test-callback))
(setq hello (make-instance 'menu-item
                            :title "Hello"
                            :callback 'hello))
(setq group (make-instance 'menu-component
                            :items (list test hello)))
 
Figure 6.4 Individual menu items
 
 
 
 
 
Generated with Harlequin WebMaker