cairo 1.10.0-x86-mingw32 → 1.10.1-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of cairo might be problematic. Click here for more details.
- data/Gemfile +14 -0
- data/NEWS +33 -0
- data/README.rdoc +115 -0
- data/Rakefile +69 -80
- data/ext/cairo/cairo.def +1 -1
- data/ext/cairo/depend +2 -0
- data/ext/cairo/extconf.rb +7 -5
- data/ext/cairo/rb_cairo.c +4 -1
- data/ext/cairo/rb_cairo.h +4 -0
- data/ext/cairo/rb_cairo_constants.c +6 -2
- data/ext/cairo/rb_cairo_context.c +3 -2
- data/ext/cairo/rb_cairo_device.c +8 -0
- data/ext/cairo/rb_cairo_font_face.c +1 -1
- data/ext/cairo/rb_cairo_surface.c +40 -0
- data/lib/1.8/cairo.so +0 -0
- data/lib/1.9/cairo.so +0 -0
- data/lib/cairo.rb +3 -3
- data/lib/cairo/color.rb +4 -4
- data/lib/cairo/context/path.rb +2 -1
- data/test/run-test.rb +1 -1
- data/test/test_context.rb +1 -1
- data/test/test_font_face.rb +1 -1
- data/test/test_recording_surface.rb +4 -1
- data/test/test_xml_surface.rb +2 -1
- data/vendor/local/bin/fc-cache.exe +0 -0
- data/vendor/local/bin/fc-cat.exe +0 -0
- data/vendor/local/bin/fc-list.exe +0 -0
- data/vendor/local/bin/freetype-config +160 -0
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
- data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
- data/vendor/local/bin/xmlwf.exe +0 -0
- data/vendor/local/etc/fonts/fonts.dtd +224 -0
- data/vendor/local/include/cairo/cairo-version.h +1 -1
- data/vendor/local/include/cairo/cairo.h +1 -1
- data/vendor/local/include/expat.h +1014 -0
- data/vendor/local/include/expat_external.h +115 -0
- data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
- data/vendor/local/include/fontconfig/fcprivate.h +123 -0
- data/vendor/local/include/fontconfig/fontconfig.h +963 -0
- data/vendor/local/include/freetype2/freetype/config/ftconfig.h +477 -0
- data/vendor/local/include/freetype2/freetype/config/ftheader.h +780 -0
- data/vendor/local/include/freetype2/freetype/config/ftmodule.h +20 -0
- data/vendor/local/include/freetype2/freetype/config/ftoption.h +733 -0
- data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +173 -0
- data/vendor/local/include/freetype2/freetype/freetype.h +3919 -0
- data/vendor/local/include/freetype2/freetype/ftadvanc.h +179 -0
- data/vendor/local/include/freetype2/freetype/ftbbox.h +94 -0
- data/vendor/local/include/freetype2/freetype/ftbdf.h +209 -0
- data/vendor/local/include/freetype2/freetype/ftbitmap.h +227 -0
- data/vendor/local/include/freetype2/freetype/ftcache.h +1125 -0
- data/vendor/local/include/freetype2/freetype/ftchapters.h +103 -0
- data/vendor/local/include/freetype2/freetype/ftcid.h +166 -0
- data/vendor/local/include/freetype2/freetype/fterrdef.h +244 -0
- data/vendor/local/include/freetype2/freetype/fterrors.h +206 -0
- data/vendor/local/include/freetype2/freetype/ftgasp.h +120 -0
- data/vendor/local/include/freetype2/freetype/ftglyph.h +613 -0
- data/vendor/local/include/freetype2/freetype/ftgxval.h +358 -0
- data/vendor/local/include/freetype2/freetype/ftgzip.h +102 -0
- data/vendor/local/include/freetype2/freetype/ftimage.h +1301 -0
- data/vendor/local/include/freetype2/freetype/ftincrem.h +353 -0
- data/vendor/local/include/freetype2/freetype/ftlcdfil.h +213 -0
- data/vendor/local/include/freetype2/freetype/ftlist.h +277 -0
- data/vendor/local/include/freetype2/freetype/ftlzw.h +99 -0
- data/vendor/local/include/freetype2/freetype/ftmac.h +274 -0
- data/vendor/local/include/freetype2/freetype/ftmm.h +378 -0
- data/vendor/local/include/freetype2/freetype/ftmodapi.h +483 -0
- data/vendor/local/include/freetype2/freetype/ftmoderr.h +155 -0
- data/vendor/local/include/freetype2/freetype/ftotval.h +203 -0
- data/vendor/local/include/freetype2/freetype/ftoutln.h +537 -0
- data/vendor/local/include/freetype2/freetype/ftpfr.h +172 -0
- data/vendor/local/include/freetype2/freetype/ftrender.h +230 -0
- data/vendor/local/include/freetype2/freetype/ftsizes.h +159 -0
- data/vendor/local/include/freetype2/freetype/ftsnames.h +200 -0
- data/vendor/local/include/freetype2/freetype/ftstroke.h +716 -0
- data/vendor/local/include/freetype2/freetype/ftsynth.h +80 -0
- data/vendor/local/include/freetype2/freetype/ftsystem.h +347 -0
- data/vendor/local/include/freetype2/freetype/fttrigon.h +350 -0
- data/vendor/local/include/freetype2/freetype/fttypes.h +588 -0
- data/vendor/local/include/freetype2/freetype/ftwinfnt.h +274 -0
- data/vendor/local/include/freetype2/freetype/ftxf86.h +83 -0
- data/vendor/local/include/freetype2/freetype/t1tables.h +504 -0
- data/vendor/local/include/freetype2/freetype/ttnameid.h +1247 -0
- data/vendor/local/include/freetype2/freetype/tttables.h +759 -0
- data/vendor/local/include/freetype2/freetype/tttags.h +107 -0
- data/vendor/local/include/freetype2/freetype/ttunpat.h +59 -0
- data/vendor/local/include/ft2build.h +61 -0
- data/vendor/local/include/libpng14/png.h +2701 -0
- data/vendor/local/include/libpng14/pngconf.h +1525 -0
- data/vendor/local/include/png.h +2701 -0
- data/vendor/local/include/pngconf.h +1525 -0
- data/vendor/local/include/zconf.h +461 -0
- data/vendor/local/include/zlib.h +1589 -0
- data/vendor/local/lib/cairo.lib +0 -0
- data/vendor/local/lib/expat.lib +0 -0
- data/vendor/local/lib/fontconfig.def +195 -0
- data/vendor/local/lib/fontconfig.lib +0 -0
- data/vendor/local/lib/freetype.def +186 -0
- data/vendor/local/lib/freetype.lib +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libexpat.def +73 -0
- data/vendor/local/lib/libexpat.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libpng.def +192 -0
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng14.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-png.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo.pc +2 -2
- data/vendor/local/lib/pkgconfig/fontconfig.pc +11 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +12 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng14.pc +11 -0
- data/vendor/local/lib/zdll.lib +0 -0
- data/vendor/local/lib/zlib.def +67 -0
- data/vendor/local/man/man1/xmlwf.1 +251 -0
- data/vendor/local/manifest/{cairo-dev_1.10.0-1_win32.mft → cairo-dev_1.10.2-1_win32.mft} +6 -3
- data/vendor/local/manifest/cairo_1.10.2-1_win32.mft +7 -0
- data/vendor/local/manifest/expat-dev_2.0.1-1_win32.mft +10 -0
- data/vendor/local/manifest/fontconfig-dev_2.8.0-2_win32.mft +387 -0
- data/vendor/local/manifest/freetype-dev_2.4.2-1_win32.mft +56 -0
- data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +15 -0
- data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +8 -0
- data/vendor/local/share/aclocal/freetype2.m4 +194 -0
- data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING +0 -0
- data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING-LGPL-2.1 +0 -0
- data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING-MPL-1.1 +0 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel.pdf +42484 -4
- data/vendor/local/share/doc/fontconfig/fontconfig-devel.txt +5046 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiccreate.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdeletenew.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdestroy.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiclock.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicnewfile.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicorigfile.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicreplaceorig.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicunlock.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksadd.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblankscreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksdestroy.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksismember.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachecopyset.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachedir.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumfont.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumsubdir.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachesubdir.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetaddchar.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcopy.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcount.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcoverage.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcreate.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetdestroy.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetequal.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetfirstpage.html +238 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsethaschar.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersect.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersectcount.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetissubset.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetmerge.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnew.html +208 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnextpage.html +243 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtract.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtractcount.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetunion.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontadddir.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontaddfile.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontclear.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigbuildfonts.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigdestroy.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigenablehome.html +230 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigfilename.html +237 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetblanks.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcache.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcachedirs.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigdirs.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigfiles.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcurrent.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfontdirs.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfonts.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetrescaninterval.html +230 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfighome.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigparseandload.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigreference.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetcurrent.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetrescaninterval.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitute.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitutewithpat.html +251 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiguptodate.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdefaultsubstitute.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheload.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheloadfile.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheread.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunlink.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunload.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircachevalid.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirsave.html +245 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirscan.html +266 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfileisdir.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfilescan.html +276 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfini.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontlist.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontmatch.html +262 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontrenderprepare.html +259 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetadd.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetdestroy.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetlist.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetmatch.html +273 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetprint.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsort.html +303 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsortdestroy.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsort.html +289 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharindex.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharset.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharsetandspacing.html +241 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequery.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequeryface.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetlangs.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetversion.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinit.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitbringuptodate.html +208 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfig.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfigandfonts.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitreinitialize.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcislower.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcisupper.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclanggetcharset.html +205 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetadd.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcompare.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcontains.html +259 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcopy.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcreate.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetdestroy.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetequal.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetgetlangs.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethash.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethaslang.html +255 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixcopy.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixequal.html +236 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixinit.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixmultiply.html +246 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixrotate.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixscale.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixshear.html +250 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameconstant.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetconstant.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetobjecttype.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameparse.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterconstants.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterobjecttypes.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunparse.html +218 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterconstants.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterobjecttypes.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetadd.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetbuild.html +262 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetdestroy.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd-type.html +404 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd.html +240 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternaddweak.html +242 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternbuild.html +313 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterncreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndel.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndestroy.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternduplicate.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequal.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequalsubset.html +242 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternfilter.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternformat.html +602 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget-type.html +435 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternhash.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternprint.html +218 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternreference.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternremove.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrbasename.html +212 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmp.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmpignorecase.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopy.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopyfilename.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdirname.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdowncase.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrfree.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistcreate.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistdone.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistnext.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrplus.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetadd.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetaddfilename.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdel.html +237 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdestroy.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetequal.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetmember.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstr.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstrignorecase.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fctolower.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcucs4toutf8.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16len.html +278 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16toucs4.html +265 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8len.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8toucs4.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluedestroy.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueequal.html +212 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueprint.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluesave.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/ln12.html +128 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/t1.html +133 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x102.html +1463 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x19.html +264 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x31.html +590 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.html +1352 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.pdf +0 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.txt +644 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +11 -28
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +10 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +42 -99
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +22 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +1 -2
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +201 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +43 -113
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +1 -2
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +3 -4
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +21 -48
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +8 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +61 -148
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +19 -45
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +15 -39
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +3 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +6 -2
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +6 -2
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +9 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +6 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -1
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +8 -0
- data/vendor/local/share/man/man1/fc-cache.1 +70 -0
- data/vendor/local/share/man/man1/fc-cat.1 +44 -0
- data/vendor/local/share/man/man1/fc-list.1 +72 -0
- data/vendor/local/share/man/man1/fc-match.1 +73 -0
- data/vendor/local/share/man/man1/fc-query.1 +57 -0
- data/vendor/local/share/man/man1/fc-scan.1 +52 -0
- data/vendor/local/share/man/man3/FcAtomicCreate.3 +19 -0
- data/vendor/local/share/man/man3/FcAtomicDeleteNew.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicLock.3 +18 -0
- data/vendor/local/share/man/man3/FcAtomicNewFile.3 +17 -0
- data/vendor/local/share/man/man3/FcAtomicOrigFile.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicReplaceOrig.3 +18 -0
- data/vendor/local/share/man/man3/FcAtomicUnlock.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksAdd.3 +18 -0
- data/vendor/local/share/man/man3/FcBlanksCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksIsMember.3 +18 -0
- data/vendor/local/share/man/man3/FcCacheCopySet.3 +18 -0
- data/vendor/local/share/man/man3/FcCacheDir.3 +16 -0
- data/vendor/local/share/man/man3/FcCacheNumFont.3 +17 -0
- data/vendor/local/share/man/man3/FcCacheNumSubdir.3 +16 -0
- data/vendor/local/share/man/man3/FcCacheSubdir.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetAddChar.3 +19 -0
- data/vendor/local/share/man/man3/FcCharSetCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetCount.3 +16 -0
- data/vendor/local/share/man/man3/FcCharSetCoverage.3 +23 -0
- data/vendor/local/share/man/man3/FcCharSetCreate.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetDestroy.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetEqual.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetFirstPage.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetHasChar.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetIntersect.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetIntersectCount.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetIsSubset.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetMerge.3 +23 -0
- data/vendor/local/share/man/man3/FcCharSetNew.3 +16 -0
- data/vendor/local/share/man/man3/FcCharSetNextPage.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetSubtract.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetSubtractCount.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetUnion.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigAppFontAddDir.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigAppFontAddFile.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigAppFontClear.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigBuildFonts.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcConfigDestroy.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigEnableHome.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigFilename.3 +26 -0
- data/vendor/local/share/man/man3/FcConfigGetBlanks.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigGetCache.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigGetCacheDirs.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigGetConfigDirs.3 +18 -0
- data/vendor/local/share/man/man3/FcConfigGetConfigFiles.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigGetCurrent.3 +16 -0
- data/vendor/local/share/man/man3/FcConfigGetFontDirs.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigGetFonts.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigGetRescanInterval.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigHome.3 +18 -0
- data/vendor/local/share/man/man3/FcConfigParseAndLoad.3 +23 -0
- data/vendor/local/share/man/man3/FcConfigReference.3 +21 -0
- data/vendor/local/share/man/man3/FcConfigSetCurrent.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigSetRescanInterval.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigSubstitute.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigSubstituteWithPat.3 +24 -0
- data/vendor/local/share/man/man3/FcConfigUptoDate.3 +18 -0
- data/vendor/local/share/man/man3/FcDefaultSubstitute.3 +27 -0
- data/vendor/local/share/man/man3/FcDirCacheLoad.3 +21 -0
- data/vendor/local/share/man/man3/FcDirCacheLoadFile.3 +19 -0
- data/vendor/local/share/man/man3/FcDirCacheRead.3 +21 -0
- data/vendor/local/share/man/man3/FcDirCacheUnlink.3 +20 -0
- data/vendor/local/share/man/man3/FcDirCacheUnload.3 +17 -0
- data/vendor/local/share/man/man3/FcDirCacheValid.3 +17 -0
- data/vendor/local/share/man/man3/FcDirSave.3 +22 -0
- data/vendor/local/share/man/man3/FcDirScan.3 +26 -0
- data/vendor/local/share/man/man3/FcFileIsDir.3 +17 -0
- data/vendor/local/share/man/man3/FcFileScan.3 +31 -0
- data/vendor/local/share/man/man3/FcFini.3 +19 -0
- data/vendor/local/share/man/man3/FcFontList.3 +21 -0
- data/vendor/local/share/man/man3/FcFontMatch.3 +25 -0
- data/vendor/local/share/man/man3/FcFontRenderPrepare.3 +21 -0
- data/vendor/local/share/man/man3/FcFontSetAdd.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcFontSetDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcFontSetList.3 +25 -0
- data/vendor/local/share/man/man3/FcFontSetMatch.3 +28 -0
- data/vendor/local/share/man/man3/FcFontSetPrint.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSetSort.3 +39 -0
- data/vendor/local/share/man/man3/FcFontSetSortDestroy.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSort.3 +33 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharIndex.3 +22 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharSet.3 +21 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharSetAndSpacing.3 +28 -0
- data/vendor/local/share/man/man3/FcFreeTypeQuery.3 +21 -0
- data/vendor/local/share/man/man3/FcFreeTypeQueryFace.3 +21 -0
- data/vendor/local/share/man/man3/FcGetLangs.3 +16 -0
- data/vendor/local/share/man/man3/FcGetVersion.3 +16 -0
- data/vendor/local/share/man/man3/FcInit.3 +19 -0
- data/vendor/local/share/man/man3/FcInitBringUptoDate.3 +19 -0
- data/vendor/local/share/man/man3/FcInitLoadConfig.3 +17 -0
- data/vendor/local/share/man/man3/FcInitLoadConfigAndFonts.3 +17 -0
- data/vendor/local/share/man/man3/FcInitReinitialize.3 +19 -0
- data/vendor/local/share/man/man3/FcIsLower.3 +17 -0
- data/vendor/local/share/man/man3/FcIsUpper.3 +17 -0
- data/vendor/local/share/man/man3/FcLangGetCharSet.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetAdd.3 +20 -0
- data/vendor/local/share/man/man3/FcLangSetCompare.3 +22 -0
- data/vendor/local/share/man/man3/FcLangSetContains.3 +22 -0
- data/vendor/local/share/man/man3/FcLangSetCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcLangSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcLangSetEqual.3 +18 -0
- data/vendor/local/share/man/man3/FcLangSetGetLangs.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetHasLang.3 +23 -0
- data/vendor/local/share/man/man3/FcLangSetHash.3 +20 -0
- data/vendor/local/share/man/man3/FcMatrixCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcMatrixEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcMatrixInit.3 +17 -0
- data/vendor/local/share/man/man3/FcMatrixMultiply.3 +20 -0
- data/vendor/local/share/man/man3/FcMatrixRotate.3 +27 -0
- data/vendor/local/share/man/man3/FcMatrixScale.3 +27 -0
- data/vendor/local/share/man/man3/FcMatrixShear.3 +27 -0
- data/vendor/local/share/man/man3/FcNameConstant.3 +18 -0
- data/vendor/local/share/man/man3/FcNameGetConstant.3 +16 -0
- data/vendor/local/share/man/man3/FcNameGetObjectType.3 +16 -0
- data/vendor/local/share/man/man3/FcNameParse.3 +16 -0
- data/vendor/local/share/man/man3/FcNameRegisterConstants.3 +19 -0
- data/vendor/local/share/man/man3/FcNameRegisterObjectTypes.3 +19 -0
- data/vendor/local/share/man/man3/FcNameUnparse.3 +18 -0
- data/vendor/local/share/man/man3/FcNameUnregisterConstants.3 +19 -0
- data/vendor/local/share/man/man3/FcNameUnregisterObjectTypes.3 +17 -0
- data/vendor/local/share/man/man3/FcObjectSetAdd.3 +18 -0
- data/vendor/local/share/man/man3/FcObjectSetBuild.3 +26 -0
- data/vendor/local/share/man/man3/FcObjectSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcObjectSetDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcPatternAdd-Type.3 +49 -0
- data/vendor/local/share/man/man3/FcPatternAdd.3 +23 -0
- data/vendor/local/share/man/man3/FcPatternAddWeak.3 +20 -0
- data/vendor/local/share/man/man3/FcPatternBuild.3 +50 -0
- data/vendor/local/share/man/man3/FcPatternCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcPatternDel.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternDuplicate.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternEqual.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternEqualSubset.3 +19 -0
- data/vendor/local/share/man/man3/FcPatternFilter.3 +20 -0
- data/vendor/local/share/man/man3/FcPatternFormat.3 +205 -0
- data/vendor/local/share/man/man3/FcPatternGet-Type.3 +56 -0
- data/vendor/local/share/man/man3/FcPatternGet.3 +22 -0
- data/vendor/local/share/man/man3/FcPatternHash.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternPrint.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternReference.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternRemove.3 +19 -0
- data/vendor/local/share/man/man3/FcStrBasename.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCmp.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCmpIgnoreCase.3 +19 -0
- data/vendor/local/share/man/man3/FcStrCopy.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCopyFilename.3 +23 -0
- data/vendor/local/share/man/man3/FcStrDirname.3 +18 -0
- data/vendor/local/share/man/man3/FcStrDowncase.3 +17 -0
- data/vendor/local/share/man/man3/FcStrFree.3 +17 -0
- data/vendor/local/share/man/man3/FcStrListCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcStrListDone.3 +16 -0
- data/vendor/local/share/man/man3/FcStrListNext.3 +16 -0
- data/vendor/local/share/man/man3/FcStrPlus.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetAdd.3 +17 -0
- data/vendor/local/share/man/man3/FcStrSetAddFilename.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcStrSetDel.3 +18 -0
- data/vendor/local/share/man/man3/FcStrSetDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcStrSetEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetMember.3 +18 -0
- data/vendor/local/share/man/man3/FcStrStr.3 +20 -0
- data/vendor/local/share/man/man3/FcStrStrIgnoreCase.3 +20 -0
- data/vendor/local/share/man/man3/FcToLower.3 +17 -0
- data/vendor/local/share/man/man3/FcUcs4ToUtf8.3 +19 -0
- data/vendor/local/share/man/man3/FcUtf16Len.3 +27 -0
- data/vendor/local/share/man/man3/FcUtf16ToUcs4.3 +23 -0
- data/vendor/local/share/man/man3/FcUtf8Len.3 +24 -0
- data/vendor/local/share/man/man3/FcUtf8ToUcs4.3 +21 -0
- data/vendor/local/share/man/man3/FcValueDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcValueEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcValuePrint.3 +18 -0
- data/vendor/local/share/man/man3/FcValueSave.3 +17 -0
- data/vendor/local/share/man/man3/libpng.3 +4455 -0
- data/vendor/local/share/man/man3/libpngpf.3 +808 -0
- data/vendor/local/share/man/man5/fonts-conf.5 +644 -0
- data/vendor/local/share/man/man5/png.5 +74 -0
- data/vendor/local/src/tml/packaging/{cairo_1.10.0-1_win32.log → cairo_1.10.2-1_win32.log} +242 -235
- data/vendor/local/src/tml/packaging/{cairo_1.10.0-1_win32.sh → cairo_1.10.2-1_win32.sh} +11 -3
- data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.log +188 -0
- data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.sh +68 -0
- data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.log +999 -0
- data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.sh +79 -0
- data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.log +364 -0
- data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.sh +93 -0
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +272 -0
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +71 -0
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +42 -0
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +189 -0
- metadata +586 -122
- data/extconf.rb +0 -45
- data/misc/update-colors.rb +0 -143
- data/samples/agg/README +0 -4
- data/tmp/i386-mingw32/cairo/1.8.7/fake.rb +0 -6
- data/tmp/i386-mingw32/cairo/1.8.7/mkmf.rb +0 -1836
- data/tmp/i386-mingw32/cairo/1.8.7/rbconfig.rb +0 -183
- data/tmp/i386-mingw32/cairo/1.9.2/fake.rb +0 -6
- data/tmp/i386-mingw32/cairo/1.9.2/mkmf.rb +0 -2079
- data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +0 -226
- data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +0 -5
@@ -0,0 +1,115 @@
|
|
1
|
+
/* Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
|
2
|
+
See the file COPYING for copying permission.
|
3
|
+
*/
|
4
|
+
|
5
|
+
#ifndef Expat_External_INCLUDED
|
6
|
+
#define Expat_External_INCLUDED 1
|
7
|
+
|
8
|
+
/* External API definitions */
|
9
|
+
|
10
|
+
#if defined(_MSC_EXTENSIONS) && !defined(__BEOS__) && !defined(__CYGWIN__)
|
11
|
+
#define XML_USE_MSC_EXTENSIONS 1
|
12
|
+
#endif
|
13
|
+
|
14
|
+
/* Expat tries very hard to make the API boundary very specifically
|
15
|
+
defined. There are two macros defined to control this boundary;
|
16
|
+
each of these can be defined before including this header to
|
17
|
+
achieve some different behavior, but doing so it not recommended or
|
18
|
+
tested frequently.
|
19
|
+
|
20
|
+
XMLCALL - The calling convention to use for all calls across the
|
21
|
+
"library boundary." This will default to cdecl, and
|
22
|
+
try really hard to tell the compiler that's what we
|
23
|
+
want.
|
24
|
+
|
25
|
+
XMLIMPORT - Whatever magic is needed to note that a function is
|
26
|
+
to be imported from a dynamically loaded library
|
27
|
+
(.dll, .so, or .sl, depending on your platform).
|
28
|
+
|
29
|
+
The XMLCALL macro was added in Expat 1.95.7. The only one which is
|
30
|
+
expected to be directly useful in client code is XMLCALL.
|
31
|
+
|
32
|
+
Note that on at least some Unix versions, the Expat library must be
|
33
|
+
compiled with the cdecl calling convention as the default since
|
34
|
+
system headers may assume the cdecl convention.
|
35
|
+
*/
|
36
|
+
#ifndef XMLCALL
|
37
|
+
#if defined(_MSC_VER)
|
38
|
+
#define XMLCALL __cdecl
|
39
|
+
#elif defined(__GNUC__) && defined(__i386) && !defined(__INTEL_COMPILER)
|
40
|
+
#define XMLCALL __attribute__((cdecl))
|
41
|
+
#else
|
42
|
+
/* For any platform which uses this definition and supports more than
|
43
|
+
one calling convention, we need to extend this definition to
|
44
|
+
declare the convention used on that platform, if it's possible to
|
45
|
+
do so.
|
46
|
+
|
47
|
+
If this is the case for your platform, please file a bug report
|
48
|
+
with information on how to identify your platform via the C
|
49
|
+
pre-processor and how to specify the same calling convention as the
|
50
|
+
platform's malloc() implementation.
|
51
|
+
*/
|
52
|
+
#define XMLCALL
|
53
|
+
#endif
|
54
|
+
#endif /* not defined XMLCALL */
|
55
|
+
|
56
|
+
|
57
|
+
#if !defined(XML_STATIC) && !defined(XMLIMPORT)
|
58
|
+
#ifndef XML_BUILDING_EXPAT
|
59
|
+
/* using Expat from an application */
|
60
|
+
|
61
|
+
#ifdef XML_USE_MSC_EXTENSIONS
|
62
|
+
#define XMLIMPORT __declspec(dllimport)
|
63
|
+
#endif
|
64
|
+
|
65
|
+
#endif
|
66
|
+
#endif /* not defined XML_STATIC */
|
67
|
+
|
68
|
+
|
69
|
+
/* If we didn't define it above, define it away: */
|
70
|
+
#ifndef XMLIMPORT
|
71
|
+
#define XMLIMPORT
|
72
|
+
#endif
|
73
|
+
|
74
|
+
|
75
|
+
#define XMLPARSEAPI(type) XMLIMPORT type XMLCALL
|
76
|
+
|
77
|
+
#ifdef __cplusplus
|
78
|
+
extern "C" {
|
79
|
+
#endif
|
80
|
+
|
81
|
+
#ifdef XML_UNICODE_WCHAR_T
|
82
|
+
#define XML_UNICODE
|
83
|
+
#endif
|
84
|
+
|
85
|
+
#ifdef XML_UNICODE /* Information is UTF-16 encoded. */
|
86
|
+
#ifdef XML_UNICODE_WCHAR_T
|
87
|
+
typedef wchar_t XML_Char;
|
88
|
+
typedef wchar_t XML_LChar;
|
89
|
+
#else
|
90
|
+
typedef unsigned short XML_Char;
|
91
|
+
typedef char XML_LChar;
|
92
|
+
#endif /* XML_UNICODE_WCHAR_T */
|
93
|
+
#else /* Information is UTF-8 encoded. */
|
94
|
+
typedef char XML_Char;
|
95
|
+
typedef char XML_LChar;
|
96
|
+
#endif /* XML_UNICODE */
|
97
|
+
|
98
|
+
#ifdef XML_LARGE_SIZE /* Use large integers for file/stream positions. */
|
99
|
+
#if defined(XML_USE_MSC_EXTENSIONS) && _MSC_VER < 1400
|
100
|
+
typedef __int64 XML_Index;
|
101
|
+
typedef unsigned __int64 XML_Size;
|
102
|
+
#else
|
103
|
+
typedef long long XML_Index;
|
104
|
+
typedef unsigned long long XML_Size;
|
105
|
+
#endif
|
106
|
+
#else
|
107
|
+
typedef long XML_Index;
|
108
|
+
typedef unsigned long XML_Size;
|
109
|
+
#endif /* XML_LARGE_SIZE */
|
110
|
+
|
111
|
+
#ifdef __cplusplus
|
112
|
+
}
|
113
|
+
#endif
|
114
|
+
|
115
|
+
#endif /* not Expat_External_INCLUDED */
|
@@ -0,0 +1,59 @@
|
|
1
|
+
/*
|
2
|
+
* fontconfig/fontconfig/fcfreetype.h
|
3
|
+
*
|
4
|
+
* Copyright © 2001 Keith Packard
|
5
|
+
*
|
6
|
+
* Permission to use, copy, modify, distribute, and sell this software and its
|
7
|
+
* documentation for any purpose is hereby granted without fee, provided that
|
8
|
+
* the above copyright notice appear in all copies and that both that
|
9
|
+
* copyright notice and this permission notice appear in supporting
|
10
|
+
* documentation, and that the name of Keith Packard not be used in
|
11
|
+
* advertising or publicity pertaining to distribution of the software without
|
12
|
+
* specific, written prior permission. Keith Packard makes no
|
13
|
+
* representations about the suitability of this software for any purpose. It
|
14
|
+
* is provided "as is" without express or implied warranty.
|
15
|
+
*
|
16
|
+
* THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
17
|
+
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
18
|
+
* EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
19
|
+
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
20
|
+
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
21
|
+
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
22
|
+
* PERFORMANCE OF THIS SOFTWARE.
|
23
|
+
*/
|
24
|
+
|
25
|
+
#ifndef _FCFREETYPE_H_
|
26
|
+
#define _FCFREETYPE_H_
|
27
|
+
#include <ft2build.h>
|
28
|
+
#include FT_FREETYPE_H
|
29
|
+
|
30
|
+
#ifndef FcPublic
|
31
|
+
#define FcPublic
|
32
|
+
#endif
|
33
|
+
|
34
|
+
_FCFUNCPROTOBEGIN
|
35
|
+
|
36
|
+
FcPublic FT_UInt
|
37
|
+
FcFreeTypeCharIndex (FT_Face face, FcChar32 ucs4);
|
38
|
+
|
39
|
+
FcPublic FcCharSet *
|
40
|
+
FcFreeTypeCharSetAndSpacing (FT_Face face, FcBlanks *blanks, int *spacing);
|
41
|
+
|
42
|
+
FcPublic FcCharSet *
|
43
|
+
FcFreeTypeCharSet (FT_Face face, FcBlanks *blanks);
|
44
|
+
|
45
|
+
FcPublic FcResult
|
46
|
+
FcPatternGetFTFace (const FcPattern *p, const char *object, int n, FT_Face *f);
|
47
|
+
|
48
|
+
FcPublic FcBool
|
49
|
+
FcPatternAddFTFace (FcPattern *p, const char *object, const FT_Face f);
|
50
|
+
|
51
|
+
FcPublic FcPattern *
|
52
|
+
FcFreeTypeQueryFace (const FT_Face face,
|
53
|
+
const FcChar8 *file,
|
54
|
+
int id,
|
55
|
+
FcBlanks *blanks);
|
56
|
+
|
57
|
+
_FCFUNCPROTOEND
|
58
|
+
|
59
|
+
#endif
|
@@ -0,0 +1,123 @@
|
|
1
|
+
/*
|
2
|
+
* fontconfig/fontconfig/fcprivate.h
|
3
|
+
*
|
4
|
+
* Copyright © 2001 Keith Packard
|
5
|
+
*
|
6
|
+
* Permission to use, copy, modify, distribute, and sell this software and its
|
7
|
+
* documentation for any purpose is hereby granted without fee, provided that
|
8
|
+
* the above copyright notice appear in all copies and that both that
|
9
|
+
* copyright notice and this permission notice appear in supporting
|
10
|
+
* documentation, and that the name of Keith Packard not be used in
|
11
|
+
* advertising or publicity pertaining to distribution of the software without
|
12
|
+
* specific, written prior permission. Keith Packard makes no
|
13
|
+
* representations about the suitability of this software for any purpose. It
|
14
|
+
* is provided "as is" without express or implied warranty.
|
15
|
+
*
|
16
|
+
* THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
17
|
+
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
18
|
+
* EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
19
|
+
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
20
|
+
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
21
|
+
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
22
|
+
* PERFORMANCE OF THIS SOFTWARE.
|
23
|
+
*/
|
24
|
+
|
25
|
+
#ifndef _FCPRIVATE_H_
|
26
|
+
#define _FCPRIVATE_H_
|
27
|
+
|
28
|
+
/*
|
29
|
+
* I tried this with functions that took va_list* arguments
|
30
|
+
* but portability concerns made me change these functions
|
31
|
+
* into macros (sigh).
|
32
|
+
*/
|
33
|
+
|
34
|
+
#define FcPatternVapBuild(result, orig, va) \
|
35
|
+
{ \
|
36
|
+
FcPattern *__p__ = (orig); \
|
37
|
+
const char *__o__; \
|
38
|
+
FcValue __v__; \
|
39
|
+
\
|
40
|
+
if (!__p__) \
|
41
|
+
{ \
|
42
|
+
__p__ = FcPatternCreate (); \
|
43
|
+
if (!__p__) \
|
44
|
+
goto _FcPatternVapBuild_bail0; \
|
45
|
+
} \
|
46
|
+
for (;;) \
|
47
|
+
{ \
|
48
|
+
__o__ = va_arg (va, const char *); \
|
49
|
+
if (!__o__) \
|
50
|
+
break; \
|
51
|
+
__v__.type = va_arg (va, FcType); \
|
52
|
+
switch (__v__.type) { \
|
53
|
+
case FcTypeVoid: \
|
54
|
+
goto _FcPatternVapBuild_bail1; \
|
55
|
+
case FcTypeInteger: \
|
56
|
+
__v__.u.i = va_arg (va, int); \
|
57
|
+
break; \
|
58
|
+
case FcTypeDouble: \
|
59
|
+
__v__.u.d = va_arg (va, double); \
|
60
|
+
break; \
|
61
|
+
case FcTypeString: \
|
62
|
+
__v__.u.s = va_arg (va, const FcChar8 *); \
|
63
|
+
break; \
|
64
|
+
case FcTypeBool: \
|
65
|
+
__v__.u.b = va_arg (va, FcBool); \
|
66
|
+
break; \
|
67
|
+
case FcTypeMatrix: \
|
68
|
+
__v__.u.m = va_arg (va, const FcMatrix *); \
|
69
|
+
break; \
|
70
|
+
case FcTypeCharSet: \
|
71
|
+
__v__.u.c = va_arg (va, const FcCharSet *); \
|
72
|
+
break; \
|
73
|
+
case FcTypeFTFace: \
|
74
|
+
__v__.u.f = va_arg (va, FT_Face); \
|
75
|
+
break; \
|
76
|
+
case FcTypeLangSet: \
|
77
|
+
__v__.u.l = va_arg (va, const FcLangSet *); \
|
78
|
+
break; \
|
79
|
+
} \
|
80
|
+
if (!FcPatternAdd (__p__, __o__, __v__, FcTrue)) \
|
81
|
+
goto _FcPatternVapBuild_bail1; \
|
82
|
+
} \
|
83
|
+
result = __p__; \
|
84
|
+
goto _FcPatternVapBuild_return; \
|
85
|
+
\
|
86
|
+
_FcPatternVapBuild_bail1: \
|
87
|
+
if (!orig) \
|
88
|
+
FcPatternDestroy (__p__); \
|
89
|
+
_FcPatternVapBuild_bail0: \
|
90
|
+
result = (void*)0; \
|
91
|
+
\
|
92
|
+
_FcPatternVapBuild_return: \
|
93
|
+
; \
|
94
|
+
}
|
95
|
+
|
96
|
+
|
97
|
+
#define FcObjectSetVapBuild(__ret__, __first__, __va__) \
|
98
|
+
{ \
|
99
|
+
FcObjectSet *__os__; \
|
100
|
+
const char *__ob__; \
|
101
|
+
\
|
102
|
+
__ret__ = 0; \
|
103
|
+
__os__ = FcObjectSetCreate (); \
|
104
|
+
if (!__os__) \
|
105
|
+
goto _FcObjectSetVapBuild_bail0; \
|
106
|
+
__ob__ = __first__; \
|
107
|
+
while (__ob__) \
|
108
|
+
{ \
|
109
|
+
if (!FcObjectSetAdd (__os__, __ob__)) \
|
110
|
+
goto _FcObjectSetVapBuild_bail1; \
|
111
|
+
__ob__ = va_arg (__va__, const char *); \
|
112
|
+
} \
|
113
|
+
__ret__ = __os__; \
|
114
|
+
\
|
115
|
+
_FcObjectSetVapBuild_bail1: \
|
116
|
+
if (!__ret__ && __os__) \
|
117
|
+
FcObjectSetDestroy (__os__); \
|
118
|
+
_FcObjectSetVapBuild_bail0: \
|
119
|
+
; \
|
120
|
+
}
|
121
|
+
|
122
|
+
#endif /* _FCPRIVATE_H_ */
|
123
|
+
|
@@ -0,0 +1,963 @@
|
|
1
|
+
/*
|
2
|
+
* fontconfig/fontconfig/fontconfig.h
|
3
|
+
*
|
4
|
+
* Copyright © 2001 Keith Packard
|
5
|
+
*
|
6
|
+
* Permission to use, copy, modify, distribute, and sell this software and its
|
7
|
+
* documentation for any purpose is hereby granted without fee, provided that
|
8
|
+
* the above copyright notice appear in all copies and that both that
|
9
|
+
* copyright notice and this permission notice appear in supporting
|
10
|
+
* documentation, and that the name of Keith Packard not be used in
|
11
|
+
* advertising or publicity pertaining to distribution of the software without
|
12
|
+
* specific, written prior permission. Keith Packard makes no
|
13
|
+
* representations about the suitability of this software for any purpose. It
|
14
|
+
* is provided "as is" without express or implied warranty.
|
15
|
+
*
|
16
|
+
* THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
17
|
+
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
18
|
+
* EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
19
|
+
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
20
|
+
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
21
|
+
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
22
|
+
* PERFORMANCE OF THIS SOFTWARE.
|
23
|
+
*/
|
24
|
+
|
25
|
+
#ifndef _FONTCONFIG_H_
|
26
|
+
#define _FONTCONFIG_H_
|
27
|
+
|
28
|
+
#include <sys/types.h>
|
29
|
+
#include <sys/stat.h>
|
30
|
+
#include <unistd.h>
|
31
|
+
#include <stdarg.h>
|
32
|
+
|
33
|
+
#if defined(__GNUC__) && (__GNUC__ >= 4)
|
34
|
+
#define FC_ATTRIBUTE_SENTINEL(x) __attribute__((__sentinel__(0)))
|
35
|
+
#else
|
36
|
+
#define FC_ATTRIBUTE_SENTINEL(x)
|
37
|
+
#endif
|
38
|
+
|
39
|
+
#ifndef FcPublic
|
40
|
+
#define FcPublic
|
41
|
+
#endif
|
42
|
+
|
43
|
+
typedef unsigned char FcChar8;
|
44
|
+
typedef unsigned short FcChar16;
|
45
|
+
typedef unsigned int FcChar32;
|
46
|
+
typedef int FcBool;
|
47
|
+
|
48
|
+
/*
|
49
|
+
* Current Fontconfig version number. This same number
|
50
|
+
* must appear in the fontconfig configure.in file. Yes,
|
51
|
+
* it'a a pain to synchronize version numbers like this.
|
52
|
+
*/
|
53
|
+
|
54
|
+
#define FC_MAJOR 2
|
55
|
+
#define FC_MINOR 8
|
56
|
+
#define FC_REVISION 0
|
57
|
+
|
58
|
+
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
|
59
|
+
|
60
|
+
/*
|
61
|
+
* Current font cache file format version
|
62
|
+
* This is appended to the cache files so that multiple
|
63
|
+
* versions of the library will peacefully coexist
|
64
|
+
*
|
65
|
+
* Change this value whenever the disk format for the cache file
|
66
|
+
* changes in any non-compatible way. Try to avoid such changes as
|
67
|
+
* it means multiple copies of the font information.
|
68
|
+
*/
|
69
|
+
|
70
|
+
#define FC_CACHE_VERSION "3"
|
71
|
+
|
72
|
+
#define FcTrue 1
|
73
|
+
#define FcFalse 0
|
74
|
+
|
75
|
+
#define FC_FAMILY "family" /* String */
|
76
|
+
#define FC_STYLE "style" /* String */
|
77
|
+
#define FC_SLANT "slant" /* Int */
|
78
|
+
#define FC_WEIGHT "weight" /* Int */
|
79
|
+
#define FC_SIZE "size" /* Double */
|
80
|
+
#define FC_ASPECT "aspect" /* Double */
|
81
|
+
#define FC_PIXEL_SIZE "pixelsize" /* Double */
|
82
|
+
#define FC_SPACING "spacing" /* Int */
|
83
|
+
#define FC_FOUNDRY "foundry" /* String */
|
84
|
+
#define FC_ANTIALIAS "antialias" /* Bool (depends) */
|
85
|
+
#define FC_HINTING "hinting" /* Bool (true) */
|
86
|
+
#define FC_HINT_STYLE "hintstyle" /* Int */
|
87
|
+
#define FC_VERTICAL_LAYOUT "verticallayout" /* Bool (false) */
|
88
|
+
#define FC_AUTOHINT "autohint" /* Bool (false) */
|
89
|
+
#define FC_GLOBAL_ADVANCE "globaladvance" /* Bool (true) */
|
90
|
+
#define FC_WIDTH "width" /* Int */
|
91
|
+
#define FC_FILE "file" /* String */
|
92
|
+
#define FC_INDEX "index" /* Int */
|
93
|
+
#define FC_FT_FACE "ftface" /* FT_Face */
|
94
|
+
#define FC_RASTERIZER "rasterizer" /* String */
|
95
|
+
#define FC_OUTLINE "outline" /* Bool */
|
96
|
+
#define FC_SCALABLE "scalable" /* Bool */
|
97
|
+
#define FC_SCALE "scale" /* double */
|
98
|
+
#define FC_DPI "dpi" /* double */
|
99
|
+
#define FC_RGBA "rgba" /* Int */
|
100
|
+
#define FC_MINSPACE "minspace" /* Bool use minimum line spacing */
|
101
|
+
#define FC_SOURCE "source" /* String (deprecated) */
|
102
|
+
#define FC_CHARSET "charset" /* CharSet */
|
103
|
+
#define FC_LANG "lang" /* String RFC 3066 langs */
|
104
|
+
#define FC_FONTVERSION "fontversion" /* Int from 'head' table */
|
105
|
+
#define FC_FULLNAME "fullname" /* String */
|
106
|
+
#define FC_FAMILYLANG "familylang" /* String RFC 3066 langs */
|
107
|
+
#define FC_STYLELANG "stylelang" /* String RFC 3066 langs */
|
108
|
+
#define FC_FULLNAMELANG "fullnamelang" /* String RFC 3066 langs */
|
109
|
+
#define FC_CAPABILITY "capability" /* String */
|
110
|
+
#define FC_FONTFORMAT "fontformat" /* String */
|
111
|
+
#define FC_EMBOLDEN "embolden" /* Bool - true if emboldening needed*/
|
112
|
+
#define FC_EMBEDDED_BITMAP "embeddedbitmap" /* Bool - true to enable embedded bitmaps */
|
113
|
+
#define FC_DECORATIVE "decorative" /* Bool - true if style is a decorative variant */
|
114
|
+
#define FC_LCD_FILTER "lcdfilter" /* Int */
|
115
|
+
|
116
|
+
#define FC_CACHE_SUFFIX ".cache-"FC_CACHE_VERSION
|
117
|
+
#define FC_DIR_CACHE_FILE "fonts.cache-"FC_CACHE_VERSION
|
118
|
+
#define FC_USER_CACHE_FILE ".fonts.cache-"FC_CACHE_VERSION
|
119
|
+
|
120
|
+
/* Adjust outline rasterizer */
|
121
|
+
#define FC_CHAR_WIDTH "charwidth" /* Int */
|
122
|
+
#define FC_CHAR_HEIGHT "charheight"/* Int */
|
123
|
+
#define FC_MATRIX "matrix" /* FcMatrix */
|
124
|
+
|
125
|
+
#define FC_WEIGHT_THIN 0
|
126
|
+
#define FC_WEIGHT_EXTRALIGHT 40
|
127
|
+
#define FC_WEIGHT_ULTRALIGHT FC_WEIGHT_EXTRALIGHT
|
128
|
+
#define FC_WEIGHT_LIGHT 50
|
129
|
+
#define FC_WEIGHT_BOOK 75
|
130
|
+
#define FC_WEIGHT_REGULAR 80
|
131
|
+
#define FC_WEIGHT_NORMAL FC_WEIGHT_REGULAR
|
132
|
+
#define FC_WEIGHT_MEDIUM 100
|
133
|
+
#define FC_WEIGHT_DEMIBOLD 180
|
134
|
+
#define FC_WEIGHT_SEMIBOLD FC_WEIGHT_DEMIBOLD
|
135
|
+
#define FC_WEIGHT_BOLD 200
|
136
|
+
#define FC_WEIGHT_EXTRABOLD 205
|
137
|
+
#define FC_WEIGHT_ULTRABOLD FC_WEIGHT_EXTRABOLD
|
138
|
+
#define FC_WEIGHT_BLACK 210
|
139
|
+
#define FC_WEIGHT_HEAVY FC_WEIGHT_BLACK
|
140
|
+
#define FC_WEIGHT_EXTRABLACK 215
|
141
|
+
#define FC_WEIGHT_ULTRABLACK FC_WEIGHT_EXTRABLACK
|
142
|
+
|
143
|
+
#define FC_SLANT_ROMAN 0
|
144
|
+
#define FC_SLANT_ITALIC 100
|
145
|
+
#define FC_SLANT_OBLIQUE 110
|
146
|
+
|
147
|
+
#define FC_WIDTH_ULTRACONDENSED 50
|
148
|
+
#define FC_WIDTH_EXTRACONDENSED 63
|
149
|
+
#define FC_WIDTH_CONDENSED 75
|
150
|
+
#define FC_WIDTH_SEMICONDENSED 87
|
151
|
+
#define FC_WIDTH_NORMAL 100
|
152
|
+
#define FC_WIDTH_SEMIEXPANDED 113
|
153
|
+
#define FC_WIDTH_EXPANDED 125
|
154
|
+
#define FC_WIDTH_EXTRAEXPANDED 150
|
155
|
+
#define FC_WIDTH_ULTRAEXPANDED 200
|
156
|
+
|
157
|
+
#define FC_PROPORTIONAL 0
|
158
|
+
#define FC_DUAL 90
|
159
|
+
#define FC_MONO 100
|
160
|
+
#define FC_CHARCELL 110
|
161
|
+
|
162
|
+
/* sub-pixel order */
|
163
|
+
#define FC_RGBA_UNKNOWN 0
|
164
|
+
#define FC_RGBA_RGB 1
|
165
|
+
#define FC_RGBA_BGR 2
|
166
|
+
#define FC_RGBA_VRGB 3
|
167
|
+
#define FC_RGBA_VBGR 4
|
168
|
+
#define FC_RGBA_NONE 5
|
169
|
+
|
170
|
+
/* hinting style */
|
171
|
+
#define FC_HINT_NONE 0
|
172
|
+
#define FC_HINT_SLIGHT 1
|
173
|
+
#define FC_HINT_MEDIUM 2
|
174
|
+
#define FC_HINT_FULL 3
|
175
|
+
|
176
|
+
/* LCD filter */
|
177
|
+
#define FC_LCD_NONE 0
|
178
|
+
#define FC_LCD_DEFAULT 1
|
179
|
+
#define FC_LCD_LIGHT 2
|
180
|
+
#define FC_LCD_LEGACY 3
|
181
|
+
|
182
|
+
typedef enum _FcType {
|
183
|
+
FcTypeVoid,
|
184
|
+
FcTypeInteger,
|
185
|
+
FcTypeDouble,
|
186
|
+
FcTypeString,
|
187
|
+
FcTypeBool,
|
188
|
+
FcTypeMatrix,
|
189
|
+
FcTypeCharSet,
|
190
|
+
FcTypeFTFace,
|
191
|
+
FcTypeLangSet
|
192
|
+
} FcType;
|
193
|
+
|
194
|
+
typedef struct _FcMatrix {
|
195
|
+
double xx, xy, yx, yy;
|
196
|
+
} FcMatrix;
|
197
|
+
|
198
|
+
#define FcMatrixInit(m) ((m)->xx = (m)->yy = 1, \
|
199
|
+
(m)->xy = (m)->yx = 0)
|
200
|
+
|
201
|
+
/*
|
202
|
+
* A data structure to represent the available glyphs in a font.
|
203
|
+
* This is represented as a sparse boolean btree.
|
204
|
+
*/
|
205
|
+
|
206
|
+
typedef struct _FcCharSet FcCharSet;
|
207
|
+
|
208
|
+
typedef struct _FcObjectType {
|
209
|
+
const char *object;
|
210
|
+
FcType type;
|
211
|
+
} FcObjectType;
|
212
|
+
|
213
|
+
typedef struct _FcConstant {
|
214
|
+
const FcChar8 *name;
|
215
|
+
const char *object;
|
216
|
+
int value;
|
217
|
+
} FcConstant;
|
218
|
+
|
219
|
+
typedef enum _FcResult {
|
220
|
+
FcResultMatch, FcResultNoMatch, FcResultTypeMismatch, FcResultNoId,
|
221
|
+
FcResultOutOfMemory
|
222
|
+
} FcResult;
|
223
|
+
|
224
|
+
typedef struct _FcPattern FcPattern;
|
225
|
+
|
226
|
+
typedef struct _FcLangSet FcLangSet;
|
227
|
+
|
228
|
+
typedef struct _FcValue {
|
229
|
+
FcType type;
|
230
|
+
union {
|
231
|
+
const FcChar8 *s;
|
232
|
+
int i;
|
233
|
+
FcBool b;
|
234
|
+
double d;
|
235
|
+
const FcMatrix *m;
|
236
|
+
const FcCharSet *c;
|
237
|
+
void *f;
|
238
|
+
const FcLangSet *l;
|
239
|
+
} u;
|
240
|
+
} FcValue;
|
241
|
+
|
242
|
+
typedef struct _FcFontSet {
|
243
|
+
int nfont;
|
244
|
+
int sfont;
|
245
|
+
FcPattern **fonts;
|
246
|
+
} FcFontSet;
|
247
|
+
|
248
|
+
typedef struct _FcObjectSet {
|
249
|
+
int nobject;
|
250
|
+
int sobject;
|
251
|
+
const char **objects;
|
252
|
+
} FcObjectSet;
|
253
|
+
|
254
|
+
typedef enum _FcMatchKind {
|
255
|
+
FcMatchPattern, FcMatchFont, FcMatchScan
|
256
|
+
} FcMatchKind;
|
257
|
+
|
258
|
+
typedef enum _FcLangResult {
|
259
|
+
FcLangEqual = 0,
|
260
|
+
FcLangDifferentCountry = 1,
|
261
|
+
FcLangDifferentTerritory = 1,
|
262
|
+
FcLangDifferentLang = 2
|
263
|
+
} FcLangResult;
|
264
|
+
|
265
|
+
typedef enum _FcSetName {
|
266
|
+
FcSetSystem = 0,
|
267
|
+
FcSetApplication = 1
|
268
|
+
} FcSetName;
|
269
|
+
|
270
|
+
typedef struct _FcAtomic FcAtomic;
|
271
|
+
|
272
|
+
#if defined(__cplusplus) || defined(c_plusplus) /* for C++ V2.0 */
|
273
|
+
#define _FCFUNCPROTOBEGIN extern "C" { /* do not leave open across includes */
|
274
|
+
#define _FCFUNCPROTOEND }
|
275
|
+
#else
|
276
|
+
#define _FCFUNCPROTOBEGIN
|
277
|
+
#define _FCFUNCPROTOEND
|
278
|
+
#endif
|
279
|
+
|
280
|
+
typedef enum { FcEndianBig, FcEndianLittle } FcEndian;
|
281
|
+
|
282
|
+
typedef struct _FcConfig FcConfig;
|
283
|
+
|
284
|
+
typedef struct _FcGlobalCache FcFileCache;
|
285
|
+
|
286
|
+
typedef struct _FcBlanks FcBlanks;
|
287
|
+
|
288
|
+
typedef struct _FcStrList FcStrList;
|
289
|
+
|
290
|
+
typedef struct _FcStrSet FcStrSet;
|
291
|
+
|
292
|
+
typedef struct _FcCache FcCache;
|
293
|
+
|
294
|
+
_FCFUNCPROTOBEGIN
|
295
|
+
|
296
|
+
/* fcblanks.c */
|
297
|
+
FcPublic FcBlanks *
|
298
|
+
FcBlanksCreate (void);
|
299
|
+
|
300
|
+
FcPublic void
|
301
|
+
FcBlanksDestroy (FcBlanks *b);
|
302
|
+
|
303
|
+
FcPublic FcBool
|
304
|
+
FcBlanksAdd (FcBlanks *b, FcChar32 ucs4);
|
305
|
+
|
306
|
+
FcPublic FcBool
|
307
|
+
FcBlanksIsMember (FcBlanks *b, FcChar32 ucs4);
|
308
|
+
|
309
|
+
/* fccache.c */
|
310
|
+
|
311
|
+
FcPublic const FcChar8 *
|
312
|
+
FcCacheDir(const FcCache *c);
|
313
|
+
|
314
|
+
FcPublic FcFontSet *
|
315
|
+
FcCacheCopySet(const FcCache *c);
|
316
|
+
|
317
|
+
FcPublic const FcChar8 *
|
318
|
+
FcCacheSubdir (const FcCache *c, int i);
|
319
|
+
|
320
|
+
FcPublic int
|
321
|
+
FcCacheNumSubdir (const FcCache *c);
|
322
|
+
|
323
|
+
FcPublic int
|
324
|
+
FcCacheNumFont (const FcCache *c);
|
325
|
+
|
326
|
+
FcPublic FcBool
|
327
|
+
FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config);
|
328
|
+
|
329
|
+
FcPublic FcBool
|
330
|
+
FcDirCacheValid (const FcChar8 *cache_file);
|
331
|
+
|
332
|
+
/* fccfg.c */
|
333
|
+
FcPublic FcChar8 *
|
334
|
+
FcConfigHome (void);
|
335
|
+
|
336
|
+
FcPublic FcBool
|
337
|
+
FcConfigEnableHome (FcBool enable);
|
338
|
+
|
339
|
+
FcPublic FcChar8 *
|
340
|
+
FcConfigFilename (const FcChar8 *url);
|
341
|
+
|
342
|
+
FcPublic FcConfig *
|
343
|
+
FcConfigCreate (void);
|
344
|
+
|
345
|
+
FcPublic FcConfig *
|
346
|
+
FcConfigReference (FcConfig *config);
|
347
|
+
|
348
|
+
FcPublic void
|
349
|
+
FcConfigDestroy (FcConfig *config);
|
350
|
+
|
351
|
+
FcPublic FcBool
|
352
|
+
FcConfigSetCurrent (FcConfig *config);
|
353
|
+
|
354
|
+
FcPublic FcConfig *
|
355
|
+
FcConfigGetCurrent (void);
|
356
|
+
|
357
|
+
FcPublic FcBool
|
358
|
+
FcConfigUptoDate (FcConfig *config);
|
359
|
+
|
360
|
+
FcPublic FcBool
|
361
|
+
FcConfigBuildFonts (FcConfig *config);
|
362
|
+
|
363
|
+
FcPublic FcStrList *
|
364
|
+
FcConfigGetFontDirs (FcConfig *config);
|
365
|
+
|
366
|
+
FcPublic FcStrList *
|
367
|
+
FcConfigGetConfigDirs (FcConfig *config);
|
368
|
+
|
369
|
+
FcPublic FcStrList *
|
370
|
+
FcConfigGetConfigFiles (FcConfig *config);
|
371
|
+
|
372
|
+
FcPublic FcChar8 *
|
373
|
+
FcConfigGetCache (FcConfig *config);
|
374
|
+
|
375
|
+
FcPublic FcBlanks *
|
376
|
+
FcConfigGetBlanks (FcConfig *config);
|
377
|
+
|
378
|
+
FcPublic FcStrList *
|
379
|
+
FcConfigGetCacheDirs (FcConfig *config);
|
380
|
+
|
381
|
+
FcPublic int
|
382
|
+
FcConfigGetRescanInterval (FcConfig *config);
|
383
|
+
|
384
|
+
FcPublic FcBool
|
385
|
+
FcConfigSetRescanInterval (FcConfig *config, int rescanInterval);
|
386
|
+
|
387
|
+
FcPublic FcFontSet *
|
388
|
+
FcConfigGetFonts (FcConfig *config,
|
389
|
+
FcSetName set);
|
390
|
+
|
391
|
+
FcPublic FcBool
|
392
|
+
FcConfigAppFontAddFile (FcConfig *config,
|
393
|
+
const FcChar8 *file);
|
394
|
+
|
395
|
+
FcPublic FcBool
|
396
|
+
FcConfigAppFontAddDir (FcConfig *config,
|
397
|
+
const FcChar8 *dir);
|
398
|
+
|
399
|
+
FcPublic void
|
400
|
+
FcConfigAppFontClear (FcConfig *config);
|
401
|
+
|
402
|
+
FcPublic FcBool
|
403
|
+
FcConfigSubstituteWithPat (FcConfig *config,
|
404
|
+
FcPattern *p,
|
405
|
+
FcPattern *p_pat,
|
406
|
+
FcMatchKind kind);
|
407
|
+
|
408
|
+
FcPublic FcBool
|
409
|
+
FcConfigSubstitute (FcConfig *config,
|
410
|
+
FcPattern *p,
|
411
|
+
FcMatchKind kind);
|
412
|
+
|
413
|
+
/* fccharset.c */
|
414
|
+
FcPublic FcCharSet*
|
415
|
+
FcCharSetCreate (void);
|
416
|
+
|
417
|
+
/* deprecated alias for FcCharSetCreate */
|
418
|
+
FcPublic FcCharSet *
|
419
|
+
FcCharSetNew (void);
|
420
|
+
|
421
|
+
FcPublic void
|
422
|
+
FcCharSetDestroy (FcCharSet *fcs);
|
423
|
+
|
424
|
+
FcPublic FcBool
|
425
|
+
FcCharSetAddChar (FcCharSet *fcs, FcChar32 ucs4);
|
426
|
+
|
427
|
+
FcPublic FcCharSet*
|
428
|
+
FcCharSetCopy (FcCharSet *src);
|
429
|
+
|
430
|
+
FcPublic FcBool
|
431
|
+
FcCharSetEqual (const FcCharSet *a, const FcCharSet *b);
|
432
|
+
|
433
|
+
FcPublic FcCharSet*
|
434
|
+
FcCharSetIntersect (const FcCharSet *a, const FcCharSet *b);
|
435
|
+
|
436
|
+
FcPublic FcCharSet*
|
437
|
+
FcCharSetUnion (const FcCharSet *a, const FcCharSet *b);
|
438
|
+
|
439
|
+
FcPublic FcCharSet*
|
440
|
+
FcCharSetSubtract (const FcCharSet *a, const FcCharSet *b);
|
441
|
+
|
442
|
+
FcPublic FcBool
|
443
|
+
FcCharSetMerge (FcCharSet *a, const FcCharSet *b, FcBool *changed);
|
444
|
+
|
445
|
+
FcPublic FcBool
|
446
|
+
FcCharSetHasChar (const FcCharSet *fcs, FcChar32 ucs4);
|
447
|
+
|
448
|
+
FcPublic FcChar32
|
449
|
+
FcCharSetCount (const FcCharSet *a);
|
450
|
+
|
451
|
+
FcPublic FcChar32
|
452
|
+
FcCharSetIntersectCount (const FcCharSet *a, const FcCharSet *b);
|
453
|
+
|
454
|
+
FcPublic FcChar32
|
455
|
+
FcCharSetSubtractCount (const FcCharSet *a, const FcCharSet *b);
|
456
|
+
|
457
|
+
FcPublic FcBool
|
458
|
+
FcCharSetIsSubset (const FcCharSet *a, const FcCharSet *b);
|
459
|
+
|
460
|
+
#define FC_CHARSET_MAP_SIZE (256/32)
|
461
|
+
#define FC_CHARSET_DONE ((FcChar32) -1)
|
462
|
+
|
463
|
+
FcPublic FcChar32
|
464
|
+
FcCharSetFirstPage (const FcCharSet *a,
|
465
|
+
FcChar32 map[FC_CHARSET_MAP_SIZE],
|
466
|
+
FcChar32 *next);
|
467
|
+
|
468
|
+
FcPublic FcChar32
|
469
|
+
FcCharSetNextPage (const FcCharSet *a,
|
470
|
+
FcChar32 map[FC_CHARSET_MAP_SIZE],
|
471
|
+
FcChar32 *next);
|
472
|
+
|
473
|
+
/*
|
474
|
+
* old coverage API, rather hard to use correctly
|
475
|
+
*/
|
476
|
+
|
477
|
+
FcPublic FcChar32
|
478
|
+
FcCharSetCoverage (const FcCharSet *a, FcChar32 page, FcChar32 *result);
|
479
|
+
|
480
|
+
/* fcdbg.c */
|
481
|
+
FcPublic void
|
482
|
+
FcValuePrint (const FcValue v);
|
483
|
+
|
484
|
+
FcPublic void
|
485
|
+
FcPatternPrint (const FcPattern *p);
|
486
|
+
|
487
|
+
FcPublic void
|
488
|
+
FcFontSetPrint (const FcFontSet *s);
|
489
|
+
|
490
|
+
/* fcdefault.c */
|
491
|
+
FcPublic void
|
492
|
+
FcDefaultSubstitute (FcPattern *pattern);
|
493
|
+
|
494
|
+
/* fcdir.c */
|
495
|
+
FcPublic FcBool
|
496
|
+
FcFileIsDir (const FcChar8 *file);
|
497
|
+
|
498
|
+
FcPublic FcBool
|
499
|
+
FcFileScan (FcFontSet *set,
|
500
|
+
FcStrSet *dirs,
|
501
|
+
FcFileCache *cache,
|
502
|
+
FcBlanks *blanks,
|
503
|
+
const FcChar8 *file,
|
504
|
+
FcBool force);
|
505
|
+
|
506
|
+
FcPublic FcBool
|
507
|
+
FcDirScan (FcFontSet *set,
|
508
|
+
FcStrSet *dirs,
|
509
|
+
FcFileCache *cache,
|
510
|
+
FcBlanks *blanks,
|
511
|
+
const FcChar8 *dir,
|
512
|
+
FcBool force);
|
513
|
+
|
514
|
+
FcPublic FcBool
|
515
|
+
FcDirSave (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir);
|
516
|
+
|
517
|
+
FcPublic FcCache *
|
518
|
+
FcDirCacheLoad (const FcChar8 *dir, FcConfig *config, FcChar8 **cache_file);
|
519
|
+
|
520
|
+
FcPublic FcCache *
|
521
|
+
FcDirCacheRead (const FcChar8 *dir, FcBool force, FcConfig *config);
|
522
|
+
|
523
|
+
FcPublic FcCache *
|
524
|
+
FcDirCacheLoadFile (const FcChar8 *cache_file, struct stat *file_stat);
|
525
|
+
|
526
|
+
FcPublic void
|
527
|
+
FcDirCacheUnload (FcCache *cache);
|
528
|
+
|
529
|
+
/* fcfreetype.c */
|
530
|
+
FcPublic FcPattern *
|
531
|
+
FcFreeTypeQuery (const FcChar8 *file, int id, FcBlanks *blanks, int *count);
|
532
|
+
|
533
|
+
/* fcfs.c */
|
534
|
+
|
535
|
+
FcPublic FcFontSet *
|
536
|
+
FcFontSetCreate (void);
|
537
|
+
|
538
|
+
FcPublic void
|
539
|
+
FcFontSetDestroy (FcFontSet *s);
|
540
|
+
|
541
|
+
FcPublic FcBool
|
542
|
+
FcFontSetAdd (FcFontSet *s, FcPattern *font);
|
543
|
+
|
544
|
+
/* fcinit.c */
|
545
|
+
FcPublic FcConfig *
|
546
|
+
FcInitLoadConfig (void);
|
547
|
+
|
548
|
+
FcPublic FcConfig *
|
549
|
+
FcInitLoadConfigAndFonts (void);
|
550
|
+
|
551
|
+
FcPublic FcBool
|
552
|
+
FcInit (void);
|
553
|
+
|
554
|
+
FcPublic void
|
555
|
+
FcFini (void);
|
556
|
+
|
557
|
+
FcPublic int
|
558
|
+
FcGetVersion (void);
|
559
|
+
|
560
|
+
FcPublic FcBool
|
561
|
+
FcInitReinitialize (void);
|
562
|
+
|
563
|
+
FcPublic FcBool
|
564
|
+
FcInitBringUptoDate (void);
|
565
|
+
|
566
|
+
/* fclang.c */
|
567
|
+
FcPublic FcStrSet *
|
568
|
+
FcGetLangs (void);
|
569
|
+
|
570
|
+
FcPublic const FcCharSet *
|
571
|
+
FcLangGetCharSet (const FcChar8 *lang);
|
572
|
+
|
573
|
+
FcPublic FcLangSet*
|
574
|
+
FcLangSetCreate (void);
|
575
|
+
|
576
|
+
FcPublic void
|
577
|
+
FcLangSetDestroy (FcLangSet *ls);
|
578
|
+
|
579
|
+
FcPublic FcLangSet*
|
580
|
+
FcLangSetCopy (const FcLangSet *ls);
|
581
|
+
|
582
|
+
FcPublic FcBool
|
583
|
+
FcLangSetAdd (FcLangSet *ls, const FcChar8 *lang);
|
584
|
+
|
585
|
+
FcPublic FcLangResult
|
586
|
+
FcLangSetHasLang (const FcLangSet *ls, const FcChar8 *lang);
|
587
|
+
|
588
|
+
FcPublic FcLangResult
|
589
|
+
FcLangSetCompare (const FcLangSet *lsa, const FcLangSet *lsb);
|
590
|
+
|
591
|
+
FcPublic FcBool
|
592
|
+
FcLangSetContains (const FcLangSet *lsa, const FcLangSet *lsb);
|
593
|
+
|
594
|
+
FcPublic FcBool
|
595
|
+
FcLangSetEqual (const FcLangSet *lsa, const FcLangSet *lsb);
|
596
|
+
|
597
|
+
FcPublic FcChar32
|
598
|
+
FcLangSetHash (const FcLangSet *ls);
|
599
|
+
|
600
|
+
FcPublic FcStrSet *
|
601
|
+
FcLangSetGetLangs (const FcLangSet *ls);
|
602
|
+
|
603
|
+
/* fclist.c */
|
604
|
+
FcPublic FcObjectSet *
|
605
|
+
FcObjectSetCreate (void);
|
606
|
+
|
607
|
+
FcPublic FcBool
|
608
|
+
FcObjectSetAdd (FcObjectSet *os, const char *object);
|
609
|
+
|
610
|
+
FcPublic void
|
611
|
+
FcObjectSetDestroy (FcObjectSet *os);
|
612
|
+
|
613
|
+
FcPublic FcObjectSet *
|
614
|
+
FcObjectSetVaBuild (const char *first, va_list va);
|
615
|
+
|
616
|
+
FcPublic FcObjectSet *
|
617
|
+
FcObjectSetBuild (const char *first, ...) FC_ATTRIBUTE_SENTINEL(0);
|
618
|
+
|
619
|
+
FcPublic FcFontSet *
|
620
|
+
FcFontSetList (FcConfig *config,
|
621
|
+
FcFontSet **sets,
|
622
|
+
int nsets,
|
623
|
+
FcPattern *p,
|
624
|
+
FcObjectSet *os);
|
625
|
+
|
626
|
+
FcPublic FcFontSet *
|
627
|
+
FcFontList (FcConfig *config,
|
628
|
+
FcPattern *p,
|
629
|
+
FcObjectSet *os);
|
630
|
+
|
631
|
+
/* fcatomic.c */
|
632
|
+
|
633
|
+
FcPublic FcAtomic *
|
634
|
+
FcAtomicCreate (const FcChar8 *file);
|
635
|
+
|
636
|
+
FcPublic FcBool
|
637
|
+
FcAtomicLock (FcAtomic *atomic);
|
638
|
+
|
639
|
+
FcPublic FcChar8 *
|
640
|
+
FcAtomicNewFile (FcAtomic *atomic);
|
641
|
+
|
642
|
+
FcPublic FcChar8 *
|
643
|
+
FcAtomicOrigFile (FcAtomic *atomic);
|
644
|
+
|
645
|
+
FcPublic FcBool
|
646
|
+
FcAtomicReplaceOrig (FcAtomic *atomic);
|
647
|
+
|
648
|
+
FcPublic void
|
649
|
+
FcAtomicDeleteNew (FcAtomic *atomic);
|
650
|
+
|
651
|
+
FcPublic void
|
652
|
+
FcAtomicUnlock (FcAtomic *atomic);
|
653
|
+
|
654
|
+
FcPublic void
|
655
|
+
FcAtomicDestroy (FcAtomic *atomic);
|
656
|
+
|
657
|
+
/* fcmatch.c */
|
658
|
+
FcPublic FcPattern *
|
659
|
+
FcFontSetMatch (FcConfig *config,
|
660
|
+
FcFontSet **sets,
|
661
|
+
int nsets,
|
662
|
+
FcPattern *p,
|
663
|
+
FcResult *result);
|
664
|
+
|
665
|
+
FcPublic FcPattern *
|
666
|
+
FcFontMatch (FcConfig *config,
|
667
|
+
FcPattern *p,
|
668
|
+
FcResult *result);
|
669
|
+
|
670
|
+
FcPublic FcPattern *
|
671
|
+
FcFontRenderPrepare (FcConfig *config,
|
672
|
+
FcPattern *pat,
|
673
|
+
FcPattern *font);
|
674
|
+
|
675
|
+
FcPublic FcFontSet *
|
676
|
+
FcFontSetSort (FcConfig *config,
|
677
|
+
FcFontSet **sets,
|
678
|
+
int nsets,
|
679
|
+
FcPattern *p,
|
680
|
+
FcBool trim,
|
681
|
+
FcCharSet **csp,
|
682
|
+
FcResult *result);
|
683
|
+
|
684
|
+
FcPublic FcFontSet *
|
685
|
+
FcFontSort (FcConfig *config,
|
686
|
+
FcPattern *p,
|
687
|
+
FcBool trim,
|
688
|
+
FcCharSet **csp,
|
689
|
+
FcResult *result);
|
690
|
+
|
691
|
+
FcPublic void
|
692
|
+
FcFontSetSortDestroy (FcFontSet *fs);
|
693
|
+
|
694
|
+
/* fcmatrix.c */
|
695
|
+
FcPublic FcMatrix *
|
696
|
+
FcMatrixCopy (const FcMatrix *mat);
|
697
|
+
|
698
|
+
FcPublic FcBool
|
699
|
+
FcMatrixEqual (const FcMatrix *mat1, const FcMatrix *mat2);
|
700
|
+
|
701
|
+
FcPublic void
|
702
|
+
FcMatrixMultiply (FcMatrix *result, const FcMatrix *a, const FcMatrix *b);
|
703
|
+
|
704
|
+
FcPublic void
|
705
|
+
FcMatrixRotate (FcMatrix *m, double c, double s);
|
706
|
+
|
707
|
+
FcPublic void
|
708
|
+
FcMatrixScale (FcMatrix *m, double sx, double sy);
|
709
|
+
|
710
|
+
FcPublic void
|
711
|
+
FcMatrixShear (FcMatrix *m, double sh, double sv);
|
712
|
+
|
713
|
+
/* fcname.c */
|
714
|
+
|
715
|
+
FcPublic FcBool
|
716
|
+
FcNameRegisterObjectTypes (const FcObjectType *types, int ntype);
|
717
|
+
|
718
|
+
FcPublic FcBool
|
719
|
+
FcNameUnregisterObjectTypes (const FcObjectType *types, int ntype);
|
720
|
+
|
721
|
+
FcPublic const FcObjectType *
|
722
|
+
FcNameGetObjectType (const char *object);
|
723
|
+
|
724
|
+
FcPublic FcBool
|
725
|
+
FcNameRegisterConstants (const FcConstant *consts, int nconsts);
|
726
|
+
|
727
|
+
FcPublic FcBool
|
728
|
+
FcNameUnregisterConstants (const FcConstant *consts, int nconsts);
|
729
|
+
|
730
|
+
FcPublic const FcConstant *
|
731
|
+
FcNameGetConstant (FcChar8 *string);
|
732
|
+
|
733
|
+
FcPublic FcBool
|
734
|
+
FcNameConstant (FcChar8 *string, int *result);
|
735
|
+
|
736
|
+
FcPublic FcPattern *
|
737
|
+
FcNameParse (const FcChar8 *name);
|
738
|
+
|
739
|
+
FcPublic FcChar8 *
|
740
|
+
FcNameUnparse (FcPattern *pat);
|
741
|
+
|
742
|
+
/* fcpat.c */
|
743
|
+
FcPublic FcPattern *
|
744
|
+
FcPatternCreate (void);
|
745
|
+
|
746
|
+
FcPublic FcPattern *
|
747
|
+
FcPatternDuplicate (const FcPattern *p);
|
748
|
+
|
749
|
+
FcPublic void
|
750
|
+
FcPatternReference (FcPattern *p);
|
751
|
+
|
752
|
+
FcPublic FcPattern *
|
753
|
+
FcPatternFilter (FcPattern *p, const FcObjectSet *os);
|
754
|
+
|
755
|
+
FcPublic void
|
756
|
+
FcValueDestroy (FcValue v);
|
757
|
+
|
758
|
+
FcPublic FcBool
|
759
|
+
FcValueEqual (FcValue va, FcValue vb);
|
760
|
+
|
761
|
+
FcPublic FcValue
|
762
|
+
FcValueSave (FcValue v);
|
763
|
+
|
764
|
+
FcPublic void
|
765
|
+
FcPatternDestroy (FcPattern *p);
|
766
|
+
|
767
|
+
FcPublic FcBool
|
768
|
+
FcPatternEqual (const FcPattern *pa, const FcPattern *pb);
|
769
|
+
|
770
|
+
FcPublic FcBool
|
771
|
+
FcPatternEqualSubset (const FcPattern *pa, const FcPattern *pb, const FcObjectSet *os);
|
772
|
+
|
773
|
+
FcPublic FcChar32
|
774
|
+
FcPatternHash (const FcPattern *p);
|
775
|
+
|
776
|
+
FcPublic FcBool
|
777
|
+
FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append);
|
778
|
+
|
779
|
+
FcPublic FcBool
|
780
|
+
FcPatternAddWeak (FcPattern *p, const char *object, FcValue value, FcBool append);
|
781
|
+
|
782
|
+
FcPublic FcResult
|
783
|
+
FcPatternGet (const FcPattern *p, const char *object, int id, FcValue *v);
|
784
|
+
|
785
|
+
FcPublic FcBool
|
786
|
+
FcPatternDel (FcPattern *p, const char *object);
|
787
|
+
|
788
|
+
FcPublic FcBool
|
789
|
+
FcPatternRemove (FcPattern *p, const char *object, int id);
|
790
|
+
|
791
|
+
FcPublic FcBool
|
792
|
+
FcPatternAddInteger (FcPattern *p, const char *object, int i);
|
793
|
+
|
794
|
+
FcPublic FcBool
|
795
|
+
FcPatternAddDouble (FcPattern *p, const char *object, double d);
|
796
|
+
|
797
|
+
FcPublic FcBool
|
798
|
+
FcPatternAddString (FcPattern *p, const char *object, const FcChar8 *s);
|
799
|
+
|
800
|
+
FcPublic FcBool
|
801
|
+
FcPatternAddMatrix (FcPattern *p, const char *object, const FcMatrix *s);
|
802
|
+
|
803
|
+
FcPublic FcBool
|
804
|
+
FcPatternAddCharSet (FcPattern *p, const char *object, const FcCharSet *c);
|
805
|
+
|
806
|
+
FcPublic FcBool
|
807
|
+
FcPatternAddBool (FcPattern *p, const char *object, FcBool b);
|
808
|
+
|
809
|
+
FcPublic FcBool
|
810
|
+
FcPatternAddLangSet (FcPattern *p, const char *object, const FcLangSet *ls);
|
811
|
+
|
812
|
+
FcPublic FcResult
|
813
|
+
FcPatternGetInteger (const FcPattern *p, const char *object, int n, int *i);
|
814
|
+
|
815
|
+
FcPublic FcResult
|
816
|
+
FcPatternGetDouble (const FcPattern *p, const char *object, int n, double *d);
|
817
|
+
|
818
|
+
FcPublic FcResult
|
819
|
+
FcPatternGetString (const FcPattern *p, const char *object, int n, FcChar8 ** s);
|
820
|
+
|
821
|
+
FcPublic FcResult
|
822
|
+
FcPatternGetMatrix (const FcPattern *p, const char *object, int n, FcMatrix **s);
|
823
|
+
|
824
|
+
FcPublic FcResult
|
825
|
+
FcPatternGetCharSet (const FcPattern *p, const char *object, int n, FcCharSet **c);
|
826
|
+
|
827
|
+
FcPublic FcResult
|
828
|
+
FcPatternGetBool (const FcPattern *p, const char *object, int n, FcBool *b);
|
829
|
+
|
830
|
+
FcPublic FcResult
|
831
|
+
FcPatternGetLangSet (const FcPattern *p, const char *object, int n, FcLangSet **ls);
|
832
|
+
|
833
|
+
FcPublic FcPattern *
|
834
|
+
FcPatternVaBuild (FcPattern *p, va_list va);
|
835
|
+
|
836
|
+
FcPublic FcPattern *
|
837
|
+
FcPatternBuild (FcPattern *p, ...) FC_ATTRIBUTE_SENTINEL(0);
|
838
|
+
|
839
|
+
FcPublic FcChar8 *
|
840
|
+
FcPatternFormat (FcPattern *pat, const FcChar8 *format);
|
841
|
+
|
842
|
+
/* fcstr.c */
|
843
|
+
|
844
|
+
FcPublic FcChar8 *
|
845
|
+
FcStrCopy (const FcChar8 *s);
|
846
|
+
|
847
|
+
FcPublic FcChar8 *
|
848
|
+
FcStrCopyFilename (const FcChar8 *s);
|
849
|
+
|
850
|
+
FcPublic FcChar8 *
|
851
|
+
FcStrPlus (const FcChar8 *s1, const FcChar8 *s2);
|
852
|
+
|
853
|
+
FcPublic void
|
854
|
+
FcStrFree (FcChar8 *s);
|
855
|
+
|
856
|
+
/* These are ASCII only, suitable only for pattern element names */
|
857
|
+
#define FcIsUpper(c) ((0101 <= (c) && (c) <= 0132))
|
858
|
+
#define FcIsLower(c) ((0141 <= (c) && (c) <= 0172))
|
859
|
+
#define FcToLower(c) (FcIsUpper(c) ? (c) - 0101 + 0141 : (c))
|
860
|
+
|
861
|
+
FcPublic FcChar8 *
|
862
|
+
FcStrDowncase (const FcChar8 *s);
|
863
|
+
|
864
|
+
FcPublic int
|
865
|
+
FcStrCmpIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
|
866
|
+
|
867
|
+
FcPublic int
|
868
|
+
FcStrCmp (const FcChar8 *s1, const FcChar8 *s2);
|
869
|
+
|
870
|
+
FcPublic const FcChar8 *
|
871
|
+
FcStrStrIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
|
872
|
+
|
873
|
+
FcPublic const FcChar8 *
|
874
|
+
FcStrStr (const FcChar8 *s1, const FcChar8 *s2);
|
875
|
+
|
876
|
+
FcPublic int
|
877
|
+
FcUtf8ToUcs4 (const FcChar8 *src_orig,
|
878
|
+
FcChar32 *dst,
|
879
|
+
int len);
|
880
|
+
|
881
|
+
FcPublic FcBool
|
882
|
+
FcUtf8Len (const FcChar8 *string,
|
883
|
+
int len,
|
884
|
+
int *nchar,
|
885
|
+
int *wchar);
|
886
|
+
|
887
|
+
#define FC_UTF8_MAX_LEN 6
|
888
|
+
|
889
|
+
FcPublic int
|
890
|
+
FcUcs4ToUtf8 (FcChar32 ucs4,
|
891
|
+
FcChar8 dest[FC_UTF8_MAX_LEN]);
|
892
|
+
|
893
|
+
FcPublic int
|
894
|
+
FcUtf16ToUcs4 (const FcChar8 *src_orig,
|
895
|
+
FcEndian endian,
|
896
|
+
FcChar32 *dst,
|
897
|
+
int len); /* in bytes */
|
898
|
+
|
899
|
+
FcPublic FcBool
|
900
|
+
FcUtf16Len (const FcChar8 *string,
|
901
|
+
FcEndian endian,
|
902
|
+
int len, /* in bytes */
|
903
|
+
int *nchar,
|
904
|
+
int *wchar);
|
905
|
+
|
906
|
+
FcPublic FcChar8 *
|
907
|
+
FcStrDirname (const FcChar8 *file);
|
908
|
+
|
909
|
+
FcPublic FcChar8 *
|
910
|
+
FcStrBasename (const FcChar8 *file);
|
911
|
+
|
912
|
+
FcPublic FcStrSet *
|
913
|
+
FcStrSetCreate (void);
|
914
|
+
|
915
|
+
FcPublic FcBool
|
916
|
+
FcStrSetMember (FcStrSet *set, const FcChar8 *s);
|
917
|
+
|
918
|
+
FcPublic FcBool
|
919
|
+
FcStrSetEqual (FcStrSet *sa, FcStrSet *sb);
|
920
|
+
|
921
|
+
FcPublic FcBool
|
922
|
+
FcStrSetAdd (FcStrSet *set, const FcChar8 *s);
|
923
|
+
|
924
|
+
FcPublic FcBool
|
925
|
+
FcStrSetAddFilename (FcStrSet *set, const FcChar8 *s);
|
926
|
+
|
927
|
+
FcPublic FcBool
|
928
|
+
FcStrSetDel (FcStrSet *set, const FcChar8 *s);
|
929
|
+
|
930
|
+
FcPublic void
|
931
|
+
FcStrSetDestroy (FcStrSet *set);
|
932
|
+
|
933
|
+
FcPublic FcStrList *
|
934
|
+
FcStrListCreate (FcStrSet *set);
|
935
|
+
|
936
|
+
FcPublic FcChar8 *
|
937
|
+
FcStrListNext (FcStrList *list);
|
938
|
+
|
939
|
+
FcPublic void
|
940
|
+
FcStrListDone (FcStrList *list);
|
941
|
+
|
942
|
+
/* fcxml.c */
|
943
|
+
FcPublic FcBool
|
944
|
+
FcConfigParseAndLoad (FcConfig *config, const FcChar8 *file, FcBool complain);
|
945
|
+
|
946
|
+
_FCFUNCPROTOEND
|
947
|
+
|
948
|
+
#undef FC_ATTRIBUTE_SENTINEL
|
949
|
+
|
950
|
+
|
951
|
+
#ifndef _FCINT_H_
|
952
|
+
|
953
|
+
/*
|
954
|
+
* Deprecated functions are placed here to help users fix their code without
|
955
|
+
* digging through documentation
|
956
|
+
*/
|
957
|
+
|
958
|
+
#define FcConfigGetRescanInverval FcConfigGetRescanInverval_REPLACE_BY_FcConfigGetRescanInterval
|
959
|
+
#define FcConfigSetRescanInverval FcConfigSetRescanInverval_REPLACE_BY_FcConfigSetRescanInterval
|
960
|
+
|
961
|
+
#endif
|
962
|
+
|
963
|
+
#endif /* _FONTCONFIG_H_ */
|