
14.6 Defining the callbacks
This section shows you how to create the callback functions you need to define in order to complete the working example.
- Choose File > New or click
to create a new file.- Choose File > Save or click
to save the file. Save it in the same directory you saved ib-example.lisp
, and call this new file ib-callbacks.lisp
.- In the editor, specify the package for the callback definitions by typing the following into the
ib-callbacks.lisp
file: (in-package "COMMON-LISP-USER")
- Type the function definitions given in the rest of this section.
- Choose File > Save or click
to save the file when you have typed in all the function definitions.
The functions that you need to define in this file are divided into the following categories:
- Callbacks to update the display pane.
- Callbacks to display data in a dialog.
- Callbacks for menu items.
- Other miscellaneous functions.
Common LispWorks User Guide - 14 Dec 2001
