cairo 1.15.9-x86-mingw32 → 1.15.10-x86-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,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>Win32 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="cairo-fonts.html" title="Fonts">
|
9
9
|
<link rel="prev" href="cairo-FreeType-Fonts.html" title="FreeType Fonts">
|
10
10
|
<link rel="next" href="cairo-Quartz-(CGFont)-Fonts.html" title="Quartz (CGFont) Fonts">
|
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-Win32-Fonts.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-Win32-Fonts.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-Win32-Fonts.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-fonts.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-Win32-Fonts.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">
|
@@ -109,7 +108,7 @@
|
|
109
108
|
</div>
|
110
109
|
<div class="refsect1">
|
111
110
|
<a name="cairo-Win32-Fonts.other"></a><h2>Types and Values</h2>
|
112
|
-
<div class="informaltable"><table width="100%" border="0">
|
111
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
113
112
|
<colgroup>
|
114
113
|
<col width="150px" class="name">
|
115
114
|
<col class="description">
|
@@ -121,11 +120,6 @@
|
|
121
120
|
</table></div>
|
122
121
|
</div>
|
123
122
|
<div class="refsect1">
|
124
|
-
<a name="cairo-Win32-Fonts.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
125
|
-
<pre class="screen">
|
126
|
-
</pre>
|
127
|
-
</div>
|
128
|
-
<div class="refsect1">
|
129
123
|
<a name="cairo-Win32-Fonts.description"></a><h2>Description</h2>
|
130
124
|
<p>The Microsoft Windows font backend is primarily used to render text on
|
131
125
|
Microsoft Windows systems.</p>
|
@@ -144,8 +138,8 @@ The <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" ti
|
|
144
138
|
returned from <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a> is also for the Win32 backend
|
145
139
|
and can be used with functions such as <a class="link" href="cairo-Win32-Fonts.html#cairo-win32-scaled-font-select-font" title="cairo_win32_scaled_font_select_font ()"><code class="function">cairo_win32_scaled_font_select_font()</code></a>.</p>
|
146
140
|
<div class="refsect3">
|
147
|
-
<a name="
|
148
|
-
<div class="informaltable"><table width="100%" border="0">
|
141
|
+
<a name="cairo-win32-font-face-create-for-logfontw.parameters"></a><h4>Parameters</h4>
|
142
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
149
143
|
<colgroup>
|
150
144
|
<col width="150px" class="parameters_name">
|
151
145
|
<col class="parameters_description">
|
@@ -161,12 +155,11 @@ fields of this structure are ignored.</p></td>
|
|
161
155
|
</table></div>
|
162
156
|
</div>
|
163
157
|
<div class="refsect3">
|
164
|
-
<a name="
|
158
|
+
<a name="cairo-win32-font-face-create-for-logfontw.returns"></a><h4>Returns</h4>
|
165
159
|
<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
|
166
160
|
<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>
|
167
|
-
<p></p>
|
168
161
|
</div>
|
169
|
-
<p class="since">Since 1.0</p>
|
162
|
+
<p class="since">Since: 1.0</p>
|
170
163
|
</div>
|
171
164
|
<hr>
|
172
165
|
<div class="refsect2">
|
@@ -181,8 +174,8 @@ The <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" ti
|
|
181
174
|
returned from <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a> is also for the Win32 backend
|
182
175
|
and can be used with functions such as <a class="link" href="cairo-Win32-Fonts.html#cairo-win32-scaled-font-select-font" title="cairo_win32_scaled_font_select_font ()"><code class="function">cairo_win32_scaled_font_select_font()</code></a>.</p>
|
183
176
|
<div class="refsect3">
|
184
|
-
<a name="
|
185
|
-
<div class="informaltable"><table width="100%" border="0">
|
177
|
+
<a name="cairo-win32-font-face-create-for-hfont.parameters"></a><h4>Parameters</h4>
|
178
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
186
179
|
<colgroup>
|
187
180
|
<col width="150px" class="parameters_name">
|
188
181
|
<col class="parameters_description">
|
@@ -196,12 +189,11 @@ and can be used with functions such as <a class="link" href="cairo-Win32-Fonts.h
|
|
196
189
|
</table></div>
|
197
190
|
</div>
|
198
191
|
<div class="refsect3">
|
199
|
-
<a name="
|
192
|
+
<a name="cairo-win32-font-face-create-for-hfont.returns"></a><h4>Returns</h4>
|
200
193
|
<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
|
201
194
|
<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>
|
202
|
-
<p></p>
|
203
195
|
</div>
|
204
|
-
<p class="since">Since 1.2</p>
|
196
|
+
<p class="since">Since: 1.2</p>
|
205
197
|
</div>
|
206
198
|
<hr>
|
207
199
|
<div class="refsect2">
|
@@ -217,8 +209,8 @@ The <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" ti
|
|
217
209
|
returned from <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a> is also for the Win32 backend
|
218
210
|
and can be used with functions such as <a class="link" href="cairo-Win32-Fonts.html#cairo-win32-scaled-font-select-font" title="cairo_win32_scaled_font_select_font ()"><code class="function">cairo_win32_scaled_font_select_font()</code></a>.</p>
|
219
211
|
<div class="refsect3">
|
220
|
-
<a name="
|
221
|
-
<div class="informaltable"><table width="100%" border="0">
|
212
|
+
<a name="cairo-win32-font-face-create-for-logfontw-hfont.parameters"></a><h4>Parameters</h4>
|
213
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
222
214
|
<colgroup>
|
223
215
|
<col width="150px" class="parameters_name">
|
224
216
|
<col class="parameters_description">
|
@@ -244,12 +236,11 @@ lfEscapement must be zero.</p></td>
|
|
244
236
|
</table></div>
|
245
237
|
</div>
|
246
238
|
<div class="refsect3">
|
247
|
-
<a name="
|
239
|
+
<a name="cairo-win32-font-face-create-for-logfontw-hfont.returns"></a><h4>Returns</h4>
|
248
240
|
<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
|
249
241
|
<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>
|
250
|
-
<p></p>
|
251
242
|
</div>
|
252
|
-
<p class="since">Since 1.6</p>
|
243
|
+
<p class="since">Since: 1.6</p>
|
253
244
|
</div>
|
254
245
|
<hr>
|
255
246
|
<div class="refsect2">
|
@@ -269,8 +260,8 @@ coordinates from the device context to font space.</p>
|
|
269
260
|
<p>Normally, calls to <code class="function">SaveDC()</code> and <code class="function">RestoreDC()</code> would be made around
|
270
261
|
the use of this function to preserve the original graphics state.</p>
|
271
262
|
<div class="refsect3">
|
272
|
-
<a name="
|
273
|
-
<div class="informaltable"><table width="100%" border="0">
|
263
|
+
<a name="cairo-win32-scaled-font-select-font.parameters"></a><h4>Parameters</h4>
|
264
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
274
265
|
<colgroup>
|
275
266
|
<col width="150px" class="parameters_name">
|
276
267
|
<col class="parameters_description">
|
@@ -292,13 +283,12 @@ object can be created with <a class="link" href="cairo-Win32-Fonts.html#cairo-wi
|
|
292
283
|
</table></div>
|
293
284
|
</div>
|
294
285
|
<div class="refsect3">
|
295
|
-
<a name="
|
286
|
+
<a name="cairo-win32-scaled-font-select-font.returns"></a><h4>Returns</h4>
|
296
287
|
<p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if the operation succeeded.
|
297
288
|
otherwise an error such as <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a> and
|
298
289
|
the device context is unchanged.</p>
|
299
|
-
<p></p>
|
300
290
|
</div>
|
301
|
-
<p class="since">Since 1.0</p>
|
291
|
+
<p class="since">Since: 1.0</p>
|
302
292
|
</div>
|
303
293
|
<hr>
|
304
294
|
<div class="refsect2">
|
@@ -307,8 +297,8 @@ the device context is unchanged.</p>
|
|
307
297
|
cairo_win32_scaled_font_done_font (<em class="parameter"><code><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> *scaled_font</code></em>);</pre>
|
308
298
|
<p>Releases any resources allocated by <a class="link" href="cairo-Win32-Fonts.html#cairo-win32-scaled-font-select-font" title="cairo_win32_scaled_font_select_font ()"><code class="function">cairo_win32_scaled_font_select_font()</code></a></p>
|
309
299
|
<div class="refsect3">
|
310
|
-
<a name="
|
311
|
-
<div class="informaltable"><table width="100%" border="0">
|
300
|
+
<a name="cairo-win32-scaled-font-done-font.parameters"></a><h4>Parameters</h4>
|
301
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
312
302
|
<colgroup>
|
313
303
|
<col width="150px" class="parameters_name">
|
314
304
|
<col class="parameters_description">
|
@@ -321,7 +311,7 @@ cairo_win32_scaled_font_done_font (<em class="parameter"><code><a class="link" h
|
|
321
311
|
</tr></tbody>
|
322
312
|
</table></div>
|
323
313
|
</div>
|
324
|
-
<p class="since">Since 1.0</p>
|
314
|
+
<p class="since">Since: 1.0</p>
|
325
315
|
</div>
|
326
316
|
<hr>
|
327
317
|
<div class="refsect2">
|
@@ -334,8 +324,8 @@ space used by <a class="link" href="cairo-Win32-Fonts.html#cairo-win32-scaled-fo
|
|
334
324
|
coordinate system used by the Windows functions to return metrics) and
|
335
325
|
font space coordinates.</p>
|
336
326
|
<div class="refsect3">
|
337
|
-
<a name="
|
338
|
-
<div class="informaltable"><table width="100%" border="0">
|
327
|
+
<a name="cairo-win32-scaled-font-get-metrics-factor.parameters"></a><h4>Parameters</h4>
|
328
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
339
329
|
<colgroup>
|
340
330
|
<col width="150px" class="parameters_name">
|
341
331
|
<col class="parameters_description">
|
@@ -349,12 +339,11 @@ font space coordinates.</p>
|
|
349
339
|
</table></div>
|
350
340
|
</div>
|
351
341
|
<div class="refsect3">
|
352
|
-
<a name="
|
342
|
+
<a name="cairo-win32-scaled-font-get-metrics-factor.returns"></a><h4>Returns</h4>
|
353
343
|
<p> factor to multiply logical units by to get font space
|
354
344
|
coordinates.</p>
|
355
|
-
<p></p>
|
356
345
|
</div>
|
357
|
-
<p class="since">Since 1.0</p>
|
346
|
+
<p class="since">Since: 1.0</p>
|
358
347
|
</div>
|
359
348
|
<hr>
|
360
349
|
<div class="refsect2">
|
@@ -367,8 +356,8 @@ cairo_win32_scaled_font_get_logical_to_device
|
|
367
356
|
|
368
357
|
to device space.</p>
|
369
358
|
<div class="refsect3">
|
370
|
-
<a name="
|
371
|
-
<div class="informaltable"><table width="100%" border="0">
|
359
|
+
<a name="cairo-win32-scaled-font-get-logical-to-device.parameters"></a><h4>Parameters</h4>
|
360
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
372
361
|
<colgroup>
|
373
362
|
<col width="150px" class="parameters_name">
|
374
363
|
<col class="parameters_description">
|
@@ -388,7 +377,7 @@ to device space.</p>
|
|
388
377
|
</tbody>
|
389
378
|
</table></div>
|
390
379
|
</div>
|
391
|
-
<p class="since">Since 1.4</p>
|
380
|
+
<p class="since">Since: 1.4</p>
|
392
381
|
</div>
|
393
382
|
<hr>
|
394
383
|
<div class="refsect2">
|
@@ -401,8 +390,8 @@ cairo_win32_scaled_font_get_device_to_logical
|
|
401
390
|
used by <em class="parameter"><code>scaled_font</code></em>
|
402
391
|
.</p>
|
403
392
|
<div class="refsect3">
|
404
|
-
<a name="
|
405
|
-
<div class="informaltable"><table width="100%" border="0">
|
393
|
+
<a name="cairo-win32-scaled-font-get-device-to-logical.parameters"></a><h4>Parameters</h4>
|
394
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
406
395
|
<colgroup>
|
407
396
|
<col width="150px" class="parameters_name">
|
408
397
|
<col class="parameters_description">
|
@@ -422,7 +411,7 @@ used by <em class="parameter"><code>scaled_font</code></em>
|
|
422
411
|
</tbody>
|
423
412
|
</table></div>
|
424
413
|
</div>
|
425
|
-
<p class="since">Since 1.4</p>
|
414
|
+
<p class="since">Since: 1.4</p>
|
426
415
|
</div>
|
427
416
|
</div>
|
428
417
|
<div class="refsect1">
|
@@ -433,7 +422,7 @@ used by <em class="parameter"><code>scaled_font</code></em>
|
|
433
422
|
</pre>
|
434
423
|
<p>Defined if the Microsoft Windows font backend is available.
|
435
424
|
This macro can be used to conditionally compile backend-specific code.</p>
|
436
|
-
<p class="since">Since 1.8</p>
|
425
|
+
<p class="since">Since: 1.8</p>
|
437
426
|
</div>
|
438
427
|
</div>
|
439
428
|
<div class="refsect1">
|
@@ -442,7 +431,6 @@ This macro can be used to conditionally compile backend-specific code.</p>
|
|
442
431
|
</div>
|
443
432
|
</div>
|
444
433
|
<div class="footer">
|
445
|
-
<hr>
|
446
|
-
Generated by GTK-Doc V1.20</div>
|
434
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
447
435
|
</body>
|
448
436
|
</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>Win32 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="cairo-surfaces.html" title="Surfaces">
|
9
9
|
<link rel="prev" href="cairo-Recording-Surfaces.html" title="Recording Surfaces">
|
10
10
|
<link rel="next" href="cairo-SVG-Surfaces.html" title="SVG Surfaces">
|
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-Win32-Surfaces.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-Win32-Surfaces.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-Win32-Surfaces.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-surfaces.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-Win32-Surfaces.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">
|
@@ -93,7 +92,7 @@
|
|
93
92
|
</div>
|
94
93
|
<div class="refsect1">
|
95
94
|
<a name="cairo-Win32-Surfaces.other"></a><h2>Types and Values</h2>
|
96
|
-
<div class="informaltable"><table width="100%" border="0">
|
95
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
97
96
|
<colgroup>
|
98
97
|
<col width="150px" class="name">
|
99
98
|
<col class="description">
|
@@ -105,11 +104,6 @@
|
|
105
104
|
</table></div>
|
106
105
|
</div>
|
107
106
|
<div class="refsect1">
|
108
|
-
<a name="cairo-Win32-Surfaces.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
109
|
-
<pre class="screen">
|
110
|
-
</pre>
|
111
|
-
</div>
|
112
|
-
<div class="refsect1">
|
113
107
|
<a name="cairo-Win32-Surfaces.description"></a><h2>Description</h2>
|
114
108
|
<p>The Microsoft Windows surface is used to render cairo graphics to
|
115
109
|
Microsoft Windows windows, bitmaps, and printing device contexts.</p>
|
@@ -133,8 +127,8 @@ you will need to create one through
|
|
133
127
|
<code class="function">cairo_win32_surface_create_with_format()</code> or
|
134
128
|
<a class="link" href="cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-dib" title="cairo_win32_surface_create_with_dib ()"><code class="function">cairo_win32_surface_create_with_dib()</code></a>.</p>
|
135
129
|
<div class="refsect3">
|
136
|
-
<a name="
|
137
|
-
<div class="informaltable"><table width="100%" border="0">
|
130
|
+
<a name="cairo-win32-surface-create.parameters"></a><h4>Parameters</h4>
|
131
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
138
132
|
<colgroup>
|
139
133
|
<col width="150px" class="parameters_name">
|
140
134
|
<col class="parameters_description">
|
@@ -148,11 +142,10 @@ you will need to create one through
|
|
148
142
|
</table></div>
|
149
143
|
</div>
|
150
144
|
<div class="refsect3">
|
151
|
-
<a name="
|
145
|
+
<a name="cairo-win32-surface-create.returns"></a><h4>Returns</h4>
|
152
146
|
<p> the newly created surface, NULL on failure</p>
|
153
|
-
<p></p>
|
154
147
|
</div>
|
155
|
-
<p class="since">Since 1.0</p>
|
148
|
+
<p class="since">Since: 1.0</p>
|
156
149
|
</div>
|
157
150
|
<hr>
|
158
151
|
<div class="refsect2">
|
@@ -165,8 +158,8 @@ cairo_win32_surface_create_with_dib (<em class="parameter"><code><a class="link"
|
|
165
158
|
any particular existing surface or device context. The created
|
166
159
|
bitmap will be uninitialized.</p>
|
167
160
|
<div class="refsect3">
|
168
|
-
<a name="
|
169
|
-
<div class="informaltable"><table width="100%" border="0">
|
161
|
+
<a name="cairo-win32-surface-create-with-dib.parameters"></a><h4>Parameters</h4>
|
162
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
170
163
|
<colgroup>
|
171
164
|
<col width="150px" class="parameters_name">
|
172
165
|
<col class="parameters_description">
|
@@ -192,11 +185,10 @@ bitmap will be uninitialized.</p>
|
|
192
185
|
</table></div>
|
193
186
|
</div>
|
194
187
|
<div class="refsect3">
|
195
|
-
<a name="
|
188
|
+
<a name="cairo-win32-surface-create-with-dib.returns"></a><h4>Returns</h4>
|
196
189
|
<p> the newly created surface</p>
|
197
|
-
<p></p>
|
198
190
|
</div>
|
199
|
-
<p class="since">Since 1.2</p>
|
191
|
+
<p class="since">Since: 1.2</p>
|
200
192
|
</div>
|
201
193
|
<hr>
|
202
194
|
<div class="refsect2">
|
@@ -210,8 +202,8 @@ cairo_win32_surface_create_with_ddb (<em class="parameter"><code><span class="ty
|
|
210
202
|
any particular existing surface or device context. The created
|
211
203
|
bitmap will be uninitialized.</p>
|
212
204
|
<div class="refsect3">
|
213
|
-
<a name="
|
214
|
-
<div class="informaltable"><table width="100%" border="0">
|
205
|
+
<a name="cairo-win32-surface-create-with-ddb.parameters"></a><h4>Parameters</h4>
|
206
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
215
207
|
<colgroup>
|
216
208
|
<col width="150px" class="parameters_name">
|
217
209
|
<col class="parameters_description">
|
@@ -242,11 +234,10 @@ bitmap will be uninitialized.</p>
|
|
242
234
|
</table></div>
|
243
235
|
</div>
|
244
236
|
<div class="refsect3">
|
245
|
-
<a name="
|
237
|
+
<a name="cairo-win32-surface-create-with-ddb.returns"></a><h4>Returns</h4>
|
246
238
|
<p> the newly created surface</p>
|
247
|
-
<p></p>
|
248
239
|
</div>
|
249
|
-
<p class="since">Since 1.4</p>
|
240
|
+
<p class="since">Since: 1.4</p>
|
250
241
|
</div>
|
251
242
|
<hr>
|
252
243
|
<div class="refsect2">
|
@@ -262,8 +253,8 @@ possible to draw to the surface.</p>
|
|
262
253
|
provide correct complex rendering behaviour; <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-show-page" title="cairo_surface_show_page ()"><code class="function">cairo_surface_show_page()</code></a> and
|
263
254
|
associated methods must be used for correct output.</p>
|
264
255
|
<div class="refsect3">
|
265
|
-
<a name="
|
266
|
-
<div class="informaltable"><table width="100%" border="0">
|
256
|
+
<a name="cairo-win32-printing-surface-create.parameters"></a><h4>Parameters</h4>
|
257
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
267
258
|
<colgroup>
|
268
259
|
<col width="150px" class="parameters_name">
|
269
260
|
<col class="parameters_description">
|
@@ -277,11 +268,10 @@ associated methods must be used for correct output.</p>
|
|
277
268
|
</table></div>
|
278
269
|
</div>
|
279
270
|
<div class="refsect3">
|
280
|
-
<a name="
|
271
|
+
<a name="cairo-win32-printing-surface-create.returns"></a><h4>Returns</h4>
|
281
272
|
<p> the newly created surface</p>
|
282
|
-
<p></p>
|
283
273
|
</div>
|
284
|
-
<p class="since">Since 1.6</p>
|
274
|
+
<p class="since">Since: 1.6</p>
|
285
275
|
</div>
|
286
276
|
<hr>
|
287
277
|
<div class="refsect2">
|
@@ -296,8 +286,8 @@ restore any temporary modification cairo has made to its state. A
|
|
296
286
|
call to <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-mark-dirty" title="cairo_surface_mark_dirty ()"><code class="function">cairo_surface_mark_dirty()</code></a> is required after the state or
|
297
287
|
the content of the HDC has been modified.</p>
|
298
288
|
<div class="refsect3">
|
299
|
-
<a name="
|
300
|
-
<div class="informaltable"><table width="100%" border="0">
|
289
|
+
<a name="cairo-win32-surface-get-dc.parameters"></a><h4>Parameters</h4>
|
290
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
301
291
|
<colgroup>
|
302
292
|
<col width="150px" class="parameters_name">
|
303
293
|
<col class="parameters_description">
|
@@ -311,11 +301,10 @@ the content of the HDC has been modified.</p>
|
|
311
301
|
</table></div>
|
312
302
|
</div>
|
313
303
|
<div class="refsect3">
|
314
|
-
<a name="
|
304
|
+
<a name="cairo-win32-surface-get-dc.returns"></a><h4>Returns</h4>
|
315
305
|
<p> HDC or <code class="literal">NULL</code> if no HDC available.</p>
|
316
|
-
<p></p>
|
317
306
|
</div>
|
318
|
-
<p class="since">Since 1.2</p>
|
307
|
+
<p class="since">Since: 1.2</p>
|
319
308
|
</div>
|
320
309
|
<hr>
|
321
310
|
<div class="refsect2">
|
@@ -326,8 +315,8 @@ cairo_win32_surface_get_image (<em class="parameter"><code><a class="link" href=
|
|
326
315
|
as the DIB of the Win32 surface. If the passed-in win32 surface
|
327
316
|
is not a DIB surface, <code class="literal">NULL</code> is returned.</p>
|
328
317
|
<div class="refsect3">
|
329
|
-
<a name="
|
330
|
-
<div class="informaltable"><table width="100%" border="0">
|
318
|
+
<a name="cairo-win32-surface-get-image.parameters"></a><h4>Parameters</h4>
|
319
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
331
320
|
<colgroup>
|
332
321
|
<col width="150px" class="parameters_name">
|
333
322
|
<col class="parameters_description">
|
@@ -341,12 +330,11 @@ is not a DIB surface, <code class="literal">NULL</code> is returned.</p>
|
|
341
330
|
</table></div>
|
342
331
|
</div>
|
343
332
|
<div class="refsect3">
|
344
|
-
<a name="
|
333
|
+
<a name="cairo-win32-surface-get-image.returns"></a><h4>Returns</h4>
|
345
334
|
<p> a <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> (owned by the win32 <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a>),
|
346
335
|
or <code class="literal">NULL</code> if the win32 surface is not a DIB.</p>
|
347
|
-
<p></p>
|
348
336
|
</div>
|
349
|
-
<p class="since">Since 1.4</p>
|
337
|
+
<p class="since">Since: 1.4</p>
|
350
338
|
</div>
|
351
339
|
</div>
|
352
340
|
<div class="refsect1">
|
@@ -357,7 +345,7 @@ or <code class="literal">NULL</code> if the win32 surface is not a DIB.</p>
|
|
357
345
|
</pre>
|
358
346
|
<p>Defined if the Microsoft Windows surface backend is available.
|
359
347
|
This macro can be used to conditionally compile backend-specific code.</p>
|
360
|
-
<p class="since">Since 1.0</p>
|
348
|
+
<p class="since">Since: 1.0</p>
|
361
349
|
</div>
|
362
350
|
</div>
|
363
351
|
<div class="refsect1">
|
@@ -366,7 +354,6 @@ This macro can be used to conditionally compile backend-specific code.</p>
|
|
366
354
|
</div>
|
367
355
|
</div>
|
368
356
|
<div class="footer">
|
369
|
-
<hr>
|
370
|
-
Generated by GTK-Doc V1.20</div>
|
357
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
371
358
|
</body>
|
372
359
|
</html>
|