|
|
|
ufmGetFontPath(3w) -- get the current UFM font path
|
|
ufmGetFontPath gets the current Universal Font Manager (UFM) font path. ufmGetFontPath uses the argument fontPath to return a pointer to a nullterminated character string that represents the current UFM font path. That path is used by UFM to find font files. If an error is detected, ufmGetFontPath sets that pointer to NULL. The UFM font path contains one or more full-path... |
|
ufmGetTransformedBitmap(3w) -- get a transformed character bitmap
|
|
ufmGetTransformedBitmap gets transformed bitmaps for specified characters. You can get a character bitmap only for those typefaces for which bitmap or outline font files were found, that is, those typefaces which have the bit ufmTypefaceBitmaps set to 1 in their data structures of the type ufmTypeface. nTypefaceHandles specifies the number of entries (typeface handles) in the array typefaceHandles. typefaceHandles specifies one... |
|
|
ufmGetTypefaceInfo(3w) -- get typeface information
|
|
ufmGetTypefaceInfo gets the information for a specified typeface or font family, such as Helvetica. typefaceHandle specifies the handle for an open typeface. Use the function ufmOpenTypeface to open a typeface, and get a handle for that typeface. ufmGetTypefaceInfo uses the argument typeface to return a pointer to a data structure of the type uf... |
|
ufmGetTypefaceList(3w) -- get a list of typefaces
|
|
ufmGetTypefaceList gets a list of available typefaces that satisfy specified requirements. By default, ufmGetTypefaceList gets a list of all available typefaces. propertiesMask has a bit flag for each property that can be used to select typefaces, such as the ufmFoundry, ufmFamilyName and ufmRelativeWeight properties. This mask is used to specify which properties should be used to produce ... |
|
ufmGetTypefaceMetrics(3w) -- get typeface metrics
|
|
ufmGetTypefaceMetrics gets scalable metrics for a specified typeface from a font metric file. You can get scalable metrics for only those typefaces that have the flag scalableMetrics set to 1 in their typeface data structures, that is, for only those typefaces for which metric files were found. typefaceHandle specifies the handle for an open typeface. Use the function ufmOpenTypeface to op... |
|
ufmGetVectorOutline(3w) -- get vector outlines for specified characters
|
|
ufmGetVectorOutline gets vector outlines for specified characters. You can get a character outline only for those typefaces which have the flag scalableMetrics set to 1 in their ufmTypeface data structures, that is, for those typefaces for which outline font files were found. nTypefaceHandles specifies the number of entries (typeface handles) in the array typefaceHandles. typefaceHandles is an array of handles for open typefaces. That arra... |
|
ufmGetVersion(3w) -- get the version of the Universal Font Manager (UFM)
|
|
ufmGetVersion returns the major and minor version numbers of the Universal Font Manager (UFM). These numbers can be used to check whether a particular UFM feature is available. Since a program can be dynamically linked with various versions of UFM, it should check whether the UFM version numbers are sufficiently high to provide a function that was not supported in Version 1.0 of UFM. ufmGetVersion uses the argument maj... |
|
ufmOpenTypeface(3w) -- open a typeface
|
|
ufmOpenTypeface opens a specified typeface, and returns a handle for that typeface. When you are finished with that typeface, use the function ufmCloseTypeface to close it. typefaceName specifies the name of a typeface. If you are not sure what to specify, get a list of name of available typefaces by calling the function ufmGetTypefaceList. ufmOpenTypeface use... |
|
ufmSetFontPath(3w) -- set the Universal Font Manager (UFM) font path
|
|
ufmSetFontPath specifies a new value for the Universal Font Manager (UFM) font path in the form of a null-terminated string of characters. If you specify a character string of length zero or a null pointer, ufmSetFontPath will set the UFM font path to its default value. Specify either a null-terminated string of characters or a null pointer for the argument fontPath. You must specify full-path names of font direc... |
|
standard/underlay(3) -- allocates bitplanes for display of underlay colors
|
|
planes expects the number of bitplanes to be allocated for underlay colors. Valid values are 0 (the default), 2, 4, and 8. |
|
ungetc(3s) -- push character back into input stream
|
|
ungetc inserts the character c into the buffer associated with an input stream. Pushed-back characters will be returned by subsequent reads on that stream in the reverse order of their pushing. A successful intervening call (with the stream pointed to by stream) to a file positioning function (fseek(3S), fsetpos(3S) or rewind(3S)), discards any pushed-back characters. The external storage corresponding to the stream is unchanged. A successful call to ungetc clears the end-of-file indicator for t... |
|
ungetwc(3s) -- push wchar_t character back into input stream
|
|
ungetwc inserts the wchar_t character c into the buffer associated with the input stream. That character, c, will be returned by the next getwc call on that stream. ungetwc returns c. One character of pushback is guaranteed, provided something has already been read from the stream and the stream is actually buffered. If c equals (wchar_t)EOF, ungetwc does nothing to th... |
|
f90/unit(3) -- Returns the status of a BUFFER IN or BUFFER OUT statement
|
|
UNICOS, UNICOS/mk, and IRIX systems |
|
perl5/UNIVERSAL(3) -- base class for ALL classes (blessed references)
|
|
UNIVERSAL is the base class which all bless references will inherit from, see the perlobj manpage UNIVERSAL provides the following methods isa ( TYPE ) isa returns true if REF is blessed into package TYPE or inherits from package TYPE. isa can be called as either a static or object method call. can ( METHOD ) can checks if the object has a method called METHOD. If it does then a reference to the sub is returned. If it does not then undef is returned. can can be called as either a static or objec... |
|
Tcl/unknown(3) -- Handle attempts to use non-existent commands
|
|
This command doesn't actually exist as part of Tcl, but Tcl will invoke it if it does exist. If the Tcl interpreter encounters a command name for which there is not a defined command, then Tcl checks for the existence of a command named unknown. If there is no such command, then the interpreter returns an error. If the unknown command exists, then it is invoked with arguments consisting of the fully-substituted name and arguments for the original non-existent command. The unknown command typica... |