3.16. Graphics |
A window descriptor is a lisp object of class |WINDOW| . Most graphical commands implicitely operate on the current window defined by the window descriptor stored in the symbol window .
Each window descriptor forwards all drawing requests to a ``Graphic Driver'' which performs the system dependent calls required to display the drawings on the corresponding device. The most common type of window (and driver) is the x11-window , which displays on your screen under Xwindows.
Three drivers are very useful to produce printable graphs. Driver ps-window sends all graphic command to an Encapsulated PostScript file. Driver svg-window procudes a SVG file that can be edited with programs such as "inkscape" or "sodipodi" . Editable graphics can also be produced through the comdraw-window driver which sends graphics to the comdraw graphic editor (part of the ivtools package.)
3.16.0. Creating a Window |
Function print-window performs the same task for creating a window descriptor that accesses your printer.
3.16.0.0. (new-window [[x y] w h] [name]) |
[DX] |
This is the device independent function for creating a window. It
figures out which drivers are available, and call the appropriate
function for creating a window.
Function new-window function creates a window named name . Arguments w and h specify the size of the window. Arguments x and y specify the location of the window.
The resulting window descriptor is then stored into variable window . This operation makes the window current.
Windows are closed when they are no longer referenced by the lisp interpreter, when they are deleted with the delete function, or when the windowing system sends a deletion request.
3.16.0.1. (print-window w h [destination]) |
[DX] |
This is the device independent function for printing graphics on the
system printer. This function figures out the best way to send graphics
on the printer or the file specified by string
destination . Arguments w
and h specify the size of the printing
area. The drawings will be scaled to fit a standard size page.
The resulting window descriptor is then stored into variable window . This operation makes the window current.
Function print-window actually calls a system dependent function (e.g. wpr-window under Windows 95 and NT, ps-window under Unix operating systems). Argument destination is passed verbatim to these functions. There are therefore two ways to write a portable program. The simplest way consists in omitting argument destination . The best way consists in using the PrintRequester class provided with the Ogre library.
The window descriptors returned by print-window are very similar to the window descriptors returned by new-window . They print pages instead of rendering graphics on your screen. A page is output when you call function cls or when the window descriptor is closed (because it is no longer referenced by the interpretor or because you called function delete ).
Note: Calling function cls while a clip rectangle is active (see function clip ) will not output a page. It will simply clears the clipping zone. Before using cls , you can use function clip to make sure that no clipping rectangle is active.
3.16.1. Drawing |
3.16.1.0. (cls) |
[DX] |
3.16.1.1. (draw-line x1 y1 x2 y2) |
[DX] |
3.16.1.2. (draw-rect x y w h) |
[DX] |
3.16.1.3. (draw-round-rect x y w h [r]) |
[DX] |
3.16.1.4. (draw-circle x y r) |
[DX] |
3.16.1.5. (draw-arc x y r fromangle toangle) |
[DX] |
3.16.1.6. (fill-rect x y w h) |
[DX] |
3.16.1.7. (fill-round-rect x y w h [r]) |
[DX] |
3.16.1.8. (fill-circle x y r) |
[DX] |
3.16.1.9. (fill-arc x y r fromangle toangle) |
[DX] |
3.16.1.10. (fill-polygon x1 y1 ... xn yn) |
[DX] |
3.16.1.11. (rgb-draw-matrix x y mat [sx sy]) |
[DX] |
This function displays the pixels contained in idx mat at location ( x , y ) in the current window. The optional arguments sx and sy specify the horizontal and vertical zoom factors.
The matrix mat can be an idx2 or idx3. If it is an idx2, each value is interpreted as a greyscale value where 0 is black and 255 is white. If it is an idx3, the last dimension must be 1, 3, or more. If the last dimension is 1, the values are interpreted as greayscale values. If the last dimension is 3 or more, the first 3 values in the last dimension are interpreted as RGB intensities (between 0 and 255).
3.16.1.12. (draw-value x y val maxv maxs) |
[DX] |
Arguments x and y are the coordinates of the center of the square. Argument val is the value to be displayed. Argument maxv is the maximum absolute value for val . Argument maxs is the maximum size of the square. When val is larger than maxv , a square of size maxs is drawn.
Note: The square will not be visible if it is drawn in the same color as the background.
3.16.1.13. (draw-list x y l ncol maxv apart maxs) |
[DX] |
Arguments x and y are the coordinates of the top left edge of the background area. The squares are arranged in an array with ncol columns, the number of lines is then defined by the length of the list l . The grey background is always rectangular, even if ncol is not a divisor of the length of l .
As with draw-value , argument maxv is the maximum absolute value for the list elements. The size of the square is however bounded by maxs .
Argument apart defines the size of the space occupied by a single square, i.e, the centers of two neighboring squares will be apart pixels apart. It is generally suitable to choose a value for apart slightly greater than maxs so that no squares will overlap. For best results, the difference between apart and maxs should be an even number.
Example:
; draw 6 values on 3 columns and 2 lines, in 50 pixel squares (draw-list 50 50 '( 4 5 -10 0 4 16 ) 3 16 52 50) ; draw the values in l on a single line (draw-list 100 100 l (length l) 10 20 18)
3.16.1.14. (gray-draw-list x y l ncol minv maxv apart) |
[DX] |
Arguments x and y are the coordinates of the topleft edge of the first square (representing the first element in the list). The squares are arranged in an array with ncol columns, the number of lines is defined by the length of the list l .
Values between minv and maxv will be displayed as gray levels. A value of minv will be rendered as a black square. A value of maxv will be rendered as a white square. Argument minv can be defined to be greater than maxv in order to produce a reverse video effect. The sizes of the squares are defined by the apart parameter.
3.16.1.15. (gray-draw-matrix x y mat minv maxv apartx aparty) |
[DX] |
Arguments x and y are the coordinates of the topleft edge of the first square (representing the first element in the list). The values between minv and maxv will be displayed as gray levels. A value minv will be rendered as a black rectangle. A value maxv will be rendered as a white rectangle. Value minv can be defined to be greater than maxv in order to produce a reverse video effect. The sizes of the rectangles are defined by the apartx and aparty parameter.
3.16.1.16. (draw-mat m [x y]) |
[DE] |
The function draw-mat computes statistical information about the matrix values in order to adjust the gray scales. This function automatically creates a window if no window is current when the function is called.
3.16.1.17. (color-draw-list x y l ncol minv maxv apart cmap) |
[DX] |
This function is essentially similar to
gray-draw-list . Argument cmap
however must be a one-dimensional matrix of 64 color numbers returned by
alloccolor . Values between minv
and maxv are rendered using the ramp
of colors specified by this matrix.
3.16.1.18. (color-draw-matrix x y mat minv maxv apartx aparty cmap) |
[DX] |
This function is essentially similar to
gray-draw-matrix . Argument cmap
however must be a one-dimensional integer matrix of 64 color numbers
returned by alloccolor . Values
between minv and
maxv are rendered using the ramp of colors specified by this
matrix.
3.16.2. Grabbing Images |
3.16.2.0. (rgb-grab-matrix x y mat) |
[DX] |
This function grabs a rectangular image from the current window. The top
left corner of the image is located at coordinates (
x , y ). The size of the
image is determined by the first two dimensions of matrix
mat .
The matrix mat can be an idx2 or idx3 as with rgb-draw-matrix .
This function only works on true color displays.
3.16.2.1. (save-window-as-ppm filename) |
[DE] |
3.16.3. Drawing with Colors |
Lush provides two elementary functions for dealing with colors. Function alloccolor takes a set of three numbers (ranging from 0 to 1) representing the red, green and blue component of the color. This function allocates a palette entry if necessary and returns a hardware dependent color number. These color numbers can be used with function color to set the current drawing color.
It happens sometimes that it is not possible to allocate a color because the color palette is full. Lush will first try to create its own color palette and install it whenever you activate a Lush window. Windows created by other programs can display funny colors until you activate one of these windows. If the private color palette is full, function alloccolor simply returns a default color.
The use of a limited number of colors is therefore highly encouraged. The function color-stdmap provides several convenient sets of standard colors for this purpose.
See: Ogre Color Palette.
3.16.3.0. (colorp) |
[DE] |
3.16.3.1. (color [c]) |
[DX] |
3.16.3.2. (alloccolor r g b) |
[DX] |
Ask the driver for a color number defined by its three primitive values.
Arguments r , g
, b are reals between 0 and 1 that
define the red, green and blue components of the desired color.
Returns a color number suitable for using with the color function. This function returns the constant color-gray if the system is not able to display the requested color.
3.16.3.3. color-fg |
[VAR] (graphenv.lsh) |
3.16.3.4. color-bg |
[VAR] (graphenv.lsh) |
3.16.3.5. color-gray |
[VAR] (graphenv.lsh) |
3.16.3.6. (color-shade x) |
[DE] (graphenv.lsh) |
3.16.3.7. (color-rgb r g b) |
[DE] (graphenv.lsh) |
3.16.3.8. (color-stdmap [symb]) |
[DE] |
Using this function maximizes the chances that several part of your Lush programs will use the same palette entries and therefore avoid palette saturation.
The argument symb is a symbol which specifies ont of the predefined color sets:
3.16.3.9. (color-std (x [symb]) |
[DE] |
3.16.3.10. (linestyle [ls]) |
[DX] |
Calling this function without arguments returns the last selected line style.
3.16.4. Drawing Text |
3.16.4.0. (draw-text x y s) |
[DX] |
3.16.4.1. (gprintf x y fmt ... args ...) |
[DE] (graphenv.lsh) |
Function gprintf behaves like function
printf , but prints out the text on the current graphic
window, with the current font and color, starting at location (
x , y ).
3.16.4.2. (font [fontname]) |
[DX] |
When used without argument, function font
returns the current font name.
Otherwise function font sets the font used for rendering characters in subsequent calls of function draw-text . If a matching font is found, font returns the name of the selected font. Otherwise it returns () and sets a default font.
The default font name "default" is recognized by all drivers and selects a reasonably small default font. Always using font "default" is the best guarantee to write fully portable programs.
All drivers however recognize PostScript(tm) style font names. These font names have the following form:
"<family>[-<style>][-<size>]"
Not all combination of families, styles and size are supported on all systems. A good compromise between fancy display and portable graphics consists in using PostScript font names, but to limit yourself to the following fonts:
Courier-X, Courier-Bold-X, Courier-Italic-X, Courier-BoldItalic-X Times-Roman-X, Times-Bold-X, Times-Italic-X, Times-BoldItalic-X, Helvetica-X, Helvetica-Bold-X, Helvetica-Oblique-X, Helvetica-BoldOblique-X, Symbol-X
where size X is one of 8 , 10 , 11 , 12 , 14 , 18 , 24 .
Most drivers also understand window system dependent font names (when such font names are defined by the window system). For instance, the X11 driver recognizes XFLD font names (such as "-*-times-*medium-*r-*--18-*" ) and, on some systems, also recognizes fontconfig patterns (such as ":family=Bitstream Vera Sans:pixelsize=11" . Function x11-fontname can be used to translate a Postscript font name into a system specific font name.
3.16.4.3. (rect-text x y s) |
[DX] |
A few driver, including the PS driver, do not implement this function. In that case, rect-text returns the empty list.
3.16.4.4. (text-width s) |
[DE] (graphenv.lsh) |
Returns the width of the text in string s
, if it is printed with the current font. This function uses
rect-text if it is available, or uses some crude heuristics.
3.16.4.5. (text-height s) |
[DE] (graphenv.lsh) |
3.16.5. The Drawing Context |
3.16.5.0. (gsave l1 ...ln) |
[DY] |
3.16.5.1. (gdriver) |
[DX] |
3.16.5.2. (xsize) |
[DX] |
3.16.5.3. (ysize) |
[DX] |
3.16.5.4. window |
[VAR] |
3.16.5.5. (clip [x y w h]) |
[DX] |
Function (clip) always returns the previous clip rectangle, as a list (x y w h) , or the empty list if no previous clipping rectangle was set.
3.16.5.6. (addclip rect) |
[DX] |
Function addclip sets the current clip rectangle to the intersection of the current clipping rectangle with a rectangle whose top left corner is located at position ( x , y ), whose width is w , and whose height is h .
If this intersection is empty, the empty list is returned. Otherwise, addclip returns the new clip rectangle.
3.16.6. Double Buffering and Synchronization |
3.16.6.0. (graphics-batch l1 ... ln) |
[DY] |
This function evaluates the lists l1 to ln , but if a graphic instruction is executed, the screen update is delayed until the end of these evaluations, and is performed only once.
3.16.6.1. (graphics-sync) |
[DX] |
3.16.7. Plotting Functions |
Lush offers three ways to plot curves.
3.16.7.0. Plotting Basics |
3.16.7.0.0. (graph-xy lx ly ...options...) |
[DE] (plotenv.lsh) |
Plots a curve composed of points whose X coordinates are specified by
list lx and Y coordinates by list
ly . The arguments ...options...
can be any of the options described under function
graph-options .
This function returns an object of class PlotContext representing the axis system used for the plot. This object can then be passed among the ...options... argument of a subsequent call to graph-xy in order to plot several curves inside the same axis.
Example: Plot sine and cosine waves in the same axes.
(setq x (range 0 10 .2)) (setq v (graph-xy x (mapcar sin x) `(color-rgb 1 0 0) )) (setq v (graph-xy x (mapcar cos x) v `(color-rgb 0 0 1) `(linestyle 2) ))
The graphs themselves are displayed inside an interactive window of class PlotWindow . Menus provide ways to print, export, and change the plot attributes.
3.16.7.0.1. (graph-xyv lx ly lsd ...options...) |
[DE] (plotenv.lsh) |
This function is similar to graph-xy
but accepts a third list containing the sizes of standard deviation
bars.
Example:
(setq lx (range 0 10 .2)) (graph-xyv lx (all ((x lx)) (sin x)) (all ((x lx)) (abs (* .3 (cos x)))) )
3.16.7.0.2. (graph-options ...options...) |
[DM] |
The following arguments can be used to specify which curve or plot context should be modified. Absent such an argument, a new plot is created.
Function graph-options always returns the selected plot context. A new plot context is created if none is selected. Therefore, calling this function without arguments simply creates and returns a new plotting context.
The remaining options specify attributes for the selected plot context or plot curve. A warning is displayed for each unrecognized attribute.
The following plot context attributes are recognized:
The following curve attributes are recognized:
Each curve point is marked with a small symbol defined by a symbol function. A few symbol functions are predefined:
3.16.7.1. Plotting using Ports |
A plotting port is a data structure which references a plotting context, a curve inside this context, and the last plotted point. This data structure is implemented as a list for maintaining backward compatibility with the old plotting functions.
3.16.7.1.0. plot-port |
[VAR] (plotenv.lsh) |
3.16.7.1.1. (new-plot-port) |
[DE] (plotenv.lsh) |
3.16.7.1.2. (copy-plot-port p [object]) |
[DE] (plotenv.lsh) |
The optional argument object changes the initial object plotting function for this plot port. Function graph-options provides much more control.
3.16.7.1.3. (setup-axes) |
[DE] (plotenv.lsh) |
(setq plot-port (new-plot-port))
3.16.7.1.4. (plt-color-rgb r g b) |
3.16.7.1.5. (plt-color c) |
3.16.7.1.6. (plt-linestyle n) |
3.16.7.1.7. (plt-object f) |
3.16.7.1.8. (plt-object-size f) |
3.16.7.1.9. (plt-sd-bar-size f) |
3.16.7.1.10. (plt-clear) |
[DE] (plotenv.lsh) |
3.16.7.1.11. (plt-move x y) |
[DE] (plotenv.lsh) |
3.16.7.1.12. (plt-draw <x y) |
[DE] (plotenv.lsh) |
3.16.7.1.13. (plt-plot x y) |
[DE] (plotenv.lsh) |
3.16.7.1.14. (plt-sd x y v) |
[DE] (plotenv.lsh) |
3.16.7.1.15. (plot-lists lx ly) |
[DE] (plotenv.lsh) |
3.16.7.1.16. (plot-lists-sd lx ly lsd) |
[DE] (plotenv.lsh) |
3.16.7.2. Miscellaneous |
3.16.7.2.0. (new-plot-port brect rect object) |
[DE] (plotenv.lsh) |
Function new-plot-port may be called with additional arguments in order to create a plot port that draws inside a specified area of the current window instead of creating an interactive plotting window.
Argument brect is a list (bxmin bymin bxmax bymax) whose elements are the pixel coordinates of the target rectangle in the current window. Argument rect is a list (xmin ymin xmax ymax) whose elements define the axis bounds. Argument object is the initial symbol drawing function.
3.16.7.2.1. (draw-axes brect xl yl name [x2l] [y2l]) |
[DE] (plotenv.lsh) |
Creating a plot port with the old plotting library did not automatically draw the axes. Calling function draw-axes was mandatory.
The compatible implementation of this function simply changes the plotting port attributes to match the desired axes. Argument brect is a list (bxmin bymin bxmax bymax) whose elements are the pixel coordinates of the target rectangle in the current window. Arguments xl and yl are lists of label values for the x and y axis. These labels are numbers expressed with the same scale than the axes. The optional functions x2l and y2l are used to convert these numbers into strings to display at the proper positions along the axes. Finally, argument name is the title of the plot.
3.16.7.2.2. (setup-axes x1 y1 x2 y2 [xst yst [s [object]]]) |
[DE] (plotenv.lsh) |
Function setup-axes may be called with additional arguments in order to create a plot port that draws inside the current window instead of creating an interactive plotting window. The returned plot port is also stored in variable plot-port to make it current.
Arguments x1 and y1 are the lower bounds of the axis coordinates; arguments x2 and y2 are the upper bounds of the axis coordinates. The axes will be labeled every xst units horizontally and every yst units vertically. Argument s is the title string. Argument object is the default plot object used by plt-plot .
3.16.7.2.3. current-object |
[VAR] (plotenv.lsh) |
The plt-XXX functions always check whether this variable contains a suitable symbol drawing function. If it does so, that symbol drawing function is made current in the current plot port as if plt-object had been called.
3.16.7.2.4. object-size |
[VAR] (plotenv.lsh) |
The plt-XXX functions always check whether this variable contains a suitable size for drawing symbols. If it does so, that size is made current in the current plot port as if plt-object-size had been called.
3.16.7.2.5. sd-bar-size |
[VAR] (plotenv.lsh) |
The plt-XXX functions always check whether this variable contains a suitable size for drawing standard deviation bars. If it does so, that size is made current in the current plot port as if plt-sd-bar-size had been called.
3.16.7.2.6. (in-plot-port l1 ... ln) |
[DMD] (plotenv.lsh) |
This function was part of the old plotting package and is no longer meaningful. If you need this function, please load the old plotting packate "oldplotenv.lsh" .
3.16.7.3. Plotting Internals |
3.16.8. Events |
Several functions are provided for handling mouse and keyboard events
occurring on graphic windows. Lush has a centralized event queue (see a
full description in the Events and Timers section). It is possible to
obtain the events occuring on a window by creating an
EventLock object. Messages read-event
and check-event allow for testing and
waiting for events.
This mechanism is used by a few handy functions get-click , get-vector and get-rect , as demonstrated by the incredibly shrinking paint program lushpaint below:
(de lushpaint() (let ((window ())) (new-window) (draw-line 2 5 18 5) (draw-rect 22 2 18 8) (fill-rect 42 2 18 9) (gprintf 102 10 "Quit") (clip 0 12 1000 1000) (let ((ok t) (mode draw-line) (echo get-vector)) (while ok (let (((x y) (get-click))) (cond ((> y 10) (apply mode (echo)) ) ((point-in-rect x y '(0 0 20 10)) (setq mode draw-line echo get-vector) ) ((point-in-rect x y '(20 0 20 10)) (setq mode draw-rect echo get-rect) ) ((point-in-rect x y '(40 0 20 10)) (setq mode fill-rect echo get-rect) ) ((point-in-rect x y '(100 0 20 10)) (setq ok ()) )) ) ) ) (delete window) ) )
(NOTE: more serious paint programs should probably be written with Ogre).
3.16.8.0. Graphic Event Functions |
3.16.8.0.0. (new EventLock window) |
[CLASS] (graphenv.lsh) |
The initial state of the window is restored when the EventLock object is destroyed.
3.16.8.0.1. (==> EventLock read-event) |
[MSG] (graphenv.lsh) |
This function returns the first available event on the window associated
to the EventLock object. Each event is
represented by a list whose first element broadly describes the event
type. Additional information can be obtained using function
eventinfo .
If the event queue is empty, this function blocks until an event occurs.
3.16.8.0.2. (==> EventLock check-event) |
[MSG] (graphenv.lsh) |
This function returns the first available event on the window associated
to the EventLock object. Each event is
represented by a list whose first element broadly describes the event
type. Additional information can be obtained using function
eventinfo .
This function returns the empty list when no events are available.
3.16.8.0.3. (hilite mode x1 y1 x2 y2) |
[DX] |
Four kinds of drawings are supported, whose names are defined by "graphenv.lsh" :
Transient drawings created with hilite are very efficient, and totally disappear when the mouse button is released. This function is useful for providing an echo to the user during a mouse drag operation. For example, function hilite can display a rectangular outline while the user is dragging the mouse for selecting a part of an image.
3.16.8.0.4. (get-click [rect]) |
[DE] (graphenv.lsh) |
3.16.8.0.5. (get-vector [rect]) |
[DE] (graphenv.lsh) |
The optional argument rect indicates a bouding rectangle which must entirely contain the resulting vector. The echoed dashed line reflects then this limitation.
3.16.8.0.6. (get-rect [rect]) |
[DE] (graphenv.lsh) |
The optional argument rect indicates a bouding rectangle which must entirely contain the resulting rectangle. The echoed dashed rectangle reflects then this limitation.
3.16.8.1. Event Lists |
Events returned by methods read-event
and check-event are encoded as lists,
according to the following templates:
These few events give enough information for building graphics interfaces. The class library "libogre/ogre.lsh" is designed for that purpose.
3.16.8.1.0. (eventinfo) |
[DX] |
After a mouse event, string name is the mouse button name. Possible names are "Button1" , "Button2" , etc. for single clicks, and "Button1-Dbl" , "Button2-Dbl" , etc. for double clicks. After a keypress event, string name is the name of the key.
3.16.9. System Specific Graphic Functions |
3.16.9.0. Specific Graphic Functions for X11 |
3.16.9.0.0. (x11-window [[[x y] w h] name]) |
[DX] |
This is the low level function called by
new-window on X Windows systems.
This function creates a window of size w and h at position x and y named name on the default X Windows screen. During the first call of function x11-window , Lush searches the variable display and the environment variable DISPLAY for the name of the X Windows server and display to use.
Unlike new-window , this function does not store the newly created window in the variable window , and thus does not make this window current.
3.16.9.0.1. (x11-fontname s) |
[DX] |
This function comes with the X11 driver. It converts a legal
PostScript(TM) font name, into a X11 font name.
String s must be a legal PostScript font name, composed of a font family, an optional font style, and a font size, possibly separated by dashes, like "Helvetica-18" , "Times-Roman24" , "Courier-Bold-12" . This function returns the corresponding font name under the X11. conventions.
Example:
? (when x11-fontname (x11-fontname "Times-Roman18") ) = ":family=times:pixelsize=18:roman"
3.16.9.0.2. (x11-depth) |
[DX] |
3.16.9.0.3. (x11-lookup-color name) |
[DX] |
3.16.9.0.4. (x11-configure [raise x y w h]) |
[DX] |
This function works only with X11R4 or greater. When effective, it returns a list (visible w h) whose elements indicate the window visibility and size.
3.16.9.0.5. (x11-text-to-clip text) |
[DX] |
It implements today a cut buffer based mechanism suitable for exchanging text with emacs and xterm. We plan to support selection as soon as possible.
3.16.9.0.6. (x11-clip-to-text) |
[DX] |
It implements today a cut buffer based mechanism suitable for exchanging text with emacs and xterm. We plan to support selection as soon as possible.
3.16.9.1. Specific Graphic Functions for Windows |
The following functions are only implemented on Windows
3.16.9.1.0. (wbm-window [[[x y] w h] name]) |
This is the low level function called by
new-window on Windows 95 and NT systems. This function is
available under WinLush only.
Function wbm-window creates a window of size w and h at position x and y named name in the WinLush environment. The command line version of Lush cannot create graphic windows yet.
Unlike new-window , this function does not store the newly created window in the variable window , and thus does not make this window current.
3.16.9.1.1. (wbm-toplevel-window [[[x y] w h] name]) |
This function is very similar to function
wbm-window described above. Instead of creating a child
window of the main WinLush window (according to the Windows MDI scheme),
function wbm-toplevel-window creates a
toplevel window that is not attached to the main WinLush window.
3.16.9.1.2. (wpr-window [[w h] name]) |
This is the low level function called by
print-window on Windows 95 and NT systems.
Function wpr-window creates a window descriptor which actually accesses the printer named name . The default printer is used if argument name is not specified. Function wpr-printers should be used to obtain the list of valid printer names.
Unlike new-window or print-window , this function does not store the newly created window in the variable window , and thus does not make this window current.
Arguments w and h specify the width and height of the coordinate system. The drawings will be scaled to fit the size of the page returned by your printer.
3.16.9.1.3. (wpr-printers) |
This function returns a list of printers names suitable for function
wpr-window . The default printer name comes first.
3.16.9.1.4. (win-depth) |
3.16.9.1.5. (win-configure [raise x y w h]) |
This function returns a list (visible w h) whose elements indicate the window visibility and size.
3.16.9.1.6. (win-text-to-clip text) |
3.16.9.1.7. (win-clip-to-text) |
3.16.9.2. Determining System Dependent Feature Support |
3.16.9.2.0. (gdriver-feature feat opt) |
[DE] |
This option is usefull for calling minor services (e.g. puting text
into the clipboard) for which failure has little consequence.
Features are the following.
Here is an example of the use which can be made of gdriver-feature .
? (new-window 400 400 400 400 "test") = ::WINDOW:X11:8c440 ? ((gdriver-feature 'configure 'loose) () 300 300 400 400) = (t 400 400)
3.16.10. Producing Encapsulated PostScript Files |
Note: Many computers use incompatible conventions for marking the end of lines (Unix machines use the character NL, Macs use the character CR and PC use a sequence CR NL.) Several popular software exhibit a strange behavior when they attempt to read a sequence of characters which appears to them as a very long line. You must probably use a text filter like dos2unix to convert your EPS files.
3.16.10.0. (ps-window [[w h] name]) |
[DX] |
Function ps-window is the low level
function called by print-window on
systems that provide no other alternative. All versions of Lush however
support Encapsulated PostScript files.
Function ps-window returns a window descriptor which actually writes PostScript commands into a file named name . When argument name is omitted, the PostScript commands are written to file "tloutput.ps" .
Unlike new-window or print-window , this function does not store the newly created window in the variable window , and thus does not make this window current.
Arguments w and h specify the width and height of the coordinate system. The target rectangle will be scaled to fit a standard A4 or Letter format page.
3.16.10.1. (gspecial string) |
[DX] |
3.16.10.2. (ps-play filename [function]) |
[DE] |
This function interprets PostScript files created with
ps-window . Function ps-play
parses the PostScript file filename ,
converts it into a sequence of SN calls, and applies function
function to these calls. The default value for the optional
argument function is
eval . Function ps-play
thus plays the contents of the PostScript file in the current window.
Exemples:
To play a EPS file into a window, type:
? (let ((window (new-window))) (ps-play "your_file.ps") )
To see the contents of a EPS file, type:
? (ps-play "your_file.ps" pprint)
Note: This function only interprets PostScript files created by the Lush PostScript driver. It is by no means a complete PostScript interpreter.
3.16.10.3. (ps-plot filename x y w h [bb-overrule]) |
This function plots EPS-files created with SN or Lush in the window
referred to by the symbol window in
the region determined by x
y w and
h . x
y correspond to the coordinates of the region's upper-left
corner, w to its width and
h to its height. The plot is scaled to fill exactly this
region using the EPS "%%BoundingBox"
directive which can be overruled by the optional
bb-overrule parameter. If w
or h are 0 or nil, scaling in their
respective directions are choosen as to preserve proportions. If both
w and h are 0 or nil, no
scaling is performed.
3.16.12. Graphical Utilities |
3.16.12.0. (rect-2-ppbrect r) |
[DE] (graphenv.lsh) |
3.16.12.1. (window-rect) |
[DE] (graphenv.lsh) |
3.16.12.2. (point-in-rect x y r) |
[DX] |
3.16.12.3. (rect-in-rect r1 r2) |
[DX] |
3.16.12.4. (collide-rect r1 r2) |
[DX] |
3.16.12.5. (bounding-rect r1 r2) |
[DX] |