pango 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +33 -0
- data/Rakefile +65 -0
- data/ext/pango/depend +12 -0
- data/ext/pango/extconf.rb +90 -0
- data/ext/pango/pango.def +18 -0
- data/ext/pango/rbpango.c +318 -0
- data/ext/pango/rbpango.h +96 -0
- data/ext/pango/rbpangoanalysis.c +218 -0
- data/ext/pango/rbpangoattribute.c +499 -0
- data/ext/pango/rbpangoattriterator.c +141 -0
- data/ext/pango/rbpangoattrlist.c +101 -0
- data/ext/pango/rbpangocairo.c +122 -0
- data/ext/pango/rbpangocairocontext.c +131 -0
- data/ext/pango/rbpangocolor.c +120 -0
- data/ext/pango/rbpangocontext.c +309 -0
- data/ext/pango/rbpangoconversions.h +111 -0
- data/ext/pango/rbpangocoverage.c +106 -0
- data/ext/pango/rbpangoengine.c +73 -0
- data/ext/pango/rbpangofont.c +110 -0
- data/ext/pango/rbpangofontdescription.c +282 -0
- data/ext/pango/rbpangofontface.c +73 -0
- data/ext/pango/rbpangofontfamily.c +79 -0
- data/ext/pango/rbpangofontmap.c +102 -0
- data/ext/pango/rbpangofontmetrics.c +85 -0
- data/ext/pango/rbpangofontset.c +69 -0
- data/ext/pango/rbpangofontsetsimple.c +60 -0
- data/ext/pango/rbpangoglyphinfo.c +123 -0
- data/ext/pango/rbpangoglyphitem.c +125 -0
- data/ext/pango/rbpangoglyphstring.c +151 -0
- data/ext/pango/rbpangogravity.c +54 -0
- data/ext/pango/rbpangoitem.c +95 -0
- data/ext/pango/rbpangolanguage.c +86 -0
- data/ext/pango/rbpangolayout.c +572 -0
- data/ext/pango/rbpangolayoutiter.c +189 -0
- data/ext/pango/rbpangolayoutline.c +239 -0
- data/ext/pango/rbpangologattr.c +109 -0
- data/ext/pango/rbpangomatrix.c +143 -0
- data/ext/pango/rbpangoprivate.h +49 -0
- data/ext/pango/rbpangorectangle.c +170 -0
- data/ext/pango/rbpangorenderer.c +193 -0
- data/ext/pango/rbpangoscript.c +84 -0
- data/ext/pango/rbpangoscriptiter.c +92 -0
- data/ext/pango/rbpangotabarray.c +128 -0
- data/extconf.rb +49 -0
- data/lib/2.0/pango.so +0 -0
- data/lib/2.1/pango.so +0 -0
- data/lib/2.2/pango.so +0 -0
- data/lib/pango.rb +79 -0
- data/sample/attribute.rb +82 -0
- data/sample/break.rb +28 -0
- data/sample/gdk_layout.rb +27 -0
- data/sample/glyphstring.rb +61 -0
- data/sample/item.rb +37 -0
- data/sample/label.rb +23 -0
- data/sample/layout.rb +102 -0
- data/sample/pango_cairo.rb +66 -0
- data/sample/parse.rb +33 -0
- data/sample/sample.txt +10 -0
- data/sample/script.rb +23 -0
- data/test/pango-test-utils.rb +9 -0
- data/test/run-test.rb +28 -0
- data/test/test-analysis.rb +26 -0
- data/test/test-attribute.rb +19 -0
- data/test/test-color.rb +47 -0
- data/test/test-language.rb +7 -0
- data/test/test-layout.rb +34 -0
- data/test/test-log-attr.rb +26 -0
- data/test/test-matrix.rb +26 -0
- data/test/test-rectangle.rb +26 -0
- data/vendor/local/bin/derb.exe +0 -0
- data/vendor/local/bin/genbrk.exe +0 -0
- data/vendor/local/bin/genccode.exe +0 -0
- data/vendor/local/bin/gencfu.exe +0 -0
- data/vendor/local/bin/gencmn.exe +0 -0
- data/vendor/local/bin/gencnval.exe +0 -0
- data/vendor/local/bin/gendict.exe +0 -0
- data/vendor/local/bin/gennorm2.exe +0 -0
- data/vendor/local/bin/genrb.exe +0 -0
- data/vendor/local/bin/gensprep.exe +0 -0
- data/vendor/local/bin/hb-ot-shape-closure.exe +0 -0
- data/vendor/local/bin/hb-shape.exe +0 -0
- data/vendor/local/bin/hb-view.exe +0 -0
- data/vendor/local/bin/icu-config +820 -0
- data/vendor/local/bin/icuinfo.exe +0 -0
- data/vendor/local/bin/icupkg.exe +0 -0
- data/vendor/local/bin/libharfbuzz-0.dll +0 -0
- data/vendor/local/bin/libpango-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
- data/vendor/local/bin/makeconv.exe +0 -0
- data/vendor/local/bin/pango-querymodules.exe +0 -0
- data/vendor/local/bin/pango-view.exe +0 -0
- data/vendor/local/bin/pkgdata.exe +0 -0
- data/vendor/local/bin/uconv.exe +0 -0
- data/vendor/local/etc/pango/pango.modules +19 -0
- data/vendor/local/include/harfbuzz/hb-blob.h +126 -0
- data/vendor/local/include/harfbuzz/hb-buffer.h +344 -0
- data/vendor/local/include/harfbuzz/hb-common.h +344 -0
- data/vendor/local/include/harfbuzz/hb-deprecated.h +51 -0
- data/vendor/local/include/harfbuzz/hb-face.h +117 -0
- data/vendor/local/include/harfbuzz/hb-font.h +507 -0
- data/vendor/local/include/harfbuzz/hb-ft.h +62 -0
- data/vendor/local/include/harfbuzz/hb-glib.h +52 -0
- data/vendor/local/include/harfbuzz/hb-icu.h +52 -0
- data/vendor/local/include/harfbuzz/hb-ot-font.h +41 -0
- data/vendor/local/include/harfbuzz/hb-ot-layout.h +302 -0
- data/vendor/local/include/harfbuzz/hb-ot-shape.h +53 -0
- data/vendor/local/include/harfbuzz/hb-ot-tag.h +59 -0
- data/vendor/local/include/harfbuzz/hb-ot.h +43 -0
- data/vendor/local/include/harfbuzz/hb-set.h +154 -0
- data/vendor/local/include/harfbuzz/hb-shape-plan.h +89 -0
- data/vendor/local/include/harfbuzz/hb-shape.h +81 -0
- data/vendor/local/include/harfbuzz/hb-unicode.h +445 -0
- data/vendor/local/include/harfbuzz/hb-version.h +66 -0
- data/vendor/local/include/harfbuzz/hb.h +47 -0
- data/vendor/local/include/layout/LEFontInstance.h +550 -0
- data/vendor/local/include/layout/LEGlyphFilter.h +45 -0
- data/vendor/local/include/layout/LEGlyphStorage.h +546 -0
- data/vendor/local/include/layout/LEInsertionList.h +177 -0
- data/vendor/local/include/layout/LELanguages.h +112 -0
- data/vendor/local/include/layout/LEScripts.h +263 -0
- data/vendor/local/include/layout/LESwaps.h +100 -0
- data/vendor/local/include/layout/LETableReference.h +418 -0
- data/vendor/local/include/layout/LETypes.h +728 -0
- data/vendor/local/include/layout/LayoutEngine.h +518 -0
- data/vendor/local/include/layout/ParagraphLayout.h +747 -0
- data/vendor/local/include/layout/RunArrays.h +676 -0
- data/vendor/local/include/layout/loengine.h +225 -0
- data/vendor/local/include/layout/playout.h +466 -0
- data/vendor/local/include/layout/plruns.h +441 -0
- data/vendor/local/include/pango-1.0/pango/pango-attributes.h +514 -0
- data/vendor/local/include/pango-1.0/pango/pango-bidi-type.h +136 -0
- data/vendor/local/include/pango-1.0/pango/pango-break.h +173 -0
- data/vendor/local/include/pango-1.0/pango/pango-context.h +112 -0
- data/vendor/local/include/pango-1.0/pango/pango-coverage.h +79 -0
- data/vendor/local/include/pango-1.0/pango/pango-engine.h +429 -0
- data/vendor/local/include/pango-1.0/pango/pango-enum-types.h +69 -0
- data/vendor/local/include/pango-1.0/pango/pango-features.h +12 -0
- data/vendor/local/include/pango-1.0/pango/pango-font.h +622 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontmap.h +167 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontset.h +169 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph-item.h +158 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph.h +197 -0
- data/vendor/local/include/pango-1.0/pango/pango-gravity.h +128 -0
- data/vendor/local/include/pango-1.0/pango/pango-item.h +109 -0
- data/vendor/local/include/pango-1.0/pango/pango-language.h +61 -0
- data/vendor/local/include/pango-1.0/pango/pango-layout.h +340 -0
- data/vendor/local/include/pango-1.0/pango/pango-matrix.h +117 -0
- data/vendor/local/include/pango-1.0/pango/pango-modules.h +71 -0
- data/vendor/local/include/pango-1.0/pango/pango-ot.h +391 -0
- data/vendor/local/include/pango-1.0/pango/pango-renderer.h +260 -0
- data/vendor/local/include/pango-1.0/pango/pango-script.h +260 -0
- data/vendor/local/include/pango-1.0/pango/pango-tabs.h +87 -0
- data/vendor/local/include/pango-1.0/pango/pango-types.h +200 -0
- data/vendor/local/include/pango-1.0/pango/pango-utils.h +189 -0
- data/vendor/local/include/pango-1.0/pango/pango.h +48 -0
- data/vendor/local/include/pango-1.0/pango/pangocairo.h +169 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-decoder.h +110 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-font.h +153 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +289 -0
- data/vendor/local/include/pango-1.0/pango/pangoft2.h +133 -0
- data/vendor/local/include/pango-1.0/pango/pangowin32.h +128 -0
- data/vendor/local/include/unicode/alphaindex.h +752 -0
- data/vendor/local/include/unicode/appendable.h +232 -0
- data/vendor/local/include/unicode/basictz.h +214 -0
- data/vendor/local/include/unicode/brkiter.h +655 -0
- data/vendor/local/include/unicode/bytestream.h +257 -0
- data/vendor/local/include/unicode/bytestrie.h +519 -0
- data/vendor/local/include/unicode/bytestriebuilder.h +181 -0
- data/vendor/local/include/unicode/calendar.h +2519 -0
- data/vendor/local/include/unicode/caniter.h +208 -0
- data/vendor/local/include/unicode/chariter.h +722 -0
- data/vendor/local/include/unicode/choicfmt.h +594 -0
- data/vendor/local/include/unicode/coleitr.h +404 -0
- data/vendor/local/include/unicode/coll.h +1267 -0
- data/vendor/local/include/unicode/compactdecimalformat.h +330 -0
- data/vendor/local/include/unicode/curramt.h +130 -0
- data/vendor/local/include/unicode/currpinf.h +258 -0
- data/vendor/local/include/unicode/currunit.h +110 -0
- data/vendor/local/include/unicode/datefmt.h +883 -0
- data/vendor/local/include/unicode/dbbi.h +40 -0
- data/vendor/local/include/unicode/dcfmtsym.h +482 -0
- data/vendor/local/include/unicode/decimfmt.h +2479 -0
- data/vendor/local/include/unicode/docmain.h +215 -0
- data/vendor/local/include/unicode/dtfmtsym.h +912 -0
- data/vendor/local/include/unicode/dtintrv.h +158 -0
- data/vendor/local/include/unicode/dtitvfmt.h +985 -0
- data/vendor/local/include/unicode/dtitvinf.h +514 -0
- data/vendor/local/include/unicode/dtptngen.h +498 -0
- data/vendor/local/include/unicode/dtrule.h +250 -0
- data/vendor/local/include/unicode/enumset.h +64 -0
- data/vendor/local/include/unicode/errorcode.h +137 -0
- data/vendor/local/include/unicode/fieldpos.h +291 -0
- data/vendor/local/include/unicode/filteredbrk.h +131 -0
- data/vendor/local/include/unicode/fmtable.h +760 -0
- data/vendor/local/include/unicode/format.h +305 -0
- data/vendor/local/include/unicode/fpositer.h +117 -0
- data/vendor/local/include/unicode/gender.h +111 -0
- data/vendor/local/include/unicode/gregocal.h +777 -0
- data/vendor/local/include/unicode/icudataver.h +41 -0
- data/vendor/local/include/unicode/icuplug.h +371 -0
- data/vendor/local/include/unicode/idna.h +323 -0
- data/vendor/local/include/unicode/listformatter.h +167 -0
- data/vendor/local/include/unicode/localpointer.h +304 -0
- data/vendor/local/include/unicode/locdspnm.h +204 -0
- data/vendor/local/include/unicode/locid.h +815 -0
- data/vendor/local/include/unicode/measfmt.h +389 -0
- data/vendor/local/include/unicode/measunit.h +1443 -0
- data/vendor/local/include/unicode/measure.h +159 -0
- data/vendor/local/include/unicode/messagepattern.h +943 -0
- data/vendor/local/include/unicode/msgfmt.h +1093 -0
- data/vendor/local/include/unicode/normalizer2.h +658 -0
- data/vendor/local/include/unicode/normlzr.h +797 -0
- data/vendor/local/include/unicode/numfmt.h +1187 -0
- data/vendor/local/include/unicode/numsys.h +208 -0
- data/vendor/local/include/unicode/parseerr.h +92 -0
- data/vendor/local/include/unicode/parsepos.h +230 -0
- data/vendor/local/include/unicode/platform.h +751 -0
- data/vendor/local/include/unicode/plurfmt.h +615 -0
- data/vendor/local/include/unicode/plurrule.h +501 -0
- data/vendor/local/include/unicode/ptypes.h +126 -0
- data/vendor/local/include/unicode/putil.h +181 -0
- data/vendor/local/include/unicode/rbbi.h +782 -0
- data/vendor/local/include/unicode/rbnf.h +1032 -0
- data/vendor/local/include/unicode/rbtz.h +362 -0
- data/vendor/local/include/unicode/regex.h +1857 -0
- data/vendor/local/include/unicode/region.h +228 -0
- data/vendor/local/include/unicode/reldatefmt.h +498 -0
- data/vendor/local/include/unicode/rep.h +261 -0
- data/vendor/local/include/unicode/resbund.h +490 -0
- data/vendor/local/include/unicode/schriter.h +187 -0
- data/vendor/local/include/unicode/scientificformathelper.h +139 -0
- data/vendor/local/include/unicode/search.h +575 -0
- data/vendor/local/include/unicode/selfmt.h +367 -0
- data/vendor/local/include/unicode/simpletz.h +928 -0
- data/vendor/local/include/unicode/smpdtfmt.h +1592 -0
- data/vendor/local/include/unicode/sortkey.h +338 -0
- data/vendor/local/include/unicode/std_string.h +37 -0
- data/vendor/local/include/unicode/strenum.h +276 -0
- data/vendor/local/include/unicode/stringpiece.h +224 -0
- data/vendor/local/include/unicode/stringtriebuilder.h +402 -0
- data/vendor/local/include/unicode/stsearch.h +504 -0
- data/vendor/local/include/unicode/symtable.h +112 -0
- data/vendor/local/include/unicode/tblcoll.h +873 -0
- data/vendor/local/include/unicode/timezone.h +948 -0
- data/vendor/local/include/unicode/tmunit.h +129 -0
- data/vendor/local/include/unicode/tmutamt.h +168 -0
- data/vendor/local/include/unicode/tmutfmt.h +243 -0
- data/vendor/local/include/unicode/translit.h +1342 -0
- data/vendor/local/include/unicode/tzfmt.h +1098 -0
- data/vendor/local/include/unicode/tznames.h +404 -0
- data/vendor/local/include/unicode/tzrule.h +828 -0
- data/vendor/local/include/unicode/tztrans.h +195 -0
- data/vendor/local/include/unicode/ubidi.h +2186 -0
- data/vendor/local/include/unicode/ubrk.h +540 -0
- data/vendor/local/include/unicode/ucal.h +1560 -0
- data/vendor/local/include/unicode/ucasemap.h +423 -0
- data/vendor/local/include/unicode/ucat.h +158 -0
- data/vendor/local/include/unicode/uchar.h +3426 -0
- data/vendor/local/include/unicode/ucharstrie.h +576 -0
- data/vendor/local/include/unicode/ucharstriebuilder.h +185 -0
- data/vendor/local/include/unicode/uchriter.h +381 -0
- data/vendor/local/include/unicode/uclean.h +258 -0
- data/vendor/local/include/unicode/ucnv.h +2036 -0
- data/vendor/local/include/unicode/ucnv_cb.h +162 -0
- data/vendor/local/include/unicode/ucnv_err.h +463 -0
- data/vendor/local/include/unicode/ucnvsel.h +187 -0
- data/vendor/local/include/unicode/ucol.h +1474 -0
- data/vendor/local/include/unicode/ucoleitr.h +266 -0
- data/vendor/local/include/unicode/uconfig.h +430 -0
- data/vendor/local/include/unicode/ucsdet.h +413 -0
- data/vendor/local/include/unicode/ucurr.h +424 -0
- data/vendor/local/include/unicode/udat.h +1536 -0
- data/vendor/local/include/unicode/udata.h +430 -0
- data/vendor/local/include/unicode/udateintervalformat.h +181 -0
- data/vendor/local/include/unicode/udatpg.h +588 -0
- data/vendor/local/include/unicode/udisplaycontext.h +150 -0
- data/vendor/local/include/unicode/uenum.h +206 -0
- data/vendor/local/include/unicode/uformattable.h +280 -0
- data/vendor/local/include/unicode/ugender.h +82 -0
- data/vendor/local/include/unicode/uidna.h +762 -0
- data/vendor/local/include/unicode/uiter.h +707 -0
- data/vendor/local/include/unicode/uldnames.h +302 -0
- data/vendor/local/include/unicode/uloc.h +1256 -0
- data/vendor/local/include/unicode/ulocdata.h +277 -0
- data/vendor/local/include/unicode/umachine.h +356 -0
- data/vendor/local/include/unicode/umisc.h +60 -0
- data/vendor/local/include/unicode/umsg.h +623 -0
- data/vendor/local/include/unicode/unifilt.h +120 -0
- data/vendor/local/include/unicode/unifunct.h +125 -0
- data/vendor/local/include/unicode/unimatch.h +163 -0
- data/vendor/local/include/unicode/unirepl.h +97 -0
- data/vendor/local/include/unicode/uniset.h +1691 -0
- data/vendor/local/include/unicode/unistr.h +4470 -0
- data/vendor/local/include/unicode/unorm.h +561 -0
- data/vendor/local/include/unicode/unorm2.h +528 -0
- data/vendor/local/include/unicode/unum.h +1328 -0
- data/vendor/local/include/unicode/unumsys.h +170 -0
- data/vendor/local/include/unicode/uobject.h +320 -0
- data/vendor/local/include/unicode/upluralrules.h +145 -0
- data/vendor/local/include/unicode/uregex.h +1591 -0
- data/vendor/local/include/unicode/uregion.h +248 -0
- data/vendor/local/include/unicode/urename.h +1784 -0
- data/vendor/local/include/unicode/urep.h +155 -0
- data/vendor/local/include/unicode/ures.h +887 -0
- data/vendor/local/include/unicode/uscript.h +642 -0
- data/vendor/local/include/unicode/usearch.h +885 -0
- data/vendor/local/include/unicode/uset.h +1126 -0
- data/vendor/local/include/unicode/usetiter.h +318 -0
- data/vendor/local/include/unicode/ushape.h +474 -0
- data/vendor/local/include/unicode/uspoof.h +1064 -0
- data/vendor/local/include/unicode/usprep.h +269 -0
- data/vendor/local/include/unicode/ustdio.h +1018 -0
- data/vendor/local/include/unicode/ustream.h +68 -0
- data/vendor/local/include/unicode/ustring.h +1700 -0
- data/vendor/local/include/unicode/ustringtrie.h +95 -0
- data/vendor/local/include/unicode/utext.h +1600 -0
- data/vendor/local/include/unicode/utf.h +223 -0
- data/vendor/local/include/unicode/utf16.h +623 -0
- data/vendor/local/include/unicode/utf32.h +23 -0
- data/vendor/local/include/unicode/utf8.h +824 -0
- data/vendor/local/include/unicode/utf_old.h +1169 -0
- data/vendor/local/include/unicode/utmscale.h +481 -0
- data/vendor/local/include/unicode/utrace.h +359 -0
- data/vendor/local/include/unicode/utrans.h +658 -0
- data/vendor/local/include/unicode/utypes.h +723 -0
- data/vendor/local/include/unicode/uvernum.h +170 -0
- data/vendor/local/include/unicode/uversion.h +193 -0
- data/vendor/local/include/unicode/vtzone.h +455 -0
- data/vendor/local/lib/girepository-1.0/Pango-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/PangoCairo-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/PangoFT2-1.0.typelib +0 -0
- data/vendor/local/lib/icu/54.1/Makefile.inc +293 -0
- data/vendor/local/lib/icu/54.1/pkgdata.inc +17 -0
- data/vendor/local/lib/icu/Makefile.inc +293 -0
- data/vendor/local/lib/icu/pkgdata.inc +17 -0
- data/vendor/local/lib/icudt.dll +0 -0
- data/vendor/local/lib/icudt54.dll +0 -0
- data/vendor/local/lib/icuin.dll +0 -0
- data/vendor/local/lib/icuin54.dll +0 -0
- data/vendor/local/lib/icuio.dll +0 -0
- data/vendor/local/lib/icuio54.dll +0 -0
- data/vendor/local/lib/icule.dll +0 -0
- data/vendor/local/lib/icule54.dll +0 -0
- data/vendor/local/lib/iculx.dll +0 -0
- data/vendor/local/lib/iculx54.dll +0 -0
- data/vendor/local/lib/icutest.dll +0 -0
- data/vendor/local/lib/icutest54.dll +0 -0
- data/vendor/local/lib/icutu.dll +0 -0
- data/vendor/local/lib/icutu54.dll +0 -0
- data/vendor/local/lib/icuuc.dll +0 -0
- data/vendor/local/lib/icuuc54.dll +0 -0
- data/vendor/local/lib/libharfbuzz-icu.a +0 -0
- data/vendor/local/lib/libharfbuzz-icu.la +41 -0
- data/vendor/local/lib/libharfbuzz.dll.a +0 -0
- data/vendor/local/lib/libharfbuzz.la +41 -0
- data/vendor/local/lib/libicudt.dll.a +0 -0
- data/vendor/local/lib/libicuin.dll.a +0 -0
- data/vendor/local/lib/libicuio.dll.a +0 -0
- data/vendor/local/lib/libicule.dll.a +0 -0
- data/vendor/local/lib/libiculx.dll.a +0 -0
- data/vendor/local/lib/libicutest.dll.a +0 -0
- data/vendor/local/lib/libicutu.dll.a +0 -0
- data/vendor/local/lib/libicuuc.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.la +41 -0
- data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangocairo-1.0.la +41 -0
- data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangoft2-1.0.la +41 -0
- data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangowin32-1.0.la +41 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.la +41 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.la +41 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.la +41 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.la +41 -0
- data/vendor/local/lib/pkgconfig/harfbuzz-icu.pc +13 -0
- data/vendor/local/lib/pkgconfig/harfbuzz.pc +11 -0
- data/vendor/local/lib/pkgconfig/icu-i18n.pc +38 -0
- data/vendor/local/lib/pkgconfig/icu-io.pc +38 -0
- data/vendor/local/lib/pkgconfig/icu-le.pc +38 -0
- data/vendor/local/lib/pkgconfig/icu-lx.pc +38 -0
- data/vendor/local/lib/pkgconfig/icu-uc.pc +38 -0
- data/vendor/local/lib/pkgconfig/pango.pc +14 -0
- data/vendor/local/lib/pkgconfig/pangocairo.pc +11 -0
- data/vendor/local/lib/pkgconfig/pangoft2.pc +12 -0
- data/vendor/local/lib/pkgconfig/pangowin32.pc +11 -0
- data/vendor/local/share/gir-1.0/Pango-1.0.gir +13329 -0
- data/vendor/local/share/gir-1.0/PangoCairo-1.0.gir +833 -0
- data/vendor/local/share/gir-1.0/PangoFT2-1.0.gir +354 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/annotation-glossary.html +75 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html +1449 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/ch01.html +98 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/deprecated-api-index.html +46 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-blob.html +610 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-buffer.html +1780 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-common.html +1337 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-coretext.html +144 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-deprecated.html +99 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-face.html +630 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html +2529 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ft.html +188 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-glib.html +120 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html +50 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html +120 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-icu.html +120 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +771 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-tag.html +172 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot.html +50 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-set.html +966 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html +405 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape.html +286 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-unicode.html +1523 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-uniscribe.html +100 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html +182 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb.html +50 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2 +378 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/index.html +105 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/index.sgml +496 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/object-tree.html +59 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +224 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +255 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +246 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +500 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +1001 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +301 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoRenderer.html +1219 -0
- data/vendor/local/share/gtk-doc/html/pango/annotation-glossary.html +89 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-10.html +135 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-12.html +49 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-14.html +64 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-16.html +228 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-18.html +152 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-2.html +122 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-20.html +87 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-22.html +124 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-24.html +97 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-26.html +46 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-30.html +39 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html +39 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html +53 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32.html +42 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-34.html +38 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-4.html +201 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-6.html +165 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-8.html +171 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html +284 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-full.html +2968 -0
- data/vendor/local/share/gtk-doc/html/pango/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/index.html +146 -0
- data/vendor/local/share/gtk-doc/html/pango/index.sgml +957 -0
- data/vendor/local/share/gtk-doc/html/pango/layout.gif +0 -0
- data/vendor/local/share/gtk-doc/html/pango/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +68 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +514 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +1632 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +115 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +508 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +358 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +4154 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +956 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +2627 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +4153 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +965 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +331 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +2202 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +1430 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +582 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +3356 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +2079 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +325 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +523 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +1028 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +1275 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +91 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-querymodules.html +131 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.devhelp2 +786 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.html +63 -0
- data/vendor/local/share/gtk-doc/html/pango/rendering.html +47 -0
- data/vendor/local/share/gtk-doc/html/pango/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/pango/tools.html +33 -0
- data/vendor/local/share/gtk-doc/html/pango/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/up.png +0 -0
- data/vendor/local/share/icu/54.1/config/mh-mingw64 +158 -0
- data/vendor/local/share/icu/54.1/install-sh +251 -0
- data/vendor/local/share/icu/54.1/license.html +385 -0
- data/vendor/local/share/icu/54.1/mkinstalldirs +43 -0
- data/vendor/local/share/license/harfbuzz/AUTHORS +9 -0
- data/vendor/local/share/license/harfbuzz/COPYING +36 -0
- data/vendor/local/share/license/pango/AUTHORS +2 -0
- data/vendor/local/share/license/pango/COPYING +482 -0
- data/vendor/local/share/man/man1/derb.1 +196 -0
- data/vendor/local/share/man/man1/genbrk.1 +112 -0
- data/vendor/local/share/man/man1/gencfu.1 +91 -0
- data/vendor/local/share/man/man1/gencnval.1 +91 -0
- data/vendor/local/share/man/man1/gendict.1 +131 -0
- data/vendor/local/share/man/man1/genrb.1 +146 -0
- data/vendor/local/share/man/man1/icu-config.1 +288 -0
- data/vendor/local/share/man/man1/makeconv.1 +112 -0
- data/vendor/local/share/man/man1/pango-querymodules.1 +106 -0
- data/vendor/local/share/man/man1/pango-view.1 +1 -0
- data/vendor/local/share/man/man1/pkgdata.1 +258 -0
- data/vendor/local/share/man/man1/uconv.1 +443 -0
- data/vendor/local/share/man/man8/genccode.8 +106 -0
- data/vendor/local/share/man/man8/gencmn.8 +129 -0
- data/vendor/local/share/man/man8/gensprep.8 +102 -0
- data/vendor/local/share/man/man8/icupkg.8 +204 -0
- metadata +599 -0
@@ -0,0 +1,1275 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Pango Reference Manual: Xft Fonts and Rendering</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
|
+
<link rel="up" href="rendering.html" title="Rendering with Pango">
|
9
|
+
<link rel="prev" href="pango-FreeType-Fonts-and-Rendering.html" title="FreeType Fonts and Rendering">
|
10
|
+
<link rel="next" href="pango-Cairo-Rendering.html" title="Cairo Rendering">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
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="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#pango-Xft-Fonts-and-Rendering.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#pango-Xft-Fonts-and-Rendering.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span>
|
20
|
+
<a href="#pango-Xft-Fonts-and-Rendering.properties" class="shortcut">Properties</a></span>
|
21
|
+
</td>
|
22
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
23
|
+
<td><a accesskey="u" href="rendering.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
24
|
+
<td><a accesskey="p" href="pango-FreeType-Fonts-and-Rendering.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
25
|
+
<td><a accesskey="n" href="pango-Cairo-Rendering.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
26
|
+
</tr></table>
|
27
|
+
<div class="refentry">
|
28
|
+
<a name="pango-Xft-Fonts-and-Rendering"></a><div class="titlepage"></div>
|
29
|
+
<div class="refnamediv"><table width="100%"><tr>
|
30
|
+
<td valign="top">
|
31
|
+
<h2><span class="refentrytitle"><a name="pango-Xft-Fonts-and-Rendering.top_of_page"></a>Xft Fonts and Rendering</span></h2>
|
32
|
+
<p>Xft Fonts and Rendering — Font handling and rendering with the Xft backend</p>
|
33
|
+
</td>
|
34
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
35
|
+
</tr></table></div>
|
36
|
+
<div class="refsect1">
|
37
|
+
<a name="pango-Xft-Fonts-and-Rendering.functions"></a><h2>Functions</h2>
|
38
|
+
<div class="informaltable"><table width="100%" border="0">
|
39
|
+
<colgroup>
|
40
|
+
<col width="150px" class="functions_return">
|
41
|
+
<col class="functions_name">
|
42
|
+
</colgroup>
|
43
|
+
<tbody>
|
44
|
+
<tr>
|
45
|
+
<td class="function_type">
|
46
|
+
<a class="link" href="pango-Text-Processing.html#PangoContext"><span class="returnvalue">PangoContext</span></a> *
|
47
|
+
</td>
|
48
|
+
<td class="function_name">
|
49
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-get-context" title="pango_xft_get_context ()">pango_xft_get_context</a> <span class="c_punctuation">()</span>
|
50
|
+
</td>
|
51
|
+
</tr>
|
52
|
+
<tr>
|
53
|
+
<td class="function_type">
|
54
|
+
<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *
|
55
|
+
</td>
|
56
|
+
<td class="function_name">
|
57
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-get-font-map" title="pango_xft_get_font_map ()">pango_xft_get_font_map</a> <span class="c_punctuation">()</span>
|
58
|
+
</td>
|
59
|
+
</tr>
|
60
|
+
<tr>
|
61
|
+
<td class="function_type">
|
62
|
+
<span class="returnvalue">void</span>
|
63
|
+
</td>
|
64
|
+
<td class="function_name">
|
65
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-set-default-substitute" title="pango_xft_set_default_substitute ()">pango_xft_set_default_substitute</a> <span class="c_punctuation">()</span>
|
66
|
+
</td>
|
67
|
+
</tr>
|
68
|
+
<tr>
|
69
|
+
<td class="function_type">
|
70
|
+
<span class="returnvalue">void</span>
|
71
|
+
</td>
|
72
|
+
<td class="function_name">
|
73
|
+
<span class="c_punctuation">(</span><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftSubstituteFunc" title="PangoXftSubstituteFunc ()">*PangoXftSubstituteFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
74
|
+
</td>
|
75
|
+
</tr>
|
76
|
+
<tr>
|
77
|
+
<td class="function_type">
|
78
|
+
<span class="returnvalue">void</span>
|
79
|
+
</td>
|
80
|
+
<td class="function_name">
|
81
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-substitute-changed" title="pango_xft_substitute_changed ()">pango_xft_substitute_changed</a> <span class="c_punctuation">()</span>
|
82
|
+
</td>
|
83
|
+
</tr>
|
84
|
+
<tr>
|
85
|
+
<td class="function_type">
|
86
|
+
<span class="returnvalue">void</span>
|
87
|
+
</td>
|
88
|
+
<td class="function_name">
|
89
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-shutdown-display" title="pango_xft_shutdown_display ()">pango_xft_shutdown_display</a> <span class="c_punctuation">()</span>
|
90
|
+
</td>
|
91
|
+
</tr>
|
92
|
+
<tr>
|
93
|
+
<td class="function_type">
|
94
|
+
<span class="returnvalue">XftFont</span> *
|
95
|
+
</td>
|
96
|
+
<td class="function_name">
|
97
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-font" title="pango_xft_font_get_font ()">pango_xft_font_get_font</a> <span class="c_punctuation">()</span>
|
98
|
+
</td>
|
99
|
+
</tr>
|
100
|
+
<tr>
|
101
|
+
<td class="function_type">
|
102
|
+
<span class="returnvalue">Display</span> *
|
103
|
+
</td>
|
104
|
+
<td class="function_name">
|
105
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-display" title="pango_xft_font_get_display ()">pango_xft_font_get_display</a> <span class="c_punctuation">()</span>
|
106
|
+
</td>
|
107
|
+
</tr>
|
108
|
+
<tr>
|
109
|
+
<td class="function_type">
|
110
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
111
|
+
</td>
|
112
|
+
<td class="function_name">
|
113
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-has-char" title="pango_xft_font_has_char ()">pango_xft_font_has_char</a> <span class="c_punctuation">()</span>
|
114
|
+
</td>
|
115
|
+
</tr>
|
116
|
+
<tr>
|
117
|
+
<td class="function_type">
|
118
|
+
<span class="returnvalue">FT_Face</span>
|
119
|
+
</td>
|
120
|
+
<td class="function_name">
|
121
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-lock-face" title="pango_xft_font_lock_face ()">pango_xft_font_lock_face</a> <span class="c_punctuation">()</span>
|
122
|
+
</td>
|
123
|
+
</tr>
|
124
|
+
<tr>
|
125
|
+
<td class="function_type">
|
126
|
+
<span class="returnvalue">void</span>
|
127
|
+
</td>
|
128
|
+
<td class="function_name">
|
129
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-unlock-face" title="pango_xft_font_unlock_face ()">pango_xft_font_unlock_face</a> <span class="c_punctuation">()</span>
|
130
|
+
</td>
|
131
|
+
</tr>
|
132
|
+
<tr>
|
133
|
+
<td class="function_type">
|
134
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
135
|
+
</td>
|
136
|
+
<td class="function_name">
|
137
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-glyph" title="pango_xft_font_get_glyph ()">pango_xft_font_get_glyph</a> <span class="c_punctuation">()</span>
|
138
|
+
</td>
|
139
|
+
</tr>
|
140
|
+
<tr>
|
141
|
+
<td class="function_type">
|
142
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="returnvalue">PangoGlyph</span></a>
|
143
|
+
</td>
|
144
|
+
<td class="function_name">
|
145
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-get-unknown-glyph" title="pango_xft_font_get_unknown_glyph ()">pango_xft_font_get_unknown_glyph</a> <span class="c_punctuation">()</span>
|
146
|
+
</td>
|
147
|
+
</tr>
|
148
|
+
<tr>
|
149
|
+
<td class="function_type">
|
150
|
+
<a class="link" href="PangoRenderer.html" title="PangoRenderer"><span class="returnvalue">PangoRenderer</span></a> *
|
151
|
+
</td>
|
152
|
+
<td class="function_name">
|
153
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-renderer-new" title="pango_xft_renderer_new ()">pango_xft_renderer_new</a> <span class="c_punctuation">()</span>
|
154
|
+
</td>
|
155
|
+
</tr>
|
156
|
+
<tr>
|
157
|
+
<td class="function_type">
|
158
|
+
<span class="returnvalue">void</span>
|
159
|
+
</td>
|
160
|
+
<td class="function_name">
|
161
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-renderer-set-draw" title="pango_xft_renderer_set_draw ()">pango_xft_renderer_set_draw</a> <span class="c_punctuation">()</span>
|
162
|
+
</td>
|
163
|
+
</tr>
|
164
|
+
<tr>
|
165
|
+
<td class="function_type">
|
166
|
+
<span class="returnvalue">void</span>
|
167
|
+
</td>
|
168
|
+
<td class="function_name">
|
169
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-renderer-set-default-color" title="pango_xft_renderer_set_default_color ()">pango_xft_renderer_set_default_color</a> <span class="c_punctuation">()</span>
|
170
|
+
</td>
|
171
|
+
</tr>
|
172
|
+
<tr>
|
173
|
+
<td class="function_type">
|
174
|
+
<span class="returnvalue">void</span>
|
175
|
+
</td>
|
176
|
+
<td class="function_name">
|
177
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render" title="pango_xft_render ()">pango_xft_render</a> <span class="c_punctuation">()</span>
|
178
|
+
</td>
|
179
|
+
</tr>
|
180
|
+
<tr>
|
181
|
+
<td class="function_type">
|
182
|
+
<span class="returnvalue">void</span>
|
183
|
+
</td>
|
184
|
+
<td class="function_name">
|
185
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-picture-render" title="pango_xft_picture_render ()">pango_xft_picture_render</a> <span class="c_punctuation">()</span>
|
186
|
+
</td>
|
187
|
+
</tr>
|
188
|
+
<tr>
|
189
|
+
<td class="function_type">
|
190
|
+
<span class="returnvalue">void</span>
|
191
|
+
</td>
|
192
|
+
<td class="function_name">
|
193
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render-transformed" title="pango_xft_render_transformed ()">pango_xft_render_transformed</a> <span class="c_punctuation">()</span>
|
194
|
+
</td>
|
195
|
+
</tr>
|
196
|
+
<tr>
|
197
|
+
<td class="function_type">
|
198
|
+
<span class="returnvalue">void</span>
|
199
|
+
</td>
|
200
|
+
<td class="function_name">
|
201
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render-layout-line" title="pango_xft_render_layout_line ()">pango_xft_render_layout_line</a> <span class="c_punctuation">()</span>
|
202
|
+
</td>
|
203
|
+
</tr>
|
204
|
+
<tr>
|
205
|
+
<td class="function_type">
|
206
|
+
<span class="returnvalue">void</span>
|
207
|
+
</td>
|
208
|
+
<td class="function_name">
|
209
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render-layout" title="pango_xft_render_layout ()">pango_xft_render_layout</a> <span class="c_punctuation">()</span>
|
210
|
+
</td>
|
211
|
+
</tr>
|
212
|
+
</tbody>
|
213
|
+
</table></div>
|
214
|
+
</div>
|
215
|
+
<div class="refsect1">
|
216
|
+
<a name="pango-Xft-Fonts-and-Rendering.properties"></a><h2>Properties</h2>
|
217
|
+
<div class="informaltable"><table border="0">
|
218
|
+
<colgroup>
|
219
|
+
<col width="150px" class="properties_type">
|
220
|
+
<col width="300px" class="properties_name">
|
221
|
+
<col width="200px" class="properties_flags">
|
222
|
+
</colgroup>
|
223
|
+
<tbody>
|
224
|
+
<tr>
|
225
|
+
<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a></td>
|
226
|
+
<td class="property_name"><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer--display" title="The “display” property">display</a></td>
|
227
|
+
<td class="property_flags">Write / Construct Only</td>
|
228
|
+
</tr>
|
229
|
+
<tr>
|
230
|
+
<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
|
231
|
+
<td class="property_name"><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer--screen" title="The “screen” property">screen</a></td>
|
232
|
+
<td class="property_flags">Write / Construct Only</td>
|
233
|
+
</tr>
|
234
|
+
</tbody>
|
235
|
+
</table></div>
|
236
|
+
</div>
|
237
|
+
<a name="PangoXftFont"></a><a name="PangoXftFontMap"></a><a name="PangoXftRenderer"></a><div class="refsect1">
|
238
|
+
<a name="pango-Xft-Fonts-and-Rendering.other"></a><h2>Types and Values</h2>
|
239
|
+
<div class="informaltable"><table width="100%" border="0">
|
240
|
+
<colgroup>
|
241
|
+
<col width="150px" class="name">
|
242
|
+
<col class="description">
|
243
|
+
</colgroup>
|
244
|
+
<tbody>
|
245
|
+
<tr>
|
246
|
+
<td class="datatype_keyword"> </td>
|
247
|
+
<td class="function_name"><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFont-struct" title="PangoXftFont">PangoXftFont</a></td>
|
248
|
+
</tr>
|
249
|
+
<tr>
|
250
|
+
<td class="datatype_keyword"> </td>
|
251
|
+
<td class="function_name"><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFontMap-struct" title="PangoXftFontMap">PangoXftFontMap</a></td>
|
252
|
+
</tr>
|
253
|
+
<tr>
|
254
|
+
<td class="define_keyword">#define</td>
|
255
|
+
<td class="function_name"><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PANGO-RENDER-TYPE-XFT:CAPS" title="PANGO_RENDER_TYPE_XFT">PANGO_RENDER_TYPE_XFT</a></td>
|
256
|
+
</tr>
|
257
|
+
<tr>
|
258
|
+
<td class="datatype_keyword">struct</td>
|
259
|
+
<td class="function_name"><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer-struct" title="struct PangoXftRenderer">PangoXftRenderer</a></td>
|
260
|
+
</tr>
|
261
|
+
<tr>
|
262
|
+
<td class="datatype_keyword">struct</td>
|
263
|
+
<td class="function_name"><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRendererClass" title="struct PangoXftRendererClass">PangoXftRendererClass</a></td>
|
264
|
+
</tr>
|
265
|
+
</tbody>
|
266
|
+
</table></div>
|
267
|
+
</div>
|
268
|
+
<div class="refsect1">
|
269
|
+
<a name="pango-Xft-Fonts-and-Rendering.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
270
|
+
<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
271
|
+
<span class="lineart">├──</span> <a class="link" href="pango-Fonts.html#PangoFont">PangoFont</a>
|
272
|
+
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
|
273
|
+
<span class="lineart">│</span> <span class="lineart">╰──</span> PangoXftFont
|
274
|
+
<span class="lineart">├──</span> <a class="link" href="pango-Fonts.html#PangoFontMap">PangoFontMap</a>
|
275
|
+
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
|
276
|
+
<span class="lineart">│</span> <span class="lineart">╰──</span> PangoXftFontMap
|
277
|
+
<span class="lineart">╰──</span> <a class="link" href="PangoRenderer.html" title="PangoRenderer">PangoRenderer</a>
|
278
|
+
<span class="lineart">╰──</span> PangoXftRenderer
|
279
|
+
</pre>
|
280
|
+
</div>
|
281
|
+
<div class="refsect1">
|
282
|
+
<a name="pango-Xft-Fonts-and-Rendering.description"></a><h2>Description</h2>
|
283
|
+
<p>The Xft library is a library for displaying fonts on the X window
|
284
|
+
system; internally it uses the fontconfig library to locate font
|
285
|
+
files, and the FreeType library to load and render fonts. The
|
286
|
+
Xft backend is the recommended Pango font backend for screen
|
287
|
+
display with X. (The <a class="link" href="pango-Cairo-Rendering.html" title="Cairo Rendering">Cairo back end</a> is another possibility.)</p>
|
288
|
+
<p>Using the Xft backend is generally straightforward;
|
289
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-get-context" title="pango_xft_get_context ()"><code class="function">pango_xft_get_context()</code></a> creates a context for a specified display
|
290
|
+
and screen. You can then create a <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> with that context
|
291
|
+
and render it with <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-render-layout" title="pango_xft_render_layout ()"><code class="function">pango_xft_render_layout()</code></a>. At a more advanced
|
292
|
+
level, the low-level fontconfig options used for rendering fonts
|
293
|
+
can be affected using <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-set-default-substitute" title="pango_xft_set_default_substitute ()"><code class="function">pango_xft_set_default_substitute()</code></a>, and
|
294
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-substitute-changed" title="pango_xft_substitute_changed ()"><code class="function">pango_xft_substitute_changed()</code></a>.</p>
|
295
|
+
<p>A range of functions for drawing pieces of a layout, such as
|
296
|
+
individual layout lines and glyphs strings are provided. You can also
|
297
|
+
directly create a <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a>. Finally, in some advanced cases, it
|
298
|
+
is useful to derive from <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a>. Deriving from
|
299
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> is useful for two reasons. One reason is be to
|
300
|
+
support custom attributes by overriding <a class="link" href="PangoRenderer.html#PangoRendererClass" title="struct PangoRendererClass"><span class="type">PangoRendererClass</span></a> virtual
|
301
|
+
functions like 'prepare_run' or 'draw_shape'. The reason is to
|
302
|
+
customize exactly how the final bits are drawn to the destination by
|
303
|
+
overriding the <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRendererClass" title="struct PangoXftRendererClass"><span class="type">PangoXftRendererClass</span></a> virtual functions
|
304
|
+
'composite_glyphs' and 'composite_trapezoids'.</p>
|
305
|
+
</div>
|
306
|
+
<div class="refsect1">
|
307
|
+
<a name="pango-Xft-Fonts-and-Rendering.functions_details"></a><h2>Functions</h2>
|
308
|
+
<div class="refsect2">
|
309
|
+
<a name="pango-xft-get-context"></a><h3>pango_xft_get_context ()</h3>
|
310
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Processing.html#PangoContext"><span class="returnvalue">PangoContext</span></a> *
|
311
|
+
pango_xft_get_context (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
312
|
+
<em class="parameter"><code><span class="type">int</span> screen</code></em>);</pre>
|
313
|
+
<div class="warning">
|
314
|
+
<p><code class="literal">pango_xft_get_context</code> has been deprecated since version 1.22 and should not be used in newly-written code.</p>
|
315
|
+
<p>Use <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-get-font-map" title="pango_xft_get_font_map ()"><code class="function">pango_xft_get_font_map()</code></a> followed by
|
316
|
+
<a class="link" href="pango-Fonts.html#pango-font-map-create-context" title="pango_font_map_create_context ()"><code class="function">pango_font_map_create_context()</code></a> instead.</p>
|
317
|
+
</div>
|
318
|
+
<p>Retrieves a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> appropriate for rendering with
|
319
|
+
Xft fonts on the given screen of the given display.</p>
|
320
|
+
<div class="refsect3">
|
321
|
+
<a name="id-1.3.4.11.2.6"></a><h4>Parameters</h4>
|
322
|
+
<div class="informaltable"><table width="100%" border="0">
|
323
|
+
<colgroup>
|
324
|
+
<col width="150px" class="parameters_name">
|
325
|
+
<col class="parameters_description">
|
326
|
+
<col width="200px" class="parameters_annotations">
|
327
|
+
</colgroup>
|
328
|
+
<tbody>
|
329
|
+
<tr>
|
330
|
+
<td class="parameter_name"><p>display</p></td>
|
331
|
+
<td class="parameter_description"><p>an X display.</p></td>
|
332
|
+
<td class="parameter_annotations"> </td>
|
333
|
+
</tr>
|
334
|
+
<tr>
|
335
|
+
<td class="parameter_name"><p>screen</p></td>
|
336
|
+
<td class="parameter_description"><p>an X screen.</p></td>
|
337
|
+
<td class="parameter_annotations"> </td>
|
338
|
+
</tr>
|
339
|
+
</tbody>
|
340
|
+
</table></div>
|
341
|
+
</div>
|
342
|
+
<div class="refsect3">
|
343
|
+
<a name="id-1.3.4.11.2.7"></a><h4>Returns</h4>
|
344
|
+
<p> the new <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>.</p>
|
345
|
+
<p></p>
|
346
|
+
</div>
|
347
|
+
</div>
|
348
|
+
<hr>
|
349
|
+
<div class="refsect2">
|
350
|
+
<a name="pango-xft-get-font-map"></a><h3>pango_xft_get_font_map ()</h3>
|
351
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *
|
352
|
+
pango_xft_get_font_map (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
353
|
+
<em class="parameter"><code><span class="type">int</span> screen</code></em>);</pre>
|
354
|
+
<p>Returns the <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFontMap"><span class="type">PangoXftFontMap</span></a> for the given display and screen.
|
355
|
+
The fontmap is owned by Pango and will be valid until
|
356
|
+
the display is closed.</p>
|
357
|
+
<div class="refsect3">
|
358
|
+
<a name="id-1.3.4.11.3.5"></a><h4>Parameters</h4>
|
359
|
+
<div class="informaltable"><table width="100%" border="0">
|
360
|
+
<colgroup>
|
361
|
+
<col width="150px" class="parameters_name">
|
362
|
+
<col class="parameters_description">
|
363
|
+
<col width="200px" class="parameters_annotations">
|
364
|
+
</colgroup>
|
365
|
+
<tbody>
|
366
|
+
<tr>
|
367
|
+
<td class="parameter_name"><p>display</p></td>
|
368
|
+
<td class="parameter_description"><p>an X display</p></td>
|
369
|
+
<td class="parameter_annotations"> </td>
|
370
|
+
</tr>
|
371
|
+
<tr>
|
372
|
+
<td class="parameter_name"><p>screen</p></td>
|
373
|
+
<td class="parameter_description"><p>the screen number of a screen within <em class="parameter"><code>display</code></em>
|
374
|
+
</p></td>
|
375
|
+
<td class="parameter_annotations"> </td>
|
376
|
+
</tr>
|
377
|
+
</tbody>
|
378
|
+
</table></div>
|
379
|
+
</div>
|
380
|
+
<div class="refsect3">
|
381
|
+
<a name="id-1.3.4.11.3.6"></a><h4>Returns</h4>
|
382
|
+
<p> a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> object, owned by Pango. </p>
|
383
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
384
|
+
</div>
|
385
|
+
<p class="since">Since 1.2</p>
|
386
|
+
</div>
|
387
|
+
<hr>
|
388
|
+
<div class="refsect2">
|
389
|
+
<a name="pango-xft-set-default-substitute"></a><h3>pango_xft_set_default_substitute ()</h3>
|
390
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
391
|
+
pango_xft_set_default_substitute (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
392
|
+
<em class="parameter"><code><span class="type">int</span> screen</code></em>,
|
393
|
+
<em class="parameter"><code><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftSubstituteFunc" title="PangoXftSubstituteFunc ()"><span class="type">PangoXftSubstituteFunc</span></a> func</code></em>,
|
394
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
395
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> notify</code></em>);</pre>
|
396
|
+
<p>Sets a function that will be called to do final configuration
|
397
|
+
substitution on a <span class="type">FcPattern</span> before it is used to load
|
398
|
+
the font. This function can be used to do things like set
|
399
|
+
hinting and antialiasing options.</p>
|
400
|
+
<div class="refsect3">
|
401
|
+
<a name="id-1.3.4.11.4.5"></a><h4>Parameters</h4>
|
402
|
+
<div class="informaltable"><table width="100%" border="0">
|
403
|
+
<colgroup>
|
404
|
+
<col width="150px" class="parameters_name">
|
405
|
+
<col class="parameters_description">
|
406
|
+
<col width="200px" class="parameters_annotations">
|
407
|
+
</colgroup>
|
408
|
+
<tbody>
|
409
|
+
<tr>
|
410
|
+
<td class="parameter_name"><p>display</p></td>
|
411
|
+
<td class="parameter_description"><p>an X Display</p></td>
|
412
|
+
<td class="parameter_annotations"> </td>
|
413
|
+
</tr>
|
414
|
+
<tr>
|
415
|
+
<td class="parameter_name"><p>screen</p></td>
|
416
|
+
<td class="parameter_description"><p>the screen number of a screen within <em class="parameter"><code>display</code></em>
|
417
|
+
</p></td>
|
418
|
+
<td class="parameter_annotations"> </td>
|
419
|
+
</tr>
|
420
|
+
<tr>
|
421
|
+
<td class="parameter_name"><p>func</p></td>
|
422
|
+
<td class="parameter_description"><p>function to call to to do final config tweaking
|
423
|
+
on <span class="type">FcPattern</span> objects.</p></td>
|
424
|
+
<td class="parameter_annotations"> </td>
|
425
|
+
</tr>
|
426
|
+
<tr>
|
427
|
+
<td class="parameter_name"><p>data</p></td>
|
428
|
+
<td class="parameter_description"><p>data to pass to <em class="parameter"><code>func</code></em>
|
429
|
+
</p></td>
|
430
|
+
<td class="parameter_annotations"> </td>
|
431
|
+
</tr>
|
432
|
+
<tr>
|
433
|
+
<td class="parameter_name"><p>notify</p></td>
|
434
|
+
<td class="parameter_description"><p>function to call when <em class="parameter"><code>data</code></em>
|
435
|
+
is no longer used.</p></td>
|
436
|
+
<td class="parameter_annotations"> </td>
|
437
|
+
</tr>
|
438
|
+
</tbody>
|
439
|
+
</table></div>
|
440
|
+
</div>
|
441
|
+
<p class="since">Since 1.2</p>
|
442
|
+
</div>
|
443
|
+
<hr>
|
444
|
+
<div class="refsect2">
|
445
|
+
<a name="PangoXftSubstituteFunc"></a><h3>PangoXftSubstituteFunc ()</h3>
|
446
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
447
|
+
<span class="c_punctuation">(</span>*PangoXftSubstituteFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><span class="type">FcPattern</span> *pattern</code></em>,
|
448
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
449
|
+
<p>Function type for doing final config tweaking on prepared FcPatterns.</p>
|
450
|
+
<div class="refsect3">
|
451
|
+
<a name="id-1.3.4.11.5.5"></a><h4>Parameters</h4>
|
452
|
+
<div class="informaltable"><table width="100%" border="0">
|
453
|
+
<colgroup>
|
454
|
+
<col width="150px" class="parameters_name">
|
455
|
+
<col class="parameters_description">
|
456
|
+
<col width="200px" class="parameters_annotations">
|
457
|
+
</colgroup>
|
458
|
+
<tbody>
|
459
|
+
<tr>
|
460
|
+
<td class="parameter_name"><p>pattern</p></td>
|
461
|
+
<td class="parameter_description"><p>the FcPattern to tweak.</p></td>
|
462
|
+
<td class="parameter_annotations"> </td>
|
463
|
+
</tr>
|
464
|
+
<tr>
|
465
|
+
<td class="parameter_name"><p>data</p></td>
|
466
|
+
<td class="parameter_description"><p>user data.</p></td>
|
467
|
+
<td class="parameter_annotations"> </td>
|
468
|
+
</tr>
|
469
|
+
</tbody>
|
470
|
+
</table></div>
|
471
|
+
</div>
|
472
|
+
</div>
|
473
|
+
<hr>
|
474
|
+
<div class="refsect2">
|
475
|
+
<a name="pango-xft-substitute-changed"></a><h3>pango_xft_substitute_changed ()</h3>
|
476
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
477
|
+
pango_xft_substitute_changed (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
478
|
+
<em class="parameter"><code><span class="type">int</span> screen</code></em>);</pre>
|
479
|
+
<p>Call this function any time the results of the
|
480
|
+
default substitution function set with
|
481
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-set-default-substitute" title="pango_xft_set_default_substitute ()"><code class="function">pango_xft_set_default_substitute()</code></a> change.
|
482
|
+
That is, if your substitution function will return different
|
483
|
+
results for the same input pattern, you must call this function.</p>
|
484
|
+
<div class="refsect3">
|
485
|
+
<a name="id-1.3.4.11.6.5"></a><h4>Parameters</h4>
|
486
|
+
<div class="informaltable"><table width="100%" border="0">
|
487
|
+
<colgroup>
|
488
|
+
<col width="150px" class="parameters_name">
|
489
|
+
<col class="parameters_description">
|
490
|
+
<col width="200px" class="parameters_annotations">
|
491
|
+
</colgroup>
|
492
|
+
<tbody>
|
493
|
+
<tr>
|
494
|
+
<td class="parameter_name"><p>display</p></td>
|
495
|
+
<td class="parameter_description"><p>an X Display</p></td>
|
496
|
+
<td class="parameter_annotations"> </td>
|
497
|
+
</tr>
|
498
|
+
<tr>
|
499
|
+
<td class="parameter_name"><p>screen</p></td>
|
500
|
+
<td class="parameter_description"><p>the screen number of a screen within <em class="parameter"><code>display</code></em>
|
501
|
+
</p></td>
|
502
|
+
<td class="parameter_annotations"> </td>
|
503
|
+
</tr>
|
504
|
+
</tbody>
|
505
|
+
</table></div>
|
506
|
+
</div>
|
507
|
+
<p class="since">Since 1.2</p>
|
508
|
+
</div>
|
509
|
+
<hr>
|
510
|
+
<div class="refsect2">
|
511
|
+
<a name="pango-xft-shutdown-display"></a><h3>pango_xft_shutdown_display ()</h3>
|
512
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
513
|
+
pango_xft_shutdown_display (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
514
|
+
<em class="parameter"><code><span class="type">int</span> screen</code></em>);</pre>
|
515
|
+
<p>Release any resources that have been cached for the
|
516
|
+
combination of <em class="parameter"><code>display</code></em>
|
517
|
+
and <em class="parameter"><code>screen</code></em>
|
518
|
+
. Note that when the
|
519
|
+
X display is closed, resources are released automatically,
|
520
|
+
without needing to call this function.</p>
|
521
|
+
<div class="refsect3">
|
522
|
+
<a name="id-1.3.4.11.7.5"></a><h4>Parameters</h4>
|
523
|
+
<div class="informaltable"><table width="100%" border="0">
|
524
|
+
<colgroup>
|
525
|
+
<col width="150px" class="parameters_name">
|
526
|
+
<col class="parameters_description">
|
527
|
+
<col width="200px" class="parameters_annotations">
|
528
|
+
</colgroup>
|
529
|
+
<tbody>
|
530
|
+
<tr>
|
531
|
+
<td class="parameter_name"><p>display</p></td>
|
532
|
+
<td class="parameter_description"><p>an X display</p></td>
|
533
|
+
<td class="parameter_annotations"> </td>
|
534
|
+
</tr>
|
535
|
+
<tr>
|
536
|
+
<td class="parameter_name"><p>screen</p></td>
|
537
|
+
<td class="parameter_description"><p>the screen number of a screen within <em class="parameter"><code>display</code></em>
|
538
|
+
</p></td>
|
539
|
+
<td class="parameter_annotations"> </td>
|
540
|
+
</tr>
|
541
|
+
</tbody>
|
542
|
+
</table></div>
|
543
|
+
</div>
|
544
|
+
<p class="since">Since 1.2</p>
|
545
|
+
</div>
|
546
|
+
<hr>
|
547
|
+
<div class="refsect2">
|
548
|
+
<a name="pango-xft-font-get-font"></a><h3>pango_xft_font_get_font ()</h3>
|
549
|
+
<pre class="programlisting"><span class="returnvalue">XftFont</span> *
|
550
|
+
pango_xft_font_get_font (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);</pre>
|
551
|
+
<p>Returns the XftFont of a font.</p>
|
552
|
+
<div class="refsect3">
|
553
|
+
<a name="id-1.3.4.11.8.5"></a><h4>Parameters</h4>
|
554
|
+
<div class="informaltable"><table width="100%" border="0">
|
555
|
+
<colgroup>
|
556
|
+
<col width="150px" class="parameters_name">
|
557
|
+
<col class="parameters_description">
|
558
|
+
<col width="200px" class="parameters_annotations">
|
559
|
+
</colgroup>
|
560
|
+
<tbody><tr>
|
561
|
+
<td class="parameter_name"><p>font</p></td>
|
562
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.</p></td>
|
563
|
+
<td class="parameter_annotations"> </td>
|
564
|
+
</tr></tbody>
|
565
|
+
</table></div>
|
566
|
+
</div>
|
567
|
+
<div class="refsect3">
|
568
|
+
<a name="id-1.3.4.11.8.6"></a><h4>Returns</h4>
|
569
|
+
<p> the XftFont associated to <em class="parameter"><code>font</code></em>
|
570
|
+
, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>font</code></em>
|
571
|
+
is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
572
|
+
<p></p>
|
573
|
+
</div>
|
574
|
+
</div>
|
575
|
+
<hr>
|
576
|
+
<div class="refsect2">
|
577
|
+
<a name="pango-xft-font-get-display"></a><h3>pango_xft_font_get_display ()</h3>
|
578
|
+
<pre class="programlisting"><span class="returnvalue">Display</span> *
|
579
|
+
pango_xft_font_get_display (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);</pre>
|
580
|
+
<p>Returns the X display of the XftFont of a font.</p>
|
581
|
+
<div class="refsect3">
|
582
|
+
<a name="id-1.3.4.11.9.5"></a><h4>Parameters</h4>
|
583
|
+
<div class="informaltable"><table width="100%" border="0">
|
584
|
+
<colgroup>
|
585
|
+
<col width="150px" class="parameters_name">
|
586
|
+
<col class="parameters_description">
|
587
|
+
<col width="200px" class="parameters_annotations">
|
588
|
+
</colgroup>
|
589
|
+
<tbody><tr>
|
590
|
+
<td class="parameter_name"><p>font</p></td>
|
591
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.</p></td>
|
592
|
+
<td class="parameter_annotations"> </td>
|
593
|
+
</tr></tbody>
|
594
|
+
</table></div>
|
595
|
+
</div>
|
596
|
+
<div class="refsect3">
|
597
|
+
<a name="id-1.3.4.11.9.6"></a><h4>Returns</h4>
|
598
|
+
<p> the X display of the XftFont associated to <em class="parameter"><code>font</code></em>
|
599
|
+
.</p>
|
600
|
+
<p></p>
|
601
|
+
</div>
|
602
|
+
</div>
|
603
|
+
<hr>
|
604
|
+
<div class="refsect2">
|
605
|
+
<a name="pango-xft-font-has-char"></a><h3>pango_xft_font_has_char ()</h3>
|
606
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
607
|
+
pango_xft_font_has_char (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
608
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Unicode-Manipulation.html#gunichar"><span class="type">gunichar</span></a> wc</code></em>);</pre>
|
609
|
+
<div class="warning"><p><code class="literal">pango_xft_font_has_char</code> is deprecated and should not be used in newly-written code.</p></div>
|
610
|
+
<p>Determines whether <em class="parameter"><code>font</code></em>
|
611
|
+
has a glyph for the codepoint <em class="parameter"><code>wc</code></em>
|
612
|
+
.</p>
|
613
|
+
<p>Use <a class="link" href="PangoFcFont.html#pango-fc-font-has-char" title="pango_fc_font_has_char ()"><code class="function">pango_fc_font_has_char()</code></a> instead.</p>
|
614
|
+
<div class="refsect3">
|
615
|
+
<a name="id-1.3.4.11.10.8"></a><h4>Parameters</h4>
|
616
|
+
<div class="informaltable"><table width="100%" border="0">
|
617
|
+
<colgroup>
|
618
|
+
<col width="150px" class="parameters_name">
|
619
|
+
<col class="parameters_description">
|
620
|
+
<col width="200px" class="parameters_annotations">
|
621
|
+
</colgroup>
|
622
|
+
<tbody>
|
623
|
+
<tr>
|
624
|
+
<td class="parameter_name"><p>font</p></td>
|
625
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> for the Xft backend</p></td>
|
626
|
+
<td class="parameter_annotations"> </td>
|
627
|
+
</tr>
|
628
|
+
<tr>
|
629
|
+
<td class="parameter_name"><p>wc</p></td>
|
630
|
+
<td class="parameter_description"><p>Unicode codepoint to look up</p></td>
|
631
|
+
<td class="parameter_annotations"> </td>
|
632
|
+
</tr>
|
633
|
+
</tbody>
|
634
|
+
</table></div>
|
635
|
+
</div>
|
636
|
+
<div class="refsect3">
|
637
|
+
<a name="id-1.3.4.11.10.9"></a><h4>Returns</h4>
|
638
|
+
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>font</code></em>
|
639
|
+
has the requested codepoint.</p>
|
640
|
+
<p></p>
|
641
|
+
</div>
|
642
|
+
<p class="since">Since 1.2</p>
|
643
|
+
</div>
|
644
|
+
<hr>
|
645
|
+
<div class="refsect2">
|
646
|
+
<a name="pango-xft-font-lock-face"></a><h3>pango_xft_font_lock_face ()</h3>
|
647
|
+
<pre class="programlisting"><span class="returnvalue">FT_Face</span>
|
648
|
+
pango_xft_font_lock_face (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);</pre>
|
649
|
+
<div class="warning"><p><code class="literal">pango_xft_font_lock_face</code> is deprecated and should not be used in newly-written code.</p></div>
|
650
|
+
<p>Gets the FreeType <span class="type">FT_Face</span> associated with a font,
|
651
|
+
This face will be kept around until you call
|
652
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-unlock-face" title="pango_xft_font_unlock_face ()"><code class="function">pango_xft_font_unlock_face()</code></a>.</p>
|
653
|
+
<p>Use <a class="link" href="PangoFcFont.html#pango-fc-font-lock-face" title="pango_fc_font_lock_face ()"><code class="function">pango_fc_font_lock_face()</code></a> instead.</p>
|
654
|
+
<div class="refsect3">
|
655
|
+
<a name="id-1.3.4.11.11.8"></a><h4>Parameters</h4>
|
656
|
+
<div class="informaltable"><table width="100%" border="0">
|
657
|
+
<colgroup>
|
658
|
+
<col width="150px" class="parameters_name">
|
659
|
+
<col class="parameters_description">
|
660
|
+
<col width="200px" class="parameters_annotations">
|
661
|
+
</colgroup>
|
662
|
+
<tbody><tr>
|
663
|
+
<td class="parameter_name"><p>font</p></td>
|
664
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.</p></td>
|
665
|
+
<td class="parameter_annotations"> </td>
|
666
|
+
</tr></tbody>
|
667
|
+
</table></div>
|
668
|
+
</div>
|
669
|
+
<div class="refsect3">
|
670
|
+
<a name="id-1.3.4.11.11.9"></a><h4>Returns</h4>
|
671
|
+
<p> the FreeType <span class="type">FT_Face</span> associated with <em class="parameter"><code>font</code></em>
|
672
|
+
.</p>
|
673
|
+
<p></p>
|
674
|
+
</div>
|
675
|
+
<p class="since">Since 1.2</p>
|
676
|
+
</div>
|
677
|
+
<hr>
|
678
|
+
<div class="refsect2">
|
679
|
+
<a name="pango-xft-font-unlock-face"></a><h3>pango_xft_font_unlock_face ()</h3>
|
680
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
681
|
+
pango_xft_font_unlock_face (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>);</pre>
|
682
|
+
<div class="warning"><p><code class="literal">pango_xft_font_unlock_face</code> is deprecated and should not be used in newly-written code.</p></div>
|
683
|
+
<p>Releases a font previously obtained with
|
684
|
+
<a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-lock-face" title="pango_xft_font_lock_face ()"><code class="function">pango_xft_font_lock_face()</code></a>.</p>
|
685
|
+
<p>Use <a class="link" href="PangoFcFont.html#pango-fc-font-unlock-face" title="pango_fc_font_unlock_face ()"><code class="function">pango_fc_font_unlock_face()</code></a> instead.</p>
|
686
|
+
<div class="refsect3">
|
687
|
+
<a name="id-1.3.4.11.12.8"></a><h4>Parameters</h4>
|
688
|
+
<div class="informaltable"><table width="100%" border="0">
|
689
|
+
<colgroup>
|
690
|
+
<col width="150px" class="parameters_name">
|
691
|
+
<col class="parameters_description">
|
692
|
+
<col width="200px" class="parameters_annotations">
|
693
|
+
</colgroup>
|
694
|
+
<tbody><tr>
|
695
|
+
<td class="parameter_name"><p>font</p></td>
|
696
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.</p></td>
|
697
|
+
<td class="parameter_annotations"> </td>
|
698
|
+
</tr></tbody>
|
699
|
+
</table></div>
|
700
|
+
</div>
|
701
|
+
<p class="since">Since 1.2</p>
|
702
|
+
</div>
|
703
|
+
<hr>
|
704
|
+
<div class="refsect2">
|
705
|
+
<a name="pango-xft-font-get-glyph"></a><h3>pango_xft_font_get_glyph ()</h3>
|
706
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
707
|
+
pango_xft_font_get_glyph (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
708
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Unicode-Manipulation.html#gunichar"><span class="type">gunichar</span></a> wc</code></em>);</pre>
|
709
|
+
<div class="warning"><p><code class="literal">pango_xft_font_get_glyph</code> is deprecated and should not be used in newly-written code.</p></div>
|
710
|
+
<p>Gets the glyph index for a given Unicode character
|
711
|
+
for <em class="parameter"><code>font</code></em>
|
712
|
+
. If you only want to determine
|
713
|
+
whether the font has the glyph, use <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-font-has-char" title="pango_xft_font_has_char ()"><code class="function">pango_xft_font_has_char()</code></a>.</p>
|
714
|
+
<p>Use <a class="link" href="PangoFcFont.html#pango-fc-font-get-glyph" title="pango_fc_font_get_glyph ()"><code class="function">pango_fc_font_get_glyph()</code></a> instead.</p>
|
715
|
+
<div class="refsect3">
|
716
|
+
<a name="id-1.3.4.11.13.8"></a><h4>Parameters</h4>
|
717
|
+
<div class="informaltable"><table width="100%" border="0">
|
718
|
+
<colgroup>
|
719
|
+
<col width="150px" class="parameters_name">
|
720
|
+
<col class="parameters_description">
|
721
|
+
<col width="200px" class="parameters_annotations">
|
722
|
+
</colgroup>
|
723
|
+
<tbody>
|
724
|
+
<tr>
|
725
|
+
<td class="parameter_name"><p>font</p></td>
|
726
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> for the Xft backend</p></td>
|
727
|
+
<td class="parameter_annotations"> </td>
|
728
|
+
</tr>
|
729
|
+
<tr>
|
730
|
+
<td class="parameter_name"><p>wc</p></td>
|
731
|
+
<td class="parameter_description"><p>Unicode codepoint to look up</p></td>
|
732
|
+
<td class="parameter_annotations"> </td>
|
733
|
+
</tr>
|
734
|
+
</tbody>
|
735
|
+
</table></div>
|
736
|
+
</div>
|
737
|
+
<div class="refsect3">
|
738
|
+
<a name="id-1.3.4.11.13.9"></a><h4>Returns</h4>
|
739
|
+
<p> the glyph index, or 0, if the Unicode
|
740
|
+
character does not exist in the font.</p>
|
741
|
+
<p></p>
|
742
|
+
</div>
|
743
|
+
<p class="since">Since 1.2</p>
|
744
|
+
</div>
|
745
|
+
<hr>
|
746
|
+
<div class="refsect2">
|
747
|
+
<a name="pango-xft-font-get-unknown-glyph"></a><h3>pango_xft_font_get_unknown_glyph ()</h3>
|
748
|
+
<pre class="programlisting"><a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="returnvalue">PangoGlyph</span></a>
|
749
|
+
pango_xft_font_get_unknown_glyph (<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
750
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Unicode-Manipulation.html#gunichar"><span class="type">gunichar</span></a> wc</code></em>);</pre>
|
751
|
+
<div class="warning"><p><code class="literal">pango_xft_font_get_unknown_glyph</code> is deprecated and should not be used in newly-written code.</p></div>
|
752
|
+
<p>Returns the index of a glyph suitable for drawing <em class="parameter"><code>wc</code></em>
|
753
|
+
as an
|
754
|
+
unknown character.</p>
|
755
|
+
<p>Use <a class="link" href="pango-Glyph-Storage.html#PANGO-GET-UNKNOWN-GLYPH:CAPS" title="PANGO_GET_UNKNOWN_GLYPH()"><code class="function">PANGO_GET_UNKNOWN_GLYPH()</code></a> instead.</p>
|
756
|
+
<div class="refsect3">
|
757
|
+
<a name="id-1.3.4.11.14.7"></a><h4>Parameters</h4>
|
758
|
+
<div class="informaltable"><table width="100%" border="0">
|
759
|
+
<colgroup>
|
760
|
+
<col width="150px" class="parameters_name">
|
761
|
+
<col class="parameters_description">
|
762
|
+
<col width="200px" class="parameters_annotations">
|
763
|
+
</colgroup>
|
764
|
+
<tbody>
|
765
|
+
<tr>
|
766
|
+
<td class="parameter_name"><p>font</p></td>
|
767
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.</p></td>
|
768
|
+
<td class="parameter_annotations"> </td>
|
769
|
+
</tr>
|
770
|
+
<tr>
|
771
|
+
<td class="parameter_name"><p>wc</p></td>
|
772
|
+
<td class="parameter_description"><p>the Unicode character for which a glyph is needed.</p></td>
|
773
|
+
<td class="parameter_annotations"> </td>
|
774
|
+
</tr>
|
775
|
+
</tbody>
|
776
|
+
</table></div>
|
777
|
+
</div>
|
778
|
+
<div class="refsect3">
|
779
|
+
<a name="id-1.3.4.11.14.8"></a><h4>Returns</h4>
|
780
|
+
<p> a glyph index into <em class="parameter"><code>font</code></em>
|
781
|
+
.</p>
|
782
|
+
<p></p>
|
783
|
+
</div>
|
784
|
+
</div>
|
785
|
+
<hr>
|
786
|
+
<div class="refsect2">
|
787
|
+
<a name="pango-xft-renderer-new"></a><h3>pango_xft_renderer_new ()</h3>
|
788
|
+
<pre class="programlisting"><a class="link" href="PangoRenderer.html" title="PangoRenderer"><span class="returnvalue">PangoRenderer</span></a> *
|
789
|
+
pango_xft_renderer_new (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
790
|
+
<em class="parameter"><code><span class="type">int</span> screen</code></em>);</pre>
|
791
|
+
<p>Create a new <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> to allow rendering Pango objects
|
792
|
+
with the Xft library. You must call <a class="link" href="pango-Xft-Fonts-and-Rendering.html#pango-xft-renderer-set-draw" title="pango_xft_renderer_set_draw ()"><code class="function">pango_xft_renderer_set_draw()</code></a> before
|
793
|
+
using the renderer.</p>
|
794
|
+
<div class="refsect3">
|
795
|
+
<a name="id-1.3.4.11.15.5"></a><h4>Parameters</h4>
|
796
|
+
<div class="informaltable"><table width="100%" border="0">
|
797
|
+
<colgroup>
|
798
|
+
<col width="150px" class="parameters_name">
|
799
|
+
<col class="parameters_description">
|
800
|
+
<col width="200px" class="parameters_annotations">
|
801
|
+
</colgroup>
|
802
|
+
<tbody>
|
803
|
+
<tr>
|
804
|
+
<td class="parameter_name"><p>display</p></td>
|
805
|
+
<td class="parameter_description"><p>an X display</p></td>
|
806
|
+
<td class="parameter_annotations"> </td>
|
807
|
+
</tr>
|
808
|
+
<tr>
|
809
|
+
<td class="parameter_name"><p>screen</p></td>
|
810
|
+
<td class="parameter_description"><p>the index of the screen for <em class="parameter"><code>display</code></em>
|
811
|
+
to which rendering will be done</p></td>
|
812
|
+
<td class="parameter_annotations"> </td>
|
813
|
+
</tr>
|
814
|
+
</tbody>
|
815
|
+
</table></div>
|
816
|
+
</div>
|
817
|
+
<div class="refsect3">
|
818
|
+
<a name="id-1.3.4.11.15.6"></a><h4>Returns</h4>
|
819
|
+
<p> the newly created <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a>, which should
|
820
|
+
be freed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</p>
|
821
|
+
<p></p>
|
822
|
+
</div>
|
823
|
+
<p class="since">Since 1.8</p>
|
824
|
+
</div>
|
825
|
+
<hr>
|
826
|
+
<div class="refsect2">
|
827
|
+
<a name="pango-xft-renderer-set-draw"></a><h3>pango_xft_renderer_set_draw ()</h3>
|
828
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
829
|
+
pango_xft_renderer_set_draw (<em class="parameter"><code><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> *xftrenderer</code></em>,
|
830
|
+
<em class="parameter"><code><span class="type">XftDraw</span> *draw</code></em>);</pre>
|
831
|
+
<p>Sets the <span class="type">XftDraw</span> object that the renderer is drawing to.
|
832
|
+
The renderer must not be currently active.</p>
|
833
|
+
<div class="refsect3">
|
834
|
+
<a name="id-1.3.4.11.16.5"></a><h4>Parameters</h4>
|
835
|
+
<div class="informaltable"><table width="100%" border="0">
|
836
|
+
<colgroup>
|
837
|
+
<col width="150px" class="parameters_name">
|
838
|
+
<col class="parameters_description">
|
839
|
+
<col width="200px" class="parameters_annotations">
|
840
|
+
</colgroup>
|
841
|
+
<tbody>
|
842
|
+
<tr>
|
843
|
+
<td class="parameter_name"><p>xftrenderer</p></td>
|
844
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a></p></td>
|
845
|
+
<td class="parameter_annotations"> </td>
|
846
|
+
</tr>
|
847
|
+
<tr>
|
848
|
+
<td class="parameter_name"><p>draw</p></td>
|
849
|
+
<td class="parameter_description"><p>a <span class="type">XftDraw</span></p></td>
|
850
|
+
<td class="parameter_annotations"> </td>
|
851
|
+
</tr>
|
852
|
+
</tbody>
|
853
|
+
</table></div>
|
854
|
+
</div>
|
855
|
+
<p class="since">Since 1.8</p>
|
856
|
+
</div>
|
857
|
+
<hr>
|
858
|
+
<div class="refsect2">
|
859
|
+
<a name="pango-xft-renderer-set-default-color"></a><h3>pango_xft_renderer_set_default_color ()</h3>
|
860
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
861
|
+
pango_xft_renderer_set_default_color (<em class="parameter"><code><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> *xftrenderer</code></em>,
|
862
|
+
<em class="parameter"><code><a class="link" href="pango-Text-Attributes.html#PangoColor"><span class="type">PangoColor</span></a> *default_color</code></em>);</pre>
|
863
|
+
<p>Sets the default foreground color for a <span class="type">XftRenderer</span>.</p>
|
864
|
+
<div class="refsect3">
|
865
|
+
<a name="id-1.3.4.11.17.5"></a><h4>Parameters</h4>
|
866
|
+
<div class="informaltable"><table width="100%" border="0">
|
867
|
+
<colgroup>
|
868
|
+
<col width="150px" class="parameters_name">
|
869
|
+
<col class="parameters_description">
|
870
|
+
<col width="200px" class="parameters_annotations">
|
871
|
+
</colgroup>
|
872
|
+
<tbody>
|
873
|
+
<tr>
|
874
|
+
<td class="parameter_name"><p>xftrenderer</p></td>
|
875
|
+
<td class="parameter_description"><p>a <span class="type">XftRenderer</span></p></td>
|
876
|
+
<td class="parameter_annotations"> </td>
|
877
|
+
</tr>
|
878
|
+
<tr>
|
879
|
+
<td class="parameter_name"><p>default_color</p></td>
|
880
|
+
<td class="parameter_description"><p>the default foreground color</p></td>
|
881
|
+
<td class="parameter_annotations"> </td>
|
882
|
+
</tr>
|
883
|
+
</tbody>
|
884
|
+
</table></div>
|
885
|
+
</div>
|
886
|
+
<p class="since">Since 1.8</p>
|
887
|
+
</div>
|
888
|
+
<hr>
|
889
|
+
<div class="refsect2">
|
890
|
+
<a name="pango-xft-render"></a><h3>pango_xft_render ()</h3>
|
891
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
892
|
+
pango_xft_render (<em class="parameter"><code><span class="type">XftDraw</span> *draw</code></em>,
|
893
|
+
<em class="parameter"><code><span class="type">XftColor</span> *color</code></em>,
|
894
|
+
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
895
|
+
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>,
|
896
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
897
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
|
898
|
+
<p>Renders a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> onto an <span class="type">XftDraw</span> object wrapping an X drawable.</p>
|
899
|
+
<div class="refsect3">
|
900
|
+
<a name="id-1.3.4.11.18.5"></a><h4>Parameters</h4>
|
901
|
+
<div class="informaltable"><table width="100%" border="0">
|
902
|
+
<colgroup>
|
903
|
+
<col width="150px" class="parameters_name">
|
904
|
+
<col class="parameters_description">
|
905
|
+
<col width="200px" class="parameters_annotations">
|
906
|
+
</colgroup>
|
907
|
+
<tbody>
|
908
|
+
<tr>
|
909
|
+
<td class="parameter_name"><p>draw</p></td>
|
910
|
+
<td class="parameter_description"><p>the <span class="type">XftDraw</span> object.</p></td>
|
911
|
+
<td class="parameter_annotations"> </td>
|
912
|
+
</tr>
|
913
|
+
<tr>
|
914
|
+
<td class="parameter_name"><p>color</p></td>
|
915
|
+
<td class="parameter_description"><p>the color in which to draw the string</p></td>
|
916
|
+
<td class="parameter_annotations"> </td>
|
917
|
+
</tr>
|
918
|
+
<tr>
|
919
|
+
<td class="parameter_name"><p>font</p></td>
|
920
|
+
<td class="parameter_description"><p>the font in which to draw the string</p></td>
|
921
|
+
<td class="parameter_annotations"> </td>
|
922
|
+
</tr>
|
923
|
+
<tr>
|
924
|
+
<td class="parameter_name"><p>glyphs</p></td>
|
925
|
+
<td class="parameter_description"><p>the glyph string to draw</p></td>
|
926
|
+
<td class="parameter_annotations"> </td>
|
927
|
+
</tr>
|
928
|
+
<tr>
|
929
|
+
<td class="parameter_name"><p>x</p></td>
|
930
|
+
<td class="parameter_description"><p>the x position of start of string (in pixels)</p></td>
|
931
|
+
<td class="parameter_annotations"> </td>
|
932
|
+
</tr>
|
933
|
+
<tr>
|
934
|
+
<td class="parameter_name"><p>y</p></td>
|
935
|
+
<td class="parameter_description"><p>the y position of baseline (in pixels)</p></td>
|
936
|
+
<td class="parameter_annotations"> </td>
|
937
|
+
</tr>
|
938
|
+
</tbody>
|
939
|
+
</table></div>
|
940
|
+
</div>
|
941
|
+
</div>
|
942
|
+
<hr>
|
943
|
+
<div class="refsect2">
|
944
|
+
<a name="pango-xft-picture-render"></a><h3>pango_xft_picture_render ()</h3>
|
945
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
946
|
+
pango_xft_picture_render (<em class="parameter"><code><span class="type">Display</span> *display</code></em>,
|
947
|
+
<em class="parameter"><code><span class="type">Picture</span> src_picture</code></em>,
|
948
|
+
<em class="parameter"><code><span class="type">Picture</span> dest_picture</code></em>,
|
949
|
+
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
950
|
+
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>,
|
951
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
952
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
|
953
|
+
<p>Renders a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> onto an Xrender <span class="type">Picture</span> object.</p>
|
954
|
+
<div class="refsect3">
|
955
|
+
<a name="id-1.3.4.11.19.5"></a><h4>Parameters</h4>
|
956
|
+
<div class="informaltable"><table width="100%" border="0">
|
957
|
+
<colgroup>
|
958
|
+
<col width="150px" class="parameters_name">
|
959
|
+
<col class="parameters_description">
|
960
|
+
<col width="200px" class="parameters_annotations">
|
961
|
+
</colgroup>
|
962
|
+
<tbody>
|
963
|
+
<tr>
|
964
|
+
<td class="parameter_name"><p>display</p></td>
|
965
|
+
<td class="parameter_description"><p>an X display</p></td>
|
966
|
+
<td class="parameter_annotations"> </td>
|
967
|
+
</tr>
|
968
|
+
<tr>
|
969
|
+
<td class="parameter_name"><p>src_picture</p></td>
|
970
|
+
<td class="parameter_description"><p>the source picture to draw the string with</p></td>
|
971
|
+
<td class="parameter_annotations"> </td>
|
972
|
+
</tr>
|
973
|
+
<tr>
|
974
|
+
<td class="parameter_name"><p>dest_picture</p></td>
|
975
|
+
<td class="parameter_description"><p>the destination picture to draw the string onto</p></td>
|
976
|
+
<td class="parameter_annotations"> </td>
|
977
|
+
</tr>
|
978
|
+
<tr>
|
979
|
+
<td class="parameter_name"><p>font</p></td>
|
980
|
+
<td class="parameter_description"><p>the font in which to draw the string</p></td>
|
981
|
+
<td class="parameter_annotations"> </td>
|
982
|
+
</tr>
|
983
|
+
<tr>
|
984
|
+
<td class="parameter_name"><p>glyphs</p></td>
|
985
|
+
<td class="parameter_description"><p>the glyph string to draw</p></td>
|
986
|
+
<td class="parameter_annotations"> </td>
|
987
|
+
</tr>
|
988
|
+
<tr>
|
989
|
+
<td class="parameter_name"><p>x</p></td>
|
990
|
+
<td class="parameter_description"><p>the x position of start of string (in pixels)</p></td>
|
991
|
+
<td class="parameter_annotations"> </td>
|
992
|
+
</tr>
|
993
|
+
<tr>
|
994
|
+
<td class="parameter_name"><p>y</p></td>
|
995
|
+
<td class="parameter_description"><p>the y position of baseline (in pixels)</p></td>
|
996
|
+
<td class="parameter_annotations"> </td>
|
997
|
+
</tr>
|
998
|
+
</tbody>
|
999
|
+
</table></div>
|
1000
|
+
</div>
|
1001
|
+
</div>
|
1002
|
+
<hr>
|
1003
|
+
<div class="refsect2">
|
1004
|
+
<a name="pango-xft-render-transformed"></a><h3>pango_xft_render_transformed ()</h3>
|
1005
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1006
|
+
pango_xft_render_transformed (<em class="parameter"><code><span class="type">XftDraw</span> *draw</code></em>,
|
1007
|
+
<em class="parameter"><code><span class="type">XftColor</span> *color</code></em>,
|
1008
|
+
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoMatrix"><span class="type">PangoMatrix</span></a> *matrix</code></em>,
|
1009
|
+
<em class="parameter"><code><a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
|
1010
|
+
<em class="parameter"><code><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>,
|
1011
|
+
<em class="parameter"><code><span class="type">int</span> x</code></em>,
|
1012
|
+
<em class="parameter"><code><span class="type">int</span> y</code></em>);</pre>
|
1013
|
+
<p>Renders a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> onto a <span class="type">XftDraw</span>, possibly
|
1014
|
+
transforming the layed-out coordinates through a transformation
|
1015
|
+
matrix. Note that the transformation matrix for <em class="parameter"><code>font</code></em>
|
1016
|
+
is not
|
1017
|
+
changed, so to produce correct rendering results, the <em class="parameter"><code>font</code></em>
|
1018
|
+
|
1019
|
+
must have been loaded using a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> with an identical
|
1020
|
+
transformation matrix to that passed in to this function.</p>
|
1021
|
+
<div class="refsect3">
|
1022
|
+
<a name="id-1.3.4.11.20.5"></a><h4>Parameters</h4>
|
1023
|
+
<div class="informaltable"><table width="100%" border="0">
|
1024
|
+
<colgroup>
|
1025
|
+
<col width="150px" class="parameters_name">
|
1026
|
+
<col class="parameters_description">
|
1027
|
+
<col width="200px" class="parameters_annotations">
|
1028
|
+
</colgroup>
|
1029
|
+
<tbody>
|
1030
|
+
<tr>
|
1031
|
+
<td class="parameter_name"><p>draw</p></td>
|
1032
|
+
<td class="parameter_description"><p>an <span class="type">XftDraw</span></p></td>
|
1033
|
+
<td class="parameter_annotations"> </td>
|
1034
|
+
</tr>
|
1035
|
+
<tr>
|
1036
|
+
<td class="parameter_name"><p>color</p></td>
|
1037
|
+
<td class="parameter_description"><p>the color in which to draw the glyphs</p></td>
|
1038
|
+
<td class="parameter_annotations"> </td>
|
1039
|
+
</tr>
|
1040
|
+
<tr>
|
1041
|
+
<td class="parameter_name"><p>font</p></td>
|
1042
|
+
<td class="parameter_description"><p>the font in which to draw the string</p></td>
|
1043
|
+
<td class="parameter_annotations"> </td>
|
1044
|
+
</tr>
|
1045
|
+
<tr>
|
1046
|
+
<td class="parameter_name"><p>matrix</p></td>
|
1047
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix"><span class="type">PangoMatrix</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use an identity transformation</p></td>
|
1048
|
+
<td class="parameter_annotations"> </td>
|
1049
|
+
</tr>
|
1050
|
+
<tr>
|
1051
|
+
<td class="parameter_name"><p>glyphs</p></td>
|
1052
|
+
<td class="parameter_description"><p>the glyph string to draw</p></td>
|
1053
|
+
<td class="parameter_annotations"> </td>
|
1054
|
+
</tr>
|
1055
|
+
<tr>
|
1056
|
+
<td class="parameter_name"><p>x</p></td>
|
1057
|
+
<td class="parameter_description"><p>the x position of the start of the string (in Pango
|
1058
|
+
units in user space coordinates)</p></td>
|
1059
|
+
<td class="parameter_annotations"> </td>
|
1060
|
+
</tr>
|
1061
|
+
<tr>
|
1062
|
+
<td class="parameter_name"><p>y</p></td>
|
1063
|
+
<td class="parameter_description"><p>the y position of the baseline (in Pango units
|
1064
|
+
in user space coordinates)</p></td>
|
1065
|
+
<td class="parameter_annotations"> </td>
|
1066
|
+
</tr>
|
1067
|
+
</tbody>
|
1068
|
+
</table></div>
|
1069
|
+
</div>
|
1070
|
+
<p class="since">Since 1.8</p>
|
1071
|
+
</div>
|
1072
|
+
<hr>
|
1073
|
+
<div class="refsect2">
|
1074
|
+
<a name="pango-xft-render-layout-line"></a><h3>pango_xft_render_layout_line ()</h3>
|
1075
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1076
|
+
pango_xft_render_layout_line (<em class="parameter"><code><span class="type">XftDraw</span> *draw</code></em>,
|
1077
|
+
<em class="parameter"><code><span class="type">XftColor</span> *color</code></em>,
|
1078
|
+
<em class="parameter"><code><a class="link" href="pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a> *line</code></em>,
|
1079
|
+
<em class="parameter"><code><span class="type">int</span> x</code></em>,
|
1080
|
+
<em class="parameter"><code><span class="type">int</span> y</code></em>);</pre>
|
1081
|
+
<p>Render a <a class="link" href="pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a> onto a <span class="type">XftDraw</span></p>
|
1082
|
+
<div class="refsect3">
|
1083
|
+
<a name="id-1.3.4.11.21.5"></a><h4>Parameters</h4>
|
1084
|
+
<div class="informaltable"><table width="100%" border="0">
|
1085
|
+
<colgroup>
|
1086
|
+
<col width="150px" class="parameters_name">
|
1087
|
+
<col class="parameters_description">
|
1088
|
+
<col width="200px" class="parameters_annotations">
|
1089
|
+
</colgroup>
|
1090
|
+
<tbody>
|
1091
|
+
<tr>
|
1092
|
+
<td class="parameter_name"><p>draw</p></td>
|
1093
|
+
<td class="parameter_description"><p>an <span class="type">XftDraw</span></p></td>
|
1094
|
+
<td class="parameter_annotations"> </td>
|
1095
|
+
</tr>
|
1096
|
+
<tr>
|
1097
|
+
<td class="parameter_name"><p>color</p></td>
|
1098
|
+
<td class="parameter_description"><p>the foreground color in which to draw the layout line
|
1099
|
+
(may be overridden by color attributes)</p></td>
|
1100
|
+
<td class="parameter_annotations"> </td>
|
1101
|
+
</tr>
|
1102
|
+
<tr>
|
1103
|
+
<td class="parameter_name"><p>line</p></td>
|
1104
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a></p></td>
|
1105
|
+
<td class="parameter_annotations"> </td>
|
1106
|
+
</tr>
|
1107
|
+
<tr>
|
1108
|
+
<td class="parameter_name"><p>x</p></td>
|
1109
|
+
<td class="parameter_description"><p>the x position of start of string (in Pango units)</p></td>
|
1110
|
+
<td class="parameter_annotations"> </td>
|
1111
|
+
</tr>
|
1112
|
+
<tr>
|
1113
|
+
<td class="parameter_name"><p>y</p></td>
|
1114
|
+
<td class="parameter_description"><p>the y position of baseline (in Pango units)</p></td>
|
1115
|
+
<td class="parameter_annotations"> </td>
|
1116
|
+
</tr>
|
1117
|
+
</tbody>
|
1118
|
+
</table></div>
|
1119
|
+
</div>
|
1120
|
+
<p class="since">Since 1.8</p>
|
1121
|
+
</div>
|
1122
|
+
<hr>
|
1123
|
+
<div class="refsect2">
|
1124
|
+
<a name="pango-xft-render-layout"></a><h3>pango_xft_render_layout ()</h3>
|
1125
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1126
|
+
pango_xft_render_layout (<em class="parameter"><code><span class="type">XftDraw</span> *draw</code></em>,
|
1127
|
+
<em class="parameter"><code><span class="type">XftColor</span> *color</code></em>,
|
1128
|
+
<em class="parameter"><code><a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> *layout</code></em>,
|
1129
|
+
<em class="parameter"><code><span class="type">int</span> x</code></em>,
|
1130
|
+
<em class="parameter"><code><span class="type">int</span> y</code></em>);</pre>
|
1131
|
+
<p>Render a <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> onto a <span class="type">XftDraw</span></p>
|
1132
|
+
<div class="refsect3">
|
1133
|
+
<a name="id-1.3.4.11.22.5"></a><h4>Parameters</h4>
|
1134
|
+
<div class="informaltable"><table width="100%" border="0">
|
1135
|
+
<colgroup>
|
1136
|
+
<col width="150px" class="parameters_name">
|
1137
|
+
<col class="parameters_description">
|
1138
|
+
<col width="200px" class="parameters_annotations">
|
1139
|
+
</colgroup>
|
1140
|
+
<tbody>
|
1141
|
+
<tr>
|
1142
|
+
<td class="parameter_name"><p>draw</p></td>
|
1143
|
+
<td class="parameter_description"><p>an <span class="type">XftDraw</span></p></td>
|
1144
|
+
<td class="parameter_annotations"> </td>
|
1145
|
+
</tr>
|
1146
|
+
<tr>
|
1147
|
+
<td class="parameter_name"><p>color</p></td>
|
1148
|
+
<td class="parameter_description"><p>the foreground color in which to draw the layout
|
1149
|
+
(may be overridden by color attributes)</p></td>
|
1150
|
+
<td class="parameter_annotations"> </td>
|
1151
|
+
</tr>
|
1152
|
+
<tr>
|
1153
|
+
<td class="parameter_name"><p>layout</p></td>
|
1154
|
+
<td class="parameter_description"><p>a <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a></p></td>
|
1155
|
+
<td class="parameter_annotations"> </td>
|
1156
|
+
</tr>
|
1157
|
+
<tr>
|
1158
|
+
<td class="parameter_name"><p>x</p></td>
|
1159
|
+
<td class="parameter_description"><p>the X position of the left of the layout (in Pango units)</p></td>
|
1160
|
+
<td class="parameter_annotations"> </td>
|
1161
|
+
</tr>
|
1162
|
+
<tr>
|
1163
|
+
<td class="parameter_name"><p>y</p></td>
|
1164
|
+
<td class="parameter_description"><p>the Y position of the top of the layout (in Pango units)</p></td>
|
1165
|
+
<td class="parameter_annotations"> </td>
|
1166
|
+
</tr>
|
1167
|
+
</tbody>
|
1168
|
+
</table></div>
|
1169
|
+
</div>
|
1170
|
+
<p class="since">Since 1.8</p>
|
1171
|
+
</div>
|
1172
|
+
</div>
|
1173
|
+
<div class="refsect1">
|
1174
|
+
<a name="pango-Xft-Fonts-and-Rendering.other_details"></a><h2>Types and Values</h2>
|
1175
|
+
<div class="refsect2">
|
1176
|
+
<a name="PangoXftFont-struct"></a><h3>PangoXftFont</h3>
|
1177
|
+
<pre class="programlisting">typedef struct _PangoXftFont PangoXftFont;</pre>
|
1178
|
+
<p><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFont"><span class="type">PangoXftFont</span></a> is an implementation of <a class="link" href="PangoFcFont.html" title="PangoFcFont"><span class="type">PangoFcFont</span></a> using the Xft
|
1179
|
+
library for rendering. It is used in conjunction with <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFontMap"><span class="type">PangoXftFontMap</span></a>.</p>
|
1180
|
+
</div>
|
1181
|
+
<hr>
|
1182
|
+
<div class="refsect2">
|
1183
|
+
<a name="PangoXftFontMap-struct"></a><h3>PangoXftFontMap</h3>
|
1184
|
+
<pre class="programlisting">typedef struct _PangoXftFontMap PangoXftFontMap;</pre>
|
1185
|
+
<p><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFontMap"><span class="type">PangoXftFontMap</span></a> is an implementation of <a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap"><span class="type">PangoFcFontMap</span></a> suitable for
|
1186
|
+
the Xft library as the renderer. It is used in to create fonts of
|
1187
|
+
type <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftFont"><span class="type">PangoXftFont</span></a>.</p>
|
1188
|
+
</div>
|
1189
|
+
<hr>
|
1190
|
+
<div class="refsect2">
|
1191
|
+
<a name="PANGO-RENDER-TYPE-XFT:CAPS"></a><h3>PANGO_RENDER_TYPE_XFT</h3>
|
1192
|
+
<pre class="programlisting">#define PANGO_RENDER_TYPE_XFT "PangoRenderXft"
|
1193
|
+
</pre>
|
1194
|
+
<div class="warning"><p><code class="literal">PANGO_RENDER_TYPE_XFT</code> is deprecated and should not be used in newly-written code.</p></div>
|
1195
|
+
<p>A string constant that was used to identify shape engines that work
|
1196
|
+
with the Xft backend. See <a class="link" href="PangoFcFont.html#PANGO-RENDER-TYPE-FC:CAPS" title="PANGO_RENDER_TYPE_FC"><code class="literal">PANGO_RENDER_TYPE_FC</code></a> for the replacement.</p>
|
1197
|
+
</div>
|
1198
|
+
<hr>
|
1199
|
+
<div class="refsect2">
|
1200
|
+
<a name="PangoXftRenderer-struct"></a><h3>struct PangoXftRenderer</h3>
|
1201
|
+
<pre class="programlisting">struct PangoXftRenderer;</pre>
|
1202
|
+
<p><a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a> is a subclass of <a class="link" href="PangoRenderer.html" title="PangoRenderer"><span class="type">PangoRenderer</span></a> used for rendering
|
1203
|
+
with Pango's Xft backend. It can be used directly, or it can be
|
1204
|
+
further subclassed to modify exactly how drawing of individual
|
1205
|
+
elements occurs.</p>
|
1206
|
+
<p class="since">Since 1.8</p>
|
1207
|
+
</div>
|
1208
|
+
<hr>
|
1209
|
+
<div class="refsect2">
|
1210
|
+
<a name="PangoXftRendererClass"></a><h3>struct PangoXftRendererClass</h3>
|
1211
|
+
<pre class="programlisting">struct PangoXftRendererClass {
|
1212
|
+
void (*composite_trapezoids) (PangoXftRenderer *xftrenderer,
|
1213
|
+
PangoRenderPart part,
|
1214
|
+
XTrapezoid *trapezoids,
|
1215
|
+
int n_trapezoids);
|
1216
|
+
void (*composite_glyphs) (PangoXftRenderer *xftrenderer,
|
1217
|
+
XftFont *xft_font,
|
1218
|
+
XftGlyphSpec *glyphs,
|
1219
|
+
int n_glyphs);
|
1220
|
+
};
|
1221
|
+
</pre>
|
1222
|
+
<p>The class structure for <a class="link" href="pango-Xft-Fonts-and-Rendering.html#PangoXftRenderer"><span class="type">PangoXftRenderer</span></a></p>
|
1223
|
+
<div class="refsect3">
|
1224
|
+
<a name="id-1.3.4.12.6.5"></a><h4>Members</h4>
|
1225
|
+
<div class="informaltable"><table width="100%" border="0">
|
1226
|
+
<colgroup>
|
1227
|
+
<col width="300px" class="struct_members_name">
|
1228
|
+
<col class="struct_members_description">
|
1229
|
+
<col width="200px" class="struct_members_annotations">
|
1230
|
+
</colgroup>
|
1231
|
+
<tbody>
|
1232
|
+
<tr>
|
1233
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="PangoXftRendererClass.composite-trapezoids"></a>composite_trapezoids</code></em> ()</p></td>
|
1234
|
+
<td class="struct_member_description"><p>draw the specified trapezoids using
|
1235
|
+
the current color and other attributes for <em class="parameter"><code>part</code></em>
|
1236
|
+
</p></td>
|
1237
|
+
<td class="struct_member_annotations"> </td>
|
1238
|
+
</tr>
|
1239
|
+
<tr>
|
1240
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="PangoXftRendererClass.composite-glyphs"></a>composite_glyphs</code></em> ()</p></td>
|
1241
|
+
<td class="struct_member_description"><p>draw the specified glyphs using
|
1242
|
+
the current foreground color and other foreground
|
1243
|
+
attributes</p></td>
|
1244
|
+
<td class="struct_member_annotations"> </td>
|
1245
|
+
</tr>
|
1246
|
+
</tbody>
|
1247
|
+
</table></div>
|
1248
|
+
</div>
|
1249
|
+
<p class="since">Since 1.8</p>
|
1250
|
+
</div>
|
1251
|
+
</div>
|
1252
|
+
<div class="refsect1">
|
1253
|
+
<a name="pango-Xft-Fonts-and-Rendering.property-details"></a><h2>Property Details</h2>
|
1254
|
+
<div class="refsect2">
|
1255
|
+
<a name="PangoXftRenderer--display"></a><h3>The <code class="literal">“display”</code> property</h3>
|
1256
|
+
<pre class="programlisting"> “display” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a></pre>
|
1257
|
+
<p>The display being rendered to.</p>
|
1258
|
+
<p>Flags: Write / Construct Only</p>
|
1259
|
+
</div>
|
1260
|
+
<hr>
|
1261
|
+
<div class="refsect2">
|
1262
|
+
<a name="PangoXftRenderer--screen"></a><h3>The <code class="literal">“screen”</code> property</h3>
|
1263
|
+
<pre class="programlisting"> “screen” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
|
1264
|
+
<p>The screen being rendered to.</p>
|
1265
|
+
<p>Flags: Write / Construct Only</p>
|
1266
|
+
<p>Allowed values: >= 0</p>
|
1267
|
+
<p>Default value: 0</p>
|
1268
|
+
</div>
|
1269
|
+
</div>
|
1270
|
+
</div>
|
1271
|
+
<div class="footer">
|
1272
|
+
<hr>
|
1273
|
+
Generated by GTK-Doc V1.21.1</div>
|
1274
|
+
</body>
|
1275
|
+
</html>
|