Next Prev Up Top Contents Index

abort-dialog

Function
Summary

The abort-dialog function aborts the current dialog.

Syntax

abort-dialog &rest ignored-args

Description

This function is used to abort the current dialog. For example, it can made a selection callback from a Cancel button so that pressing the button aborts the dialog. In a similar manner the complementary function exit-dialog can be used as a callback for an OK .

Example
(capi:display-dialog
  (capi:make-container
    (make-instance 'capi:push-button
                   :text "Cancel"
                   :callback 'capi:abort-dialog)
                   :title "Test Dialog"))
See also

exit-dialog
display-dialog
popup-confirmer
interface


LispWorks CAPI Reference Manual - 14 Dec 2001

Next Prev Up Top Contents Index