Libraries |
|
Pixmap_file | Source Code |
|
|
Types | ||||
|
pixmapFontFile
const type: pixmapFontFile
Function Summary | |||||
text |
| ||||
text |
| ||||
void |
| ||||
void |
| ||||
font |
| ||||
integer |
| ||||
integer |
| ||||
integer |
| ||||
integer |
| ||||
void |
| ||||
void |
| ||||
void |
| ||||
void |
| ||||
void |
| ||||
void |
| ||||
void |
| ||||
void |
| ||||
void |
| ||||
void |
|
Function Detail |
openPixmapFontFile
const func text: openPixmapFontFile (in PRIMITIVE_WINDOW: win)
-
Creates a pixmapFontFile at the upper left corner of win. The pixmapFontFile extends over the whole win.
- Returns:
- the file opened.
openPixmapFontFile
const func text: openPixmapFontFile (in PRIMITIVE_WINDOW: win, in integer: minX, in integer: minY)
-
Creates a pixmapFontFile at (minX, minY) in win. The pixmapFontFile extends to the lower right edge of win.
- Returns:
- the file opened.
flush
const proc: flush (inout pixmapFontFile: aFile)
-
Forces that all buffered data is sent to its destination. Flushing a null_file has no effect.
setFont
const proc: setFont (inout text: aText, in font: aFont)
-
Set the current font of aText to aFont.
height
const func integer: height (in pixmapFontFile: fontFile)
-
Get the height of fontFile.
- Returns:
- the height of fontFile.
width
const func integer: width (in pixmapFontFile: fontFile)
-
Get the width of fontFile.
- Returns:
- the width of fontFile.
line
const func integer: line (in pixmapFontFile: fontFile)
-
Get the current line of fontFile.
- Returns:
- the current line of fontFile.
column
const func integer: column (in pixmapFontFile: fontFile)
-
Get the current column of fontFile.
- Returns:
- the current column of fontFile.
clear
const proc: clear (inout pixmapFontFile: fontFile, in integer: upper, in integer: left, in integer: lower, in integer: right)
-
Clear an area of fontFile with the background color. The area is specified in (line, column) coordinates and is between the (upper, left) and (lower, right).
clear
const proc: clear (inout pixmapFontFile: fontFile)
-
Clear the area of fontFile with the background color.
setPos
const proc: setPos (inout pixmapFontFile: fontFile, in integer: line, in integer: column)
-
Set the current position of fontFile to line and column.
setPosXY
const proc: setPosXY (inout pixmapFontFile: fontFile, in integer: xPos, in integer: yPos)
-
Set the current position of fontFile to the coordinates (xPos, yPos). The coordinates are from the graphic window which belongs to fontFile.
setLine
const proc: setLine (inout pixmapFontFile: fontFile, in integer: line)
-
Set the line of the current position of fontFile.
setColumn
const proc: setColumn (inout pixmapFontFile: fontFile, in integer: column)
-
Set the column of the current position of fontFile.
color
const proc: color (inout pixmapFontFile: fontFile, in color: col)
-
Set the current foreground color of fontFile.
color
const proc: color (inout pixmapFontFile: fontFile, in color: col, in color: backgr)
-
Set the current foreground and background color of fontFile.
write
const proc: write (inout pixmapFontFile: fontFile, in string: stri)
-
Write a string to a pixmapFontFile.
writeln
const proc: writeln (inout pixmapFontFile: fontFile)
-
Write end-of-line to pixmapFontFile. Set the current position to the beginning of the next line.
|
|