Fontconfig 2.4.2

This commit is contained in:
matthieu 2006-12-31 14:57:18 +00:00
parent 9c0ccbe133
commit 98dd1c2ea9
299 changed files with 24708 additions and 5078 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,44 @@
Fontconfig
Font configuration and customization library
Version 2.4.1
2006-09-15
Version 2.4.2
2006-12-02
Check INSTALL for compilation and installation instructions.
Report bugs to https://bugs.freedesktop.org in the fontconfig module.
2.4.2
Han-Wen Nienhuys:
FcStrCanonFileName buggy for mingw. (bug 8311)
More fixes for Win32 building (bug 8311)
Kean Johnston:
Don't use varargs CPP macros in fccache.c. (bug 8733)
Keith Packard:
Remove documentation for non-existant FcConfigNormalizeFontDir.
Build fontconfig.def from header files when needed.
Detect and use available random number generator (bug 8308)
Add sparc64 architecture string.
FcStrCanonAbsoluteFilename should be static.
Use explicit platform/nameid order when scanning ttf files.
Warn (and recover) from config file without <cachedir> elements.
Avoid writing uninitialized structure pad bytes to cache files.
Fix grep pattern in makealias to work on non-Gnu grep (bug 8368).
Add FcFreeTypeQueryFace external API. Bug #7311.
Segfault scanning non-font files. Disallow scan edit of user vars. (#8767)
Add space between type and formal in devel man pages (bug 8935)
Mike FABIAN:
Do not clean cache files for different architectures
Peter Breitenlohner:
A VPATH build of fontconfig-2.4.1 fails for various reasons. Bug 8933.
Use <literal> instead of <sgmltag> when documenting fonts.conf. Bug 8935.
Fix fc-cat documentation (bug 8935).
2.4.1
Keith Packard:

View File

@ -73,6 +73,9 @@
/* Define to 1 if you have the `link' function. */
#undef HAVE_LINK
/* Define to 1 if you have the `lrand48' function. */
#undef HAVE_LRAND48
/* Define to 1 if you have the `memmove' function. */
#undef HAVE_MEMMOVE
@ -91,8 +94,11 @@
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
#undef HAVE_NDIR_H
/* Define to 1 if you have the `rand_r' function. */
#undef HAVE_RAND_R
/* Define to 1 if you have the `rand' function. */
#undef HAVE_RAND
/* Define to 1 if you have the `random' function. */
#undef HAVE_RANDOM
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H

View File

@ -1,5 +1,5 @@
dnl
dnl $Id: configure.in,v 1.1.1.1 2006/11/25 18:41:30 matthieu Exp $
dnl $Id: configure.in,v 1.1.1.2 2006/12/31 14:57:18 matthieu Exp $
dnl
dnl Copyright © 2003 Keith Packard
dnl
@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library
dnl version. This same version number must appear in fontconfig/fontconfig.h
dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
dnl not possible to extract the version number here from fontconfig.h
AM_INIT_AUTOMAKE(fontconfig, 2.4.1)
AM_INIT_AUTOMAKE(fontconfig, 2.4.2)
AM_MAINTAINER_MODE
dnl libtool versioning
@ -41,11 +41,11 @@ dnl libtool versioning
dnl bump revision when fixing bugs
dnl bump current and age, reset revision to zero when adding APIs
dnl bump current, leave age, reset revision to zero when changing/removing APIS
LT_CURRENT=2
LT_CURRENT=3
LT_REVISION=0
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
LT_AGE=1
LT_AGE=2
LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
AC_SUBST(LT_VERSION_INFO)
@ -166,7 +166,7 @@ AC_TYPE_PID_T
# Checks for library functions.
AC_FUNC_VPRINTF
AC_FUNC_MMAP
AC_CHECK_FUNCS([geteuid getuid link memmove memset mkstemp strchr strrchr strtol getopt getopt_long sysconf ftruncate chsize rand_r])
AC_CHECK_FUNCS([geteuid getuid link memmove memset mkstemp strchr strrchr strtol getopt getopt_long sysconf ftruncate chsize rand random lrand48])
#
# Checks for iconv
@ -510,7 +510,7 @@ default_docs="yes"
# Check if docs exist or can be created
#
if test x$HASDOCBOOK = xno; then
if test -f doc/fonts-conf.5; then
if test -f $srcdir/doc/fonts-conf.5; then
:
else
default_docs="no"
@ -562,7 +562,6 @@ fc-glyphname/Makefile
fc-case/Makefile
fc-arch/Makefile
src/Makefile
src/fontconfig.def
conf.d/Makefile
fc-cache/Makefile
fc-cat/Makefile

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcAtomicCreate" "3" "15 September 2006" "" ""
.TH "FcAtomicCreate" "3" "02 December 2006" "" ""
.SH NAME
FcAtomicCreate \- create an FcAtomic object
@ -21,4 +21,4 @@ configuration file is atomically replaced so that reading process always see
a consistent and complete file without the need to lock for reading.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcAtomicDeleteNew" "3" "15 September 2006" "" ""
.TH "FcAtomicDeleteNew" "3" "02 December 2006" "" ""
.SH NAME
FcAtomicDeleteNew \- delete new file
@ -18,4 +18,4 @@ void FcAtomicDeleteNew (FcAtomic *\fIatomic\fB);
Deletes the new file. Used in error recovery to back out changes.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcAtomicDestroy" "3" "15 September 2006" "" ""
.TH "FcAtomicDestroy" "3" "02 December 2006" "" ""
.SH NAME
FcAtomicDestroy \- destroy an FcAtomic object
@ -18,4 +18,4 @@ void FcAtomicDestroy (FcAtomic *\fIatomic\fB);
Destroys \fIatomic\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcAtomicLock" "3" "15 September 2006" "" ""
.TH "FcAtomicLock" "3" "02 December 2006" "" ""
.SH NAME
FcAtomicLock \- lock a file
@ -20,4 +20,4 @@ file is locked by another process, else returns FcTrue and leaves the file
locked.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcAtomicNewFile" "3" "15 September 2006" "" ""
.TH "FcAtomicNewFile" "3" "02 December 2006" "" ""
.SH NAME
FcAtomicNewFile \- return new temporary file name
@ -19,4 +19,4 @@ Returns the filename for writing a new version of the file referenced
by \fIatomic\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcAtomicOrigFile" "3" "15 September 2006" "" ""
.TH "FcAtomicOrigFile" "3" "02 December 2006" "" ""
.SH NAME
FcAtomicOrigFile \- return original file name
@ -18,4 +18,4 @@ FcChar8 * FcAtomicOrigFile (FcAtomic *\fIatomic\fB);
Returns the file refernced by \fIatomic\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcAtomicReplaceOrig" "3" "15 September 2006" "" ""
.TH "FcAtomicReplaceOrig" "3" "02 December 2006" "" ""
.SH NAME
FcAtomicReplaceOrig \- replace original with new
@ -18,4 +18,4 @@ FcBool FcAtomicReplaceOrig (FcAtomic *\fIatomic\fB);
Replaces the original file referenced by \fIatomic\fR with the new file.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcAtomicUnlock" "3" "15 September 2006" "" ""
.TH "FcAtomicUnlock" "3" "02 December 2006" "" ""
.SH NAME
FcAtomicUnlock \- unlock a file
@ -18,4 +18,4 @@ void FcAtomicUnlock (FcAtomic *\fIatomic\fB);
Unlocks the file.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcBlanksAdd" "3" "15 September 2006" "" ""
.TH "FcBlanksAdd" "3" "02 December 2006" "" ""
.SH NAME
FcBlanksAdd \- Add a character to an FcBlanks
@ -11,7 +11,7 @@ FcBlanksAdd \- Add a character to an FcBlanks
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcBlanksAdd (FcBlanks *\fIb\fB, FcChar32\fIucs4\fB);
FcBool FcBlanksAdd (FcBlanks *\fIb\fB, FcChar32 \fIucs4\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -19,4 +19,4 @@ Adds a single character to an FcBlanks object, returning FcFalse
if this process ran out of memory.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcBlanksCreate" "3" "15 September 2006" "" ""
.TH "FcBlanksCreate" "3" "02 December 2006" "" ""
.SH NAME
FcBlanksCreate \- Create an FcBlanks
@ -18,4 +18,4 @@ FcBlanks * FcBlanksCreate (void\fI\fB);
Creates an empty FcBlanks object.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcBlanksDestroy" "3" "15 September 2006" "" ""
.TH "FcBlanksDestroy" "3" "02 December 2006" "" ""
.SH NAME
FcBlanksDestroy \- Destroy and FcBlanks
@ -18,4 +18,4 @@ void FcBlanksDestroy (FcBlanks *\fIb\fB);
Destroys an FcBlanks object, freeing any associated memory.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcBlanksIsMember" "3" "15 September 2006" "" ""
.TH "FcBlanksIsMember" "3" "02 December 2006" "" ""
.SH NAME
FcBlanksIsMember \- Query membership in an FcBlanks
@ -11,7 +11,7 @@ FcBlanksIsMember \- Query membership in an FcBlanks
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcBlanksIsMember (FcBlanks *\fIb\fB, FcChar32\fIucs4\fB);
FcBool FcBlanksIsMember (FcBlanks *\fIb\fB, FcChar32 \fIucs4\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -19,4 +19,4 @@ Returns whether the specified FcBlanks object contains the indicated Unicode
value.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetAddChar" "3" "15 September 2006" "" ""
.TH "FcCharSetAddChar" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetAddChar \- Add a character to a charset
@ -11,7 +11,7 @@ FcCharSetAddChar \- Add a character to a charset
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcCharSetAddChar (FcCharSet *\fIfcs\fB, FcChar32\fIucs4\fB);
FcBool FcCharSetAddChar (FcCharSet *\fIfcs\fB, FcChar32 \fIucs4\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -20,4 +20,4 @@ returning FcFalse on failure, either as a result of a constant set or from
running out of memory.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetCopy" "3" "15 September 2006" "" ""
.TH "FcCharSetCopy" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetCopy \- Copy a charset
@ -19,4 +19,4 @@ Makes a copy of \fIsrc\fR; note that this may not actually do anything more
than increment the reference count on \fIsrc\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetCount" "3" "15 September 2006" "" ""
.TH "FcCharSetCount" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetCount \- Count entries in a charset
@ -18,4 +18,4 @@ FcChar32 FcCharSetCount (const FcCharSet *\fIa\fB);
Returns the total number of unicode chars in \fIa\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetCreate" "3" "15 September 2006" "" ""
.TH "FcCharSetCreate" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetCreate \- Create an empty character set
@ -19,4 +19,4 @@ FcCharSet * FcCharSetCreate (void\fI\fB);
character set object.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetDestroy" "3" "15 September 2006" "" ""
.TH "FcCharSetDestroy" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetDestroy \- Destroy a character set
@ -20,4 +20,4 @@ void FcCharSetDestroy (FcCharSet *\fIfcs\fB);
memory referenced is freed.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetEqual" "3" "15 September 2006" "" ""
.TH "FcCharSetEqual" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetEqual \- Compare two charsets
@ -19,4 +19,4 @@ Returns whether \fIa\fR and \fIb\fR
contain the same set of unicode chars.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetFirstPage" "3" "15 September 2006" "" ""
.TH "FcCharSetFirstPage" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetFirstPage \- Start enumerating charset contents
@ -11,7 +11,7 @@ FcCharSetFirstPage \- Start enumerating charset contents
.sp
\fB#include <fontconfig.h>
.sp
FcChar32 FcCharSetFirstPage (const FcCharSet *\fIa\fB, FcChar32[FC_CHARSET_MAP_SIZE]\fImap\fB, FcChar32 *\fInext\fB);
FcChar32 FcCharSetFirstPage (const FcCharSet *\fIa\fB, FcChar32[FC_CHARSET_MAP_SIZE] \fImap\fB, FcChar32 *\fInext\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -20,4 +20,4 @@ Builds an array of bits marking the first page of Unicode coverage of
font.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetHasChar" "3" "15 September 2006" "" ""
.TH "FcCharSetHasChar" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetHasChar \- Check a charset for a char
@ -11,11 +11,11 @@ FcCharSetHasChar \- Check a charset for a char
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcCharSetHasChar (const FcCharSet *\fIfcs\fB, FcChar32\fIucs4\fB);
FcBool FcCharSetHasChar (const FcCharSet *\fIfcs\fB, FcChar32 \fIucs4\fB);
\fR
.SH "DESCRIPTION"
.PP
Returns whether \fIfcs\fR contains the char \fIucs4\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetIntersect" "3" "15 September 2006" "" ""
.TH "FcCharSetIntersect" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetIntersect \- Intersect charsets
@ -19,4 +19,4 @@ Returns a set including only those chars found in both
\fIa\fR and \fIb\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetIntersectCount" "3" "15 September 2006" "" ""
.TH "FcCharSetIntersectCount" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetIntersectCount \- Intersect and count charsets
@ -18,4 +18,4 @@ FcChar32 FcCharSetIntersectCount (const FcCharSet *\fIa\fB, const FcCharSet *\fI
Returns the number of chars that are in both \fIa\fR and \fIb\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetIsSubset" "3" "15 September 2006" "" ""
.TH "FcCharSetIsSubset" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetIsSubset \- Test for charset inclusion
@ -18,4 +18,4 @@ FcBool FcCharSetIsSubset (const FcCharSet *\fIa\fB, const FcCharSet *\fIb\fB);
Returns whether \fIa\fR is a subset of \fIb\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetNextPage" "3" "15 September 2006" "" ""
.TH "FcCharSetNextPage" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetNextPage \- Continue enumerating charset contents
@ -11,7 +11,7 @@ FcCharSetNextPage \- Continue enumerating charset contents
.sp
\fB#include <fontconfig.h>
.sp
FcChar32 FcCharSetNextPage (const FcCharSet *\fIa\fB, FcChar32[FC_CHARSET_MAP_SIZE]\fImap\fB, FcChar32 *\fInext\fB);
FcChar32 FcCharSetNextPage (const FcCharSet *\fIa\fB, FcChar32[FC_CHARSET_MAP_SIZE] \fImap\fB, FcChar32 *\fInext\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -20,4 +20,4 @@ Builds an array of bits marking the Unicode coverage of \fIa\fR for page
the font.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetSubtract" "3" "15 September 2006" "" ""
.TH "FcCharSetSubtract" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetSubtract \- Subtract charsets
@ -18,4 +18,4 @@ FcCharSet * FcCharSetSubtract (const FcCharSet *\fIa\fB, const FcCharSet *\fIb\f
Returns a set including only those chars found in \fIa\fR but not \fIb\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetSubtractCount" "3" "15 September 2006" "" ""
.TH "FcCharSetSubtractCount" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetSubtractCount \- Subtract and count charsets
@ -18,4 +18,4 @@ FcChar32 FcCharSetSubtractCount (const FcCharSet *\fIa\fB, const FcCharSet *\fIb
Returns the number of chars that are in \fIa\fR but not in \fIb\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetUnion" "3" "15 September 2006" "" ""
.TH "FcCharSetUnion" "3" "02 December 2006" "" ""
.SH NAME
FcCharSetUnion \- Add charsets
@ -18,4 +18,4 @@ FcCharSet * FcCharSetUnion (const FcCharSet *\fIa\fB, const FcCharSet *\fIb\fB);
Returns a set including only those chars found in either \fIa\fR or \fIb\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigAppFontAddDir" "3" "15 September 2006" "" ""
.TH "FcConfigAppFontAddDir" "3" "02 December 2006" "" ""
.SH NAME
FcConfigAppFontAddDir \- Add fonts from directory to font database
@ -19,4 +19,4 @@ Scans the specified directory for fonts, adding each one found to the
application-specific set of fonts.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigAppFontAddFile" "3" "15 September 2006" "" ""
.TH "FcConfigAppFontAddFile" "3" "02 December 2006" "" ""
.SH NAME
FcConfigAppFontAddFile \- Add font file to font database
@ -18,4 +18,4 @@ FcBool FcConfigAppFontAddFile (FcConfig *\fIconfig\fB, const char *\fIfile\fB);
Adds an application-specific font to the configuration.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigAppFontClear" "3" "15 September 2006" "" ""
.TH "FcConfigAppFontClear" "3" "02 December 2006" "" ""
.SH NAME
FcConfigAppFontClear \- Remove all app fonts from font database
@ -18,4 +18,4 @@ void FcConfigAppFontClear (FcConfig *\fIconfig\fB);
Clears the set of application-specific fonts.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigBuildFonts" "3" "15 September 2006" "" ""
.TH "FcConfigBuildFonts" "3" "02 December 2006" "" ""
.SH NAME
FcConfigBuildFonts \- Build font database
@ -20,4 +20,4 @@ any changes to the configuration after this call have indeterminate effects.
Returns FcFalse if this operation runs out of memory.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigCreate" "3" "15 September 2006" "" ""
.TH "FcConfigCreate" "3" "02 December 2006" "" ""
.SH NAME
FcConfigCreate \- Create a configuration
@ -18,4 +18,4 @@ FcConfig * FcConfigCreate (void\fI\fB);
Creates an empty configuration.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigDestroy" "3" "15 September 2006" "" ""
.TH "FcConfigDestroy" "3" "02 December 2006" "" ""
.SH NAME
FcConfigDestroy \- Destroy a configuration
@ -20,4 +20,4 @@ this function with the return from FcConfigGetCurrent will place the library
in an indeterminate state.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigFilename" "3" "15 September 2006" "" ""
.TH "FcConfigFilename" "3" "02 December 2006" "" ""
.SH NAME
FcConfigFilename \- Find a config file
@ -28,4 +28,4 @@ directory; the built-in default directory can be overridden with the
FC_CONFIG_DIR environment variable.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigGetBlanks" "3" "15 September 2006" "" ""
.TH "FcConfigGetBlanks" "3" "02 December 2006" "" ""
.SH NAME
FcConfigGetBlanks \- Get config blanks
@ -19,4 +19,4 @@ Returns the FcBlanks object associated with the given configuration, if no
blanks were present in the configuration, this function will return 0.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigGetCache" "3" "15 September 2006" "" ""
.TH "FcConfigGetCache" "3" "02 December 2006" "" ""
.SH NAME
FcConfigGetCache \- Get cache filename
@ -18,4 +18,4 @@ char * FcConfigGetCache (FcConfig *\fIconfig\fB);
Returns the name of the file used to store per-user font information.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigGetConfigDirs" "3" "15 September 2006" "" ""
.TH "FcConfigGetConfigDirs" "3" "02 December 2006" "" ""
.SH NAME
FcConfigGetConfigDirs \- Get config directories
@ -19,4 +19,4 @@ Returns the list of font directories specified in the configuration files
for \fIconfig\fR\&. Does not include any subdirectories.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigGetConfigFiles" "3" "15 September 2006" "" ""
.TH "FcConfigGetConfigFiles" "3" "02 December 2006" "" ""
.SH NAME
FcConfigGetConfigFiles \- Get config files
@ -19,4 +19,4 @@ Returns the list of known configuration files used to generate \fIconfig\fR\&.
Note that this will not include any configuration done with FcConfigParse.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigGetCurrent" "3" "15 September 2006" "" ""
.TH "FcConfigGetCurrent" "3" "02 December 2006" "" ""
.SH NAME
FcConfigGetCurrent \- Return current configuration
@ -18,4 +18,4 @@ FcConfig * FcConfigGetCurrent (void\fI\fB);
Returns the current default configuration.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigGetFontDirs" "3" "15 September 2006" "" ""
.TH "FcConfigGetFontDirs" "3" "02 December 2006" "" ""
.SH NAME
FcConfigGetFontDirs \- Get font directories
@ -20,4 +20,4 @@ configured font directories along with any directories below those in the
filesystem.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigGetFonts" "3" "15 September 2006" "" ""
.TH "FcConfigGetFonts" "3" "02 December 2006" "" ""
.SH NAME
FcConfigGetFonts \- Get config font set
@ -11,7 +11,7 @@ FcConfigGetFonts \- Get config font set
.sp
\fB#include <fontconfig.h>
.sp
FcFontSet * FcConfigGetFonts (FcConfig *\fIconfig\fB, FcSetName\fIset\fB);
FcFontSet * FcConfigGetFonts (FcConfig *\fIconfig\fB, FcSetName \fIset\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -19,4 +19,4 @@ Returns one of the two sets of fonts from the configuration as specified
by \fIset\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigGetRescanInverval" "3" "15 September 2006" "" ""
.TH "FcConfigGetRescanInverval" "3" "02 December 2006" "" ""
.SH NAME
FcConfigGetRescanInverval \- Get config rescan interval
@ -20,4 +20,4 @@ seconds) specified in \fIconfig\fR\&. The configuration is checked during
a call to FcFontList when this interval has passed since the last check.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigParseAndLoad" "3" "15 September 2006" "" ""
.TH "FcConfigParseAndLoad" "3" "02 December 2006" "" ""
.SH NAME
FcConfigParseAndLoad \- load a configuration file
@ -21,4 +21,4 @@ with FcConfigLoad and also parsed. If 'complain' is FcFalse, no warning
will be displayed if 'file' does not exist.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigSetCurrent" "3" "15 September 2006" "" ""
.TH "FcConfigSetCurrent" "3" "02 December 2006" "" ""
.SH NAME
FcConfigSetCurrent \- Set configuration as default
@ -19,4 +19,4 @@ Sets the current default configuration to \fIconfig\fR\&. Implicitly calls
FcConfigBuildFonts if necessary, returning FcFalse if that call fails.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigSetRescanInverval" "3" "15 September 2006" "" ""
.TH "FcConfigSetRescanInverval" "3" "02 December 2006" "" ""
.SH NAME
FcConfigSetRescanInverval \- Set config rescan interval
@ -11,11 +11,11 @@ FcConfigSetRescanInverval \- Set config rescan interval
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcConfigSetRescanInverval (FcConfig *\fIconfig\fB, int\fIrescanInterval\fB);
FcBool FcConfigSetRescanInverval (FcConfig *\fIconfig\fB, int \fIrescanInterval\fB);
\fR
.SH "DESCRIPTION"
.PP
Sets the rescan interval; returns FcFalse if an error occurred.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigSubstitute" "3" "15 September 2006" "" ""
.TH "FcConfigSubstitute" "3" "02 December 2006" "" ""
.SH NAME
FcConfigSubstitute \- Execute substitutions
@ -11,11 +11,11 @@ FcConfigSubstitute \- Execute substitutions
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcConfigSubstitute (FcConfig *\fIconfig\fB, FcPattern *\fIp\fB, FcMatchKind\fIkind\fB);
FcBool FcConfigSubstitute (FcConfig *\fIconfig\fB, FcPattern *\fIp\fB, FcMatchKind \fIkind\fB);
\fR
.SH "DESCRIPTION"
.PP
Calls FcConfigSubstituteWithPat setting p_pat to NULL.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigSubstituteWithPat" "3" "15 September 2006" "" ""
.TH "FcConfigSubstituteWithPat" "3" "02 December 2006" "" ""
.SH NAME
FcConfigSubstituteWithPat \- Execute substitutions
@ -11,7 +11,7 @@ FcConfigSubstituteWithPat \- Execute substitutions
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcConfigSubstituteWithPat (FcConfig *\fIconfig\fB, FcPattern *\fIp\fB, FcPattern *\fIp_pat\fB, FcMatchKind\fIkind\fB);
FcBool FcConfigSubstituteWithPat (FcConfig *\fIconfig\fB, FcPattern *\fIp\fB, FcPattern *\fIp_pat\fB, FcMatchKind \fIkind\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -21,4 +21,4 @@ if \fIkind\fR is FcMatchFont, those tagged as font operations are applied and
p_pat is used for <test> elements with target=pattern.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigUptoDate" "3" "15 September 2006" "" ""
.TH "FcConfigUptoDate" "3" "02 December 2006" "" ""
.SH NAME
FcConfigUptoDate \- Check timestamps on config files
@ -19,4 +19,4 @@ Checks all of the files related to \fIconfig\fR and returns whether the
in-memory version is in sync with the disk version.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcDefaultSubstitute" "3" "15 September 2006" "" ""
.TH "FcDefaultSubstitute" "3" "02 December 2006" "" ""
.SH NAME
FcDefaultSubstitute \- Perform default substitutions in a pattern
@ -28,4 +28,4 @@ Patterns without a specified pixel size are given one computed from any
specified point size (default 12), dpi (default 75) and scale (default 1).
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcDirCacheValid" "3" "15 September 2006" "" ""
.TH "FcDirCacheValid" "3" "02 December 2006" "" ""
.SH NAME
FcDirCacheValid \- check directory cache timestamp
@ -19,4 +19,4 @@ Returns FcTrue if \fIcache_file\fR is no older than the
directory containing it, else FcFalse.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcDirSave" "3" "15 September 2006" "" ""
.TH "FcDirSave" "3" "02 December 2006" "" ""
.SH NAME
FcDirSave \- save a directory cache
@ -20,4 +20,4 @@ populates it with the fonts in \fIset\fR and subdirectories
in \fIdirs\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcDirScan" "3" "15 September 2006" "" ""
.TH "FcDirScan" "3" "02 December 2006" "" ""
.SH NAME
FcDirScan \- scan a font directory
@ -11,7 +11,7 @@ FcDirScan \- scan a font directory
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcDirScan (FcFontSet *\fIset\fB, FcStrSet *\fIdirs\fB, FcFileCache *\fIcache\fB, FcBlanks *\fIblanks\fB, const char *\fIdir\fB, FcBool\fIforce\fB);
FcBool FcDirScan (FcFontSet *\fIset\fB, FcStrSet *\fIdirs\fB, FcFileCache *\fIcache\fB, FcBlanks *\fIblanks\fB, const char *\fIdir\fB, FcBool \fIforce\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -22,4 +22,4 @@ present in the per-directory cache file or \fIcache\fR\&. Any
subdirectories found are added to \fIdirs\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFileScan" "3" "15 September 2006" "" ""
.TH "FcFileScan" "3" "02 December 2006" "" ""
.SH NAME
FcFileScan \- scan a font file
@ -11,7 +11,7 @@ FcFileScan \- scan a font file
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcFileScan (FcFontSet *\fIset\fB, FcStrSet *\fIdirs\fB, FcFileCache *\fIcache\fB, FcBlanks *\fIblanks\fB, const char *\fIfile\fB, FcBool\fIforce\fB);
FcBool FcFileScan (FcFontSet *\fIset\fB, FcStrSet *\fIdirs\fB, FcFileCache *\fIcache\fB, FcBlanks *\fIblanks\fB, const char *\fIfile\fB, FcBool \fIforce\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -22,4 +22,4 @@ associated information is found in \fIcache\fR\&. If
\fIdirs\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFini" "3" "15 September 2006" "" ""
.TH "FcFini" "3" "02 December 2006" "" ""
.SH NAME
FcFini \- finalize fonconfig library
@ -21,4 +21,4 @@ new call to one of the FcInit functions before any other fontconfig
function may be called.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFontList" "3" "15 September 2006" "" ""
.TH "FcFontList" "3" "02 December 2006" "" ""
.SH NAME
FcFontList \- List fonts
@ -19,4 +19,4 @@ Selects fonts matching \fIp\fR, creates patterns from those fonts containing
only the objects in \fIos\fR and returns the set of unique such patterns.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFontMatch" "3" "15 September 2006" "" ""
.TH "FcFontMatch" "3" "02 December 2006" "" ""
.SH NAME
FcFontMatch \- Return best font
@ -20,4 +20,4 @@ should be called only after FcConfigSubstitute and FcDefaultSubstitute have
been called for \fIp\fR; otherwise the results will not be correct.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFontRenderPrepare" "3" "15 September 2006" "" ""
.TH "FcFontRenderPrepare" "3" "02 December 2006" "" ""
.SH NAME
FcFontRenderPrepare \- Prepare pattern for loading font file
@ -21,4 +21,4 @@ value from \fIpat\fR for elements appearing in both. The result is passed to
FcConfigSubstitute with \fIkind\fR FcMatchFont and then returned.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFontSetAdd" "3" "15 September 2006" "" ""
.TH "FcFontSetAdd" "3" "02 December 2006" "" ""
.SH NAME
FcFontSetAdd \- Add to a font set
@ -19,4 +19,4 @@ Adds a pattern to a font set. Note that the pattern is not copied before
being inserted into the set.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFontSetCreate" "3" "15 September 2006" "" ""
.TH "FcFontSetCreate" "3" "02 December 2006" "" ""
.SH NAME
FcFontSetCreate \- Create a font set
@ -18,4 +18,4 @@ FcFontSet * FcFontSetCreate (void\fI\fB);
Creates an empty font set.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFontSetDestroy" "3" "15 September 2006" "" ""
.TH "FcFontSetDestroy" "3" "02 December 2006" "" ""
.SH NAME
FcFontSetDestroy \- Destroy a font set
@ -19,4 +19,4 @@ Destroys a font set. Note that this destroys any referenced patterns as
well.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFontSort" "3" "15 September 2006" "" ""
.TH "FcFontSort" "3" "02 December 2006" "" ""
.SH NAME
FcFontSort \- Return list of matching fonts
@ -11,7 +11,7 @@ FcFontSort \- Return list of matching fonts
.sp
\fB#include <fontconfig.h>
.sp
FcFontSet * FcFontSort (FcConfig *\fIconfig\fB, FcPattern *\fIp\fB, FcBool\fItrim\fB, FcCharSet **\fIcsp\fB, FcResult *\fIresult\fB);
FcFontSet * FcFontSort (FcConfig *\fIconfig\fB, FcPattern *\fIp\fB, FcBool \fItrim\fB, FcCharSet **\fIcsp\fB, FcResult *\fIresult\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -30,4 +30,4 @@ FcFontRenderPrepare which combines them into a complete pattern.
The FcFontSet returned by FcFontSort is destroyed by caling FcFontSetDestroy.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFreeTypeCharIndex" "3" "15 September 2006" "" ""
.TH "FcFreeTypeCharIndex" "3" "02 December 2006" "" ""
.SH NAME
FcFreeTypeCharIndex \- map Unicode to glyph id
@ -12,7 +12,7 @@ FcFreeTypeCharIndex \- map Unicode to glyph id
\fB#include <fontconfig.h>
#include <fcfreetype.h>
.sp
FT_UInt FcFreeTypeCharIndex (FT_Face\fIface\fB, FcChar32\fIucs4\fB);
FT_UInt FcFreeTypeCharIndex (FT_Face \fIface\fB, FcChar32 \fIucs4\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -23,4 +23,4 @@ sensitive areas; results from this function are intended to be cached by
higher level functions.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFreeTypeCharSet" "3" "15 September 2006" "" ""
.TH "FcFreeTypeCharSet" "3" "02 December 2006" "" ""
.SH NAME
FcFreeTypeCharSet \- compute unicode coverage
@ -12,7 +12,7 @@ FcFreeTypeCharSet \- compute unicode coverage
\fB#include <fontconfig.h>
#include <fcfreetype.h>
.sp
FcCharSet * FcFreeTypeCharSet (FT_Face\fIface\fB, FcBlanks *\fIblanks\fB);
FcCharSet * FcFreeTypeCharSet (FT_Face \fIface\fB, FcBlanks *\fIblanks\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -22,4 +22,4 @@ If 'blanks' is not 0, the glyphs in the font are examined and any blank glyphs
not in 'blanks' are not placed in the returned FcCharSet.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,16 +3,16 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFreeTypeQuery" "3" "15 September 2006" "" ""
.TH "FcFreeTypeQuery" "3" "02 December 2006" "" ""
.SH NAME
FcFreeTypeQuery \- compute font file pattern
FcFreeTypeQuery \- compute pattern from font file (and index)
.SH SYNOPSIS
.sp
\fB#include <fontconfig.h>
#include <fcfreetype.h>
.sp
FcPattern * FcFreeTypeQuery (const char *\fIfile\fB, int\fIid\fB, FcBlanks *\fIblanks\fB, int *\fIcount\fB);
FcPattern * FcFreeTypeQuery (const char *\fIfile\fB, int \fIid\fB, FcBlanks *\fIblanks\fB, int *\fIcount\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -20,4 +20,4 @@ Constructs a pattern representing the 'id'th font in 'file'. The number
of fonts in 'file' is returned in 'count'.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -0,0 +1,23 @@
.\" This manpage has been automatically generated by docbook2man
.\" from a DocBook document. This tool can be found at:
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFreeTypeQueryFace" "3" "02 December 2006" "" ""
.SH NAME
FcFreeTypeQueryFace \- compute pattern from FT_Face
.SH SYNOPSIS
.sp
\fB#include <fontconfig.h>
#include <fcfreetype.h>
.sp
FcPattern * FcFreeTypeQueryFace (const FT_Face \fIface\fB, const char *\fIfile\fB, int \fIid\fB, FcBlanks *\fIblanks\fB);
\fR
.SH "DESCRIPTION"
.PP
Constructs a pattern representing 'face'. 'file' and 'id' are used solely as
data for pattern elements (FC_FILE, FC_INDEX and sometimes FC_FAMILY).
.SH "VERSION"
.PP
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcGetVersion" "3" "15 September 2006" "" ""
.TH "FcGetVersion" "3" "02 December 2006" "" ""
.SH NAME
FcGetVersion \- library version number
@ -18,4 +18,4 @@ int FcGetVersion (void\fI\fB);
Returns the version number of the library.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcInit" "3" "15 September 2006" "" ""
.TH "FcInit" "3" "02 December 2006" "" ""
.SH NAME
FcInit \- initialize fontconfig library
@ -21,4 +21,4 @@ process succeeded or not. If the default configuration has already
been loaded, this routine does nothing and returns FcTrue.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcInitBringUptoDate" "3" "15 September 2006" "" ""
.TH "FcInitBringUptoDate" "3" "02 December 2006" "" ""
.SH NAME
FcInitBringUptoDate \- reload configuration files if needed
@ -20,4 +20,4 @@ configuration if the interval has passed and reloading the configuration if
when any changes are detected.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcInitLoadConfig" "3" "15 September 2006" "" ""
.TH "FcInitLoadConfig" "3" "02 December 2006" "" ""
.SH NAME
FcInitLoadConfig \- load configuration
@ -19,4 +19,4 @@ Loads the default configuration file and returns the resulting configuration.
Does not load any font information.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcInitLoadConfigAndFonts" "3" "15 September 2006" "" ""
.TH "FcInitLoadConfigAndFonts" "3" "02 December 2006" "" ""
.SH NAME
FcInitLoadConfigAndFonts \- load configuration and font data
@ -19,4 +19,4 @@ Loads the default configuration file and builds information about the
available fonts. Returns the resulting configuration.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcInitReinitialize" "3" "15 September 2006" "" ""
.TH "FcInitReinitialize" "3" "02 December 2006" "" ""
.SH NAME
FcInitReinitialize \- re-initialize library
@ -19,4 +19,4 @@ Forces the default configuration file to be reloaded and resets the default
configuration.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcMatrixCopy" "3" "15 September 2006" "" ""
.TH "FcMatrixCopy" "3" "02 December 2006" "" ""
.SH NAME
FcMatrixCopy \- Copy a matrix
@ -19,4 +19,4 @@ void FcMatrixCopy (const FcMatrix *\fImatrix\fB);
and copies \fImat\fR into it.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcMatrixEqual" "3" "15 September 2006" "" ""
.TH "FcMatrixEqual" "3" "02 December 2006" "" ""
.SH NAME
FcMatrixEqual \- Compare two matrices
@ -20,4 +20,4 @@ and \fImatrix2\fR returning FcTrue when they are equal and
FcFalse when they are not.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcMatrixInit" "3" "15 September 2006" "" ""
.TH "FcMatrixInit" "3" "02 December 2006" "" ""
.SH NAME
FcMatrixInit \- initialize an FcMatrix structure
@ -19,4 +19,4 @@ void FcMatrixInit (FcMatrix *\fImatrix\fB);
to the identity matrix.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcMatrixMultiply" "3" "15 September 2006" "" ""
.TH "FcMatrixMultiply" "3" "02 December 2006" "" ""
.SH NAME
FcMatrixMultiply \- Multiply matrices
@ -20,4 +20,4 @@ void FcMatrixMultiply (FcMatrix *\fIresult\fB, const FcMatrix *\fImatrix1\fB, co
the result in \fIresult\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcMatrixRotate" "3" "15 September 2006" "" ""
.TH "FcMatrixRotate" "3" "02 December 2006" "" ""
.SH NAME
FcMatrixRotate \- Rotate a matrix
@ -11,7 +11,7 @@ FcMatrixRotate \- Rotate a matrix
.sp
\fB#include <fontconfig.h>
.sp
void FcMatrixRotate (FcMatrix *\fImatrix\fB, double\fIcos\fB, double\fIsin\fB);
void FcMatrixRotate (FcMatrix *\fImatrix\fB, double \fIcos\fB, double \fIsin\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -26,4 +26,4 @@ matrix:
.fi
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcMatrixScale" "3" "15 September 2006" "" ""
.TH "FcMatrixScale" "3" "02 December 2006" "" ""
.SH NAME
FcMatrixScale \- Scale a matrix
@ -11,7 +11,7 @@ FcMatrixScale \- Scale a matrix
.sp
\fB#include <fontconfig.h>
.sp
void FcMatrixScale (FcMatrix *\fImatrix\fB, double\fIsx\fB, double\fIdy\fB);
void FcMatrixScale (FcMatrix *\fImatrix\fB, double \fIsx\fB, double \fIdy\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -26,4 +26,4 @@ the matrix:
.fi
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcMatrixShear" "3" "15 September 2006" "" ""
.TH "FcMatrixShear" "3" "02 December 2006" "" ""
.SH NAME
FcMatrixShear \- Shear a matrix
@ -11,7 +11,7 @@ FcMatrixShear \- Shear a matrix
.sp
\fB#include <fontconfig.h>
.sp
void FcMatrixShear (FcMatrix *\fImatrix\fB, double\fIsh\fB, double\fIsv\fB);
void FcMatrixShear (FcMatrix *\fImatrix\fB, double \fIsh\fB, double \fIsv\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -26,4 +26,4 @@ the matrix:
.fi
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameConstant" "3" "15 September 2006" "" ""
.TH "FcNameConstant" "3" "02 December 2006" "" ""
.SH NAME
FcNameConstant \- Get the value for a symbolic constant
@ -19,4 +19,4 @@ Returns whether a symbolic constant with name \fIstring\fR is registered,
placing the value of the constant in \fIresult\fR if present.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameGetConstant" "3" "15 September 2006" "" ""
.TH "FcNameGetConstant" "3" "02 December 2006" "" ""
.SH NAME
FcNameGetConstant \- Lookup symbolic constant
@ -18,4 +18,4 @@ const FcConstant * FcNameGetConstant (FcChar8 *\fIstring\fB);
Return the FcConstant structure related to symbolic constant \fIstring\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameGetObjectType" "3" "15 September 2006" "" ""
.TH "FcNameGetObjectType" "3" "02 December 2006" "" ""
.SH NAME
FcNameGetObjectType \- Lookup an object type
@ -18,4 +18,4 @@ const FcObjectType * FcNameGetObjectType (const char *\fIobject\fB);
Return the object type for the pattern element named \fIobject\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameParse" "3" "15 September 2006" "" ""
.TH "FcNameParse" "3" "02 December 2006" "" ""
.SH NAME
FcNameParse \- Parse a pattern string
@ -18,4 +18,4 @@ FcPattern * FcNameParse (const char *\fIname\fB);
Converts \fIname\fR from the standard text format described above into a pattern.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameRegisterConstants" "3" "15 September 2006" "" ""
.TH "FcNameRegisterConstants" "3" "02 December 2006" "" ""
.SH NAME
FcNameRegisterConstants \- Register symbolic constants
@ -11,11 +11,11 @@ FcNameRegisterConstants \- Register symbolic constants
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcNameRegisterConstants (const FcConstant *\fIconsts\fB, int\fInconsts\fB);
FcBool FcNameRegisterConstants (const FcConstant *\fIconsts\fB, int \fInconsts\fB);
\fR
.SH "DESCRIPTION"
.PP
Register \fInconsts\fR new symbolic constants.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameRegisterObjectTypes" "3" "15 September 2006" "" ""
.TH "FcNameRegisterObjectTypes" "3" "02 December 2006" "" ""
.SH NAME
FcNameRegisterObjectTypes \- Register object types
@ -11,11 +11,11 @@ FcNameRegisterObjectTypes \- Register object types
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcNameRegisterObjectTypes (const FcObjectType *\fItypes\fB, int\fIntype\fB);
FcBool FcNameRegisterObjectTypes (const FcObjectType *\fItypes\fB, int \fIntype\fB);
\fR
.SH "DESCRIPTION"
.PP
Register \fIntype\fR new object types.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameUnparse" "3" "15 September 2006" "" ""
.TH "FcNameUnparse" "3" "02 December 2006" "" ""
.SH NAME
FcNameUnparse \- Convert a pattern back into a string that can be parsed
@ -20,4 +20,4 @@ The return value is not static, but instead refers to newly allocated memory
which should be freed by the caller.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameUnregisterConstants" "3" "15 September 2006" "" ""
.TH "FcNameUnregisterConstants" "3" "02 December 2006" "" ""
.SH NAME
FcNameUnregisterConstants \- Unregister symbolic constants
@ -11,11 +11,11 @@ FcNameUnregisterConstants \- Unregister symbolic constants
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcNameUnregisterConstants (const FcConstant *\fIconsts\fB, int\fInconsts\fB);
FcBool FcNameUnregisterConstants (const FcConstant *\fIconsts\fB, int \fInconsts\fB);
\fR
.SH "DESCRIPTION"
.PP
Unregister \fInconsts\fR symbolic constants.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameUnregisterObjectTypes" "3" "15 September 2006" "" ""
.TH "FcNameUnregisterObjectTypes" "3" "02 December 2006" "" ""
.SH NAME
FcNameUnregisterObjectTypes \- Unregister object types
@ -11,11 +11,11 @@ FcNameUnregisterObjectTypes \- Unregister object types
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcNameUnregisterObjectTypes (const FcObjectType *\fItypes\fB, int\fIntype\fB);
FcBool FcNameUnregisterObjectTypes (const FcObjectType *\fItypes\fB, int \fIntype\fB);
\fR
.SH "DESCRIPTION"
.PP
Unregister \fIntype\fR object types.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcObjectSetAdd" "3" "15 September 2006" "" ""
.TH "FcObjectSetAdd" "3" "02 December 2006" "" ""
.SH NAME
FcObjectSetAdd \- Add to an object set
@ -18,4 +18,4 @@ FcBool FcObjectSetAdd (FcObjectSet *\fIos\fB, const char *\fIobject\fB);
Adds a proprety name to the set.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcObjectSetBuild" "3" "15 September 2006" "" ""
.TH "FcObjectSetBuild" "3" "02 December 2006" "" ""
.SH NAME
FcObjectSetBuild, FcObjectSetVaBuild \- Build object set from args
@ -13,11 +13,11 @@ FcObjectSetBuild, FcObjectSetVaBuild \- Build object set from args
.sp
FcObjectSet * FcObjectSetBuild (const char *\fIfirst\fB, \&...\fI\fB);
.sp
FcObjectSet * FcObjectSetVaBuild (const char *\fIfirst\fB, va_list\fIva\fB);
FcObjectSet * FcObjectSetVaBuild (const char *\fIfirst\fB, va_list \fIva\fB);
\fR
.SH "DESCRIPTION"
.PP
These build an object set from a null-terminated list of property names.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcObjectSetCreate" "3" "15 September 2006" "" ""
.TH "FcObjectSetCreate" "3" "02 December 2006" "" ""
.SH NAME
FcObjectSetCreate \- Create an object set
@ -18,4 +18,4 @@ FcObjectSet * FcObjectSetCreate (void\fI\fB);
Creates an empty set.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcObjectSetDestroy" "3" "15 September 2006" "" ""
.TH "FcObjectSetDestroy" "3" "02 December 2006" "" ""
.SH NAME
FcObjectSetDestroy \- Destroy an object set
@ -18,4 +18,4 @@ void FcObjectSetDestroy (FcObjectSet *\fIos\fB);
Destroys an object set.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcPatternAdd-Type" "3" "15 September 2006" "" ""
.TH "FcPatternAdd-Type" "3" "02 December 2006" "" ""
.SH NAME
FcPatternAddInteger, FcPatternAddDouble, FcPatternAddString, FcPatternAddMatrix, FcPatternAddCharSet, FcPatternAddBool \- Add a typed value to a pattern
@ -11,9 +11,9 @@ FcPatternAddInteger, FcPatternAddDouble, FcPatternAddString, FcPatternAddMatrix,
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcPatternAddInteger (FcPattern *\fIp\fB, const char *\fIobject\fB, int\fIi\fB);
FcBool FcPatternAddInteger (FcPattern *\fIp\fB, const char *\fIobject\fB, int \fIi\fB);
.sp
FcBool FcPatternAddDouble (FcPattern *\fIp\fB, const char *\fIobject\fB, double\fId\fB);
FcBool FcPatternAddDouble (FcPattern *\fIp\fB, const char *\fIobject\fB, double \fId\fB);
.sp
FcBool FcPatternAddString (FcPattern *\fIp\fB, const char *\fIobject\fB, const char *\fIs\fB);
.sp
@ -21,7 +21,7 @@ FcBool FcPatternAddMatrix (FcPattern *\fIp\fB, const char *\fIobject\fB, const F
.sp
FcBool FcPatternAddCharSet (FcPattern *\fIp\fB, const char *\fIobject\fB, const FcCharSet *\fIc\fB);
.sp
FcBool FcPatternAddBool (FcPattern *\fIp\fB, const char *\fIobject\fB, FcBool\fIb\fB);
FcBool FcPatternAddBool (FcPattern *\fIp\fB, const char *\fIobject\fB, FcBool \fIb\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -31,4 +31,4 @@ will provide compile-time typechecking. These all append values to
any existing list of values.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcPatternAdd" "3" "15 September 2006" "" ""
.TH "FcPatternAdd" "3" "02 December 2006" "" ""
.SH NAME
FcPatternAdd \- Add a value to a pattern
@ -11,7 +11,7 @@ FcPatternAdd \- Add a value to a pattern
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcPatternAdd (FcPattern *\fIp\fB, const char *\fIobject\fB, FcValue\fIvalue\fB, FcBool\fIappend\fB);
FcBool FcPatternAdd (FcPattern *\fIp\fB, const char *\fIobject\fB, FcValue \fIvalue\fB, FcBool \fIappend\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -22,4 +22,4 @@ existing list, otherwise it is inserted at the begining. `value' is saved
retains no reference to any application-supplied data structure.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcPatternAddWeak" "3" "15 September 2006" "" ""
.TH "FcPatternAddWeak" "3" "02 December 2006" "" ""
.SH NAME
FcPatternAddWeak \- Add a value to a pattern with weak binding
@ -11,7 +11,7 @@ FcPatternAddWeak \- Add a value to a pattern with weak binding
.sp
\fB#include <fontconfig.h>
.sp
FcBool FcPatternAddWeak (FcPattern *\fIp\fB, const char *\fIobject\fB, FcValue\fIvalue\fB, FcBool\fIappend\fB);
FcBool FcPatternAddWeak (FcPattern *\fIp\fB, const char *\fIobject\fB, FcValue \fIvalue\fB, FcBool \fIappend\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -19,4 +19,4 @@ FcPatternAddWeak is essentially the same as FcPatternAdd except that any
values added to the list have binding \fIweak\fR instead of \fIstrong\fR\&.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcPatternBuild" "3" "15 September 2006" "" ""
.TH "FcPatternBuild" "3" "02 December 2006" "" ""
.SH NAME
FcPatternBuild, FcPatternVaBuild \- Create patterns from arguments
@ -13,7 +13,7 @@ FcPatternBuild, FcPatternVaBuild \- Create patterns from arguments
.sp
FcPattern * FcPatternBuild (FcPattern *\fIorig\fB, \&...\fI\fB);
.sp
FcPattern * FcPatternVaBuild (FcPattern *\fIorig\fB, va_list\fIva\fB);
FcPattern * FcPatternVaBuild (FcPattern *\fIorig\fB, va_list \fIva\fB);
\fR
.SH "DESCRIPTION"
.PP
@ -44,4 +44,4 @@ FcPatternVaBuild is used when the arguments are already in the form of a
varargs value.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcPatternCreate" "3" "15 September 2006" "" ""
.TH "FcPatternCreate" "3" "02 December 2006" "" ""
.SH NAME
FcPatternCreate \- Create a pattern
@ -18,4 +18,4 @@ FcPattern * FcPatternCreate (void\fI\fB);
Creates a pattern with no properties; used to build patterns from scratch.
.SH "VERSION"
.PP
Fontconfig version 2.4.1
Fontconfig version 2.4.2

Some files were not shown because too many files have changed in this diff Show More