Next Previous Up Top Contents Index

8.11 DUIM-Gadgets Module

<radio-menu-box>

Open abstract instantiable class

Summary

The class of grouped radio buttons that can appear in menus.

Superclasses

<menu-box> <action-gadget>

Init-keywords

None.

Library

duim-gadgets

Module

duim-gadgets

Description

The class of grouped radio buttons that can appear in menus.

Figure 8.30 A radio menu box

Internally, this class maps into the menu Windows control.

Operations

None.

Example

The following example creates a menu that shows an example of a radio menu box, as well as several other menu gadgets.

contain(make(<menu>, 
             label: "Hello...", 
             children: vector
                         (make(<menu-button>, 
                               label: "World"),
                          make(<menu-button>, 
                               label: "Bonzo"),
                          make(<radio-menu-box>, 
                               items: 
                                 #("You", "All",
                                   "Everyone")),
                          make(<menu>, 
                               label: "Others",
                          children: 
                            vector
                              (make(<check-menu-box>,
                                    items: #(1, 2, 3)))
                         ))));

See also

<menu-box>, page 615

<push-menu-box>, page 628

<radio-menu-button>, page 634


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index