pango 0.90.2-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +678 -0
- data/README +33 -0
- data/Rakefile +83 -0
- data/ext/pango/Makefile +172 -0
- data/ext/pango/depend +7 -0
- data/ext/pango/extconf.rb +75 -0
- data/ext/pango/pango.def +18 -0
- data/ext/pango/rbpango.c +27 -0
- data/ext/pango/rbpango.h +93 -0
- data/ext/pango/rbpangoanalysis.c +197 -0
- data/ext/pango/rbpangoattribute.c +557 -0
- data/ext/pango/rbpangoattriterator.c +137 -0
- data/ext/pango/rbpangoattrlist.c +104 -0
- data/ext/pango/rbpangocairo.c +229 -0
- data/ext/pango/rbpangocolor.c +121 -0
- data/ext/pango/rbpangocontext.c +341 -0
- data/ext/pango/rbpangocoverage.c +104 -0
- data/ext/pango/rbpangoengine.c +65 -0
- data/ext/pango/rbpangofont.c +123 -0
- data/ext/pango/rbpangofontdescription.c +300 -0
- data/ext/pango/rbpangofontface.c +71 -0
- data/ext/pango/rbpangofontfamily.c +74 -0
- data/ext/pango/rbpangofontmap.c +104 -0
- data/ext/pango/rbpangofontmetrics.c +85 -0
- data/ext/pango/rbpangofontset.c +68 -0
- data/ext/pango/rbpangofontsetsimple.c +53 -0
- data/ext/pango/rbpangoglyphinfo.c +119 -0
- data/ext/pango/rbpangoglyphitem.c +129 -0
- data/ext/pango/rbpangoglyphstring.c +162 -0
- data/ext/pango/rbpangogravity.c +43 -0
- data/ext/pango/rbpangoinits.c +71 -0
- data/ext/pango/rbpangoitem.c +110 -0
- data/ext/pango/rbpangolanguage.c +88 -0
- data/ext/pango/rbpangolayout.c +593 -0
- data/ext/pango/rbpangolayoutiter.c +202 -0
- data/ext/pango/rbpangolayoutline.c +256 -0
- data/ext/pango/rbpangologattr.c +107 -0
- data/ext/pango/rbpangomain.c +213 -0
- data/ext/pango/rbpangomatrix.c +155 -0
- data/ext/pango/rbpangorectangle.c +178 -0
- data/ext/pango/rbpangorenderer.c +204 -0
- data/ext/pango/rbpangoscript.c +80 -0
- data/ext/pango/rbpangoscriptiter.c +91 -0
- data/ext/pango/rbpangotabarray.c +128 -0
- data/ext/pango/rbpangoversion.h +24 -0
- data/extconf.rb +49 -0
- data/lib/1.8/pango.so +0 -0
- data/lib/1.9/pango.so +0 -0
- data/lib/pango.rb +70 -0
- data/sample/attribute.rb +82 -0
- data/sample/break.rb +26 -0
- data/sample/gdk_layout.rb +27 -0
- data/sample/glyphstring.rb +61 -0
- data/sample/item.rb +35 -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 +21 -0
- data/test/pango-test-utils.rb +9 -0
- data/test/run-test.rb +28 -0
- data/test/test-attribute.rb +19 -0
- data/test/test-language.rb +7 -0
- data/test/test_layout.rb +20 -0
- data/vendor/local/bin/envsubst.exe +0 -0
- data/vendor/local/bin/fc-cache.exe +0 -0
- data/vendor/local/bin/fc-cat.exe +0 -0
- data/vendor/local/bin/fc-list.exe +0 -0
- data/vendor/local/bin/freetype-config +160 -0
- data/vendor/local/bin/freetype6.dll +0 -0
- data/vendor/local/bin/gettext.exe +0 -0
- data/vendor/local/bin/gettext.sh +123 -0
- data/vendor/local/bin/glib-genmarshal.exe +0 -0
- data/vendor/local/bin/glib-gettextize +188 -0
- data/vendor/local/bin/glib-mkenums +511 -0
- data/vendor/local/bin/gobject-query.exe +0 -0
- data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
- data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
- data/vendor/local/bin/intl.dll +0 -0
- data/vendor/local/bin/libasprintf-0.dll +0 -0
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libexpat-1.dll +0 -0
- data/vendor/local/bin/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
- data/vendor/local/bin/libgio-2.0-0.dll +0 -0
- data/vendor/local/bin/libglib-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
- data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
- data/vendor/local/bin/libgthread-2.0-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/libpng14-14.dll +0 -0
- data/vendor/local/bin/ngettext.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/xmlwf.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/fonts/fonts.conf +151 -0
- data/vendor/local/etc/fonts/fonts.dtd +224 -0
- data/vendor/local/etc/pango/pango.modules +5 -0
- data/vendor/local/include/autosprintf.h +66 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +123 -0
- data/vendor/local/include/cairo/cairo-features.h +27 -0
- data/vendor/local/include/cairo/cairo-ft.h +82 -0
- data/vendor/local/include/cairo/cairo-gobject.h +186 -0
- data/vendor/local/include/cairo/cairo-pdf.h +94 -0
- data/vendor/local/include/cairo/cairo-ps.h +114 -0
- data/vendor/local/include/cairo/cairo-script-interpreter.h +117 -0
- data/vendor/local/include/cairo/cairo-svg.h +82 -0
- data/vendor/local/include/cairo/cairo-version.h +8 -0
- data/vendor/local/include/cairo/cairo-win32.h +112 -0
- data/vendor/local/include/cairo/cairo.h +2684 -0
- data/vendor/local/include/expat.h +1014 -0
- data/vendor/local/include/expat_external.h +115 -0
- data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
- data/vendor/local/include/fontconfig/fcprivate.h +123 -0
- data/vendor/local/include/fontconfig/fontconfig.h +963 -0
- data/vendor/local/include/freetype2/freetype/config/ftconfig.h +477 -0
- data/vendor/local/include/freetype2/freetype/config/ftheader.h +780 -0
- data/vendor/local/include/freetype2/freetype/config/ftmodule.h +20 -0
- data/vendor/local/include/freetype2/freetype/config/ftoption.h +733 -0
- data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +173 -0
- data/vendor/local/include/freetype2/freetype/freetype.h +3919 -0
- data/vendor/local/include/freetype2/freetype/ftadvanc.h +179 -0
- data/vendor/local/include/freetype2/freetype/ftbbox.h +94 -0
- data/vendor/local/include/freetype2/freetype/ftbdf.h +209 -0
- data/vendor/local/include/freetype2/freetype/ftbitmap.h +227 -0
- data/vendor/local/include/freetype2/freetype/ftcache.h +1125 -0
- data/vendor/local/include/freetype2/freetype/ftchapters.h +103 -0
- data/vendor/local/include/freetype2/freetype/ftcid.h +166 -0
- data/vendor/local/include/freetype2/freetype/fterrdef.h +244 -0
- data/vendor/local/include/freetype2/freetype/fterrors.h +206 -0
- data/vendor/local/include/freetype2/freetype/ftgasp.h +120 -0
- data/vendor/local/include/freetype2/freetype/ftglyph.h +613 -0
- data/vendor/local/include/freetype2/freetype/ftgxval.h +358 -0
- data/vendor/local/include/freetype2/freetype/ftgzip.h +102 -0
- data/vendor/local/include/freetype2/freetype/ftimage.h +1301 -0
- data/vendor/local/include/freetype2/freetype/ftincrem.h +353 -0
- data/vendor/local/include/freetype2/freetype/ftlcdfil.h +213 -0
- data/vendor/local/include/freetype2/freetype/ftlist.h +277 -0
- data/vendor/local/include/freetype2/freetype/ftlzw.h +99 -0
- data/vendor/local/include/freetype2/freetype/ftmac.h +274 -0
- data/vendor/local/include/freetype2/freetype/ftmm.h +378 -0
- data/vendor/local/include/freetype2/freetype/ftmodapi.h +483 -0
- data/vendor/local/include/freetype2/freetype/ftmoderr.h +155 -0
- data/vendor/local/include/freetype2/freetype/ftotval.h +203 -0
- data/vendor/local/include/freetype2/freetype/ftoutln.h +537 -0
- data/vendor/local/include/freetype2/freetype/ftpfr.h +172 -0
- data/vendor/local/include/freetype2/freetype/ftrender.h +230 -0
- data/vendor/local/include/freetype2/freetype/ftsizes.h +159 -0
- data/vendor/local/include/freetype2/freetype/ftsnames.h +200 -0
- data/vendor/local/include/freetype2/freetype/ftstroke.h +716 -0
- data/vendor/local/include/freetype2/freetype/ftsynth.h +80 -0
- data/vendor/local/include/freetype2/freetype/ftsystem.h +347 -0
- data/vendor/local/include/freetype2/freetype/fttrigon.h +350 -0
- data/vendor/local/include/freetype2/freetype/fttypes.h +588 -0
- data/vendor/local/include/freetype2/freetype/ftwinfnt.h +274 -0
- data/vendor/local/include/freetype2/freetype/ftxf86.h +83 -0
- data/vendor/local/include/freetype2/freetype/t1tables.h +504 -0
- data/vendor/local/include/freetype2/freetype/ttnameid.h +1247 -0
- data/vendor/local/include/freetype2/freetype/tttables.h +759 -0
- data/vendor/local/include/freetype2/freetype/tttags.h +107 -0
- data/vendor/local/include/freetype2/freetype/ttunpat.h +59 -0
- data/vendor/local/include/ft2build.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gappinfo.h +237 -0
- data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
- data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
- data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
- data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +116 -0
- data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
- data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
- data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
- data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +951 -0
- data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
- data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
- data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
- data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
- data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
- data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
- data/vendor/local/include/glib-2.0/gio/gio.h +101 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +703 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +48 -0
- data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
- data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
- data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
- data/vendor/local/include/glib-2.0/gio/giotypes.h +339 -0
- data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
- data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +69 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
- data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +176 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
- data/vendor/local/include/glib-2.0/gio/gsocketclient.h +130 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
- data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
- data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
- data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
- data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
- data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +151 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +55 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +54 -0
- data/vendor/local/include/glib-2.0/glib-object.h +41 -0
- data/vendor/local/include/glib-2.0/glib.h +97 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +63 -0
- data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
- data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gatomic.h +85 -0
- data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
- data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +191 -0
- data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
- data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
- data/vendor/local/include/glib-2.0/glib/gcompletion.h +77 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +138 -0
- data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
- data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
- data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
- data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
- data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
- data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
- data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
- data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
- data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
- data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
- data/vendor/local/include/glib-2.0/glib/gkeyfile.h +250 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +277 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +304 -0
- data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
- data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
- data/vendor/local/include/glib-2.0/glib/gmem.h +203 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +288 -0
- data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
- data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
- data/vendor/local/include/glib-2.0/glib/gpoll.h +93 -0
- data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
- data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
- data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
- data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
- data/vendor/local/include/glib-2.0/glib/gregex.h +243 -0
- data/vendor/local/include/glib-2.0/glib/grel.h +97 -0
- data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
- data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
- data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
- data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
- data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
- data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
- data/vendor/local/include/glib-2.0/glib/gstdio.h +159 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +267 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +292 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +408 -0
- data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
- data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
- data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
- data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
- data/vendor/local/include/glib-2.0/glib/gunicode.h +404 -0
- data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
- data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
- data/vendor/local/include/glib-2.0/glib/gvariant.h +224 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +305 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
- data/vendor/local/include/glib-2.0/gmodule.h +101 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +236 -0
- data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
- data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
- data/vendor/local/include/glib-2.0/gobject/gmarshal.h +169 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +562 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +166 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +410 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1083 -0
- data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
- data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
- data/vendor/local/include/glib-2.0/gobject/gtype.h +1608 -0
- data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
- data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
- data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +222 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +243 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/include/libpng14/png.h +2701 -0
- data/vendor/local/include/libpng14/pngconf.h +1525 -0
- data/vendor/local/include/pango-1.0/pango/pango-attributes.h +280 -0
- data/vendor/local/include/pango-1.0/pango/pango-bidi-type.h +135 -0
- data/vendor/local/include/pango-1.0/pango/pango-break.h +120 -0
- data/vendor/local/include/pango-1.0/pango/pango-context.h +111 -0
- data/vendor/local/include/pango-1.0/pango/pango-coverage.h +58 -0
- data/vendor/local/include/pango-1.0/pango/pango-engine.h +381 -0
- data/vendor/local/include/pango-1.0/pango/pango-enum-types.h +60 -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 +386 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontmap.h +96 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontset.h +127 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph-item.h +94 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph.h +135 -0
- data/vendor/local/include/pango-1.0/pango/pango-gravity.h +114 -0
- data/vendor/local/include/pango-1.0/pango/pango-item.h +72 -0
- data/vendor/local/include/pango-1.0/pango/pango-language.h +56 -0
- data/vendor/local/include/pango-1.0/pango/pango-layout.h +291 -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 +60 -0
- data/vendor/local/include/pango-1.0/pango/pango-ot.h +197 -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 +144 -0
- data/vendor/local/include/pango-1.0/pango/pango-tabs.h +76 -0
- data/vendor/local/include/pango-1.0/pango/pango-types.h +100 -0
- data/vendor/local/include/pango-1.0/pango/pango-utils.h +143 -0
- data/vendor/local/include/pango-1.0/pango/pango.h +48 -0
- data/vendor/local/include/pango-1.0/pango/pangocairo.h +154 -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 +151 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +270 -0
- data/vendor/local/include/pango-1.0/pango/pangoft2.h +112 -0
- data/vendor/local/include/pango-1.0/pango/pangowin32.h +120 -0
- data/vendor/local/include/png.h +2701 -0
- data/vendor/local/include/pngconf.h +1525 -0
- data/vendor/local/include/zconf.h +461 -0
- data/vendor/local/include/zlib.h +1589 -0
- data/vendor/local/lib/GNU.Gettext.dll +0 -0
- data/vendor/local/lib/cairo.def +322 -0
- data/vendor/local/lib/cairo.lib +0 -0
- data/vendor/local/lib/expat.lib +0 -0
- data/vendor/local/lib/fontconfig.def +195 -0
- data/vendor/local/lib/fontconfig.lib +0 -0
- data/vendor/local/lib/freetype.def +186 -0
- data/vendor/local/lib/freetype.lib +0 -0
- data/vendor/local/lib/gio-2.0.def +800 -0
- data/vendor/local/lib/gio-2.0.lib +0 -0
- data/vendor/local/lib/glib-2.0.def +1381 -0
- data/vendor/local/lib/glib-2.0.lib +0 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
- data/vendor/local/lib/gmodule-2.0.def +11 -0
- data/vendor/local/lib/gmodule-2.0.lib +0 -0
- data/vendor/local/lib/gobject-2.0.def +349 -0
- data/vendor/local/lib/gobject-2.0.lib +0 -0
- data/vendor/local/lib/gthread-2.0.def +3 -0
- data/vendor/local/lib/gthread-2.0.lib +0 -0
- data/vendor/local/lib/intl.lib +0 -0
- data/vendor/local/lib/libasprintf.dll.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libexpat.def +73 -0
- data/vendor/local/lib/libexpat.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libgio-2.0.dll.a +0 -0
- data/vendor/local/lib/libglib-2.0.dll.a +0 -0
- data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
- data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
- data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
- data/vendor/local/lib/libintl.def +31 -0
- data/vendor/local/lib/libintl.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
- data/vendor/local/lib/libpng.def +192 -0
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng14.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pango-1.0.def +395 -0
- data/vendor/local/lib/pango-1.0.lib +0 -0
- data/vendor/local/lib/pangocairo-1.0.def +34 -0
- data/vendor/local/lib/pangocairo-1.0.lib +0 -0
- data/vendor/local/lib/pangoft2-1.0.def +85 -0
- data/vendor/local/lib/pangoft2-1.0.lib +0 -0
- data/vendor/local/lib/pangowin32-1.0.def +30 -0
- data/vendor/local/lib/pangowin32-1.0.lib +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-png.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo.pc +13 -0
- data/vendor/local/lib/pkgconfig/fontconfig.pc +11 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +12 -0
- data/vendor/local/lib/pkgconfig/gio-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng14.pc +11 -0
- data/vendor/local/lib/pkgconfig/pango.pc +13 -0
- data/vendor/local/lib/pkgconfig/pangocairo.pc +11 -0
- data/vendor/local/lib/pkgconfig/pangoft2.pc +11 -0
- data/vendor/local/lib/pkgconfig/pangowin32.pc +11 -0
- data/vendor/local/lib/zdll.lib +0 -0
- data/vendor/local/lib/zlib.def +67 -0
- data/vendor/local/man/man1/xmlwf.1 +251 -0
- data/vendor/local/manifest/cairo-dev_1.10.0-1_win32.mft +83 -0
- data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +5 -0
- data/vendor/local/manifest/expat-dev_2.0.1-1_win32.mft +10 -0
- data/vendor/local/manifest/expat_2.0.1-1_win32.mft +2 -0
- data/vendor/local/manifest/fontconfig-dev_2.8.0-2_win32.mft +387 -0
- data/vendor/local/manifest/fontconfig_2.8.0-2_win32.mft +3 -0
- data/vendor/local/manifest/freetype-dev_2.4.2-1_win32.mft +56 -0
- data/vendor/local/manifest/freetype_2.4.2-1_win32.mft +2 -0
- data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
- data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
- data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
- data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
- data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +15 -0
- data/vendor/local/manifest/libpng_1.4.3-1_win32.mft +2 -0
- data/vendor/local/manifest/pango-dev_1.28.1-2_win32.mft +116 -0
- data/vendor/local/manifest/pango_1.28.1-2_win32.mft +8 -0
- data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +8 -0
- data/vendor/local/manifest/zlib_1.2.5-2_win32.mft +2 -0
- data/vendor/local/share/aclocal/freetype2.m4 +194 -0
- data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
- data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
- data/vendor/local/share/doc/cairo_1.10.0-1_win32/COPYING +33 -0
- data/vendor/local/share/doc/cairo_1.10.0-1_win32/COPYING-LGPL-2.1 +510 -0
- data/vendor/local/share/doc/cairo_1.10.0-1_win32/COPYING-MPL-1.1 +470 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel.pdf +42484 -4
- data/vendor/local/share/doc/fontconfig/fontconfig-devel.txt +5046 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiccreate.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdeletenew.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdestroy.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiclock.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicnewfile.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicorigfile.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicreplaceorig.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicunlock.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksadd.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblankscreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksdestroy.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksismember.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachecopyset.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachedir.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumfont.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumsubdir.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachesubdir.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetaddchar.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcopy.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcount.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcoverage.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcreate.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetdestroy.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetequal.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetfirstpage.html +238 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsethaschar.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersect.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersectcount.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetissubset.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetmerge.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnew.html +208 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnextpage.html +243 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtract.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtractcount.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetunion.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontadddir.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontaddfile.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontclear.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigbuildfonts.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigdestroy.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigenablehome.html +230 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigfilename.html +237 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetblanks.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcache.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcachedirs.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigdirs.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigfiles.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcurrent.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfontdirs.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfonts.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetrescaninterval.html +230 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfighome.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigparseandload.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigreference.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetcurrent.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetrescaninterval.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitute.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitutewithpat.html +251 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiguptodate.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdefaultsubstitute.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheload.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheloadfile.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheread.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunlink.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunload.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircachevalid.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirsave.html +245 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirscan.html +266 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfileisdir.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfilescan.html +276 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfini.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontlist.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontmatch.html +262 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontrenderprepare.html +259 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetadd.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetdestroy.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetlist.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetmatch.html +273 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetprint.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsort.html +303 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsortdestroy.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsort.html +289 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharindex.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharset.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharsetandspacing.html +241 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequery.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequeryface.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetlangs.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetversion.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinit.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitbringuptodate.html +208 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfig.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfigandfonts.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitreinitialize.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcislower.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcisupper.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclanggetcharset.html +205 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetadd.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcompare.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcontains.html +259 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcopy.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcreate.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetdestroy.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetequal.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetgetlangs.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethash.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethaslang.html +255 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixcopy.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixequal.html +236 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixinit.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixmultiply.html +246 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixrotate.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixscale.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixshear.html +250 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameconstant.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetconstant.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetobjecttype.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameparse.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterconstants.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterobjecttypes.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunparse.html +218 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterconstants.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterobjecttypes.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetadd.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetbuild.html +262 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetdestroy.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd-type.html +404 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd.html +240 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternaddweak.html +242 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternbuild.html +313 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterncreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndel.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndestroy.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternduplicate.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequal.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequalsubset.html +242 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternfilter.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternformat.html +602 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget-type.html +435 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternhash.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternprint.html +218 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternreference.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternremove.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrbasename.html +212 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmp.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmpignorecase.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopy.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopyfilename.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdirname.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdowncase.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrfree.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistcreate.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistdone.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistnext.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrplus.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetadd.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetaddfilename.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdel.html +237 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdestroy.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetequal.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetmember.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstr.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstrignorecase.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fctolower.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcucs4toutf8.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16len.html +278 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16toucs4.html +265 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8len.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8toucs4.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluedestroy.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueequal.html +212 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueprint.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluesave.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/ln12.html +128 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/t1.html +133 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x102.html +1463 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x19.html +264 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x31.html +590 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.html +1352 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.pdf +0 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.txt +644 -0
- data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
- data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
- data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
- data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
- data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
- data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
- data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
- data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
- data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
- data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
- data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
- data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/doc/pango-1.28.1/COPYING +482 -0
- data/vendor/local/share/doc/pango-dev-1.28.1/COPYING +482 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +252 -0
- data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
- data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
- data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +277 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +122 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +123 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +121 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +117 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +62 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +120 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +92 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +93 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +373 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +330 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +478 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +344 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +320 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +622 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +134 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +210 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +834 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +318 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +169 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +715 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +335 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +470 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +595 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +384 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +644 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +574 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +1457 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +1076 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1396 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2743 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +50 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +44 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +62 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +1175 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +473 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +641 -0
- data/vendor/local/share/gtk-doc/html/cairo/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +147 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +164 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +134 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +82 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +108 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +956 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.html +141 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +708 -0
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +73 -0
- data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/style.css +265 -0
- data/vendor/local/share/gtk-doc/html/cairo/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1390 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +531 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +568 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +295 -0
- data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
- data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
- data/vendor/local/share/gtk-doc/html/gio/GConverter.html +388 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +993 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +544 -0
- data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
- data/vendor/local/share/gtk-doc/html/gio/GFile.html +7450 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +115 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +520 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3116 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +182 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +183 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
- data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +195 -0
- data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
- data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
- data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +362 -0
- data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
- data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +263 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +248 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1006 -0
- data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
- data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +979 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2152 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +930 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +428 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +548 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +274 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +741 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
- data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +381 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +280 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +306 -0
- data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +709 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +180 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +128 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1088 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +206 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +97 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +4499 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +171 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +45 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +80 -0
- data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +96 -0
- data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +465 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +381 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +163 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +163 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +927 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +328 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +918 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1235 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +1384 -0
- data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +47 -0
- data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/index.html +318 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +1795 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +42 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +57 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +293 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +47 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +563 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +419 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +413 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +340 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +7835 -0
- data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +413 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +430 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2054 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1187 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1665 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2042 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1023 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1810 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +3798 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1815 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +629 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2556 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1029 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +703 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1045 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1523 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1466 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +204 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2648 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +483 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1283 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1212 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +466 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2947 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1290 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1719 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3379 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +314 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3356 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +150 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2395 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-running.html +302 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +112 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2084 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2556 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1171 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +336 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2717 -0
- data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
- data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2577 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +355 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +295 -0
- data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +406 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2355 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1423 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5242 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2609 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4227 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +413 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +230 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +723 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +757 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.html +187 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +734 -0
- data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn01.html +82 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
- data/vendor/local/share/gtk-doc/html/gobject/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +201 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +227 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +220 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +402 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +779 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +310 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoRenderer.html +1002 -0
- data/vendor/local/share/gtk-doc/html/pango/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.10.html +102 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.12.html +62 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.14.html +68 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.16.html +136 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.18.html +114 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.2.html +94 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.20.html +80 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.22.html +92 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.24.html +80 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.26.html +60 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.28.html +55 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.4.html +132 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.6.html +112 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.8.html +120 -0
- data/vendor/local/share/gtk-doc/html/pango/index-all.html +1537 -0
- data/vendor/local/share/gtk-doc/html/pango/index-deprecated.html +158 -0
- data/vendor/local/share/gtk-doc/html/pango/index.html +165 -0
- data/vendor/local/share/gtk-doc/html/pango/index.sgml +1089 -0
- data/vendor/local/share/gtk-doc/html/pango/layout.gif +0 -0
- data/vendor/local/share/gtk-doc/html/pango/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +89 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-ATSUI-Fonts.html +138 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +441 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +1198 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +385 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +305 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +3075 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +788 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +2100 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +2977 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +715 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +278 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +1729 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +1135 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +453 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +2440 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +1534 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +297 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +431 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +800 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-X-Fonts-and-Rendering.html +1096 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +1031 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +78 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-querymodules.html +92 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.devhelp +799 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.devhelp2 +993 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.html +84 -0
- data/vendor/local/share/gtk-doc/html/pango/rendering.html +71 -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 +257 -0
- data/vendor/local/share/gtk-doc/html/pango/tools.html +54 -0
- data/vendor/local/share/gtk-doc/html/pango/up.png +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/locale.alias +77 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/man/man1/envsubst.1 +54 -0
- data/vendor/local/share/man/man1/fc-cache.1 +70 -0
- data/vendor/local/share/man/man1/fc-cat.1 +44 -0
- data/vendor/local/share/man/man1/fc-list.1 +72 -0
- data/vendor/local/share/man/man1/fc-match.1 +73 -0
- data/vendor/local/share/man/man1/fc-query.1 +57 -0
- data/vendor/local/share/man/man1/fc-scan.1 +52 -0
- data/vendor/local/share/man/man1/gettext.1 +69 -0
- data/vendor/local/share/man/man1/glib-genmarshal.1 +307 -0
- data/vendor/local/share/man/man1/glib-mkenums.1 +234 -0
- data/vendor/local/share/man/man1/gobject-query.1 +83 -0
- data/vendor/local/share/man/man1/ngettext.1 +68 -0
- data/vendor/local/share/man/man1/pango-querymodules.1 +47 -0
- data/vendor/local/share/man/man1/pango-view.1 +118 -0
- data/vendor/local/share/man/man3/FcAtomicCreate.3 +19 -0
- data/vendor/local/share/man/man3/FcAtomicDeleteNew.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicLock.3 +18 -0
- data/vendor/local/share/man/man3/FcAtomicNewFile.3 +17 -0
- data/vendor/local/share/man/man3/FcAtomicOrigFile.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicReplaceOrig.3 +18 -0
- data/vendor/local/share/man/man3/FcAtomicUnlock.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksAdd.3 +18 -0
- data/vendor/local/share/man/man3/FcBlanksCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksIsMember.3 +18 -0
- data/vendor/local/share/man/man3/FcCacheCopySet.3 +18 -0
- data/vendor/local/share/man/man3/FcCacheDir.3 +16 -0
- data/vendor/local/share/man/man3/FcCacheNumFont.3 +17 -0
- data/vendor/local/share/man/man3/FcCacheNumSubdir.3 +16 -0
- data/vendor/local/share/man/man3/FcCacheSubdir.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetAddChar.3 +19 -0
- data/vendor/local/share/man/man3/FcCharSetCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetCount.3 +16 -0
- data/vendor/local/share/man/man3/FcCharSetCoverage.3 +23 -0
- data/vendor/local/share/man/man3/FcCharSetCreate.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetDestroy.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetEqual.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetFirstPage.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetHasChar.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetIntersect.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetIntersectCount.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetIsSubset.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetMerge.3 +23 -0
- data/vendor/local/share/man/man3/FcCharSetNew.3 +16 -0
- data/vendor/local/share/man/man3/FcCharSetNextPage.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetSubtract.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetSubtractCount.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetUnion.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigAppFontAddDir.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigAppFontAddFile.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigAppFontClear.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigBuildFonts.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcConfigDestroy.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigEnableHome.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigFilename.3 +26 -0
- data/vendor/local/share/man/man3/FcConfigGetBlanks.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigGetCache.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigGetCacheDirs.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigGetConfigDirs.3 +18 -0
- data/vendor/local/share/man/man3/FcConfigGetConfigFiles.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigGetCurrent.3 +16 -0
- data/vendor/local/share/man/man3/FcConfigGetFontDirs.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigGetFonts.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigGetRescanInterval.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigHome.3 +18 -0
- data/vendor/local/share/man/man3/FcConfigParseAndLoad.3 +23 -0
- data/vendor/local/share/man/man3/FcConfigReference.3 +21 -0
- data/vendor/local/share/man/man3/FcConfigSetCurrent.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigSetRescanInterval.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigSubstitute.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigSubstituteWithPat.3 +24 -0
- data/vendor/local/share/man/man3/FcConfigUptoDate.3 +18 -0
- data/vendor/local/share/man/man3/FcDefaultSubstitute.3 +27 -0
- data/vendor/local/share/man/man3/FcDirCacheLoad.3 +21 -0
- data/vendor/local/share/man/man3/FcDirCacheLoadFile.3 +19 -0
- data/vendor/local/share/man/man3/FcDirCacheRead.3 +21 -0
- data/vendor/local/share/man/man3/FcDirCacheUnlink.3 +20 -0
- data/vendor/local/share/man/man3/FcDirCacheUnload.3 +17 -0
- data/vendor/local/share/man/man3/FcDirCacheValid.3 +17 -0
- data/vendor/local/share/man/man3/FcDirSave.3 +22 -0
- data/vendor/local/share/man/man3/FcDirScan.3 +26 -0
- data/vendor/local/share/man/man3/FcFileIsDir.3 +17 -0
- data/vendor/local/share/man/man3/FcFileScan.3 +31 -0
- data/vendor/local/share/man/man3/FcFini.3 +19 -0
- data/vendor/local/share/man/man3/FcFontList.3 +21 -0
- data/vendor/local/share/man/man3/FcFontMatch.3 +25 -0
- data/vendor/local/share/man/man3/FcFontRenderPrepare.3 +21 -0
- data/vendor/local/share/man/man3/FcFontSetAdd.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcFontSetDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcFontSetList.3 +25 -0
- data/vendor/local/share/man/man3/FcFontSetMatch.3 +28 -0
- data/vendor/local/share/man/man3/FcFontSetPrint.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSetSort.3 +39 -0
- data/vendor/local/share/man/man3/FcFontSetSortDestroy.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSort.3 +33 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharIndex.3 +22 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharSet.3 +21 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharSetAndSpacing.3 +28 -0
- data/vendor/local/share/man/man3/FcFreeTypeQuery.3 +21 -0
- data/vendor/local/share/man/man3/FcFreeTypeQueryFace.3 +21 -0
- data/vendor/local/share/man/man3/FcGetLangs.3 +16 -0
- data/vendor/local/share/man/man3/FcGetVersion.3 +16 -0
- data/vendor/local/share/man/man3/FcInit.3 +19 -0
- data/vendor/local/share/man/man3/FcInitBringUptoDate.3 +19 -0
- data/vendor/local/share/man/man3/FcInitLoadConfig.3 +17 -0
- data/vendor/local/share/man/man3/FcInitLoadConfigAndFonts.3 +17 -0
- data/vendor/local/share/man/man3/FcInitReinitialize.3 +19 -0
- data/vendor/local/share/man/man3/FcIsLower.3 +17 -0
- data/vendor/local/share/man/man3/FcIsUpper.3 +17 -0
- data/vendor/local/share/man/man3/FcLangGetCharSet.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetAdd.3 +20 -0
- data/vendor/local/share/man/man3/FcLangSetCompare.3 +22 -0
- data/vendor/local/share/man/man3/FcLangSetContains.3 +22 -0
- data/vendor/local/share/man/man3/FcLangSetCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcLangSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcLangSetEqual.3 +18 -0
- data/vendor/local/share/man/man3/FcLangSetGetLangs.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetHasLang.3 +23 -0
- data/vendor/local/share/man/man3/FcLangSetHash.3 +20 -0
- data/vendor/local/share/man/man3/FcMatrixCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcMatrixEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcMatrixInit.3 +17 -0
- data/vendor/local/share/man/man3/FcMatrixMultiply.3 +20 -0
- data/vendor/local/share/man/man3/FcMatrixRotate.3 +27 -0
- data/vendor/local/share/man/man3/FcMatrixScale.3 +27 -0
- data/vendor/local/share/man/man3/FcMatrixShear.3 +27 -0
- data/vendor/local/share/man/man3/FcNameConstant.3 +18 -0
- data/vendor/local/share/man/man3/FcNameGetConstant.3 +16 -0
- data/vendor/local/share/man/man3/FcNameGetObjectType.3 +16 -0
- data/vendor/local/share/man/man3/FcNameParse.3 +16 -0
- data/vendor/local/share/man/man3/FcNameRegisterConstants.3 +19 -0
- data/vendor/local/share/man/man3/FcNameRegisterObjectTypes.3 +19 -0
- data/vendor/local/share/man/man3/FcNameUnparse.3 +18 -0
- data/vendor/local/share/man/man3/FcNameUnregisterConstants.3 +19 -0
- data/vendor/local/share/man/man3/FcNameUnregisterObjectTypes.3 +17 -0
- data/vendor/local/share/man/man3/FcObjectSetAdd.3 +18 -0
- data/vendor/local/share/man/man3/FcObjectSetBuild.3 +26 -0
- data/vendor/local/share/man/man3/FcObjectSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcObjectSetDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcPatternAdd-Type.3 +49 -0
- data/vendor/local/share/man/man3/FcPatternAdd.3 +23 -0
- data/vendor/local/share/man/man3/FcPatternAddWeak.3 +20 -0
- data/vendor/local/share/man/man3/FcPatternBuild.3 +50 -0
- data/vendor/local/share/man/man3/FcPatternCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcPatternDel.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternDuplicate.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternEqual.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternEqualSubset.3 +19 -0
- data/vendor/local/share/man/man3/FcPatternFilter.3 +20 -0
- data/vendor/local/share/man/man3/FcPatternFormat.3 +205 -0
- data/vendor/local/share/man/man3/FcPatternGet-Type.3 +56 -0
- data/vendor/local/share/man/man3/FcPatternGet.3 +22 -0
- data/vendor/local/share/man/man3/FcPatternHash.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternPrint.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternReference.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternRemove.3 +19 -0
- data/vendor/local/share/man/man3/FcStrBasename.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCmp.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCmpIgnoreCase.3 +19 -0
- data/vendor/local/share/man/man3/FcStrCopy.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCopyFilename.3 +23 -0
- data/vendor/local/share/man/man3/FcStrDirname.3 +18 -0
- data/vendor/local/share/man/man3/FcStrDowncase.3 +17 -0
- data/vendor/local/share/man/man3/FcStrFree.3 +17 -0
- data/vendor/local/share/man/man3/FcStrListCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcStrListDone.3 +16 -0
- data/vendor/local/share/man/man3/FcStrListNext.3 +16 -0
- data/vendor/local/share/man/man3/FcStrPlus.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetAdd.3 +17 -0
- data/vendor/local/share/man/man3/FcStrSetAddFilename.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcStrSetDel.3 +18 -0
- data/vendor/local/share/man/man3/FcStrSetDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcStrSetEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetMember.3 +18 -0
- data/vendor/local/share/man/man3/FcStrStr.3 +20 -0
- data/vendor/local/share/man/man3/FcStrStrIgnoreCase.3 +20 -0
- data/vendor/local/share/man/man3/FcToLower.3 +17 -0
- data/vendor/local/share/man/man3/FcUcs4ToUtf8.3 +19 -0
- data/vendor/local/share/man/man3/FcUtf16Len.3 +27 -0
- data/vendor/local/share/man/man3/FcUtf16ToUcs4.3 +23 -0
- data/vendor/local/share/man/man3/FcUtf8Len.3 +24 -0
- data/vendor/local/share/man/man3/FcUtf8ToUcs4.3 +21 -0
- data/vendor/local/share/man/man3/FcValueDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcValueEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcValuePrint.3 +18 -0
- data/vendor/local/share/man/man3/FcValueSave.3 +17 -0
- data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
- data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
- data/vendor/local/share/man/man3/dcgettext.3 +1 -0
- data/vendor/local/share/man/man3/dcngettext.3 +1 -0
- data/vendor/local/share/man/man3/dgettext.3 +1 -0
- data/vendor/local/share/man/man3/dngettext.3 +1 -0
- data/vendor/local/share/man/man3/gettext.3 +99 -0
- data/vendor/local/share/man/man3/libpng.3 +4455 -0
- data/vendor/local/share/man/man3/libpngpf.3 +808 -0
- data/vendor/local/share/man/man3/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -0
- data/vendor/local/share/man/man5/fonts-conf.5 +644 -0
- data/vendor/local/share/man/man5/png.5 +74 -0
- data/vendor/local/src/tml/packaging/cairo_1.10.0-1_win32.log +1262 -0
- data/vendor/local/src/tml/packaging/cairo_1.10.0-1_win32.sh +76 -0
- data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.log +188 -0
- data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.sh +68 -0
- data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.log +999 -0
- data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.sh +79 -0
- data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.log +364 -0
- data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.sh +93 -0
- data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
- data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
- data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
- data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +272 -0
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +71 -0
- data/vendor/local/src/tml/packaging/pango_1.28.1-2_win32.log +1070 -0
- data/vendor/local/src/tml/packaging/pango_1.28.1-2_win32.sh +579 -0
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +42 -0
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +189 -0
- metadata +1537 -0
@@ -0,0 +1,3075 @@
|
|
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>Fonts</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
+
<link rel="home" href="index.html" title="Pango Reference Manual">
|
8
|
+
<link rel="up" href="pango.html" title="Basic Pango Interfaces">
|
9
|
+
<link rel="prev" href="pango-Glyph-Storage.html" title="Glyph Storage">
|
10
|
+
<link rel="next" href="pango-Text-Attributes.html" title="Text Attributes">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.13 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
<link rel="chapter" href="pango.html" title="Basic Pango Interfaces">
|
14
|
+
<link rel="chapter" href="rendering.html" title="Rendering with Pango">
|
15
|
+
<link rel="chapter" href="lowlevel.html" title="Low Level Functionality">
|
16
|
+
<link rel="chapter" href="tools.html" title="Pango Tools">
|
17
|
+
<link rel="chapter" href="pango-hierarchy.html" title="Object Hierarchy">
|
18
|
+
<link rel="index" href="index-all.html" title="Index">
|
19
|
+
<link rel="index" href="index-deprecated.html" title="Index of deprecated symbols">
|
20
|
+
<link rel="index" href="index-1.2.html" title="Index of new symbols in 1.2">
|
21
|
+
<link rel="index" href="index-1.4.html" title="Index of new symbols in 1.4">
|
22
|
+
<link rel="index" href="index-1.6.html" title="Index of new symbols in 1.6">
|
23
|
+
<link rel="index" href="index-1.8.html" title="Index of new symbols in 1.8">
|
24
|
+
<link rel="index" href="index-1.10.html" title="Index of new symbols in 1.10">
|
25
|
+
<link rel="index" href="index-1.12.html" title="Index of new symbols in 1.12">
|
26
|
+
<link rel="index" href="index-1.14.html" title="Index of new symbols in 1.14">
|
27
|
+
<link rel="index" href="index-1.16.html" title="Index of new symbols in 1.16">
|
28
|
+
<link rel="index" href="index-1.18.html" title="Index of new symbols in 1.18">
|
29
|
+
<link rel="index" href="index-1.20.html" title="Index of new symbols in 1.20">
|
30
|
+
<link rel="index" href="index-1.22.html" title="Index of new symbols in 1.22">
|
31
|
+
<link rel="index" href="index-1.24.html" title="Index of new symbols in 1.24">
|
32
|
+
<link rel="index" href="index-1.26.html" title="Index of new symbols in 1.26">
|
33
|
+
<link rel="index" href="index-1.28.html" title="Index of new symbols in 1.26">
|
34
|
+
</head>
|
35
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
36
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
37
|
+
<tr valign="middle">
|
38
|
+
<td><a accesskey="p" href="pango-Glyph-Storage.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
39
|
+
<td><a accesskey="u" href="pango.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
40
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
41
|
+
<th width="100%" align="center">Pango Reference Manual</th>
|
42
|
+
<td><a accesskey="n" href="pango-Text-Attributes.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
43
|
+
</tr>
|
44
|
+
<tr><td colspan="5" class="shortcuts">
|
45
|
+
<a href="#pango-Fonts.synopsis" class="shortcut">Top</a>
|
46
|
+
|
|
47
|
+
<a href="#pango-Fonts.description" class="shortcut">Description</a>
|
48
|
+
|
|
49
|
+
<a href="#pango-Fonts.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
50
|
+
|
|
51
|
+
<a href="#pango-Fonts.derived-interfaces" class="shortcut">Known Derived Interfaces</a>
|
52
|
+
</td></tr>
|
53
|
+
</table>
|
54
|
+
<div class="refentry" title="Fonts">
|
55
|
+
<a name="pango-Fonts"></a><div class="titlepage"></div>
|
56
|
+
<div class="refnamediv"><table width="100%"><tr>
|
57
|
+
<td valign="top">
|
58
|
+
<h2><span class="refentrytitle"><a name="pango-Fonts.top_of_page"></a>Fonts</span></h2>
|
59
|
+
<p>Fonts — Structures representing abstract fonts</p>
|
60
|
+
</td>
|
61
|
+
<td valign="top" align="right"></td>
|
62
|
+
</tr></table></div>
|
63
|
+
<div class="refsynopsisdiv" title="Synopsis">
|
64
|
+
<a name="pango-Fonts.synopsis"></a><h2>Synopsis</h2>
|
65
|
+
<a name="PangoFont"></a><a name="PangoFontFamily"></a><a name="PangoFontFace"></a><a name="PangoFontMap"></a><a name="PangoFontset"></a><a name="PangoFontsetSimple"></a><pre class="synopsis"> <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription">PangoFontDescription</a>;
|
66
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-DESCRIPTION:CAPS" title="PANGO_TYPE_FONT_DESCRIPTION">PANGO_TYPE_FONT_DESCRIPTION</a>
|
67
|
+
enum <a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle">PangoStyle</a>;
|
68
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-STYLE:CAPS" title="PANGO_TYPE_STYLE">PANGO_TYPE_STYLE</a>
|
69
|
+
enum <a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight">PangoWeight</a>;
|
70
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-WEIGHT:CAPS" title="PANGO_TYPE_WEIGHT">PANGO_TYPE_WEIGHT</a>
|
71
|
+
enum <a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant">PangoVariant</a>;
|
72
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-VARIANT:CAPS" title="PANGO_TYPE_VARIANT">PANGO_TYPE_VARIANT</a>
|
73
|
+
enum <a class="link" href="pango-Fonts.html#PangoStretch" title="enum PangoStretch">PangoStretch</a>;
|
74
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-STRETCH:CAPS" title="PANGO_TYPE_STRETCH">PANGO_TYPE_STRETCH</a>
|
75
|
+
enum <a class="link" href="pango-Fonts.html#PangoFontMask" title="enum PangoFontMask">PangoFontMask</a>;
|
76
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-MASK:CAPS" title="PANGO_TYPE_FONT_MASK">PANGO_TYPE_FONT_MASK</a>
|
77
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * <a class="link" href="pango-Fonts.html#pango-font-description-new" title="pango_font_description_new ()">pango_font_description_new</a> (void);
|
78
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * <a class="link" href="pango-Fonts.html#pango-font-description-copy" title="pango_font_description_copy ()">pango_font_description_copy</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
79
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * <a class="link" href="pango-Fonts.html#pango-font-description-copy-static" title="pango_font_description_copy_static ()">pango_font_description_copy_static</a>
|
80
|
+
(const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
81
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-hash" title="pango_font_description_hash ()">pango_font_description_hash</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
82
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-equal" title="pango_font_description_equal ()">pango_font_description_equal</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc1,
|
83
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc2);
|
84
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-free" title="pango_font_description_free ()">pango_font_description_free</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
85
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-descriptions-free" title="pango_font_descriptions_free ()">pango_font_descriptions_free</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> **descs,
|
86
|
+
<span class="returnvalue">int</span> n_descs);
|
87
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-set-family" title="pango_font_description_set_family ()">pango_font_description_set_family</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
88
|
+
const <span class="returnvalue">char</span> *family);
|
89
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-set-family-static" title="pango_font_description_set_family_static ()">pango_font_description_set_family_static</a>
|
90
|
+
(<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
91
|
+
const <span class="returnvalue">char</span> *family);
|
92
|
+
const <span class="returnvalue">char</span> * <a class="link" href="pango-Fonts.html#pango-font-description-get-family" title="pango_font_description_get_family ()">pango_font_description_get_family</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
93
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-set-style" title="pango_font_description_set_style ()">pango_font_description_set_style</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
94
|
+
<a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle"><span class="returnvalue">PangoStyle</span></a> style);
|
95
|
+
<a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle"><span class="returnvalue">PangoStyle</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-get-style" title="pango_font_description_get_style ()">pango_font_description_get_style</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
96
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-set-variant" title="pango_font_description_set_variant ()">pango_font_description_set_variant</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
97
|
+
<a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant"><span class="returnvalue">PangoVariant</span></a> variant);
|
98
|
+
<a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant"><span class="returnvalue">PangoVariant</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-get-variant" title="pango_font_description_get_variant ()">pango_font_description_get_variant</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
99
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-set-weight" title="pango_font_description_set_weight ()">pango_font_description_set_weight</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
100
|
+
<a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight"><span class="returnvalue">PangoWeight</span></a> weight);
|
101
|
+
<a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight"><span class="returnvalue">PangoWeight</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-get-weight" title="pango_font_description_get_weight ()">pango_font_description_get_weight</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
102
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-set-stretch" title="pango_font_description_set_stretch ()">pango_font_description_set_stretch</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
103
|
+
<a class="link" href="pango-Fonts.html#PangoStretch" title="enum PangoStretch"><span class="returnvalue">PangoStretch</span></a> stretch);
|
104
|
+
<a class="link" href="pango-Fonts.html#PangoStretch" title="enum PangoStretch"><span class="returnvalue">PangoStretch</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-get-stretch" title="pango_font_description_get_stretch ()">pango_font_description_get_stretch</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
105
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-set-size" title="pango_font_description_set_size ()">pango_font_description_set_size</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
106
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> size);
|
107
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-get-size" title="pango_font_description_get_size ()">pango_font_description_get_size</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
108
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-set-absolute-size" title="pango_font_description_set_absolute_size ()">pango_font_description_set_absolute_size</a>
|
109
|
+
(<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
110
|
+
<span class="returnvalue">double</span> size);
|
111
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-get-size-is-absolute" title="pango_font_description_get_size_is_absolute ()">pango_font_description_get_size_is_absolute</a>
|
112
|
+
(const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
113
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-set-gravity" title="pango_font_description_set_gravity ()">pango_font_description_set_gravity</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
114
|
+
<a class="link" href="pango-Vertical-Text.html#PangoGravity" title="enum PangoGravity"><span class="returnvalue">PangoGravity</span></a> gravity);
|
115
|
+
<a class="link" href="pango-Vertical-Text.html#PangoGravity" title="enum PangoGravity"><span class="returnvalue">PangoGravity</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-get-gravity" title="pango_font_description_get_gravity ()">pango_font_description_get_gravity</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
116
|
+
<a class="link" href="pango-Fonts.html#PangoFontMask" title="enum PangoFontMask"><span class="returnvalue">PangoFontMask</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-get-set-fields" title="pango_font_description_get_set_fields ()">pango_font_description_get_set_fields</a>
|
117
|
+
(const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
118
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-unset-fields" title="pango_font_description_unset_fields ()">pango_font_description_unset_fields</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
119
|
+
<a class="link" href="pango-Fonts.html#PangoFontMask" title="enum PangoFontMask"><span class="returnvalue">PangoFontMask</span></a> to_unset);
|
120
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-merge" title="pango_font_description_merge ()">pango_font_description_merge</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
121
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc_to_merge,
|
122
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> replace_existing);
|
123
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-description-merge-static" title="pango_font_description_merge_static ()">pango_font_description_merge_static</a> (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
124
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc_to_merge,
|
125
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> replace_existing);
|
126
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Fonts.html#pango-font-description-better-match" title="pango_font_description_better_match ()">pango_font_description_better_match</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
127
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *old_match,
|
128
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *new_match);
|
129
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * <a class="link" href="pango-Fonts.html#pango-font-description-from-string" title="pango_font_description_from_string ()">pango_font_description_from_string</a>
|
130
|
+
(const <span class="returnvalue">char</span> *str);
|
131
|
+
<span class="returnvalue">char</span> * <a class="link" href="pango-Fonts.html#pango-font-description-to-string" title="pango_font_description_to_string ()">pango_font_description_to_string</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
132
|
+
<span class="returnvalue">char</span> * <a class="link" href="pango-Fonts.html#pango-font-description-to-filename" title="pango_font_description_to_filename ()">pango_font_description_to_filename</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
133
|
+
|
134
|
+
<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics">PangoFontMetrics</a>;
|
135
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-METRICS:CAPS" title="PANGO_TYPE_FONT_METRICS">PANGO_TYPE_FONT_METRICS</a>
|
136
|
+
<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> * <a class="link" href="pango-Fonts.html#pango-font-metrics-ref" title="pango_font_metrics_ref ()">pango_font_metrics_ref</a> (<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
137
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-metrics-unref" title="pango_font_metrics_unref ()">pango_font_metrics_unref</a> (<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
138
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Fonts.html#pango-font-metrics-get-ascent" title="pango_font_metrics_get_ascent ()">pango_font_metrics_get_ascent</a> (<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
139
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Fonts.html#pango-font-metrics-get-descent" title="pango_font_metrics_get_descent ()">pango_font_metrics_get_descent</a> (<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
140
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Fonts.html#pango-font-metrics-get-approximate-char-width" title="pango_font_metrics_get_approximate_char_width ()">pango_font_metrics_get_approximate_char_width</a>
|
141
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
142
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Fonts.html#pango-font-metrics-get-approximate-digit-width" title="pango_font_metrics_get_approximate_digit_width ()">pango_font_metrics_get_approximate_digit_width</a>
|
143
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
144
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Fonts.html#pango-font-metrics-get-underline-thickness" title="pango_font_metrics_get_underline_thickness ()">pango_font_metrics_get_underline_thickness</a>
|
145
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
146
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Fonts.html#pango-font-metrics-get-underline-position" title="pango_font_metrics_get_underline_position ()">pango_font_metrics_get_underline_position</a>
|
147
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
148
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Fonts.html#pango-font-metrics-get-strikethrough-thickness" title="pango_font_metrics_get_strikethrough_thickness ()">pango_font_metrics_get_strikethrough_thickness</a>
|
149
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
150
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Fonts.html#pango-font-metrics-get-strikethrough-position" title="pango_font_metrics_get_strikethrough_position ()">pango_font_metrics_get_strikethrough_position</a>
|
151
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);
|
152
|
+
|
153
|
+
<a class="link" href="pango-Fonts.html#PangoFont-struct" title="PangoFont">PangoFont</a>;
|
154
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT:CAPS" title="PANGO_TYPE_FONT">PANGO_TYPE_FONT</a>
|
155
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-FONT:CAPS" title="PANGO_FONT()">PANGO_FONT</a> (object)
|
156
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-IS-FONT:CAPS" title="PANGO_IS_FONT()">PANGO_IS_FONT</a> (object)
|
157
|
+
<a class="link" href="PangoEngineShape.html" title="PangoEngineShape"><span class="returnvalue">PangoEngineShape</span></a> * <a class="link" href="pango-Fonts.html#pango-font-find-shaper" title="pango_font_find_shaper ()">pango_font_find_shaper</a> (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
158
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language,
|
159
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a> ch);
|
160
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * <a class="link" href="pango-Fonts.html#pango-font-describe" title="pango_font_describe ()">pango_font_describe</a> (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font);
|
161
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * <a class="link" href="pango-Fonts.html#pango-font-describe-with-absolute-size" title="pango_font_describe_with_absolute_size ()">pango_font_describe_with_absolute_size</a>
|
162
|
+
(<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font);
|
163
|
+
<a class="link" href="pango-Coverage-Maps.html#PangoCoverage" title="PangoCoverage"><span class="returnvalue">PangoCoverage</span></a> * <a class="link" href="pango-Fonts.html#pango-font-get-coverage" title="pango_font_get_coverage ()">pango_font_get_coverage</a> (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
164
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);
|
165
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-get-glyph-extents" title="pango_font_get_glyph_extents ()">pango_font_get_glyph_extents</a> (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
166
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="returnvalue">PangoGlyph</span></a> glyph,
|
167
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
168
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect);
|
169
|
+
<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> * <a class="link" href="pango-Fonts.html#pango-font-get-metrics" title="pango_font_get_metrics ()">pango_font_get_metrics</a> (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
170
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);
|
171
|
+
<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> * <a class="link" href="pango-Fonts.html#pango-font-get-font-map" title="pango_font_get_font_map ()">pango_font_get_font_map</a> (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font);
|
172
|
+
|
173
|
+
<a class="link" href="pango-Fonts.html#PangoFontFamily-struct" title="PangoFontFamily">PangoFontFamily</a>;
|
174
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-FAMILY:CAPS" title="PANGO_TYPE_FONT_FAMILY">PANGO_TYPE_FONT_FAMILY</a>
|
175
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-FONT-FAMILY:CAPS" title="PANGO_FONT_FAMILY()">PANGO_FONT_FAMILY</a> (object)
|
176
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-IS-FONT-FAMILY:CAPS" title="PANGO_IS_FONT_FAMILY()">PANGO_IS_FONT_FAMILY</a> (object)
|
177
|
+
const <span class="returnvalue">char</span> * <a class="link" href="pango-Fonts.html#pango-font-family-get-name" title="pango_font_family_get_name ()">pango_font_family_get_name</a> (<a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="returnvalue">PangoFontFamily</span></a> *family);
|
178
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Fonts.html#pango-font-family-is-monospace" title="pango_font_family_is_monospace ()">pango_font_family_is_monospace</a> (<a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="returnvalue">PangoFontFamily</span></a> *family);
|
179
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-family-list-faces" title="pango_font_family_list_faces ()">pango_font_family_list_faces</a> (<a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="returnvalue">PangoFontFamily</span></a> *family,
|
180
|
+
<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> ***faces,
|
181
|
+
<span class="returnvalue">int</span> *n_faces);
|
182
|
+
|
183
|
+
<a class="link" href="pango-Fonts.html#PangoFontFace-struct" title="PangoFontFace">PangoFontFace</a>;
|
184
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-FACE:CAPS" title="PANGO_TYPE_FONT_FACE">PANGO_TYPE_FONT_FACE</a>
|
185
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-FONT-FACE:CAPS" title="PANGO_FONT_FACE()">PANGO_FONT_FACE</a> (object)
|
186
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-IS-FONT-FACE:CAPS" title="PANGO_IS_FONT_FACE()">PANGO_IS_FONT_FACE</a> (object)
|
187
|
+
const <span class="returnvalue">char</span> * <a class="link" href="pango-Fonts.html#pango-font-face-get-face-name" title="pango_font_face_get_face_name ()">pango_font_face_get_face_name</a> (<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> *face);
|
188
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-face-list-sizes" title="pango_font_face_list_sizes ()">pango_font_face_list_sizes</a> (<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> *face,
|
189
|
+
<span class="returnvalue">int</span> **sizes,
|
190
|
+
<span class="returnvalue">int</span> *n_sizes);
|
191
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * <a class="link" href="pango-Fonts.html#pango-font-face-describe" title="pango_font_face_describe ()">pango_font_face_describe</a> (<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> *face);
|
192
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Fonts.html#pango-font-face-is-synthesized" title="pango_font_face_is_synthesized ()">pango_font_face_is_synthesized</a> (<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> *face);
|
193
|
+
|
194
|
+
<a class="link" href="pango-Fonts.html#PangoFontMap-struct" title="PangoFontMap">PangoFontMap</a>;
|
195
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONT-MAP:CAPS" title="PANGO_TYPE_FONT_MAP">PANGO_TYPE_FONT_MAP</a>
|
196
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-FONT-MAP:CAPS" title="PANGO_FONT_MAP()">PANGO_FONT_MAP</a> (object)
|
197
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-IS-FONT-MAP:CAPS" title="PANGO_IS_FONT_MAP()">PANGO_IS_FONT_MAP</a> (object)
|
198
|
+
<a class="link" href="pango-Fonts.html#PangoFontMapClass" title="PangoFontMapClass">PangoFontMapClass</a>;
|
199
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-FONT-MAP-CLASS:CAPS" title="PANGO_FONT_MAP_CLASS()">PANGO_FONT_MAP_CLASS</a> (klass)
|
200
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-IS-FONT-MAP-CLASS:CAPS" title="PANGO_IS_FONT_MAP_CLASS()">PANGO_IS_FONT_MAP_CLASS</a> (klass)
|
201
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-FONT-MAP-GET-CLASS:CAPS" title="PANGO_FONT_MAP_GET_CLASS()">PANGO_FONT_MAP_GET_CLASS</a> (obj)
|
202
|
+
<a class="link" href="pango-Text-Processing.html#PangoContext"><span class="returnvalue">PangoContext</span></a> * <a class="link" href="pango-Fonts.html#pango-font-map-create-context" title="pango_font_map_create_context ()">pango_font_map_create_context</a> (<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap);
|
203
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> * <a class="link" href="pango-Fonts.html#pango-font-map-load-font" title="pango_font_map_load_font ()">pango_font_map_load_font</a> (<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap,
|
204
|
+
<a class="link" href="pango-Text-Processing.html#PangoContext"><span class="returnvalue">PangoContext</span></a> *context,
|
205
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
206
|
+
<a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> * <a class="link" href="pango-Fonts.html#pango-font-map-load-fontset" title="pango_font_map_load_fontset ()">pango_font_map_load_fontset</a> (<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap,
|
207
|
+
<a class="link" href="pango-Text-Processing.html#PangoContext"><span class="returnvalue">PangoContext</span></a> *context,
|
208
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
209
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);
|
210
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-font-map-list-families" title="pango_font_map_list_families ()">pango_font_map_list_families</a> (<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap,
|
211
|
+
<a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="returnvalue">PangoFontFamily</span></a> ***families,
|
212
|
+
<span class="returnvalue">int</span> *n_families);
|
213
|
+
const <span class="returnvalue">char</span> * <a class="link" href="pango-Fonts.html#pango-font-map-get-shape-engine-type" title="pango_font_map_get_shape_engine_type ()">pango_font_map_get_shape_engine_type</a>
|
214
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap);
|
215
|
+
|
216
|
+
<a class="link" href="pango-Fonts.html#PangoFontset-struct" title="PangoFontset">PangoFontset</a>;
|
217
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONTSET:CAPS" title="PANGO_TYPE_FONTSET">PANGO_TYPE_FONTSET</a>
|
218
|
+
<a class="link" href="pango-Fonts.html#PangoFontsetClass" title="PangoFontsetClass">PangoFontsetClass</a>;
|
219
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> * <a class="link" href="pango-Fonts.html#pango-fontset-get-font" title="pango_fontset_get_font ()">pango_fontset_get_font</a> (<a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> *fontset,
|
220
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> wc);
|
221
|
+
<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> * <a class="link" href="pango-Fonts.html#pango-fontset-get-metrics" title="pango_fontset_get_metrics ()">pango_fontset_get_metrics</a> (<a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> *fontset);
|
222
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (<a class="link" href="pango-Fonts.html#PangoFontsetForeachFunc" title="PangoFontsetForeachFunc ()">*PangoFontsetForeachFunc</a>) (<a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> *fontset,
|
223
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
224
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data);
|
225
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-fontset-foreach" title="pango_fontset_foreach ()">pango_fontset_foreach</a> (<a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> *fontset,
|
226
|
+
<a class="link" href="pango-Fonts.html#PangoFontsetForeachFunc" title="PangoFontsetForeachFunc ()"><span class="returnvalue">PangoFontsetForeachFunc</span></a> func,
|
227
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data);
|
228
|
+
<a class="link" href="pango-Fonts.html#PangoFontsetSimple-struct" title="PangoFontsetSimple">PangoFontsetSimple</a>;
|
229
|
+
#define <a class="link" href="pango-Fonts.html#PANGO-TYPE-FONTSET-SIMPLE:CAPS" title="PANGO_TYPE_FONTSET_SIMPLE">PANGO_TYPE_FONTSET_SIMPLE</a>
|
230
|
+
<a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="returnvalue">PangoFontsetSimple</span></a> * <a class="link" href="pango-Fonts.html#pango-fontset-simple-new" title="pango_fontset_simple_new ()">pango_fontset_simple_new</a> (<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);
|
231
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Fonts.html#pango-fontset-simple-append" title="pango_fontset_simple_append ()">pango_fontset_simple_append</a> (<a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="returnvalue">PangoFontsetSimple</span></a> *fontset,
|
232
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font);
|
233
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Fonts.html#pango-fontset-simple-size" title="pango_fontset_simple_size ()">pango_fontset_simple_size</a> (<a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="returnvalue">PangoFontsetSimple</span></a> *fontset);
|
234
|
+
</pre>
|
235
|
+
</div>
|
236
|
+
<div class="refsect1" title="Object Hierarchy">
|
237
|
+
<a name="pango-Fonts.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
238
|
+
<pre class="synopsis">
|
239
|
+
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
240
|
+
+----PangoFont
|
241
|
+
+----<a class="link" href="PangoFcFont.html" title="PangoFcFont">PangoFcFont</a>
|
242
|
+
</pre>
|
243
|
+
<pre class="synopsis">
|
244
|
+
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
245
|
+
+----PangoFontFamily
|
246
|
+
</pre>
|
247
|
+
<pre class="synopsis">
|
248
|
+
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
249
|
+
+----PangoFontFace
|
250
|
+
</pre>
|
251
|
+
<pre class="synopsis">
|
252
|
+
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
253
|
+
+----PangoFontMap
|
254
|
+
+----<a class="link" href="PangoFcFontMap.html" title="PangoFcFontMap">PangoFcFontMap</a>
|
255
|
+
</pre>
|
256
|
+
<pre class="synopsis">
|
257
|
+
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
258
|
+
+----PangoFontset
|
259
|
+
+----<a class="link" href="pango-Fonts.html#PangoFontsetSimple">PangoFontsetSimple</a>
|
260
|
+
</pre>
|
261
|
+
<pre class="synopsis">
|
262
|
+
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
263
|
+
+----<a class="link" href="pango-Fonts.html#PangoFontset">PangoFontset</a>
|
264
|
+
+----PangoFontsetSimple
|
265
|
+
</pre>
|
266
|
+
</div>
|
267
|
+
<div class="refsect1" title="Known Derived Interfaces">
|
268
|
+
<a name="pango-Fonts.derived-interfaces"></a><h2>Known Derived Interfaces</h2>
|
269
|
+
<p>
|
270
|
+
PangoFont is required by
|
271
|
+
<a class="link" href="pango-Cairo-Rendering.html#PangoCairoFont">PangoCairoFont</a>.</p>
|
272
|
+
<p>
|
273
|
+
PangoFontMap is required by
|
274
|
+
<a class="link" href="pango-Cairo-Rendering.html#PangoCairoFontMap">PangoCairoFontMap</a>.</p>
|
275
|
+
</div>
|
276
|
+
<div class="refsect1" title="Description">
|
277
|
+
<a name="pango-Fonts.description"></a><h2>Description</h2>
|
278
|
+
<p>
|
279
|
+
Pango supports a flexible architecture where a
|
280
|
+
particular rendering architecture can supply an
|
281
|
+
implementation of fonts. The <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> structure
|
282
|
+
represents an abstract rendering-system-independent font.
|
283
|
+
Pango provides routines to list available fonts, and
|
284
|
+
to load a font of a given description.
|
285
|
+
</p>
|
286
|
+
</div>
|
287
|
+
<div class="refsect1" title="Details">
|
288
|
+
<a name="pango-Fonts.details"></a><h2>Details</h2>
|
289
|
+
<div class="refsect2" title="PangoFontDescription">
|
290
|
+
<a name="PangoFontDescription"></a><h3>PangoFontDescription</h3>
|
291
|
+
<pre class="programlisting">typedef struct _PangoFontDescription PangoFontDescription;</pre>
|
292
|
+
<p>
|
293
|
+
The <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> structure represents the description
|
294
|
+
of an ideal font. These structures are used both to list
|
295
|
+
what fonts are available on the system and also for specifying
|
296
|
+
the characteristics of a font to load.
|
297
|
+
</p>
|
298
|
+
</div>
|
299
|
+
<hr>
|
300
|
+
<div class="refsect2" title="PANGO_TYPE_FONT_DESCRIPTION">
|
301
|
+
<a name="PANGO-TYPE-FONT-DESCRIPTION:CAPS"></a><h3>PANGO_TYPE_FONT_DESCRIPTION</h3>
|
302
|
+
<pre class="programlisting">#define PANGO_TYPE_FONT_DESCRIPTION (pango_font_description_get_type ())
|
303
|
+
</pre>
|
304
|
+
<p>
|
305
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>.
|
306
|
+
</p>
|
307
|
+
</div>
|
308
|
+
<hr>
|
309
|
+
<div class="refsect2" title="enum PangoStyle">
|
310
|
+
<a name="PangoStyle"></a><h3>enum PangoStyle</h3>
|
311
|
+
<pre class="programlisting">typedef enum {
|
312
|
+
PANGO_STYLE_NORMAL,
|
313
|
+
PANGO_STYLE_OBLIQUE,
|
314
|
+
PANGO_STYLE_ITALIC
|
315
|
+
} PangoStyle;
|
316
|
+
</pre>
|
317
|
+
<p>
|
318
|
+
An enumeration specifying the various slant styles possible for a font.</p>
|
319
|
+
<div class="variablelist"><table border="0">
|
320
|
+
<col align="left" valign="top">
|
321
|
+
<tbody>
|
322
|
+
<tr>
|
323
|
+
<td><p><a name="PANGO-STYLE-NORMAL:CAPS"></a><span class="term"><code class="literal">PANGO_STYLE_NORMAL</code></span></p></td>
|
324
|
+
<td> the font is upright.
|
325
|
+
</td>
|
326
|
+
</tr>
|
327
|
+
<tr>
|
328
|
+
<td><p><a name="PANGO-STYLE-OBLIQUE:CAPS"></a><span class="term"><code class="literal">PANGO_STYLE_OBLIQUE</code></span></p></td>
|
329
|
+
<td> the font is slanted, but in a roman style.
|
330
|
+
</td>
|
331
|
+
</tr>
|
332
|
+
<tr>
|
333
|
+
<td><p><a name="PANGO-STYLE-ITALIC:CAPS"></a><span class="term"><code class="literal">PANGO_STYLE_ITALIC</code></span></p></td>
|
334
|
+
<td> the font is slanted in an italic style.
|
335
|
+
</td>
|
336
|
+
</tr>
|
337
|
+
</tbody>
|
338
|
+
</table></div>
|
339
|
+
</div>
|
340
|
+
<hr>
|
341
|
+
<div class="refsect2" title="PANGO_TYPE_STYLE">
|
342
|
+
<a name="PANGO-TYPE-STYLE:CAPS"></a><h3>PANGO_TYPE_STYLE</h3>
|
343
|
+
<pre class="programlisting">#define PANGO_TYPE_STYLE (pango_style_get_type())
|
344
|
+
</pre>
|
345
|
+
<p>
|
346
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle"><span class="type">PangoStyle</span></a>.
|
347
|
+
</p>
|
348
|
+
</div>
|
349
|
+
<hr>
|
350
|
+
<div class="refsect2" title="enum PangoWeight">
|
351
|
+
<a name="PangoWeight"></a><h3>enum PangoWeight</h3>
|
352
|
+
<pre class="programlisting">typedef enum {
|
353
|
+
PANGO_WEIGHT_THIN = 100,
|
354
|
+
PANGO_WEIGHT_ULTRALIGHT = 200,
|
355
|
+
PANGO_WEIGHT_LIGHT = 300,
|
356
|
+
PANGO_WEIGHT_BOOK = 380,
|
357
|
+
PANGO_WEIGHT_NORMAL = 400,
|
358
|
+
PANGO_WEIGHT_MEDIUM = 500,
|
359
|
+
PANGO_WEIGHT_SEMIBOLD = 600,
|
360
|
+
PANGO_WEIGHT_BOLD = 700,
|
361
|
+
PANGO_WEIGHT_ULTRABOLD = 800,
|
362
|
+
PANGO_WEIGHT_HEAVY = 900,
|
363
|
+
PANGO_WEIGHT_ULTRAHEAVY = 1000
|
364
|
+
} PangoWeight;
|
365
|
+
</pre>
|
366
|
+
<p>
|
367
|
+
An enumeration specifying the weight (boldness) of a font. This is a numerical
|
368
|
+
value ranging from 100 to 900, but there are some predefined values:
|
369
|
+
</p>
|
370
|
+
<div class="variablelist"><table border="0">
|
371
|
+
<col align="left" valign="top">
|
372
|
+
<tbody>
|
373
|
+
<tr>
|
374
|
+
<td><p><a name="PANGO-WEIGHT-THIN:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_THIN</code></span></p></td>
|
375
|
+
<td>the thin weight (= 100; Since: 1.24)
|
376
|
+
</td>
|
377
|
+
</tr>
|
378
|
+
<tr>
|
379
|
+
<td><p><a name="PANGO-WEIGHT-ULTRALIGHT:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_ULTRALIGHT</code></span></p></td>
|
380
|
+
<td>the ultralight weight (= 200)
|
381
|
+
</td>
|
382
|
+
</tr>
|
383
|
+
<tr>
|
384
|
+
<td><p><a name="PANGO-WEIGHT-LIGHT:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_LIGHT</code></span></p></td>
|
385
|
+
<td>the light weight (= 300)
|
386
|
+
</td>
|
387
|
+
</tr>
|
388
|
+
<tr>
|
389
|
+
<td><p><a name="PANGO-WEIGHT-BOOK:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_BOOK</code></span></p></td>
|
390
|
+
<td>the book weight (= 380; Since: 1.24)
|
391
|
+
</td>
|
392
|
+
</tr>
|
393
|
+
<tr>
|
394
|
+
<td><p><a name="PANGO-WEIGHT-NORMAL:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_NORMAL</code></span></p></td>
|
395
|
+
<td>the default weight (= 400)
|
396
|
+
</td>
|
397
|
+
</tr>
|
398
|
+
<tr>
|
399
|
+
<td><p><a name="PANGO-WEIGHT-MEDIUM:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_MEDIUM</code></span></p></td>
|
400
|
+
<td>the normal weight (= 500; Since: 1.24)
|
401
|
+
</td>
|
402
|
+
</tr>
|
403
|
+
<tr>
|
404
|
+
<td><p><a name="PANGO-WEIGHT-SEMIBOLD:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_SEMIBOLD</code></span></p></td>
|
405
|
+
<td>the semibold weight (= 600)
|
406
|
+
</td>
|
407
|
+
</tr>
|
408
|
+
<tr>
|
409
|
+
<td><p><a name="PANGO-WEIGHT-BOLD:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_BOLD</code></span></p></td>
|
410
|
+
<td>the bold weight (= 700)
|
411
|
+
</td>
|
412
|
+
</tr>
|
413
|
+
<tr>
|
414
|
+
<td><p><a name="PANGO-WEIGHT-ULTRABOLD:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_ULTRABOLD</code></span></p></td>
|
415
|
+
<td>the ultrabold weight (= 800)
|
416
|
+
</td>
|
417
|
+
</tr>
|
418
|
+
<tr>
|
419
|
+
<td><p><a name="PANGO-WEIGHT-HEAVY:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_HEAVY</code></span></p></td>
|
420
|
+
<td>the heavy weight (= 900)
|
421
|
+
</td>
|
422
|
+
</tr>
|
423
|
+
<tr>
|
424
|
+
<td><p><a name="PANGO-WEIGHT-ULTRAHEAVY:CAPS"></a><span class="term"><code class="literal">PANGO_WEIGHT_ULTRAHEAVY</code></span></p></td>
|
425
|
+
<td>the ultraheavy weight (= 1000; Since: 1.24)
|
426
|
+
</td>
|
427
|
+
</tr>
|
428
|
+
</tbody>
|
429
|
+
</table></div>
|
430
|
+
</div>
|
431
|
+
<hr>
|
432
|
+
<div class="refsect2" title="PANGO_TYPE_WEIGHT">
|
433
|
+
<a name="PANGO-TYPE-WEIGHT:CAPS"></a><h3>PANGO_TYPE_WEIGHT</h3>
|
434
|
+
<pre class="programlisting">#define PANGO_TYPE_WEIGHT (pango_weight_get_type())
|
435
|
+
</pre>
|
436
|
+
<p>
|
437
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight"><span class="type">PangoWeight</span></a>.
|
438
|
+
</p>
|
439
|
+
</div>
|
440
|
+
<hr>
|
441
|
+
<div class="refsect2" title="enum PangoVariant">
|
442
|
+
<a name="PangoVariant"></a><h3>enum PangoVariant</h3>
|
443
|
+
<pre class="programlisting">typedef enum {
|
444
|
+
PANGO_VARIANT_NORMAL,
|
445
|
+
PANGO_VARIANT_SMALL_CAPS
|
446
|
+
} PangoVariant;
|
447
|
+
</pre>
|
448
|
+
<p>
|
449
|
+
An enumeration specifying capitalization variant of the font.
|
450
|
+
</p>
|
451
|
+
<div class="variablelist"><table border="0">
|
452
|
+
<col align="left" valign="top">
|
453
|
+
<tbody>
|
454
|
+
<tr>
|
455
|
+
<td><p><a name="PANGO-VARIANT-NORMAL:CAPS"></a><span class="term"><code class="literal">PANGO_VARIANT_NORMAL</code></span></p></td>
|
456
|
+
<td>A normal font.
|
457
|
+
</td>
|
458
|
+
</tr>
|
459
|
+
<tr>
|
460
|
+
<td><p><a name="PANGO-VARIANT-SMALL-CAPS"></a><span class="term"><code class="literal">PANGO_VARIANT_SMALL_CAPS</code></span></p></td>
|
461
|
+
<td>A font with the lower case characters
|
462
|
+
replaced by smaller variants of the capital characters.
|
463
|
+
</td>
|
464
|
+
</tr>
|
465
|
+
</tbody>
|
466
|
+
</table></div>
|
467
|
+
</div>
|
468
|
+
<hr>
|
469
|
+
<div class="refsect2" title="PANGO_TYPE_VARIANT">
|
470
|
+
<a name="PANGO-TYPE-VARIANT:CAPS"></a><h3>PANGO_TYPE_VARIANT</h3>
|
471
|
+
<pre class="programlisting">#define PANGO_TYPE_VARIANT (pango_variant_get_type())
|
472
|
+
</pre>
|
473
|
+
<p>
|
474
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant"><span class="type">PangoVariant</span></a>.
|
475
|
+
</p>
|
476
|
+
</div>
|
477
|
+
<hr>
|
478
|
+
<div class="refsect2" title="enum PangoStretch">
|
479
|
+
<a name="PangoStretch"></a><h3>enum PangoStretch</h3>
|
480
|
+
<pre class="programlisting">typedef enum {
|
481
|
+
PANGO_STRETCH_ULTRA_CONDENSED,
|
482
|
+
PANGO_STRETCH_EXTRA_CONDENSED,
|
483
|
+
PANGO_STRETCH_CONDENSED,
|
484
|
+
PANGO_STRETCH_SEMI_CONDENSED,
|
485
|
+
PANGO_STRETCH_NORMAL,
|
486
|
+
PANGO_STRETCH_SEMI_EXPANDED,
|
487
|
+
PANGO_STRETCH_EXPANDED,
|
488
|
+
PANGO_STRETCH_EXTRA_EXPANDED,
|
489
|
+
PANGO_STRETCH_ULTRA_EXPANDED
|
490
|
+
} PangoStretch;
|
491
|
+
</pre>
|
492
|
+
<p>
|
493
|
+
An enumeration specifying the width of the font relative to other designs
|
494
|
+
within a family.
|
495
|
+
</p>
|
496
|
+
<div class="variablelist"><table border="0">
|
497
|
+
<col align="left" valign="top">
|
498
|
+
<tbody>
|
499
|
+
<tr>
|
500
|
+
<td><p><a name="PANGO-STRETCH-ULTRA-CONDENSED:CAPS"></a><span class="term"><code class="literal">PANGO_STRETCH_ULTRA_CONDENSED</code></span></p></td>
|
501
|
+
<td>ultra condensed width
|
502
|
+
</td>
|
503
|
+
</tr>
|
504
|
+
<tr>
|
505
|
+
<td><p><a name="PANGO-STRETCH-EXTRA-CONDENSED:CAPS"></a><span class="term"><code class="literal">PANGO_STRETCH_EXTRA_CONDENSED</code></span></p></td>
|
506
|
+
<td>extra condensed width
|
507
|
+
</td>
|
508
|
+
</tr>
|
509
|
+
<tr>
|
510
|
+
<td><p><a name="PANGO-STRETCH-CONDENSED:CAPS"></a><span class="term"><code class="literal">PANGO_STRETCH_CONDENSED</code></span></p></td>
|
511
|
+
<td>condensed width
|
512
|
+
</td>
|
513
|
+
</tr>
|
514
|
+
<tr>
|
515
|
+
<td><p><a name="PANGO-STRETCH-SEMI-CONDENSED:CAPS"></a><span class="term"><code class="literal">PANGO_STRETCH_SEMI_CONDENSED</code></span></p></td>
|
516
|
+
<td>semi condensed width
|
517
|
+
</td>
|
518
|
+
</tr>
|
519
|
+
<tr>
|
520
|
+
<td><p><a name="PANGO-STRETCH-NORMAL:CAPS"></a><span class="term"><code class="literal">PANGO_STRETCH_NORMAL</code></span></p></td>
|
521
|
+
<td>the normal width
|
522
|
+
</td>
|
523
|
+
</tr>
|
524
|
+
<tr>
|
525
|
+
<td><p><a name="PANGO-STRETCH-SEMI-EXPANDED:CAPS"></a><span class="term"><code class="literal">PANGO_STRETCH_SEMI_EXPANDED</code></span></p></td>
|
526
|
+
<td>semi expanded width
|
527
|
+
</td>
|
528
|
+
</tr>
|
529
|
+
<tr>
|
530
|
+
<td><p><a name="PANGO-STRETCH-EXPANDED:CAPS"></a><span class="term"><code class="literal">PANGO_STRETCH_EXPANDED</code></span></p></td>
|
531
|
+
<td>expanded width
|
532
|
+
</td>
|
533
|
+
</tr>
|
534
|
+
<tr>
|
535
|
+
<td><p><a name="PANGO-STRETCH-EXTRA-EXPANDED:CAPS"></a><span class="term"><code class="literal">PANGO_STRETCH_EXTRA_EXPANDED</code></span></p></td>
|
536
|
+
<td>extra expanded width
|
537
|
+
</td>
|
538
|
+
</tr>
|
539
|
+
<tr>
|
540
|
+
<td><p><a name="PANGO-STRETCH-ULTRA-EXPANDED:CAPS"></a><span class="term"><code class="literal">PANGO_STRETCH_ULTRA_EXPANDED</code></span></p></td>
|
541
|
+
<td>ultra expanded width
|
542
|
+
</td>
|
543
|
+
</tr>
|
544
|
+
</tbody>
|
545
|
+
</table></div>
|
546
|
+
</div>
|
547
|
+
<hr>
|
548
|
+
<div class="refsect2" title="PANGO_TYPE_STRETCH">
|
549
|
+
<a name="PANGO-TYPE-STRETCH:CAPS"></a><h3>PANGO_TYPE_STRETCH</h3>
|
550
|
+
<pre class="programlisting">#define PANGO_TYPE_STRETCH (pango_stretch_get_type())
|
551
|
+
</pre>
|
552
|
+
<p>
|
553
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoStretch" title="enum PangoStretch"><span class="type">PangoStretch</span></a>.
|
554
|
+
</p>
|
555
|
+
</div>
|
556
|
+
<hr>
|
557
|
+
<div class="refsect2" title="enum PangoFontMask">
|
558
|
+
<a name="PangoFontMask"></a><h3>enum PangoFontMask</h3>
|
559
|
+
<pre class="programlisting">typedef enum {
|
560
|
+
PANGO_FONT_MASK_FAMILY = 1 << 0,
|
561
|
+
PANGO_FONT_MASK_STYLE = 1 << 1,
|
562
|
+
PANGO_FONT_MASK_VARIANT = 1 << 2,
|
563
|
+
PANGO_FONT_MASK_WEIGHT = 1 << 3,
|
564
|
+
PANGO_FONT_MASK_STRETCH = 1 << 4,
|
565
|
+
PANGO_FONT_MASK_SIZE = 1 << 5,
|
566
|
+
PANGO_FONT_MASK_GRAVITY = 1 << 6
|
567
|
+
} PangoFontMask;
|
568
|
+
</pre>
|
569
|
+
<p>
|
570
|
+
The bits in a <a class="link" href="pango-Fonts.html#PangoFontMask" title="enum PangoFontMask"><span class="type">PangoFontMask</span></a> correspond to fields in a
|
571
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> that have been set.
|
572
|
+
</p>
|
573
|
+
<div class="variablelist"><table border="0">
|
574
|
+
<col align="left" valign="top">
|
575
|
+
<tbody>
|
576
|
+
<tr>
|
577
|
+
<td><p><a name="PANGO-FONT-MASK-FAMILY:CAPS"></a><span class="term"><code class="literal">PANGO_FONT_MASK_FAMILY</code></span></p></td>
|
578
|
+
<td>the font family is specified.
|
579
|
+
</td>
|
580
|
+
</tr>
|
581
|
+
<tr>
|
582
|
+
<td><p><a name="PANGO-FONT-MASK-STYLE:CAPS"></a><span class="term"><code class="literal">PANGO_FONT_MASK_STYLE</code></span></p></td>
|
583
|
+
<td>the font style is specified.
|
584
|
+
</td>
|
585
|
+
</tr>
|
586
|
+
<tr>
|
587
|
+
<td><p><a name="PANGO-FONT-MASK-VARIANT:CAPS"></a><span class="term"><code class="literal">PANGO_FONT_MASK_VARIANT</code></span></p></td>
|
588
|
+
<td>the font variant is specified.
|
589
|
+
</td>
|
590
|
+
</tr>
|
591
|
+
<tr>
|
592
|
+
<td><p><a name="PANGO-FONT-MASK-WEIGHT:CAPS"></a><span class="term"><code class="literal">PANGO_FONT_MASK_WEIGHT</code></span></p></td>
|
593
|
+
<td>the font weight is specified.
|
594
|
+
</td>
|
595
|
+
</tr>
|
596
|
+
<tr>
|
597
|
+
<td><p><a name="PANGO-FONT-MASK-STRETCH:CAPS"></a><span class="term"><code class="literal">PANGO_FONT_MASK_STRETCH</code></span></p></td>
|
598
|
+
<td>the font stretch is specified.
|
599
|
+
</td>
|
600
|
+
</tr>
|
601
|
+
<tr>
|
602
|
+
<td><p><a name="PANGO-FONT-MASK-SIZE:CAPS"></a><span class="term"><code class="literal">PANGO_FONT_MASK_SIZE</code></span></p></td>
|
603
|
+
<td>the font size is specified.
|
604
|
+
</td>
|
605
|
+
</tr>
|
606
|
+
<tr>
|
607
|
+
<td><p><a name="PANGO-FONT-MASK-GRAVITY:CAPS"></a><span class="term"><code class="literal">PANGO_FONT_MASK_GRAVITY</code></span></p></td>
|
608
|
+
<td>the font gravity is specified (Since: 1.16.)
|
609
|
+
</td>
|
610
|
+
</tr>
|
611
|
+
</tbody>
|
612
|
+
</table></div>
|
613
|
+
</div>
|
614
|
+
<hr>
|
615
|
+
<div class="refsect2" title="PANGO_TYPE_FONT_MASK">
|
616
|
+
<a name="PANGO-TYPE-FONT-MASK:CAPS"></a><h3>PANGO_TYPE_FONT_MASK</h3>
|
617
|
+
<pre class="programlisting">#define PANGO_TYPE_FONT_MASK (pango_font_mask_get_type())
|
618
|
+
</pre>
|
619
|
+
<p>
|
620
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoFontMask" title="enum PangoFontMask"><span class="type">PangoFontMask</span></a>.
|
621
|
+
</p>
|
622
|
+
</div>
|
623
|
+
<hr>
|
624
|
+
<div class="refsect2" title="pango_font_description_new ()">
|
625
|
+
<a name="pango-font-description-new"></a><h3>pango_font_description_new ()</h3>
|
626
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * pango_font_description_new (void);</pre>
|
627
|
+
<p>
|
628
|
+
Creates a new font description structure with all fields unset.</p>
|
629
|
+
<div class="variablelist"><table border="0">
|
630
|
+
<col align="left" valign="top">
|
631
|
+
<tbody><tr>
|
632
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
633
|
+
<td> the newly allocated <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>, which
|
634
|
+
should be freed using <a class="link" href="pango-Fonts.html#pango-font-description-free" title="pango_font_description_free ()"><code class="function">pango_font_description_free()</code></a>.
|
635
|
+
</td>
|
636
|
+
</tr></tbody>
|
637
|
+
</table></div>
|
638
|
+
</div>
|
639
|
+
<hr>
|
640
|
+
<div class="refsect2" title="pango_font_description_copy ()">
|
641
|
+
<a name="pango-font-description-copy"></a><h3>pango_font_description_copy ()</h3>
|
642
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * pango_font_description_copy (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
643
|
+
<p>
|
644
|
+
Make a copy of a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>.</p>
|
645
|
+
<div class="variablelist"><table border="0">
|
646
|
+
<col align="left" valign="top">
|
647
|
+
<tbody>
|
648
|
+
<tr>
|
649
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
650
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
651
|
+
</td>
|
652
|
+
</tr>
|
653
|
+
<tr>
|
654
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
655
|
+
<td> the newly allocated <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>, which should
|
656
|
+
be freed with <a class="link" href="pango-Fonts.html#pango-font-description-free" title="pango_font_description_free ()"><code class="function">pango_font_description_free()</code></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
657
|
+
if <em class="parameter"><code>desc</code></em> was <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
658
|
+
</td>
|
659
|
+
</tr>
|
660
|
+
</tbody>
|
661
|
+
</table></div>
|
662
|
+
</div>
|
663
|
+
<hr>
|
664
|
+
<div class="refsect2" title="pango_font_description_copy_static ()">
|
665
|
+
<a name="pango-font-description-copy-static"></a><h3>pango_font_description_copy_static ()</h3>
|
666
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * pango_font_description_copy_static
|
667
|
+
(const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
668
|
+
<p>
|
669
|
+
Like <a class="link" href="pango-Fonts.html#pango-font-description-copy" title="pango_font_description_copy ()"><code class="function">pango_font_description_copy()</code></a>, but only a shallow copy is made
|
670
|
+
of the family name and other allocated fields. The result can only
|
671
|
+
be used until <em class="parameter"><code>desc</code></em> is modified or freed. This is meant to be used
|
672
|
+
when the copy is only needed temporarily.</p>
|
673
|
+
<div class="variablelist"><table border="0">
|
674
|
+
<col align="left" valign="top">
|
675
|
+
<tbody>
|
676
|
+
<tr>
|
677
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
678
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
679
|
+
</td>
|
680
|
+
</tr>
|
681
|
+
<tr>
|
682
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
683
|
+
<td> the newly allocated <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>, which should
|
684
|
+
be freed with <a class="link" href="pango-Fonts.html#pango-font-description-free" title="pango_font_description_free ()"><code class="function">pango_font_description_free()</code></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
685
|
+
if <em class="parameter"><code>desc</code></em> was <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
686
|
+
</td>
|
687
|
+
</tr>
|
688
|
+
</tbody>
|
689
|
+
</table></div>
|
690
|
+
</div>
|
691
|
+
<hr>
|
692
|
+
<div class="refsect2" title="pango_font_description_hash ()">
|
693
|
+
<a name="pango-font-description-hash"></a><h3>pango_font_description_hash ()</h3>
|
694
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> pango_font_description_hash (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
695
|
+
<p>
|
696
|
+
Computes a hash of a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> structure suitable
|
697
|
+
to be used, for example, as an argument to <a href="/usr/share/gtk-doc/html/glib/glib-Hash-Tables.html#g-hash-table-new"><code class="function">g_hash_table_new()</code></a>.
|
698
|
+
The hash value is independent of <em class="parameter"><code>desc->mask</code></em>.</p>
|
699
|
+
<div class="variablelist"><table border="0">
|
700
|
+
<col align="left" valign="top">
|
701
|
+
<tbody>
|
702
|
+
<tr>
|
703
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
704
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
705
|
+
</td>
|
706
|
+
</tr>
|
707
|
+
<tr>
|
708
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
709
|
+
<td> the hash value.
|
710
|
+
</td>
|
711
|
+
</tr>
|
712
|
+
</tbody>
|
713
|
+
</table></div>
|
714
|
+
</div>
|
715
|
+
<hr>
|
716
|
+
<div class="refsect2" title="pango_font_description_equal ()">
|
717
|
+
<a name="pango-font-description-equal"></a><h3>pango_font_description_equal ()</h3>
|
718
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_font_description_equal (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc1,
|
719
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc2);</pre>
|
720
|
+
<p>
|
721
|
+
Compares two font descriptions for equality. Two font descriptions
|
722
|
+
are considered equal if the fonts they describe are provably identical.
|
723
|
+
This means that their masks do not have to match, as long as other fields
|
724
|
+
are all the same. (Two font descriptions may result in identical fonts
|
725
|
+
being loaded, but still compare <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.)</p>
|
726
|
+
<div class="variablelist"><table border="0">
|
727
|
+
<col align="left" valign="top">
|
728
|
+
<tbody>
|
729
|
+
<tr>
|
730
|
+
<td><p><span class="term"><em class="parameter"><code>desc1</code></em> :</span></p></td>
|
731
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
732
|
+
</td>
|
733
|
+
</tr>
|
734
|
+
<tr>
|
735
|
+
<td><p><span class="term"><em class="parameter"><code>desc2</code></em> :</span></p></td>
|
736
|
+
<td> another <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
737
|
+
</td>
|
738
|
+
</tr>
|
739
|
+
<tr>
|
740
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
741
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the two font descriptions are identical,
|
742
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
|
743
|
+
</td>
|
744
|
+
</tr>
|
745
|
+
</tbody>
|
746
|
+
</table></div>
|
747
|
+
</div>
|
748
|
+
<hr>
|
749
|
+
<div class="refsect2" title="pango_font_description_free ()">
|
750
|
+
<a name="pango-font-description-free"></a><h3>pango_font_description_free ()</h3>
|
751
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_free (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
752
|
+
<p>
|
753
|
+
Frees a font description.</p>
|
754
|
+
<div class="variablelist"><table border="0">
|
755
|
+
<col align="left" valign="top">
|
756
|
+
<tbody><tr>
|
757
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
758
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
759
|
+
</td>
|
760
|
+
</tr></tbody>
|
761
|
+
</table></div>
|
762
|
+
</div>
|
763
|
+
<hr>
|
764
|
+
<div class="refsect2" title="pango_font_descriptions_free ()">
|
765
|
+
<a name="pango-font-descriptions-free"></a><h3>pango_font_descriptions_free ()</h3>
|
766
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_descriptions_free (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> **descs,
|
767
|
+
<span class="returnvalue">int</span> n_descs);</pre>
|
768
|
+
<p>
|
769
|
+
Frees an array of font descriptions.</p>
|
770
|
+
<div class="variablelist"><table border="0">
|
771
|
+
<col align="left" valign="top">
|
772
|
+
<tbody>
|
773
|
+
<tr>
|
774
|
+
<td><p><span class="term"><em class="parameter"><code>descs</code></em> :</span></p></td>
|
775
|
+
<td> a pointer to an array of <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
776
|
+
</td>
|
777
|
+
</tr>
|
778
|
+
<tr>
|
779
|
+
<td><p><span class="term"><em class="parameter"><code>n_descs</code></em> :</span></p></td>
|
780
|
+
<td> number of font descriptions in <em class="parameter"><code>descs</code></em>
|
781
|
+
</td>
|
782
|
+
</tr>
|
783
|
+
</tbody>
|
784
|
+
</table></div>
|
785
|
+
</div>
|
786
|
+
<hr>
|
787
|
+
<div class="refsect2" title="pango_font_description_set_family ()">
|
788
|
+
<a name="pango-font-description-set-family"></a><h3>pango_font_description_set_family ()</h3>
|
789
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_set_family (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
790
|
+
const <span class="returnvalue">char</span> *family);</pre>
|
791
|
+
<p>
|
792
|
+
Sets the family name field of a font description. The family
|
793
|
+
name represents a family of related font styles, and will
|
794
|
+
resolve to a particular <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a>. In some uses of
|
795
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>, it is also possible to use a comma
|
796
|
+
separated list of family names for this field.</p>
|
797
|
+
<div class="variablelist"><table border="0">
|
798
|
+
<col align="left" valign="top">
|
799
|
+
<tbody>
|
800
|
+
<tr>
|
801
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
802
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>.
|
803
|
+
</td>
|
804
|
+
</tr>
|
805
|
+
<tr>
|
806
|
+
<td><p><span class="term"><em class="parameter"><code>family</code></em> :</span></p></td>
|
807
|
+
<td> a string representing the family name.
|
808
|
+
</td>
|
809
|
+
</tr>
|
810
|
+
</tbody>
|
811
|
+
</table></div>
|
812
|
+
</div>
|
813
|
+
<hr>
|
814
|
+
<div class="refsect2" title="pango_font_description_set_family_static ()">
|
815
|
+
<a name="pango-font-description-set-family-static"></a><h3>pango_font_description_set_family_static ()</h3>
|
816
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_set_family_static
|
817
|
+
(<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
818
|
+
const <span class="returnvalue">char</span> *family);</pre>
|
819
|
+
<p>
|
820
|
+
Like <a class="link" href="pango-Fonts.html#pango-font-description-set-family" title="pango_font_description_set_family ()"><code class="function">pango_font_description_set_family()</code></a>, except that no
|
821
|
+
copy of <em class="parameter"><code>family</code></em> is made. The caller must make sure that the
|
822
|
+
string passed in stays around until <em class="parameter"><code>desc</code></em> has been freed
|
823
|
+
or the name is set again. This function can be used if
|
824
|
+
<em class="parameter"><code>family</code></em> is a static string such as a C string literal, or
|
825
|
+
if <em class="parameter"><code>desc</code></em> is only needed temporarily.</p>
|
826
|
+
<div class="variablelist"><table border="0">
|
827
|
+
<col align="left" valign="top">
|
828
|
+
<tbody>
|
829
|
+
<tr>
|
830
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
831
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
832
|
+
</td>
|
833
|
+
</tr>
|
834
|
+
<tr>
|
835
|
+
<td><p><span class="term"><em class="parameter"><code>family</code></em> :</span></p></td>
|
836
|
+
<td> a string representing the family name.
|
837
|
+
</td>
|
838
|
+
</tr>
|
839
|
+
</tbody>
|
840
|
+
</table></div>
|
841
|
+
</div>
|
842
|
+
<hr>
|
843
|
+
<div class="refsect2" title="pango_font_description_get_family ()">
|
844
|
+
<a name="pango-font-description-get-family"></a><h3>pango_font_description_get_family ()</h3>
|
845
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> * pango_font_description_get_family (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
846
|
+
<p>
|
847
|
+
Gets the family name field of a font description. See
|
848
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-set-family" title="pango_font_description_set_family ()"><code class="function">pango_font_description_set_family()</code></a>.</p>
|
849
|
+
<div class="variablelist"><table border="0">
|
850
|
+
<col align="left" valign="top">
|
851
|
+
<tbody>
|
852
|
+
<tr>
|
853
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
854
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>.
|
855
|
+
</td>
|
856
|
+
</tr>
|
857
|
+
<tr>
|
858
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
859
|
+
<td> the family name field for the font description, or
|
860
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if not previously set. This has the same life-time
|
861
|
+
as the font description itself and should not be freed.
|
862
|
+
</td>
|
863
|
+
</tr>
|
864
|
+
</tbody>
|
865
|
+
</table></div>
|
866
|
+
</div>
|
867
|
+
<hr>
|
868
|
+
<div class="refsect2" title="pango_font_description_set_style ()">
|
869
|
+
<a name="pango-font-description-set-style"></a><h3>pango_font_description_set_style ()</h3>
|
870
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_set_style (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
871
|
+
<a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle"><span class="returnvalue">PangoStyle</span></a> style);</pre>
|
872
|
+
<p>
|
873
|
+
Sets the style field of a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>. The
|
874
|
+
<a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle"><span class="type">PangoStyle</span></a> enumeration describes whether the font is slanted and
|
875
|
+
the manner in which it is slanted; it can be either
|
876
|
+
<a class="link" href="pango-Fonts.html#PANGO-STYLE-NORMAL:CAPS"><span class="type">PANGO_STYLE_NORMAL</span></a>, <a class="link" href="pango-Fonts.html#PANGO-STYLE-ITALIC:CAPS"><span class="type">PANGO_STYLE_ITALIC</span></a>, or <a class="link" href="pango-Fonts.html#PANGO-STYLE-OBLIQUE:CAPS"><span class="type">PANGO_STYLE_OBLIQUE</span></a>.
|
877
|
+
Most fonts will either have a italic style or an oblique
|
878
|
+
style, but not both, and font matching in Pango will
|
879
|
+
match italic specifications with oblique fonts and vice-versa
|
880
|
+
if an exact match is not found.</p>
|
881
|
+
<div class="variablelist"><table border="0">
|
882
|
+
<col align="left" valign="top">
|
883
|
+
<tbody>
|
884
|
+
<tr>
|
885
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
886
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
887
|
+
</td>
|
888
|
+
</tr>
|
889
|
+
<tr>
|
890
|
+
<td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
|
891
|
+
<td> the style for the font description
|
892
|
+
</td>
|
893
|
+
</tr>
|
894
|
+
</tbody>
|
895
|
+
</table></div>
|
896
|
+
</div>
|
897
|
+
<hr>
|
898
|
+
<div class="refsect2" title="pango_font_description_get_style ()">
|
899
|
+
<a name="pango-font-description-get-style"></a><h3>pango_font_description_get_style ()</h3>
|
900
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle"><span class="returnvalue">PangoStyle</span></a> pango_font_description_get_style (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
901
|
+
<p>
|
902
|
+
Gets the style field of a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>. See
|
903
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-set-style" title="pango_font_description_set_style ()"><code class="function">pango_font_description_set_style()</code></a>.</p>
|
904
|
+
<div class="variablelist"><table border="0">
|
905
|
+
<col align="left" valign="top">
|
906
|
+
<tbody>
|
907
|
+
<tr>
|
908
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
909
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
910
|
+
</td>
|
911
|
+
</tr>
|
912
|
+
<tr>
|
913
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
914
|
+
<td> the style field for the font description.
|
915
|
+
Use <a class="link" href="pango-Fonts.html#pango-font-description-get-set-fields" title="pango_font_description_get_set_fields ()"><code class="function">pango_font_description_get_set_fields()</code></a> to find out if
|
916
|
+
the field was explicitly set or not.
|
917
|
+
</td>
|
918
|
+
</tr>
|
919
|
+
</tbody>
|
920
|
+
</table></div>
|
921
|
+
</div>
|
922
|
+
<hr>
|
923
|
+
<div class="refsect2" title="pango_font_description_set_variant ()">
|
924
|
+
<a name="pango-font-description-set-variant"></a><h3>pango_font_description_set_variant ()</h3>
|
925
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_set_variant (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
926
|
+
<a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant"><span class="returnvalue">PangoVariant</span></a> variant);</pre>
|
927
|
+
<p>
|
928
|
+
Sets the variant field of a font description. The <a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant"><span class="type">PangoVariant</span></a>
|
929
|
+
can either be <a class="link" href="pango-Fonts.html#PANGO-VARIANT-NORMAL:CAPS"><code class="literal">PANGO_VARIANT_NORMAL</code></a> or <a class="link" href="pango-Fonts.html#PANGO-VARIANT-SMALL-CAPS"><code class="literal">PANGO_VARIANT_SMALL_CAPS</code></a>.</p>
|
930
|
+
<div class="variablelist"><table border="0">
|
931
|
+
<col align="left" valign="top">
|
932
|
+
<tbody>
|
933
|
+
<tr>
|
934
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
935
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
936
|
+
</td>
|
937
|
+
</tr>
|
938
|
+
<tr>
|
939
|
+
<td><p><span class="term"><em class="parameter"><code>variant</code></em> :</span></p></td>
|
940
|
+
<td> the variant type for the font description.
|
941
|
+
</td>
|
942
|
+
</tr>
|
943
|
+
</tbody>
|
944
|
+
</table></div>
|
945
|
+
</div>
|
946
|
+
<hr>
|
947
|
+
<div class="refsect2" title="pango_font_description_get_variant ()">
|
948
|
+
<a name="pango-font-description-get-variant"></a><h3>pango_font_description_get_variant ()</h3>
|
949
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant"><span class="returnvalue">PangoVariant</span></a> pango_font_description_get_variant (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
950
|
+
<p>
|
951
|
+
Gets the variant field of a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>. See
|
952
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-set-variant" title="pango_font_description_set_variant ()"><code class="function">pango_font_description_set_variant()</code></a>.</p>
|
953
|
+
<div class="variablelist"><table border="0">
|
954
|
+
<col align="left" valign="top">
|
955
|
+
<tbody>
|
956
|
+
<tr>
|
957
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
958
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>.
|
959
|
+
</td>
|
960
|
+
</tr>
|
961
|
+
<tr>
|
962
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
963
|
+
<td> the variant field for the font description. Use
|
964
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-get-set-fields" title="pango_font_description_get_set_fields ()"><code class="function">pango_font_description_get_set_fields()</code></a> to find out if
|
965
|
+
the field was explicitly set or not.
|
966
|
+
</td>
|
967
|
+
</tr>
|
968
|
+
</tbody>
|
969
|
+
</table></div>
|
970
|
+
</div>
|
971
|
+
<hr>
|
972
|
+
<div class="refsect2" title="pango_font_description_set_weight ()">
|
973
|
+
<a name="pango-font-description-set-weight"></a><h3>pango_font_description_set_weight ()</h3>
|
974
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_set_weight (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
975
|
+
<a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight"><span class="returnvalue">PangoWeight</span></a> weight);</pre>
|
976
|
+
<p>
|
977
|
+
Sets the weight field of a font description. The weight field
|
978
|
+
specifies how bold or light the font should be. In addition
|
979
|
+
to the values of the <a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight"><span class="type">PangoWeight</span></a> enumeration, other intermediate
|
980
|
+
numeric values are possible.</p>
|
981
|
+
<div class="variablelist"><table border="0">
|
982
|
+
<col align="left" valign="top">
|
983
|
+
<tbody>
|
984
|
+
<tr>
|
985
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
986
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
987
|
+
</td>
|
988
|
+
</tr>
|
989
|
+
<tr>
|
990
|
+
<td><p><span class="term"><em class="parameter"><code>weight</code></em> :</span></p></td>
|
991
|
+
<td> the weight for the font description.
|
992
|
+
</td>
|
993
|
+
</tr>
|
994
|
+
</tbody>
|
995
|
+
</table></div>
|
996
|
+
</div>
|
997
|
+
<hr>
|
998
|
+
<div class="refsect2" title="pango_font_description_get_weight ()">
|
999
|
+
<a name="pango-font-description-get-weight"></a><h3>pango_font_description_get_weight ()</h3>
|
1000
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight"><span class="returnvalue">PangoWeight</span></a> pango_font_description_get_weight (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
1001
|
+
<p>
|
1002
|
+
Gets the weight field of a font description. See
|
1003
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-set-weight" title="pango_font_description_set_weight ()"><code class="function">pango_font_description_set_weight()</code></a>.</p>
|
1004
|
+
<div class="variablelist"><table border="0">
|
1005
|
+
<col align="left" valign="top">
|
1006
|
+
<tbody>
|
1007
|
+
<tr>
|
1008
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1009
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1010
|
+
</td>
|
1011
|
+
</tr>
|
1012
|
+
<tr>
|
1013
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1014
|
+
<td> the weight field for the font description. Use
|
1015
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-get-set-fields" title="pango_font_description_get_set_fields ()"><code class="function">pango_font_description_get_set_fields()</code></a> to find out if
|
1016
|
+
the field was explicitly set or not.
|
1017
|
+
</td>
|
1018
|
+
</tr>
|
1019
|
+
</tbody>
|
1020
|
+
</table></div>
|
1021
|
+
</div>
|
1022
|
+
<hr>
|
1023
|
+
<div class="refsect2" title="pango_font_description_set_stretch ()">
|
1024
|
+
<a name="pango-font-description-set-stretch"></a><h3>pango_font_description_set_stretch ()</h3>
|
1025
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_set_stretch (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
1026
|
+
<a class="link" href="pango-Fonts.html#PangoStretch" title="enum PangoStretch"><span class="returnvalue">PangoStretch</span></a> stretch);</pre>
|
1027
|
+
<p>
|
1028
|
+
Sets the stretch field of a font description. The stretch field
|
1029
|
+
specifies how narrow or wide the font should be.</p>
|
1030
|
+
<div class="variablelist"><table border="0">
|
1031
|
+
<col align="left" valign="top">
|
1032
|
+
<tbody>
|
1033
|
+
<tr>
|
1034
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1035
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1036
|
+
</td>
|
1037
|
+
</tr>
|
1038
|
+
<tr>
|
1039
|
+
<td><p><span class="term"><em class="parameter"><code>stretch</code></em> :</span></p></td>
|
1040
|
+
<td> the stretch for the font description
|
1041
|
+
</td>
|
1042
|
+
</tr>
|
1043
|
+
</tbody>
|
1044
|
+
</table></div>
|
1045
|
+
</div>
|
1046
|
+
<hr>
|
1047
|
+
<div class="refsect2" title="pango_font_description_get_stretch ()">
|
1048
|
+
<a name="pango-font-description-get-stretch"></a><h3>pango_font_description_get_stretch ()</h3>
|
1049
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoStretch" title="enum PangoStretch"><span class="returnvalue">PangoStretch</span></a> pango_font_description_get_stretch (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
1050
|
+
<p>
|
1051
|
+
Gets the stretch field of a font description.
|
1052
|
+
See <a class="link" href="pango-Fonts.html#pango-font-description-set-stretch" title="pango_font_description_set_stretch ()"><code class="function">pango_font_description_set_stretch()</code></a>.</p>
|
1053
|
+
<div class="variablelist"><table border="0">
|
1054
|
+
<col align="left" valign="top">
|
1055
|
+
<tbody>
|
1056
|
+
<tr>
|
1057
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1058
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>.
|
1059
|
+
</td>
|
1060
|
+
</tr>
|
1061
|
+
<tr>
|
1062
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1063
|
+
<td> the stretch field for the font description. Use
|
1064
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-get-set-fields" title="pango_font_description_get_set_fields ()"><code class="function">pango_font_description_get_set_fields()</code></a> to find out if
|
1065
|
+
the field was explicitly set or not.
|
1066
|
+
</td>
|
1067
|
+
</tr>
|
1068
|
+
</tbody>
|
1069
|
+
</table></div>
|
1070
|
+
</div>
|
1071
|
+
<hr>
|
1072
|
+
<div class="refsect2" title="pango_font_description_set_size ()">
|
1073
|
+
<a name="pango-font-description-set-size"></a><h3>pango_font_description_set_size ()</h3>
|
1074
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_set_size (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
1075
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> size);</pre>
|
1076
|
+
<p>
|
1077
|
+
Sets the size field of a font description in fractional points. This is mutually
|
1078
|
+
exclusive with <a class="link" href="pango-Fonts.html#pango-font-description-set-absolute-size" title="pango_font_description_set_absolute_size ()"><code class="function">pango_font_description_set_absolute_size()</code></a>.</p>
|
1079
|
+
<div class="variablelist"><table border="0">
|
1080
|
+
<col align="left" valign="top">
|
1081
|
+
<tbody>
|
1082
|
+
<tr>
|
1083
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1084
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1085
|
+
</td>
|
1086
|
+
</tr>
|
1087
|
+
<tr>
|
1088
|
+
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
1089
|
+
<td> the size of the font in points, scaled by PANGO_SCALE. (That is,
|
1090
|
+
a <em class="parameter"><code>size</code></em> value of 10 * PANGO_SCALE is a 10 point font. The conversion
|
1091
|
+
factor between points and device units depends on system configuration
|
1092
|
+
and the output device. For screen display, a logical DPI of 96 is
|
1093
|
+
common, in which case a 10 point font corresponds to a 10 * (96 / 72) = 13.3
|
1094
|
+
pixel font. Use <a class="link" href="pango-Fonts.html#pango-font-description-set-absolute-size" title="pango_font_description_set_absolute_size ()"><code class="function">pango_font_description_set_absolute_size()</code></a> if you need
|
1095
|
+
a particular size in device units.
|
1096
|
+
</td>
|
1097
|
+
</tr>
|
1098
|
+
</tbody>
|
1099
|
+
</table></div>
|
1100
|
+
</div>
|
1101
|
+
<hr>
|
1102
|
+
<div class="refsect2" title="pango_font_description_get_size ()">
|
1103
|
+
<a name="pango-font-description-get-size"></a><h3>pango_font_description_get_size ()</h3>
|
1104
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> pango_font_description_get_size (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
1105
|
+
<p>
|
1106
|
+
Gets the size field of a font description.
|
1107
|
+
See <a class="link" href="pango-Fonts.html#pango-font-description-set-size" title="pango_font_description_set_size ()"><code class="function">pango_font_description_set_size()</code></a>.</p>
|
1108
|
+
<div class="variablelist"><table border="0">
|
1109
|
+
<col align="left" valign="top">
|
1110
|
+
<tbody>
|
1111
|
+
<tr>
|
1112
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1113
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1114
|
+
</td>
|
1115
|
+
</tr>
|
1116
|
+
<tr>
|
1117
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1118
|
+
<td> the size field for the font description in points or device units.
|
1119
|
+
You must call <a class="link" href="pango-Fonts.html#pango-font-description-get-size-is-absolute" title="pango_font_description_get_size_is_absolute ()"><code class="function">pango_font_description_get_size_is_absolute()</code></a>
|
1120
|
+
to find out which is the case. Returns 0 if the size field has not
|
1121
|
+
previously been set or it has been set to 0 explicitly.
|
1122
|
+
Use <a class="link" href="pango-Fonts.html#pango-font-description-get-set-fields" title="pango_font_description_get_set_fields ()"><code class="function">pango_font_description_get_set_fields()</code></a> to
|
1123
|
+
find out if the field was explicitly set or not.
|
1124
|
+
</td>
|
1125
|
+
</tr>
|
1126
|
+
</tbody>
|
1127
|
+
</table></div>
|
1128
|
+
</div>
|
1129
|
+
<hr>
|
1130
|
+
<div class="refsect2" title="pango_font_description_set_absolute_size ()">
|
1131
|
+
<a name="pango-font-description-set-absolute-size"></a><h3>pango_font_description_set_absolute_size ()</h3>
|
1132
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_set_absolute_size
|
1133
|
+
(<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
1134
|
+
<span class="returnvalue">double</span> size);</pre>
|
1135
|
+
<p>
|
1136
|
+
Sets the size field of a font description, in device units. This is mutually
|
1137
|
+
exclusive with <a class="link" href="pango-Fonts.html#pango-font-description-set-size" title="pango_font_description_set_size ()"><code class="function">pango_font_description_set_size()</code></a> which sets the font size
|
1138
|
+
in points.</p>
|
1139
|
+
<div class="variablelist"><table border="0">
|
1140
|
+
<col align="left" valign="top">
|
1141
|
+
<tbody>
|
1142
|
+
<tr>
|
1143
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1144
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1145
|
+
</td>
|
1146
|
+
</tr>
|
1147
|
+
<tr>
|
1148
|
+
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
1149
|
+
<td> the new size, in Pango units. There are <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> Pango units in one
|
1150
|
+
device unit. For an output backend where a device unit is a pixel, a <em class="parameter"><code>size</code></em>
|
1151
|
+
value of 10 * PANGO_SCALE gives a 10 pixel font.
|
1152
|
+
</td>
|
1153
|
+
</tr>
|
1154
|
+
</tbody>
|
1155
|
+
</table></div>
|
1156
|
+
<p class="since">Since 1.8</p>
|
1157
|
+
</div>
|
1158
|
+
<hr>
|
1159
|
+
<div class="refsect2" title="pango_font_description_get_size_is_absolute ()">
|
1160
|
+
<a name="pango-font-description-get-size-is-absolute"></a><h3>pango_font_description_get_size_is_absolute ()</h3>
|
1161
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_font_description_get_size_is_absolute
|
1162
|
+
(const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
1163
|
+
<p>
|
1164
|
+
Determines whether the size of the font is in points (not absolute) or device units (absolute).
|
1165
|
+
See <a class="link" href="pango-Fonts.html#pango-font-description-set-size" title="pango_font_description_set_size ()"><code class="function">pango_font_description_set_size()</code></a> and <a class="link" href="pango-Fonts.html#pango-font-description-set-absolute-size" title="pango_font_description_set_absolute_size ()"><code class="function">pango_font_description_set_absolute_size()</code></a>.</p>
|
1166
|
+
<div class="variablelist"><table border="0">
|
1167
|
+
<col align="left" valign="top">
|
1168
|
+
<tbody>
|
1169
|
+
<tr>
|
1170
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1171
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1172
|
+
</td>
|
1173
|
+
</tr>
|
1174
|
+
<tr>
|
1175
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1176
|
+
<td> whether the size for the font description is in
|
1177
|
+
points or device units. Use <a class="link" href="pango-Fonts.html#pango-font-description-get-set-fields" title="pango_font_description_get_set_fields ()"><code class="function">pango_font_description_get_set_fields()</code></a> to
|
1178
|
+
find out if the size field of the font description was explicitly set or not.
|
1179
|
+
|
1180
|
+
</td>
|
1181
|
+
</tr>
|
1182
|
+
</tbody>
|
1183
|
+
</table></div>
|
1184
|
+
<p class="since">Since 1.8</p>
|
1185
|
+
</div>
|
1186
|
+
<hr>
|
1187
|
+
<div class="refsect2" title="pango_font_description_set_gravity ()">
|
1188
|
+
<a name="pango-font-description-set-gravity"></a><h3>pango_font_description_set_gravity ()</h3>
|
1189
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_set_gravity (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
1190
|
+
<a class="link" href="pango-Vertical-Text.html#PangoGravity" title="enum PangoGravity"><span class="returnvalue">PangoGravity</span></a> gravity);</pre>
|
1191
|
+
<p>
|
1192
|
+
Sets the gravity field of a font description. The gravity field
|
1193
|
+
specifies how the glyphs should be rotated. If <em class="parameter"><code>gravity</code></em> is
|
1194
|
+
<a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-AUTO:CAPS"><code class="literal">PANGO_GRAVITY_AUTO</code></a>, this actually unsets the gravity mask on
|
1195
|
+
the font description.
|
1196
|
+
</p>
|
1197
|
+
<p>
|
1198
|
+
This function is seldom useful to the user. Gravity should normally
|
1199
|
+
be set on a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>.</p>
|
1200
|
+
<div class="variablelist"><table border="0">
|
1201
|
+
<col align="left" valign="top">
|
1202
|
+
<tbody>
|
1203
|
+
<tr>
|
1204
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1205
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1206
|
+
</td>
|
1207
|
+
</tr>
|
1208
|
+
<tr>
|
1209
|
+
<td><p><span class="term"><em class="parameter"><code>gravity</code></em> :</span></p></td>
|
1210
|
+
<td> the gravity for the font description.
|
1211
|
+
</td>
|
1212
|
+
</tr>
|
1213
|
+
</tbody>
|
1214
|
+
</table></div>
|
1215
|
+
<p class="since">Since 1.16</p>
|
1216
|
+
</div>
|
1217
|
+
<hr>
|
1218
|
+
<div class="refsect2" title="pango_font_description_get_gravity ()">
|
1219
|
+
<a name="pango-font-description-get-gravity"></a><h3>pango_font_description_get_gravity ()</h3>
|
1220
|
+
<pre class="programlisting"><a class="link" href="pango-Vertical-Text.html#PangoGravity" title="enum PangoGravity"><span class="returnvalue">PangoGravity</span></a> pango_font_description_get_gravity (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
1221
|
+
<p>
|
1222
|
+
Gets the gravity field of a font description. See
|
1223
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-set-gravity" title="pango_font_description_set_gravity ()"><code class="function">pango_font_description_set_gravity()</code></a>.</p>
|
1224
|
+
<div class="variablelist"><table border="0">
|
1225
|
+
<col align="left" valign="top">
|
1226
|
+
<tbody>
|
1227
|
+
<tr>
|
1228
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1229
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1230
|
+
</td>
|
1231
|
+
</tr>
|
1232
|
+
<tr>
|
1233
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1234
|
+
<td> the gravity field for the font description. Use
|
1235
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-get-set-fields" title="pango_font_description_get_set_fields ()"><code class="function">pango_font_description_get_set_fields()</code></a> to find out if
|
1236
|
+
the field was explicitly set or not.
|
1237
|
+
|
1238
|
+
</td>
|
1239
|
+
</tr>
|
1240
|
+
</tbody>
|
1241
|
+
</table></div>
|
1242
|
+
<p class="since">Since 1.16</p>
|
1243
|
+
</div>
|
1244
|
+
<hr>
|
1245
|
+
<div class="refsect2" title="pango_font_description_get_set_fields ()">
|
1246
|
+
<a name="pango-font-description-get-set-fields"></a><h3>pango_font_description_get_set_fields ()</h3>
|
1247
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontMask" title="enum PangoFontMask"><span class="returnvalue">PangoFontMask</span></a> pango_font_description_get_set_fields
|
1248
|
+
(const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
1249
|
+
<p>
|
1250
|
+
Determines which fields in a font description have been set.</p>
|
1251
|
+
<div class="variablelist"><table border="0">
|
1252
|
+
<col align="left" valign="top">
|
1253
|
+
<tbody>
|
1254
|
+
<tr>
|
1255
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1256
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1257
|
+
</td>
|
1258
|
+
</tr>
|
1259
|
+
<tr>
|
1260
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1261
|
+
<td> a bitmask with bits set corresponding to the
|
1262
|
+
fields in <em class="parameter"><code>desc</code></em> that have been set.
|
1263
|
+
</td>
|
1264
|
+
</tr>
|
1265
|
+
</tbody>
|
1266
|
+
</table></div>
|
1267
|
+
</div>
|
1268
|
+
<hr>
|
1269
|
+
<div class="refsect2" title="pango_font_description_unset_fields ()">
|
1270
|
+
<a name="pango-font-description-unset-fields"></a><h3>pango_font_description_unset_fields ()</h3>
|
1271
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_unset_fields (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
1272
|
+
<a class="link" href="pango-Fonts.html#PangoFontMask" title="enum PangoFontMask"><span class="returnvalue">PangoFontMask</span></a> to_unset);</pre>
|
1273
|
+
<p>
|
1274
|
+
Unsets some of the fields in a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>. The unset
|
1275
|
+
fields will get back to their default values.</p>
|
1276
|
+
<div class="variablelist"><table border="0">
|
1277
|
+
<col align="left" valign="top">
|
1278
|
+
<tbody>
|
1279
|
+
<tr>
|
1280
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1281
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1282
|
+
</td>
|
1283
|
+
</tr>
|
1284
|
+
<tr>
|
1285
|
+
<td><p><span class="term"><em class="parameter"><code>to_unset</code></em> :</span></p></td>
|
1286
|
+
<td> bitmask of fields in the <em class="parameter"><code>desc</code></em> to unset.
|
1287
|
+
</td>
|
1288
|
+
</tr>
|
1289
|
+
</tbody>
|
1290
|
+
</table></div>
|
1291
|
+
</div>
|
1292
|
+
<hr>
|
1293
|
+
<div class="refsect2" title="pango_font_description_merge ()">
|
1294
|
+
<a name="pango-font-description-merge"></a><h3>pango_font_description_merge ()</h3>
|
1295
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_merge (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
1296
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc_to_merge,
|
1297
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> replace_existing);</pre>
|
1298
|
+
<p>
|
1299
|
+
Merges the fields that are set in <em class="parameter"><code>desc_to_merge</code></em> into the fields in
|
1300
|
+
<em class="parameter"><code>desc</code></em>. If <em class="parameter"><code>replace_existing</code></em> is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, only fields in <em class="parameter"><code>desc</code></em> that
|
1301
|
+
are not already set are affected. If <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then fields that are
|
1302
|
+
already set will be replaced as well.
|
1303
|
+
</p>
|
1304
|
+
<p>
|
1305
|
+
If <em class="parameter"><code>desc_to_merge</code></em> is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, this function performs nothing.</p>
|
1306
|
+
<div class="variablelist"><table border="0">
|
1307
|
+
<col align="left" valign="top">
|
1308
|
+
<tbody>
|
1309
|
+
<tr>
|
1310
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1311
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1312
|
+
</td>
|
1313
|
+
</tr>
|
1314
|
+
<tr>
|
1315
|
+
<td><p><span class="term"><em class="parameter"><code>desc_to_merge</code></em> :</span></p></td>
|
1316
|
+
<td> the <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> to merge from, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1317
|
+
</td>
|
1318
|
+
</tr>
|
1319
|
+
<tr>
|
1320
|
+
<td><p><span class="term"><em class="parameter"><code>replace_existing</code></em> :</span></p></td>
|
1321
|
+
<td> if <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, replace fields in <em class="parameter"><code>desc</code></em> with the
|
1322
|
+
corresponding values from <em class="parameter"><code>desc_to_merge</code></em>, even if they
|
1323
|
+
are already exist.
|
1324
|
+
</td>
|
1325
|
+
</tr>
|
1326
|
+
</tbody>
|
1327
|
+
</table></div>
|
1328
|
+
</div>
|
1329
|
+
<hr>
|
1330
|
+
<div class="refsect2" title="pango_font_description_merge_static ()">
|
1331
|
+
<a name="pango-font-description-merge-static"></a><h3>pango_font_description_merge_static ()</h3>
|
1332
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_description_merge_static (<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
1333
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc_to_merge,
|
1334
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> replace_existing);</pre>
|
1335
|
+
<p>
|
1336
|
+
Like <a class="link" href="pango-Fonts.html#pango-font-description-merge" title="pango_font_description_merge ()"><code class="function">pango_font_description_merge()</code></a>, but only a shallow copy is made
|
1337
|
+
of the family name and other allocated fields. <em class="parameter"><code>desc</code></em> can only be
|
1338
|
+
used until <em class="parameter"><code>desc_to_merge</code></em> is modified or freed. This is meant
|
1339
|
+
to be used when the merged font description is only needed temporarily.</p>
|
1340
|
+
<div class="variablelist"><table border="0">
|
1341
|
+
<col align="left" valign="top">
|
1342
|
+
<tbody>
|
1343
|
+
<tr>
|
1344
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1345
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1346
|
+
</td>
|
1347
|
+
</tr>
|
1348
|
+
<tr>
|
1349
|
+
<td><p><span class="term"><em class="parameter"><code>desc_to_merge</code></em> :</span></p></td>
|
1350
|
+
<td> the <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> to merge from
|
1351
|
+
</td>
|
1352
|
+
</tr>
|
1353
|
+
<tr>
|
1354
|
+
<td><p><span class="term"><em class="parameter"><code>replace_existing</code></em> :</span></p></td>
|
1355
|
+
<td> if <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, replace fields in <em class="parameter"><code>desc</code></em> with the
|
1356
|
+
corresponding values from <em class="parameter"><code>desc_to_merge</code></em>, even if they
|
1357
|
+
are already exist.
|
1358
|
+
</td>
|
1359
|
+
</tr>
|
1360
|
+
</tbody>
|
1361
|
+
</table></div>
|
1362
|
+
</div>
|
1363
|
+
<hr>
|
1364
|
+
<div class="refsect2" title="pango_font_description_better_match ()">
|
1365
|
+
<a name="pango-font-description-better-match"></a><h3>pango_font_description_better_match ()</h3>
|
1366
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_font_description_better_match (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
1367
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *old_match,
|
1368
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *new_match);</pre>
|
1369
|
+
<p>
|
1370
|
+
Determines if the style attributes of <em class="parameter"><code>new_match</code></em> are a closer match
|
1371
|
+
for <em class="parameter"><code>desc</code></em> than those of <em class="parameter"><code>old_match</code></em> are, or if <em class="parameter"><code>old_match</code></em> is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>,
|
1372
|
+
determines if <em class="parameter"><code>new_match</code></em> is a match at all.
|
1373
|
+
Approximate matching is done for
|
1374
|
+
weight and style; other style attributes must match exactly.
|
1375
|
+
Style attributes are all attributes other than family and size-related
|
1376
|
+
attributes. Approximate matching for style considers PANGO_STYLE_OBLIQUE
|
1377
|
+
and PANGO_STYLE_ITALIC as matches, but not as good a match as when the
|
1378
|
+
styles are equal.
|
1379
|
+
</p>
|
1380
|
+
<p>
|
1381
|
+
Note that <em class="parameter"><code>old_match</code></em> must match <em class="parameter"><code>desc</code></em>.</p>
|
1382
|
+
<div class="variablelist"><table border="0">
|
1383
|
+
<col align="left" valign="top">
|
1384
|
+
<tbody>
|
1385
|
+
<tr>
|
1386
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1387
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1388
|
+
</td>
|
1389
|
+
</tr>
|
1390
|
+
<tr>
|
1391
|
+
<td><p><span class="term"><em class="parameter"><code>old_match</code></em> :</span></p></td>
|
1392
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1393
|
+
</td>
|
1394
|
+
</tr>
|
1395
|
+
<tr>
|
1396
|
+
<td><p><span class="term"><em class="parameter"><code>new_match</code></em> :</span></p></td>
|
1397
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1398
|
+
</td>
|
1399
|
+
</tr>
|
1400
|
+
<tr>
|
1401
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1402
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>new_match</code></em> is a better match
|
1403
|
+
</td>
|
1404
|
+
</tr>
|
1405
|
+
</tbody>
|
1406
|
+
</table></div>
|
1407
|
+
</div>
|
1408
|
+
<hr>
|
1409
|
+
<div class="refsect2" title="pango_font_description_from_string ()">
|
1410
|
+
<a name="pango-font-description-from-string"></a><h3>pango_font_description_from_string ()</h3>
|
1411
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * pango_font_description_from_string
|
1412
|
+
(const <span class="returnvalue">char</span> *str);</pre>
|
1413
|
+
<p>
|
1414
|
+
Creates a new font description from a string representation in the
|
1415
|
+
form "[FAMILY-LIST] [STYLE-OPTIONS] [SIZE]", where FAMILY-LIST is a
|
1416
|
+
comma separated list of families optionally terminated by a comma,
|
1417
|
+
STYLE_OPTIONS is a whitespace separated list of words where each WORD
|
1418
|
+
describes one of style, variant, weight, stretch, or gravity, and SIZE
|
1419
|
+
is a decimal number (size in points) or optionally followed by the
|
1420
|
+
unit modifier "px" for absolute size. Any one of the options may
|
1421
|
+
be absent. If FAMILY-LIST is absent, then the family_name field of
|
1422
|
+
the resulting font description will be initialized to <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. If
|
1423
|
+
STYLE-OPTIONS is missing, then all style options will be set to the
|
1424
|
+
default values. If SIZE is missing, the size in the resulting font
|
1425
|
+
description will be set to 0.</p>
|
1426
|
+
<div class="variablelist"><table border="0">
|
1427
|
+
<col align="left" valign="top">
|
1428
|
+
<tbody>
|
1429
|
+
<tr>
|
1430
|
+
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
|
1431
|
+
<td> string representation of a font description.
|
1432
|
+
</td>
|
1433
|
+
</tr>
|
1434
|
+
<tr>
|
1435
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1436
|
+
<td> a new <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>.
|
1437
|
+
</td>
|
1438
|
+
</tr>
|
1439
|
+
</tbody>
|
1440
|
+
</table></div>
|
1441
|
+
</div>
|
1442
|
+
<hr>
|
1443
|
+
<div class="refsect2" title="pango_font_description_to_string ()">
|
1444
|
+
<a name="pango-font-description-to-string"></a><h3>pango_font_description_to_string ()</h3>
|
1445
|
+
<pre class="programlisting"><span class="returnvalue">char</span> * pango_font_description_to_string (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
1446
|
+
<p>
|
1447
|
+
Creates a string representation of a font description. See
|
1448
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-from-string" title="pango_font_description_from_string ()"><code class="function">pango_font_description_from_string()</code></a> for a description of the
|
1449
|
+
format of the string representation. The family list in the
|
1450
|
+
string description will only have a terminating comma if the
|
1451
|
+
last word of the list is a valid style option.</p>
|
1452
|
+
<div class="variablelist"><table border="0">
|
1453
|
+
<col align="left" valign="top">
|
1454
|
+
<tbody>
|
1455
|
+
<tr>
|
1456
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1457
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1458
|
+
</td>
|
1459
|
+
</tr>
|
1460
|
+
<tr>
|
1461
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1462
|
+
<td> a new string that must be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
|
1463
|
+
</td>
|
1464
|
+
</tr>
|
1465
|
+
</tbody>
|
1466
|
+
</table></div>
|
1467
|
+
</div>
|
1468
|
+
<hr>
|
1469
|
+
<div class="refsect2" title="pango_font_description_to_filename ()">
|
1470
|
+
<a name="pango-font-description-to-filename"></a><h3>pango_font_description_to_filename ()</h3>
|
1471
|
+
<pre class="programlisting"><span class="returnvalue">char</span> * pango_font_description_to_filename (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
1472
|
+
<p>
|
1473
|
+
Creates a filename representation of a font description. The
|
1474
|
+
filename is identical to the result from calling
|
1475
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-to-string" title="pango_font_description_to_string ()"><code class="function">pango_font_description_to_string()</code></a>, but with underscores instead of
|
1476
|
+
characters that are untypical in filenames, and in lower case only.</p>
|
1477
|
+
<div class="variablelist"><table border="0">
|
1478
|
+
<col align="left" valign="top">
|
1479
|
+
<tbody>
|
1480
|
+
<tr>
|
1481
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1482
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
1483
|
+
</td>
|
1484
|
+
</tr>
|
1485
|
+
<tr>
|
1486
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1487
|
+
<td> a new string that must be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
|
1488
|
+
</td>
|
1489
|
+
</tr>
|
1490
|
+
</tbody>
|
1491
|
+
</table></div>
|
1492
|
+
</div>
|
1493
|
+
<hr>
|
1494
|
+
<div class="refsect2" title="PangoFontMetrics">
|
1495
|
+
<a name="PangoFontMetrics"></a><h3>PangoFontMetrics</h3>
|
1496
|
+
<pre class="programlisting">typedef struct {
|
1497
|
+
guint ref_count;
|
1498
|
+
|
1499
|
+
int ascent;
|
1500
|
+
int descent;
|
1501
|
+
int approximate_char_width;
|
1502
|
+
int approximate_digit_width;
|
1503
|
+
int underline_position;
|
1504
|
+
int underline_thickness;
|
1505
|
+
int strikethrough_position;
|
1506
|
+
int strikethrough_thickness;
|
1507
|
+
} PangoFontMetrics;
|
1508
|
+
</pre>
|
1509
|
+
<p>
|
1510
|
+
A <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure holds the overall metric information
|
1511
|
+
for a font (possibly restricted to a script). The fields of this
|
1512
|
+
structure are private to implementations of a font backend. See
|
1513
|
+
the documentation of the corresponding getters for documentation
|
1514
|
+
of their meaning.
|
1515
|
+
</p>
|
1516
|
+
<div class="variablelist"><table border="0">
|
1517
|
+
<col align="left" valign="top">
|
1518
|
+
<tbody>
|
1519
|
+
<tr>
|
1520
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="PangoFontMetrics.ref-count"></a>ref_count</code></em>;</span></p></td>
|
1521
|
+
<td>reference count. Used internally. See <a class="link" href="pango-Fonts.html#pango-font-metrics-ref" title="pango_font_metrics_ref ()"><code class="function">pango_font_metrics_ref()</code></a>
|
1522
|
+
and <a class="link" href="pango-Fonts.html#pango-font-metrics-unref" title="pango_font_metrics_unref ()"><code class="function">pango_font_metrics_unref()</code></a>.
|
1523
|
+
</td>
|
1524
|
+
</tr>
|
1525
|
+
<tr>
|
1526
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoFontMetrics.ascent"></a>ascent</code></em>;</span></p></td>
|
1527
|
+
<td>the distance from the baseline to the highest point of the glyphs of
|
1528
|
+
the font. This is positive in practically all fonts.
|
1529
|
+
</td>
|
1530
|
+
</tr>
|
1531
|
+
<tr>
|
1532
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoFontMetrics.descent"></a>descent</code></em>;</span></p></td>
|
1533
|
+
<td>the distance from the baseline to the lowest point of the glyphs of
|
1534
|
+
the font. This is positive in practically all fonts.
|
1535
|
+
</td>
|
1536
|
+
</tr>
|
1537
|
+
<tr>
|
1538
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoFontMetrics.approximate-char-width"></a>approximate_char_width</code></em>;</span></p></td>
|
1539
|
+
<td>approximate average width of the regular glyphs of
|
1540
|
+
the font. Note that for this calculation, East Asian characters
|
1541
|
+
(those passing <a href="/usr/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#g-unichar-iswide"><code class="function">g_unichar_iswide()</code></a>) are counted as double-width.
|
1542
|
+
This produces a more uniform value for this measure across languages
|
1543
|
+
and results in more uniform and more expected UI sizes.
|
1544
|
+
</td>
|
1545
|
+
</tr>
|
1546
|
+
<tr>
|
1547
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoFontMetrics.approximate-digit-width"></a>approximate_digit_width</code></em>;</span></p></td>
|
1548
|
+
<td>approximate average width of the glyphs for digits
|
1549
|
+
of the font.
|
1550
|
+
</td>
|
1551
|
+
</tr>
|
1552
|
+
<tr>
|
1553
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoFontMetrics.underline-position"></a>underline_position</code></em>;</span></p></td>
|
1554
|
+
<td>position of the underline. This is normally negative.
|
1555
|
+
</td>
|
1556
|
+
</tr>
|
1557
|
+
<tr>
|
1558
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoFontMetrics.underline-thickness"></a>underline_thickness</code></em>;</span></p></td>
|
1559
|
+
<td>thickness of the underline.
|
1560
|
+
</td>
|
1561
|
+
</tr>
|
1562
|
+
<tr>
|
1563
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoFontMetrics.strikethrough-position"></a>strikethrough_position</code></em>;</span></p></td>
|
1564
|
+
<td>position of the strikethrough line. This is
|
1565
|
+
normally positive.
|
1566
|
+
</td>
|
1567
|
+
</tr>
|
1568
|
+
<tr>
|
1569
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoFontMetrics.strikethrough-thickness"></a>strikethrough_thickness</code></em>;</span></p></td>
|
1570
|
+
<td>thickness of the strikethrough line.
|
1571
|
+
</td>
|
1572
|
+
</tr>
|
1573
|
+
</tbody>
|
1574
|
+
</table></div>
|
1575
|
+
</div>
|
1576
|
+
<hr>
|
1577
|
+
<div class="refsect2" title="PANGO_TYPE_FONT_METRICS">
|
1578
|
+
<a name="PANGO-TYPE-FONT-METRICS:CAPS"></a><h3>PANGO_TYPE_FONT_METRICS</h3>
|
1579
|
+
<pre class="programlisting">#define PANGO_TYPE_FONT_METRICS (pango_font_metrics_get_type ())
|
1580
|
+
</pre>
|
1581
|
+
<p>
|
1582
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a>.
|
1583
|
+
</p>
|
1584
|
+
</div>
|
1585
|
+
<hr>
|
1586
|
+
<div class="refsect2" title="pango_font_metrics_ref ()">
|
1587
|
+
<a name="pango-font-metrics-ref"></a><h3>pango_font_metrics_ref ()</h3>
|
1588
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> * pango_font_metrics_ref (<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1589
|
+
<p>
|
1590
|
+
Increase the reference count of a font metrics structure by one.</p>
|
1591
|
+
<div class="variablelist"><table border="0">
|
1592
|
+
<col align="left" valign="top">
|
1593
|
+
<tbody>
|
1594
|
+
<tr>
|
1595
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1596
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1597
|
+
</td>
|
1598
|
+
</tr>
|
1599
|
+
<tr>
|
1600
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1601
|
+
<td> <em class="parameter"><code>metrics</code></em>
|
1602
|
+
</td>
|
1603
|
+
</tr>
|
1604
|
+
</tbody>
|
1605
|
+
</table></div>
|
1606
|
+
</div>
|
1607
|
+
<hr>
|
1608
|
+
<div class="refsect2" title="pango_font_metrics_unref ()">
|
1609
|
+
<a name="pango-font-metrics-unref"></a><h3>pango_font_metrics_unref ()</h3>
|
1610
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_metrics_unref (<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1611
|
+
<p>
|
1612
|
+
Decrease the reference count of a font metrics structure by one. If
|
1613
|
+
the result is zero, frees the structure and any associated
|
1614
|
+
memory.</p>
|
1615
|
+
<div class="variablelist"><table border="0">
|
1616
|
+
<col align="left" valign="top">
|
1617
|
+
<tbody><tr>
|
1618
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1619
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1620
|
+
</td>
|
1621
|
+
</tr></tbody>
|
1622
|
+
</table></div>
|
1623
|
+
</div>
|
1624
|
+
<hr>
|
1625
|
+
<div class="refsect2" title="pango_font_metrics_get_ascent ()">
|
1626
|
+
<a name="pango-font-metrics-get-ascent"></a><h3>pango_font_metrics_get_ascent ()</h3>
|
1627
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_font_metrics_get_ascent (<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1628
|
+
<p>
|
1629
|
+
Gets the ascent from a font metrics structure. The ascent is
|
1630
|
+
the distance from the baseline to the logical top of a line
|
1631
|
+
of text. (The logical top may be above or below the top of the
|
1632
|
+
actual drawn ink. It is necessary to lay out the text to figure
|
1633
|
+
where the ink will be.)</p>
|
1634
|
+
<div class="variablelist"><table border="0">
|
1635
|
+
<col align="left" valign="top">
|
1636
|
+
<tbody>
|
1637
|
+
<tr>
|
1638
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1639
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure
|
1640
|
+
</td>
|
1641
|
+
</tr>
|
1642
|
+
<tr>
|
1643
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1644
|
+
<td> the ascent, in Pango units.
|
1645
|
+
</td>
|
1646
|
+
</tr>
|
1647
|
+
</tbody>
|
1648
|
+
</table></div>
|
1649
|
+
</div>
|
1650
|
+
<hr>
|
1651
|
+
<div class="refsect2" title="pango_font_metrics_get_descent ()">
|
1652
|
+
<a name="pango-font-metrics-get-descent"></a><h3>pango_font_metrics_get_descent ()</h3>
|
1653
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_font_metrics_get_descent (<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1654
|
+
<p>
|
1655
|
+
Gets the descent from a font metrics structure. The descent is
|
1656
|
+
the distance from the baseline to the logical bottom of a line
|
1657
|
+
of text. (The logical bottom may be above or below the bottom of the
|
1658
|
+
actual drawn ink. It is necessary to lay out the text to figure
|
1659
|
+
where the ink will be.)</p>
|
1660
|
+
<div class="variablelist"><table border="0">
|
1661
|
+
<col align="left" valign="top">
|
1662
|
+
<tbody>
|
1663
|
+
<tr>
|
1664
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1665
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure
|
1666
|
+
</td>
|
1667
|
+
</tr>
|
1668
|
+
<tr>
|
1669
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1670
|
+
<td> the descent, in Pango units.
|
1671
|
+
</td>
|
1672
|
+
</tr>
|
1673
|
+
</tbody>
|
1674
|
+
</table></div>
|
1675
|
+
</div>
|
1676
|
+
<hr>
|
1677
|
+
<div class="refsect2" title="pango_font_metrics_get_approximate_char_width ()">
|
1678
|
+
<a name="pango-font-metrics-get-approximate-char-width"></a><h3>pango_font_metrics_get_approximate_char_width ()</h3>
|
1679
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_font_metrics_get_approximate_char_width
|
1680
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1681
|
+
<p>
|
1682
|
+
Gets the approximate character width for a font metrics structure.
|
1683
|
+
This is merely a representative value useful, for example, for
|
1684
|
+
determining the initial size for a window. Actual characters in
|
1685
|
+
text will be wider and narrower than this.</p>
|
1686
|
+
<div class="variablelist"><table border="0">
|
1687
|
+
<col align="left" valign="top">
|
1688
|
+
<tbody>
|
1689
|
+
<tr>
|
1690
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1691
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure
|
1692
|
+
</td>
|
1693
|
+
</tr>
|
1694
|
+
<tr>
|
1695
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1696
|
+
<td> the character width, in Pango units.
|
1697
|
+
</td>
|
1698
|
+
</tr>
|
1699
|
+
</tbody>
|
1700
|
+
</table></div>
|
1701
|
+
</div>
|
1702
|
+
<hr>
|
1703
|
+
<div class="refsect2" title="pango_font_metrics_get_approximate_digit_width ()">
|
1704
|
+
<a name="pango-font-metrics-get-approximate-digit-width"></a><h3>pango_font_metrics_get_approximate_digit_width ()</h3>
|
1705
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_font_metrics_get_approximate_digit_width
|
1706
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1707
|
+
<p>
|
1708
|
+
Gets the approximate digit width for a font metrics structure.
|
1709
|
+
This is merely a representative value useful, for example, for
|
1710
|
+
determining the initial size for a window. Actual digits in
|
1711
|
+
text can be wider or narrower than this, though this value
|
1712
|
+
is generally somewhat more accurate than the result of
|
1713
|
+
<a class="link" href="pango-Fonts.html#pango-font-metrics-get-approximate-char-width" title="pango_font_metrics_get_approximate_char_width ()"><code class="function">pango_font_metrics_get_approximate_char_width()</code></a> for digits.</p>
|
1714
|
+
<div class="variablelist"><table border="0">
|
1715
|
+
<col align="left" valign="top">
|
1716
|
+
<tbody>
|
1717
|
+
<tr>
|
1718
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1719
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure
|
1720
|
+
</td>
|
1721
|
+
</tr>
|
1722
|
+
<tr>
|
1723
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1724
|
+
<td> the digit width, in Pango units.
|
1725
|
+
</td>
|
1726
|
+
</tr>
|
1727
|
+
</tbody>
|
1728
|
+
</table></div>
|
1729
|
+
</div>
|
1730
|
+
<hr>
|
1731
|
+
<div class="refsect2" title="pango_font_metrics_get_underline_thickness ()">
|
1732
|
+
<a name="pango-font-metrics-get-underline-thickness"></a><h3>pango_font_metrics_get_underline_thickness ()</h3>
|
1733
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_font_metrics_get_underline_thickness
|
1734
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1735
|
+
<p>
|
1736
|
+
Gets the suggested thickness to draw for the underline.</p>
|
1737
|
+
<div class="variablelist"><table border="0">
|
1738
|
+
<col align="left" valign="top">
|
1739
|
+
<tbody>
|
1740
|
+
<tr>
|
1741
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1742
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure
|
1743
|
+
</td>
|
1744
|
+
</tr>
|
1745
|
+
<tr>
|
1746
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1747
|
+
<td> the suggested underline thickness, in Pango units.
|
1748
|
+
|
1749
|
+
</td>
|
1750
|
+
</tr>
|
1751
|
+
</tbody>
|
1752
|
+
</table></div>
|
1753
|
+
<p class="since">Since 1.6</p>
|
1754
|
+
</div>
|
1755
|
+
<hr>
|
1756
|
+
<div class="refsect2" title="pango_font_metrics_get_underline_position ()">
|
1757
|
+
<a name="pango-font-metrics-get-underline-position"></a><h3>pango_font_metrics_get_underline_position ()</h3>
|
1758
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_font_metrics_get_underline_position
|
1759
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1760
|
+
<p>
|
1761
|
+
Gets the suggested position to draw the underline.
|
1762
|
+
The value returned is the distance <span class="emphasis"><em>above</em></span> the
|
1763
|
+
baseline of the top of the underline. Since most fonts have
|
1764
|
+
underline positions beneath the baseline, this value is typically
|
1765
|
+
negative.</p>
|
1766
|
+
<div class="variablelist"><table border="0">
|
1767
|
+
<col align="left" valign="top">
|
1768
|
+
<tbody>
|
1769
|
+
<tr>
|
1770
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1771
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure
|
1772
|
+
</td>
|
1773
|
+
</tr>
|
1774
|
+
<tr>
|
1775
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1776
|
+
<td> the suggested underline position, in Pango units.
|
1777
|
+
|
1778
|
+
</td>
|
1779
|
+
</tr>
|
1780
|
+
</tbody>
|
1781
|
+
</table></div>
|
1782
|
+
<p class="since">Since 1.6</p>
|
1783
|
+
</div>
|
1784
|
+
<hr>
|
1785
|
+
<div class="refsect2" title="pango_font_metrics_get_strikethrough_thickness ()">
|
1786
|
+
<a name="pango-font-metrics-get-strikethrough-thickness"></a><h3>pango_font_metrics_get_strikethrough_thickness ()</h3>
|
1787
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_font_metrics_get_strikethrough_thickness
|
1788
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1789
|
+
<p>
|
1790
|
+
Gets the suggested thickness to draw for the strikethrough.</p>
|
1791
|
+
<div class="variablelist"><table border="0">
|
1792
|
+
<col align="left" valign="top">
|
1793
|
+
<tbody>
|
1794
|
+
<tr>
|
1795
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1796
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure
|
1797
|
+
</td>
|
1798
|
+
</tr>
|
1799
|
+
<tr>
|
1800
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1801
|
+
<td> the suggested strikethrough thickness, in Pango units.
|
1802
|
+
|
1803
|
+
</td>
|
1804
|
+
</tr>
|
1805
|
+
</tbody>
|
1806
|
+
</table></div>
|
1807
|
+
<p class="since">Since 1.6</p>
|
1808
|
+
</div>
|
1809
|
+
<hr>
|
1810
|
+
<div class="refsect2" title="pango_font_metrics_get_strikethrough_position ()">
|
1811
|
+
<a name="pango-font-metrics-get-strikethrough-position"></a><h3>pango_font_metrics_get_strikethrough_position ()</h3>
|
1812
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_font_metrics_get_strikethrough_position
|
1813
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> *metrics);</pre>
|
1814
|
+
<p>
|
1815
|
+
Gets the suggested position to draw the strikethrough.
|
1816
|
+
The value returned is the distance <span class="emphasis"><em>above</em></span> the
|
1817
|
+
baseline of the top of the strikethrough.</p>
|
1818
|
+
<div class="variablelist"><table border="0">
|
1819
|
+
<col align="left" valign="top">
|
1820
|
+
<tbody>
|
1821
|
+
<tr>
|
1822
|
+
<td><p><span class="term"><em class="parameter"><code>metrics</code></em> :</span></p></td>
|
1823
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> structure
|
1824
|
+
</td>
|
1825
|
+
</tr>
|
1826
|
+
<tr>
|
1827
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1828
|
+
<td> the suggested strikethrough position, in Pango units.
|
1829
|
+
|
1830
|
+
</td>
|
1831
|
+
</tr>
|
1832
|
+
</tbody>
|
1833
|
+
</table></div>
|
1834
|
+
<p class="since">Since 1.6</p>
|
1835
|
+
</div>
|
1836
|
+
<hr>
|
1837
|
+
<div class="refsect2" title="PangoFont">
|
1838
|
+
<a name="PangoFont-struct"></a><h3>PangoFont</h3>
|
1839
|
+
<pre class="programlisting">typedef struct _PangoFont PangoFont;</pre>
|
1840
|
+
<p>
|
1841
|
+
The <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> structure is used to represent
|
1842
|
+
a font in a rendering-system-independent matter.
|
1843
|
+
To create an implementation of a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>,
|
1844
|
+
the rendering-system specific code should allocate
|
1845
|
+
a larger structure that contains a nested
|
1846
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>, fill in the <em class="structfield"><code>klass</code></em> member of
|
1847
|
+
the nested <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> with a pointer to
|
1848
|
+
a appropriate <span class="type">PangoFontClass</span>, then call
|
1849
|
+
<code class="function">pango_font_init()</code> on the structure.
|
1850
|
+
</p>
|
1851
|
+
<p>
|
1852
|
+
The <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> structure contains one member
|
1853
|
+
which the implementation fills in.
|
1854
|
+
</p>
|
1855
|
+
</div>
|
1856
|
+
<hr>
|
1857
|
+
<div class="refsect2" title="PANGO_TYPE_FONT">
|
1858
|
+
<a name="PANGO-TYPE-FONT:CAPS"></a><h3>PANGO_TYPE_FONT</h3>
|
1859
|
+
<pre class="programlisting">#define PANGO_TYPE_FONT (pango_font_get_type ())
|
1860
|
+
</pre>
|
1861
|
+
<p>
|
1862
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.
|
1863
|
+
</p>
|
1864
|
+
</div>
|
1865
|
+
<hr>
|
1866
|
+
<div class="refsect2" title="PANGO_FONT()">
|
1867
|
+
<a name="PANGO-FONT:CAPS"></a><h3>PANGO_FONT()</h3>
|
1868
|
+
<pre class="programlisting">#define PANGO_FONT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PANGO_TYPE_FONT, PangoFont))
|
1869
|
+
</pre>
|
1870
|
+
<p>
|
1871
|
+
Casts a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.
|
1872
|
+
</p>
|
1873
|
+
<div class="variablelist"><table border="0">
|
1874
|
+
<col align="left" valign="top">
|
1875
|
+
<tbody><tr>
|
1876
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
1877
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
1878
|
+
</td>
|
1879
|
+
</tr></tbody>
|
1880
|
+
</table></div>
|
1881
|
+
</div>
|
1882
|
+
<hr>
|
1883
|
+
<div class="refsect2" title="PANGO_IS_FONT()">
|
1884
|
+
<a name="PANGO-IS-FONT:CAPS"></a><h3>PANGO_IS_FONT()</h3>
|
1885
|
+
<pre class="programlisting">#define PANGO_IS_FONT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANGO_TYPE_FONT))
|
1886
|
+
</pre>
|
1887
|
+
<p>
|
1888
|
+
Returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.
|
1889
|
+
</p>
|
1890
|
+
<div class="variablelist"><table border="0">
|
1891
|
+
<col align="left" valign="top">
|
1892
|
+
<tbody><tr>
|
1893
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
1894
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
1895
|
+
</td>
|
1896
|
+
</tr></tbody>
|
1897
|
+
</table></div>
|
1898
|
+
</div>
|
1899
|
+
<hr>
|
1900
|
+
<div class="refsect2" title="pango_font_find_shaper ()">
|
1901
|
+
<a name="pango-font-find-shaper"></a><h3>pango_font_find_shaper ()</h3>
|
1902
|
+
<pre class="programlisting"><a class="link" href="PangoEngineShape.html" title="PangoEngineShape"><span class="returnvalue">PangoEngineShape</span></a> * pango_font_find_shaper (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
1903
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language,
|
1904
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a> ch);</pre>
|
1905
|
+
<p>
|
1906
|
+
Finds the best matching shaper for a font for a particular
|
1907
|
+
language tag and character point.</p>
|
1908
|
+
<div class="variablelist"><table border="0">
|
1909
|
+
<col align="left" valign="top">
|
1910
|
+
<tbody>
|
1911
|
+
<tr>
|
1912
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
1913
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>
|
1914
|
+
</td>
|
1915
|
+
</tr>
|
1916
|
+
<tr>
|
1917
|
+
<td><p><span class="term"><em class="parameter"><code>language</code></em> :</span></p></td>
|
1918
|
+
<td> the language tag
|
1919
|
+
</td>
|
1920
|
+
</tr>
|
1921
|
+
<tr>
|
1922
|
+
<td><p><span class="term"><em class="parameter"><code>ch</code></em> :</span></p></td>
|
1923
|
+
<td> a Unicode character.
|
1924
|
+
</td>
|
1925
|
+
</tr>
|
1926
|
+
<tr>
|
1927
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1928
|
+
<td> the best matching shaper.
|
1929
|
+
</td>
|
1930
|
+
</tr>
|
1931
|
+
</tbody>
|
1932
|
+
</table></div>
|
1933
|
+
</div>
|
1934
|
+
<hr>
|
1935
|
+
<div class="refsect2" title="pango_font_describe ()">
|
1936
|
+
<a name="pango-font-describe"></a><h3>pango_font_describe ()</h3>
|
1937
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * pango_font_describe (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font);</pre>
|
1938
|
+
<p>
|
1939
|
+
Returns a description of the font, with font size set in points.
|
1940
|
+
Use <a class="link" href="pango-Fonts.html#pango-font-describe-with-absolute-size" title="pango_font_describe_with_absolute_size ()"><code class="function">pango_font_describe_with_absolute_size()</code></a> if you want the font
|
1941
|
+
size in device units.</p>
|
1942
|
+
<div class="variablelist"><table border="0">
|
1943
|
+
<col align="left" valign="top">
|
1944
|
+
<tbody>
|
1945
|
+
<tr>
|
1946
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
1947
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>
|
1948
|
+
</td>
|
1949
|
+
</tr>
|
1950
|
+
<tr>
|
1951
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1952
|
+
<td> a newly-allocated <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> object.
|
1953
|
+
</td>
|
1954
|
+
</tr>
|
1955
|
+
</tbody>
|
1956
|
+
</table></div>
|
1957
|
+
</div>
|
1958
|
+
<hr>
|
1959
|
+
<div class="refsect2" title="pango_font_describe_with_absolute_size ()">
|
1960
|
+
<a name="pango-font-describe-with-absolute-size"></a><h3>pango_font_describe_with_absolute_size ()</h3>
|
1961
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * pango_font_describe_with_absolute_size
|
1962
|
+
(<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font);</pre>
|
1963
|
+
<p>
|
1964
|
+
Returns a description of the font, with absolute font size set
|
1965
|
+
(in device units). Use <a class="link" href="pango-Fonts.html#pango-font-describe" title="pango_font_describe ()"><code class="function">pango_font_describe()</code></a> if you want the font
|
1966
|
+
size in points.</p>
|
1967
|
+
<div class="variablelist"><table border="0">
|
1968
|
+
<col align="left" valign="top">
|
1969
|
+
<tbody>
|
1970
|
+
<tr>
|
1971
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
1972
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>
|
1973
|
+
</td>
|
1974
|
+
</tr>
|
1975
|
+
<tr>
|
1976
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1977
|
+
<td> a newly-allocated <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> object.
|
1978
|
+
|
1979
|
+
</td>
|
1980
|
+
</tr>
|
1981
|
+
</tbody>
|
1982
|
+
</table></div>
|
1983
|
+
<p class="since">Since 1.14</p>
|
1984
|
+
</div>
|
1985
|
+
<hr>
|
1986
|
+
<div class="refsect2" title="pango_font_get_coverage ()">
|
1987
|
+
<a name="pango-font-get-coverage"></a><h3>pango_font_get_coverage ()</h3>
|
1988
|
+
<pre class="programlisting"><a class="link" href="pango-Coverage-Maps.html#PangoCoverage" title="PangoCoverage"><span class="returnvalue">PangoCoverage</span></a> * pango_font_get_coverage (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
1989
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);</pre>
|
1990
|
+
<p>
|
1991
|
+
Computes the coverage map for a given font and language tag.</p>
|
1992
|
+
<div class="variablelist"><table border="0">
|
1993
|
+
<col align="left" valign="top">
|
1994
|
+
<tbody>
|
1995
|
+
<tr>
|
1996
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
1997
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>
|
1998
|
+
</td>
|
1999
|
+
</tr>
|
2000
|
+
<tr>
|
2001
|
+
<td><p><span class="term"><em class="parameter"><code>language</code></em> :</span></p></td>
|
2002
|
+
<td> the language tag
|
2003
|
+
</td>
|
2004
|
+
</tr>
|
2005
|
+
<tr>
|
2006
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2007
|
+
<td> a newly-allocated <a class="link" href="pango-Coverage-Maps.html#PangoCoverage" title="PangoCoverage"><span class="type">PangoCoverage</span></a> object.
|
2008
|
+
</td>
|
2009
|
+
</tr>
|
2010
|
+
</tbody>
|
2011
|
+
</table></div>
|
2012
|
+
</div>
|
2013
|
+
<hr>
|
2014
|
+
<div class="refsect2" title="pango_font_get_glyph_extents ()">
|
2015
|
+
<a name="pango-font-get-glyph-extents"></a><h3>pango_font_get_glyph_extents ()</h3>
|
2016
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_get_glyph_extents (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
2017
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="returnvalue">PangoGlyph</span></a> glyph,
|
2018
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
2019
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect);</pre>
|
2020
|
+
<p>
|
2021
|
+
Gets the logical and ink extents of a glyph within a font. The
|
2022
|
+
coordinate system for each rectangle has its origin at the
|
2023
|
+
base line and horizontal origin of the character with increasing
|
2024
|
+
coordinates extending to the right and down. The macros <a class="link" href="pango-Glyph-Storage.html#PANGO-ASCENT:CAPS" title="PANGO_ASCENT()"><code class="function">PANGO_ASCENT()</code></a>,
|
2025
|
+
<a class="link" href="pango-Glyph-Storage.html#PANGO-DESCENT:CAPS" title="PANGO_DESCENT()"><code class="function">PANGO_DESCENT()</code></a>, <a class="link" href="pango-Glyph-Storage.html#PANGO-LBEARING:CAPS" title="PANGO_LBEARING()"><code class="function">PANGO_LBEARING()</code></a>, and <a class="link" href="pango-Glyph-Storage.html#PANGO-RBEARING:CAPS" title="PANGO_RBEARING()"><code class="function">PANGO_RBEARING()</code></a> can be used to convert
|
2026
|
+
from the extents rectangle to more traditional font metrics. The units
|
2027
|
+
of the rectangles are in 1/PANGO_SCALE of a device unit.
|
2028
|
+
</p>
|
2029
|
+
<p>
|
2030
|
+
If <em class="parameter"><code>font</code></em> is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, this function gracefully sets some sane values in the
|
2031
|
+
output variables and returns.</p>
|
2032
|
+
<div class="variablelist"><table border="0">
|
2033
|
+
<col align="left" valign="top">
|
2034
|
+
<tbody>
|
2035
|
+
<tr>
|
2036
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
2037
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>
|
2038
|
+
</td>
|
2039
|
+
</tr>
|
2040
|
+
<tr>
|
2041
|
+
<td><p><span class="term"><em class="parameter"><code>glyph</code></em> :</span></p></td>
|
2042
|
+
<td> the glyph index
|
2043
|
+
</td>
|
2044
|
+
</tr>
|
2045
|
+
<tr>
|
2046
|
+
<td><p><span class="term"><em class="parameter"><code>ink_rect</code></em> :</span></p></td>
|
2047
|
+
<td> rectangle used to store the extents of the glyph as drawn
|
2048
|
+
or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to indicate that the result is not needed.
|
2049
|
+
</td>
|
2050
|
+
</tr>
|
2051
|
+
<tr>
|
2052
|
+
<td><p><span class="term"><em class="parameter"><code>logical_rect</code></em> :</span></p></td>
|
2053
|
+
<td> rectangle used to store the logical extents of the glyph
|
2054
|
+
or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to indicate that the result is not needed.
|
2055
|
+
</td>
|
2056
|
+
</tr>
|
2057
|
+
</tbody>
|
2058
|
+
</table></div>
|
2059
|
+
</div>
|
2060
|
+
<hr>
|
2061
|
+
<div class="refsect2" title="pango_font_get_metrics ()">
|
2062
|
+
<a name="pango-font-get-metrics"></a><h3>pango_font_get_metrics ()</h3>
|
2063
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> * pango_font_get_metrics (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
2064
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);</pre>
|
2065
|
+
<p>
|
2066
|
+
Gets overall metric information for a font. Since the metrics may be
|
2067
|
+
substantially different for different scripts, a language tag can
|
2068
|
+
be provided to indicate that the metrics should be retrieved that
|
2069
|
+
correspond to the script(s) used by that language.
|
2070
|
+
</p>
|
2071
|
+
<p>
|
2072
|
+
If <em class="parameter"><code>font</code></em> is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, this function gracefully sets some sane values in the
|
2073
|
+
output variables and returns.</p>
|
2074
|
+
<div class="variablelist"><table border="0">
|
2075
|
+
<col align="left" valign="top">
|
2076
|
+
<tbody>
|
2077
|
+
<tr>
|
2078
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
2079
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>
|
2080
|
+
</td>
|
2081
|
+
</tr>
|
2082
|
+
<tr>
|
2083
|
+
<td><p><span class="term"><em class="parameter"><code>language</code></em> :</span></p></td>
|
2084
|
+
<td> language tag used to determine which script to get the metrics
|
2085
|
+
for, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to indicate to get the metrics for the entire
|
2086
|
+
font.
|
2087
|
+
</td>
|
2088
|
+
</tr>
|
2089
|
+
<tr>
|
2090
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2091
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> object. The caller must call <a class="link" href="pango-Fonts.html#pango-font-metrics-unref" title="pango_font_metrics_unref ()"><code class="function">pango_font_metrics_unref()</code></a>
|
2092
|
+
when finished using the object.
|
2093
|
+
</td>
|
2094
|
+
</tr>
|
2095
|
+
</tbody>
|
2096
|
+
</table></div>
|
2097
|
+
</div>
|
2098
|
+
<hr>
|
2099
|
+
<div class="refsect2" title="pango_font_get_font_map ()">
|
2100
|
+
<a name="pango-font-get-font-map"></a><h3>pango_font_get_font_map ()</h3>
|
2101
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> * pango_font_get_font_map (<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font);</pre>
|
2102
|
+
<p>
|
2103
|
+
Gets the font map for which the font was created.
|
2104
|
+
</p>
|
2105
|
+
<p>
|
2106
|
+
Note that the font maintains a <em class="firstterm">weak</em> reference
|
2107
|
+
to the font map, so if all references to font map are dropped, the font
|
2108
|
+
map will be finalized even if there are fonts created with the font
|
2109
|
+
map that are still alive. In that case this function will return <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
2110
|
+
It is the responsibility of the user to ensure that the font map is kept
|
2111
|
+
alive. In most uses this is not an issue as a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> holds
|
2112
|
+
a reference to the font map.</p>
|
2113
|
+
<div class="variablelist"><table border="0">
|
2114
|
+
<col align="left" valign="top">
|
2115
|
+
<tbody>
|
2116
|
+
<tr>
|
2117
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
2118
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
2119
|
+
</td>
|
2120
|
+
</tr>
|
2121
|
+
<tr>
|
2122
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2123
|
+
<td> the <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> for the font, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>font</code></em> is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
2124
|
+
|
2125
|
+
</td>
|
2126
|
+
</tr>
|
2127
|
+
</tbody>
|
2128
|
+
</table></div>
|
2129
|
+
<p class="since">Since 1.10</p>
|
2130
|
+
</div>
|
2131
|
+
<hr>
|
2132
|
+
<div class="refsect2" title="PangoFontFamily">
|
2133
|
+
<a name="PangoFontFamily-struct"></a><h3>PangoFontFamily</h3>
|
2134
|
+
<pre class="programlisting">typedef struct _PangoFontFamily PangoFontFamily;</pre>
|
2135
|
+
<p>
|
2136
|
+
The <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a> structure is used to represent a family of related
|
2137
|
+
font faces. The faces in a family share a common design, but differ in
|
2138
|
+
slant, weight, width and other aspects.
|
2139
|
+
</p>
|
2140
|
+
</div>
|
2141
|
+
<hr>
|
2142
|
+
<div class="refsect2" title="PANGO_TYPE_FONT_FAMILY">
|
2143
|
+
<a name="PANGO-TYPE-FONT-FAMILY:CAPS"></a><h3>PANGO_TYPE_FONT_FAMILY</h3>
|
2144
|
+
<pre class="programlisting">#define PANGO_TYPE_FONT_FAMILY (pango_font_family_get_type ())
|
2145
|
+
</pre>
|
2146
|
+
<p>
|
2147
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a>.
|
2148
|
+
</p>
|
2149
|
+
</div>
|
2150
|
+
<hr>
|
2151
|
+
<div class="refsect2" title="PANGO_FONT_FAMILY()">
|
2152
|
+
<a name="PANGO-FONT-FAMILY:CAPS"></a><h3>PANGO_FONT_FAMILY()</h3>
|
2153
|
+
<pre class="programlisting">#define PANGO_FONT_FAMILY(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PANGO_TYPE_FONT_FAMILY, PangoFontFamily))
|
2154
|
+
</pre>
|
2155
|
+
<p>
|
2156
|
+
Casts a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to a <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a>.
|
2157
|
+
</p>
|
2158
|
+
<div class="variablelist"><table border="0">
|
2159
|
+
<col align="left" valign="top">
|
2160
|
+
<tbody><tr>
|
2161
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
2162
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
2163
|
+
</td>
|
2164
|
+
</tr></tbody>
|
2165
|
+
</table></div>
|
2166
|
+
</div>
|
2167
|
+
<hr>
|
2168
|
+
<div class="refsect2" title="PANGO_IS_FONT_FAMILY()">
|
2169
|
+
<a name="PANGO-IS-FONT-FAMILY:CAPS"></a><h3>PANGO_IS_FONT_FAMILY()</h3>
|
2170
|
+
<pre class="programlisting">#define PANGO_IS_FONT_FAMILY(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANGO_TYPE_FONT_FAMILY))
|
2171
|
+
</pre>
|
2172
|
+
<p>
|
2173
|
+
Returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a>.
|
2174
|
+
</p>
|
2175
|
+
<div class="variablelist"><table border="0">
|
2176
|
+
<col align="left" valign="top">
|
2177
|
+
<tbody><tr>
|
2178
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
2179
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
2180
|
+
</td>
|
2181
|
+
</tr></tbody>
|
2182
|
+
</table></div>
|
2183
|
+
</div>
|
2184
|
+
<hr>
|
2185
|
+
<div class="refsect2" title="pango_font_family_get_name ()">
|
2186
|
+
<a name="pango-font-family-get-name"></a><h3>pango_font_family_get_name ()</h3>
|
2187
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> * pango_font_family_get_name (<a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="returnvalue">PangoFontFamily</span></a> *family);</pre>
|
2188
|
+
<p>
|
2189
|
+
Gets the name of the family. The name is unique among all
|
2190
|
+
fonts for the font backend and can be used in a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a>
|
2191
|
+
to specify that a face from this family is desired.</p>
|
2192
|
+
<div class="variablelist"><table border="0">
|
2193
|
+
<col align="left" valign="top">
|
2194
|
+
<tbody>
|
2195
|
+
<tr>
|
2196
|
+
<td><p><span class="term"><em class="parameter"><code>family</code></em> :</span></p></td>
|
2197
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a>
|
2198
|
+
</td>
|
2199
|
+
</tr>
|
2200
|
+
<tr>
|
2201
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2202
|
+
<td> the name of the family. This string is owned
|
2203
|
+
by the family object and must not be modified or freed.
|
2204
|
+
</td>
|
2205
|
+
</tr>
|
2206
|
+
</tbody>
|
2207
|
+
</table></div>
|
2208
|
+
</div>
|
2209
|
+
<hr>
|
2210
|
+
<div class="refsect2" title="pango_font_family_is_monospace ()">
|
2211
|
+
<a name="pango-font-family-is-monospace"></a><h3>pango_font_family_is_monospace ()</h3>
|
2212
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_font_family_is_monospace (<a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="returnvalue">PangoFontFamily</span></a> *family);</pre>
|
2213
|
+
<p>
|
2214
|
+
A monospace font is a font designed for text display where the the
|
2215
|
+
characters form a regular grid. For Western languages this would
|
2216
|
+
mean that the advance width of all characters are the same, but
|
2217
|
+
this categorization also includes Asian fonts which include
|
2218
|
+
double-width characters: characters that occupy two grid cells.
|
2219
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#g-unichar-iswide"><code class="function">g_unichar_iswide()</code></a> returns a result that indicates whether a
|
2220
|
+
character is typically double-width in a monospace font.
|
2221
|
+
</p>
|
2222
|
+
<p>
|
2223
|
+
The best way to find out the grid-cell size is to call
|
2224
|
+
<a class="link" href="pango-Fonts.html#pango-font-metrics-get-approximate-digit-width" title="pango_font_metrics_get_approximate_digit_width ()"><code class="function">pango_font_metrics_get_approximate_digit_width()</code></a>, since the results
|
2225
|
+
of <a class="link" href="pango-Fonts.html#pango-font-metrics-get-approximate-char-width" title="pango_font_metrics_get_approximate_char_width ()"><code class="function">pango_font_metrics_get_approximate_char_width()</code></a> may be affected
|
2226
|
+
by double-width characters.</p>
|
2227
|
+
<div class="variablelist"><table border="0">
|
2228
|
+
<col align="left" valign="top">
|
2229
|
+
<tbody>
|
2230
|
+
<tr>
|
2231
|
+
<td><p><span class="term"><em class="parameter"><code>family</code></em> :</span></p></td>
|
2232
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a>
|
2233
|
+
</td>
|
2234
|
+
</tr>
|
2235
|
+
<tr>
|
2236
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2237
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the family is monospace.
|
2238
|
+
|
2239
|
+
</td>
|
2240
|
+
</tr>
|
2241
|
+
</tbody>
|
2242
|
+
</table></div>
|
2243
|
+
<p class="since">Since 1.4</p>
|
2244
|
+
</div>
|
2245
|
+
<hr>
|
2246
|
+
<div class="refsect2" title="pango_font_family_list_faces ()">
|
2247
|
+
<a name="pango-font-family-list-faces"></a><h3>pango_font_family_list_faces ()</h3>
|
2248
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_family_list_faces (<a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="returnvalue">PangoFontFamily</span></a> *family,
|
2249
|
+
<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> ***faces,
|
2250
|
+
<span class="returnvalue">int</span> *n_faces);</pre>
|
2251
|
+
<p>
|
2252
|
+
Lists the different font faces that make up <em class="parameter"><code>family</code></em>. The faces
|
2253
|
+
in a family share a common design, but differ in slant, weight,
|
2254
|
+
width and other aspects.</p>
|
2255
|
+
<div class="variablelist"><table border="0">
|
2256
|
+
<col align="left" valign="top">
|
2257
|
+
<tbody>
|
2258
|
+
<tr>
|
2259
|
+
<td><p><span class="term"><em class="parameter"><code>family</code></em> :</span></p></td>
|
2260
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a>
|
2261
|
+
</td>
|
2262
|
+
</tr>
|
2263
|
+
<tr>
|
2264
|
+
<td><p><span class="term"><em class="parameter"><code>faces</code></em> :</span></p></td>
|
2265
|
+
<td> location to store an array of pointers to <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>
|
2266
|
+
objects, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. This array should be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>
|
2267
|
+
when it is no longer needed.
|
2268
|
+
</td>
|
2269
|
+
</tr>
|
2270
|
+
<tr>
|
2271
|
+
<td><p><span class="term"><em class="parameter"><code>n_faces</code></em> :</span></p></td>
|
2272
|
+
<td> location to store number of elements in <em class="parameter"><code>faces</code></em>.
|
2273
|
+
</td>
|
2274
|
+
</tr>
|
2275
|
+
</tbody>
|
2276
|
+
</table></div>
|
2277
|
+
</div>
|
2278
|
+
<hr>
|
2279
|
+
<div class="refsect2" title="PangoFontFace">
|
2280
|
+
<a name="PangoFontFace-struct"></a><h3>PangoFontFace</h3>
|
2281
|
+
<pre class="programlisting">typedef struct _PangoFontFace PangoFontFace;</pre>
|
2282
|
+
<p>
|
2283
|
+
The <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a> structure is used to represent a group of fonts with
|
2284
|
+
the same family, slant, weight, width, but varying sizes.
|
2285
|
+
</p>
|
2286
|
+
</div>
|
2287
|
+
<hr>
|
2288
|
+
<div class="refsect2" title="PANGO_TYPE_FONT_FACE">
|
2289
|
+
<a name="PANGO-TYPE-FONT-FACE:CAPS"></a><h3>PANGO_TYPE_FONT_FACE</h3>
|
2290
|
+
<pre class="programlisting">#define PANGO_TYPE_FONT_FACE (pango_font_face_get_type ())
|
2291
|
+
</pre>
|
2292
|
+
<p>
|
2293
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>.
|
2294
|
+
</p>
|
2295
|
+
</div>
|
2296
|
+
<hr>
|
2297
|
+
<div class="refsect2" title="PANGO_FONT_FACE()">
|
2298
|
+
<a name="PANGO-FONT-FACE:CAPS"></a><h3>PANGO_FONT_FACE()</h3>
|
2299
|
+
<pre class="programlisting">#define PANGO_FONT_FACE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PANGO_TYPE_FONT_FACE, PangoFontFace))
|
2300
|
+
</pre>
|
2301
|
+
<p>
|
2302
|
+
Casts a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>.
|
2303
|
+
</p>
|
2304
|
+
<div class="variablelist"><table border="0">
|
2305
|
+
<col align="left" valign="top">
|
2306
|
+
<tbody><tr>
|
2307
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
2308
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
2309
|
+
</td>
|
2310
|
+
</tr></tbody>
|
2311
|
+
</table></div>
|
2312
|
+
</div>
|
2313
|
+
<hr>
|
2314
|
+
<div class="refsect2" title="PANGO_IS_FONT_FACE()">
|
2315
|
+
<a name="PANGO-IS-FONT-FACE:CAPS"></a><h3>PANGO_IS_FONT_FACE()</h3>
|
2316
|
+
<pre class="programlisting">#define PANGO_IS_FONT_FACE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANGO_TYPE_FONT_FACE))
|
2317
|
+
</pre>
|
2318
|
+
<p>
|
2319
|
+
Returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>.
|
2320
|
+
</p>
|
2321
|
+
<div class="variablelist"><table border="0">
|
2322
|
+
<col align="left" valign="top">
|
2323
|
+
<tbody><tr>
|
2324
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
2325
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
2326
|
+
</td>
|
2327
|
+
</tr></tbody>
|
2328
|
+
</table></div>
|
2329
|
+
</div>
|
2330
|
+
<hr>
|
2331
|
+
<div class="refsect2" title="pango_font_face_get_face_name ()">
|
2332
|
+
<a name="pango-font-face-get-face-name"></a><h3>pango_font_face_get_face_name ()</h3>
|
2333
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> * pango_font_face_get_face_name (<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> *face);</pre>
|
2334
|
+
<p>
|
2335
|
+
Gets a name representing the style of this face among the
|
2336
|
+
different faces in the <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a> for the face. This
|
2337
|
+
name is unique among all faces in the family and is suitable
|
2338
|
+
for displaying to users.</p>
|
2339
|
+
<div class="variablelist"><table border="0">
|
2340
|
+
<col align="left" valign="top">
|
2341
|
+
<tbody>
|
2342
|
+
<tr>
|
2343
|
+
<td><p><span class="term"><em class="parameter"><code>face</code></em> :</span></p></td>
|
2344
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>.
|
2345
|
+
</td>
|
2346
|
+
</tr>
|
2347
|
+
<tr>
|
2348
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2349
|
+
<td> the face name for the face. This string is
|
2350
|
+
owned by the face object and must not be modified or freed.
|
2351
|
+
</td>
|
2352
|
+
</tr>
|
2353
|
+
</tbody>
|
2354
|
+
</table></div>
|
2355
|
+
</div>
|
2356
|
+
<hr>
|
2357
|
+
<div class="refsect2" title="pango_font_face_list_sizes ()">
|
2358
|
+
<a name="pango-font-face-list-sizes"></a><h3>pango_font_face_list_sizes ()</h3>
|
2359
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_face_list_sizes (<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> *face,
|
2360
|
+
<span class="returnvalue">int</span> **sizes,
|
2361
|
+
<span class="returnvalue">int</span> *n_sizes);</pre>
|
2362
|
+
<p>
|
2363
|
+
List the available sizes for a font. This is only applicable to bitmap
|
2364
|
+
fonts. For scalable fonts, stores <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> at the location pointed to by
|
2365
|
+
<em class="parameter"><code>sizes</code></em> and 0 at the location pointed to by <em class="parameter"><code>n_sizes</code></em>. The sizes returned
|
2366
|
+
are in Pango units and are sorted in ascending order.</p>
|
2367
|
+
<div class="variablelist"><table border="0">
|
2368
|
+
<col align="left" valign="top">
|
2369
|
+
<tbody>
|
2370
|
+
<tr>
|
2371
|
+
<td><p><span class="term"><em class="parameter"><code>face</code></em> :</span></p></td>
|
2372
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>.
|
2373
|
+
</td>
|
2374
|
+
</tr>
|
2375
|
+
<tr>
|
2376
|
+
<td><p><span class="term"><em class="parameter"><code>sizes</code></em> :</span></p></td>
|
2377
|
+
<td> location to store a pointer to an array of int. This array
|
2378
|
+
should be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
|
2379
|
+
</td>
|
2380
|
+
</tr>
|
2381
|
+
<tr>
|
2382
|
+
<td><p><span class="term"><em class="parameter"><code>n_sizes</code></em> :</span></p></td>
|
2383
|
+
<td> location to store the number of elements in <em class="parameter"><code>sizes</code></em>
|
2384
|
+
</td>
|
2385
|
+
</tr>
|
2386
|
+
</tbody>
|
2387
|
+
</table></div>
|
2388
|
+
<p class="since">Since 1.4</p>
|
2389
|
+
</div>
|
2390
|
+
<hr>
|
2391
|
+
<div class="refsect2" title="pango_font_face_describe ()">
|
2392
|
+
<a name="pango-font-face-describe"></a><h3>pango_font_face_describe ()</h3>
|
2393
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> * pango_font_face_describe (<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> *face);</pre>
|
2394
|
+
<p>
|
2395
|
+
Returns the family, style, variant, weight and stretch of
|
2396
|
+
a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>. The size field of the resulting font description
|
2397
|
+
will be unset.</p>
|
2398
|
+
<div class="variablelist"><table border="0">
|
2399
|
+
<col align="left" valign="top">
|
2400
|
+
<tbody>
|
2401
|
+
<tr>
|
2402
|
+
<td><p><span class="term"><em class="parameter"><code>face</code></em> :</span></p></td>
|
2403
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>
|
2404
|
+
</td>
|
2405
|
+
</tr>
|
2406
|
+
<tr>
|
2407
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2408
|
+
<td> a newly-created <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> structure
|
2409
|
+
holding the description of the face. Use <a class="link" href="pango-Fonts.html#pango-font-description-free" title="pango_font_description_free ()"><code class="function">pango_font_description_free()</code></a>
|
2410
|
+
to free the result.
|
2411
|
+
</td>
|
2412
|
+
</tr>
|
2413
|
+
</tbody>
|
2414
|
+
</table></div>
|
2415
|
+
</div>
|
2416
|
+
<hr>
|
2417
|
+
<div class="refsect2" title="pango_font_face_is_synthesized ()">
|
2418
|
+
<a name="pango-font-face-is-synthesized"></a><h3>pango_font_face_is_synthesized ()</h3>
|
2419
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_font_face_is_synthesized (<a class="link" href="pango-Fonts.html#PangoFontFace"><span class="returnvalue">PangoFontFace</span></a> *face);</pre>
|
2420
|
+
<p>
|
2421
|
+
Returns whether a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a> is synthesized by the underlying
|
2422
|
+
font rendering engine from another face, perhaps by shearing, emboldening,
|
2423
|
+
or lightening it.</p>
|
2424
|
+
<div class="variablelist"><table border="0">
|
2425
|
+
<col align="left" valign="top">
|
2426
|
+
<tbody>
|
2427
|
+
<tr>
|
2428
|
+
<td><p><span class="term"><em class="parameter"><code>face</code></em> :</span></p></td>
|
2429
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontFace"><span class="type">PangoFontFace</span></a>
|
2430
|
+
</td>
|
2431
|
+
</tr>
|
2432
|
+
<tr>
|
2433
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2434
|
+
<td> whether <em class="parameter"><code>face</code></em> is synthesized.
|
2435
|
+
|
2436
|
+
</td>
|
2437
|
+
</tr>
|
2438
|
+
</tbody>
|
2439
|
+
</table></div>
|
2440
|
+
<p class="since">Since 1.18</p>
|
2441
|
+
</div>
|
2442
|
+
<hr>
|
2443
|
+
<div class="refsect2" title="PangoFontMap">
|
2444
|
+
<a name="PangoFontMap-struct"></a><h3>PangoFontMap</h3>
|
2445
|
+
<pre class="programlisting">typedef struct _PangoFontMap PangoFontMap;</pre>
|
2446
|
+
<p>
|
2447
|
+
The <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> represents the set of fonts available for a
|
2448
|
+
particular rendering system. This is a virtual object with
|
2449
|
+
implementations being specific to particular rendering systems. To
|
2450
|
+
create an implementation of a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>, the rendering-system
|
2451
|
+
specific code should allocate a larger structure that contains a nested
|
2452
|
+
<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>, fill in the <em class="structfield"><code>klass</code></em> member of the nested <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> with a
|
2453
|
+
pointer to a appropriate <a class="link" href="pango-Fonts.html#PangoFontMapClass" title="PangoFontMapClass"><span class="type">PangoFontMapClass</span></a>, then call
|
2454
|
+
<code class="function">pango_font_map_init()</code> on the structure.
|
2455
|
+
</p>
|
2456
|
+
<p>
|
2457
|
+
The <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> structure contains one member which the implementation
|
2458
|
+
fills in.
|
2459
|
+
</p>
|
2460
|
+
</div>
|
2461
|
+
<hr>
|
2462
|
+
<div class="refsect2" title="PANGO_TYPE_FONT_MAP">
|
2463
|
+
<a name="PANGO-TYPE-FONT-MAP:CAPS"></a><h3>PANGO_TYPE_FONT_MAP</h3>
|
2464
|
+
<pre class="programlisting">#define PANGO_TYPE_FONT_MAP (pango_font_map_get_type ())
|
2465
|
+
</pre>
|
2466
|
+
<p>
|
2467
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>.
|
2468
|
+
</p>
|
2469
|
+
</div>
|
2470
|
+
<hr>
|
2471
|
+
<div class="refsect2" title="PANGO_FONT_MAP()">
|
2472
|
+
<a name="PANGO-FONT-MAP:CAPS"></a><h3>PANGO_FONT_MAP()</h3>
|
2473
|
+
<pre class="programlisting">#define PANGO_FONT_MAP(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PANGO_TYPE_FONT_MAP, PangoFontMap))
|
2474
|
+
</pre>
|
2475
|
+
<p>
|
2476
|
+
Casts a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>.
|
2477
|
+
</p>
|
2478
|
+
<div class="variablelist"><table border="0">
|
2479
|
+
<col align="left" valign="top">
|
2480
|
+
<tbody><tr>
|
2481
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
2482
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
2483
|
+
</td>
|
2484
|
+
</tr></tbody>
|
2485
|
+
</table></div>
|
2486
|
+
</div>
|
2487
|
+
<hr>
|
2488
|
+
<div class="refsect2" title="PANGO_IS_FONT_MAP()">
|
2489
|
+
<a name="PANGO-IS-FONT-MAP:CAPS"></a><h3>PANGO_IS_FONT_MAP()</h3>
|
2490
|
+
<pre class="programlisting">#define PANGO_IS_FONT_MAP(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANGO_TYPE_FONT_MAP))
|
2491
|
+
</pre>
|
2492
|
+
<p>
|
2493
|
+
Returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>object</code></em> is a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>.
|
2494
|
+
</p>
|
2495
|
+
<div class="variablelist"><table border="0">
|
2496
|
+
<col align="left" valign="top">
|
2497
|
+
<tbody><tr>
|
2498
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
2499
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
2500
|
+
</td>
|
2501
|
+
</tr></tbody>
|
2502
|
+
</table></div>
|
2503
|
+
</div>
|
2504
|
+
<hr>
|
2505
|
+
<div class="refsect2" title="PangoFontMapClass">
|
2506
|
+
<a name="PangoFontMapClass"></a><h3>PangoFontMapClass</h3>
|
2507
|
+
<pre class="programlisting">typedef struct {
|
2508
|
+
GObjectClass parent_class;
|
2509
|
+
|
2510
|
+
|
2511
|
+
PangoFont * (*load_font) (PangoFontMap *fontmap,
|
2512
|
+
PangoContext *context,
|
2513
|
+
const PangoFontDescription *desc);
|
2514
|
+
void (*list_families) (PangoFontMap *fontmap,
|
2515
|
+
PangoFontFamily ***families,
|
2516
|
+
int *n_families);
|
2517
|
+
PangoFontset *(*load_fontset) (PangoFontMap *fontmap,
|
2518
|
+
PangoContext *context,
|
2519
|
+
const PangoFontDescription *desc,
|
2520
|
+
PangoLanguage *language);
|
2521
|
+
|
2522
|
+
const char *shape_engine_type;
|
2523
|
+
} PangoFontMapClass;
|
2524
|
+
</pre>
|
2525
|
+
<p>
|
2526
|
+
The <a class="link" href="pango-Fonts.html#PangoFontMapClass" title="PangoFontMapClass"><span class="type">PangoFontMapClass</span></a> structure holds the virtual functions for
|
2527
|
+
a particular <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a> implementation.
|
2528
|
+
</p>
|
2529
|
+
<div class="variablelist"><table border="0">
|
2530
|
+
<col align="left" valign="top">
|
2531
|
+
<tbody>
|
2532
|
+
<tr>
|
2533
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObjectClass"><span class="type">GObjectClass</span></a> <em class="structfield"><code><a name="PangoFontMapClass.parent-class"></a>parent_class</code></em>;</span></p></td>
|
2534
|
+
<td>parent <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObjectClass"><span class="type">GObjectClass</span></a>.
|
2535
|
+
</td>
|
2536
|
+
</tr>
|
2537
|
+
<tr>
|
2538
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoFontMapClass.load-font"></a>load_font</code></em> ()</span></p></td>
|
2539
|
+
<td>a function to load a font with a given description. See
|
2540
|
+
<a class="link" href="pango-Fonts.html#pango-font-map-load-font" title="pango_font_map_load_font ()"><code class="function">pango_font_map_load_font()</code></a>.
|
2541
|
+
</td>
|
2542
|
+
</tr>
|
2543
|
+
<tr>
|
2544
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoFontMapClass.list-families"></a>list_families</code></em> ()</span></p></td>
|
2545
|
+
<td>A function to list available font families. See
|
2546
|
+
<a class="link" href="pango-Fonts.html#pango-font-map-list-families" title="pango_font_map_list_families ()"><code class="function">pango_font_map_list_families()</code></a>.
|
2547
|
+
</td>
|
2548
|
+
</tr>
|
2549
|
+
<tr>
|
2550
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoFontMapClass.load-fontset"></a>load_fontset</code></em> ()</span></p></td>
|
2551
|
+
<td>a function to load a fontset with a given given description
|
2552
|
+
suitable for a particular language. See
|
2553
|
+
<a class="link" href="pango-Fonts.html#pango-font-map-load-fontset" title="pango_font_map_load_fontset ()"><code class="function">pango_font_map_load_fontset()</code></a>.
|
2554
|
+
</td>
|
2555
|
+
</tr>
|
2556
|
+
<tr>
|
2557
|
+
<td><p><span class="term">const <span class="type">char</span> *<em class="structfield"><code><a name="PangoFontMapClass.shape-engine-type"></a>shape_engine_type</code></em>;</span></p></td>
|
2558
|
+
<td>the type of rendering-system-dependent engines that
|
2559
|
+
can handle fonts of this fonts loaded with this fontmap.
|
2560
|
+
</td>
|
2561
|
+
</tr>
|
2562
|
+
</tbody>
|
2563
|
+
</table></div>
|
2564
|
+
</div>
|
2565
|
+
<hr>
|
2566
|
+
<div class="refsect2" title="PANGO_FONT_MAP_CLASS()">
|
2567
|
+
<a name="PANGO-FONT-MAP-CLASS:CAPS"></a><h3>PANGO_FONT_MAP_CLASS()</h3>
|
2568
|
+
<pre class="programlisting">#define PANGO_FONT_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PANGO_TYPE_FONT_MAP, PangoFontMapClass))
|
2569
|
+
</pre>
|
2570
|
+
<p>
|
2571
|
+
Casts a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to a <a class="link" href="pango-Fonts.html#PangoFontMapClass" title="PangoFontMapClass"><span class="type">PangoFontMapClass</span></a>.
|
2572
|
+
</p>
|
2573
|
+
<div class="variablelist"><table border="0">
|
2574
|
+
<col align="left" valign="top">
|
2575
|
+
<tbody><tr>
|
2576
|
+
<td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
|
2577
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
2578
|
+
</td>
|
2579
|
+
</tr></tbody>
|
2580
|
+
</table></div>
|
2581
|
+
</div>
|
2582
|
+
<hr>
|
2583
|
+
<div class="refsect2" title="PANGO_IS_FONT_MAP_CLASS()">
|
2584
|
+
<a name="PANGO-IS-FONT-MAP-CLASS:CAPS"></a><h3>PANGO_IS_FONT_MAP_CLASS()</h3>
|
2585
|
+
<pre class="programlisting">#define PANGO_IS_FONT_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PANGO_TYPE_FONT_MAP))
|
2586
|
+
</pre>
|
2587
|
+
<p>
|
2588
|
+
Returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>klass</code></em> is a subtype of <a class="link" href="pango-Fonts.html#PangoFontMapClass" title="PangoFontMapClass"><span class="type">PangoFontMapClass</span></a>.
|
2589
|
+
</p>
|
2590
|
+
<div class="variablelist"><table border="0">
|
2591
|
+
<col align="left" valign="top">
|
2592
|
+
<tbody><tr>
|
2593
|
+
<td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
|
2594
|
+
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
|
2595
|
+
</td>
|
2596
|
+
</tr></tbody>
|
2597
|
+
</table></div>
|
2598
|
+
</div>
|
2599
|
+
<hr>
|
2600
|
+
<div class="refsect2" title="PANGO_FONT_MAP_GET_CLASS()">
|
2601
|
+
<a name="PANGO-FONT-MAP-GET-CLASS:CAPS"></a><h3>PANGO_FONT_MAP_GET_CLASS()</h3>
|
2602
|
+
<pre class="programlisting">#define PANGO_FONT_MAP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PANGO_TYPE_FONT_MAP, PangoFontMapClass))
|
2603
|
+
</pre>
|
2604
|
+
<p>
|
2605
|
+
Returns the type of a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>.
|
2606
|
+
</p>
|
2607
|
+
<div class="variablelist"><table border="0">
|
2608
|
+
<col align="left" valign="top">
|
2609
|
+
<tbody><tr>
|
2610
|
+
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
|
2611
|
+
<td>a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>.
|
2612
|
+
</td>
|
2613
|
+
</tr></tbody>
|
2614
|
+
</table></div>
|
2615
|
+
</div>
|
2616
|
+
<hr>
|
2617
|
+
<div class="refsect2" title="pango_font_map_create_context ()">
|
2618
|
+
<a name="pango-font-map-create-context"></a><h3>pango_font_map_create_context ()</h3>
|
2619
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Processing.html#PangoContext"><span class="returnvalue">PangoContext</span></a> * pango_font_map_create_context (<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap);</pre>
|
2620
|
+
<p>
|
2621
|
+
Creates a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> connected to <em class="parameter"><code>fontmap</code></em>. This is equivalent
|
2622
|
+
to <a class="link" href="pango-Text-Processing.html#pango-context-new" title="pango_context_new ()"><code class="function">pango_context_new()</code></a> followed by <a class="link" href="pango-Text-Processing.html#pango-context-set-font-map" title="pango_context_set_font_map ()"><code class="function">pango_context_set_font_map()</code></a>.
|
2623
|
+
</p>
|
2624
|
+
<p>
|
2625
|
+
If you are using Pango as part of a higher-level system,
|
2626
|
+
that system may have it's own way of create a <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>.
|
2627
|
+
For instance, the GTK+ toolkit has, among others,
|
2628
|
+
<a href="/usr/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html#gdk-pango-context-get-for-screen"><code class="function">gdk_pango_context_get_for_screen()</code></a>, and
|
2629
|
+
<a href="/usr/share/gtk-doc/html/gtk/GtkWidget.html#gtk-widget-get-pango-context"><code class="function">gtk_widget_get_pango_context()</code></a>. Use those instead.</p>
|
2630
|
+
<div class="variablelist"><table border="0">
|
2631
|
+
<col align="left" valign="top">
|
2632
|
+
<tbody>
|
2633
|
+
<tr>
|
2634
|
+
<td><p><span class="term"><em class="parameter"><code>fontmap</code></em> :</span></p></td>
|
2635
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>
|
2636
|
+
</td>
|
2637
|
+
</tr>
|
2638
|
+
<tr>
|
2639
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2640
|
+
<td> the newly allocated <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>, which should
|
2641
|
+
be freed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.
|
2642
|
+
|
2643
|
+
</td>
|
2644
|
+
</tr>
|
2645
|
+
</tbody>
|
2646
|
+
</table></div>
|
2647
|
+
<p class="since">Since 1.22</p>
|
2648
|
+
</div>
|
2649
|
+
<hr>
|
2650
|
+
<div class="refsect2" title="pango_font_map_load_font ()">
|
2651
|
+
<a name="pango-font-map-load-font"></a><h3>pango_font_map_load_font ()</h3>
|
2652
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> * pango_font_map_load_font (<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap,
|
2653
|
+
<a class="link" href="pango-Text-Processing.html#PangoContext"><span class="returnvalue">PangoContext</span></a> *context,
|
2654
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
2655
|
+
<p>
|
2656
|
+
Load the font in the fontmap that is the closest match for <em class="parameter"><code>desc</code></em>.</p>
|
2657
|
+
<div class="variablelist"><table border="0">
|
2658
|
+
<col align="left" valign="top">
|
2659
|
+
<tbody>
|
2660
|
+
<tr>
|
2661
|
+
<td><p><span class="term"><em class="parameter"><code>fontmap</code></em> :</span></p></td>
|
2662
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>
|
2663
|
+
</td>
|
2664
|
+
</tr>
|
2665
|
+
<tr>
|
2666
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
2667
|
+
<td> the <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> the font will be used with
|
2668
|
+
</td>
|
2669
|
+
</tr>
|
2670
|
+
<tr>
|
2671
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
2672
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> describing the font to load
|
2673
|
+
</td>
|
2674
|
+
</tr>
|
2675
|
+
<tr>
|
2676
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2677
|
+
<td> the font loaded, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no font matched.
|
2678
|
+
</td>
|
2679
|
+
</tr>
|
2680
|
+
</tbody>
|
2681
|
+
</table></div>
|
2682
|
+
</div>
|
2683
|
+
<hr>
|
2684
|
+
<div class="refsect2" title="pango_font_map_load_fontset ()">
|
2685
|
+
<a name="pango-font-map-load-fontset"></a><h3>pango_font_map_load_fontset ()</h3>
|
2686
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> * pango_font_map_load_fontset (<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap,
|
2687
|
+
<a class="link" href="pango-Text-Processing.html#PangoContext"><span class="returnvalue">PangoContext</span></a> *context,
|
2688
|
+
const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
2689
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);</pre>
|
2690
|
+
<p>
|
2691
|
+
Load a set of fonts in the fontmap that can be used to render
|
2692
|
+
a font matching <em class="parameter"><code>desc</code></em>.</p>
|
2693
|
+
<div class="variablelist"><table border="0">
|
2694
|
+
<col align="left" valign="top">
|
2695
|
+
<tbody>
|
2696
|
+
<tr>
|
2697
|
+
<td><p><span class="term"><em class="parameter"><code>fontmap</code></em> :</span></p></td>
|
2698
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>
|
2699
|
+
</td>
|
2700
|
+
</tr>
|
2701
|
+
<tr>
|
2702
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
2703
|
+
<td> the <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> the font will be used with
|
2704
|
+
</td>
|
2705
|
+
</tr>
|
2706
|
+
<tr>
|
2707
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
2708
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> describing the font to load
|
2709
|
+
</td>
|
2710
|
+
</tr>
|
2711
|
+
<tr>
|
2712
|
+
<td><p><span class="term"><em class="parameter"><code>language</code></em> :</span></p></td>
|
2713
|
+
<td> a <a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="type">PangoLanguage</span></a> the fonts will be used for
|
2714
|
+
</td>
|
2715
|
+
</tr>
|
2716
|
+
<tr>
|
2717
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2718
|
+
<td> the fontset, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no font matched.
|
2719
|
+
</td>
|
2720
|
+
</tr>
|
2721
|
+
</tbody>
|
2722
|
+
</table></div>
|
2723
|
+
</div>
|
2724
|
+
<hr>
|
2725
|
+
<div class="refsect2" title="pango_font_map_list_families ()">
|
2726
|
+
<a name="pango-font-map-list-families"></a><h3>pango_font_map_list_families ()</h3>
|
2727
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_font_map_list_families (<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap,
|
2728
|
+
<a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="returnvalue">PangoFontFamily</span></a> ***families,
|
2729
|
+
<span class="returnvalue">int</span> *n_families);</pre>
|
2730
|
+
<p>
|
2731
|
+
List all families for a fontmap.</p>
|
2732
|
+
<div class="variablelist"><table border="0">
|
2733
|
+
<col align="left" valign="top">
|
2734
|
+
<tbody>
|
2735
|
+
<tr>
|
2736
|
+
<td><p><span class="term"><em class="parameter"><code>fontmap</code></em> :</span></p></td>
|
2737
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>
|
2738
|
+
</td>
|
2739
|
+
</tr>
|
2740
|
+
<tr>
|
2741
|
+
<td><p><span class="term"><em class="parameter"><code>families</code></em> :</span></p></td>
|
2742
|
+
<td> location to store a pointer to an array of <a class="link" href="pango-Fonts.html#PangoFontFamily"><span class="type">PangoFontFamily</span></a> *.
|
2743
|
+
This array should be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
|
2744
|
+
</td>
|
2745
|
+
</tr>
|
2746
|
+
<tr>
|
2747
|
+
<td><p><span class="term"><em class="parameter"><code>n_families</code></em> :</span></p></td>
|
2748
|
+
<td> location to store the number of elements in <em class="parameter"><code>families</code></em>
|
2749
|
+
</td>
|
2750
|
+
</tr>
|
2751
|
+
</tbody>
|
2752
|
+
</table></div>
|
2753
|
+
</div>
|
2754
|
+
<hr>
|
2755
|
+
<div class="refsect2" title="pango_font_map_get_shape_engine_type ()">
|
2756
|
+
<a name="pango-font-map-get-shape-engine-type"></a><h3>pango_font_map_get_shape_engine_type ()</h3>
|
2757
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> * pango_font_map_get_shape_engine_type
|
2758
|
+
(<a class="link" href="pango-Fonts.html#PangoFontMap"><span class="returnvalue">PangoFontMap</span></a> *fontmap);</pre>
|
2759
|
+
<p>
|
2760
|
+
Returns the render ID for shape engines for this fontmap.
|
2761
|
+
See the <em class="structfield"><code>render_type</code></em> field of
|
2762
|
+
<a class="link" href="pango-Engines.html#PangoEngineInfo" title="PangoEngineInfo"><span class="type">PangoEngineInfo</span></a>.</p>
|
2763
|
+
<div class="variablelist"><table border="0">
|
2764
|
+
<col align="left" valign="top">
|
2765
|
+
<tbody>
|
2766
|
+
<tr>
|
2767
|
+
<td><p><span class="term"><em class="parameter"><code>fontmap</code></em> :</span></p></td>
|
2768
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMap"><span class="type">PangoFontMap</span></a>
|
2769
|
+
</td>
|
2770
|
+
</tr>
|
2771
|
+
<tr>
|
2772
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2773
|
+
<td> the ID string for shape engines for
|
2774
|
+
this fontmap. Owned by Pango, should not be modified
|
2775
|
+
or freed.
|
2776
|
+
|
2777
|
+
</td>
|
2778
|
+
</tr>
|
2779
|
+
</tbody>
|
2780
|
+
</table></div>
|
2781
|
+
<p class="since">Since 1.4</p>
|
2782
|
+
</div>
|
2783
|
+
<hr>
|
2784
|
+
<div class="refsect2" title="PangoFontset">
|
2785
|
+
<a name="PangoFontset-struct"></a><h3>PangoFontset</h3>
|
2786
|
+
<pre class="programlisting">typedef struct _PangoFontset PangoFontset;</pre>
|
2787
|
+
<p>
|
2788
|
+
A <a class="link" href="pango-Fonts.html#PangoFontset"><span class="type">PangoFontset</span></a> represents a set of <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> to use
|
2789
|
+
when rendering text. It is the result of resolving a
|
2790
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> against a particular <a class="link" href="pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>.
|
2791
|
+
It has operations for finding the component font for
|
2792
|
+
a particular Unicode character, and for finding a composite
|
2793
|
+
set of metrics for the entire fontset.
|
2794
|
+
</p>
|
2795
|
+
</div>
|
2796
|
+
<hr>
|
2797
|
+
<div class="refsect2" title="PANGO_TYPE_FONTSET">
|
2798
|
+
<a name="PANGO-TYPE-FONTSET:CAPS"></a><h3>PANGO_TYPE_FONTSET</h3>
|
2799
|
+
<pre class="programlisting">#define PANGO_TYPE_FONTSET (pango_fontset_get_type ())
|
2800
|
+
</pre>
|
2801
|
+
<p>
|
2802
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoFontset"><span class="type">PangoFontset</span></a>.
|
2803
|
+
</p>
|
2804
|
+
</div>
|
2805
|
+
<hr>
|
2806
|
+
<div class="refsect2" title="PangoFontsetClass">
|
2807
|
+
<a name="PangoFontsetClass"></a><h3>PangoFontsetClass</h3>
|
2808
|
+
<pre class="programlisting">typedef struct {
|
2809
|
+
GObjectClass parent_class;
|
2810
|
+
|
2811
|
+
|
2812
|
+
PangoFont * (*get_font) (PangoFontset *fontset,
|
2813
|
+
guint wc);
|
2814
|
+
|
2815
|
+
PangoFontMetrics *(*get_metrics) (PangoFontset *fontset);
|
2816
|
+
PangoLanguage * (*get_language) (PangoFontset *fontset);
|
2817
|
+
void (*foreach) (PangoFontset *fontset,
|
2818
|
+
PangoFontsetForeachFunc func,
|
2819
|
+
gpointer data);
|
2820
|
+
} PangoFontsetClass;
|
2821
|
+
</pre>
|
2822
|
+
<p>
|
2823
|
+
The <a class="link" href="pango-Fonts.html#PangoFontsetClass" title="PangoFontsetClass"><span class="type">PangoFontsetClass</span></a> structure holds the virtual functions for
|
2824
|
+
a particular <a class="link" href="pango-Fonts.html#PangoFontset"><span class="type">PangoFontset</span></a> implementation.
|
2825
|
+
</p>
|
2826
|
+
<div class="variablelist"><table border="0">
|
2827
|
+
<col align="left" valign="top">
|
2828
|
+
<tbody>
|
2829
|
+
<tr>
|
2830
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObjectClass"><span class="type">GObjectClass</span></a> <em class="structfield"><code><a name="PangoFontsetClass.parent-class"></a>parent_class</code></em>;</span></p></td>
|
2831
|
+
<td>parent <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObjectClass"><span class="type">GObjectClass</span></a>.
|
2832
|
+
</td>
|
2833
|
+
</tr>
|
2834
|
+
<tr>
|
2835
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoFontsetClass.get-font"></a>get_font</code></em> ()</span></p></td>
|
2836
|
+
<td>a function to get the font in the fontset that contains the
|
2837
|
+
best glyph for the given Unicode character; see <a class="link" href="pango-Fonts.html#pango-fontset-get-font" title="pango_fontset_get_font ()"><code class="function">pango_fontset_get_font()</code></a>.
|
2838
|
+
</td>
|
2839
|
+
</tr>
|
2840
|
+
<tr>
|
2841
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoFontsetClass.get-metrics"></a>get_metrics</code></em> ()</span></p></td>
|
2842
|
+
<td>a function to get overall metric information for the fonts
|
2843
|
+
in the fontset; see <a class="link" href="pango-Fonts.html#pango-fontset-get-metrics" title="pango_fontset_get_metrics ()"><code class="function">pango_fontset_get_metrics()</code></a>.
|
2844
|
+
</td>
|
2845
|
+
</tr>
|
2846
|
+
<tr>
|
2847
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoFontsetClass.get-language"></a>get_language</code></em> ()</span></p></td>
|
2848
|
+
<td>a function to get the language of the fontset.
|
2849
|
+
</td>
|
2850
|
+
</tr>
|
2851
|
+
<tr>
|
2852
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoFontsetClass.foreach"></a>foreach</code></em> ()</span></p></td>
|
2853
|
+
<td>a function to loop over the fonts in the fontset. See
|
2854
|
+
<a class="link" href="pango-Fonts.html#pango-fontset-foreach" title="pango_fontset_foreach ()"><code class="function">pango_fontset_foreach()</code></a>.
|
2855
|
+
</td>
|
2856
|
+
</tr>
|
2857
|
+
</tbody>
|
2858
|
+
</table></div>
|
2859
|
+
</div>
|
2860
|
+
<hr>
|
2861
|
+
<div class="refsect2" title="pango_fontset_get_font ()">
|
2862
|
+
<a name="pango-fontset-get-font"></a><h3>pango_fontset_get_font ()</h3>
|
2863
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> * pango_fontset_get_font (<a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> *fontset,
|
2864
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> wc);</pre>
|
2865
|
+
<p>
|
2866
|
+
Returns the font in the fontset that contains the best glyph for the
|
2867
|
+
Unicode character <em class="parameter"><code>wc</code></em>.</p>
|
2868
|
+
<div class="variablelist"><table border="0">
|
2869
|
+
<col align="left" valign="top">
|
2870
|
+
<tbody>
|
2871
|
+
<tr>
|
2872
|
+
<td><p><span class="term"><em class="parameter"><code>fontset</code></em> :</span></p></td>
|
2873
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontset"><span class="type">PangoFontset</span></a>
|
2874
|
+
</td>
|
2875
|
+
</tr>
|
2876
|
+
<tr>
|
2877
|
+
<td><p><span class="term"><em class="parameter"><code>wc</code></em> :</span></p></td>
|
2878
|
+
<td> a Unicode character
|
2879
|
+
</td>
|
2880
|
+
</tr>
|
2881
|
+
<tr>
|
2882
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2883
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>. The caller must call g_object_unref when finished
|
2884
|
+
with the font.
|
2885
|
+
</td>
|
2886
|
+
</tr>
|
2887
|
+
</tbody>
|
2888
|
+
</table></div>
|
2889
|
+
</div>
|
2890
|
+
<hr>
|
2891
|
+
<div class="refsect2" title="pango_fontset_get_metrics ()">
|
2892
|
+
<a name="pango-fontset-get-metrics"></a><h3>pango_fontset_get_metrics ()</h3>
|
2893
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="returnvalue">PangoFontMetrics</span></a> * pango_fontset_get_metrics (<a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> *fontset);</pre>
|
2894
|
+
<p>
|
2895
|
+
Get overall metric information for the fonts in the fontset.</p>
|
2896
|
+
<div class="variablelist"><table border="0">
|
2897
|
+
<col align="left" valign="top">
|
2898
|
+
<tbody>
|
2899
|
+
<tr>
|
2900
|
+
<td><p><span class="term"><em class="parameter"><code>fontset</code></em> :</span></p></td>
|
2901
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontset"><span class="type">PangoFontset</span></a>
|
2902
|
+
</td>
|
2903
|
+
</tr>
|
2904
|
+
<tr>
|
2905
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2906
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontMetrics" title="PangoFontMetrics"><span class="type">PangoFontMetrics</span></a> object. The caller must call <a class="link" href="pango-Fonts.html#pango-font-metrics-unref" title="pango_font_metrics_unref ()"><code class="function">pango_font_metrics_unref()</code></a>
|
2907
|
+
when finished using the object.
|
2908
|
+
</td>
|
2909
|
+
</tr>
|
2910
|
+
</tbody>
|
2911
|
+
</table></div>
|
2912
|
+
</div>
|
2913
|
+
<hr>
|
2914
|
+
<div class="refsect2" title="PangoFontsetForeachFunc ()">
|
2915
|
+
<a name="PangoFontsetForeachFunc"></a><h3>PangoFontsetForeachFunc ()</h3>
|
2916
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (*PangoFontsetForeachFunc) (<a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> *fontset,
|
2917
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
2918
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data);</pre>
|
2919
|
+
<p>
|
2920
|
+
A callback function used by <a class="link" href="pango-Fonts.html#pango-fontset-foreach" title="pango_fontset_foreach ()"><code class="function">pango_fontset_foreach()</code></a> when enumerating
|
2921
|
+
the fonts in a fontset.</p>
|
2922
|
+
<div class="variablelist"><table border="0">
|
2923
|
+
<col align="left" valign="top">
|
2924
|
+
<tbody>
|
2925
|
+
<tr>
|
2926
|
+
<td><p><span class="term"><em class="parameter"><code>fontset</code></em> :</span></p></td>
|
2927
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontset"><span class="type">PangoFontset</span></a>
|
2928
|
+
</td>
|
2929
|
+
</tr>
|
2930
|
+
<tr>
|
2931
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
2932
|
+
<td> a font from <em class="parameter"><code>fontset</code></em>
|
2933
|
+
</td>
|
2934
|
+
</tr>
|
2935
|
+
<tr>
|
2936
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2937
|
+
<td> callback data
|
2938
|
+
</td>
|
2939
|
+
</tr>
|
2940
|
+
<tr>
|
2941
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2942
|
+
<td> if <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, stop iteration and return immediately.
|
2943
|
+
|
2944
|
+
</td>
|
2945
|
+
</tr>
|
2946
|
+
</tbody>
|
2947
|
+
</table></div>
|
2948
|
+
<p class="since">Since 1.4</p>
|
2949
|
+
</div>
|
2950
|
+
<hr>
|
2951
|
+
<div class="refsect2" title="pango_fontset_foreach ()">
|
2952
|
+
<a name="pango-fontset-foreach"></a><h3>pango_fontset_foreach ()</h3>
|
2953
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_fontset_foreach (<a class="link" href="pango-Fonts.html#PangoFontset"><span class="returnvalue">PangoFontset</span></a> *fontset,
|
2954
|
+
<a class="link" href="pango-Fonts.html#PangoFontsetForeachFunc" title="PangoFontsetForeachFunc ()"><span class="returnvalue">PangoFontsetForeachFunc</span></a> func,
|
2955
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data);</pre>
|
2956
|
+
<p>
|
2957
|
+
Iterates through all the fonts in a fontset, calling <em class="parameter"><code>func</code></em> for
|
2958
|
+
each one. If <em class="parameter"><code>func</code></em> returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, that stops the iteration.</p>
|
2959
|
+
<div class="variablelist"><table border="0">
|
2960
|
+
<col align="left" valign="top">
|
2961
|
+
<tbody>
|
2962
|
+
<tr>
|
2963
|
+
<td><p><span class="term"><em class="parameter"><code>fontset</code></em> :</span></p></td>
|
2964
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontset"><span class="type">PangoFontset</span></a>
|
2965
|
+
</td>
|
2966
|
+
</tr>
|
2967
|
+
<tr>
|
2968
|
+
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
2969
|
+
<td> Callback function
|
2970
|
+
</td>
|
2971
|
+
</tr>
|
2972
|
+
<tr>
|
2973
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2974
|
+
<td> data to pass to the callback function
|
2975
|
+
</td>
|
2976
|
+
</tr>
|
2977
|
+
</tbody>
|
2978
|
+
</table></div>
|
2979
|
+
<p class="since">Since 1.4</p>
|
2980
|
+
</div>
|
2981
|
+
<hr>
|
2982
|
+
<div class="refsect2" title="PangoFontsetSimple">
|
2983
|
+
<a name="PangoFontsetSimple-struct"></a><h3>PangoFontsetSimple</h3>
|
2984
|
+
<pre class="programlisting">typedef struct _PangoFontsetSimple PangoFontsetSimple;</pre>
|
2985
|
+
<p>
|
2986
|
+
<a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="type">PangoFontsetSimple</span></a> is a implementation of the abstract
|
2987
|
+
<a class="link" href="pango-Fonts.html#PangoFontset"><span class="type">PangoFontset</span></a> base class in terms of an array of fonts,
|
2988
|
+
which the creator provides when constructing the
|
2989
|
+
<a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="type">PangoFontsetSimple</span></a>.
|
2990
|
+
</p>
|
2991
|
+
</div>
|
2992
|
+
<hr>
|
2993
|
+
<div class="refsect2" title="PANGO_TYPE_FONTSET_SIMPLE">
|
2994
|
+
<a name="PANGO-TYPE-FONTSET-SIMPLE:CAPS"></a><h3>PANGO_TYPE_FONTSET_SIMPLE</h3>
|
2995
|
+
<pre class="programlisting">#define PANGO_TYPE_FONTSET_SIMPLE (pango_fontset_simple_get_type ())
|
2996
|
+
</pre>
|
2997
|
+
<p>
|
2998
|
+
The <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> type for <a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="type">PangoFontsetSimple</span></a>.
|
2999
|
+
</p>
|
3000
|
+
</div>
|
3001
|
+
<hr>
|
3002
|
+
<div class="refsect2" title="pango_fontset_simple_new ()">
|
3003
|
+
<a name="pango-fontset-simple-new"></a><h3>pango_fontset_simple_new ()</h3>
|
3004
|
+
<pre class="programlisting"><a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="returnvalue">PangoFontsetSimple</span></a> * pango_fontset_simple_new (<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);</pre>
|
3005
|
+
<p>
|
3006
|
+
Creates a new <a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="type">PangoFontsetSimple</span></a> for the given language.</p>
|
3007
|
+
<div class="variablelist"><table border="0">
|
3008
|
+
<col align="left" valign="top">
|
3009
|
+
<tbody>
|
3010
|
+
<tr>
|
3011
|
+
<td><p><span class="term"><em class="parameter"><code>language</code></em> :</span></p></td>
|
3012
|
+
<td> a <a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="type">PangoLanguage</span></a> tag
|
3013
|
+
</td>
|
3014
|
+
</tr>
|
3015
|
+
<tr>
|
3016
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3017
|
+
<td> the newly allocated <a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="type">PangoFontsetSimple</span></a>, which should
|
3018
|
+
be freed with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.
|
3019
|
+
</td>
|
3020
|
+
</tr>
|
3021
|
+
</tbody>
|
3022
|
+
</table></div>
|
3023
|
+
</div>
|
3024
|
+
<hr>
|
3025
|
+
<div class="refsect2" title="pango_fontset_simple_append ()">
|
3026
|
+
<a name="pango-fontset-simple-append"></a><h3>pango_fontset_simple_append ()</h3>
|
3027
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_fontset_simple_append (<a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="returnvalue">PangoFontsetSimple</span></a> *fontset,
|
3028
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font);</pre>
|
3029
|
+
<p>
|
3030
|
+
Adds a font to the fontset.</p>
|
3031
|
+
<div class="variablelist"><table border="0">
|
3032
|
+
<col align="left" valign="top">
|
3033
|
+
<tbody>
|
3034
|
+
<tr>
|
3035
|
+
<td><p><span class="term"><em class="parameter"><code>fontset</code></em> :</span></p></td>
|
3036
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="type">PangoFontsetSimple</span></a>.
|
3037
|
+
</td>
|
3038
|
+
</tr>
|
3039
|
+
<tr>
|
3040
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
3041
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>.
|
3042
|
+
</td>
|
3043
|
+
</tr>
|
3044
|
+
</tbody>
|
3045
|
+
</table></div>
|
3046
|
+
</div>
|
3047
|
+
<hr>
|
3048
|
+
<div class="refsect2" title="pango_fontset_simple_size ()">
|
3049
|
+
<a name="pango-fontset-simple-size"></a><h3>pango_fontset_simple_size ()</h3>
|
3050
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_fontset_simple_size (<a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="returnvalue">PangoFontsetSimple</span></a> *fontset);</pre>
|
3051
|
+
<p>
|
3052
|
+
Returns the number of fonts in the fontset.</p>
|
3053
|
+
<div class="variablelist"><table border="0">
|
3054
|
+
<col align="left" valign="top">
|
3055
|
+
<tbody>
|
3056
|
+
<tr>
|
3057
|
+
<td><p><span class="term"><em class="parameter"><code>fontset</code></em> :</span></p></td>
|
3058
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontsetSimple"><span class="type">PangoFontsetSimple</span></a>.
|
3059
|
+
</td>
|
3060
|
+
</tr>
|
3061
|
+
<tr>
|
3062
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3063
|
+
<td> the size of <em class="parameter"><code>fontset</code></em>.
|
3064
|
+
</td>
|
3065
|
+
</tr>
|
3066
|
+
</tbody>
|
3067
|
+
</table></div>
|
3068
|
+
</div>
|
3069
|
+
</div>
|
3070
|
+
</div>
|
3071
|
+
<div class="footer">
|
3072
|
+
<hr>
|
3073
|
+
Generated by GTK-Doc V1.13</div>
|
3074
|
+
</body>
|
3075
|
+
</html>
|