cairo 1.15.9-x64-mingw32 → 1.15.10-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/NEWS +20 -0
- data/Rakefile +9 -7
- data/ext/cairo/rb_cairo.h +1 -1
- data/lib/2.2/cairo.so +0 -0
- data/lib/2.3/cairo.so +0 -0
- data/lib/2.4/cairo.so +0 -0
- data/lib/cairo.rb +3 -3
- data/test/cairo-test-utils.rb +8 -4
- data/test/test_context.rb +1 -1
- data/test/test_font_face.rb +1 -1
- data/test/test_recording_surface.rb +1 -0
- 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/fc-match.exe +0 -0
- data/vendor/local/bin/fc-pattern.exe +0 -0
- data/vendor/local/bin/fc-query.exe +0 -0
- data/vendor/local/bin/fc-scan.exe +0 -0
- data/vendor/local/bin/fc-validate.exe +0 -0
- data/vendor/local/bin/freetype-config +78 -28
- 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/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libfreetype-6.dll +0 -0
- data/vendor/local/bin/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +1 -1
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +1 -1
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/png-fix-itxt.exe +0 -0
- data/vendor/local/bin/pngfix.exe +0 -0
- data/vendor/local/bin/xml2-config +1 -1
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1211.dll +0 -0
- data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +56 -16
- data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +11 -2
- data/vendor/local/etc/fonts/conf.d/45-latin.conf +4 -0
- data/vendor/local/etc/fonts/conf.d/60-latin.conf +1 -0
- data/vendor/local/include/cairo/cairo-pdf.h +7 -8
- data/vendor/local/include/cairo/cairo-version.h +1 -1
- data/vendor/local/include/fontconfig/fontconfig.h +3 -2
- data/vendor/local/include/freetype2/freetype/config/ftconfig.h +10 -1
- data/vendor/local/include/freetype2/freetype/config/ftheader.h +14 -1
- data/vendor/local/include/freetype2/freetype/config/ftoption.h +79 -22
- data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +1 -1
- data/vendor/local/include/freetype2/freetype/freetype.h +616 -400
- data/vendor/local/include/freetype2/freetype/ftadvanc.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftautoh.h +32 -10
- data/vendor/local/include/freetype2/freetype/ftbbox.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbdf.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbitmap.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbzip2.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftcache.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftcffdrv.h +47 -1
- data/vendor/local/include/freetype2/freetype/ftchapters.h +1 -0
- data/vendor/local/include/freetype2/freetype/ftcid.h +1 -1
- data/vendor/local/include/freetype2/freetype/fterrdef.h +5 -1
- data/vendor/local/include/freetype2/freetype/fterrors.h +5 -5
- data/vendor/local/include/freetype2/freetype/ftfntfmt.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftgasp.h +12 -4
- data/vendor/local/include/freetype2/freetype/ftglyph.h +11 -2
- data/vendor/local/include/freetype2/freetype/ftgxval.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftgzip.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftimage.h +12 -12
- data/vendor/local/include/freetype2/freetype/ftincrem.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftlcdfil.h +46 -10
- data/vendor/local/include/freetype2/freetype/ftlist.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftlzw.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftmac.h +6 -5
- data/vendor/local/include/freetype2/freetype/ftmm.h +147 -58
- data/vendor/local/include/freetype2/freetype/ftmodapi.h +46 -3
- data/vendor/local/include/freetype2/freetype/ftmoderr.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftotval.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftoutln.h +4 -1
- data/vendor/local/include/freetype2/freetype/ftpcfdrv.h +105 -0
- data/vendor/local/include/freetype2/freetype/ftpfr.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftrender.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsizes.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsnames.h +117 -30
- data/vendor/local/include/freetype2/freetype/ftstroke.h +2 -2
- data/vendor/local/include/freetype2/freetype/ftsynth.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsystem.h +1 -1
- data/vendor/local/include/freetype2/freetype/fttrigon.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftttdrv.h +5 -6
- data/vendor/local/include/freetype2/freetype/fttypes.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftwinfnt.h +1 -1
- data/vendor/local/include/freetype2/freetype/t1tables.h +3 -3
- data/vendor/local/include/freetype2/freetype/ttnameid.h +313 -314
- data/vendor/local/include/freetype2/freetype/tttables.h +190 -173
- data/vendor/local/include/freetype2/freetype/tttags.h +7 -1
- data/vendor/local/include/freetype2/freetype/ttunpat.h +2 -2
- data/vendor/local/include/freetype2/ft2build.h +1 -1
- data/vendor/local/include/libpng16/png.h +29 -18
- data/vendor/local/include/libpng16/pngconf.h +1 -1
- data/vendor/local/include/libpng16/pnglibconf.h +5 -2
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +2 -2
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +1 -1
- data/vendor/local/include/libxml2/libxml/xmlreader.h +1 -1
- data/vendor/local/include/libxml2/libxml/xmlversion.h +4 -4
- data/vendor/local/include/png.h +29 -18
- data/vendor/local/include/pngconf.h +1 -1
- data/vendor/local/include/pnglibconf.h +5 -2
- data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +2 -2
- data/vendor/local/lib/fontconfig.def +1 -1
- data/vendor/local/lib/libcairo-gobject.a +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-gobject.la +2 -2
- data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.la +2 -2
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libcairo.la +2 -2
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.la +1 -1
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +2 -2
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +2 -2
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +2 -2
- data/vendor/local/lib/libxml2.a +0 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.la +1 -1
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-png.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-script.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo.pc +1 -1
- data/vendor/local/lib/pkgconfig/fontconfig.pc +2 -2
- data/vendor/local/lib/pkgconfig/freetype2.pc +1 -1
- data/vendor/local/lib/pkgconfig/libpng.pc +2 -1
- data/vendor/local/lib/pkgconfig/libpng16.pc +2 -1
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +1 -1
- data/vendor/local/lib/xml2Conf.sh +1 -1
- data/vendor/local/share/aclocal/freetype2.m4 +1 -1
- data/vendor/local/share/aclocal/libxml.m4 +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/Copyright +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testHTML.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testSAX.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testXPath.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/xmllint.c +78 -78
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/DOM.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/FAQ.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/encoding.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xml +256 -256
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xsl +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/book1.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/home.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/left.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-DOCBparser.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLparser.html +4 -4
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLtree.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX2.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-c14n.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-catalog.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-chvalid.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-debugXML.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-dict.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-encoding.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-entities.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-globals.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-hash.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-lib.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-list.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanoftp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanohttp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parser.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parserInternals.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-pattern.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-relaxng.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schemasInternals.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schematron.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-threads.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-tree.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-uri.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-valid.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xinclude.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xlink.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlIO.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlautomata.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlerror.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlexports.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmemory.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmodule.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlreader.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlregexp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlsave.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemas.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemastypes.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlstring.html +3 -3
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlunicode.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlversion.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlwriter.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpath.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpathInternals.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpointer.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xzlib.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/right.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/up.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/libxml.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse3.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse4.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/redhat.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/structure.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test1.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test2.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test3.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/testWriter.c +16 -16
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.c +1 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tst.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apa.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apb.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apc.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apd.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ape.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apf.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apg.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/aph.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/api.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s02.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s03.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s04.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s05.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s06.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s07.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s08.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s09.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddattribute.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddkeyword.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeconvert.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includegetattribute.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includekeyword.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includexpath.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ix01.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/xmltutorial.pdf +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/w3c.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/writer.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xml.html +154 -8
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.res +0 -0
- data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +56 -16
- data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +11 -2
- data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +4 -0
- data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +1 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +17 -25
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +42 -53
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +48 -63
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +68 -78
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +34 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +82 -92
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +50 -61
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +18 -27
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +22 -32
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +64 -79
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +21 -30
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +99 -125
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +31 -41
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +43 -56
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Tags-and-Links.html +23 -29
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +41 -48
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +19 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +56 -72
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +28 -39
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +39 -51
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +34 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +45 -57
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +62 -79
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +18 -27
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +53 -95
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +40 -53
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +71 -87
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +49 -57
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +158 -189
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +76 -92
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +146 -164
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +234 -264
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +104 -119
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +236 -6
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +62 -63
- data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +69 -70
- data/vendor/local/share/gtk-doc/html/cairo/index-1.14.html +11 -12
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +59 -60
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +35 -36
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +28 -29
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +39 -40
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +510 -511
- data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -5
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/style.css +160 -142
- data/vendor/local/share/gtk-doc/html/cairo/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +4 -4
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +3 -3
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +1 -1
- data/vendor/local/share/license/cairo/README +1 -1
- data/vendor/local/share/license/fontconfig/README +58 -2
- data/vendor/local/share/license/freetype/README +5 -5
- data/vendor/local/share/license/freetype/README.git +1 -1
- data/vendor/local/share/license/libpng/README +6 -6
- data/vendor/local/share/license/libxml2/README.zOS +212 -0
- data/vendor/local/share/man/man1/freetype-config.1 +44 -6
- data/vendor/local/share/man/man3/libpng.3 +106 -48
- data/vendor/local/share/man/man3/libpngpf.3 +4 -4
- data/vendor/local/share/man/man5/png.5 +5 -5
- metadata +175 -174
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +0 -764
@@ -2,17 +2,17 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Cairo: A Vector Graphics Library
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>Drawing: Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="index.html" title="Cairo: A Vector Graphics Library">
|
9
9
|
<link rel="prev" href="index.html" title="Cairo: A Vector Graphics Library">
|
10
10
|
<link rel="next" href="cairo-cairo-t.html" title="cairo_t">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
16
|
<td width="100%" align="left" class="shortcuts"></td>
|
17
17
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
18
|
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
@@ -50,7 +50,6 @@
|
|
50
50
|
</dl></div>
|
51
51
|
</div>
|
52
52
|
<div class="footer">
|
53
|
-
<hr>
|
54
|
-
Generated by GTK-Doc V1.20</div>
|
53
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
55
54
|
</body>
|
56
55
|
</html>
|
@@ -2,17 +2,17 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Cairo: A Vector Graphics Library
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>Fonts: Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="index.html" title="Cairo: A Vector Graphics Library">
|
9
9
|
<link rel="prev" href="cairo-Tags-and-Links.html" title="Tags and Links">
|
10
10
|
<link rel="next" href="cairo-cairo-font-face-t.html" title="cairo_font_face_t">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
16
|
<td width="100%" align="left" class="shortcuts"></td>
|
17
17
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
18
|
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
@@ -47,7 +47,6 @@
|
|
47
47
|
</dl></div>
|
48
48
|
</div>
|
49
49
|
<div class="footer">
|
50
|
-
<hr>
|
51
|
-
Generated by GTK-Doc V1.20</div>
|
50
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
52
51
|
</body>
|
53
52
|
</html>
|
@@ -2,17 +2,17 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Cairo: A Vector Graphics Library
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>Utilities: Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="index.html" title="Cairo: A Vector Graphics Library">
|
9
9
|
<link rel="prev" href="cairo-Script-Surfaces.html" title="Script Surfaces">
|
10
10
|
<link rel="next" href="cairo-cairo-matrix-t.html" title="cairo_matrix_t">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
16
|
<td width="100%" align="left" class="shortcuts"></td>
|
17
17
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
18
|
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
@@ -38,7 +38,6 @@
|
|
38
38
|
</dl></div>
|
39
39
|
</div>
|
40
40
|
<div class="footer">
|
41
|
-
<hr>
|
42
|
-
Generated by GTK-Doc V1.20</div>
|
41
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
43
42
|
</body>
|
44
43
|
</html>
|
@@ -2,17 +2,17 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Cairo: A Vector Graphics Library
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>Surfaces: Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="index.html" title="Cairo: A Vector Graphics Library">
|
9
9
|
<link rel="prev" href="cairo-User-Fonts.html" title="User Fonts">
|
10
10
|
<link rel="next" href="cairo-cairo-device-t.html" title="cairo_device_t">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
16
|
<td width="100%" align="left" class="shortcuts"></td>
|
17
17
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
18
|
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
@@ -68,7 +68,6 @@
|
|
68
68
|
</dl></div>
|
69
69
|
</div>
|
70
70
|
<div class="footer">
|
71
|
-
<hr>
|
72
|
-
Generated by GTK-Doc V1.20</div>
|
71
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
73
72
|
</body>
|
74
73
|
</html>
|
@@ -2,21 +2,20 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Cairo: A Vector Graphics Library
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>text: Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="cairo-drawing.html" title="Drawing">
|
9
9
|
<link rel="prev" href="cairo-Transformations.html" title="Transformations">
|
10
10
|
<link rel="next" href="cairo-Raster-Sources.html" title="Raster Sources">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
16
|
<td width="100%" align="left" class="shortcuts">
|
17
|
-
<a href="#" class="shortcut">Top</a><span id="nav_description">
|
18
|
-
<a href="#cairo-text.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-text.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#cairo-text.description" class="shortcut">Description</a></span>
|
20
19
|
</td>
|
21
20
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
21
|
<td><a accesskey="u" href="cairo-drawing.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
@@ -34,7 +33,7 @@
|
|
34
33
|
</tr></table></div>
|
35
34
|
<div class="refsect1">
|
36
35
|
<a name="cairo-text.functions"></a><h2>Functions</h2>
|
37
|
-
<div class="informaltable"><table width="100%" border="0">
|
36
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
38
37
|
<colgroup>
|
39
38
|
<col width="150px" class="functions_return">
|
40
39
|
<col class="functions_name">
|
@@ -236,7 +235,7 @@
|
|
236
235
|
</div>
|
237
236
|
<div class="refsect1">
|
238
237
|
<a name="cairo-text.other"></a><h2>Types and Values</h2>
|
239
|
-
<div class="informaltable"><table width="100%" border="0">
|
238
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
240
239
|
<colgroup>
|
241
240
|
<col width="150px" class="name">
|
242
241
|
<col class="description">
|
@@ -266,11 +265,6 @@
|
|
266
265
|
</table></div>
|
267
266
|
</div>
|
268
267
|
<div class="refsect1">
|
269
|
-
<a name="cairo-text.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
270
|
-
<pre class="screen">
|
271
|
-
</pre>
|
272
|
-
</div>
|
273
|
-
<div class="refsect1">
|
274
268
|
<a name="cairo-text.description"></a><h2>Description</h2>
|
275
269
|
<p>The functions with <span class="emphasis"><em>text</em></span> in their name form cairo's
|
276
270
|
<em class="firstterm">toy</em> text API. The toy API takes UTF-8 encoded
|
@@ -339,8 +333,8 @@ Default slant is <a class="link" href="cairo-text.html#CAIRO-FONT-SLANT-NORMAL:C
|
|
339
333
|
<p>This function is equivalent to a call to <a class="link" href="cairo-text.html#cairo-toy-font-face-create" title="cairo_toy_font_face_create ()"><code class="function">cairo_toy_font_face_create()</code></a>
|
340
334
|
followed by <a class="link" href="cairo-text.html#cairo-set-font-face" title="cairo_set_font_face ()"><code class="function">cairo_set_font_face()</code></a>.</p>
|
341
335
|
<div class="refsect3">
|
342
|
-
<a name="
|
343
|
-
<div class="informaltable"><table width="100%" border="0">
|
336
|
+
<a name="cairo-select-font-face.parameters"></a><h4>Parameters</h4>
|
337
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
344
338
|
<colgroup>
|
345
339
|
<col width="150px" class="parameters_name">
|
346
340
|
<col class="parameters_description">
|
@@ -370,7 +364,7 @@ followed by <a class="link" href="cairo-text.html#cairo-set-font-face" title="ca
|
|
370
364
|
</tbody>
|
371
365
|
</table></div>
|
372
366
|
</div>
|
373
|
-
<p class="since">Since 1.0</p>
|
367
|
+
<p class="since">Since: 1.0</p>
|
374
368
|
</div>
|
375
369
|
<hr>
|
376
370
|
<div class="refsect2">
|
@@ -391,8 +385,8 @@ em-square being a <em class="parameter"><code>size</code></em>
|
|
391
385
|
<a class="link" href="cairo-text.html#cairo-set-font-matrix" title="cairo_set_font_matrix ()"><code class="function">cairo_set_font_matrix()</code></a> nor <a class="link" href="cairo-text.html#cairo-set-scaled-font" title="cairo_set_scaled_font ()"><code class="function">cairo_set_scaled_font()</code></a>), the default
|
392
386
|
font size is 10.0.</p>
|
393
387
|
<div class="refsect3">
|
394
|
-
<a name="
|
395
|
-
<div class="informaltable"><table width="100%" border="0">
|
388
|
+
<a name="cairo-set-font-size.parameters"></a><h4>Parameters</h4>
|
389
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
396
390
|
<colgroup>
|
397
391
|
<col width="150px" class="parameters_name">
|
398
392
|
<col class="parameters_description">
|
@@ -412,7 +406,7 @@ font size is 10.0.</p>
|
|
412
406
|
</tbody>
|
413
407
|
</table></div>
|
414
408
|
</div>
|
415
|
-
<p class="since">Since 1.0</p>
|
409
|
+
<p class="since">Since: 1.0</p>
|
416
410
|
</div>
|
417
411
|
<hr>
|
418
412
|
<div class="refsect2">
|
@@ -428,8 +422,8 @@ simple scale is used (see <a class="link" href="cairo-text.html#cairo-set-font-s
|
|
428
422
|
complex font matrix can be used to shear the font
|
429
423
|
or stretch it unequally along the two axes</p>
|
430
424
|
<div class="refsect3">
|
431
|
-
<a name="
|
432
|
-
<div class="informaltable"><table width="100%" border="0">
|
425
|
+
<a name="cairo-set-font-matrix.parameters"></a><h4>Parameters</h4>
|
426
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
433
427
|
<colgroup>
|
434
428
|
<col width="150px" class="parameters_name">
|
435
429
|
<col class="parameters_description">
|
@@ -450,7 +444,7 @@ the current font.</p></td>
|
|
450
444
|
</tbody>
|
451
445
|
</table></div>
|
452
446
|
</div>
|
453
|
-
<p class="since">Since 1.0</p>
|
447
|
+
<p class="since">Since: 1.0</p>
|
454
448
|
</div>
|
455
449
|
<hr>
|
456
450
|
<div class="refsect2">
|
@@ -462,8 +456,8 @@ cairo_get_font_matrix (<em class="parameter"><code><a class="link" href="cairo-c
|
|
462
456
|
. See
|
463
457
|
<a class="link" href="cairo-text.html#cairo-set-font-matrix" title="cairo_set_font_matrix ()"><code class="function">cairo_set_font_matrix()</code></a>.</p>
|
464
458
|
<div class="refsect3">
|
465
|
-
<a name="
|
466
|
-
<div class="informaltable"><table width="100%" border="0">
|
459
|
+
<a name="cairo-get-font-matrix.parameters"></a><h4>Parameters</h4>
|
460
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
467
461
|
<colgroup>
|
468
462
|
<col width="150px" class="parameters_name">
|
469
463
|
<col class="parameters_description">
|
@@ -483,7 +477,7 @@ cairo_get_font_matrix (<em class="parameter"><code><a class="link" href="cairo-c
|
|
483
477
|
</tbody>
|
484
478
|
</table></div>
|
485
479
|
</div>
|
486
|
-
<p class="since">Since 1.0</p>
|
480
|
+
<p class="since">Since: 1.0</p>
|
487
481
|
</div>
|
488
482
|
<hr>
|
489
483
|
<div class="refsect2">
|
@@ -498,8 +492,8 @@ options derived from underlying surface; if the value in <em class="parameter"><
|
|
498
492
|
has a default value (like <a class="link" href="cairo-cairo-t.html#CAIRO-ANTIALIAS-DEFAULT:CAPS"><code class="literal">CAIRO_ANTIALIAS_DEFAULT</code></a>), then the value
|
499
493
|
from the surface is used.</p>
|
500
494
|
<div class="refsect3">
|
501
|
-
<a name="
|
502
|
-
<div class="informaltable"><table width="100%" border="0">
|
495
|
+
<a name="cairo-set-font-options.parameters"></a><h4>Parameters</h4>
|
496
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
503
497
|
<colgroup>
|
504
498
|
<col width="150px" class="parameters_name">
|
505
499
|
<col class="parameters_description">
|
@@ -519,7 +513,7 @@ from the surface is used.</p>
|
|
519
513
|
</tbody>
|
520
514
|
</table></div>
|
521
515
|
</div>
|
522
|
-
<p class="since">Since 1.0</p>
|
516
|
+
<p class="since">Since: 1.0</p>
|
523
517
|
</div>
|
524
518
|
<hr>
|
525
519
|
<div class="refsect2">
|
@@ -532,8 +526,8 @@ Note that the returned options do not include any options derived
|
|
532
526
|
from the underlying surface; they are literally the options
|
533
527
|
passed to <a class="link" href="cairo-text.html#cairo-set-font-options" title="cairo_set_font_options ()"><code class="function">cairo_set_font_options()</code></a>.</p>
|
534
528
|
<div class="refsect3">
|
535
|
-
<a name="
|
536
|
-
<div class="informaltable"><table width="100%" border="0">
|
529
|
+
<a name="cairo-get-font-options.parameters"></a><h4>Parameters</h4>
|
530
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
537
531
|
<colgroup>
|
538
532
|
<col width="150px" class="parameters_name">
|
539
533
|
<col class="parameters_description">
|
@@ -554,7 +548,7 @@ the retrieved options. All existing values are overwritten</p></td>
|
|
554
548
|
</tbody>
|
555
549
|
</table></div>
|
556
550
|
</div>
|
557
|
-
<p class="since">Since 1.0</p>
|
551
|
+
<p class="since">Since: 1.0</p>
|
558
552
|
</div>
|
559
553
|
<hr>
|
560
554
|
<div class="refsect2">
|
@@ -567,8 +561,8 @@ cairo_set_font_face (<em class="parameter"><code><a class="link" href="cairo-cai
|
|
567
561
|
. The replaced font face in the <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> will be
|
568
562
|
destroyed if there are no other references to it.</p>
|
569
563
|
<div class="refsect3">
|
570
|
-
<a name="
|
571
|
-
<div class="informaltable"><table width="100%" border="0">
|
564
|
+
<a name="cairo-set-font-face.parameters"></a><h4>Parameters</h4>
|
565
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
572
566
|
<colgroup>
|
573
567
|
<col width="150px" class="parameters_name">
|
574
568
|
<col class="parameters_description">
|
@@ -588,7 +582,7 @@ destroyed if there are no other references to it.</p>
|
|
588
582
|
</tbody>
|
589
583
|
</table></div>
|
590
584
|
</div>
|
591
|
-
<p class="since">Since 1.0</p>
|
585
|
+
<p class="since">Since: 1.0</p>
|
592
586
|
</div>
|
593
587
|
<hr>
|
594
588
|
<div class="refsect2">
|
@@ -597,8 +591,8 @@ destroyed if there are no other references to it.</p>
|
|
597
591
|
cairo_get_font_face (<em class="parameter"><code><a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> *cr</code></em>);</pre>
|
598
592
|
<p>Gets the current font face for a <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a>.</p>
|
599
593
|
<div class="refsect3">
|
600
|
-
<a name="
|
601
|
-
<div class="informaltable"><table width="100%" border="0">
|
594
|
+
<a name="cairo-get-font-face.parameters"></a><h4>Parameters</h4>
|
595
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
602
596
|
<colgroup>
|
603
597
|
<col width="150px" class="parameters_name">
|
604
598
|
<col class="parameters_description">
|
@@ -612,7 +606,7 @@ cairo_get_font_face (<em class="parameter"><code><a class="link" href="cairo-cai
|
|
612
606
|
</table></div>
|
613
607
|
</div>
|
614
608
|
<div class="refsect3">
|
615
|
-
<a name="
|
609
|
+
<a name="cairo-get-font-face.returns"></a><h4>Returns</h4>
|
616
610
|
<p> the current font face. This object is owned by
|
617
611
|
cairo. To keep a reference to it, you must call
|
618
612
|
<a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-reference" title="cairo_font_face_reference ()"><code class="function">cairo_font_face_reference()</code></a>.</p>
|
@@ -623,9 +617,8 @@ this nil object will cause its error state to propagate to other
|
|
623
617
|
objects it is passed to, (for example, calling
|
624
618
|
<a class="link" href="cairo-text.html#cairo-set-font-face" title="cairo_set_font_face ()"><code class="function">cairo_set_font_face()</code></a> with a nil font will trigger an error that
|
625
619
|
will shutdown the <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> object).</p>
|
626
|
-
<p></p>
|
627
620
|
</div>
|
628
|
-
<p class="since">Since 1.0</p>
|
621
|
+
<p class="since">Since: 1.0</p>
|
629
622
|
</div>
|
630
623
|
<hr>
|
631
624
|
<div class="refsect2">
|
@@ -639,8 +632,8 @@ some translation, the current CTM of the <a class="link" href="cairo-cairo-t.htm
|
|
639
632
|
same as that of the <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a>, which can be accessed
|
640
633
|
using <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-ctm" title="cairo_scaled_font_get_ctm ()"><code class="function">cairo_scaled_font_get_ctm()</code></a>.</p>
|
641
634
|
<div class="refsect3">
|
642
|
-
<a name="
|
643
|
-
<div class="informaltable"><table width="100%" border="0">
|
635
|
+
<a name="cairo-set-scaled-font.parameters"></a><h4>Parameters</h4>
|
636
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
644
637
|
<colgroup>
|
645
638
|
<col width="150px" class="parameters_name">
|
646
639
|
<col class="parameters_description">
|
@@ -660,7 +653,7 @@ using <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get
|
|
660
653
|
</tbody>
|
661
654
|
</table></div>
|
662
655
|
</div>
|
663
|
-
<p class="since">Since 1.2</p>
|
656
|
+
<p class="since">Since: 1.2</p>
|
664
657
|
</div>
|
665
658
|
<hr>
|
666
659
|
<div class="refsect2">
|
@@ -669,8 +662,8 @@ using <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get
|
|
669
662
|
cairo_get_scaled_font (<em class="parameter"><code><a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> *cr</code></em>);</pre>
|
670
663
|
<p>Gets the current scaled font for a <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a>.</p>
|
671
664
|
<div class="refsect3">
|
672
|
-
<a name="
|
673
|
-
<div class="informaltable"><table width="100%" border="0">
|
665
|
+
<a name="cairo-get-scaled-font.parameters"></a><h4>Parameters</h4>
|
666
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
674
667
|
<colgroup>
|
675
668
|
<col width="150px" class="parameters_name">
|
676
669
|
<col class="parameters_description">
|
@@ -684,7 +677,7 @@ cairo_get_scaled_font (<em class="parameter"><code><a class="link" href="cairo-c
|
|
684
677
|
</table></div>
|
685
678
|
</div>
|
686
679
|
<div class="refsect3">
|
687
|
-
<a name="
|
680
|
+
<a name="cairo-get-scaled-font.returns"></a><h4>Returns</h4>
|
688
681
|
<p> the current scaled font. This object is owned by
|
689
682
|
cairo. To keep a reference to it, you must call
|
690
683
|
<a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-reference" title="cairo_scaled_font_reference ()"><code class="function">cairo_scaled_font_reference()</code></a>.</p>
|
@@ -695,9 +688,8 @@ this nil object will cause its error state to propagate to other
|
|
695
688
|
objects it is passed to, (for example, calling
|
696
689
|
<a class="link" href="cairo-text.html#cairo-set-scaled-font" title="cairo_set_scaled_font ()"><code class="function">cairo_set_scaled_font()</code></a> with a nil font will trigger an error that
|
697
690
|
will shutdown the <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> object).</p>
|
698
|
-
<p></p>
|
699
691
|
</div>
|
700
|
-
<p class="since">Since 1.4</p>
|
692
|
+
<p class="since">Since: 1.4</p>
|
701
693
|
</div>
|
702
694
|
<hr>
|
703
695
|
<div class="refsect2">
|
@@ -724,8 +716,8 @@ and simple programs, but it is not expected to be adequate for
|
|
724
716
|
serious text-using applications. See <a class="link" href="cairo-text.html#cairo-show-glyphs" title="cairo_show_glyphs ()"><code class="function">cairo_show_glyphs()</code></a> for the
|
725
717
|
"real" text display API in cairo.</p>
|
726
718
|
<div class="refsect3">
|
727
|
-
<a name="
|
728
|
-
<div class="informaltable"><table width="100%" border="0">
|
719
|
+
<a name="cairo-show-text.parameters"></a><h4>Parameters</h4>
|
720
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
729
721
|
<colgroup>
|
730
722
|
<col width="150px" class="parameters_name">
|
731
723
|
<col class="parameters_description">
|
@@ -745,7 +737,7 @@ serious text-using applications. See <a class="link" href="cairo-text.html#cairo
|
|
745
737
|
</tbody>
|
746
738
|
</table></div>
|
747
739
|
</div>
|
748
|
-
<p class="since">Since 1.0</p>
|
740
|
+
<p class="since">Since: 1.0</p>
|
749
741
|
</div>
|
750
742
|
<hr>
|
751
743
|
<div class="refsect2">
|
@@ -758,8 +750,8 @@ cairo_show_glyphs (<em class="parameter"><code><a class="link" href="cairo-cairo
|
|
758
750
|
rendered according to the current font face, font size
|
759
751
|
(font matrix), and font options.</p>
|
760
752
|
<div class="refsect3">
|
761
|
-
<a name="
|
762
|
-
<div class="informaltable"><table width="100%" border="0">
|
753
|
+
<a name="cairo-show-glyphs.parameters"></a><h4>Parameters</h4>
|
754
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
763
755
|
<colgroup>
|
764
756
|
<col width="150px" class="parameters_name">
|
765
757
|
<col class="parameters_description">
|
@@ -784,7 +776,7 @@ rendered according to the current font face, font size
|
|
784
776
|
</tbody>
|
785
777
|
</table></div>
|
786
778
|
</div>
|
787
|
-
<p class="since">Since 1.0</p>
|
779
|
+
<p class="since">Since: 1.0</p>
|
788
780
|
</div>
|
789
781
|
<hr>
|
790
782
|
<div class="refsect2">
|
@@ -828,8 +820,8 @@ of <em class="parameter"><code>glyphs</code></em>
|
|
828
820
|
following clusters move backward.</p>
|
829
821
|
<p>See <a class="link" href="cairo-text.html#cairo-text-cluster-t" title="cairo_text_cluster_t"><span class="type">cairo_text_cluster_t</span></a> for constraints on valid clusters.</p>
|
830
822
|
<div class="refsect3">
|
831
|
-
<a name="
|
832
|
-
<div class="informaltable"><table width="100%" border="0">
|
823
|
+
<a name="cairo-show-text-glyphs.parameters"></a><h4>Parameters</h4>
|
824
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
833
825
|
<colgroup>
|
834
826
|
<col width="150px" class="parameters_name">
|
835
827
|
<col class="parameters_description">
|
@@ -880,7 +872,7 @@ in bytes, or -1 if it is NUL-terminated</p></td>
|
|
880
872
|
</tbody>
|
881
873
|
</table></div>
|
882
874
|
</div>
|
883
|
-
<p class="since">Since 1.8</p>
|
875
|
+
<p class="since">Since: 1.8</p>
|
884
876
|
</div>
|
885
877
|
<hr>
|
886
878
|
<div class="refsect2">
|
@@ -890,8 +882,8 @@ cairo_font_extents (<em class="parameter"><code><a class="link" href="cairo-cair
|
|
890
882
|
<em class="parameter"><code><a class="link" href="cairo-cairo-scaled-font-t.html#cairo-font-extents-t" title="cairo_font_extents_t"><span class="type">cairo_font_extents_t</span></a> *extents</code></em>);</pre>
|
891
883
|
<p>Gets the font extents for the currently selected font.</p>
|
892
884
|
<div class="refsect3">
|
893
|
-
<a name="
|
894
|
-
<div class="informaltable"><table width="100%" border="0">
|
885
|
+
<a name="cairo-font-extents.parameters"></a><h4>Parameters</h4>
|
886
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
895
887
|
<colgroup>
|
896
888
|
<col width="150px" class="parameters_name">
|
897
889
|
<col class="parameters_description">
|
@@ -912,7 +904,7 @@ will be stored.</p></td>
|
|
912
904
|
</tbody>
|
913
905
|
</table></div>
|
914
906
|
</div>
|
915
|
-
<p class="since">Since 1.0</p>
|
907
|
+
<p class="since">Since: 1.0</p>
|
916
908
|
</div>
|
917
909
|
<hr>
|
918
910
|
<div class="refsect2">
|
@@ -933,8 +925,8 @@ characters. In particular, trailing whitespace characters are
|
|
933
925
|
likely to not affect the size of the rectangle, though they will
|
934
926
|
affect the x_advance and y_advance values.</p>
|
935
927
|
<div class="refsect3">
|
936
|
-
<a name="
|
937
|
-
<div class="informaltable"><table width="100%" border="0">
|
928
|
+
<a name="cairo-text-extents.parameters"></a><h4>Parameters</h4>
|
929
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
938
930
|
<colgroup>
|
939
931
|
<col width="150px" class="parameters_name">
|
940
932
|
<col class="parameters_description">
|
@@ -960,7 +952,7 @@ will be stored</p></td>
|
|
960
952
|
</tbody>
|
961
953
|
</table></div>
|
962
954
|
</div>
|
963
|
-
<p class="since">Since 1.0</p>
|
955
|
+
<p class="since">Since: 1.0</p>
|
964
956
|
</div>
|
965
957
|
<hr>
|
966
958
|
<div class="refsect2">
|
@@ -979,8 +971,8 @@ amount by which the current point would be advanced by
|
|
979
971
|
<p>Note that whitespace glyphs do not contribute to the size of the
|
980
972
|
rectangle (extents.width and extents.height).</p>
|
981
973
|
<div class="refsect3">
|
982
|
-
<a name="
|
983
|
-
<div class="informaltable"><table width="100%" border="0">
|
974
|
+
<a name="cairo-glyph-extents.parameters"></a><h4>Parameters</h4>
|
975
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
984
976
|
<colgroup>
|
985
977
|
<col width="150px" class="parameters_name">
|
986
978
|
<col class="parameters_description">
|
@@ -1012,7 +1004,7 @@ will be stored</p></td>
|
|
1012
1004
|
</tbody>
|
1013
1005
|
</table></div>
|
1014
1006
|
</div>
|
1015
|
-
<p class="since">Since 1.0</p>
|
1007
|
+
<p class="since">Since: 1.0</p>
|
1016
1008
|
</div>
|
1017
1009
|
<hr>
|
1018
1010
|
<div class="refsect2">
|
@@ -1031,8 +1023,8 @@ family is assumed. The default family then can be queried using
|
|
1031
1023
|
<p>The <a class="link" href="cairo-text.html#cairo-select-font-face" title="cairo_select_font_face ()"><code class="function">cairo_select_font_face()</code></a> function uses this to create font faces.
|
1032
1024
|
See that function for limitations and other details of toy font faces.</p>
|
1033
1025
|
<div class="refsect3">
|
1034
|
-
<a name="
|
1035
|
-
<div class="informaltable"><table width="100%" border="0">
|
1026
|
+
<a name="cairo-toy-font-face-create.parameters"></a><h4>Parameters</h4>
|
1027
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1036
1028
|
<colgroup>
|
1037
1029
|
<col width="150px" class="parameters_name">
|
1038
1030
|
<col class="parameters_description">
|
@@ -1058,12 +1050,11 @@ See that function for limitations and other details of toy font faces.</p>
|
|
1058
1050
|
</table></div>
|
1059
1051
|
</div>
|
1060
1052
|
<div class="refsect3">
|
1061
|
-
<a name="
|
1053
|
+
<a name="cairo-toy-font-face-create.returns"></a><h4>Returns</h4>
|
1062
1054
|
<p> a newly created <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>. Free with
|
1063
1055
|
<a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-destroy" title="cairo_font_face_destroy ()"><code class="function">cairo_font_face_destroy()</code></a> when you are done using it.</p>
|
1064
|
-
<p></p>
|
1065
1056
|
</div>
|
1066
|
-
<p class="since">Since 1.8</p>
|
1057
|
+
<p class="since">Since: 1.8</p>
|
1067
1058
|
</div>
|
1068
1059
|
<hr>
|
1069
1060
|
<div class="refsect2">
|
@@ -1072,8 +1063,8 @@ See that function for limitations and other details of toy font faces.</p>
|
|
1072
1063
|
cairo_toy_font_face_get_family (<em class="parameter"><code><a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a> *font_face</code></em>);</pre>
|
1073
1064
|
<p>Gets the familly name of a toy font.</p>
|
1074
1065
|
<div class="refsect3">
|
1075
|
-
<a name="
|
1076
|
-
<div class="informaltable"><table width="100%" border="0">
|
1066
|
+
<a name="cairo-toy-font-face-get-family.parameters"></a><h4>Parameters</h4>
|
1067
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1077
1068
|
<colgroup>
|
1078
1069
|
<col width="150px" class="parameters_name">
|
1079
1070
|
<col class="parameters_description">
|
@@ -1087,12 +1078,11 @@ cairo_toy_font_face_get_family (<em class="parameter"><code><a class="link" href
|
|
1087
1078
|
</table></div>
|
1088
1079
|
</div>
|
1089
1080
|
<div class="refsect3">
|
1090
|
-
<a name="
|
1081
|
+
<a name="cairo-toy-font-face-get-family.returns"></a><h4>Returns</h4>
|
1091
1082
|
<p> The family name. This string is owned by the font face
|
1092
1083
|
and remains valid as long as the font face is alive (referenced).</p>
|
1093
|
-
<p></p>
|
1094
1084
|
</div>
|
1095
|
-
<p class="since">Since 1.8</p>
|
1085
|
+
<p class="since">Since: 1.8</p>
|
1096
1086
|
</div>
|
1097
1087
|
<hr>
|
1098
1088
|
<div class="refsect2">
|
@@ -1101,8 +1091,8 @@ and remains valid as long as the font face is alive (referenced).</p>
|
|
1101
1091
|
cairo_toy_font_face_get_slant (<em class="parameter"><code><a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a> *font_face</code></em>);</pre>
|
1102
1092
|
<p>Gets the slant a toy font.</p>
|
1103
1093
|
<div class="refsect3">
|
1104
|
-
<a name="
|
1105
|
-
<div class="informaltable"><table width="100%" border="0">
|
1094
|
+
<a name="cairo-toy-font-face-get-slant.parameters"></a><h4>Parameters</h4>
|
1095
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1106
1096
|
<colgroup>
|
1107
1097
|
<col width="150px" class="parameters_name">
|
1108
1098
|
<col class="parameters_description">
|
@@ -1116,11 +1106,10 @@ cairo_toy_font_face_get_slant (<em class="parameter"><code><a class="link" href=
|
|
1116
1106
|
</table></div>
|
1117
1107
|
</div>
|
1118
1108
|
<div class="refsect3">
|
1119
|
-
<a name="
|
1109
|
+
<a name="cairo-toy-font-face-get-slant.returns"></a><h4>Returns</h4>
|
1120
1110
|
<p> The slant value</p>
|
1121
|
-
<p></p>
|
1122
1111
|
</div>
|
1123
|
-
<p class="since">Since 1.8</p>
|
1112
|
+
<p class="since">Since: 1.8</p>
|
1124
1113
|
</div>
|
1125
1114
|
<hr>
|
1126
1115
|
<div class="refsect2">
|
@@ -1129,8 +1118,8 @@ cairo_toy_font_face_get_slant (<em class="parameter"><code><a class="link" href=
|
|
1129
1118
|
cairo_toy_font_face_get_weight (<em class="parameter"><code><a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a> *font_face</code></em>);</pre>
|
1130
1119
|
<p>Gets the weight a toy font.</p>
|
1131
1120
|
<div class="refsect3">
|
1132
|
-
<a name="
|
1133
|
-
<div class="informaltable"><table width="100%" border="0">
|
1121
|
+
<a name="cairo-toy-font-face-get-weight.parameters"></a><h4>Parameters</h4>
|
1122
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1134
1123
|
<colgroup>
|
1135
1124
|
<col width="150px" class="parameters_name">
|
1136
1125
|
<col class="parameters_description">
|
@@ -1144,11 +1133,10 @@ cairo_toy_font_face_get_weight (<em class="parameter"><code><a class="link" href
|
|
1144
1133
|
</table></div>
|
1145
1134
|
</div>
|
1146
1135
|
<div class="refsect3">
|
1147
|
-
<a name="
|
1136
|
+
<a name="cairo-toy-font-face-get-weight.returns"></a><h4>Returns</h4>
|
1148
1137
|
<p> The weight value</p>
|
1149
|
-
<p></p>
|
1150
1138
|
</div>
|
1151
|
-
<p class="since">Since 1.8</p>
|
1139
|
+
<p class="since">Since: 1.8</p>
|
1152
1140
|
</div>
|
1153
1141
|
<hr>
|
1154
1142
|
<div class="refsect2">
|
@@ -1167,8 +1155,8 @@ or if out of memory. That means, the <code class="literal">NULL</code> return v
|
|
1167
1155
|
signals out-of-memory only if <em class="parameter"><code>num_glyphs</code></em>
|
1168
1156
|
was positive.</p>
|
1169
1157
|
<div class="refsect3">
|
1170
|
-
<a name="
|
1171
|
-
<div class="informaltable"><table width="100%" border="0">
|
1158
|
+
<a name="cairo-glyph-allocate.parameters"></a><h4>Parameters</h4>
|
1159
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1172
1160
|
<colgroup>
|
1173
1161
|
<col width="150px" class="parameters_name">
|
1174
1162
|
<col class="parameters_description">
|
@@ -1182,12 +1170,11 @@ signals out-of-memory only if <em class="parameter"><code>num_glyphs</code></em>
|
|
1182
1170
|
</table></div>
|
1183
1171
|
</div>
|
1184
1172
|
<div class="refsect3">
|
1185
|
-
<a name="
|
1173
|
+
<a name="cairo-glyph-allocate.returns"></a><h4>Returns</h4>
|
1186
1174
|
<p> the newly allocated array of glyphs that should be
|
1187
1175
|
freed using <a class="link" href="cairo-text.html#cairo-glyph-free" title="cairo_glyph_free ()"><code class="function">cairo_glyph_free()</code></a></p>
|
1188
|
-
<p></p>
|
1189
1176
|
</div>
|
1190
|
-
<p class="since">Since 1.8</p>
|
1177
|
+
<p class="since">Since: 1.8</p>
|
1191
1178
|
</div>
|
1192
1179
|
<hr>
|
1193
1180
|
<div class="refsect2">
|
@@ -1201,8 +1188,8 @@ an array of glyphs that the user will free.
|
|
1201
1188
|
For all other uses, user can use their own allocation method
|
1202
1189
|
for glyphs.</p>
|
1203
1190
|
<div class="refsect3">
|
1204
|
-
<a name="
|
1205
|
-
<div class="informaltable"><table width="100%" border="0">
|
1191
|
+
<a name="cairo-glyph-free.parameters"></a><h4>Parameters</h4>
|
1192
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1206
1193
|
<colgroup>
|
1207
1194
|
<col width="150px" class="parameters_name">
|
1208
1195
|
<col class="parameters_description">
|
@@ -1215,7 +1202,7 @@ for glyphs.</p>
|
|
1215
1202
|
</tr></tbody>
|
1216
1203
|
</table></div>
|
1217
1204
|
</div>
|
1218
|
-
<p class="since">Since 1.8</p>
|
1205
|
+
<p class="since">Since: 1.8</p>
|
1219
1206
|
</div>
|
1220
1207
|
<hr>
|
1221
1208
|
<div class="refsect2">
|
@@ -1234,8 +1221,8 @@ or if out of memory. That means, the <code class="literal">NULL</code> return v
|
|
1234
1221
|
signals out-of-memory only if <em class="parameter"><code>num_clusters</code></em>
|
1235
1222
|
was positive.</p>
|
1236
1223
|
<div class="refsect3">
|
1237
|
-
<a name="
|
1238
|
-
<div class="informaltable"><table width="100%" border="0">
|
1224
|
+
<a name="cairo-text-cluster-allocate.parameters"></a><h4>Parameters</h4>
|
1225
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1239
1226
|
<colgroup>
|
1240
1227
|
<col width="150px" class="parameters_name">
|
1241
1228
|
<col class="parameters_description">
|
@@ -1249,12 +1236,11 @@ signals out-of-memory only if <em class="parameter"><code>num_clusters</code></e
|
|
1249
1236
|
</table></div>
|
1250
1237
|
</div>
|
1251
1238
|
<div class="refsect3">
|
1252
|
-
<a name="
|
1239
|
+
<a name="cairo-text-cluster-allocate.returns"></a><h4>Returns</h4>
|
1253
1240
|
<p> the newly allocated array of text clusters that should be
|
1254
1241
|
freed using <a class="link" href="cairo-text.html#cairo-text-cluster-free" title="cairo_text_cluster_free ()"><code class="function">cairo_text_cluster_free()</code></a></p>
|
1255
|
-
<p></p>
|
1256
1242
|
</div>
|
1257
|
-
<p class="since">Since 1.8</p>
|
1243
|
+
<p class="since">Since: 1.8</p>
|
1258
1244
|
</div>
|
1259
1245
|
<hr>
|
1260
1246
|
<div class="refsect2">
|
@@ -1268,8 +1254,8 @@ an array of text clusters that the user will free.
|
|
1268
1254
|
For all other uses, user can use their own allocation method
|
1269
1255
|
for text clusters.</p>
|
1270
1256
|
<div class="refsect3">
|
1271
|
-
<a name="
|
1272
|
-
<div class="informaltable"><table width="100%" border="0">
|
1257
|
+
<a name="cairo-text-cluster-free.parameters"></a><h4>Parameters</h4>
|
1258
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1273
1259
|
<colgroup>
|
1274
1260
|
<col width="150px" class="parameters_name">
|
1275
1261
|
<col class="parameters_description">
|
@@ -1282,7 +1268,7 @@ for text clusters.</p>
|
|
1282
1268
|
</tr></tbody>
|
1283
1269
|
</table></div>
|
1284
1270
|
</div>
|
1285
|
-
<p class="since">Since 1.8</p>
|
1271
|
+
<p class="since">Since: 1.8</p>
|
1286
1272
|
</div>
|
1287
1273
|
</div>
|
1288
1274
|
<div class="refsect1">
|
@@ -1311,8 +1297,8 @@ underlying font system.</p>
|
|
1311
1297
|
drawing or measuring text, each glyph is individually positioned
|
1312
1298
|
with respect to the overall origin</p>
|
1313
1299
|
<div class="refsect3">
|
1314
|
-
<a name="
|
1315
|
-
<div class="informaltable"><table width="100%" border="0">
|
1300
|
+
<a name="cairo-glyph-t.members"></a><h4>Members</h4>
|
1301
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1316
1302
|
<colgroup>
|
1317
1303
|
<col width="300px" class="struct_members_name">
|
1318
1304
|
<col class="struct_members_description">
|
@@ -1340,15 +1326,15 @@ drawing or measuring the string and the origin of this glyph.</p></td>
|
|
1340
1326
|
</tbody>
|
1341
1327
|
</table></div>
|
1342
1328
|
</div>
|
1343
|
-
<p class="since">Since 1.0</p>
|
1329
|
+
<p class="since">Since: 1.0</p>
|
1344
1330
|
</div>
|
1345
1331
|
<hr>
|
1346
1332
|
<div class="refsect2">
|
1347
1333
|
<a name="cairo-font-slant-t"></a><h3>enum cairo_font_slant_t</h3>
|
1348
1334
|
<p>Specifies variants of a font face based on their slant.</p>
|
1349
1335
|
<div class="refsect3">
|
1350
|
-
<a name="
|
1351
|
-
<div class="informaltable"><table width="100%" border="0">
|
1336
|
+
<a name="cairo-font-slant-t.members"></a><h4>Members</h4>
|
1337
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1352
1338
|
<colgroup>
|
1353
1339
|
<col width="300px" class="enum_members_name">
|
1354
1340
|
<col class="enum_members_description">
|
@@ -1379,15 +1365,15 @@ drawing or measuring the string and the origin of this glyph.</p></td>
|
|
1379
1365
|
</tbody>
|
1380
1366
|
</table></div>
|
1381
1367
|
</div>
|
1382
|
-
<p class="since">Since 1.0</p>
|
1368
|
+
<p class="since">Since: 1.0</p>
|
1383
1369
|
</div>
|
1384
1370
|
<hr>
|
1385
1371
|
<div class="refsect2">
|
1386
1372
|
<a name="cairo-font-weight-t"></a><h3>enum cairo_font_weight_t</h3>
|
1387
1373
|
<p>Specifies variants of a font face based on their weight.</p>
|
1388
1374
|
<div class="refsect3">
|
1389
|
-
<a name="
|
1390
|
-
<div class="informaltable"><table width="100%" border="0">
|
1375
|
+
<a name="cairo-font-weight-t.members"></a><h4>Members</h4>
|
1376
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1391
1377
|
<colgroup>
|
1392
1378
|
<col width="300px" class="enum_members_name">
|
1393
1379
|
<col class="enum_members_description">
|
@@ -1411,7 +1397,7 @@ drawing or measuring the string and the origin of this glyph.</p></td>
|
|
1411
1397
|
</tbody>
|
1412
1398
|
</table></div>
|
1413
1399
|
</div>
|
1414
|
-
<p class="since">Since 1.0</p>
|
1400
|
+
<p class="since">Since: 1.0</p>
|
1415
1401
|
</div>
|
1416
1402
|
<hr>
|
1417
1403
|
<div class="refsect2">
|
@@ -1434,8 +1420,8 @@ ignore those clusters when PDF text is being selected.</p>
|
|
1434
1420
|
<p>See <a class="link" href="cairo-text.html#cairo-show-text-glyphs" title="cairo_show_text_glyphs ()"><code class="function">cairo_show_text_glyphs()</code></a> for how clusters are used in advanced
|
1435
1421
|
text operations.</p>
|
1436
1422
|
<div class="refsect3">
|
1437
|
-
<a name="
|
1438
|
-
<div class="informaltable"><table width="100%" border="0">
|
1423
|
+
<a name="cairo-text-cluster-t.members"></a><h4>Members</h4>
|
1424
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1439
1425
|
<colgroup>
|
1440
1426
|
<col width="300px" class="struct_members_name">
|
1441
1427
|
<col class="struct_members_description">
|
@@ -1455,15 +1441,15 @@ text operations.</p>
|
|
1455
1441
|
</tbody>
|
1456
1442
|
</table></div>
|
1457
1443
|
</div>
|
1458
|
-
<p class="since">Since 1.8</p>
|
1444
|
+
<p class="since">Since: 1.8</p>
|
1459
1445
|
</div>
|
1460
1446
|
<hr>
|
1461
1447
|
<div class="refsect2">
|
1462
1448
|
<a name="cairo-text-cluster-flags-t"></a><h3>enum cairo_text_cluster_flags_t</h3>
|
1463
1449
|
<p>Specifies properties of a text cluster mapping.</p>
|
1464
1450
|
<div class="refsect3">
|
1465
|
-
<a name="
|
1466
|
-
<div class="informaltable"><table width="100%" border="0">
|
1451
|
+
<a name="cairo-text-cluster-flags-t.members"></a><h4>Members</h4>
|
1452
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1467
1453
|
<colgroup>
|
1468
1454
|
<col width="300px" class="enum_members_name">
|
1469
1455
|
<col class="enum_members_description">
|
@@ -1479,7 +1465,7 @@ map to glyphs in the glyph array from end to start. (Since 1.8)</p>
|
|
1479
1465
|
</tr></tbody>
|
1480
1466
|
</table></div>
|
1481
1467
|
</div>
|
1482
|
-
<p class="since">Since 1.8</p>
|
1468
|
+
<p class="since">Since: 1.8</p>
|
1483
1469
|
</div>
|
1484
1470
|
</div>
|
1485
1471
|
<div class="refsect1">
|
@@ -1489,7 +1475,6 @@ map to glyphs in the glyph array from end to start. (Since 1.8)</p>
|
|
1489
1475
|
</div>
|
1490
1476
|
</div>
|
1491
1477
|
<div class="footer">
|
1492
|
-
<hr>
|
1493
|
-
Generated by GTK-Doc V1.20</div>
|
1478
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
1494
1479
|
</body>
|
1495
1480
|
</html>
|