Draws the children of a pinboard-layout, by default.
capi
pinboard-layout-display pane x y width height
pane⇩ | |
Real numbers. | |
Positive real numbers. |
The generic function pinboard-layout-display
is the default display-callback of pinboard-layout (see output-pane for documentation of display-callback and a description of pane, x, y, width and height). It is responsible for the drawing of all the children of the pinboard layout.
If you want to have drawing on a pinboard-layout which is not done via the children, you can either supply your own display-callback to do the other drawing and call pinboard-layout-display
(or draw-pinboard-layout-objects) to draw the children, or subclass pinboard-layout and add methods to pinboard-layout-display
specialized on your class.
In either case, if any of your drawing is "behind" the children, that is children may overlap it and need to obscure it, you need to do your drawing first and then tell the pane about it by calling redraw-pinboard-layout with the region that was redrawn and the optional argument redisplay = nil
.
In LispWorks 6.1 and earlier versions the default display-callback was called pinboard-pane-display
and was not exported, but apparently some programmers defined methods on it anyway. If you did this, you must change your method to pinboard-layout-display
for LispWorks 7.0 and later versions.
pinboard-layout
output-pane
redraw-pinboard-layout
draw-pinboard-layout-objects
12 Creating Panes with Your Own Drawing and Input
CAPI User Guide and Reference Manual (Unix version) - 01 Dec 2021 19:32:42