




recurse-compute-drawing-object
Use the function and/or data in compound-drawing-objects.
An objects-displayer, pinboard-objects-displayer, a list, or a compound-drawing-object.
The function compute-drawing-object-from-data does something only when it is applied to a compound-drawing-object, otherwise it just returns nil. When the object is a compound-drawing-object, compute-drawing-object-from-data checks if the object has either
function
or
data
non-nil. For the object to have a non-nil
function
, this must have been supplied when it was created (for example when creating geometry-drawing-object). The
data
can be passed in creation or set later by (setf compound-drawing-object-data).
If the object has a non-nil
function
, compute-drawing-object-from-data calls it with
data
as a single argument, and uses the result. Otherwise, if the object has a non-nil
data
, compute-drawing-object-from-data calls the generic function get-drawing-object with
data
as a single argument, and uses the result. If this result is :no-change, compute-drawing-object-from-data just returns nil. get-drawing-object has a default method that returns :no-change.
Otherwise, the result must be a "drawing-object-spec", which means either an instance of (a subclass of) drawing-object or a list of "drawing-object-specs". compute-drawing-object-from-data then sets the
sub-object
of the object to the result, and returns t.
The argument
object
to recurse-compute-drawing-object should be an objects-displayer, a pinboard-objects-displayer, a list, or a compound-drawing-object. For other objects recurse-compute-drawing-object just returns nil.
recurse-compute-drawing-object recurses the hierarchy under
object
, and for each compound-drawing-object that it finds calls compute-drawing-object-from-data.
When the argument is either an objects-displayer or pinboard-objects-displayer, recurse-compute-drawing-object also calls force-objects-redraw when it finishes.
get-drawing-object and passing the appropriate
data
. Then the tree can be told to recompute itself by calling recurse-compute-drawing-object.recurse-compute-drawing-object is applied to objects-displayer or pinboard-objects-displayer. You will have to do it yourself by using force-objects-redraw on the root of the hierarchy or hierarchies which need redrawing.recurse-compute-drawing-object does not check against duplication, so if the same object appears in the hierarchy more than once, it will be updated repeatedly.
geometry-drawing-object
compound-drawing-object
Lower level - drawing objects and objects displayers
CAPI User Guide and Reference Manual (Unix version) - 3 Aug 2017