
9.7 Examples of CLIM Application Frames
(clim:define-application-frame different-prompts () ((prompt-state ...) ...) (:top-level (different-prompts-top-level)) ...)
(defmethod different-prompts-top-level
((frame different-prompts) &rest options)
(flet ((prompt (stream frame)
(with-slots (prompt-state) frame
(apply
#'clim:default-frame-top-level frame
:prompt #'prompt options)))
...)))

Generated with Harlequin WebMaker