NextPrevUpTopContentsIndex

4.4 Option panes

Option panes, created with the option-pane class, display the current selection from a single-selection list. When you click on the option pane, the list appears and you can make another selection from it. Once the selection is made, it is displayed in the option pane.

The appearance of the option-pane list varies between platforms. a drop-down list box on Windows; a combo box on Motif, and a popup list on Mac OS.

Here is an example option pane, which shows the choice of one of five numbers. The initial selection is controlled with :selected-item .

(contain
 (make-instance   
  'option-pane
  :items '(1 2 3 4 5)
  :selected-item 3
  :title "One of Five:")) 

Figure 4.8 An option pane


LispWorks CAPI User Guide (Macintosh version) - 8 Apr 2005

NextPrevUpTopContentsIndex