NextPrevUpTopContentsIndex

check-button-panel

Class
Summary

A check-button-panel is a pane containing a group of buttons each of which can be selected or deselected.

Package

capi

Superclasses

button-panel

Description

The class check-button-panel inherits all of its behavior from button-panel, which itself inherits most of its behavior from choice. Thus, the check-button-panel can accept items , callbacks , and so on.

Example
(capi:contain (make-instance
               'capi:check-button-panel
               :title "Select some packages"
               :items '("CAPI" "LISPWORKS" "CL-USER")))
(setq buttons (capi:contain
               (make-instance
                'capi:check-button-panel
                :title "Select some packages"
                :items '("CAPI" "LISPWORKS" "CL-USER")
                :layout-class 'capi:column-layout)))
(capi:choice-selected-items buttons)

Also see the example in the directory examples/capi/buttons/ .

See also

check-button
push-button-panel
radio-button-panel


LispWorks CAPI Reference Manual - 11 Apr 2005

NextPrevUpTopContentsIndex