15.6 Defining the callbacks
update-selection
, serves to update the display pane whenever selections are made in the graph pane or the list panel.(defun update-selection (type data interface) (setf (capi:display-pane-text (selection-reader interface)) (format nil "~A ~A" data type)))The following three functions are the callbacks specified whenever a select, retract or extend action is performed in either the list panel or the graph pane. Each function is named according to the type of callback it is used for, and it simply calls
update-selection
with an additional argument denoting the callback type.(defun update-selection-select (&rest args) (apply 'update-selection "selected" args))(defun update-selection-retract (&rest args) (apply 'update-selection "deselected" args))
(defun update-selection-extend (&rest args) (apply 'update-selection "extended" args))
Generated with Harlequin WebMaker