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,2100 @@
|
|
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>Glyph Storage</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-Text-Processing.html" title="Rendering">
|
10
|
+
<link rel="next" href="pango-Fonts.html" title="Fonts">
|
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-Text-Processing.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-Fonts.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-Glyph-Storage.synopsis" class="shortcut">Top</a>
|
46
|
+
|
|
47
|
+
<a href="#pango-Glyph-Storage.description" class="shortcut">Description</a>
|
48
|
+
</td></tr>
|
49
|
+
</table>
|
50
|
+
<div class="refentry" title="Glyph Storage">
|
51
|
+
<a name="pango-Glyph-Storage"></a><div class="titlepage"></div>
|
52
|
+
<div class="refnamediv"><table width="100%"><tr>
|
53
|
+
<td valign="top">
|
54
|
+
<h2><span class="refentrytitle"><a name="pango-Glyph-Storage.top_of_page"></a>Glyph Storage</span></h2>
|
55
|
+
<p>Glyph Storage — Structures for storing information about glyphs</p>
|
56
|
+
</td>
|
57
|
+
<td valign="top" align="right"></td>
|
58
|
+
</tr></table></div>
|
59
|
+
<div class="refsynopsisdiv" title="Synopsis">
|
60
|
+
<a name="pango-Glyph-Storage.synopsis"></a><h2>Synopsis</h2>
|
61
|
+
<pre class="synopsis">#define <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE">PANGO_SCALE</a>
|
62
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-PIXELS:CAPS" title="PANGO_PIXELS()">PANGO_PIXELS</a> (d)
|
63
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-PIXELS-FLOOR:CAPS" title="PANGO_PIXELS_FLOOR()">PANGO_PIXELS_FLOOR</a> (d)
|
64
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-PIXELS-CEIL:CAPS" title="PANGO_PIXELS_CEIL()">PANGO_PIXELS_CEIL</a> (d)
|
65
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-UNITS-ROUND:CAPS" title="PANGO_UNITS_ROUND()">PANGO_UNITS_ROUND</a> (d)
|
66
|
+
<span class="returnvalue">double</span> <a class="link" href="pango-Glyph-Storage.html#pango-units-to-double" title="pango_units_to_double ()">pango_units_to_double</a> (<span class="returnvalue">int</span> i);
|
67
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Glyph-Storage.html#pango-units-from-double" title="pango_units_from_double ()">pango_units_from_double</a> (<span class="returnvalue">double</span> d);
|
68
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle">PangoRectangle</a>;
|
69
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-ASCENT:CAPS" title="PANGO_ASCENT()">PANGO_ASCENT</a> (rect)
|
70
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-DESCENT:CAPS" title="PANGO_DESCENT()">PANGO_DESCENT</a> (rect)
|
71
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-LBEARING:CAPS" title="PANGO_LBEARING()">PANGO_LBEARING</a> (rect)
|
72
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-RBEARING:CAPS" title="PANGO_RBEARING()">PANGO_RBEARING</a> (rect)
|
73
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-extents-to-pixels" title="pango_extents_to_pixels ()">pango_extents_to_pixels</a> (<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *inclusive,
|
74
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *nearest);
|
75
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix">PangoMatrix</a>;
|
76
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-TYPE-MATRIX:CAPS" title="PANGO_TYPE_MATRIX">PANGO_TYPE_MATRIX</a>
|
77
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-MATRIX-INIT:CAPS" title="PANGO_MATRIX_INIT">PANGO_MATRIX_INIT</a>
|
78
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> * <a class="link" href="pango-Glyph-Storage.html#pango-matrix-copy" title="pango_matrix_copy ()">pango_matrix_copy</a> (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix);
|
79
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-free" title="pango_matrix_free ()">pango_matrix_free</a> (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix);
|
80
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-translate" title="pango_matrix_translate ()">pango_matrix_translate</a> (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
81
|
+
<span class="returnvalue">double</span> tx,
|
82
|
+
<span class="returnvalue">double</span> ty);
|
83
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-scale" title="pango_matrix_scale ()">pango_matrix_scale</a> (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
84
|
+
<span class="returnvalue">double</span> scale_x,
|
85
|
+
<span class="returnvalue">double</span> scale_y);
|
86
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-rotate" title="pango_matrix_rotate ()">pango_matrix_rotate</a> (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
87
|
+
<span class="returnvalue">double</span> degrees);
|
88
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-concat" title="pango_matrix_concat ()">pango_matrix_concat</a> (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
89
|
+
const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *new_matrix);
|
90
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-point" title="pango_matrix_transform_point ()">pango_matrix_transform_point</a> (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
91
|
+
<span class="returnvalue">double</span> *x,
|
92
|
+
<span class="returnvalue">double</span> *y);
|
93
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-distance" title="pango_matrix_transform_distance ()">pango_matrix_transform_distance</a> (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
94
|
+
<span class="returnvalue">double</span> *dx,
|
95
|
+
<span class="returnvalue">double</span> *dy);
|
96
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-rectangle" title="pango_matrix_transform_rectangle ()">pango_matrix_transform_rectangle</a> (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
97
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *rect);
|
98
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-pixel-rectangle" title="pango_matrix_transform_pixel_rectangle ()">pango_matrix_transform_pixel_rectangle</a>
|
99
|
+
(const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
100
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *rect);
|
101
|
+
<span class="returnvalue">double</span> <a class="link" href="pango-Glyph-Storage.html#pango-matrix-get-font-scale-factor" title="pango_matrix_get_font_scale_factor ()">pango_matrix_get_font_scale_factor</a> (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix);
|
102
|
+
typedef <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph">PangoGlyph</a>;
|
103
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-EMPTY:CAPS" title="PANGO_GLYPH_EMPTY">PANGO_GLYPH_EMPTY</a>
|
104
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-INVALID-INPUT:CAPS" title="PANGO_GLYPH_INVALID_INPUT">PANGO_GLYPH_INVALID_INPUT</a>
|
105
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-UNKNOWN-FLAG:CAPS" title="PANGO_GLYPH_UNKNOWN_FLAG">PANGO_GLYPH_UNKNOWN_FLAG</a>
|
106
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-GET-UNKNOWN-GLYPH:CAPS" title="PANGO_GET_UNKNOWN_GLYPH()">PANGO_GET_UNKNOWN_GLYPH</a> (wc)
|
107
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphInfo" title="PangoGlyphInfo">PangoGlyphInfo</a>;
|
108
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphGeometry" title="PangoGlyphGeometry">PangoGlyphGeometry</a>;
|
109
|
+
typedef <a class="link" href="pango-Glyph-Storage.html#PangoGlyphUnit" title="PangoGlyphUnit">PangoGlyphUnit</a>;
|
110
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphVisAttr" title="PangoGlyphVisAttr">PangoGlyphVisAttr</a>;
|
111
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString">PangoGlyphString</a>;
|
112
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem">PangoGlyphItem</a>;
|
113
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter">PangoGlyphItemIter</a>;
|
114
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-TYPE-GLYPH-STRING:CAPS" title="PANGO_TYPE_GLYPH_STRING">PANGO_TYPE_GLYPH_STRING</a>
|
115
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> * <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-new" title="pango_glyph_string_new ()">pango_glyph_string_new</a> (void);
|
116
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> * <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-copy" title="pango_glyph_string_copy ()">pango_glyph_string_copy</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *string);
|
117
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-set-size" title="pango_glyph_string_set_size ()">pango_glyph_string_set_size</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *string,
|
118
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> new_len);
|
119
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-free" title="pango_glyph_string_free ()">pango_glyph_string_free</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *string);
|
120
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-extents" title="pango_glyph_string_extents ()">pango_glyph_string_extents</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
121
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
122
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
123
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect);
|
124
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-extents-range" title="pango_glyph_string_extents_range ()">pango_glyph_string_extents_range</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
125
|
+
<span class="returnvalue">int</span> start,
|
126
|
+
<span class="returnvalue">int</span> end,
|
127
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
128
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
129
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect);
|
130
|
+
<span class="returnvalue">int</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-get-width" title="pango_glyph_string_get_width ()">pango_glyph_string_get_width</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs);
|
131
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-index-to-x" title="pango_glyph_string_index_to_x ()">pango_glyph_string_index_to_x</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
132
|
+
<span class="returnvalue">char</span> *text,
|
133
|
+
<span class="returnvalue">int</span> length,
|
134
|
+
<a class="link" href="pango-Text-Processing.html#PangoAnalysis" title="PangoAnalysis"><span class="returnvalue">PangoAnalysis</span></a> *analysis,
|
135
|
+
<span class="returnvalue">int</span> index_,
|
136
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> trailing,
|
137
|
+
<span class="returnvalue">int</span> *x_pos);
|
138
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-x-to-index" title="pango_glyph_string_x_to_index ()">pango_glyph_string_x_to_index</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
139
|
+
<span class="returnvalue">char</span> *text,
|
140
|
+
<span class="returnvalue">int</span> length,
|
141
|
+
<a class="link" href="pango-Text-Processing.html#PangoAnalysis" title="PangoAnalysis"><span class="returnvalue">PangoAnalysis</span></a> *analysis,
|
142
|
+
<span class="returnvalue">int</span> x_pos,
|
143
|
+
<span class="returnvalue">int</span> *index_,
|
144
|
+
<span class="returnvalue">int</span> *trailing);
|
145
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-get-logical-widths" title="pango_glyph_string_get_logical_widths ()">pango_glyph_string_get_logical_widths</a>
|
146
|
+
(<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
147
|
+
const <span class="returnvalue">char</span> *text,
|
148
|
+
<span class="returnvalue">int</span> length,
|
149
|
+
<span class="returnvalue">int</span> embedding_level,
|
150
|
+
<span class="returnvalue">int</span> *logical_widths);
|
151
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-TYPE-GLYPH-ITEM:CAPS" title="PANGO_TYPE_GLYPH_ITEM">PANGO_TYPE_GLYPH_ITEM</a>
|
152
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> * <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-copy" title="pango_glyph_item_copy ()">pango_glyph_item_copy</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *orig);
|
153
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-free" title="pango_glyph_item_free ()">pango_glyph_item_free</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item);
|
154
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> * <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-split" title="pango_glyph_item_split ()">pango_glyph_item_split</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *orig,
|
155
|
+
const <span class="returnvalue">char</span> *text,
|
156
|
+
<span class="returnvalue">int</span> split_index);
|
157
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="returnvalue">GSList</span></a> * <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-apply-attrs" title="pango_glyph_item_apply_attrs ()">pango_glyph_item_apply_attrs</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
158
|
+
const <span class="returnvalue">char</span> *text,
|
159
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);
|
160
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-letter-space" title="pango_glyph_item_letter_space ()">pango_glyph_item_letter_space</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
161
|
+
const <span class="returnvalue">char</span> *text,
|
162
|
+
<a class="link" href="pango-Text-Processing.html#PangoLogAttr" title="PangoLogAttr"><span class="returnvalue">PangoLogAttr</span></a> *log_attrs,
|
163
|
+
<span class="returnvalue">int</span> letter_spacing);
|
164
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-get-logical-widths" title="pango_glyph_item_get_logical_widths ()">pango_glyph_item_get_logical_widths</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
165
|
+
const <span class="returnvalue">char</span> *text,
|
166
|
+
<span class="returnvalue">int</span> *logical_widths);
|
167
|
+
#define <a class="link" href="pango-Glyph-Storage.html#PANGO-TYPE-GLYPH-ITEM-ITER:CAPS" title="PANGO_TYPE_GLYPH_ITEM_ITER">PANGO_TYPE_GLYPH_ITEM_ITER</a>
|
168
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> * <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-copy" title="pango_glyph_item_iter_copy ()">pango_glyph_item_iter_copy</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *orig);
|
169
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-free" title="pango_glyph_item_iter_free ()">pango_glyph_item_iter_free</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter);
|
170
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-init-start" title="pango_glyph_item_iter_init_start ()">pango_glyph_item_iter_init_start</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter,
|
171
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
172
|
+
const <span class="returnvalue">char</span> *text);
|
173
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-init-end" title="pango_glyph_item_iter_init_end ()">pango_glyph_item_iter_init_end</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter,
|
174
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
175
|
+
const <span class="returnvalue">char</span> *text);
|
176
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-next-cluster" title="pango_glyph_item_iter_next_cluster ()">pango_glyph_item_iter_next_cluster</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter);
|
177
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-prev-cluster" title="pango_glyph_item_iter_prev_cluster ()">pango_glyph_item_iter_prev_cluster</a> (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter);
|
178
|
+
</pre>
|
179
|
+
</div>
|
180
|
+
<div class="refsect1" title="Description">
|
181
|
+
<a name="pango-Glyph-Storage.description"></a><h2>Description</h2>
|
182
|
+
<p>
|
183
|
+
<a class="link" href="pango-Text-Processing.html#pango-shape" title="pango_shape ()"><code class="function">pango_shape()</code></a> produces a string of glyphs which
|
184
|
+
can be measured or drawn to the screen. The following
|
185
|
+
structures are used to store information about
|
186
|
+
glyphs.
|
187
|
+
</p>
|
188
|
+
</div>
|
189
|
+
<div class="refsect1" title="Details">
|
190
|
+
<a name="pango-Glyph-Storage.details"></a><h2>Details</h2>
|
191
|
+
<div class="refsect2" title="PANGO_SCALE">
|
192
|
+
<a name="PANGO-SCALE:CAPS"></a><h3>PANGO_SCALE</h3>
|
193
|
+
<pre class="programlisting">#define PANGO_SCALE 1024
|
194
|
+
</pre>
|
195
|
+
<p>
|
196
|
+
The <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> macro represents the scale between dimensions used
|
197
|
+
for Pango distances and device units. (The definition of device
|
198
|
+
units is dependent on the output device; it will typically be pixels
|
199
|
+
for a screen, and points for a printer.) <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> is currently
|
200
|
+
1024, but this may be changed in the future.
|
201
|
+
</p>
|
202
|
+
<p>
|
203
|
+
When setting font sizes, device units are always considered to be
|
204
|
+
points (as in "12 point font"), rather than pixels.
|
205
|
+
</p>
|
206
|
+
</div>
|
207
|
+
<hr>
|
208
|
+
<div class="refsect2" title="PANGO_PIXELS()">
|
209
|
+
<a name="PANGO-PIXELS:CAPS"></a><h3>PANGO_PIXELS()</h3>
|
210
|
+
<pre class="programlisting">#define PANGO_PIXELS(d) (((int)(d) + 512) >> 10)
|
211
|
+
</pre>
|
212
|
+
<p>
|
213
|
+
Converts a dimension to device units by rounding.
|
214
|
+
</p>
|
215
|
+
<div class="variablelist"><table border="0">
|
216
|
+
<col align="left" valign="top">
|
217
|
+
<tbody>
|
218
|
+
<tr>
|
219
|
+
<td><p><span class="term"><em class="parameter"><code>d</code></em> :</span></p></td>
|
220
|
+
<td>a dimension in Pango units.
|
221
|
+
</td>
|
222
|
+
</tr>
|
223
|
+
<tr>
|
224
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
225
|
+
<td>rounded dimension in device units.
|
226
|
+
</td>
|
227
|
+
</tr>
|
228
|
+
</tbody>
|
229
|
+
</table></div>
|
230
|
+
</div>
|
231
|
+
<hr>
|
232
|
+
<div class="refsect2" title="PANGO_PIXELS_FLOOR()">
|
233
|
+
<a name="PANGO-PIXELS-FLOOR:CAPS"></a><h3>PANGO_PIXELS_FLOOR()</h3>
|
234
|
+
<pre class="programlisting">#define PANGO_PIXELS_FLOOR(d) (((int)(d)) >> 10)
|
235
|
+
</pre>
|
236
|
+
<p>
|
237
|
+
Converts a dimension to device units by flooring.
|
238
|
+
</p>
|
239
|
+
<div class="variablelist"><table border="0">
|
240
|
+
<col align="left" valign="top">
|
241
|
+
<tbody>
|
242
|
+
<tr>
|
243
|
+
<td><p><span class="term"><em class="parameter"><code>d</code></em> :</span></p></td>
|
244
|
+
<td>a dimension in Pango units.
|
245
|
+
</td>
|
246
|
+
</tr>
|
247
|
+
<tr>
|
248
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
249
|
+
<td>floored dimension in device units.
|
250
|
+
</td>
|
251
|
+
</tr>
|
252
|
+
</tbody>
|
253
|
+
</table></div>
|
254
|
+
<p class="since">Since 1.14</p>
|
255
|
+
</div>
|
256
|
+
<hr>
|
257
|
+
<div class="refsect2" title="PANGO_PIXELS_CEIL()">
|
258
|
+
<a name="PANGO-PIXELS-CEIL:CAPS"></a><h3>PANGO_PIXELS_CEIL()</h3>
|
259
|
+
<pre class="programlisting">#define PANGO_PIXELS_CEIL(d) (((int)(d) + 1023) >> 10)
|
260
|
+
</pre>
|
261
|
+
<p>
|
262
|
+
Converts a dimension to device units by ceiling.
|
263
|
+
</p>
|
264
|
+
<div class="variablelist"><table border="0">
|
265
|
+
<col align="left" valign="top">
|
266
|
+
<tbody>
|
267
|
+
<tr>
|
268
|
+
<td><p><span class="term"><em class="parameter"><code>d</code></em> :</span></p></td>
|
269
|
+
<td>a dimension in Pango units.
|
270
|
+
</td>
|
271
|
+
</tr>
|
272
|
+
<tr>
|
273
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
274
|
+
<td>ceiled dimension in device units.
|
275
|
+
</td>
|
276
|
+
</tr>
|
277
|
+
</tbody>
|
278
|
+
</table></div>
|
279
|
+
<p class="since">Since 1.14</p>
|
280
|
+
</div>
|
281
|
+
<hr>
|
282
|
+
<div class="refsect2" title="PANGO_UNITS_ROUND()">
|
283
|
+
<a name="PANGO-UNITS-ROUND:CAPS"></a><h3>PANGO_UNITS_ROUND()</h3>
|
284
|
+
<pre class="programlisting">#define PANGO_UNITS_ROUND(d)</pre>
|
285
|
+
<p>
|
286
|
+
Rounds a dimension to whole device units, but does not
|
287
|
+
convert it to device units.
|
288
|
+
</p>
|
289
|
+
<div class="variablelist"><table border="0">
|
290
|
+
<col align="left" valign="top">
|
291
|
+
<tbody>
|
292
|
+
<tr>
|
293
|
+
<td><p><span class="term"><em class="parameter"><code>d</code></em> :</span></p></td>
|
294
|
+
<td>a dimension in Pango units.
|
295
|
+
</td>
|
296
|
+
</tr>
|
297
|
+
<tr>
|
298
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
299
|
+
<td>rounded dimension in Pango units.
|
300
|
+
</td>
|
301
|
+
</tr>
|
302
|
+
</tbody>
|
303
|
+
</table></div>
|
304
|
+
<p class="since">Since 1.18</p>
|
305
|
+
</div>
|
306
|
+
<hr>
|
307
|
+
<div class="refsect2" title="pango_units_to_double ()">
|
308
|
+
<a name="pango-units-to-double"></a><h3>pango_units_to_double ()</h3>
|
309
|
+
<pre class="programlisting"><span class="returnvalue">double</span> pango_units_to_double (<span class="returnvalue">int</span> i);</pre>
|
310
|
+
<p>
|
311
|
+
Converts a number in Pango units to floating-point: divides
|
312
|
+
it by <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a>.</p>
|
313
|
+
<div class="variablelist"><table border="0">
|
314
|
+
<col align="left" valign="top">
|
315
|
+
<tbody>
|
316
|
+
<tr>
|
317
|
+
<td><p><span class="term"><em class="parameter"><code>i</code></em> :</span></p></td>
|
318
|
+
<td> value in Pango units
|
319
|
+
</td>
|
320
|
+
</tr>
|
321
|
+
<tr>
|
322
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
323
|
+
<td> the double value.
|
324
|
+
|
325
|
+
</td>
|
326
|
+
</tr>
|
327
|
+
</tbody>
|
328
|
+
</table></div>
|
329
|
+
<p class="since">Since 1.16</p>
|
330
|
+
</div>
|
331
|
+
<hr>
|
332
|
+
<div class="refsect2" title="pango_units_from_double ()">
|
333
|
+
<a name="pango-units-from-double"></a><h3>pango_units_from_double ()</h3>
|
334
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_units_from_double (<span class="returnvalue">double</span> d);</pre>
|
335
|
+
<p>
|
336
|
+
Converts a floating-point number to Pango units: multiplies
|
337
|
+
it by <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> and rounds to nearest integer.</p>
|
338
|
+
<div class="variablelist"><table border="0">
|
339
|
+
<col align="left" valign="top">
|
340
|
+
<tbody>
|
341
|
+
<tr>
|
342
|
+
<td><p><span class="term"><em class="parameter"><code>d</code></em> :</span></p></td>
|
343
|
+
<td> double floating-point value
|
344
|
+
</td>
|
345
|
+
</tr>
|
346
|
+
<tr>
|
347
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
348
|
+
<td> the value in Pango units.
|
349
|
+
|
350
|
+
</td>
|
351
|
+
</tr>
|
352
|
+
</tbody>
|
353
|
+
</table></div>
|
354
|
+
<p class="since">Since 1.16</p>
|
355
|
+
</div>
|
356
|
+
<hr>
|
357
|
+
<div class="refsect2" title="PangoRectangle">
|
358
|
+
<a name="PangoRectangle"></a><h3>PangoRectangle</h3>
|
359
|
+
<pre class="programlisting">typedef struct {
|
360
|
+
int x;
|
361
|
+
int y;
|
362
|
+
int width;
|
363
|
+
int height;
|
364
|
+
} PangoRectangle;
|
365
|
+
</pre>
|
366
|
+
<p>
|
367
|
+
The <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a> structure represents a rectangle. It is frequently
|
368
|
+
used to represent the logical or ink extents of a single glyph or section
|
369
|
+
of text. (See, for instance, <a class="link" href="pango-Fonts.html#pango-font-get-glyph-extents" title="pango_font_get_glyph_extents ()"><code class="function">pango_font_get_glyph_extents()</code></a>)
|
370
|
+
</p>
|
371
|
+
<div class="variablelist"><table border="0">
|
372
|
+
<col align="left" valign="top">
|
373
|
+
<tbody>
|
374
|
+
<tr>
|
375
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoRectangle.x"></a>x</code></em>;</span></p></td>
|
376
|
+
<td>X coordinate of the left side of the rectangle.
|
377
|
+
</td>
|
378
|
+
</tr>
|
379
|
+
<tr>
|
380
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoRectangle.y"></a>y</code></em>;</span></p></td>
|
381
|
+
<td>Y coordinate of the the top side of the rectangle.
|
382
|
+
</td>
|
383
|
+
</tr>
|
384
|
+
<tr>
|
385
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoRectangle.width"></a>width</code></em>;</span></p></td>
|
386
|
+
<td>width of the rectangle.
|
387
|
+
</td>
|
388
|
+
</tr>
|
389
|
+
<tr>
|
390
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoRectangle.height"></a>height</code></em>;</span></p></td>
|
391
|
+
<td>height of the rectangle.
|
392
|
+
</td>
|
393
|
+
</tr>
|
394
|
+
</tbody>
|
395
|
+
</table></div>
|
396
|
+
</div>
|
397
|
+
<hr>
|
398
|
+
<div class="refsect2" title="PANGO_ASCENT()">
|
399
|
+
<a name="PANGO-ASCENT:CAPS"></a><h3>PANGO_ASCENT()</h3>
|
400
|
+
<pre class="programlisting">#define PANGO_ASCENT(rect) (-(rect).y)
|
401
|
+
</pre>
|
402
|
+
<p>
|
403
|
+
Extracts the <em class="firstterm">ascent</em> from a <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a>
|
404
|
+
representing glyph extents. The ascent is the distance from the
|
405
|
+
baseline to the highest point of the character. This is positive if the
|
406
|
+
glyph ascends above the baseline.
|
407
|
+
</p>
|
408
|
+
<div class="variablelist"><table border="0">
|
409
|
+
<col align="left" valign="top">
|
410
|
+
<tbody><tr>
|
411
|
+
<td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
|
412
|
+
<td>a <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a>
|
413
|
+
</td>
|
414
|
+
</tr></tbody>
|
415
|
+
</table></div>
|
416
|
+
</div>
|
417
|
+
<hr>
|
418
|
+
<div class="refsect2" title="PANGO_DESCENT()">
|
419
|
+
<a name="PANGO-DESCENT:CAPS"></a><h3>PANGO_DESCENT()</h3>
|
420
|
+
<pre class="programlisting">#define PANGO_DESCENT(rect) ((rect).y + (rect).height)
|
421
|
+
</pre>
|
422
|
+
<p>
|
423
|
+
Extracts the <em class="firstterm">descent</em> from a <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a>
|
424
|
+
representing glyph extents. The descent is the distance from the
|
425
|
+
baseline to the lowest point of the character. This is positive if the
|
426
|
+
glyph descends below the baseline.
|
427
|
+
</p>
|
428
|
+
<div class="variablelist"><table border="0">
|
429
|
+
<col align="left" valign="top">
|
430
|
+
<tbody><tr>
|
431
|
+
<td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
|
432
|
+
<td>a <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a>
|
433
|
+
</td>
|
434
|
+
</tr></tbody>
|
435
|
+
</table></div>
|
436
|
+
</div>
|
437
|
+
<hr>
|
438
|
+
<div class="refsect2" title="PANGO_LBEARING()">
|
439
|
+
<a name="PANGO-LBEARING:CAPS"></a><h3>PANGO_LBEARING()</h3>
|
440
|
+
<pre class="programlisting">#define PANGO_LBEARING(rect) ((rect).x)
|
441
|
+
</pre>
|
442
|
+
<p>
|
443
|
+
Extracts the <em class="firstterm">left bearing</em> from a <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a>
|
444
|
+
representing glyph extents. The left bearing is the distance from the
|
445
|
+
horizontal origin to the farthest left point of the character.
|
446
|
+
This is positive for characters drawn completely to the right of the
|
447
|
+
glyph origin.
|
448
|
+
</p>
|
449
|
+
<div class="variablelist"><table border="0">
|
450
|
+
<col align="left" valign="top">
|
451
|
+
<tbody><tr>
|
452
|
+
<td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
|
453
|
+
<td>a <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a>
|
454
|
+
</td>
|
455
|
+
</tr></tbody>
|
456
|
+
</table></div>
|
457
|
+
</div>
|
458
|
+
<hr>
|
459
|
+
<div class="refsect2" title="PANGO_RBEARING()">
|
460
|
+
<a name="PANGO-RBEARING:CAPS"></a><h3>PANGO_RBEARING()</h3>
|
461
|
+
<pre class="programlisting">#define PANGO_RBEARING(rect) ((rect).x + (rect).width)
|
462
|
+
</pre>
|
463
|
+
<p>
|
464
|
+
Extracts the <em class="firstterm">right bearing</em> from a <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a>
|
465
|
+
representing glyph extents. The right bearing is the distance from the
|
466
|
+
horizontal origin to the farthest right point of the character.
|
467
|
+
This is positive except for characters drawn completely to the left of the
|
468
|
+
horizontal origin.
|
469
|
+
</p>
|
470
|
+
<div class="variablelist"><table border="0">
|
471
|
+
<col align="left" valign="top">
|
472
|
+
<tbody><tr>
|
473
|
+
<td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
|
474
|
+
<td>a <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a>
|
475
|
+
</td>
|
476
|
+
</tr></tbody>
|
477
|
+
</table></div>
|
478
|
+
</div>
|
479
|
+
<hr>
|
480
|
+
<div class="refsect2" title="pango_extents_to_pixels ()">
|
481
|
+
<a name="pango-extents-to-pixels"></a><h3>pango_extents_to_pixels ()</h3>
|
482
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_extents_to_pixels (<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *inclusive,
|
483
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *nearest);</pre>
|
484
|
+
<p>
|
485
|
+
Converts extents from Pango units to device units, dividing by the
|
486
|
+
<a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> factor and performing rounding.
|
487
|
+
</p>
|
488
|
+
<p>
|
489
|
+
The <em class="parameter"><code>inclusive</code></em> rectangle is converted by flooring the x/y coordinates and extending
|
490
|
+
width/height, such that the final rectangle completely includes the original
|
491
|
+
rectangle.
|
492
|
+
</p>
|
493
|
+
<p>
|
494
|
+
The <em class="parameter"><code>nearest</code></em> rectangle is converted by rounding the coordinates
|
495
|
+
of the rectangle to the nearest device unit (pixel).
|
496
|
+
</p>
|
497
|
+
<p>
|
498
|
+
The rule to which argument to use is: if you want the resulting device-space
|
499
|
+
rectangle to completely contain the original rectangle, pass it in as <em class="parameter"><code>inclusive</code></em>.
|
500
|
+
If you want two touching-but-not-overlapping rectangles stay
|
501
|
+
touching-but-not-overlapping after rounding to device units, pass them in
|
502
|
+
as <em class="parameter"><code>nearest</code></em>.</p>
|
503
|
+
<div class="variablelist"><table border="0">
|
504
|
+
<col align="left" valign="top">
|
505
|
+
<tbody>
|
506
|
+
<tr>
|
507
|
+
<td><p><span class="term"><em class="parameter"><code>inclusive</code></em> :</span></p></td>
|
508
|
+
<td> rectangle to round to pixels inclusively, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
509
|
+
</td>
|
510
|
+
</tr>
|
511
|
+
<tr>
|
512
|
+
<td><p><span class="term"><em class="parameter"><code>nearest</code></em> :</span></p></td>
|
513
|
+
<td> rectangle to round to nearest pixels, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
514
|
+
</td>
|
515
|
+
</tr>
|
516
|
+
</tbody>
|
517
|
+
</table></div>
|
518
|
+
<p class="since">Since 1.16</p>
|
519
|
+
</div>
|
520
|
+
<hr>
|
521
|
+
<div class="refsect2" title="PangoMatrix">
|
522
|
+
<a name="PangoMatrix"></a><h3>PangoMatrix</h3>
|
523
|
+
<pre class="programlisting">typedef struct {
|
524
|
+
double xx;
|
525
|
+
double xy;
|
526
|
+
double yx;
|
527
|
+
double yy;
|
528
|
+
double x0;
|
529
|
+
double y0;
|
530
|
+
} PangoMatrix;
|
531
|
+
</pre>
|
532
|
+
<p>
|
533
|
+
A structure specifying a transformation between user-space
|
534
|
+
coordinates and device coordinates. The transformation
|
535
|
+
is given by
|
536
|
+
</p>
|
537
|
+
<p>
|
538
|
+
</p>
|
539
|
+
<pre class="programlisting">
|
540
|
+
x_device = x_user * matrix->xx + y_user * matrix->xy + matrix->x0;
|
541
|
+
y_device = x_user * matrix->yx + y_user * matrix->yy + matrix->y0;
|
542
|
+
</pre>
|
543
|
+
<div class="variablelist"><table border="0">
|
544
|
+
<col align="left" valign="top">
|
545
|
+
<tbody>
|
546
|
+
<tr>
|
547
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PangoMatrix.xx"></a>xx</code></em>;</span></p></td>
|
548
|
+
<td> 1st component of the transformation matrix
|
549
|
+
</td>
|
550
|
+
</tr>
|
551
|
+
<tr>
|
552
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PangoMatrix.xy"></a>xy</code></em>;</span></p></td>
|
553
|
+
<td> 2nd component of the transformation matrix
|
554
|
+
</td>
|
555
|
+
</tr>
|
556
|
+
<tr>
|
557
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PangoMatrix.yx"></a>yx</code></em>;</span></p></td>
|
558
|
+
<td> 3rd component of the transformation matrix
|
559
|
+
</td>
|
560
|
+
</tr>
|
561
|
+
<tr>
|
562
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PangoMatrix.yy"></a>yy</code></em>;</span></p></td>
|
563
|
+
<td> 4th component of the transformation matrix
|
564
|
+
</td>
|
565
|
+
</tr>
|
566
|
+
<tr>
|
567
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PangoMatrix.x0"></a>x0</code></em>;</span></p></td>
|
568
|
+
<td> x translation
|
569
|
+
</td>
|
570
|
+
</tr>
|
571
|
+
<tr>
|
572
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PangoMatrix.y0"></a>y0</code></em>;</span></p></td>
|
573
|
+
<td> y translation
|
574
|
+
</td>
|
575
|
+
</tr>
|
576
|
+
</tbody>
|
577
|
+
</table></div>
|
578
|
+
<p class="since">Since 1.6</p>
|
579
|
+
</div>
|
580
|
+
<hr>
|
581
|
+
<div class="refsect2" title="PANGO_TYPE_MATRIX">
|
582
|
+
<a name="PANGO-TYPE-MATRIX:CAPS"></a><h3>PANGO_TYPE_MATRIX</h3>
|
583
|
+
<pre class="programlisting">#define PANGO_TYPE_MATRIX (pango_matrix_get_type ())
|
584
|
+
</pre>
|
585
|
+
<p>
|
586
|
+
The GObject type for <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a></p>
|
587
|
+
</div>
|
588
|
+
<hr>
|
589
|
+
<div class="refsect2" title="PANGO_MATRIX_INIT">
|
590
|
+
<a name="PANGO-MATRIX-INIT:CAPS"></a><h3>PANGO_MATRIX_INIT</h3>
|
591
|
+
<pre class="programlisting">#define PANGO_MATRIX_INIT { 1., 0., 0., 1., 0., 0. }
|
592
|
+
</pre>
|
593
|
+
<p>
|
594
|
+
Constant that can be used to initialize a PangoMatrix to
|
595
|
+
the identity transform.
|
596
|
+
</p>
|
597
|
+
<p>
|
598
|
+
</p>
|
599
|
+
<div class="informalexample"><pre class="programlisting">
|
600
|
+
PangoMatrix matrix = PANGO_MATRIX_INIT;
|
601
|
+
pango_matrix_rotate (&matrix, 45.);
|
602
|
+
</pre></div>
|
603
|
+
<p class="since">Since 1.6</p>
|
604
|
+
</div>
|
605
|
+
<hr>
|
606
|
+
<div class="refsect2" title="pango_matrix_copy ()">
|
607
|
+
<a name="pango-matrix-copy"></a><h3>pango_matrix_copy ()</h3>
|
608
|
+
<pre class="programlisting"><a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> * pango_matrix_copy (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix);</pre>
|
609
|
+
<p>
|
610
|
+
Copies a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>.</p>
|
611
|
+
<div class="variablelist"><table border="0">
|
612
|
+
<col align="left" valign="top">
|
613
|
+
<tbody>
|
614
|
+
<tr>
|
615
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
616
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
617
|
+
</td>
|
618
|
+
</tr>
|
619
|
+
<tr>
|
620
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
621
|
+
<td> the newly allocated <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>, which should
|
622
|
+
be freed with <a class="link" href="pango-Glyph-Storage.html#pango-matrix-free" title="pango_matrix_free ()"><code class="function">pango_matrix_free()</code></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
|
623
|
+
<em class="parameter"><code>matrix</code></em> was <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
624
|
+
|
625
|
+
</td>
|
626
|
+
</tr>
|
627
|
+
</tbody>
|
628
|
+
</table></div>
|
629
|
+
<p class="since">Since 1.6</p>
|
630
|
+
</div>
|
631
|
+
<hr>
|
632
|
+
<div class="refsect2" title="pango_matrix_free ()">
|
633
|
+
<a name="pango-matrix-free"></a><h3>pango_matrix_free ()</h3>
|
634
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_matrix_free (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix);</pre>
|
635
|
+
<p>
|
636
|
+
Free a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a> created with <a class="link" href="pango-Glyph-Storage.html#pango-matrix-copy" title="pango_matrix_copy ()"><code class="function">pango_matrix_copy()</code></a>.</p>
|
637
|
+
<div class="variablelist"><table border="0">
|
638
|
+
<col align="left" valign="top">
|
639
|
+
<tbody><tr>
|
640
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
641
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
642
|
+
</td>
|
643
|
+
</tr></tbody>
|
644
|
+
</table></div>
|
645
|
+
<p class="since">Since 1.6</p>
|
646
|
+
</div>
|
647
|
+
<hr>
|
648
|
+
<div class="refsect2" title="pango_matrix_translate ()">
|
649
|
+
<a name="pango-matrix-translate"></a><h3>pango_matrix_translate ()</h3>
|
650
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_matrix_translate (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
651
|
+
<span class="returnvalue">double</span> tx,
|
652
|
+
<span class="returnvalue">double</span> ty);</pre>
|
653
|
+
<p>
|
654
|
+
Changes the transformation represented by <em class="parameter"><code>matrix</code></em> to be the
|
655
|
+
transformation given by first translating by (<em class="parameter"><code>tx</code></em>, <em class="parameter"><code>ty</code></em>)
|
656
|
+
then applying the original transformation.</p>
|
657
|
+
<div class="variablelist"><table border="0">
|
658
|
+
<col align="left" valign="top">
|
659
|
+
<tbody>
|
660
|
+
<tr>
|
661
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
662
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>
|
663
|
+
</td>
|
664
|
+
</tr>
|
665
|
+
<tr>
|
666
|
+
<td><p><span class="term"><em class="parameter"><code>tx</code></em> :</span></p></td>
|
667
|
+
<td> amount to translate in the X direction
|
668
|
+
</td>
|
669
|
+
</tr>
|
670
|
+
<tr>
|
671
|
+
<td><p><span class="term"><em class="parameter"><code>ty</code></em> :</span></p></td>
|
672
|
+
<td> amount to translate in the Y direction
|
673
|
+
</td>
|
674
|
+
</tr>
|
675
|
+
</tbody>
|
676
|
+
</table></div>
|
677
|
+
<p class="since">Since 1.6</p>
|
678
|
+
</div>
|
679
|
+
<hr>
|
680
|
+
<div class="refsect2" title="pango_matrix_scale ()">
|
681
|
+
<a name="pango-matrix-scale"></a><h3>pango_matrix_scale ()</h3>
|
682
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_matrix_scale (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
683
|
+
<span class="returnvalue">double</span> scale_x,
|
684
|
+
<span class="returnvalue">double</span> scale_y);</pre>
|
685
|
+
<p>
|
686
|
+
Changes the transformation represented by <em class="parameter"><code>matrix</code></em> to be the
|
687
|
+
transformation given by first scaling by <em class="parameter"><code>sx</code></em> in the X direction
|
688
|
+
and <em class="parameter"><code>sy</code></em> in the Y direction then applying the original
|
689
|
+
transformation.</p>
|
690
|
+
<div class="variablelist"><table border="0">
|
691
|
+
<col align="left" valign="top">
|
692
|
+
<tbody>
|
693
|
+
<tr>
|
694
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
695
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>
|
696
|
+
</td>
|
697
|
+
</tr>
|
698
|
+
<tr>
|
699
|
+
<td><p><span class="term"><em class="parameter"><code>scale_x</code></em> :</span></p></td>
|
700
|
+
<td> amount to scale by in X direction
|
701
|
+
</td>
|
702
|
+
</tr>
|
703
|
+
<tr>
|
704
|
+
<td><p><span class="term"><em class="parameter"><code>scale_y</code></em> :</span></p></td>
|
705
|
+
<td> amount to scale by in Y direction
|
706
|
+
</td>
|
707
|
+
</tr>
|
708
|
+
</tbody>
|
709
|
+
</table></div>
|
710
|
+
<p class="since">Since 1.6</p>
|
711
|
+
</div>
|
712
|
+
<hr>
|
713
|
+
<div class="refsect2" title="pango_matrix_rotate ()">
|
714
|
+
<a name="pango-matrix-rotate"></a><h3>pango_matrix_rotate ()</h3>
|
715
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_matrix_rotate (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
716
|
+
<span class="returnvalue">double</span> degrees);</pre>
|
717
|
+
<p>
|
718
|
+
Changes the transformation represented by <em class="parameter"><code>matrix</code></em> to be the
|
719
|
+
transformation given by first rotating by <em class="parameter"><code>degrees</code></em> degrees
|
720
|
+
counter-clockwise then applying the original transformation.</p>
|
721
|
+
<div class="variablelist"><table border="0">
|
722
|
+
<col align="left" valign="top">
|
723
|
+
<tbody>
|
724
|
+
<tr>
|
725
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
726
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>
|
727
|
+
</td>
|
728
|
+
</tr>
|
729
|
+
<tr>
|
730
|
+
<td><p><span class="term"><em class="parameter"><code>degrees</code></em> :</span></p></td>
|
731
|
+
<td> degrees to rotate counter-clockwise
|
732
|
+
</td>
|
733
|
+
</tr>
|
734
|
+
</tbody>
|
735
|
+
</table></div>
|
736
|
+
<p class="since">Since 1.6</p>
|
737
|
+
</div>
|
738
|
+
<hr>
|
739
|
+
<div class="refsect2" title="pango_matrix_concat ()">
|
740
|
+
<a name="pango-matrix-concat"></a><h3>pango_matrix_concat ()</h3>
|
741
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_matrix_concat (<a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
742
|
+
const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *new_matrix);</pre>
|
743
|
+
<p>
|
744
|
+
Changes the transformation represented by <em class="parameter"><code>matrix</code></em> to be the
|
745
|
+
transformation given by first applying transformation
|
746
|
+
given by <em class="parameter"><code>new_matrix</code></em> then applying the original transformation.</p>
|
747
|
+
<div class="variablelist"><table border="0">
|
748
|
+
<col align="left" valign="top">
|
749
|
+
<tbody>
|
750
|
+
<tr>
|
751
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
752
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>
|
753
|
+
</td>
|
754
|
+
</tr>
|
755
|
+
<tr>
|
756
|
+
<td><p><span class="term"><em class="parameter"><code>new_matrix</code></em> :</span></p></td>
|
757
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>
|
758
|
+
</td>
|
759
|
+
</tr>
|
760
|
+
</tbody>
|
761
|
+
</table></div>
|
762
|
+
<p class="since">Since 1.6</p>
|
763
|
+
</div>
|
764
|
+
<hr>
|
765
|
+
<div class="refsect2" title="pango_matrix_transform_point ()">
|
766
|
+
<a name="pango-matrix-transform-point"></a><h3>pango_matrix_transform_point ()</h3>
|
767
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_matrix_transform_point (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
768
|
+
<span class="returnvalue">double</span> *x,
|
769
|
+
<span class="returnvalue">double</span> *y);</pre>
|
770
|
+
<p>
|
771
|
+
Transforms the point (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>) by <em class="parameter"><code>matrix</code></em>.</p>
|
772
|
+
<div class="variablelist"><table border="0">
|
773
|
+
<col align="left" valign="top">
|
774
|
+
<tbody>
|
775
|
+
<tr>
|
776
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
777
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
778
|
+
</td>
|
779
|
+
</tr>
|
780
|
+
<tr>
|
781
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
782
|
+
<td> in/out X position
|
783
|
+
</td>
|
784
|
+
</tr>
|
785
|
+
<tr>
|
786
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
787
|
+
<td> in/out Y position
|
788
|
+
</td>
|
789
|
+
</tr>
|
790
|
+
</tbody>
|
791
|
+
</table></div>
|
792
|
+
<p class="since">Since 1.16</p>
|
793
|
+
</div>
|
794
|
+
<hr>
|
795
|
+
<div class="refsect2" title="pango_matrix_transform_distance ()">
|
796
|
+
<a name="pango-matrix-transform-distance"></a><h3>pango_matrix_transform_distance ()</h3>
|
797
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_matrix_transform_distance (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
798
|
+
<span class="returnvalue">double</span> *dx,
|
799
|
+
<span class="returnvalue">double</span> *dy);</pre>
|
800
|
+
<p>
|
801
|
+
Transforms the distance vector (<em class="parameter"><code>dx</code></em>,<em class="parameter"><code>dy</code></em>) by <em class="parameter"><code>matrix</code></em>. This is
|
802
|
+
similar to <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-point" title="pango_matrix_transform_point ()"><code class="function">pango_matrix_transform_point()</code></a> except that the translation
|
803
|
+
components of the transformation are ignored. The calculation of
|
804
|
+
the returned vector is as follows:
|
805
|
+
</p>
|
806
|
+
<p>
|
807
|
+
</p>
|
808
|
+
<pre class="programlisting">
|
809
|
+
dx2 = dx1 * xx + dy1 * xy;
|
810
|
+
dy2 = dx1 * yx + dy1 * yy;
|
811
|
+
</pre>
|
812
|
+
<p>
|
813
|
+
</p>
|
814
|
+
<p>
|
815
|
+
Affine transformations are position invariant, so the same vector
|
816
|
+
always transforms to the same vector. If (<em class="parameter"><code>x1</code></em>,<em class="parameter"><code>y1</code></em>) transforms
|
817
|
+
to (<em class="parameter"><code>x2</code></em>,<em class="parameter"><code>y2</code></em>) then (<em class="parameter"><code>x1</code></em>+<em class="parameter"><code>dx1</code></em>,<em class="parameter"><code>y1</code></em>+<em class="parameter"><code>dy1</code></em>) will transform to
|
818
|
+
(<em class="parameter"><code>x1</code></em>+<em class="parameter"><code>dx2</code></em>,<em class="parameter"><code>y1</code></em>+<em class="parameter"><code>dy2</code></em>) for all values of <em class="parameter"><code>x1</code></em> and <em class="parameter"><code>x2</code></em>.</p>
|
819
|
+
<div class="variablelist"><table border="0">
|
820
|
+
<col align="left" valign="top">
|
821
|
+
<tbody>
|
822
|
+
<tr>
|
823
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
824
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
825
|
+
</td>
|
826
|
+
</tr>
|
827
|
+
<tr>
|
828
|
+
<td><p><span class="term"><em class="parameter"><code>dx</code></em> :</span></p></td>
|
829
|
+
<td> in/out X component of a distance vector
|
830
|
+
</td>
|
831
|
+
</tr>
|
832
|
+
<tr>
|
833
|
+
<td><p><span class="term"><em class="parameter"><code>dy</code></em> :</span></p></td>
|
834
|
+
<td> yn/out Y component of a distance vector
|
835
|
+
</td>
|
836
|
+
</tr>
|
837
|
+
</tbody>
|
838
|
+
</table></div>
|
839
|
+
<p class="since">Since 1.16</p>
|
840
|
+
</div>
|
841
|
+
<hr>
|
842
|
+
<div class="refsect2" title="pango_matrix_transform_rectangle ()">
|
843
|
+
<a name="pango-matrix-transform-rectangle"></a><h3>pango_matrix_transform_rectangle ()</h3>
|
844
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_matrix_transform_rectangle (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
845
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *rect);</pre>
|
846
|
+
<p>
|
847
|
+
First transforms <em class="parameter"><code>rect</code></em> using <em class="parameter"><code>matrix</code></em>, then calculates the bounding box
|
848
|
+
of the transformed rectangle. The rectangle should be in Pango units.
|
849
|
+
</p>
|
850
|
+
<p>
|
851
|
+
This function is useful for example when you want to draw a rotated
|
852
|
+
<em class="parameter"><code>PangoLayout</code></em> to an image buffer, and want to know how large the image
|
853
|
+
should be and how much you should shift the layout when rendering.
|
854
|
+
</p>
|
855
|
+
<p>
|
856
|
+
If you have a rectangle in device units (pixels), use
|
857
|
+
<a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-pixel-rectangle" title="pango_matrix_transform_pixel_rectangle ()"><code class="function">pango_matrix_transform_pixel_rectangle()</code></a>.
|
858
|
+
</p>
|
859
|
+
<p>
|
860
|
+
If you have the rectangle in Pango units and want to convert to
|
861
|
+
transformed pixel bounding box, it is more accurate to transform it first
|
862
|
+
(using this function) and pass the result to <a class="link" href="pango-Glyph-Storage.html#pango-extents-to-pixels" title="pango_extents_to_pixels ()"><code class="function">pango_extents_to_pixels()</code></a>,
|
863
|
+
first argument, for an inclusive rounded rectangle.
|
864
|
+
However, there are valid reasons that you may want to convert
|
865
|
+
to pixels first and then transform, for example when the transformed
|
866
|
+
coordinates may overflow in Pango units (large matrix translation for
|
867
|
+
example).</p>
|
868
|
+
<div class="variablelist"><table border="0">
|
869
|
+
<col align="left" valign="top">
|
870
|
+
<tbody>
|
871
|
+
<tr>
|
872
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
873
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
874
|
+
</td>
|
875
|
+
</tr>
|
876
|
+
<tr>
|
877
|
+
<td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
|
878
|
+
<td> in/out bounding box in Pango units, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
879
|
+
</td>
|
880
|
+
</tr>
|
881
|
+
</tbody>
|
882
|
+
</table></div>
|
883
|
+
<p class="since">Since 1.16</p>
|
884
|
+
</div>
|
885
|
+
<hr>
|
886
|
+
<div class="refsect2" title="pango_matrix_transform_pixel_rectangle ()">
|
887
|
+
<a name="pango-matrix-transform-pixel-rectangle"></a><h3>pango_matrix_transform_pixel_rectangle ()</h3>
|
888
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_matrix_transform_pixel_rectangle
|
889
|
+
(const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix,
|
890
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *rect);</pre>
|
891
|
+
<p>
|
892
|
+
First transforms the <em class="parameter"><code>rect</code></em> using <em class="parameter"><code>matrix</code></em>, then calculates the bounding box
|
893
|
+
of the transformed rectangle. The rectangle should be in device units
|
894
|
+
(pixels).
|
895
|
+
</p>
|
896
|
+
<p>
|
897
|
+
This function is useful for example when you want to draw a rotated
|
898
|
+
<em class="parameter"><code>PangoLayout</code></em> to an image buffer, and want to know how large the image
|
899
|
+
should be and how much you should shift the layout when rendering.
|
900
|
+
</p>
|
901
|
+
<p>
|
902
|
+
For better accuracy, you should use <a class="link" href="pango-Glyph-Storage.html#pango-matrix-transform-rectangle" title="pango_matrix_transform_rectangle ()"><code class="function">pango_matrix_transform_rectangle()</code></a> on
|
903
|
+
original rectangle in Pango units and convert to pixels afterward
|
904
|
+
using <a class="link" href="pango-Glyph-Storage.html#pango-extents-to-pixels" title="pango_extents_to_pixels ()"><code class="function">pango_extents_to_pixels()</code></a>'s first argument.</p>
|
905
|
+
<div class="variablelist"><table border="0">
|
906
|
+
<col align="left" valign="top">
|
907
|
+
<tbody>
|
908
|
+
<tr>
|
909
|
+
<td><p><span class="term"><em class="parameter"><code>matrix</code></em> :</span></p></td>
|
910
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
911
|
+
</td>
|
912
|
+
</tr>
|
913
|
+
<tr>
|
914
|
+
<td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
|
915
|
+
<td> in/out bounding box in device units, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
916
|
+
</td>
|
917
|
+
</tr>
|
918
|
+
</tbody>
|
919
|
+
</table></div>
|
920
|
+
<p class="since">Since 1.16</p>
|
921
|
+
</div>
|
922
|
+
<hr>
|
923
|
+
<div class="refsect2" title="pango_matrix_get_font_scale_factor ()">
|
924
|
+
<a name="pango-matrix-get-font-scale-factor"></a><h3>pango_matrix_get_font_scale_factor ()</h3>
|
925
|
+
<pre class="programlisting"><span class="returnvalue">double</span> pango_matrix_get_font_scale_factor (const <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="returnvalue">PangoMatrix</span></a> *matrix);</pre>
|
926
|
+
<p>
|
927
|
+
Returns the scale factor of a matrix on the height of the font.
|
928
|
+
That is, the scale factor in the direction perpendicular to the
|
929
|
+
vector that the X coordinate is mapped to.</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>matrix</code></em> :</span></p></td>
|
935
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoMatrix" title="PangoMatrix"><span class="type">PangoMatrix</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
936
|
+
</td>
|
937
|
+
</tr>
|
938
|
+
<tr>
|
939
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
940
|
+
<td> the scale factor of <em class="parameter"><code>matrix</code></em> on the height of the font,
|
941
|
+
or 1.0 if <em class="parameter"><code>matrix</code></em> is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
942
|
+
|
943
|
+
</td>
|
944
|
+
</tr>
|
945
|
+
</tbody>
|
946
|
+
</table></div>
|
947
|
+
<p class="since">Since 1.12</p>
|
948
|
+
</div>
|
949
|
+
<hr>
|
950
|
+
<div class="refsect2" title="PangoGlyph">
|
951
|
+
<a name="PangoGlyph"></a><h3>PangoGlyph</h3>
|
952
|
+
<pre class="programlisting">typedef guint32 PangoGlyph;
|
953
|
+
</pre>
|
954
|
+
<p>
|
955
|
+
A <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> represents a single glyph in the output form of a string.
|
956
|
+
</p>
|
957
|
+
</div>
|
958
|
+
<hr>
|
959
|
+
<div class="refsect2" title="PANGO_GLYPH_EMPTY">
|
960
|
+
<a name="PANGO-GLYPH-EMPTY:CAPS"></a><h3>PANGO_GLYPH_EMPTY</h3>
|
961
|
+
<pre class="programlisting">#define PANGO_GLYPH_EMPTY ((PangoGlyph)0x0FFFFFFF)
|
962
|
+
</pre>
|
963
|
+
<p>
|
964
|
+
The <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-EMPTY:CAPS" title="PANGO_GLYPH_EMPTY"><code class="literal">PANGO_GLYPH_EMPTY</code></a> macro represents a <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> value that has a
|
965
|
+
special meaning, which is a zero-width empty glyph. This is useful for
|
966
|
+
example in shaper modules, to use as the glyph for various zero-width
|
967
|
+
Unicode characters (those passing <a class="link" href="pango-Miscellaneous-Utilities.html#pango-is-zero-width" title="pango_is_zero_width ()"><code class="function">pango_is_zero_width()</code></a>).
|
968
|
+
</p>
|
969
|
+
</div>
|
970
|
+
<hr>
|
971
|
+
<div class="refsect2" title="PANGO_GLYPH_INVALID_INPUT">
|
972
|
+
<a name="PANGO-GLYPH-INVALID-INPUT:CAPS"></a><h3>PANGO_GLYPH_INVALID_INPUT</h3>
|
973
|
+
<pre class="programlisting">#define PANGO_GLYPH_INVALID_INPUT ((PangoGlyph)0xFFFFFFFF)
|
974
|
+
</pre>
|
975
|
+
<p>
|
976
|
+
The <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-EMPTY:CAPS" title="PANGO_GLYPH_EMPTY"><code class="literal">PANGO_GLYPH_EMPTY</code></a> macro represents a <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> value that has a
|
977
|
+
special meaning of invalid input. <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> produces one such glyph
|
978
|
+
per invalid input UTF-8 byte and such a glyph is rendered as a crossed
|
979
|
+
box.
|
980
|
+
Note that this value is defined such that it has the <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-UNKNOWN-FLAG:CAPS" title="PANGO_GLYPH_UNKNOWN_FLAG"><code class="literal">PANGO_GLYPH_UNKNOWN_FLAG</code></a>
|
981
|
+
on.
|
982
|
+
</p>
|
983
|
+
<p class="since">Since 1.20</p>
|
984
|
+
</div>
|
985
|
+
<hr>
|
986
|
+
<div class="refsect2" title="PANGO_GLYPH_UNKNOWN_FLAG">
|
987
|
+
<a name="PANGO-GLYPH-UNKNOWN-FLAG:CAPS"></a><h3>PANGO_GLYPH_UNKNOWN_FLAG</h3>
|
988
|
+
<pre class="programlisting">#define PANGO_GLYPH_UNKNOWN_FLAG ((PangoGlyph)0x10000000)
|
989
|
+
</pre>
|
990
|
+
<p>
|
991
|
+
The <a class="link" href="pango-Glyph-Storage.html#PANGO-GLYPH-UNKNOWN-FLAG:CAPS" title="PANGO_GLYPH_UNKNOWN_FLAG"><code class="literal">PANGO_GLYPH_UNKNOWN_FLAG</code></a> macro is a flag value that can be added to
|
992
|
+
a <a href="/usr/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#gunichar"><span class="type">gunichar</span></a> value of a valid Unicode character, to produce a <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a>
|
993
|
+
value, representing an unknown-character glyph for the respective <a href="/usr/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#gunichar"><span class="type">gunichar</span></a>.
|
994
|
+
</p>
|
995
|
+
</div>
|
996
|
+
<hr>
|
997
|
+
<div class="refsect2" title="PANGO_GET_UNKNOWN_GLYPH()">
|
998
|
+
<a name="PANGO-GET-UNKNOWN-GLYPH:CAPS"></a><h3>PANGO_GET_UNKNOWN_GLYPH()</h3>
|
999
|
+
<pre class="programlisting">#define PANGO_GET_UNKNOWN_GLYPH(wc) ((PangoGlyph)(wc)|PANGO_GLYPH_UNKNOWN_FLAG)
|
1000
|
+
</pre>
|
1001
|
+
<p>
|
1002
|
+
Returns a <a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> value that means no glyph was found for <em class="parameter"><code>wc</code></em>.
|
1003
|
+
The way this unknown glyphs are rendered is backend specific. For example,
|
1004
|
+
a box with the hexadecimal Unicode code-point of the character written in it
|
1005
|
+
is what is done in the most common backends.
|
1006
|
+
</p>
|
1007
|
+
<div class="variablelist"><table border="0">
|
1008
|
+
<col align="left" valign="top">
|
1009
|
+
<tbody><tr>
|
1010
|
+
<td><p><span class="term"><em class="parameter"><code>wc</code></em> :</span></p></td>
|
1011
|
+
<td>a Unicode character
|
1012
|
+
</td>
|
1013
|
+
</tr></tbody>
|
1014
|
+
</table></div>
|
1015
|
+
</div>
|
1016
|
+
<hr>
|
1017
|
+
<div class="refsect2" title="PangoGlyphInfo">
|
1018
|
+
<a name="PangoGlyphInfo"></a><h3>PangoGlyphInfo</h3>
|
1019
|
+
<pre class="programlisting">typedef struct {
|
1020
|
+
PangoGlyph glyph;
|
1021
|
+
PangoGlyphGeometry geometry;
|
1022
|
+
PangoGlyphVisAttr attr;
|
1023
|
+
} PangoGlyphInfo;
|
1024
|
+
</pre>
|
1025
|
+
<p>
|
1026
|
+
The <a class="link" href="pango-Glyph-Storage.html#PangoGlyphInfo" title="PangoGlyphInfo"><span class="type">PangoGlyphInfo</span></a> structure represents a single glyph together with
|
1027
|
+
positioning information and visual attributes.
|
1028
|
+
It contains the following fields.
|
1029
|
+
</p>
|
1030
|
+
<div class="variablelist"><table border="0">
|
1031
|
+
<col align="left" valign="top">
|
1032
|
+
<tbody>
|
1033
|
+
<tr>
|
1034
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoGlyph" title="PangoGlyph"><span class="type">PangoGlyph</span></a> <em class="structfield"><code><a name="PangoGlyphInfo.glyph"></a>glyph</code></em>;</span></p></td>
|
1035
|
+
<td>the glyph itself.
|
1036
|
+
</td>
|
1037
|
+
</tr>
|
1038
|
+
<tr>
|
1039
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphGeometry" title="PangoGlyphGeometry"><span class="type">PangoGlyphGeometry</span></a> <em class="structfield"><code><a name="PangoGlyphInfo.geometry"></a>geometry</code></em>;</span></p></td>
|
1040
|
+
<td>the positional information about the glyph.
|
1041
|
+
</td>
|
1042
|
+
</tr>
|
1043
|
+
<tr>
|
1044
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphVisAttr" title="PangoGlyphVisAttr"><span class="type">PangoGlyphVisAttr</span></a> <em class="structfield"><code><a name="PangoGlyphInfo.attr"></a>attr</code></em>;</span></p></td>
|
1045
|
+
<td>the visual attributes of the glyph.
|
1046
|
+
</td>
|
1047
|
+
</tr>
|
1048
|
+
</tbody>
|
1049
|
+
</table></div>
|
1050
|
+
</div>
|
1051
|
+
<hr>
|
1052
|
+
<div class="refsect2" title="PangoGlyphGeometry">
|
1053
|
+
<a name="PangoGlyphGeometry"></a><h3>PangoGlyphGeometry</h3>
|
1054
|
+
<pre class="programlisting">typedef struct {
|
1055
|
+
PangoGlyphUnit width;
|
1056
|
+
PangoGlyphUnit x_offset;
|
1057
|
+
PangoGlyphUnit y_offset;
|
1058
|
+
} PangoGlyphGeometry;
|
1059
|
+
</pre>
|
1060
|
+
<p>
|
1061
|
+
The <a class="link" href="pango-Glyph-Storage.html#PangoGlyphGeometry" title="PangoGlyphGeometry"><span class="type">PangoGlyphGeometry</span></a> structure contains width and positioning
|
1062
|
+
information for a single glyph.
|
1063
|
+
</p>
|
1064
|
+
<div class="variablelist"><table border="0">
|
1065
|
+
<col align="left" valign="top">
|
1066
|
+
<tbody>
|
1067
|
+
<tr>
|
1068
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphUnit" title="PangoGlyphUnit"><span class="type">PangoGlyphUnit</span></a> <em class="structfield"><code><a name="PangoGlyphGeometry.width"></a>width</code></em>;</span></p></td>
|
1069
|
+
<td>the logical width to use for the the character.
|
1070
|
+
</td>
|
1071
|
+
</tr>
|
1072
|
+
<tr>
|
1073
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphUnit" title="PangoGlyphUnit"><span class="type">PangoGlyphUnit</span></a> <em class="structfield"><code><a name="PangoGlyphGeometry.x-offset"></a>x_offset</code></em>;</span></p></td>
|
1074
|
+
<td>horizontal offset from nominal character position.
|
1075
|
+
</td>
|
1076
|
+
</tr>
|
1077
|
+
<tr>
|
1078
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphUnit" title="PangoGlyphUnit"><span class="type">PangoGlyphUnit</span></a> <em class="structfield"><code><a name="PangoGlyphGeometry.y-offset"></a>y_offset</code></em>;</span></p></td>
|
1079
|
+
<td>vertical offset from nominal character position.
|
1080
|
+
</td>
|
1081
|
+
</tr>
|
1082
|
+
</tbody>
|
1083
|
+
</table></div>
|
1084
|
+
</div>
|
1085
|
+
<hr>
|
1086
|
+
<div class="refsect2" title="PangoGlyphUnit">
|
1087
|
+
<a name="PangoGlyphUnit"></a><h3>PangoGlyphUnit</h3>
|
1088
|
+
<pre class="programlisting">typedef gint32 PangoGlyphUnit;
|
1089
|
+
</pre>
|
1090
|
+
<p>
|
1091
|
+
The <a class="link" href="pango-Glyph-Storage.html#PangoGlyphUnit" title="PangoGlyphUnit"><span class="type">PangoGlyphUnit</span></a> type is used to store dimensions within
|
1092
|
+
Pango. Dimensions are stored in 1/<a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> of a device unit.
|
1093
|
+
(A device unit might be a pixel for screen display, or
|
1094
|
+
a point on a printer.) <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> is currently 1024, and
|
1095
|
+
may change in the future (unlikely though), but you should not
|
1096
|
+
depend on its exact value. The <a class="link" href="pango-Glyph-Storage.html#PANGO-PIXELS:CAPS" title="PANGO_PIXELS()"><code class="function">PANGO_PIXELS()</code></a> macro can be used
|
1097
|
+
to convert from glyph units into device units with correct rounding.
|
1098
|
+
</p>
|
1099
|
+
</div>
|
1100
|
+
<hr>
|
1101
|
+
<div class="refsect2" title="PangoGlyphVisAttr">
|
1102
|
+
<a name="PangoGlyphVisAttr"></a><h3>PangoGlyphVisAttr</h3>
|
1103
|
+
<pre class="programlisting">typedef struct {
|
1104
|
+
guint is_cluster_start : 1;
|
1105
|
+
} PangoGlyphVisAttr;
|
1106
|
+
</pre>
|
1107
|
+
<p>
|
1108
|
+
The PangoGlyphVisAttr is used to communicate information between
|
1109
|
+
the shaping phase and the rendering phase. More attributes may be
|
1110
|
+
added in the future.
|
1111
|
+
</p>
|
1112
|
+
<div class="variablelist"><table border="0">
|
1113
|
+
<col align="left" valign="top">
|
1114
|
+
<tbody><tr>
|
1115
|
+
<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="PangoGlyphVisAttr.is-cluster-start"></a>is_cluster_start</code></em> : 1;</span></p></td>
|
1116
|
+
<td>set for the first logical glyph in each cluster. (Clusters
|
1117
|
+
are stored in visual order, within the cluster, glyphs
|
1118
|
+
are always ordered in logical order, since visual
|
1119
|
+
order is meaningless; that is, in Arabic text, accent glyphs
|
1120
|
+
follow the glyphs for the base character.)
|
1121
|
+
</td>
|
1122
|
+
</tr></tbody>
|
1123
|
+
</table></div>
|
1124
|
+
</div>
|
1125
|
+
<hr>
|
1126
|
+
<div class="refsect2" title="PangoGlyphString">
|
1127
|
+
<a name="PangoGlyphString"></a><h3>PangoGlyphString</h3>
|
1128
|
+
<pre class="programlisting">typedef struct {
|
1129
|
+
gint num_glyphs;
|
1130
|
+
|
1131
|
+
PangoGlyphInfo *glyphs;
|
1132
|
+
|
1133
|
+
/* This is a memory inefficient way of representing the information
|
1134
|
+
* here - each value gives the byte index within the text
|
1135
|
+
* corresponding to the glyph string of the start of the cluster to
|
1136
|
+
* which the glyph belongs.
|
1137
|
+
*/
|
1138
|
+
gint *log_clusters;
|
1139
|
+
} PangoGlyphString;
|
1140
|
+
</pre>
|
1141
|
+
<p>
|
1142
|
+
The <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a> structure is used to store strings
|
1143
|
+
of glyphs with geometry and visual attribute information.
|
1144
|
+
The storage for the glyph information is owned
|
1145
|
+
by the structure which simplifies memory management.
|
1146
|
+
</p>
|
1147
|
+
<div class="variablelist"><table border="0">
|
1148
|
+
<col align="left" valign="top">
|
1149
|
+
<tbody>
|
1150
|
+
<tr>
|
1151
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="PangoGlyphString.num-glyphs"></a>num_glyphs</code></em>;</span></p></td>
|
1152
|
+
<td>the number of glyphs in the string.
|
1153
|
+
</td>
|
1154
|
+
</tr>
|
1155
|
+
<tr>
|
1156
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphInfo" title="PangoGlyphInfo"><span class="type">PangoGlyphInfo</span></a> *<em class="structfield"><code><a name="PangoGlyphString.glyphs"></a>glyphs</code></em>;</span></p></td>
|
1157
|
+
<td>an array of <a class="link" href="pango-Glyph-Storage.html#PangoGlyphInfo" title="PangoGlyphInfo"><span class="type">PangoGlyphInfo</span></a> structures of length <em class="structfield"><code>num_glyphs</code></em>.
|
1158
|
+
</td>
|
1159
|
+
</tr>
|
1160
|
+
<tr>
|
1161
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *<em class="structfield"><code><a name="PangoGlyphString.log-clusters"></a>log_clusters</code></em>;</span></p></td>
|
1162
|
+
<td>for each glyph, byte index of the starting character for the
|
1163
|
+
cluster. The indices are relative to the start of the text
|
1164
|
+
corresponding to the PangoGlyphString.
|
1165
|
+
</td>
|
1166
|
+
</tr>
|
1167
|
+
</tbody>
|
1168
|
+
</table></div>
|
1169
|
+
</div>
|
1170
|
+
<hr>
|
1171
|
+
<div class="refsect2" title="PangoGlyphItem">
|
1172
|
+
<a name="PangoGlyphItem"></a><h3>PangoGlyphItem</h3>
|
1173
|
+
<pre class="programlisting">typedef struct {
|
1174
|
+
PangoItem *item;
|
1175
|
+
PangoGlyphString *glyphs;
|
1176
|
+
} PangoGlyphItem;
|
1177
|
+
</pre>
|
1178
|
+
<p>
|
1179
|
+
A <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a> is a pair of a <a class="link" href="pango-Text-Processing.html#PangoItem" title="PangoItem"><span class="type">PangoItem</span></a> and the glyphs
|
1180
|
+
resulting from shaping the text corresponding to an item.
|
1181
|
+
As an example of the usage of <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>, the results
|
1182
|
+
of shaping text with <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> is a list of <a class="link" href="pango-Layout-Objects.html#PangoLayoutLine" title="PangoLayoutLine"><span class="type">PangoLayoutLine</span></a>,
|
1183
|
+
each of which contains a list of <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>.
|
1184
|
+
</p>
|
1185
|
+
<div class="variablelist"><table border="0">
|
1186
|
+
<col align="left" valign="top">
|
1187
|
+
<tbody>
|
1188
|
+
<tr>
|
1189
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Processing.html#PangoItem" title="PangoItem"><span class="type">PangoItem</span></a> *<em class="structfield"><code><a name="PangoGlyphItem.item"></a>item</code></em>;</span></p></td>
|
1190
|
+
<td>a <a class="link" href="pango-Text-Processing.html#PangoItem" title="PangoItem"><span class="type">PangoItem</span></a> structure that provides information
|
1191
|
+
about a segment of text.
|
1192
|
+
</td>
|
1193
|
+
</tr>
|
1194
|
+
<tr>
|
1195
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a> *<em class="structfield"><code><a name="PangoGlyphItem.glyphs"></a>glyphs</code></em>;</span></p></td>
|
1196
|
+
<td>the glyphs obtained by shaping the text
|
1197
|
+
corresponding to <em class="parameter"><code>item</code></em>.
|
1198
|
+
</td>
|
1199
|
+
</tr>
|
1200
|
+
</tbody>
|
1201
|
+
</table></div>
|
1202
|
+
</div>
|
1203
|
+
<hr>
|
1204
|
+
<div class="refsect2" title="PangoGlyphItemIter">
|
1205
|
+
<a name="PangoGlyphItemIter"></a><h3>PangoGlyphItemIter</h3>
|
1206
|
+
<pre class="programlisting">typedef struct {
|
1207
|
+
PangoGlyphItem *glyph_item;
|
1208
|
+
const gchar *text;
|
1209
|
+
|
1210
|
+
int start_glyph;
|
1211
|
+
int start_index;
|
1212
|
+
int start_char;
|
1213
|
+
|
1214
|
+
int end_glyph;
|
1215
|
+
int end_index;
|
1216
|
+
int end_char;
|
1217
|
+
} PangoGlyphItemIter;
|
1218
|
+
</pre>
|
1219
|
+
<p>
|
1220
|
+
A <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> is an iterator over the clusters in a
|
1221
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>. The <em class="firstterm">forward direction</em> of the
|
1222
|
+
iterator is the logical direction of text. That is, with increasing
|
1223
|
+
<em class="parameter"><code>start_index</code></em> and <em class="parameter"><code>start_char</code></em> values. If <em class="parameter"><code>glyph_item</code></em> is right-to-left
|
1224
|
+
(that is, if <code class="literal"><em class="parameter"><code>glyph_item->item->analysis.level</code></em></code> is odd),
|
1225
|
+
then <em class="parameter"><code>start_glyph</code></em> decreases as the iterator moves forward. Moreover,
|
1226
|
+
in right-to-left cases, <em class="parameter"><code>start_glyph</code></em> is greater than <em class="parameter"><code>end_glyph</code></em>.
|
1227
|
+
An iterator should be initialized using either of
|
1228
|
+
<a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-init-start" title="pango_glyph_item_iter_init_start ()"><code class="function">pango_glyph_item_iter_init_start()</code></a> and
|
1229
|
+
<a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-init-end" title="pango_glyph_item_iter_init_end ()"><code class="function">pango_glyph_item_iter_init_end()</code></a>, for forward and backward iteration
|
1230
|
+
respectively, and walked over using any desired mixture of
|
1231
|
+
<a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-next-cluster" title="pango_glyph_item_iter_next_cluster ()"><code class="function">pango_glyph_item_iter_next_cluster()</code></a> and
|
1232
|
+
<a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-prev-cluster" title="pango_glyph_item_iter_prev_cluster ()"><code class="function">pango_glyph_item_iter_prev_cluster()</code></a>. A common idiom for doing a
|
1233
|
+
forward iteration over the clusters is:
|
1234
|
+
</p>
|
1235
|
+
<pre class="programlisting">
|
1236
|
+
PangoGlyphItemIter cluster_iter;
|
1237
|
+
gboolean have_cluster;
|
1238
|
+
for (have_cluster = pango_glyph_item_iter_init_start (&cluster_iter,
|
1239
|
+
glyph_item, text);
|
1240
|
+
have_cluster;
|
1241
|
+
have_cluster = pango_glyph_item_iter_next_cluster (&cluster_iter))
|
1242
|
+
{
|
1243
|
+
...
|
1244
|
+
}
|
1245
|
+
</pre>
|
1246
|
+
<p>
|
1247
|
+
Note that <em class="parameter"><code>text</code></em> is the start of the text for layout, which is then
|
1248
|
+
indexed by <code class="literal"><em class="parameter"><code>glyph_item->item->offset</code></em></code> to get to the
|
1249
|
+
text of <em class="parameter"><code>glyph_item</code></em>. The <em class="parameter"><code>start_index</code></em> and <em class="parameter"><code>end_index</code></em> values can directly
|
1250
|
+
index into <em class="parameter"><code>text</code></em>. The <em class="parameter"><code>start_glyph</code></em>, <em class="parameter"><code>end_glyph</code></em>, <em class="parameter"><code>start_char</code></em>, and <em class="parameter"><code>end_char</code></em>
|
1251
|
+
values however are zero-based for the <em class="parameter"><code>glyph_item</code></em>. For each cluster, the
|
1252
|
+
item pointed at by the start variables is included in the cluster while
|
1253
|
+
the one pointed at by end variables is not.
|
1254
|
+
None of the members of a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> should be modified manually.
|
1255
|
+
</p>
|
1256
|
+
<div class="variablelist"><table border="0">
|
1257
|
+
<col align="left" valign="top">
|
1258
|
+
<tbody>
|
1259
|
+
<tr>
|
1260
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a> *<em class="structfield"><code><a name="PangoGlyphItemIter.glyph-item"></a>glyph_item</code></em>;</span></p></td>
|
1261
|
+
<td>the <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a> this iterator iterates over
|
1262
|
+
</td>
|
1263
|
+
</tr>
|
1264
|
+
<tr>
|
1265
|
+
<td><p><span class="term">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="PangoGlyphItemIter.text"></a>text</code></em>;</span></p></td>
|
1266
|
+
<td>the UTF-8 text that <em class="parameter"><code>glyph_item</code></em> refers to
|
1267
|
+
</td>
|
1268
|
+
</tr>
|
1269
|
+
<tr>
|
1270
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoGlyphItemIter.start-glyph"></a>start_glyph</code></em>;</span></p></td>
|
1271
|
+
<td>starting glyph of the cluster
|
1272
|
+
</td>
|
1273
|
+
</tr>
|
1274
|
+
<tr>
|
1275
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoGlyphItemIter.start-index"></a>start_index</code></em>;</span></p></td>
|
1276
|
+
<td>starting text index of the cluster
|
1277
|
+
</td>
|
1278
|
+
</tr>
|
1279
|
+
<tr>
|
1280
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoGlyphItemIter.start-char"></a>start_char</code></em>;</span></p></td>
|
1281
|
+
<td>starting number of characters of the cluster
|
1282
|
+
</td>
|
1283
|
+
</tr>
|
1284
|
+
<tr>
|
1285
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoGlyphItemIter.end-glyph"></a>end_glyph</code></em>;</span></p></td>
|
1286
|
+
<td>ending glyph of the cluster
|
1287
|
+
</td>
|
1288
|
+
</tr>
|
1289
|
+
<tr>
|
1290
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoGlyphItemIter.end-index"></a>end_index</code></em>;</span></p></td>
|
1291
|
+
<td>ending text index of the cluster
|
1292
|
+
</td>
|
1293
|
+
</tr>
|
1294
|
+
<tr>
|
1295
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoGlyphItemIter.end-char"></a>end_char</code></em>;</span></p></td>
|
1296
|
+
<td>ending number of characters of the cluster
|
1297
|
+
</td>
|
1298
|
+
</tr>
|
1299
|
+
</tbody>
|
1300
|
+
</table></div>
|
1301
|
+
<p class="since">Since 1.22</p>
|
1302
|
+
</div>
|
1303
|
+
<hr>
|
1304
|
+
<div class="refsect2" title="PANGO_TYPE_GLYPH_STRING">
|
1305
|
+
<a name="PANGO-TYPE-GLYPH-STRING:CAPS"></a><h3>PANGO_TYPE_GLYPH_STRING</h3>
|
1306
|
+
<pre class="programlisting">#define PANGO_TYPE_GLYPH_STRING (pango_glyph_string_get_type ())
|
1307
|
+
</pre>
|
1308
|
+
<p>
|
1309
|
+
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-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>.
|
1310
|
+
</p>
|
1311
|
+
</div>
|
1312
|
+
<hr>
|
1313
|
+
<div class="refsect2" title="pango_glyph_string_new ()">
|
1314
|
+
<a name="pango-glyph-string-new"></a><h3>pango_glyph_string_new ()</h3>
|
1315
|
+
<pre class="programlisting"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> * pango_glyph_string_new (void);</pre>
|
1316
|
+
<p>
|
1317
|
+
Create a new <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>.</p>
|
1318
|
+
<div class="variablelist"><table border="0">
|
1319
|
+
<col align="left" valign="top">
|
1320
|
+
<tbody><tr>
|
1321
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1322
|
+
<td> the newly allocated <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>, which
|
1323
|
+
should be freed with <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-free" title="pango_glyph_string_free ()"><code class="function">pango_glyph_string_free()</code></a>.
|
1324
|
+
</td>
|
1325
|
+
</tr></tbody>
|
1326
|
+
</table></div>
|
1327
|
+
</div>
|
1328
|
+
<hr>
|
1329
|
+
<div class="refsect2" title="pango_glyph_string_copy ()">
|
1330
|
+
<a name="pango-glyph-string-copy"></a><h3>pango_glyph_string_copy ()</h3>
|
1331
|
+
<pre class="programlisting"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> * pango_glyph_string_copy (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *string);</pre>
|
1332
|
+
<p>
|
1333
|
+
Copy a glyph string and associated storage.</p>
|
1334
|
+
<div class="variablelist"><table border="0">
|
1335
|
+
<col align="left" valign="top">
|
1336
|
+
<tbody>
|
1337
|
+
<tr>
|
1338
|
+
<td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
|
1339
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1340
|
+
</td>
|
1341
|
+
</tr>
|
1342
|
+
<tr>
|
1343
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1344
|
+
<td> the newly allocated <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>, which
|
1345
|
+
should be freed with <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-free" title="pango_glyph_string_free ()"><code class="function">pango_glyph_string_free()</code></a>,
|
1346
|
+
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>string</code></em> was <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
1347
|
+
</td>
|
1348
|
+
</tr>
|
1349
|
+
</tbody>
|
1350
|
+
</table></div>
|
1351
|
+
</div>
|
1352
|
+
<hr>
|
1353
|
+
<div class="refsect2" title="pango_glyph_string_set_size ()">
|
1354
|
+
<a name="pango-glyph-string-set-size"></a><h3>pango_glyph_string_set_size ()</h3>
|
1355
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_string_set_size (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *string,
|
1356
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> new_len);</pre>
|
1357
|
+
<p>
|
1358
|
+
Resize a glyph string to the given length.</p>
|
1359
|
+
<div class="variablelist"><table border="0">
|
1360
|
+
<col align="left" valign="top">
|
1361
|
+
<tbody>
|
1362
|
+
<tr>
|
1363
|
+
<td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
|
1364
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>.
|
1365
|
+
</td>
|
1366
|
+
</tr>
|
1367
|
+
<tr>
|
1368
|
+
<td><p><span class="term"><em class="parameter"><code>new_len</code></em> :</span></p></td>
|
1369
|
+
<td> the new length of the string.
|
1370
|
+
</td>
|
1371
|
+
</tr>
|
1372
|
+
</tbody>
|
1373
|
+
</table></div>
|
1374
|
+
</div>
|
1375
|
+
<hr>
|
1376
|
+
<div class="refsect2" title="pango_glyph_string_free ()">
|
1377
|
+
<a name="pango-glyph-string-free"></a><h3>pango_glyph_string_free ()</h3>
|
1378
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_string_free (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *string);</pre>
|
1379
|
+
<p>
|
1380
|
+
Free a glyph string and associated storage.</p>
|
1381
|
+
<div class="variablelist"><table border="0">
|
1382
|
+
<col align="left" valign="top">
|
1383
|
+
<tbody><tr>
|
1384
|
+
<td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
|
1385
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1386
|
+
</td>
|
1387
|
+
</tr></tbody>
|
1388
|
+
</table></div>
|
1389
|
+
</div>
|
1390
|
+
<hr>
|
1391
|
+
<div class="refsect2" title="pango_glyph_string_extents ()">
|
1392
|
+
<a name="pango-glyph-string-extents"></a><h3>pango_glyph_string_extents ()</h3>
|
1393
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_string_extents (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
1394
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
1395
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
1396
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect);</pre>
|
1397
|
+
<p>
|
1398
|
+
Compute the logical and ink extents of a glyph string. See the documentation
|
1399
|
+
for <a class="link" href="pango-Fonts.html#pango-font-get-glyph-extents" title="pango_font_get_glyph_extents ()"><code class="function">pango_font_get_glyph_extents()</code></a> for details about the interpretation
|
1400
|
+
of the rectangles.</p>
|
1401
|
+
<div class="variablelist"><table border="0">
|
1402
|
+
<col align="left" valign="top">
|
1403
|
+
<tbody>
|
1404
|
+
<tr>
|
1405
|
+
<td><p><span class="term"><em class="parameter"><code>glyphs</code></em> :</span></p></td>
|
1406
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>
|
1407
|
+
</td>
|
1408
|
+
</tr>
|
1409
|
+
<tr>
|
1410
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
1411
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>
|
1412
|
+
</td>
|
1413
|
+
</tr>
|
1414
|
+
<tr>
|
1415
|
+
<td><p><span class="term"><em class="parameter"><code>ink_rect</code></em> :</span></p></td>
|
1416
|
+
<td> rectangle used to store the extents of the glyph string as drawn
|
1417
|
+
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.
|
1418
|
+
</td>
|
1419
|
+
</tr>
|
1420
|
+
<tr>
|
1421
|
+
<td><p><span class="term"><em class="parameter"><code>logical_rect</code></em> :</span></p></td>
|
1422
|
+
<td> rectangle used to store the logical extents of the glyph string
|
1423
|
+
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.
|
1424
|
+
</td>
|
1425
|
+
</tr>
|
1426
|
+
</tbody>
|
1427
|
+
</table></div>
|
1428
|
+
</div>
|
1429
|
+
<hr>
|
1430
|
+
<div class="refsect2" title="pango_glyph_string_extents_range ()">
|
1431
|
+
<a name="pango-glyph-string-extents-range"></a><h3>pango_glyph_string_extents_range ()</h3>
|
1432
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_string_extents_range (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
1433
|
+
<span class="returnvalue">int</span> start,
|
1434
|
+
<span class="returnvalue">int</span> end,
|
1435
|
+
<a class="link" href="pango-Fonts.html#PangoFont"><span class="returnvalue">PangoFont</span></a> *font,
|
1436
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
1437
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect);</pre>
|
1438
|
+
<p>
|
1439
|
+
Computes the extents of a sub-portion of a glyph string. The extents are
|
1440
|
+
relative to the start of the glyph string range (the origin of their
|
1441
|
+
coordinate system is at the start of the range, not at the start of the entire
|
1442
|
+
glyph string).</p>
|
1443
|
+
<div class="variablelist"><table border="0">
|
1444
|
+
<col align="left" valign="top">
|
1445
|
+
<tbody>
|
1446
|
+
<tr>
|
1447
|
+
<td><p><span class="term"><em class="parameter"><code>glyphs</code></em> :</span></p></td>
|
1448
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>
|
1449
|
+
</td>
|
1450
|
+
</tr>
|
1451
|
+
<tr>
|
1452
|
+
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
1453
|
+
<td> start index
|
1454
|
+
</td>
|
1455
|
+
</tr>
|
1456
|
+
<tr>
|
1457
|
+
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
1458
|
+
<td> end index (the range is the set of bytes with
|
1459
|
+
indices such that start <= index < end)
|
1460
|
+
</td>
|
1461
|
+
</tr>
|
1462
|
+
<tr>
|
1463
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
1464
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a>
|
1465
|
+
</td>
|
1466
|
+
</tr>
|
1467
|
+
<tr>
|
1468
|
+
<td><p><span class="term"><em class="parameter"><code>ink_rect</code></em> :</span></p></td>
|
1469
|
+
<td> rectangle used to store the extents of the glyph string range as drawn
|
1470
|
+
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.
|
1471
|
+
</td>
|
1472
|
+
</tr>
|
1473
|
+
<tr>
|
1474
|
+
<td><p><span class="term"><em class="parameter"><code>logical_rect</code></em> :</span></p></td>
|
1475
|
+
<td> rectangle used to store the logical extents of the glyph string range
|
1476
|
+
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.
|
1477
|
+
</td>
|
1478
|
+
</tr>
|
1479
|
+
</tbody>
|
1480
|
+
</table></div>
|
1481
|
+
</div>
|
1482
|
+
<hr>
|
1483
|
+
<div class="refsect2" title="pango_glyph_string_get_width ()">
|
1484
|
+
<a name="pango-glyph-string-get-width"></a><h3>pango_glyph_string_get_width ()</h3>
|
1485
|
+
<pre class="programlisting"><span class="returnvalue">int</span> pango_glyph_string_get_width (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs);</pre>
|
1486
|
+
<p>
|
1487
|
+
Computes the logical width of the glyph string as can also be computed
|
1488
|
+
using <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-extents" title="pango_glyph_string_extents ()"><code class="function">pango_glyph_string_extents()</code></a>. However, since this only computes the
|
1489
|
+
width, it's much faster. This is in fact only a convenience function that
|
1490
|
+
computes the sum of geometry.width for each glyph in the <em class="parameter"><code>glyphs</code></em>.</p>
|
1491
|
+
<div class="variablelist"><table border="0">
|
1492
|
+
<col align="left" valign="top">
|
1493
|
+
<tbody>
|
1494
|
+
<tr>
|
1495
|
+
<td><p><span class="term"><em class="parameter"><code>glyphs</code></em> :</span></p></td>
|
1496
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>
|
1497
|
+
</td>
|
1498
|
+
</tr>
|
1499
|
+
<tr>
|
1500
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1501
|
+
<td> the logical width of the glyph string.
|
1502
|
+
|
1503
|
+
</td>
|
1504
|
+
</tr>
|
1505
|
+
</tbody>
|
1506
|
+
</table></div>
|
1507
|
+
<p class="since">Since 1.14</p>
|
1508
|
+
</div>
|
1509
|
+
<hr>
|
1510
|
+
<div class="refsect2" title="pango_glyph_string_index_to_x ()">
|
1511
|
+
<a name="pango-glyph-string-index-to-x"></a><h3>pango_glyph_string_index_to_x ()</h3>
|
1512
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_string_index_to_x (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
1513
|
+
<span class="returnvalue">char</span> *text,
|
1514
|
+
<span class="returnvalue">int</span> length,
|
1515
|
+
<a class="link" href="pango-Text-Processing.html#PangoAnalysis" title="PangoAnalysis"><span class="returnvalue">PangoAnalysis</span></a> *analysis,
|
1516
|
+
<span class="returnvalue">int</span> index_,
|
1517
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> trailing,
|
1518
|
+
<span class="returnvalue">int</span> *x_pos);</pre>
|
1519
|
+
<p>
|
1520
|
+
Converts from character position to x position. (X position
|
1521
|
+
is measured from the left edge of the run). Character positions
|
1522
|
+
are computed by dividing up each cluster into equal portions.</p>
|
1523
|
+
<div class="variablelist"><table border="0">
|
1524
|
+
<col align="left" valign="top">
|
1525
|
+
<tbody>
|
1526
|
+
<tr>
|
1527
|
+
<td><p><span class="term"><em class="parameter"><code>glyphs</code></em> :</span></p></td>
|
1528
|
+
<td> the glyphs return from <a class="link" href="pango-Text-Processing.html#pango-shape" title="pango_shape ()"><code class="function">pango_shape()</code></a>
|
1529
|
+
</td>
|
1530
|
+
</tr>
|
1531
|
+
<tr>
|
1532
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1533
|
+
<td> the text for the run
|
1534
|
+
</td>
|
1535
|
+
</tr>
|
1536
|
+
<tr>
|
1537
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
1538
|
+
<td> the number of bytes (not characters) in <em class="parameter"><code>text</code></em>.
|
1539
|
+
</td>
|
1540
|
+
</tr>
|
1541
|
+
<tr>
|
1542
|
+
<td><p><span class="term"><em class="parameter"><code>analysis</code></em> :</span></p></td>
|
1543
|
+
<td> the analysis information return from <a class="link" href="pango-Text-Processing.html#pango-itemize" title="pango_itemize ()"><code class="function">pango_itemize()</code></a>
|
1544
|
+
</td>
|
1545
|
+
</tr>
|
1546
|
+
<tr>
|
1547
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
1548
|
+
<td> the byte index within <em class="parameter"><code>text</code></em>
|
1549
|
+
</td>
|
1550
|
+
</tr>
|
1551
|
+
<tr>
|
1552
|
+
<td><p><span class="term"><em class="parameter"><code>trailing</code></em> :</span></p></td>
|
1553
|
+
<td> whether we should compute the result for the beginning (<a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>)
|
1554
|
+
or end (<a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>) of the character.
|
1555
|
+
</td>
|
1556
|
+
</tr>
|
1557
|
+
<tr>
|
1558
|
+
<td><p><span class="term"><em class="parameter"><code>x_pos</code></em> :</span></p></td>
|
1559
|
+
<td> location to store result
|
1560
|
+
</td>
|
1561
|
+
</tr>
|
1562
|
+
</tbody>
|
1563
|
+
</table></div>
|
1564
|
+
</div>
|
1565
|
+
<hr>
|
1566
|
+
<div class="refsect2" title="pango_glyph_string_x_to_index ()">
|
1567
|
+
<a name="pango-glyph-string-x-to-index"></a><h3>pango_glyph_string_x_to_index ()</h3>
|
1568
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_string_x_to_index (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
1569
|
+
<span class="returnvalue">char</span> *text,
|
1570
|
+
<span class="returnvalue">int</span> length,
|
1571
|
+
<a class="link" href="pango-Text-Processing.html#PangoAnalysis" title="PangoAnalysis"><span class="returnvalue">PangoAnalysis</span></a> *analysis,
|
1572
|
+
<span class="returnvalue">int</span> x_pos,
|
1573
|
+
<span class="returnvalue">int</span> *index_,
|
1574
|
+
<span class="returnvalue">int</span> *trailing);</pre>
|
1575
|
+
<p>
|
1576
|
+
Convert from x offset to character position. Character positions
|
1577
|
+
are computed by dividing up each cluster into equal portions.
|
1578
|
+
In scripts where positioning within a cluster is not allowed
|
1579
|
+
(such as Thai), the returned value may not be a valid cursor
|
1580
|
+
position; the caller must combine the result with the logical
|
1581
|
+
attributes for the text to compute the valid cursor position.</p>
|
1582
|
+
<div class="variablelist"><table border="0">
|
1583
|
+
<col align="left" valign="top">
|
1584
|
+
<tbody>
|
1585
|
+
<tr>
|
1586
|
+
<td><p><span class="term"><em class="parameter"><code>glyphs</code></em> :</span></p></td>
|
1587
|
+
<td> the glyphs returned from <a class="link" href="pango-Text-Processing.html#pango-shape" title="pango_shape ()"><code class="function">pango_shape()</code></a>
|
1588
|
+
</td>
|
1589
|
+
</tr>
|
1590
|
+
<tr>
|
1591
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1592
|
+
<td> the text for the run
|
1593
|
+
</td>
|
1594
|
+
</tr>
|
1595
|
+
<tr>
|
1596
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
1597
|
+
<td> the number of bytes (not characters) in text.
|
1598
|
+
</td>
|
1599
|
+
</tr>
|
1600
|
+
<tr>
|
1601
|
+
<td><p><span class="term"><em class="parameter"><code>analysis</code></em> :</span></p></td>
|
1602
|
+
<td> the analysis information return from <a class="link" href="pango-Text-Processing.html#pango-itemize" title="pango_itemize ()"><code class="function">pango_itemize()</code></a>
|
1603
|
+
</td>
|
1604
|
+
</tr>
|
1605
|
+
<tr>
|
1606
|
+
<td><p><span class="term"><em class="parameter"><code>x_pos</code></em> :</span></p></td>
|
1607
|
+
<td> the x offset (in Pango units)
|
1608
|
+
</td>
|
1609
|
+
</tr>
|
1610
|
+
<tr>
|
1611
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
1612
|
+
<td> location to store calculated byte index within <em class="parameter"><code>text</code></em>
|
1613
|
+
</td>
|
1614
|
+
</tr>
|
1615
|
+
<tr>
|
1616
|
+
<td><p><span class="term"><em class="parameter"><code>trailing</code></em> :</span></p></td>
|
1617
|
+
<td> location to store a boolean indicating
|
1618
|
+
whether the user clicked on the leading or trailing
|
1619
|
+
edge of the character.
|
1620
|
+
</td>
|
1621
|
+
</tr>
|
1622
|
+
</tbody>
|
1623
|
+
</table></div>
|
1624
|
+
</div>
|
1625
|
+
<hr>
|
1626
|
+
<div class="refsect2" title="pango_glyph_string_get_logical_widths ()">
|
1627
|
+
<a name="pango-glyph-string-get-logical-widths"></a><h3>pango_glyph_string_get_logical_widths ()</h3>
|
1628
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_string_get_logical_widths
|
1629
|
+
(<a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="returnvalue">PangoGlyphString</span></a> *glyphs,
|
1630
|
+
const <span class="returnvalue">char</span> *text,
|
1631
|
+
<span class="returnvalue">int</span> length,
|
1632
|
+
<span class="returnvalue">int</span> embedding_level,
|
1633
|
+
<span class="returnvalue">int</span> *logical_widths);</pre>
|
1634
|
+
<p>
|
1635
|
+
Given a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a> resulting from <a class="link" href="pango-Text-Processing.html#pango-shape" title="pango_shape ()"><code class="function">pango_shape()</code></a> and the corresponding
|
1636
|
+
text, determine the screen width corresponding to each character. When
|
1637
|
+
multiple characters compose a single cluster, the width of the entire
|
1638
|
+
cluster is divided equally among the characters.
|
1639
|
+
</p>
|
1640
|
+
<p>
|
1641
|
+
See also <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-get-logical-widths" title="pango_glyph_item_get_logical_widths ()"><code class="function">pango_glyph_item_get_logical_widths()</code></a>.</p>
|
1642
|
+
<div class="variablelist"><table border="0">
|
1643
|
+
<col align="left" valign="top">
|
1644
|
+
<tbody>
|
1645
|
+
<tr>
|
1646
|
+
<td><p><span class="term"><em class="parameter"><code>glyphs</code></em> :</span></p></td>
|
1647
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphString" title="PangoGlyphString"><span class="type">PangoGlyphString</span></a>
|
1648
|
+
</td>
|
1649
|
+
</tr>
|
1650
|
+
<tr>
|
1651
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1652
|
+
<td> the text corresponding to the glyphs
|
1653
|
+
</td>
|
1654
|
+
</tr>
|
1655
|
+
<tr>
|
1656
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
1657
|
+
<td> the length of <em class="parameter"><code>text</code></em>, in bytes
|
1658
|
+
</td>
|
1659
|
+
</tr>
|
1660
|
+
<tr>
|
1661
|
+
<td><p><span class="term"><em class="parameter"><code>embedding_level</code></em> :</span></p></td>
|
1662
|
+
<td> the embedding level of the string
|
1663
|
+
</td>
|
1664
|
+
</tr>
|
1665
|
+
<tr>
|
1666
|
+
<td><p><span class="term"><em class="parameter"><code>logical_widths</code></em> :</span></p></td>
|
1667
|
+
<td> an array whose length is the number of characters in
|
1668
|
+
text (equal to g_utf8_strlen (text, length) unless
|
1669
|
+
text has NUL bytes)
|
1670
|
+
to be filled in with the resulting character widths.
|
1671
|
+
</td>
|
1672
|
+
</tr>
|
1673
|
+
</tbody>
|
1674
|
+
</table></div>
|
1675
|
+
</div>
|
1676
|
+
<hr>
|
1677
|
+
<div class="refsect2" title="PANGO_TYPE_GLYPH_ITEM">
|
1678
|
+
<a name="PANGO-TYPE-GLYPH-ITEM:CAPS"></a><h3>PANGO_TYPE_GLYPH_ITEM</h3>
|
1679
|
+
<pre class="programlisting">#define PANGO_TYPE_GLYPH_ITEM (pango_glyph_item_get_type ())
|
1680
|
+
</pre>
|
1681
|
+
<p>
|
1682
|
+
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-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>.
|
1683
|
+
</p>
|
1684
|
+
<p class="since">Since 1.20</p>
|
1685
|
+
</div>
|
1686
|
+
<hr>
|
1687
|
+
<div class="refsect2" title="pango_glyph_item_copy ()">
|
1688
|
+
<a name="pango-glyph-item-copy"></a><h3>pango_glyph_item_copy ()</h3>
|
1689
|
+
<pre class="programlisting"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> * pango_glyph_item_copy (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *orig);</pre>
|
1690
|
+
<p>
|
1691
|
+
Make a deep copy of an existing <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a> structure.</p>
|
1692
|
+
<div class="variablelist"><table border="0">
|
1693
|
+
<col align="left" valign="top">
|
1694
|
+
<tbody>
|
1695
|
+
<tr>
|
1696
|
+
<td><p><span class="term"><em class="parameter"><code>orig</code></em> :</span></p></td>
|
1697
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1698
|
+
</td>
|
1699
|
+
</tr>
|
1700
|
+
<tr>
|
1701
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1702
|
+
<td> the newly allocated <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>, which should
|
1703
|
+
be freed with <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-free" title="pango_glyph_item_free ()"><code class="function">pango_glyph_item_free()</code></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1704
|
+
if <em class="parameter"><code>orig</code></em> was <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
1705
|
+
|
1706
|
+
</td>
|
1707
|
+
</tr>
|
1708
|
+
</tbody>
|
1709
|
+
</table></div>
|
1710
|
+
<p class="since">Since 1.20</p>
|
1711
|
+
</div>
|
1712
|
+
<hr>
|
1713
|
+
<div class="refsect2" title="pango_glyph_item_free ()">
|
1714
|
+
<a name="pango-glyph-item-free"></a><h3>pango_glyph_item_free ()</h3>
|
1715
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_item_free (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item);</pre>
|
1716
|
+
<p>
|
1717
|
+
Frees a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a> and resources to which it points.</p>
|
1718
|
+
<div class="variablelist"><table border="0">
|
1719
|
+
<col align="left" valign="top">
|
1720
|
+
<tbody><tr>
|
1721
|
+
<td><p><span class="term"><em class="parameter"><code>glyph_item</code></em> :</span></p></td>
|
1722
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1723
|
+
</td>
|
1724
|
+
</tr></tbody>
|
1725
|
+
</table></div>
|
1726
|
+
<p class="since">Since 1.6</p>
|
1727
|
+
</div>
|
1728
|
+
<hr>
|
1729
|
+
<div class="refsect2" title="pango_glyph_item_split ()">
|
1730
|
+
<a name="pango-glyph-item-split"></a><h3>pango_glyph_item_split ()</h3>
|
1731
|
+
<pre class="programlisting"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> * pango_glyph_item_split (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *orig,
|
1732
|
+
const <span class="returnvalue">char</span> *text,
|
1733
|
+
<span class="returnvalue">int</span> split_index);</pre>
|
1734
|
+
<p>
|
1735
|
+
Modifies <em class="parameter"><code>orig</code></em> to cover only the text after <em class="parameter"><code>split_index</code></em>, and
|
1736
|
+
returns a new item that covers the text before <em class="parameter"><code>split_index</code></em> that
|
1737
|
+
used to be in <em class="parameter"><code>orig</code></em>. You can think of <em class="parameter"><code>split_index</code></em> as the length of
|
1738
|
+
the returned item. <em class="parameter"><code>split_index</code></em> may not be 0, and it may not be
|
1739
|
+
greater than or equal to the length of <em class="parameter"><code>orig</code></em> (that is, there must
|
1740
|
+
be at least one byte assigned to each item, you can't create a
|
1741
|
+
zero-length item).
|
1742
|
+
</p>
|
1743
|
+
<p>
|
1744
|
+
This function is similar in function to <a class="link" href="pango-Text-Processing.html#pango-item-split" title="pango_item_split ()"><code class="function">pango_item_split()</code></a> (and uses
|
1745
|
+
it internally.)</p>
|
1746
|
+
<div class="variablelist"><table border="0">
|
1747
|
+
<col align="left" valign="top">
|
1748
|
+
<tbody>
|
1749
|
+
<tr>
|
1750
|
+
<td><p><span class="term"><em class="parameter"><code>orig</code></em> :</span></p></td>
|
1751
|
+
<td> a <a class="link" href="pango-Text-Processing.html#PangoItem" title="PangoItem"><span class="type">PangoItem</span></a>
|
1752
|
+
</td>
|
1753
|
+
</tr>
|
1754
|
+
<tr>
|
1755
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1756
|
+
<td> text to which positions in <em class="parameter"><code>orig</code></em> apply
|
1757
|
+
</td>
|
1758
|
+
</tr>
|
1759
|
+
<tr>
|
1760
|
+
<td><p><span class="term"><em class="parameter"><code>split_index</code></em> :</span></p></td>
|
1761
|
+
<td> byte index of position to split item, relative to the start of the item
|
1762
|
+
</td>
|
1763
|
+
</tr>
|
1764
|
+
<tr>
|
1765
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1766
|
+
<td> the newly allocated item representing text before
|
1767
|
+
<em class="parameter"><code>split_index</code></em>, which should be freed
|
1768
|
+
with <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-free" title="pango_glyph_item_free ()"><code class="function">pango_glyph_item_free()</code></a>.
|
1769
|
+
|
1770
|
+
</td>
|
1771
|
+
</tr>
|
1772
|
+
</tbody>
|
1773
|
+
</table></div>
|
1774
|
+
<p class="since">Since 1.2</p>
|
1775
|
+
</div>
|
1776
|
+
<hr>
|
1777
|
+
<div class="refsect2" title="pango_glyph_item_apply_attrs ()">
|
1778
|
+
<a name="pango-glyph-item-apply-attrs"></a><h3>pango_glyph_item_apply_attrs ()</h3>
|
1779
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="returnvalue">GSList</span></a> * pango_glyph_item_apply_attrs (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
1780
|
+
const <span class="returnvalue">char</span> *text,
|
1781
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);</pre>
|
1782
|
+
<p>
|
1783
|
+
Splits a shaped item (PangoGlyphItem) into multiple items based
|
1784
|
+
on an attribute list. The idea is that if you have attributes
|
1785
|
+
that don't affect shaping, such as color or underline, to avoid
|
1786
|
+
affecting shaping, you filter them out (<a class="link" href="pango-Text-Attributes.html#pango-attr-list-filter" title="pango_attr_list_filter ()"><code class="function">pango_attr_list_filter()</code></a>),
|
1787
|
+
apply the shaping process and then reapply them to the result using
|
1788
|
+
this function.
|
1789
|
+
</p>
|
1790
|
+
<p>
|
1791
|
+
All attributes that start or end inside a cluster are applied
|
1792
|
+
to that cluster; for instance, if half of a cluster is underlined
|
1793
|
+
and the other-half strikethrough, then the cluster will end
|
1794
|
+
up with both underline and strikethrough attributes. In these
|
1795
|
+
cases, it may happen that item->extra_attrs for some of the
|
1796
|
+
result items can have multiple attributes of the same type.
|
1797
|
+
</p>
|
1798
|
+
<p>
|
1799
|
+
This function takes ownership of <em class="parameter"><code>glyph_item</code></em>; it will be reused
|
1800
|
+
as one of the elements in the list.</p>
|
1801
|
+
<div class="variablelist"><table border="0">
|
1802
|
+
<col align="left" valign="top">
|
1803
|
+
<tbody>
|
1804
|
+
<tr>
|
1805
|
+
<td><p><span class="term"><em class="parameter"><code>glyph_item</code></em> :</span></p></td>
|
1806
|
+
<td> a shaped item
|
1807
|
+
</td>
|
1808
|
+
</tr>
|
1809
|
+
<tr>
|
1810
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1811
|
+
<td> text that <em class="parameter"><code>list</code></em> applies to
|
1812
|
+
</td>
|
1813
|
+
</tr>
|
1814
|
+
<tr>
|
1815
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1816
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>
|
1817
|
+
</td>
|
1818
|
+
</tr>
|
1819
|
+
<tr>
|
1820
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1821
|
+
<td> a list of glyph items resulting from splitting
|
1822
|
+
<em class="parameter"><code>glyph_item</code></em>. Free the elements using <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-free" title="pango_glyph_item_free ()"><code class="function">pango_glyph_item_free()</code></a>,
|
1823
|
+
the list using <a href="/usr/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#g-slist-free"><code class="function">g_slist_free()</code></a>.
|
1824
|
+
|
1825
|
+
</td>
|
1826
|
+
</tr>
|
1827
|
+
</tbody>
|
1828
|
+
</table></div>
|
1829
|
+
<p class="since">Since 1.2</p>
|
1830
|
+
</div>
|
1831
|
+
<hr>
|
1832
|
+
<div class="refsect2" title="pango_glyph_item_letter_space ()">
|
1833
|
+
<a name="pango-glyph-item-letter-space"></a><h3>pango_glyph_item_letter_space ()</h3>
|
1834
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_item_letter_space (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
1835
|
+
const <span class="returnvalue">char</span> *text,
|
1836
|
+
<a class="link" href="pango-Text-Processing.html#PangoLogAttr" title="PangoLogAttr"><span class="returnvalue">PangoLogAttr</span></a> *log_attrs,
|
1837
|
+
<span class="returnvalue">int</span> letter_spacing);</pre>
|
1838
|
+
<p>
|
1839
|
+
Adds spacing between the graphemes of <em class="parameter"><code>glyph_item</code></em> to
|
1840
|
+
give the effect of typographic letter spacing.</p>
|
1841
|
+
<div class="variablelist"><table border="0">
|
1842
|
+
<col align="left" valign="top">
|
1843
|
+
<tbody>
|
1844
|
+
<tr>
|
1845
|
+
<td><p><span class="term"><em class="parameter"><code>glyph_item</code></em> :</span></p></td>
|
1846
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>
|
1847
|
+
</td>
|
1848
|
+
</tr>
|
1849
|
+
<tr>
|
1850
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1851
|
+
<td> text that <em class="parameter"><code>glyph_item</code></em> corresponds to
|
1852
|
+
(glyph_item->item->offset is an offset from the
|
1853
|
+
start of <em class="parameter"><code>text</code></em>)
|
1854
|
+
</td>
|
1855
|
+
</tr>
|
1856
|
+
<tr>
|
1857
|
+
<td><p><span class="term"><em class="parameter"><code>log_attrs</code></em> :</span></p></td>
|
1858
|
+
<td> logical attributes for the item (the
|
1859
|
+
first logical attribute refers to the position
|
1860
|
+
before the first character in the item)
|
1861
|
+
</td>
|
1862
|
+
</tr>
|
1863
|
+
<tr>
|
1864
|
+
<td><p><span class="term"><em class="parameter"><code>letter_spacing</code></em> :</span></p></td>
|
1865
|
+
<td> amount of letter spacing to add
|
1866
|
+
in Pango units. May be negative, though too large
|
1867
|
+
negative values will give ugly results.
|
1868
|
+
</td>
|
1869
|
+
</tr>
|
1870
|
+
</tbody>
|
1871
|
+
</table></div>
|
1872
|
+
<p class="since">Since 1.6</p>
|
1873
|
+
</div>
|
1874
|
+
<hr>
|
1875
|
+
<div class="refsect2" title="pango_glyph_item_get_logical_widths ()">
|
1876
|
+
<a name="pango-glyph-item-get-logical-widths"></a><h3>pango_glyph_item_get_logical_widths ()</h3>
|
1877
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_item_get_logical_widths (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
1878
|
+
const <span class="returnvalue">char</span> *text,
|
1879
|
+
<span class="returnvalue">int</span> *logical_widths);</pre>
|
1880
|
+
<p>
|
1881
|
+
Given a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a> and the corresponding
|
1882
|
+
text, determine the screen width corresponding to each character. When
|
1883
|
+
multiple characters compose a single cluster, the width of the entire
|
1884
|
+
cluster is divided equally among the characters.
|
1885
|
+
</p>
|
1886
|
+
<p>
|
1887
|
+
See also <a class="link" href="pango-Glyph-Storage.html#pango-glyph-string-get-logical-widths" title="pango_glyph_string_get_logical_widths ()"><code class="function">pango_glyph_string_get_logical_widths()</code></a>.</p>
|
1888
|
+
<div class="variablelist"><table border="0">
|
1889
|
+
<col align="left" valign="top">
|
1890
|
+
<tbody>
|
1891
|
+
<tr>
|
1892
|
+
<td><p><span class="term"><em class="parameter"><code>glyph_item</code></em> :</span></p></td>
|
1893
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="type">PangoGlyphItem</span></a>
|
1894
|
+
</td>
|
1895
|
+
</tr>
|
1896
|
+
<tr>
|
1897
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1898
|
+
<td> text that <em class="parameter"><code>glyph_item</code></em> corresponds to
|
1899
|
+
(glyph_item->item->offset is an offset from the
|
1900
|
+
start of <em class="parameter"><code>text</code></em>)
|
1901
|
+
</td>
|
1902
|
+
</tr>
|
1903
|
+
<tr>
|
1904
|
+
<td><p><span class="term"><em class="parameter"><code>logical_widths</code></em> :</span></p></td>
|
1905
|
+
<td> an array whose length is the number of characters in
|
1906
|
+
glyph_item (equal to glyph_item->item->num_chars)
|
1907
|
+
to be filled in with the resulting character widths.
|
1908
|
+
</td>
|
1909
|
+
</tr>
|
1910
|
+
</tbody>
|
1911
|
+
</table></div>
|
1912
|
+
<p class="since">Since 1.26</p>
|
1913
|
+
</div>
|
1914
|
+
<hr>
|
1915
|
+
<div class="refsect2" title="PANGO_TYPE_GLYPH_ITEM_ITER">
|
1916
|
+
<a name="PANGO-TYPE-GLYPH-ITEM-ITER:CAPS"></a><h3>PANGO_TYPE_GLYPH_ITEM_ITER</h3>
|
1917
|
+
<pre class="programlisting">#define PANGO_TYPE_GLYPH_ITEM_ITER (pango_glyph_item_iter_get_type ())
|
1918
|
+
</pre>
|
1919
|
+
<p>
|
1920
|
+
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-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a>.
|
1921
|
+
</p>
|
1922
|
+
<p class="since">Since 1.22</p>
|
1923
|
+
</div>
|
1924
|
+
<hr>
|
1925
|
+
<div class="refsect2" title="pango_glyph_item_iter_copy ()">
|
1926
|
+
<a name="pango-glyph-item-iter-copy"></a><h3>pango_glyph_item_iter_copy ()</h3>
|
1927
|
+
<pre class="programlisting"><a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> * pango_glyph_item_iter_copy (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *orig);</pre>
|
1928
|
+
<p>
|
1929
|
+
Make a shallow copy of an existing <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> structure.</p>
|
1930
|
+
<div class="variablelist"><table border="0">
|
1931
|
+
<col align="left" valign="top">
|
1932
|
+
<tbody>
|
1933
|
+
<tr>
|
1934
|
+
<td><p><span class="term"><em class="parameter"><code>orig</code></em> :</span></p></td>
|
1935
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1936
|
+
</td>
|
1937
|
+
</tr>
|
1938
|
+
<tr>
|
1939
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1940
|
+
<td> the newly allocated <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a>, which should
|
1941
|
+
be freed with <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-free" title="pango_glyph_item_iter_free ()"><code class="function">pango_glyph_item_iter_free()</code></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1942
|
+
if <em class="parameter"><code>orig</code></em> was <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
1943
|
+
|
1944
|
+
</td>
|
1945
|
+
</tr>
|
1946
|
+
</tbody>
|
1947
|
+
</table></div>
|
1948
|
+
<p class="since">Since 1.22</p>
|
1949
|
+
</div>
|
1950
|
+
<hr>
|
1951
|
+
<div class="refsect2" title="pango_glyph_item_iter_free ()">
|
1952
|
+
<a name="pango-glyph-item-iter-free"></a><h3>pango_glyph_item_iter_free ()</h3>
|
1953
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_glyph_item_iter_free (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter);</pre>
|
1954
|
+
<p>
|
1955
|
+
Frees a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> created by <a class="link" href="pango-Glyph-Storage.html#pango-glyph-item-iter-copy" title="pango_glyph_item_iter_copy ()"><code class="function">pango_glyph_item_iter_copy()</code></a>.</p>
|
1956
|
+
<div class="variablelist"><table border="0">
|
1957
|
+
<col align="left" valign="top">
|
1958
|
+
<tbody><tr>
|
1959
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1960
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1961
|
+
</td>
|
1962
|
+
</tr></tbody>
|
1963
|
+
</table></div>
|
1964
|
+
<p class="since">Since 1.22</p>
|
1965
|
+
</div>
|
1966
|
+
<hr>
|
1967
|
+
<div class="refsect2" title="pango_glyph_item_iter_init_start ()">
|
1968
|
+
<a name="pango-glyph-item-iter-init-start"></a><h3>pango_glyph_item_iter_init_start ()</h3>
|
1969
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_glyph_item_iter_init_start (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter,
|
1970
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
1971
|
+
const <span class="returnvalue">char</span> *text);</pre>
|
1972
|
+
<p>
|
1973
|
+
Initializes a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> structure to point to the
|
1974
|
+
first cluster in a glyph item.
|
1975
|
+
See <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> for details of cluster orders.</p>
|
1976
|
+
<div class="variablelist"><table border="0">
|
1977
|
+
<col align="left" valign="top">
|
1978
|
+
<tbody>
|
1979
|
+
<tr>
|
1980
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1981
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a>
|
1982
|
+
</td>
|
1983
|
+
</tr>
|
1984
|
+
<tr>
|
1985
|
+
<td><p><span class="term"><em class="parameter"><code>glyph_item</code></em> :</span></p></td>
|
1986
|
+
<td> the glyph item to iterate over
|
1987
|
+
</td>
|
1988
|
+
</tr>
|
1989
|
+
<tr>
|
1990
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1991
|
+
<td> text corresponding to the glyph item
|
1992
|
+
</td>
|
1993
|
+
</tr>
|
1994
|
+
<tr>
|
1995
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1996
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if there are no clusters in the glyph item
|
1997
|
+
|
1998
|
+
</td>
|
1999
|
+
</tr>
|
2000
|
+
</tbody>
|
2001
|
+
</table></div>
|
2002
|
+
<p class="since">Since 1.22</p>
|
2003
|
+
</div>
|
2004
|
+
<hr>
|
2005
|
+
<div class="refsect2" title="pango_glyph_item_iter_init_end ()">
|
2006
|
+
<a name="pango-glyph-item-iter-init-end"></a><h3>pango_glyph_item_iter_init_end ()</h3>
|
2007
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_glyph_item_iter_init_end (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter,
|
2008
|
+
<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItem" title="PangoGlyphItem"><span class="returnvalue">PangoGlyphItem</span></a> *glyph_item,
|
2009
|
+
const <span class="returnvalue">char</span> *text);</pre>
|
2010
|
+
<p>
|
2011
|
+
Initializes a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> structure to point to the
|
2012
|
+
last cluster in a glyph item.
|
2013
|
+
See <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> for details of cluster orders.</p>
|
2014
|
+
<div class="variablelist"><table border="0">
|
2015
|
+
<col align="left" valign="top">
|
2016
|
+
<tbody>
|
2017
|
+
<tr>
|
2018
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
2019
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a>
|
2020
|
+
</td>
|
2021
|
+
</tr>
|
2022
|
+
<tr>
|
2023
|
+
<td><p><span class="term"><em class="parameter"><code>glyph_item</code></em> :</span></p></td>
|
2024
|
+
<td> the glyph item to iterate over
|
2025
|
+
</td>
|
2026
|
+
</tr>
|
2027
|
+
<tr>
|
2028
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
2029
|
+
<td> text corresponding to the glyph item
|
2030
|
+
</td>
|
2031
|
+
</tr>
|
2032
|
+
<tr>
|
2033
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2034
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if there are no clusters in the glyph item
|
2035
|
+
|
2036
|
+
</td>
|
2037
|
+
</tr>
|
2038
|
+
</tbody>
|
2039
|
+
</table></div>
|
2040
|
+
<p class="since">Since 1.22</p>
|
2041
|
+
</div>
|
2042
|
+
<hr>
|
2043
|
+
<div class="refsect2" title="pango_glyph_item_iter_next_cluster ()">
|
2044
|
+
<a name="pango-glyph-item-iter-next-cluster"></a><h3>pango_glyph_item_iter_next_cluster ()</h3>
|
2045
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_glyph_item_iter_next_cluster (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter);</pre>
|
2046
|
+
<p>
|
2047
|
+
Advances the iterator to the next cluster in the glyph item.
|
2048
|
+
See <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> for details of cluster orders.</p>
|
2049
|
+
<div class="variablelist"><table border="0">
|
2050
|
+
<col align="left" valign="top">
|
2051
|
+
<tbody>
|
2052
|
+
<tr>
|
2053
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
2054
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a>
|
2055
|
+
</td>
|
2056
|
+
</tr>
|
2057
|
+
<tr>
|
2058
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2059
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the iterator was advanced, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if we were already on the
|
2060
|
+
last cluster.
|
2061
|
+
|
2062
|
+
</td>
|
2063
|
+
</tr>
|
2064
|
+
</tbody>
|
2065
|
+
</table></div>
|
2066
|
+
<p class="since">Since 1.22</p>
|
2067
|
+
</div>
|
2068
|
+
<hr>
|
2069
|
+
<div class="refsect2" title="pango_glyph_item_iter_prev_cluster ()">
|
2070
|
+
<a name="pango-glyph-item-iter-prev-cluster"></a><h3>pango_glyph_item_iter_prev_cluster ()</h3>
|
2071
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_glyph_item_iter_prev_cluster (<a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="returnvalue">PangoGlyphItemIter</span></a> *iter);</pre>
|
2072
|
+
<p>
|
2073
|
+
Moves the iterator to the preceding cluster in the glyph item.
|
2074
|
+
See <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a> for details of cluster orders.</p>
|
2075
|
+
<div class="variablelist"><table border="0">
|
2076
|
+
<col align="left" valign="top">
|
2077
|
+
<tbody>
|
2078
|
+
<tr>
|
2079
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
2080
|
+
<td> a <a class="link" href="pango-Glyph-Storage.html#PangoGlyphItemIter" title="PangoGlyphItemIter"><span class="type">PangoGlyphItemIter</span></a>
|
2081
|
+
</td>
|
2082
|
+
</tr>
|
2083
|
+
<tr>
|
2084
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2085
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the iterator was moved, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if we were already on the
|
2086
|
+
first cluster.
|
2087
|
+
|
2088
|
+
</td>
|
2089
|
+
</tr>
|
2090
|
+
</tbody>
|
2091
|
+
</table></div>
|
2092
|
+
<p class="since">Since 1.22</p>
|
2093
|
+
</div>
|
2094
|
+
</div>
|
2095
|
+
</div>
|
2096
|
+
<div class="footer">
|
2097
|
+
<hr>
|
2098
|
+
Generated by GTK-Doc V1.13</div>
|
2099
|
+
</body>
|
2100
|
+
</html>
|