CLIM provides an implementation of the basic output stream facilities (described in more detail in Appendix D), either by directly using the underlying Lisp implementation, or by implementing the facilities itself. [annotate]
This class provides an implementation of the CLIM basic output stream protocol, based on the CLIM output kernel. Members of this class are mutable. [annotate] |
Writes the character character to the output stream stream, and returns character as its value. [annotate] |
Writes the string string to the output stream stream. If start and end are supplied, they are integers that specify what part of string to output. string is returned as the value. [annotate] |
Writes an end of line character on the output stream stream, and returns false. [annotate] |
Writes an end of line character on the output stream stream only if the stream is not at the beginning of the line. [annotate] |
Ensures that all the output sent to the output stream stream has reached its destination, and only then return false. [annotate] |
Like stream-finish-output, except that it may immediately return false without waiting for the output to complete. [annotate] |
Aborts any outstanding output operation in progress on the output stream stream, and returns false. [annotate] |
This function returns the column number where the next character will be written on the output stream stream. The first column on a line is numbered 0. [annotate] |
Returns true if the output stream stream is positioned at the beginning of a line (that is, column 0), otherwise returns false. [annotate] |
Writes enough blank space on the output stream stream so that the next character will be written at the position specified by column, which is an integer. [annotate] Note: The Gray stream protocol does not require that the column is an integer. For a proportional font it might not be. [edit]-- Tarn W. Burton 2021-12-03 17:49Z |