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 Fontconfig
Font configuration and customization library Font configuration and customization library
Version 2.4.1 Version 2.4.2
2006-09-15 2006-12-02
Check INSTALL for compilation and installation instructions. Check INSTALL for compilation and installation instructions.
Report bugs to https://bugs.freedesktop.org in the fontconfig module. 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 2.4.1
Keith Packard: Keith Packard:

View File

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

View File

@ -1,5 +1,5 @@
dnl 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
dnl Copyright © 2003 Keith Packard dnl Copyright © 2003 Keith Packard
dnl 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 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 Yes, it is a pain to synchronize version numbers. Unfortunately, it's
dnl not possible to extract the version number here from fontconfig.h 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 AM_MAINTAINER_MODE
dnl libtool versioning dnl libtool versioning
@ -41,11 +41,11 @@ dnl libtool versioning
dnl bump revision when fixing bugs dnl bump revision when fixing bugs
dnl bump current and age, reset revision to zero when adding APIs 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 dnl bump current, leave age, reset revision to zero when changing/removing APIS
LT_CURRENT=2 LT_CURRENT=3
LT_REVISION=0 LT_REVISION=0
AC_SUBST(LT_CURRENT) AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION) AC_SUBST(LT_REVISION)
LT_AGE=1 LT_AGE=2
LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE" LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
AC_SUBST(LT_VERSION_INFO) AC_SUBST(LT_VERSION_INFO)
@ -166,7 +166,7 @@ AC_TYPE_PID_T
# Checks for library functions. # Checks for library functions.
AC_FUNC_VPRINTF AC_FUNC_VPRINTF
AC_FUNC_MMAP 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 # Checks for iconv
@ -510,7 +510,7 @@ default_docs="yes"
# Check if docs exist or can be created # Check if docs exist or can be created
# #
if test x$HASDOCBOOK = xno; then if test x$HASDOCBOOK = xno; then
if test -f doc/fonts-conf.5; then if test -f $srcdir/doc/fonts-conf.5; then
: :
else else
default_docs="no" default_docs="no"
@ -562,7 +562,6 @@ fc-glyphname/Makefile
fc-case/Makefile fc-case/Makefile
fc-arch/Makefile fc-arch/Makefile
src/Makefile src/Makefile
src/fontconfig.def
conf.d/Makefile conf.d/Makefile
fc-cache/Makefile fc-cache/Makefile
fc-cat/Makefile fc-cat/Makefile

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcCharSetCopy" "3" "15 September 2006" "" "" .TH "FcCharSetCopy" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcCharSetCopy \- Copy a charset 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\&. than increment the reference count on \fIsrc\fR\&.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigAppFontAddFile" "3" "15 September 2006" "" "" .TH "FcConfigAppFontAddFile" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcConfigAppFontAddFile \- Add font file to font database 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. Adds an application-specific font to the configuration.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigFilename" "3" "15 September 2006" "" "" .TH "FcConfigFilename" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcConfigFilename \- Find a config file 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. FC_CONFIG_DIR environment variable.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigGetRescanInverval" "3" "15 September 2006" "" "" .TH "FcConfigGetRescanInverval" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcConfigGetRescanInverval \- Get config rescan interval 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. a call to FcFontList when this interval has passed since the last check.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigParseAndLoad" "3" "15 September 2006" "" "" .TH "FcConfigParseAndLoad" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcConfigParseAndLoad \- load a configuration file 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. will be displayed if 'file' does not exist.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcConfigSubstituteWithPat" "3" "15 September 2006" "" "" .TH "FcConfigSubstituteWithPat" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcConfigSubstituteWithPat \- Execute substitutions FcConfigSubstituteWithPat \- Execute substitutions
@ -11,7 +11,7 @@ FcConfigSubstituteWithPat \- Execute substitutions
.sp .sp
\fB#include <fontconfig.h> \fB#include <fontconfig.h>
.sp .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 \fR
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .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. p_pat is used for <test> elements with target=pattern.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcDirCacheValid" "3" "15 September 2006" "" "" .TH "FcDirCacheValid" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcDirCacheValid \- check directory cache timestamp 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. directory containing it, else FcFalse.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFontRenderPrepare" "3" "15 September 2006" "" "" .TH "FcFontRenderPrepare" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcFontRenderPrepare \- Prepare pattern for loading font file 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. FcConfigSubstitute with \fIkind\fR FcMatchFont and then returned.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,16 +3,16 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcFreeTypeQuery" "3" "15 September 2006" "" "" .TH "FcFreeTypeQuery" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcFreeTypeQuery \- compute font file pattern FcFreeTypeQuery \- compute pattern from font file (and index)
.SH SYNOPSIS .SH SYNOPSIS
.sp .sp
\fB#include <fontconfig.h> \fB#include <fontconfig.h>
#include <fcfreetype.h> #include <fcfreetype.h>
.sp .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 \fR
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .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'. of fonts in 'file' is returned in 'count'.
.SH "VERSION" .SH "VERSION"
.PP .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/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcGetVersion" "3" "15 September 2006" "" "" .TH "FcGetVersion" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcGetVersion \- library version number FcGetVersion \- library version number
@ -18,4 +18,4 @@ int FcGetVersion (void\fI\fB);
Returns the version number of the library. Returns the version number of the library.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcNameUnparse" "3" "15 September 2006" "" "" .TH "FcNameUnparse" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcNameUnparse \- Convert a pattern back into a string that can be parsed 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. which should be freed by the caller.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcObjectSetAdd" "3" "15 September 2006" "" "" .TH "FcObjectSetAdd" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcObjectSetAdd \- Add to an object set 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. Adds a proprety name to the set.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcPatternAdd" "3" "15 September 2006" "" "" .TH "FcPatternAdd" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcPatternAdd \- Add a value to a pattern FcPatternAdd \- Add a value to a pattern
@ -11,7 +11,7 @@ FcPatternAdd \- Add a value to a pattern
.sp .sp
\fB#include <fontconfig.h> \fB#include <fontconfig.h>
.sp .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 \fR
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .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. retains no reference to any application-supplied data structure.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcPatternAddWeak" "3" "15 September 2006" "" "" .TH "FcPatternAddWeak" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcPatternAddWeak \- Add a value to a pattern with weak binding 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 .sp
\fB#include <fontconfig.h> \fB#include <fontconfig.h>
.sp .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 \fR
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .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\&. values added to the list have binding \fIweak\fR instead of \fIstrong\fR\&.
.SH "VERSION" .SH "VERSION"
.PP .PP
Fontconfig version 2.4.1 Fontconfig version 2.4.2

View File

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

View File

@ -3,7 +3,7 @@
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches, .\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve@ggi-project.org>. .\" etc. to Steve Cheng <steve@ggi-project.org>.
.TH "FcPatternCreate" "3" "15 September 2006" "" "" .TH "FcPatternCreate" "3" "02 December 2006" "" ""
.SH NAME .SH NAME
FcPatternCreate \- Create a pattern 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. Creates a pattern with no properties; used to build patterns from scratch.
.SH "VERSION" .SH "VERSION"
.PP .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