EMA-XPS Online
MAKE-BABYLON-OUTPUT-FIELD
MAKE-BABYLON-OUTPUT-FIELD
=========================
syntax: (make-babylon-output-field <interface>
<wname> <xpos> <ypos> <width> <height>
<default-text> <font> <color> &rest <args>)
This function defines an output-field on the window.
<wname> is the name for the field. <xpos> and <ypos>
give the position for the upper left corner. <width>
and <height> define the size of the field. <default-
text> is the text that is written in the output-field.
<font> and <color> are not supported by Babylon v3.
The defined output-field will appear in the interface.
example: >(defun make-kb-interface (interface)
(add-window-elements
interface
(list
(make-babylon-output-field interface
"babylon-standard-output" 400 300 100 50
"This is an example!" nil nil))))
EMA-XPS Online