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,2440 @@
|
|
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>Text Attributes</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-Fonts.html" title="Fonts">
|
10
|
+
<link rel="next" href="pango-Tab-Stops.html" title="Tab Stops">
|
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-Fonts.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-Tab-Stops.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-Text-Attributes.synopsis" class="shortcut">Top</a>
|
46
|
+
|
|
47
|
+
<a href="#pango-Text-Attributes.description" class="shortcut">Description</a>
|
48
|
+
</td></tr>
|
49
|
+
</table>
|
50
|
+
<div class="refentry" title="Text Attributes">
|
51
|
+
<a name="pango-Text-Attributes"></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-Text-Attributes.top_of_page"></a>Text Attributes</span></h2>
|
55
|
+
<p>Text Attributes — Font and other attributes for annotating text</p>
|
56
|
+
</td>
|
57
|
+
<td valign="top" align="right"></td>
|
58
|
+
</tr></table></div>
|
59
|
+
<div class="refsynopsisdiv" title="Synopsis">
|
60
|
+
<a name="pango-Text-Attributes.synopsis"></a><h2>Synopsis</h2>
|
61
|
+
<pre class="synopsis">enum <a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType">PangoAttrType</a>;
|
62
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-TYPE-ATTR-TYPE:CAPS" title="PANGO_TYPE_ATTR_TYPE">PANGO_TYPE_ATTR_TYPE</a>
|
63
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrClass" title="PangoAttrClass">PangoAttrClass</a>;
|
64
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute">PangoAttribute</a>;
|
65
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-INDEX-FROM-TEXT-BEGINNING:CAPS" title="PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING">PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING</a>
|
66
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-INDEX-TO-TEXT-END:CAPS" title="PANGO_ATTR_INDEX_TO_TEXT_END">PANGO_ATTR_INDEX_TO_TEXT_END</a>
|
67
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrString" title="PangoAttrString">PangoAttrString</a>;
|
68
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrLanguage" title="PangoAttrLanguage">PangoAttrLanguage</a>;
|
69
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrColor" title="PangoAttrColor">PangoAttrColor</a>;
|
70
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt">PangoAttrInt</a>;
|
71
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrFloat" title="PangoAttrFloat">PangoAttrFloat</a>;
|
72
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrFontDesc" title="PangoAttrFontDesc">PangoAttrFontDesc</a>;
|
73
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrShape" title="PangoAttrShape">PangoAttrShape</a>;
|
74
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrSize" title="PangoAttrSize">PangoAttrSize</a>;
|
75
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Text-Attributes.html#pango-parse-markup" title="pango_parse_markup ()">pango_parse_markup</a> (const <span class="returnvalue">char</span> *markup_text,
|
76
|
+
<span class="returnvalue">int</span> length,
|
77
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#gunichar"><span class="returnvalue">gunichar</span></a> accel_marker,
|
78
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> **attr_list,
|
79
|
+
<span class="returnvalue">char</span> **text,
|
80
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#gunichar"><span class="returnvalue">gunichar</span></a> *accel_char,
|
81
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> **error);
|
82
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType"><span class="returnvalue">PangoAttrType</span></a> <a class="link" href="pango-Text-Attributes.html#pango-attr-type-register" title="pango_attr_type_register ()">pango_attr_type_register</a> (const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *name);
|
83
|
+
const <span class="returnvalue">char</span> * <a class="link" href="pango-Text-Attributes.html#pango-attr-type-get-name" title="pango_attr_type_get_name ()">pango_attr_type_get_name</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType"><span class="returnvalue">PangoAttrType</span></a> type);
|
84
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attribute-init" title="pango_attribute_init ()">pango_attribute_init</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr,
|
85
|
+
const <a class="link" href="pango-Text-Attributes.html#PangoAttrClass" title="PangoAttrClass"><span class="returnvalue">PangoAttrClass</span></a> *klass);
|
86
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attribute-copy" title="pango_attribute_copy ()">pango_attribute_copy</a> (const <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);
|
87
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Text-Attributes.html#pango-attribute-equal" title="pango_attribute_equal ()">pango_attribute_equal</a> (const <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr1,
|
88
|
+
const <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr2);
|
89
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()">pango_attribute_destroy</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);
|
90
|
+
|
91
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-language-new" title="pango_attr_language_new ()">pango_attr_language_new</a> (<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);
|
92
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-family-new" title="pango_attr_family_new ()">pango_attr_family_new</a> (const <span class="returnvalue">char</span> *family);
|
93
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-style-new" title="pango_attr_style_new ()">pango_attr_style_new</a> (<a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle"><span class="returnvalue">PangoStyle</span></a> style);
|
94
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-variant-new" title="pango_attr_variant_new ()">pango_attr_variant_new</a> (<a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant"><span class="returnvalue">PangoVariant</span></a> variant);
|
95
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-stretch-new" title="pango_attr_stretch_new ()">pango_attr_stretch_new</a> (<a class="link" href="pango-Fonts.html#PangoStretch" title="enum PangoStretch"><span class="returnvalue">PangoStretch</span></a> stretch);
|
96
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-weight-new" title="pango_attr_weight_new ()">pango_attr_weight_new</a> (<a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight"><span class="returnvalue">PangoWeight</span></a> weight);
|
97
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-size-new" title="pango_attr_size_new ()">pango_attr_size_new</a> (<span class="returnvalue">int</span> size);
|
98
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-size-new-absolute" title="pango_attr_size_new_absolute ()">pango_attr_size_new_absolute</a> (<span class="returnvalue">int</span> size);
|
99
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-font-desc-new" title="pango_attr_font_desc_new ()">pango_attr_font_desc_new</a> (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);
|
100
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-foreground-new" title="pango_attr_foreground_new ()">pango_attr_foreground_new</a> (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> red,
|
101
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> green,
|
102
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> blue);
|
103
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-background-new" title="pango_attr_background_new ()">pango_attr_background_new</a> (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> red,
|
104
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> green,
|
105
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> blue);
|
106
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-strikethrough-new" title="pango_attr_strikethrough_new ()">pango_attr_strikethrough_new</a> (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> strikethrough);
|
107
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-strikethrough-color-new" title="pango_attr_strikethrough_color_new ()">pango_attr_strikethrough_color_new</a> (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> red,
|
108
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> green,
|
109
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> blue);
|
110
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-underline-new" title="pango_attr_underline_new ()">pango_attr_underline_new</a> (<a class="link" href="pango-Text-Attributes.html#PangoUnderline" title="enum PangoUnderline"><span class="returnvalue">PangoUnderline</span></a> underline);
|
111
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-underline-color-new" title="pango_attr_underline_color_new ()">pango_attr_underline_color_new</a> (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> red,
|
112
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> green,
|
113
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> blue);
|
114
|
+
enum <a class="link" href="pango-Text-Attributes.html#PangoUnderline" title="enum PangoUnderline">PangoUnderline</a>;
|
115
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-TYPE-UNDERLINE:CAPS" title="PANGO_TYPE_UNDERLINE">PANGO_TYPE_UNDERLINE</a>
|
116
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-shape-new" title="pango_attr_shape_new ()">pango_attr_shape_new</a> (const <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
117
|
+
const <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect);
|
118
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-shape-new-with-data" title="pango_attr_shape_new_with_data ()">pango_attr_shape_new_with_data</a> (const <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
119
|
+
const <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect,
|
120
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data,
|
121
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrDataCopyFunc" title="PangoAttrDataCopyFunc ()"><span class="returnvalue">PangoAttrDataCopyFunc</span></a> copy_func,
|
122
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="returnvalue">GDestroyNotify</span></a> destroy_func);
|
123
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrDataCopyFunc" title="PangoAttrDataCopyFunc ()">*PangoAttrDataCopyFunc</a>) (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gconstpointer"><span class="returnvalue">gconstpointer</span></a> data);
|
124
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-scale-new" title="pango_attr_scale_new ()">pango_attr_scale_new</a> (<span class="returnvalue">double</span> scale_factor);
|
125
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-XX-SMALL:CAPS" title="PANGO_SCALE_XX_SMALL">PANGO_SCALE_XX_SMALL</a>
|
126
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-X-SMALL:CAPS" title="PANGO_SCALE_X_SMALL">PANGO_SCALE_X_SMALL</a>
|
127
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-SMALL:CAPS" title="PANGO_SCALE_SMALL">PANGO_SCALE_SMALL</a>
|
128
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-MEDIUM:CAPS" title="PANGO_SCALE_MEDIUM">PANGO_SCALE_MEDIUM</a>
|
129
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-LARGE:CAPS" title="PANGO_SCALE_LARGE">PANGO_SCALE_LARGE</a>
|
130
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-X-LARGE:CAPS" title="PANGO_SCALE_X_LARGE">PANGO_SCALE_X_LARGE</a>
|
131
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-SCALE-XX-LARGE:CAPS" title="PANGO_SCALE_XX_LARGE">PANGO_SCALE_XX_LARGE</a>
|
132
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-rise-new" title="pango_attr_rise_new ()">pango_attr_rise_new</a> (<span class="returnvalue">int</span> rise);
|
133
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-letter-spacing-new" title="pango_attr_letter_spacing_new ()">pango_attr_letter_spacing_new</a> (<span class="returnvalue">int</span> letter_spacing);
|
134
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-fallback-new" title="pango_attr_fallback_new ()">pango_attr_fallback_new</a> (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> enable_fallback);
|
135
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-gravity-new" title="pango_attr_gravity_new ()">pango_attr_gravity_new</a> (<a class="link" href="pango-Vertical-Text.html#PangoGravity" title="enum PangoGravity"><span class="returnvalue">PangoGravity</span></a> gravity);
|
136
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-gravity-hint-new" title="pango_attr_gravity_hint_new ()">pango_attr_gravity_hint_new</a> (<a class="link" href="pango-Vertical-Text.html#PangoGravityHint" title="enum PangoGravityHint"><span class="returnvalue">PangoGravityHint</span></a> hint);
|
137
|
+
<a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor">PangoColor</a>;
|
138
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-TYPE-COLOR:CAPS" title="PANGO_TYPE_COLOR">PANGO_TYPE_COLOR</a>
|
139
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Text-Attributes.html#pango-color-parse" title="pango_color_parse ()">pango_color_parse</a> (<a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> *color,
|
140
|
+
const <span class="returnvalue">char</span> *spec);
|
141
|
+
<a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-color-copy" title="pango_color_copy ()">pango_color_copy</a> (const <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> *src);
|
142
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-color-free" title="pango_color_free ()">pango_color_free</a> (<a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> *color);
|
143
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-color-to-string" title="pango_color_to_string ()">pango_color_to_string</a> (const <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> *color);
|
144
|
+
|
145
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList">PangoAttrList</a>;
|
146
|
+
#define <a class="link" href="pango-Text-Attributes.html#PANGO-TYPE-ATTR-LIST:CAPS" title="PANGO_TYPE_ATTR_LIST">PANGO_TYPE_ATTR_LIST</a>
|
147
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-list-new" title="pango_attr_list_new ()">pango_attr_list_new</a> (void);
|
148
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-list-ref" title="pango_attr_list_ref ()">pango_attr_list_ref</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);
|
149
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attr-list-unref" title="pango_attr_list_unref ()">pango_attr_list_unref</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);
|
150
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-list-copy" title="pango_attr_list_copy ()">pango_attr_list_copy</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);
|
151
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attr-list-insert" title="pango_attr_list_insert ()">pango_attr_list_insert</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
152
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);
|
153
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attr-list-insert-before" title="pango_attr_list_insert_before ()">pango_attr_list_insert_before</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
154
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);
|
155
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attr-list-change" title="pango_attr_list_change ()">pango_attr_list_change</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
156
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);
|
157
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attr-list-splice" title="pango_attr_list_splice ()">pango_attr_list_splice</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
158
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *other,
|
159
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> pos,
|
160
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> len);
|
161
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-list-filter" title="pango_attr_list_filter ()">pango_attr_list_filter</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
162
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrFilterFunc" title="PangoAttrFilterFunc ()"><span class="returnvalue">PangoAttrFilterFunc</span></a> func,
|
163
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data);
|
164
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrFilterFunc" title="PangoAttrFilterFunc ()">*PangoAttrFilterFunc</a>) (<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attribute,
|
165
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data);
|
166
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-list-get-iterator" title="pango_attr_list_get_iterator ()">pango_attr_list_get_iterator</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);
|
167
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator">PangoAttrIterator</a>;
|
168
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-copy" title="pango_attr_iterator_copy ()">pango_attr_iterator_copy</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator);
|
169
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-next" title="pango_attr_iterator_next ()">pango_attr_iterator_next</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator);
|
170
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-range" title="pango_attr_iterator_range ()">pango_attr_iterator_range</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator,
|
171
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *start,
|
172
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *end);
|
173
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-get" title="pango_attr_iterator_get ()">pango_attr_iterator_get</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator,
|
174
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType"><span class="returnvalue">PangoAttrType</span></a> type);
|
175
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-get-font" title="pango_attr_iterator_get_font ()">pango_attr_iterator_get_font</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator,
|
176
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
177
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> **language,
|
178
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="returnvalue">GSList</span></a> **extra_attrs);
|
179
|
+
<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-Text-Attributes.html#pango-attr-iterator-get-attrs" title="pango_attr_iterator_get_attrs ()">pango_attr_iterator_get_attrs</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator);
|
180
|
+
<span class="returnvalue">void</span> <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-destroy" title="pango_attr_iterator_destroy ()">pango_attr_iterator_destroy</a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator);
|
181
|
+
</pre>
|
182
|
+
</div>
|
183
|
+
<div class="refsect1" title="Description">
|
184
|
+
<a name="pango-Text-Attributes.description"></a><h2>Description</h2>
|
185
|
+
<p>
|
186
|
+
Attributed text is used in a number of places in Pango. It
|
187
|
+
is used as the input to the itemization process and also when
|
188
|
+
creating a <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a>. The data types and functions in
|
189
|
+
this section are used to represent and manipulate sets
|
190
|
+
of attributes applied to a portion of text.
|
191
|
+
</p>
|
192
|
+
</div>
|
193
|
+
<div class="refsect1" title="Details">
|
194
|
+
<a name="pango-Text-Attributes.details"></a><h2>Details</h2>
|
195
|
+
<div class="refsect2" title="enum PangoAttrType">
|
196
|
+
<a name="PangoAttrType"></a><h3>enum PangoAttrType</h3>
|
197
|
+
<pre class="programlisting">typedef enum
|
198
|
+
{
|
199
|
+
PANGO_ATTR_INVALID, /* 0 is an invalid attribute type */
|
200
|
+
PANGO_ATTR_LANGUAGE, /* PangoAttrLanguage */
|
201
|
+
PANGO_ATTR_FAMILY, /* PangoAttrString */
|
202
|
+
PANGO_ATTR_STYLE, /* PangoAttrInt */
|
203
|
+
PANGO_ATTR_WEIGHT, /* PangoAttrInt */
|
204
|
+
PANGO_ATTR_VARIANT, /* PangoAttrInt */
|
205
|
+
PANGO_ATTR_STRETCH, /* PangoAttrInt */
|
206
|
+
PANGO_ATTR_SIZE, /* PangoAttrSize */
|
207
|
+
PANGO_ATTR_FONT_DESC, /* PangoAttrFontDesc */
|
208
|
+
PANGO_ATTR_FOREGROUND, /* PangoAttrColor */
|
209
|
+
PANGO_ATTR_BACKGROUND, /* PangoAttrColor */
|
210
|
+
PANGO_ATTR_UNDERLINE, /* PangoAttrInt */
|
211
|
+
PANGO_ATTR_STRIKETHROUGH, /* PangoAttrInt */
|
212
|
+
PANGO_ATTR_RISE, /* PangoAttrInt */
|
213
|
+
PANGO_ATTR_SHAPE, /* PangoAttrShape */
|
214
|
+
PANGO_ATTR_SCALE, /* PangoAttrFloat */
|
215
|
+
PANGO_ATTR_FALLBACK, /* PangoAttrInt */
|
216
|
+
PANGO_ATTR_LETTER_SPACING, /* PangoAttrInt */
|
217
|
+
PANGO_ATTR_UNDERLINE_COLOR, /* PangoAttrColor */
|
218
|
+
PANGO_ATTR_STRIKETHROUGH_COLOR,/* PangoAttrColor */
|
219
|
+
PANGO_ATTR_ABSOLUTE_SIZE, /* PangoAttrSize */
|
220
|
+
PANGO_ATTR_GRAVITY, /* PangoAttrInt */
|
221
|
+
PANGO_ATTR_GRAVITY_HINT /* PangoAttrInt */
|
222
|
+
} PangoAttrType;
|
223
|
+
</pre>
|
224
|
+
<p>
|
225
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType"><span class="type">PangoAttrType</span></a>
|
226
|
+
distinguishes between different types of attributes. Along with the
|
227
|
+
predefined values, it is possible to allocate additional values
|
228
|
+
for custom attributes using <a class="link" href="pango-Text-Attributes.html#pango-attr-type-register" title="pango_attr_type_register ()"><code class="function">pango_attr_type_register()</code></a>. The predefined
|
229
|
+
values are given below. The type of structure used to store the
|
230
|
+
attribute is listed in parentheses after the description.
|
231
|
+
</p>
|
232
|
+
<div class="variablelist"><table border="0">
|
233
|
+
<col align="left" valign="top">
|
234
|
+
<tbody>
|
235
|
+
<tr>
|
236
|
+
<td><p><a name="PANGO-ATTR-INVALID:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_INVALID</code></span></p></td>
|
237
|
+
<td>does not happen
|
238
|
+
</td>
|
239
|
+
</tr>
|
240
|
+
<tr>
|
241
|
+
<td><p><a name="PANGO-ATTR-LANGUAGE:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_LANGUAGE</code></span></p></td>
|
242
|
+
<td>language (<a class="link" href="pango-Text-Attributes.html#PangoAttrLanguage" title="PangoAttrLanguage"><span class="type">PangoAttrLanguage</span></a>)
|
243
|
+
</td>
|
244
|
+
</tr>
|
245
|
+
<tr>
|
246
|
+
<td><p><a name="PANGO-ATTR-FAMILY:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_FAMILY</code></span></p></td>
|
247
|
+
<td>font family name list (<a class="link" href="pango-Text-Attributes.html#PangoAttrString" title="PangoAttrString"><span class="type">PangoAttrString</span></a>)
|
248
|
+
</td>
|
249
|
+
</tr>
|
250
|
+
<tr>
|
251
|
+
<td><p><a name="PANGO-ATTR-STYLE:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_STYLE</code></span></p></td>
|
252
|
+
<td>font slant style (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
253
|
+
</td>
|
254
|
+
</tr>
|
255
|
+
<tr>
|
256
|
+
<td><p><a name="PANGO-ATTR-WEIGHT:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_WEIGHT</code></span></p></td>
|
257
|
+
<td>font weight (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
258
|
+
</td>
|
259
|
+
</tr>
|
260
|
+
<tr>
|
261
|
+
<td><p><a name="PANGO-ATTR-VARIANT:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_VARIANT</code></span></p></td>
|
262
|
+
<td>font variant (normal or small caps) (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
263
|
+
</td>
|
264
|
+
</tr>
|
265
|
+
<tr>
|
266
|
+
<td><p><a name="PANGO-ATTR-STRETCH:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_STRETCH</code></span></p></td>
|
267
|
+
<td>font stretch (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
268
|
+
</td>
|
269
|
+
</tr>
|
270
|
+
<tr>
|
271
|
+
<td><p><a name="PANGO-ATTR-SIZE:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_SIZE</code></span></p></td>
|
272
|
+
<td>font size in points scaled by <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
273
|
+
</td>
|
274
|
+
</tr>
|
275
|
+
<tr>
|
276
|
+
<td><p><a name="PANGO-ATTR-FONT-DESC:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_FONT_DESC</code></span></p></td>
|
277
|
+
<td>font description (<a class="link" href="pango-Text-Attributes.html#PangoAttrFontDesc" title="PangoAttrFontDesc"><span class="type">PangoAttrFontDesc</span></a>)
|
278
|
+
</td>
|
279
|
+
</tr>
|
280
|
+
<tr>
|
281
|
+
<td><p><a name="PANGO-ATTR-FOREGROUND:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_FOREGROUND</code></span></p></td>
|
282
|
+
<td>foreground color (<a class="link" href="pango-Text-Attributes.html#PangoAttrColor" title="PangoAttrColor"><span class="type">PangoAttrColor</span></a>)
|
283
|
+
</td>
|
284
|
+
</tr>
|
285
|
+
<tr>
|
286
|
+
<td><p><a name="PANGO-ATTR-BACKGROUND:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_BACKGROUND</code></span></p></td>
|
287
|
+
<td>background color (<a class="link" href="pango-Text-Attributes.html#PangoAttrColor" title="PangoAttrColor"><span class="type">PangoAttrColor</span></a>)
|
288
|
+
</td>
|
289
|
+
</tr>
|
290
|
+
<tr>
|
291
|
+
<td><p><a name="PANGO-ATTR-UNDERLINE:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_UNDERLINE</code></span></p></td>
|
292
|
+
<td>whether the text has an underline (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
293
|
+
</td>
|
294
|
+
</tr>
|
295
|
+
<tr>
|
296
|
+
<td><p><a name="PANGO-ATTR-STRIKETHROUGH:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_STRIKETHROUGH</code></span></p></td>
|
297
|
+
<td>whether the text is struck-through (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
298
|
+
</td>
|
299
|
+
</tr>
|
300
|
+
<tr>
|
301
|
+
<td><p><a name="PANGO-ATTR-RISE:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_RISE</code></span></p></td>
|
302
|
+
<td>baseline displacement (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
303
|
+
</td>
|
304
|
+
</tr>
|
305
|
+
<tr>
|
306
|
+
<td><p><a name="PANGO-ATTR-SHAPE:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_SHAPE</code></span></p></td>
|
307
|
+
<td>shape (<a class="link" href="pango-Text-Attributes.html#PangoAttrShape" title="PangoAttrShape"><span class="type">PangoAttrShape</span></a>)
|
308
|
+
</td>
|
309
|
+
</tr>
|
310
|
+
<tr>
|
311
|
+
<td><p><a name="PANGO-ATTR-SCALE:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_SCALE</code></span></p></td>
|
312
|
+
<td>font size scale factor (<a class="link" href="pango-Text-Attributes.html#PangoAttrFloat" title="PangoAttrFloat"><span class="type">PangoAttrFloat</span></a>)
|
313
|
+
</td>
|
314
|
+
</tr>
|
315
|
+
<tr>
|
316
|
+
<td><p><a name="PANGO-ATTR-FALLBACK:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_FALLBACK</code></span></p></td>
|
317
|
+
<td>whether fallback is enabled (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
318
|
+
</td>
|
319
|
+
</tr>
|
320
|
+
<tr>
|
321
|
+
<td><p><a name="PANGO-ATTR-LETTER-SPACING:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_LETTER_SPACING</code></span></p></td>
|
322
|
+
<td>letter spacing (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
323
|
+
</td>
|
324
|
+
</tr>
|
325
|
+
<tr>
|
326
|
+
<td><p><a name="PANGO-ATTR-UNDERLINE-COLOR:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_UNDERLINE_COLOR</code></span></p></td>
|
327
|
+
<td>underline color (<a class="link" href="pango-Text-Attributes.html#PangoAttrColor" title="PangoAttrColor"><span class="type">PangoAttrColor</span></a>)
|
328
|
+
</td>
|
329
|
+
</tr>
|
330
|
+
<tr>
|
331
|
+
<td><p><a name="PANGO-ATTR-STRIKETHROUGH-COLOR:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_STRIKETHROUGH_COLOR</code></span></p></td>
|
332
|
+
<td>strikethrough color (<a class="link" href="pango-Text-Attributes.html#PangoAttrColor" title="PangoAttrColor"><span class="type">PangoAttrColor</span></a>)
|
333
|
+
</td>
|
334
|
+
</tr>
|
335
|
+
<tr>
|
336
|
+
<td><p><a name="PANGO-ATTR-ABSOLUTE-SIZE:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_ABSOLUTE_SIZE</code></span></p></td>
|
337
|
+
<td>font size in pixels scaled by <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
338
|
+
</td>
|
339
|
+
</tr>
|
340
|
+
<tr>
|
341
|
+
<td><p><a name="PANGO-ATTR-GRAVITY:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_GRAVITY</code></span></p></td>
|
342
|
+
<td>base text gravity (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
343
|
+
</td>
|
344
|
+
</tr>
|
345
|
+
<tr>
|
346
|
+
<td><p><a name="PANGO-ATTR-GRAVITY-HINT:CAPS"></a><span class="term"><code class="literal">PANGO_ATTR_GRAVITY_HINT</code></span></p></td>
|
347
|
+
<td>gravity hint (<a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a>)
|
348
|
+
</td>
|
349
|
+
</tr>
|
350
|
+
</tbody>
|
351
|
+
</table></div>
|
352
|
+
</div>
|
353
|
+
<hr>
|
354
|
+
<div class="refsect2" title="PANGO_TYPE_ATTR_TYPE">
|
355
|
+
<a name="PANGO-TYPE-ATTR-TYPE:CAPS"></a><h3>PANGO_TYPE_ATTR_TYPE</h3>
|
356
|
+
<pre class="programlisting">#define PANGO_TYPE_ATTR_TYPE (pango_attr_type_get_type())
|
357
|
+
</pre>
|
358
|
+
<p>
|
359
|
+
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-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType"><span class="type">PangoAttrType</span></a>.
|
360
|
+
</p>
|
361
|
+
</div>
|
362
|
+
<hr>
|
363
|
+
<div class="refsect2" title="PangoAttrClass">
|
364
|
+
<a name="PangoAttrClass"></a><h3>PangoAttrClass</h3>
|
365
|
+
<pre class="programlisting">typedef struct {
|
366
|
+
PangoAttrType type;
|
367
|
+
PangoAttribute * (*copy) (const PangoAttribute *attr);
|
368
|
+
void (*destroy) (PangoAttribute *attr);
|
369
|
+
gboolean (*equal) (const PangoAttribute *attr1, const PangoAttribute *attr2);
|
370
|
+
} PangoAttrClass;
|
371
|
+
</pre>
|
372
|
+
<p>
|
373
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrClass" title="PangoAttrClass"><span class="type">PangoAttrClass</span></a> structure stores the type and operations for
|
374
|
+
a particular type of attribute. The functions in this structure should
|
375
|
+
not be called directly. Instead, one should use the wrapper functions
|
376
|
+
provided for <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>.
|
377
|
+
</p>
|
378
|
+
<div class="variablelist"><table border="0">
|
379
|
+
<col align="left" valign="top">
|
380
|
+
<tbody>
|
381
|
+
<tr>
|
382
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType"><span class="type">PangoAttrType</span></a> <em class="structfield"><code><a name="PangoAttrClass.type"></a>type</code></em>;</span></p></td>
|
383
|
+
<td>the type ID for this attribute
|
384
|
+
</td>
|
385
|
+
</tr>
|
386
|
+
<tr>
|
387
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoAttrClass.copy"></a>copy</code></em> ()</span></p></td>
|
388
|
+
<td>function to duplicate an attribute of this type (see <a class="link" href="pango-Text-Attributes.html#pango-attribute-copy" title="pango_attribute_copy ()"><code class="function">pango_attribute_copy()</code></a>)
|
389
|
+
</td>
|
390
|
+
</tr>
|
391
|
+
<tr>
|
392
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoAttrClass.destroy"></a>destroy</code></em> ()</span></p></td>
|
393
|
+
<td>function to free an attribute of this type (see <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>)
|
394
|
+
</td>
|
395
|
+
</tr>
|
396
|
+
<tr>
|
397
|
+
<td><p><span class="term"><em class="structfield"><code><a name="PangoAttrClass.equal"></a>equal</code></em> ()</span></p></td>
|
398
|
+
<td>function to check two attributes of this type for equality (see <a class="link" href="pango-Text-Attributes.html#pango-attribute-equal" title="pango_attribute_equal ()"><code class="function">pango_attribute_equal()</code></a>)
|
399
|
+
</td>
|
400
|
+
</tr>
|
401
|
+
</tbody>
|
402
|
+
</table></div>
|
403
|
+
</div>
|
404
|
+
<hr>
|
405
|
+
<div class="refsect2" title="PangoAttribute">
|
406
|
+
<a name="PangoAttribute"></a><h3>PangoAttribute</h3>
|
407
|
+
<pre class="programlisting">typedef struct {
|
408
|
+
const PangoAttrClass *klass;
|
409
|
+
guint start_index; /* in bytes */
|
410
|
+
guint end_index; /* in bytes. The character at this index is not included */
|
411
|
+
} PangoAttribute;
|
412
|
+
</pre>
|
413
|
+
<p>
|
414
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> structure represents the common portions of all
|
415
|
+
attributes. Particular types of attributes include this structure
|
416
|
+
as their initial portion. The common portion of the attribute holds
|
417
|
+
the range to which the value in the type-specific part of the attribute
|
418
|
+
applies and should be initialized using <a class="link" href="pango-Text-Attributes.html#pango-attribute-init" title="pango_attribute_init ()"><code class="function">pango_attribute_init()</code></a>.
|
419
|
+
By default an attribute will have an all-inclusive range of [0,<a href="/usr/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html#G-MAXUINT:CAPS"><code class="literal">G_MAXUINT</code></a>].
|
420
|
+
</p>
|
421
|
+
<div class="variablelist"><table border="0">
|
422
|
+
<col align="left" valign="top">
|
423
|
+
<tbody>
|
424
|
+
<tr>
|
425
|
+
<td><p><span class="term">const <a class="link" href="pango-Text-Attributes.html#PangoAttrClass" title="PangoAttrClass"><span class="type">PangoAttrClass</span></a> *<em class="structfield"><code><a name="PangoAttribute.klass"></a>klass</code></em>;</span></p></td>
|
426
|
+
<td>the class structure holding information about the type of the attribute
|
427
|
+
</td>
|
428
|
+
</tr>
|
429
|
+
<tr>
|
430
|
+
<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="PangoAttribute.start-index"></a>start_index</code></em>;</span></p></td>
|
431
|
+
<td>the start index of the range (in bytes).
|
432
|
+
</td>
|
433
|
+
</tr>
|
434
|
+
<tr>
|
435
|
+
<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="PangoAttribute.end-index"></a>end_index</code></em>;</span></p></td>
|
436
|
+
<td>end index of the range (in bytes). The character at this index
|
437
|
+
is not included in the range.
|
438
|
+
</td>
|
439
|
+
</tr>
|
440
|
+
</tbody>
|
441
|
+
</table></div>
|
442
|
+
</div>
|
443
|
+
<hr>
|
444
|
+
<div class="refsect2" title="PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING">
|
445
|
+
<a name="PANGO-ATTR-INDEX-FROM-TEXT-BEGINNING:CAPS"></a><h3>PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING</h3>
|
446
|
+
<pre class="programlisting">#define PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING 0
|
447
|
+
</pre>
|
448
|
+
<p>
|
449
|
+
This value can be used to set the start_index member of a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>
|
450
|
+
such that the attribute covers from the beginning of the text.
|
451
|
+
</p>
|
452
|
+
Since: 1.24</div>
|
453
|
+
<hr>
|
454
|
+
<div class="refsect2" title="PANGO_ATTR_INDEX_TO_TEXT_END">
|
455
|
+
<a name="PANGO-ATTR-INDEX-TO-TEXT-END:CAPS"></a><h3>PANGO_ATTR_INDEX_TO_TEXT_END</h3>
|
456
|
+
<pre class="programlisting">#define PANGO_ATTR_INDEX_TO_TEXT_END G_MAXUINT
|
457
|
+
</pre>
|
458
|
+
<p>
|
459
|
+
This value can be used to set the end_index member of a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>
|
460
|
+
such that the attribute covers to the end of the text.
|
461
|
+
</p>
|
462
|
+
Since: 1.24</div>
|
463
|
+
<hr>
|
464
|
+
<div class="refsect2" title="PangoAttrString">
|
465
|
+
<a name="PangoAttrString"></a><h3>PangoAttrString</h3>
|
466
|
+
<pre class="programlisting">typedef struct {
|
467
|
+
PangoAttribute attr;
|
468
|
+
char *value;
|
469
|
+
} PangoAttrString;
|
470
|
+
</pre>
|
471
|
+
<p>
|
472
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrString" title="PangoAttrString"><span class="type">PangoAttrString</span></a> structure is used to represent attributes with
|
473
|
+
a string value.
|
474
|
+
</p>
|
475
|
+
<div class="variablelist"><table border="0">
|
476
|
+
<col align="left" valign="top">
|
477
|
+
<tbody>
|
478
|
+
<tr>
|
479
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> <em class="structfield"><code><a name="PangoAttrString.attr"></a>attr</code></em>;</span></p></td>
|
480
|
+
<td>the common portion of the attribute
|
481
|
+
</td>
|
482
|
+
</tr>
|
483
|
+
<tr>
|
484
|
+
<td><p><span class="term"><span class="type">char</span> *<em class="structfield"><code><a name="PangoAttrString.value"></a>value</code></em>;</span></p></td>
|
485
|
+
<td>the string which is the value of the attribute
|
486
|
+
</td>
|
487
|
+
</tr>
|
488
|
+
</tbody>
|
489
|
+
</table></div>
|
490
|
+
</div>
|
491
|
+
<hr>
|
492
|
+
<div class="refsect2" title="PangoAttrLanguage">
|
493
|
+
<a name="PangoAttrLanguage"></a><h3>PangoAttrLanguage</h3>
|
494
|
+
<pre class="programlisting">typedef struct {
|
495
|
+
PangoAttribute attr;
|
496
|
+
PangoLanguage *value;
|
497
|
+
} PangoAttrLanguage;
|
498
|
+
</pre>
|
499
|
+
<p>
|
500
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrLanguage" title="PangoAttrLanguage"><span class="type">PangoAttrLanguage</span></a> structure is used to represent attributes that
|
501
|
+
are languages.
|
502
|
+
</p>
|
503
|
+
<div class="variablelist"><table border="0">
|
504
|
+
<col align="left" valign="top">
|
505
|
+
<tbody>
|
506
|
+
<tr>
|
507
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> <em class="structfield"><code><a name="PangoAttrLanguage.attr"></a>attr</code></em>;</span></p></td>
|
508
|
+
<td>the common portion of the attribute
|
509
|
+
</td>
|
510
|
+
</tr>
|
511
|
+
<tr>
|
512
|
+
<td><p><span class="term"><a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="type">PangoLanguage</span></a> *<em class="structfield"><code><a name="PangoAttrLanguage.value"></a>value</code></em>;</span></p></td>
|
513
|
+
<td>the <a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="type">PangoLanguage</span></a> which is the value of the attribute
|
514
|
+
</td>
|
515
|
+
</tr>
|
516
|
+
</tbody>
|
517
|
+
</table></div>
|
518
|
+
</div>
|
519
|
+
<hr>
|
520
|
+
<div class="refsect2" title="PangoAttrColor">
|
521
|
+
<a name="PangoAttrColor"></a><h3>PangoAttrColor</h3>
|
522
|
+
<pre class="programlisting">typedef struct {
|
523
|
+
PangoAttribute attr;
|
524
|
+
PangoColor color;
|
525
|
+
} PangoAttrColor;
|
526
|
+
</pre>
|
527
|
+
<p>
|
528
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrColor" title="PangoAttrColor"><span class="type">PangoAttrColor</span></a> structure is used to represent attributes that
|
529
|
+
are colors.
|
530
|
+
</p>
|
531
|
+
<div class="variablelist"><table border="0">
|
532
|
+
<col align="left" valign="top">
|
533
|
+
<tbody>
|
534
|
+
<tr>
|
535
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> <em class="structfield"><code><a name="PangoAttrColor.attr"></a>attr</code></em>;</span></p></td>
|
536
|
+
<td>the common portion of the attribute
|
537
|
+
</td>
|
538
|
+
</tr>
|
539
|
+
<tr>
|
540
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="type">PangoColor</span></a> <em class="structfield"><code><a name="PangoAttrColor.color"></a>color</code></em>;</span></p></td>
|
541
|
+
<td>the <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="type">PangoColor</span></a> which is the value of the attribute
|
542
|
+
</td>
|
543
|
+
</tr>
|
544
|
+
</tbody>
|
545
|
+
</table></div>
|
546
|
+
</div>
|
547
|
+
<hr>
|
548
|
+
<div class="refsect2" title="PangoAttrInt">
|
549
|
+
<a name="PangoAttrInt"></a><h3>PangoAttrInt</h3>
|
550
|
+
<pre class="programlisting">typedef struct {
|
551
|
+
PangoAttribute attr;
|
552
|
+
int value;
|
553
|
+
} PangoAttrInt;
|
554
|
+
</pre>
|
555
|
+
<p>
|
556
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrInt" title="PangoAttrInt"><span class="type">PangoAttrInt</span></a> structure is used to represent attributes with
|
557
|
+
an integer or enumeration value.
|
558
|
+
</p>
|
559
|
+
<div class="variablelist"><table border="0">
|
560
|
+
<col align="left" valign="top">
|
561
|
+
<tbody>
|
562
|
+
<tr>
|
563
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> <em class="structfield"><code><a name="PangoAttrInt.attr"></a>attr</code></em>;</span></p></td>
|
564
|
+
<td>the common portion of the attribute
|
565
|
+
</td>
|
566
|
+
</tr>
|
567
|
+
<tr>
|
568
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoAttrInt.value"></a>value</code></em>;</span></p></td>
|
569
|
+
<td>the value of the attribute
|
570
|
+
</td>
|
571
|
+
</tr>
|
572
|
+
</tbody>
|
573
|
+
</table></div>
|
574
|
+
</div>
|
575
|
+
<hr>
|
576
|
+
<div class="refsect2" title="PangoAttrFloat">
|
577
|
+
<a name="PangoAttrFloat"></a><h3>PangoAttrFloat</h3>
|
578
|
+
<pre class="programlisting">typedef struct {
|
579
|
+
PangoAttribute attr;
|
580
|
+
double value;
|
581
|
+
} PangoAttrFloat;
|
582
|
+
</pre>
|
583
|
+
<p>
|
584
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrFloat" title="PangoAttrFloat"><span class="type">PangoAttrFloat</span></a> structure is used to represent attributes with
|
585
|
+
a float or double value.
|
586
|
+
</p>
|
587
|
+
<div class="variablelist"><table border="0">
|
588
|
+
<col align="left" valign="top">
|
589
|
+
<tbody>
|
590
|
+
<tr>
|
591
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> <em class="structfield"><code><a name="PangoAttrFloat.attr"></a>attr</code></em>;</span></p></td>
|
592
|
+
<td>the common portion of the attribute
|
593
|
+
</td>
|
594
|
+
</tr>
|
595
|
+
<tr>
|
596
|
+
<td><p><span class="term"><span class="type">double</span> <em class="structfield"><code><a name="PangoAttrFloat.value"></a>value</code></em>;</span></p></td>
|
597
|
+
<td>the value of the attribute
|
598
|
+
</td>
|
599
|
+
</tr>
|
600
|
+
</tbody>
|
601
|
+
</table></div>
|
602
|
+
</div>
|
603
|
+
<hr>
|
604
|
+
<div class="refsect2" title="PangoAttrFontDesc">
|
605
|
+
<a name="PangoAttrFontDesc"></a><h3>PangoAttrFontDesc</h3>
|
606
|
+
<pre class="programlisting">typedef struct {
|
607
|
+
PangoAttribute attr;
|
608
|
+
PangoFontDescription *desc;
|
609
|
+
} PangoAttrFontDesc;
|
610
|
+
</pre>
|
611
|
+
<p>
|
612
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrFontDesc" title="PangoAttrFontDesc"><span class="type">PangoAttrFontDesc</span></a> structure is used to store an attribute that
|
613
|
+
sets all aspects of the font description at once.
|
614
|
+
</p>
|
615
|
+
<div class="variablelist"><table border="0">
|
616
|
+
<col align="left" valign="top">
|
617
|
+
<tbody>
|
618
|
+
<tr>
|
619
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> <em class="structfield"><code><a name="PangoAttrFontDesc.attr"></a>attr</code></em>;</span></p></td>
|
620
|
+
<td>the common portion of the attribute
|
621
|
+
</td>
|
622
|
+
</tr>
|
623
|
+
<tr>
|
624
|
+
<td><p><span class="term"><a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> *<em class="structfield"><code><a name="PangoAttrFontDesc.desc"></a>desc</code></em>;</span></p></td>
|
625
|
+
<td>the font description which is the value of this attribute
|
626
|
+
</td>
|
627
|
+
</tr>
|
628
|
+
</tbody>
|
629
|
+
</table></div>
|
630
|
+
</div>
|
631
|
+
<hr>
|
632
|
+
<div class="refsect2" title="PangoAttrShape">
|
633
|
+
<a name="PangoAttrShape"></a><h3>PangoAttrShape</h3>
|
634
|
+
<pre class="programlisting">typedef struct {
|
635
|
+
PangoAttribute attr;
|
636
|
+
PangoRectangle ink_rect;
|
637
|
+
PangoRectangle logical_rect;
|
638
|
+
|
639
|
+
gpointer data;
|
640
|
+
PangoAttrDataCopyFunc copy_func;
|
641
|
+
GDestroyNotify destroy_func;
|
642
|
+
} PangoAttrShape;
|
643
|
+
</pre>
|
644
|
+
<p>
|
645
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrShape" title="PangoAttrShape"><span class="type">PangoAttrShape</span></a> structure is used to represent attributes which
|
646
|
+
impose shape restrictions.
|
647
|
+
</p>
|
648
|
+
<div class="variablelist"><table border="0">
|
649
|
+
<col align="left" valign="top">
|
650
|
+
<tbody>
|
651
|
+
<tr>
|
652
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> <em class="structfield"><code><a name="PangoAttrShape.attr"></a>attr</code></em>;</span></p></td>
|
653
|
+
<td>the common portion of the attribute
|
654
|
+
</td>
|
655
|
+
</tr>
|
656
|
+
<tr>
|
657
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a> <em class="structfield"><code><a name="PangoAttrShape.ink-rect"></a>ink_rect</code></em>;</span></p></td>
|
658
|
+
<td>the ink rectangle to restrict to
|
659
|
+
</td>
|
660
|
+
</tr>
|
661
|
+
<tr>
|
662
|
+
<td><p><span class="term"><a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="type">PangoRectangle</span></a> <em class="structfield"><code><a name="PangoAttrShape.logical-rect"></a>logical_rect</code></em>;</span></p></td>
|
663
|
+
<td>the logical rectangle to restrict to
|
664
|
+
</td>
|
665
|
+
</tr>
|
666
|
+
<tr>
|
667
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> <em class="structfield"><code><a name="PangoAttrShape.data"></a>data</code></em>;</span></p></td>
|
668
|
+
<td>user data set (see <a class="link" href="pango-Text-Attributes.html#pango-attr-shape-new-with-data" title="pango_attr_shape_new_with_data ()"><code class="function">pango_attr_shape_new_with_data()</code></a>)
|
669
|
+
</td>
|
670
|
+
</tr>
|
671
|
+
<tr>
|
672
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttrDataCopyFunc" title="PangoAttrDataCopyFunc ()"><span class="type">PangoAttrDataCopyFunc</span></a> <em class="structfield"><code><a name="PangoAttrShape.copy-func"></a>copy_func</code></em>;</span></p></td>
|
673
|
+
<td>copy function for the user data
|
674
|
+
</td>
|
675
|
+
</tr>
|
676
|
+
<tr>
|
677
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> <em class="structfield"><code><a name="PangoAttrShape.destroy-func"></a>destroy_func</code></em>;</span></p></td>
|
678
|
+
<td>destroy function for the user data
|
679
|
+
</td>
|
680
|
+
</tr>
|
681
|
+
</tbody>
|
682
|
+
</table></div>
|
683
|
+
</div>
|
684
|
+
<hr>
|
685
|
+
<div class="refsect2" title="PangoAttrSize">
|
686
|
+
<a name="PangoAttrSize"></a><h3>PangoAttrSize</h3>
|
687
|
+
<pre class="programlisting">typedef struct {
|
688
|
+
PangoAttribute attr;
|
689
|
+
int size;
|
690
|
+
guint absolute : 1;
|
691
|
+
} PangoAttrSize;
|
692
|
+
</pre>
|
693
|
+
<p>
|
694
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrShape" title="PangoAttrShape"><span class="type">PangoAttrShape</span></a> structure is used to represent attributes which
|
695
|
+
set font size.
|
696
|
+
</p>
|
697
|
+
<div class="variablelist"><table border="0">
|
698
|
+
<col align="left" valign="top">
|
699
|
+
<tbody>
|
700
|
+
<tr>
|
701
|
+
<td><p><span class="term"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> <em class="structfield"><code><a name="PangoAttrSize.attr"></a>attr</code></em>;</span></p></td>
|
702
|
+
<td>the common portion of the attribute
|
703
|
+
</td>
|
704
|
+
</tr>
|
705
|
+
<tr>
|
706
|
+
<td><p><span class="term"><span class="type">int</span> <em class="structfield"><code><a name="PangoAttrSize.size"></a>size</code></em>;</span></p></td>
|
707
|
+
<td>size of font, in units of 1/<a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a> of a point (for
|
708
|
+
<a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-SIZE:CAPS"><code class="literal">PANGO_ATTR_SIZE</code></a>) or of a device uni (for <a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-ABSOLUTE-SIZE:CAPS"><code class="literal">PANGO_ATTR_ABSOLUTE_SIZE</code></a>)
|
709
|
+
</td>
|
710
|
+
</tr>
|
711
|
+
<tr>
|
712
|
+
<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="PangoAttrSize.absolute"></a>absolute</code></em> : 1;</span></p></td>
|
713
|
+
<td>whether the font size is in device units or points.
|
714
|
+
This field is only present for compatibility with Pango-1.8.0
|
715
|
+
(<a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-ABSOLUTE-SIZE:CAPS"><code class="literal">PANGO_ATTR_ABSOLUTE_SIZE</code></a> was added in 1.8.1); and always will
|
716
|
+
be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> for <a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-SIZE:CAPS"><code class="literal">PANGO_ATTR_SIZE</code></a> and <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for <a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-ABSOLUTE-SIZE:CAPS"><code class="literal">PANGO_ATTR_ABSOLUTE_SIZE</code></a>.
|
717
|
+
</td>
|
718
|
+
</tr>
|
719
|
+
</tbody>
|
720
|
+
</table></div>
|
721
|
+
</div>
|
722
|
+
<hr>
|
723
|
+
<div class="refsect2" title="pango_parse_markup ()">
|
724
|
+
<a name="pango-parse-markup"></a><h3>pango_parse_markup ()</h3>
|
725
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_parse_markup (const <span class="returnvalue">char</span> *markup_text,
|
726
|
+
<span class="returnvalue">int</span> length,
|
727
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#gunichar"><span class="returnvalue">gunichar</span></a> accel_marker,
|
728
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> **attr_list,
|
729
|
+
<span class="returnvalue">char</span> **text,
|
730
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html#gunichar"><span class="returnvalue">gunichar</span></a> *accel_char,
|
731
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> **error);</pre>
|
732
|
+
<p>
|
733
|
+
Parses marked-up text (see
|
734
|
+
<a class="link" href="PangoMarkupFormat.html" title="Text Attribute Markup">markup format</a>) to create
|
735
|
+
a plain-text string and an attribute list.
|
736
|
+
</p>
|
737
|
+
<p>
|
738
|
+
If <em class="parameter"><code>accel_marker</code></em> is nonzero, the given character will mark the
|
739
|
+
character following it as an accelerator. For example, <em class="parameter"><code>accel_marker</code></em>
|
740
|
+
might be an ampersand or underscore. All characters marked
|
741
|
+
as an accelerator will receive a <a class="link" href="pango-Text-Attributes.html#PANGO-UNDERLINE-LOW:CAPS"><code class="literal">PANGO_UNDERLINE_LOW</code></a> attribute,
|
742
|
+
and the first character so marked will be returned in <em class="parameter"><code>accel_char</code></em>.
|
743
|
+
Two <em class="parameter"><code>accel_marker</code></em> characters following each other produce a single
|
744
|
+
literal <em class="parameter"><code>accel_marker</code></em> character.
|
745
|
+
</p>
|
746
|
+
<p>
|
747
|
+
If any error happens, none of the output arguments are touched except
|
748
|
+
for <em class="parameter"><code>error</code></em>.</p>
|
749
|
+
<div class="variablelist"><table border="0">
|
750
|
+
<col align="left" valign="top">
|
751
|
+
<tbody>
|
752
|
+
<tr>
|
753
|
+
<td><p><span class="term"><em class="parameter"><code>markup_text</code></em> :</span></p></td>
|
754
|
+
<td> markup to parse (see <a class="link" href="PangoMarkupFormat.html" title="Text Attribute Markup">markup format</a>)
|
755
|
+
</td>
|
756
|
+
</tr>
|
757
|
+
<tr>
|
758
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
759
|
+
<td> length of <em class="parameter"><code>markup_text</code></em>, or -1 if nul-terminated
|
760
|
+
</td>
|
761
|
+
</tr>
|
762
|
+
<tr>
|
763
|
+
<td><p><span class="term"><em class="parameter"><code>accel_marker</code></em> :</span></p></td>
|
764
|
+
<td> character that precedes an accelerator, or 0 for none
|
765
|
+
</td>
|
766
|
+
</tr>
|
767
|
+
<tr>
|
768
|
+
<td><p><span class="term"><em class="parameter"><code>attr_list</code></em> :</span></p></td>
|
769
|
+
<td> address of return location for a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
770
|
+
</td>
|
771
|
+
</tr>
|
772
|
+
<tr>
|
773
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
774
|
+
<td> address of return location for text with tags stripped, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
775
|
+
</td>
|
776
|
+
</tr>
|
777
|
+
<tr>
|
778
|
+
<td><p><span class="term"><em class="parameter"><code>accel_char</code></em> :</span></p></td>
|
779
|
+
<td> address of return location for accelerator char, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
780
|
+
</td>
|
781
|
+
</tr>
|
782
|
+
<tr>
|
783
|
+
<td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
|
784
|
+
<td> address of return location for errors, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
785
|
+
</td>
|
786
|
+
</tr>
|
787
|
+
<tr>
|
788
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
789
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if <em class="parameter"><code>error</code></em> is set, otherwise <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>
|
790
|
+
</td>
|
791
|
+
</tr>
|
792
|
+
</tbody>
|
793
|
+
</table></div>
|
794
|
+
</div>
|
795
|
+
<hr>
|
796
|
+
<div class="refsect2" title="pango_attr_type_register ()">
|
797
|
+
<a name="pango-attr-type-register"></a><h3>pango_attr_type_register ()</h3>
|
798
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType"><span class="returnvalue">PangoAttrType</span></a> pango_attr_type_register (const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *name);</pre>
|
799
|
+
<p>
|
800
|
+
Allocate a new attribute type ID. The attribute type name can be accessed
|
801
|
+
later by using <a class="link" href="pango-Text-Attributes.html#pango-attr-type-get-name" title="pango_attr_type_get_name ()"><code class="function">pango_attr_type_get_name()</code></a>.</p>
|
802
|
+
<div class="variablelist"><table border="0">
|
803
|
+
<col align="left" valign="top">
|
804
|
+
<tbody>
|
805
|
+
<tr>
|
806
|
+
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
807
|
+
<td> an identifier for the type
|
808
|
+
</td>
|
809
|
+
</tr>
|
810
|
+
<tr>
|
811
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
812
|
+
<td> the new type ID.
|
813
|
+
</td>
|
814
|
+
</tr>
|
815
|
+
</tbody>
|
816
|
+
</table></div>
|
817
|
+
</div>
|
818
|
+
<hr>
|
819
|
+
<div class="refsect2" title="pango_attr_type_get_name ()">
|
820
|
+
<a name="pango-attr-type-get-name"></a><h3>pango_attr_type_get_name ()</h3>
|
821
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> * pango_attr_type_get_name (<a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType"><span class="returnvalue">PangoAttrType</span></a> type);</pre>
|
822
|
+
<p>
|
823
|
+
Fetches the attribute type name passed in when registering the type using
|
824
|
+
<a class="link" href="pango-Text-Attributes.html#pango-attr-type-register" title="pango_attr_type_register ()"><code class="function">pango_attr_type_register()</code></a>.
|
825
|
+
</p>
|
826
|
+
<p>
|
827
|
+
The returned value is an interned string (see <a href="/usr/share/gtk-doc/html/glib/glib-Quarks.html#g-intern-string"><code class="function">g_intern_string()</code></a> for what
|
828
|
+
that means) that should not be modified or freed.</p>
|
829
|
+
<div class="variablelist"><table border="0">
|
830
|
+
<col align="left" valign="top">
|
831
|
+
<tbody>
|
832
|
+
<tr>
|
833
|
+
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
834
|
+
<td> an attribute type ID to fetch the name for
|
835
|
+
</td>
|
836
|
+
</tr>
|
837
|
+
<tr>
|
838
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
839
|
+
<td> the type ID name (which may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>), 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>type</code></em> is
|
840
|
+
a built-in Pango attribute type or invalid.
|
841
|
+
|
842
|
+
</td>
|
843
|
+
</tr>
|
844
|
+
</tbody>
|
845
|
+
</table></div>
|
846
|
+
<p class="since">Since 1.22</p>
|
847
|
+
</div>
|
848
|
+
<hr>
|
849
|
+
<div class="refsect2" title="pango_attribute_init ()">
|
850
|
+
<a name="pango-attribute-init"></a><h3>pango_attribute_init ()</h3>
|
851
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attribute_init (<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr,
|
852
|
+
const <a class="link" href="pango-Text-Attributes.html#PangoAttrClass" title="PangoAttrClass"><span class="returnvalue">PangoAttrClass</span></a> *klass);</pre>
|
853
|
+
<p>
|
854
|
+
Initializes <em class="parameter"><code>attr</code></em>'s klass to <em class="parameter"><code>klass</code></em>,
|
855
|
+
it's start_index to <a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-INDEX-FROM-TEXT-BEGINNING:CAPS" title="PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING"><code class="literal">PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING</code></a>
|
856
|
+
and end_index to <a class="link" href="pango-Text-Attributes.html#PANGO-ATTR-INDEX-TO-TEXT-END:CAPS" title="PANGO_ATTR_INDEX_TO_TEXT_END"><code class="literal">PANGO_ATTR_INDEX_TO_TEXT_END</code></a>
|
857
|
+
such that the attribute applies
|
858
|
+
to the entire text by default.</p>
|
859
|
+
<div class="variablelist"><table border="0">
|
860
|
+
<col align="left" valign="top">
|
861
|
+
<tbody>
|
862
|
+
<tr>
|
863
|
+
<td><p><span class="term"><em class="parameter"><code>attr</code></em> :</span></p></td>
|
864
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>
|
865
|
+
</td>
|
866
|
+
</tr>
|
867
|
+
<tr>
|
868
|
+
<td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
|
869
|
+
<td> a <span class="type">PangoAttributeClass</span>
|
870
|
+
</td>
|
871
|
+
</tr>
|
872
|
+
</tbody>
|
873
|
+
</table></div>
|
874
|
+
<p class="since">Since 1.20</p>
|
875
|
+
</div>
|
876
|
+
<hr>
|
877
|
+
<div class="refsect2" title="pango_attribute_copy ()">
|
878
|
+
<a name="pango-attribute-copy"></a><h3>pango_attribute_copy ()</h3>
|
879
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attribute_copy (const <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);</pre>
|
880
|
+
<p>
|
881
|
+
Make a copy of an attribute.</p>
|
882
|
+
<div class="variablelist"><table border="0">
|
883
|
+
<col align="left" valign="top">
|
884
|
+
<tbody>
|
885
|
+
<tr>
|
886
|
+
<td><p><span class="term"><em class="parameter"><code>attr</code></em> :</span></p></td>
|
887
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>
|
888
|
+
</td>
|
889
|
+
</tr>
|
890
|
+
<tr>
|
891
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
892
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
893
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
894
|
+
</td>
|
895
|
+
</tr>
|
896
|
+
</tbody>
|
897
|
+
</table></div>
|
898
|
+
</div>
|
899
|
+
<hr>
|
900
|
+
<div class="refsect2" title="pango_attribute_equal ()">
|
901
|
+
<a name="pango-attribute-equal"></a><h3>pango_attribute_equal ()</h3>
|
902
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_attribute_equal (const <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr1,
|
903
|
+
const <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr2);</pre>
|
904
|
+
<p>
|
905
|
+
Compare two attributes for equality. This compares only the
|
906
|
+
actual value of the two attributes and not the ranges that the
|
907
|
+
attributes apply to.</p>
|
908
|
+
<div class="variablelist"><table border="0">
|
909
|
+
<col align="left" valign="top">
|
910
|
+
<tbody>
|
911
|
+
<tr>
|
912
|
+
<td><p><span class="term"><em class="parameter"><code>attr1</code></em> :</span></p></td>
|
913
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>
|
914
|
+
</td>
|
915
|
+
</tr>
|
916
|
+
<tr>
|
917
|
+
<td><p><span class="term"><em class="parameter"><code>attr2</code></em> :</span></p></td>
|
918
|
+
<td> another <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>
|
919
|
+
</td>
|
920
|
+
</tr>
|
921
|
+
<tr>
|
922
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
923
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the two attributes have the same value.
|
924
|
+
</td>
|
925
|
+
</tr>
|
926
|
+
</tbody>
|
927
|
+
</table></div>
|
928
|
+
</div>
|
929
|
+
<hr>
|
930
|
+
<div class="refsect2" title="pango_attribute_destroy ()">
|
931
|
+
<a name="pango-attribute-destroy"></a><h3>pango_attribute_destroy ()</h3>
|
932
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attribute_destroy (<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);</pre>
|
933
|
+
<p>
|
934
|
+
Destroy a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a> and free all associated memory.</p>
|
935
|
+
<div class="variablelist"><table border="0">
|
936
|
+
<col align="left" valign="top">
|
937
|
+
<tbody><tr>
|
938
|
+
<td><p><span class="term"><em class="parameter"><code>attr</code></em> :</span></p></td>
|
939
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>.
|
940
|
+
</td>
|
941
|
+
</tr></tbody>
|
942
|
+
</table></div>
|
943
|
+
</div>
|
944
|
+
<hr>
|
945
|
+
<div class="refsect2" title="pango_attr_language_new ()">
|
946
|
+
<a name="pango-attr-language-new"></a><h3>pango_attr_language_new ()</h3>
|
947
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_language_new (<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *language);</pre>
|
948
|
+
<p>
|
949
|
+
Create a new language tag attribute.</p>
|
950
|
+
<div class="variablelist"><table border="0">
|
951
|
+
<col align="left" valign="top">
|
952
|
+
<tbody>
|
953
|
+
<tr>
|
954
|
+
<td><p><span class="term"><em class="parameter"><code>language</code></em> :</span></p></td>
|
955
|
+
<td> language tag
|
956
|
+
</td>
|
957
|
+
</tr>
|
958
|
+
<tr>
|
959
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
960
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
961
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
962
|
+
</td>
|
963
|
+
</tr>
|
964
|
+
</tbody>
|
965
|
+
</table></div>
|
966
|
+
</div>
|
967
|
+
<hr>
|
968
|
+
<div class="refsect2" title="pango_attr_family_new ()">
|
969
|
+
<a name="pango-attr-family-new"></a><h3>pango_attr_family_new ()</h3>
|
970
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_family_new (const <span class="returnvalue">char</span> *family);</pre>
|
971
|
+
<p>
|
972
|
+
Create a new font family attribute.</p>
|
973
|
+
<div class="variablelist"><table border="0">
|
974
|
+
<col align="left" valign="top">
|
975
|
+
<tbody>
|
976
|
+
<tr>
|
977
|
+
<td><p><span class="term"><em class="parameter"><code>family</code></em> :</span></p></td>
|
978
|
+
<td> the family or comma separated list of families
|
979
|
+
</td>
|
980
|
+
</tr>
|
981
|
+
<tr>
|
982
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
983
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
984
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
985
|
+
</td>
|
986
|
+
</tr>
|
987
|
+
</tbody>
|
988
|
+
</table></div>
|
989
|
+
</div>
|
990
|
+
<hr>
|
991
|
+
<div class="refsect2" title="pango_attr_style_new ()">
|
992
|
+
<a name="pango-attr-style-new"></a><h3>pango_attr_style_new ()</h3>
|
993
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_style_new (<a class="link" href="pango-Fonts.html#PangoStyle" title="enum PangoStyle"><span class="returnvalue">PangoStyle</span></a> style);</pre>
|
994
|
+
<p>
|
995
|
+
Create a new font slant style attribute.</p>
|
996
|
+
<div class="variablelist"><table border="0">
|
997
|
+
<col align="left" valign="top">
|
998
|
+
<tbody>
|
999
|
+
<tr>
|
1000
|
+
<td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
|
1001
|
+
<td> the slant style
|
1002
|
+
</td>
|
1003
|
+
</tr>
|
1004
|
+
<tr>
|
1005
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1006
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1007
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1008
|
+
</td>
|
1009
|
+
</tr>
|
1010
|
+
</tbody>
|
1011
|
+
</table></div>
|
1012
|
+
</div>
|
1013
|
+
<hr>
|
1014
|
+
<div class="refsect2" title="pango_attr_variant_new ()">
|
1015
|
+
<a name="pango-attr-variant-new"></a><h3>pango_attr_variant_new ()</h3>
|
1016
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_variant_new (<a class="link" href="pango-Fonts.html#PangoVariant" title="enum PangoVariant"><span class="returnvalue">PangoVariant</span></a> variant);</pre>
|
1017
|
+
<p>
|
1018
|
+
Create a new font variant attribute (normal or small caps)</p>
|
1019
|
+
<div class="variablelist"><table border="0">
|
1020
|
+
<col align="left" valign="top">
|
1021
|
+
<tbody>
|
1022
|
+
<tr>
|
1023
|
+
<td><p><span class="term"><em class="parameter"><code>variant</code></em> :</span></p></td>
|
1024
|
+
<td> the variant
|
1025
|
+
</td>
|
1026
|
+
</tr>
|
1027
|
+
<tr>
|
1028
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1029
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1030
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1031
|
+
</td>
|
1032
|
+
</tr>
|
1033
|
+
</tbody>
|
1034
|
+
</table></div>
|
1035
|
+
</div>
|
1036
|
+
<hr>
|
1037
|
+
<div class="refsect2" title="pango_attr_stretch_new ()">
|
1038
|
+
<a name="pango-attr-stretch-new"></a><h3>pango_attr_stretch_new ()</h3>
|
1039
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_stretch_new (<a class="link" href="pango-Fonts.html#PangoStretch" title="enum PangoStretch"><span class="returnvalue">PangoStretch</span></a> stretch);</pre>
|
1040
|
+
<p>
|
1041
|
+
Create a new font stretch attribute</p>
|
1042
|
+
<div class="variablelist"><table border="0">
|
1043
|
+
<col align="left" valign="top">
|
1044
|
+
<tbody>
|
1045
|
+
<tr>
|
1046
|
+
<td><p><span class="term"><em class="parameter"><code>stretch</code></em> :</span></p></td>
|
1047
|
+
<td> the stretch
|
1048
|
+
</td>
|
1049
|
+
</tr>
|
1050
|
+
<tr>
|
1051
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1052
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1053
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1054
|
+
</td>
|
1055
|
+
</tr>
|
1056
|
+
</tbody>
|
1057
|
+
</table></div>
|
1058
|
+
</div>
|
1059
|
+
<hr>
|
1060
|
+
<div class="refsect2" title="pango_attr_weight_new ()">
|
1061
|
+
<a name="pango-attr-weight-new"></a><h3>pango_attr_weight_new ()</h3>
|
1062
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_weight_new (<a class="link" href="pango-Fonts.html#PangoWeight" title="enum PangoWeight"><span class="returnvalue">PangoWeight</span></a> weight);</pre>
|
1063
|
+
<p>
|
1064
|
+
Create a new font weight attribute.</p>
|
1065
|
+
<div class="variablelist"><table border="0">
|
1066
|
+
<col align="left" valign="top">
|
1067
|
+
<tbody>
|
1068
|
+
<tr>
|
1069
|
+
<td><p><span class="term"><em class="parameter"><code>weight</code></em> :</span></p></td>
|
1070
|
+
<td> the weight
|
1071
|
+
</td>
|
1072
|
+
</tr>
|
1073
|
+
<tr>
|
1074
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1075
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1076
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1077
|
+
</td>
|
1078
|
+
</tr>
|
1079
|
+
</tbody>
|
1080
|
+
</table></div>
|
1081
|
+
</div>
|
1082
|
+
<hr>
|
1083
|
+
<div class="refsect2" title="pango_attr_size_new ()">
|
1084
|
+
<a name="pango-attr-size-new"></a><h3>pango_attr_size_new ()</h3>
|
1085
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_size_new (<span class="returnvalue">int</span> size);</pre>
|
1086
|
+
<p>
|
1087
|
+
Create a new font-size attribute in fractional points.</p>
|
1088
|
+
<div class="variablelist"><table border="0">
|
1089
|
+
<col align="left" valign="top">
|
1090
|
+
<tbody>
|
1091
|
+
<tr>
|
1092
|
+
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
1093
|
+
<td> the font size, in <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a>ths of a point.
|
1094
|
+
</td>
|
1095
|
+
</tr>
|
1096
|
+
<tr>
|
1097
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1098
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1099
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1100
|
+
</td>
|
1101
|
+
</tr>
|
1102
|
+
</tbody>
|
1103
|
+
</table></div>
|
1104
|
+
</div>
|
1105
|
+
<hr>
|
1106
|
+
<div class="refsect2" title="pango_attr_size_new_absolute ()">
|
1107
|
+
<a name="pango-attr-size-new-absolute"></a><h3>pango_attr_size_new_absolute ()</h3>
|
1108
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_size_new_absolute (<span class="returnvalue">int</span> size);</pre>
|
1109
|
+
<p>
|
1110
|
+
Create a new font-size attribute in device units.</p>
|
1111
|
+
<div class="variablelist"><table border="0">
|
1112
|
+
<col align="left" valign="top">
|
1113
|
+
<tbody>
|
1114
|
+
<tr>
|
1115
|
+
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
1116
|
+
<td> the font size, in <a class="link" href="pango-Glyph-Storage.html#PANGO-SCALE:CAPS" title="PANGO_SCALE"><code class="literal">PANGO_SCALE</code></a>ths of a device unit.
|
1117
|
+
</td>
|
1118
|
+
</tr>
|
1119
|
+
<tr>
|
1120
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1121
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1122
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1123
|
+
|
1124
|
+
</td>
|
1125
|
+
</tr>
|
1126
|
+
</tbody>
|
1127
|
+
</table></div>
|
1128
|
+
<p class="since">Since 1.8</p>
|
1129
|
+
</div>
|
1130
|
+
<hr>
|
1131
|
+
<div class="refsect2" title="pango_attr_font_desc_new ()">
|
1132
|
+
<a name="pango-attr-font-desc-new"></a><h3>pango_attr_font_desc_new ()</h3>
|
1133
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_font_desc_new (const <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc);</pre>
|
1134
|
+
<p>
|
1135
|
+
Create a new font description attribute. This attribute
|
1136
|
+
allows setting family, style, weight, variant, stretch,
|
1137
|
+
and size simultaneously.</p>
|
1138
|
+
<div class="variablelist"><table border="0">
|
1139
|
+
<col align="left" valign="top">
|
1140
|
+
<tbody>
|
1141
|
+
<tr>
|
1142
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
1143
|
+
<td> the font description
|
1144
|
+
</td>
|
1145
|
+
</tr>
|
1146
|
+
<tr>
|
1147
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1148
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1149
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1150
|
+
</td>
|
1151
|
+
</tr>
|
1152
|
+
</tbody>
|
1153
|
+
</table></div>
|
1154
|
+
</div>
|
1155
|
+
<hr>
|
1156
|
+
<div class="refsect2" title="pango_attr_foreground_new ()">
|
1157
|
+
<a name="pango-attr-foreground-new"></a><h3>pango_attr_foreground_new ()</h3>
|
1158
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_foreground_new (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> red,
|
1159
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> green,
|
1160
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> blue);</pre>
|
1161
|
+
<p>
|
1162
|
+
Create a new foreground color attribute.</p>
|
1163
|
+
<div class="variablelist"><table border="0">
|
1164
|
+
<col align="left" valign="top">
|
1165
|
+
<tbody>
|
1166
|
+
<tr>
|
1167
|
+
<td><p><span class="term"><em class="parameter"><code>red</code></em> :</span></p></td>
|
1168
|
+
<td> the red value (ranging from 0 to 65535)
|
1169
|
+
</td>
|
1170
|
+
</tr>
|
1171
|
+
<tr>
|
1172
|
+
<td><p><span class="term"><em class="parameter"><code>green</code></em> :</span></p></td>
|
1173
|
+
<td> the green value
|
1174
|
+
</td>
|
1175
|
+
</tr>
|
1176
|
+
<tr>
|
1177
|
+
<td><p><span class="term"><em class="parameter"><code>blue</code></em> :</span></p></td>
|
1178
|
+
<td> the blue value
|
1179
|
+
</td>
|
1180
|
+
</tr>
|
1181
|
+
<tr>
|
1182
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1183
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1184
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1185
|
+
</td>
|
1186
|
+
</tr>
|
1187
|
+
</tbody>
|
1188
|
+
</table></div>
|
1189
|
+
</div>
|
1190
|
+
<hr>
|
1191
|
+
<div class="refsect2" title="pango_attr_background_new ()">
|
1192
|
+
<a name="pango-attr-background-new"></a><h3>pango_attr_background_new ()</h3>
|
1193
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_background_new (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> red,
|
1194
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> green,
|
1195
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> blue);</pre>
|
1196
|
+
<p>
|
1197
|
+
Create a new background color attribute.</p>
|
1198
|
+
<div class="variablelist"><table border="0">
|
1199
|
+
<col align="left" valign="top">
|
1200
|
+
<tbody>
|
1201
|
+
<tr>
|
1202
|
+
<td><p><span class="term"><em class="parameter"><code>red</code></em> :</span></p></td>
|
1203
|
+
<td> the red value (ranging from 0 to 65535)
|
1204
|
+
</td>
|
1205
|
+
</tr>
|
1206
|
+
<tr>
|
1207
|
+
<td><p><span class="term"><em class="parameter"><code>green</code></em> :</span></p></td>
|
1208
|
+
<td> the green value
|
1209
|
+
</td>
|
1210
|
+
</tr>
|
1211
|
+
<tr>
|
1212
|
+
<td><p><span class="term"><em class="parameter"><code>blue</code></em> :</span></p></td>
|
1213
|
+
<td> the blue value
|
1214
|
+
</td>
|
1215
|
+
</tr>
|
1216
|
+
<tr>
|
1217
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1218
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1219
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1220
|
+
</td>
|
1221
|
+
</tr>
|
1222
|
+
</tbody>
|
1223
|
+
</table></div>
|
1224
|
+
</div>
|
1225
|
+
<hr>
|
1226
|
+
<div class="refsect2" title="pango_attr_strikethrough_new ()">
|
1227
|
+
<a name="pango-attr-strikethrough-new"></a><h3>pango_attr_strikethrough_new ()</h3>
|
1228
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_strikethrough_new (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> strikethrough);</pre>
|
1229
|
+
<p>
|
1230
|
+
Create a new strike-through attribute.</p>
|
1231
|
+
<div class="variablelist"><table border="0">
|
1232
|
+
<col align="left" valign="top">
|
1233
|
+
<tbody>
|
1234
|
+
<tr>
|
1235
|
+
<td><p><span class="term"><em class="parameter"><code>strikethrough</code></em> :</span></p></td>
|
1236
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the text should be struck-through.
|
1237
|
+
</td>
|
1238
|
+
</tr>
|
1239
|
+
<tr>
|
1240
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1241
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1242
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1243
|
+
</td>
|
1244
|
+
</tr>
|
1245
|
+
</tbody>
|
1246
|
+
</table></div>
|
1247
|
+
</div>
|
1248
|
+
<hr>
|
1249
|
+
<div class="refsect2" title="pango_attr_strikethrough_color_new ()">
|
1250
|
+
<a name="pango-attr-strikethrough-color-new"></a><h3>pango_attr_strikethrough_color_new ()</h3>
|
1251
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_strikethrough_color_new (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> red,
|
1252
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> green,
|
1253
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> blue);</pre>
|
1254
|
+
<p>
|
1255
|
+
Create a new strikethrough color attribute. This attribute
|
1256
|
+
modifies the color of strikethrough lines. If not set, strikethrough
|
1257
|
+
lines will use the foreground color.</p>
|
1258
|
+
<div class="variablelist"><table border="0">
|
1259
|
+
<col align="left" valign="top">
|
1260
|
+
<tbody>
|
1261
|
+
<tr>
|
1262
|
+
<td><p><span class="term"><em class="parameter"><code>red</code></em> :</span></p></td>
|
1263
|
+
<td> the red value (ranging from 0 to 65535)
|
1264
|
+
</td>
|
1265
|
+
</tr>
|
1266
|
+
<tr>
|
1267
|
+
<td><p><span class="term"><em class="parameter"><code>green</code></em> :</span></p></td>
|
1268
|
+
<td> the green value
|
1269
|
+
</td>
|
1270
|
+
</tr>
|
1271
|
+
<tr>
|
1272
|
+
<td><p><span class="term"><em class="parameter"><code>blue</code></em> :</span></p></td>
|
1273
|
+
<td> the blue value
|
1274
|
+
</td>
|
1275
|
+
</tr>
|
1276
|
+
<tr>
|
1277
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1278
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1279
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1280
|
+
|
1281
|
+
</td>
|
1282
|
+
</tr>
|
1283
|
+
</tbody>
|
1284
|
+
</table></div>
|
1285
|
+
<p class="since">Since 1.8</p>
|
1286
|
+
</div>
|
1287
|
+
<hr>
|
1288
|
+
<div class="refsect2" title="pango_attr_underline_new ()">
|
1289
|
+
<a name="pango-attr-underline-new"></a><h3>pango_attr_underline_new ()</h3>
|
1290
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_underline_new (<a class="link" href="pango-Text-Attributes.html#PangoUnderline" title="enum PangoUnderline"><span class="returnvalue">PangoUnderline</span></a> underline);</pre>
|
1291
|
+
<p>
|
1292
|
+
Create a new underline-style attribute.</p>
|
1293
|
+
<div class="variablelist"><table border="0">
|
1294
|
+
<col align="left" valign="top">
|
1295
|
+
<tbody>
|
1296
|
+
<tr>
|
1297
|
+
<td><p><span class="term"><em class="parameter"><code>underline</code></em> :</span></p></td>
|
1298
|
+
<td> the underline style.
|
1299
|
+
</td>
|
1300
|
+
</tr>
|
1301
|
+
<tr>
|
1302
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1303
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1304
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1305
|
+
</td>
|
1306
|
+
</tr>
|
1307
|
+
</tbody>
|
1308
|
+
</table></div>
|
1309
|
+
</div>
|
1310
|
+
<hr>
|
1311
|
+
<div class="refsect2" title="pango_attr_underline_color_new ()">
|
1312
|
+
<a name="pango-attr-underline-color-new"></a><h3>pango_attr_underline_color_new ()</h3>
|
1313
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_underline_color_new (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> red,
|
1314
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> green,
|
1315
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> blue);</pre>
|
1316
|
+
<p>
|
1317
|
+
Create a new underline color attribute. This attribute
|
1318
|
+
modifies the color of underlines. If not set, underlines
|
1319
|
+
will use the foreground color.</p>
|
1320
|
+
<div class="variablelist"><table border="0">
|
1321
|
+
<col align="left" valign="top">
|
1322
|
+
<tbody>
|
1323
|
+
<tr>
|
1324
|
+
<td><p><span class="term"><em class="parameter"><code>red</code></em> :</span></p></td>
|
1325
|
+
<td> the red value (ranging from 0 to 65535)
|
1326
|
+
</td>
|
1327
|
+
</tr>
|
1328
|
+
<tr>
|
1329
|
+
<td><p><span class="term"><em class="parameter"><code>green</code></em> :</span></p></td>
|
1330
|
+
<td> the green value
|
1331
|
+
</td>
|
1332
|
+
</tr>
|
1333
|
+
<tr>
|
1334
|
+
<td><p><span class="term"><em class="parameter"><code>blue</code></em> :</span></p></td>
|
1335
|
+
<td> the blue value
|
1336
|
+
</td>
|
1337
|
+
</tr>
|
1338
|
+
<tr>
|
1339
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1340
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1341
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1342
|
+
|
1343
|
+
</td>
|
1344
|
+
</tr>
|
1345
|
+
</tbody>
|
1346
|
+
</table></div>
|
1347
|
+
<p class="since">Since 1.8</p>
|
1348
|
+
</div>
|
1349
|
+
<hr>
|
1350
|
+
<div class="refsect2" title="enum PangoUnderline">
|
1351
|
+
<a name="PangoUnderline"></a><h3>enum PangoUnderline</h3>
|
1352
|
+
<pre class="programlisting">typedef enum {
|
1353
|
+
PANGO_UNDERLINE_NONE,
|
1354
|
+
PANGO_UNDERLINE_SINGLE,
|
1355
|
+
PANGO_UNDERLINE_DOUBLE,
|
1356
|
+
PANGO_UNDERLINE_LOW,
|
1357
|
+
PANGO_UNDERLINE_ERROR
|
1358
|
+
} PangoUnderline;
|
1359
|
+
</pre>
|
1360
|
+
<p>
|
1361
|
+
the <a class="link" href="pango-Text-Attributes.html#PangoUnderline" title="enum PangoUnderline"><span class="type">PangoUnderline</span></a> enumeration is used to specify
|
1362
|
+
whether text should be underlined, and if so, the type
|
1363
|
+
of underlining.
|
1364
|
+
</p>
|
1365
|
+
<div class="variablelist"><table border="0">
|
1366
|
+
<col align="left" valign="top">
|
1367
|
+
<tbody>
|
1368
|
+
<tr>
|
1369
|
+
<td><p><a name="PANGO-UNDERLINE-NONE:CAPS"></a><span class="term"><code class="literal">PANGO_UNDERLINE_NONE</code></span></p></td>
|
1370
|
+
<td>no underline should be drawn
|
1371
|
+
</td>
|
1372
|
+
</tr>
|
1373
|
+
<tr>
|
1374
|
+
<td><p><a name="PANGO-UNDERLINE-SINGLE:CAPS"></a><span class="term"><code class="literal">PANGO_UNDERLINE_SINGLE</code></span></p></td>
|
1375
|
+
<td>a single underline should be drawn
|
1376
|
+
</td>
|
1377
|
+
</tr>
|
1378
|
+
<tr>
|
1379
|
+
<td><p><a name="PANGO-UNDERLINE-DOUBLE:CAPS"></a><span class="term"><code class="literal">PANGO_UNDERLINE_DOUBLE</code></span></p></td>
|
1380
|
+
<td>a double underline should be drawn
|
1381
|
+
</td>
|
1382
|
+
</tr>
|
1383
|
+
<tr>
|
1384
|
+
<td><p><a name="PANGO-UNDERLINE-LOW:CAPS"></a><span class="term"><code class="literal">PANGO_UNDERLINE_LOW</code></span></p></td>
|
1385
|
+
<td>a single underline should be drawn at a position
|
1386
|
+
beneath the ink extents of the text being
|
1387
|
+
underlined. This should be used only for underlining
|
1388
|
+
single characters, such as for keyboard
|
1389
|
+
accelerators. <a class="link" href="pango-Text-Attributes.html#PANGO-UNDERLINE-SINGLE:CAPS"><code class="literal">PANGO_UNDERLINE_SINGLE</code></a> should
|
1390
|
+
be used for extended portions of text.
|
1391
|
+
</td>
|
1392
|
+
</tr>
|
1393
|
+
<tr>
|
1394
|
+
<td><p><a name="PANGO-UNDERLINE-ERROR:CAPS"></a><span class="term"><code class="literal">PANGO_UNDERLINE_ERROR</code></span></p></td>
|
1395
|
+
<td>a wavy underline should be drawn below.
|
1396
|
+
This underline is typically used to indicate
|
1397
|
+
an error such as a possilble mispelling; in some
|
1398
|
+
cases a contrasting color may automatically
|
1399
|
+
be used. This type of underlining is available
|
1400
|
+
since Pango 1.4.
|
1401
|
+
</td>
|
1402
|
+
</tr>
|
1403
|
+
</tbody>
|
1404
|
+
</table></div>
|
1405
|
+
</div>
|
1406
|
+
<hr>
|
1407
|
+
<div class="refsect2" title="PANGO_TYPE_UNDERLINE">
|
1408
|
+
<a name="PANGO-TYPE-UNDERLINE:CAPS"></a><h3>PANGO_TYPE_UNDERLINE</h3>
|
1409
|
+
<pre class="programlisting">#define PANGO_TYPE_UNDERLINE (pango_underline_get_type())
|
1410
|
+
</pre>
|
1411
|
+
<p>
|
1412
|
+
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-Text-Attributes.html#PangoUnderline" title="enum PangoUnderline"><span class="type">PangoUnderline</span></a>.
|
1413
|
+
</p>
|
1414
|
+
</div>
|
1415
|
+
<hr>
|
1416
|
+
<div class="refsect2" title="pango_attr_shape_new ()">
|
1417
|
+
<a name="pango-attr-shape-new"></a><h3>pango_attr_shape_new ()</h3>
|
1418
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_shape_new (const <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
1419
|
+
const <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect);</pre>
|
1420
|
+
<p>
|
1421
|
+
Create a new shape attribute. A shape is used to impose a
|
1422
|
+
particular ink and logical rectangle on the result of shaping a
|
1423
|
+
particular glyph. This might be used, for instance, for
|
1424
|
+
embedding a picture or a widget inside a <a class="link" href="pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a>.</p>
|
1425
|
+
<div class="variablelist"><table border="0">
|
1426
|
+
<col align="left" valign="top">
|
1427
|
+
<tbody>
|
1428
|
+
<tr>
|
1429
|
+
<td><p><span class="term"><em class="parameter"><code>ink_rect</code></em> :</span></p></td>
|
1430
|
+
<td> ink rectangle to assign to each character
|
1431
|
+
</td>
|
1432
|
+
</tr>
|
1433
|
+
<tr>
|
1434
|
+
<td><p><span class="term"><em class="parameter"><code>logical_rect</code></em> :</span></p></td>
|
1435
|
+
<td> logical rectangle to assign to each character
|
1436
|
+
</td>
|
1437
|
+
</tr>
|
1438
|
+
<tr>
|
1439
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1440
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1441
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1442
|
+
</td>
|
1443
|
+
</tr>
|
1444
|
+
</tbody>
|
1445
|
+
</table></div>
|
1446
|
+
</div>
|
1447
|
+
<hr>
|
1448
|
+
<div class="refsect2" title="pango_attr_shape_new_with_data ()">
|
1449
|
+
<a name="pango-attr-shape-new-with-data"></a><h3>pango_attr_shape_new_with_data ()</h3>
|
1450
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_shape_new_with_data (const <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *ink_rect,
|
1451
|
+
const <a class="link" href="pango-Glyph-Storage.html#PangoRectangle" title="PangoRectangle"><span class="returnvalue">PangoRectangle</span></a> *logical_rect,
|
1452
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data,
|
1453
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrDataCopyFunc" title="PangoAttrDataCopyFunc ()"><span class="returnvalue">PangoAttrDataCopyFunc</span></a> copy_func,
|
1454
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="returnvalue">GDestroyNotify</span></a> destroy_func);</pre>
|
1455
|
+
<p>
|
1456
|
+
Like <a class="link" href="pango-Text-Attributes.html#pango-attr-shape-new" title="pango_attr_shape_new ()"><code class="function">pango_attr_shape_new()</code></a>, but a user data pointer is also
|
1457
|
+
provided; this pointer can be accessed when later
|
1458
|
+
rendering the glyph.</p>
|
1459
|
+
<div class="variablelist"><table border="0">
|
1460
|
+
<col align="left" valign="top">
|
1461
|
+
<tbody>
|
1462
|
+
<tr>
|
1463
|
+
<td><p><span class="term"><em class="parameter"><code>ink_rect</code></em> :</span></p></td>
|
1464
|
+
<td> ink rectangle to assign to each character
|
1465
|
+
</td>
|
1466
|
+
</tr>
|
1467
|
+
<tr>
|
1468
|
+
<td><p><span class="term"><em class="parameter"><code>logical_rect</code></em> :</span></p></td>
|
1469
|
+
<td> logical rectangle to assign to each character
|
1470
|
+
</td>
|
1471
|
+
</tr>
|
1472
|
+
<tr>
|
1473
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
1474
|
+
<td> user data pointer
|
1475
|
+
</td>
|
1476
|
+
</tr>
|
1477
|
+
<tr>
|
1478
|
+
<td><p><span class="term"><em class="parameter"><code>copy_func</code></em> :</span></p></td>
|
1479
|
+
<td> function to copy <em class="parameter"><code>data</code></em> when the attribute
|
1480
|
+
is copied. If <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, <em class="parameter"><code>data</code></em> is simply copied
|
1481
|
+
as a pointer.
|
1482
|
+
</td>
|
1483
|
+
</tr>
|
1484
|
+
<tr>
|
1485
|
+
<td><p><span class="term"><em class="parameter"><code>destroy_func</code></em> :</span></p></td>
|
1486
|
+
<td> function to free <em class="parameter"><code>data</code></em> when the attribute
|
1487
|
+
is freed, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1488
|
+
</td>
|
1489
|
+
</tr>
|
1490
|
+
<tr>
|
1491
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1492
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1493
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1494
|
+
|
1495
|
+
</td>
|
1496
|
+
</tr>
|
1497
|
+
</tbody>
|
1498
|
+
</table></div>
|
1499
|
+
<p class="since">Since 1.8</p>
|
1500
|
+
</div>
|
1501
|
+
<hr>
|
1502
|
+
<div class="refsect2" title="PangoAttrDataCopyFunc ()">
|
1503
|
+
<a name="PangoAttrDataCopyFunc"></a><h3>PangoAttrDataCopyFunc ()</h3>
|
1504
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> (*PangoAttrDataCopyFunc) (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gconstpointer"><span class="returnvalue">gconstpointer</span></a> data);</pre>
|
1505
|
+
<p>
|
1506
|
+
A copy function passed to attribute new functions that take
|
1507
|
+
user data.
|
1508
|
+
</p>
|
1509
|
+
<div class="variablelist"><table border="0">
|
1510
|
+
<col align="left" valign="top">
|
1511
|
+
<tbody>
|
1512
|
+
<tr>
|
1513
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
1514
|
+
<td>the user data
|
1515
|
+
</td>
|
1516
|
+
</tr>
|
1517
|
+
<tr>
|
1518
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1519
|
+
<td>a new copy of <em class="parameter"><code>data</code></em>.
|
1520
|
+
</td>
|
1521
|
+
</tr>
|
1522
|
+
</tbody>
|
1523
|
+
</table></div>
|
1524
|
+
</div>
|
1525
|
+
<hr>
|
1526
|
+
<div class="refsect2" title="pango_attr_scale_new ()">
|
1527
|
+
<a name="pango-attr-scale-new"></a><h3>pango_attr_scale_new ()</h3>
|
1528
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_scale_new (<span class="returnvalue">double</span> scale_factor);</pre>
|
1529
|
+
<p>
|
1530
|
+
Create a new font size scale attribute. The base font for the
|
1531
|
+
affected text will have its size multiplied by <em class="parameter"><code>scale_factor</code></em>.</p>
|
1532
|
+
<div class="variablelist"><table border="0">
|
1533
|
+
<col align="left" valign="top">
|
1534
|
+
<tbody>
|
1535
|
+
<tr>
|
1536
|
+
<td><p><span class="term"><em class="parameter"><code>scale_factor</code></em> :</span></p></td>
|
1537
|
+
<td> factor to scale the font
|
1538
|
+
</td>
|
1539
|
+
</tr>
|
1540
|
+
<tr>
|
1541
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1542
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1543
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1544
|
+
</td>
|
1545
|
+
</tr>
|
1546
|
+
</tbody>
|
1547
|
+
</table></div>
|
1548
|
+
</div>
|
1549
|
+
<hr>
|
1550
|
+
<div class="refsect2" title="PANGO_SCALE_XX_SMALL">
|
1551
|
+
<a name="PANGO-SCALE-XX-SMALL:CAPS"></a><h3>PANGO_SCALE_XX_SMALL</h3>
|
1552
|
+
<pre class="programlisting">#define PANGO_SCALE_XX_SMALL ((double)0.5787037037037)
|
1553
|
+
</pre>
|
1554
|
+
<p>
|
1555
|
+
The scale factor for three shrinking steps (1 / (1.2 * 1.2 * 1.2)).
|
1556
|
+
</p>
|
1557
|
+
</div>
|
1558
|
+
<hr>
|
1559
|
+
<div class="refsect2" title="PANGO_SCALE_X_SMALL">
|
1560
|
+
<a name="PANGO-SCALE-X-SMALL:CAPS"></a><h3>PANGO_SCALE_X_SMALL</h3>
|
1561
|
+
<pre class="programlisting">#define PANGO_SCALE_X_SMALL ((double)0.6444444444444)
|
1562
|
+
</pre>
|
1563
|
+
<p>
|
1564
|
+
The scale factor for two shrinking steps (1 / (1.2 * 1.2)).
|
1565
|
+
</p>
|
1566
|
+
</div>
|
1567
|
+
<hr>
|
1568
|
+
<div class="refsect2" title="PANGO_SCALE_SMALL">
|
1569
|
+
<a name="PANGO-SCALE-SMALL:CAPS"></a><h3>PANGO_SCALE_SMALL</h3>
|
1570
|
+
<pre class="programlisting">#define PANGO_SCALE_SMALL ((double)0.8333333333333)
|
1571
|
+
</pre>
|
1572
|
+
<p>
|
1573
|
+
The scale factor for one shrinking step (1 / 1.2).
|
1574
|
+
</p>
|
1575
|
+
</div>
|
1576
|
+
<hr>
|
1577
|
+
<div class="refsect2" title="PANGO_SCALE_MEDIUM">
|
1578
|
+
<a name="PANGO-SCALE-MEDIUM:CAPS"></a><h3>PANGO_SCALE_MEDIUM</h3>
|
1579
|
+
<pre class="programlisting">#define PANGO_SCALE_MEDIUM ((double)1.0)
|
1580
|
+
</pre>
|
1581
|
+
<p>
|
1582
|
+
The scale factor for normal size (1.0).
|
1583
|
+
</p>
|
1584
|
+
</div>
|
1585
|
+
<hr>
|
1586
|
+
<div class="refsect2" title="PANGO_SCALE_LARGE">
|
1587
|
+
<a name="PANGO-SCALE-LARGE:CAPS"></a><h3>PANGO_SCALE_LARGE</h3>
|
1588
|
+
<pre class="programlisting">#define PANGO_SCALE_LARGE ((double)1.2)
|
1589
|
+
</pre>
|
1590
|
+
<p>
|
1591
|
+
The scale factor for one magnification step (1.2).
|
1592
|
+
</p>
|
1593
|
+
</div>
|
1594
|
+
<hr>
|
1595
|
+
<div class="refsect2" title="PANGO_SCALE_X_LARGE">
|
1596
|
+
<a name="PANGO-SCALE-X-LARGE:CAPS"></a><h3>PANGO_SCALE_X_LARGE</h3>
|
1597
|
+
<pre class="programlisting">#define PANGO_SCALE_X_LARGE ((double)1.4399999999999)
|
1598
|
+
</pre>
|
1599
|
+
<p>
|
1600
|
+
The scale factor for two magnification steps (1.2 * 1.2).
|
1601
|
+
</p>
|
1602
|
+
</div>
|
1603
|
+
<hr>
|
1604
|
+
<div class="refsect2" title="PANGO_SCALE_XX_LARGE">
|
1605
|
+
<a name="PANGO-SCALE-XX-LARGE:CAPS"></a><h3>PANGO_SCALE_XX_LARGE</h3>
|
1606
|
+
<pre class="programlisting">#define PANGO_SCALE_XX_LARGE ((double)1.728)
|
1607
|
+
</pre>
|
1608
|
+
<p>
|
1609
|
+
The scale factor for three magnification steps (1.2 * 1.2 * 1.2).
|
1610
|
+
</p>
|
1611
|
+
</div>
|
1612
|
+
<hr>
|
1613
|
+
<div class="refsect2" title="pango_attr_rise_new ()">
|
1614
|
+
<a name="pango-attr-rise-new"></a><h3>pango_attr_rise_new ()</h3>
|
1615
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_rise_new (<span class="returnvalue">int</span> rise);</pre>
|
1616
|
+
<p>
|
1617
|
+
Create a new baseline displacement attribute.</p>
|
1618
|
+
<div class="variablelist"><table border="0">
|
1619
|
+
<col align="left" valign="top">
|
1620
|
+
<tbody>
|
1621
|
+
<tr>
|
1622
|
+
<td><p><span class="term"><em class="parameter"><code>rise</code></em> :</span></p></td>
|
1623
|
+
<td> the amount that the text should be displaced vertically,
|
1624
|
+
in Pango units. Positive values displace the text upwards.
|
1625
|
+
</td>
|
1626
|
+
</tr>
|
1627
|
+
<tr>
|
1628
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1629
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1630
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1631
|
+
</td>
|
1632
|
+
</tr>
|
1633
|
+
</tbody>
|
1634
|
+
</table></div>
|
1635
|
+
</div>
|
1636
|
+
<hr>
|
1637
|
+
<div class="refsect2" title="pango_attr_letter_spacing_new ()">
|
1638
|
+
<a name="pango-attr-letter-spacing-new"></a><h3>pango_attr_letter_spacing_new ()</h3>
|
1639
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_letter_spacing_new (<span class="returnvalue">int</span> letter_spacing);</pre>
|
1640
|
+
<p>
|
1641
|
+
Create a new letter-spacing attribute.</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>letter_spacing</code></em> :</span></p></td>
|
1647
|
+
<td> amount of extra space to add between graphemes
|
1648
|
+
of the text, in Pango units.
|
1649
|
+
</td>
|
1650
|
+
</tr>
|
1651
|
+
<tr>
|
1652
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1653
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1654
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1655
|
+
|
1656
|
+
</td>
|
1657
|
+
</tr>
|
1658
|
+
</tbody>
|
1659
|
+
</table></div>
|
1660
|
+
<p class="since">Since 1.6</p>
|
1661
|
+
</div>
|
1662
|
+
<hr>
|
1663
|
+
<div class="refsect2" title="pango_attr_fallback_new ()">
|
1664
|
+
<a name="pango-attr-fallback-new"></a><h3>pango_attr_fallback_new ()</h3>
|
1665
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_fallback_new (<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> enable_fallback);</pre>
|
1666
|
+
<p>
|
1667
|
+
Create a new font fallback attribute.
|
1668
|
+
</p>
|
1669
|
+
<p>
|
1670
|
+
If fallback is disabled, characters will only be used from the
|
1671
|
+
closest matching font on the system. No fallback will be done to
|
1672
|
+
other fonts on the system that might contain the characters in the
|
1673
|
+
text.</p>
|
1674
|
+
<div class="variablelist"><table border="0">
|
1675
|
+
<col align="left" valign="top">
|
1676
|
+
<tbody>
|
1677
|
+
<tr>
|
1678
|
+
<td><p><span class="term"><em class="parameter"><code>enable_fallback</code></em> :</span></p></td>
|
1679
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if we should fall back on other fonts
|
1680
|
+
for characters the active font is missing.
|
1681
|
+
</td>
|
1682
|
+
</tr>
|
1683
|
+
<tr>
|
1684
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1685
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1686
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1687
|
+
|
1688
|
+
</td>
|
1689
|
+
</tr>
|
1690
|
+
</tbody>
|
1691
|
+
</table></div>
|
1692
|
+
<p class="since">Since 1.4</p>
|
1693
|
+
</div>
|
1694
|
+
<hr>
|
1695
|
+
<div class="refsect2" title="pango_attr_gravity_new ()">
|
1696
|
+
<a name="pango-attr-gravity-new"></a><h3>pango_attr_gravity_new ()</h3>
|
1697
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_gravity_new (<a class="link" href="pango-Vertical-Text.html#PangoGravity" title="enum PangoGravity"><span class="returnvalue">PangoGravity</span></a> gravity);</pre>
|
1698
|
+
<p>
|
1699
|
+
Create a new gravity attribute.</p>
|
1700
|
+
<div class="variablelist"><table border="0">
|
1701
|
+
<col align="left" valign="top">
|
1702
|
+
<tbody>
|
1703
|
+
<tr>
|
1704
|
+
<td><p><span class="term"><em class="parameter"><code>gravity</code></em> :</span></p></td>
|
1705
|
+
<td> the gravity value; should not be <a class="link" href="pango-Vertical-Text.html#PANGO-GRAVITY-AUTO:CAPS"><code class="literal">PANGO_GRAVITY_AUTO</code></a>.
|
1706
|
+
</td>
|
1707
|
+
</tr>
|
1708
|
+
<tr>
|
1709
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1710
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1711
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1712
|
+
|
1713
|
+
</td>
|
1714
|
+
</tr>
|
1715
|
+
</tbody>
|
1716
|
+
</table></div>
|
1717
|
+
<p class="since">Since 1.16</p>
|
1718
|
+
</div>
|
1719
|
+
<hr>
|
1720
|
+
<div class="refsect2" title="pango_attr_gravity_hint_new ()">
|
1721
|
+
<a name="pango-attr-gravity-hint-new"></a><h3>pango_attr_gravity_hint_new ()</h3>
|
1722
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_gravity_hint_new (<a class="link" href="pango-Vertical-Text.html#PangoGravityHint" title="enum PangoGravityHint"><span class="returnvalue">PangoGravityHint</span></a> hint);</pre>
|
1723
|
+
<p>
|
1724
|
+
Create a new gravity hint attribute.</p>
|
1725
|
+
<div class="variablelist"><table border="0">
|
1726
|
+
<col align="left" valign="top">
|
1727
|
+
<tbody>
|
1728
|
+
<tr>
|
1729
|
+
<td><p><span class="term"><em class="parameter"><code>hint</code></em> :</span></p></td>
|
1730
|
+
<td> the gravity hint value.
|
1731
|
+
</td>
|
1732
|
+
</tr>
|
1733
|
+
<tr>
|
1734
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1735
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>, which should be
|
1736
|
+
freed with <a class="link" href="pango-Text-Attributes.html#pango-attribute-destroy" title="pango_attribute_destroy ()"><code class="function">pango_attribute_destroy()</code></a>.
|
1737
|
+
|
1738
|
+
</td>
|
1739
|
+
</tr>
|
1740
|
+
</tbody>
|
1741
|
+
</table></div>
|
1742
|
+
<p class="since">Since 1.16</p>
|
1743
|
+
</div>
|
1744
|
+
<hr>
|
1745
|
+
<div class="refsect2" title="PangoColor">
|
1746
|
+
<a name="PangoColor"></a><h3>PangoColor</h3>
|
1747
|
+
<pre class="programlisting">typedef struct {
|
1748
|
+
guint16 red;
|
1749
|
+
guint16 green;
|
1750
|
+
guint16 blue;
|
1751
|
+
} PangoColor;
|
1752
|
+
</pre>
|
1753
|
+
<p>
|
1754
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="type">PangoColor</span></a> structure is used to
|
1755
|
+
represent a color in an uncalibrated RGB color-space.
|
1756
|
+
</p>
|
1757
|
+
<div class="variablelist"><table border="0">
|
1758
|
+
<col align="left" valign="top">
|
1759
|
+
<tbody>
|
1760
|
+
<tr>
|
1761
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="PangoColor.red"></a>red</code></em>;</span></p></td>
|
1762
|
+
<td>The red component of the color. This is a value between 0 and 65535,
|
1763
|
+
with 65535 indicating full intensity.
|
1764
|
+
</td>
|
1765
|
+
</tr>
|
1766
|
+
<tr>
|
1767
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="PangoColor.green"></a>green</code></em>;</span></p></td>
|
1768
|
+
<td>The green component of the color. This is a value between 0 and 65535,
|
1769
|
+
with 65535 indicating full intensity.
|
1770
|
+
</td>
|
1771
|
+
</tr>
|
1772
|
+
<tr>
|
1773
|
+
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="PangoColor.blue"></a>blue</code></em>;</span></p></td>
|
1774
|
+
<td>The blue component of the color. This is a value between 0 and 65535,
|
1775
|
+
with 65535 indicating full intensity.
|
1776
|
+
</td>
|
1777
|
+
</tr>
|
1778
|
+
</tbody>
|
1779
|
+
</table></div>
|
1780
|
+
</div>
|
1781
|
+
<hr>
|
1782
|
+
<div class="refsect2" title="PANGO_TYPE_COLOR">
|
1783
|
+
<a name="PANGO-TYPE-COLOR:CAPS"></a><h3>PANGO_TYPE_COLOR</h3>
|
1784
|
+
<pre class="programlisting">#define PANGO_TYPE_COLOR pango_color_get_type ()
|
1785
|
+
</pre>
|
1786
|
+
<p>
|
1787
|
+
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-Text-Attributes.html#PangoColor" title="PangoColor"><span class="type">PangoColor</span></a>.
|
1788
|
+
</p>
|
1789
|
+
</div>
|
1790
|
+
<hr>
|
1791
|
+
<div class="refsect2" title="pango_color_parse ()">
|
1792
|
+
<a name="pango-color-parse"></a><h3>pango_color_parse ()</h3>
|
1793
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_color_parse (<a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> *color,
|
1794
|
+
const <span class="returnvalue">char</span> *spec);</pre>
|
1795
|
+
<p>
|
1796
|
+
Fill in the fields of a color from a string specification. The
|
1797
|
+
string can either one of a large set of standard names. (Taken
|
1798
|
+
from the X11 <code class="filename">rgb.txt</code> file), or it can be a hex value in the
|
1799
|
+
form '#rgb' '#rrggbb' '#rrrgggbbb' or '#rrrrggggbbbb' where
|
1800
|
+
'r', 'g' and 'b' are hex digits of the red, green, and blue
|
1801
|
+
components of the color, respectively. (White in the four
|
1802
|
+
forms is '#fff' '#ffffff' '#fffffffff' and '#ffffffffffff')</p>
|
1803
|
+
<div class="variablelist"><table border="0">
|
1804
|
+
<col align="left" valign="top">
|
1805
|
+
<tbody>
|
1806
|
+
<tr>
|
1807
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
1808
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="type">PangoColor</span></a> structure in which to store the result, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1809
|
+
</td>
|
1810
|
+
</tr>
|
1811
|
+
<tr>
|
1812
|
+
<td><p><span class="term"><em class="parameter"><code>spec</code></em> :</span></p></td>
|
1813
|
+
<td> a string specifying the new color
|
1814
|
+
</td>
|
1815
|
+
</tr>
|
1816
|
+
<tr>
|
1817
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1818
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if parsing of the specifier succeeded,
|
1819
|
+
otherwise false.
|
1820
|
+
</td>
|
1821
|
+
</tr>
|
1822
|
+
</tbody>
|
1823
|
+
</table></div>
|
1824
|
+
</div>
|
1825
|
+
<hr>
|
1826
|
+
<div class="refsect2" title="pango_color_copy ()">
|
1827
|
+
<a name="pango-color-copy"></a><h3>pango_color_copy ()</h3>
|
1828
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> * pango_color_copy (const <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> *src);</pre>
|
1829
|
+
<p>
|
1830
|
+
Creates a copy of <em class="parameter"><code>src</code></em>, which should be freed with
|
1831
|
+
<a class="link" href="pango-Text-Attributes.html#pango-color-free" title="pango_color_free ()"><code class="function">pango_color_free()</code></a>. Primarily used by language bindings,
|
1832
|
+
not that useful otherwise (since colors can just be copied
|
1833
|
+
by assignment in C).</p>
|
1834
|
+
<div class="variablelist"><table border="0">
|
1835
|
+
<col align="left" valign="top">
|
1836
|
+
<tbody>
|
1837
|
+
<tr>
|
1838
|
+
<td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
|
1839
|
+
<td> color to copy, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1840
|
+
</td>
|
1841
|
+
</tr>
|
1842
|
+
<tr>
|
1843
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1844
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="type">PangoColor</span></a>, which should
|
1845
|
+
be freed with <a class="link" href="pango-Text-Attributes.html#pango-color-free" title="pango_color_free ()"><code class="function">pango_color_free()</code></a>, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1846
|
+
if <em class="parameter"><code>src</code></em> was <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
1847
|
+
</td>
|
1848
|
+
</tr>
|
1849
|
+
</tbody>
|
1850
|
+
</table></div>
|
1851
|
+
</div>
|
1852
|
+
<hr>
|
1853
|
+
<div class="refsect2" title="pango_color_free ()">
|
1854
|
+
<a name="pango-color-free"></a><h3>pango_color_free ()</h3>
|
1855
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_color_free (<a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> *color);</pre>
|
1856
|
+
<p>
|
1857
|
+
Frees a color allocated by <a class="link" href="pango-Text-Attributes.html#pango-color-copy" title="pango_color_copy ()"><code class="function">pango_color_copy()</code></a>.</p>
|
1858
|
+
<div class="variablelist"><table border="0">
|
1859
|
+
<col align="left" valign="top">
|
1860
|
+
<tbody><tr>
|
1861
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
1862
|
+
<td> an allocated <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="type">PangoColor</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1863
|
+
</td>
|
1864
|
+
</tr></tbody>
|
1865
|
+
</table></div>
|
1866
|
+
</div>
|
1867
|
+
<hr>
|
1868
|
+
<div class="refsect2" title="pango_color_to_string ()">
|
1869
|
+
<a name="pango-color-to-string"></a><h3>pango_color_to_string ()</h3>
|
1870
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * pango_color_to_string (const <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="returnvalue">PangoColor</span></a> *color);</pre>
|
1871
|
+
<p>
|
1872
|
+
Returns a textual specification of <em class="parameter"><code>color</code></em> in the hexadecimal form
|
1873
|
+
<code class="literal">#rrrrggggbbbb</code>, where <code class="literal">r</code>,
|
1874
|
+
<code class="literal">g</code> and <code class="literal">b</code> are hex digits representing
|
1875
|
+
the red, green, and blue components respectively.</p>
|
1876
|
+
<div class="variablelist"><table border="0">
|
1877
|
+
<col align="left" valign="top">
|
1878
|
+
<tbody>
|
1879
|
+
<tr>
|
1880
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
1881
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoColor" title="PangoColor"><span class="type">PangoColor</span></a>
|
1882
|
+
</td>
|
1883
|
+
</tr>
|
1884
|
+
<tr>
|
1885
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1886
|
+
<td> a newly-allocated text string that must be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
|
1887
|
+
|
1888
|
+
</td>
|
1889
|
+
</tr>
|
1890
|
+
</tbody>
|
1891
|
+
</table></div>
|
1892
|
+
<p class="since">Since 1.16</p>
|
1893
|
+
</div>
|
1894
|
+
<hr>
|
1895
|
+
<div class="refsect2" title="PangoAttrList">
|
1896
|
+
<a name="PangoAttrList"></a><h3>PangoAttrList</h3>
|
1897
|
+
<pre class="programlisting">typedef struct _PangoAttrList PangoAttrList;</pre>
|
1898
|
+
<p>
|
1899
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a> structure represents a list of attributes
|
1900
|
+
that apply to a section of text. The attributes are, in general,
|
1901
|
+
allowed to overlap in an arbitrary fashion, however, if the
|
1902
|
+
attributes are manipulated only through <a class="link" href="pango-Text-Attributes.html#pango-attr-list-change" title="pango_attr_list_change ()"><code class="function">pango_attr_list_change()</code></a>,
|
1903
|
+
the overlap between properties will meet stricter criteria.
|
1904
|
+
</p>
|
1905
|
+
<p>
|
1906
|
+
Since the <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a> structure is stored as a linear list,
|
1907
|
+
it is not suitable for storing attributes for large amounts
|
1908
|
+
of text. In general, you should not use a single <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>
|
1909
|
+
for more than one paragraph of text.
|
1910
|
+
</p>
|
1911
|
+
</div>
|
1912
|
+
<hr>
|
1913
|
+
<div class="refsect2" title="PANGO_TYPE_ATTR_LIST">
|
1914
|
+
<a name="PANGO-TYPE-ATTR-LIST:CAPS"></a><h3>PANGO_TYPE_ATTR_LIST</h3>
|
1915
|
+
<pre class="programlisting">#define PANGO_TYPE_ATTR_LIST pango_attr_list_get_type ()
|
1916
|
+
</pre>
|
1917
|
+
<p>
|
1918
|
+
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-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>.
|
1919
|
+
</p>
|
1920
|
+
</div>
|
1921
|
+
<hr>
|
1922
|
+
<div class="refsect2" title="pango_attr_list_new ()">
|
1923
|
+
<a name="pango-attr-list-new"></a><h3>pango_attr_list_new ()</h3>
|
1924
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> * pango_attr_list_new (void);</pre>
|
1925
|
+
<p>
|
1926
|
+
Create a new empty attribute list with a reference count of one.</p>
|
1927
|
+
<div class="variablelist"><table border="0">
|
1928
|
+
<col align="left" valign="top">
|
1929
|
+
<tbody><tr>
|
1930
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1931
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>, which should
|
1932
|
+
be freed with <a class="link" href="pango-Text-Attributes.html#pango-attr-list-unref" title="pango_attr_list_unref ()"><code class="function">pango_attr_list_unref()</code></a>.
|
1933
|
+
</td>
|
1934
|
+
</tr></tbody>
|
1935
|
+
</table></div>
|
1936
|
+
</div>
|
1937
|
+
<hr>
|
1938
|
+
<div class="refsect2" title="pango_attr_list_ref ()">
|
1939
|
+
<a name="pango-attr-list-ref"></a><h3>pango_attr_list_ref ()</h3>
|
1940
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> * pango_attr_list_ref (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);</pre>
|
1941
|
+
<p>
|
1942
|
+
Increase the reference count of the given attribute list by one.</p>
|
1943
|
+
<div class="variablelist"><table border="0">
|
1944
|
+
<col align="left" valign="top">
|
1945
|
+
<tbody>
|
1946
|
+
<tr>
|
1947
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1948
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1949
|
+
</td>
|
1950
|
+
</tr>
|
1951
|
+
<tr>
|
1952
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1953
|
+
<td> The attribute list passed in
|
1954
|
+
|
1955
|
+
</td>
|
1956
|
+
</tr>
|
1957
|
+
</tbody>
|
1958
|
+
</table></div>
|
1959
|
+
<p class="since">Since 1.10</p>
|
1960
|
+
</div>
|
1961
|
+
<hr>
|
1962
|
+
<div class="refsect2" title="pango_attr_list_unref ()">
|
1963
|
+
<a name="pango-attr-list-unref"></a><h3>pango_attr_list_unref ()</h3>
|
1964
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attr_list_unref (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);</pre>
|
1965
|
+
<p>
|
1966
|
+
Decrease the reference count of the given attribute list by one.
|
1967
|
+
If the result is zero, free the attribute list and the attributes
|
1968
|
+
it contains.</p>
|
1969
|
+
<div class="variablelist"><table border="0">
|
1970
|
+
<col align="left" valign="top">
|
1971
|
+
<tbody><tr>
|
1972
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1973
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1974
|
+
</td>
|
1975
|
+
</tr></tbody>
|
1976
|
+
</table></div>
|
1977
|
+
</div>
|
1978
|
+
<hr>
|
1979
|
+
<div class="refsect2" title="pango_attr_list_copy ()">
|
1980
|
+
<a name="pango-attr-list-copy"></a><h3>pango_attr_list_copy ()</h3>
|
1981
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> * pango_attr_list_copy (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);</pre>
|
1982
|
+
<p>
|
1983
|
+
Copy <em class="parameter"><code>list</code></em> and return an identical new list.</p>
|
1984
|
+
<div class="variablelist"><table border="0">
|
1985
|
+
<col align="left" valign="top">
|
1986
|
+
<tbody>
|
1987
|
+
<tr>
|
1988
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1989
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>, may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1990
|
+
</td>
|
1991
|
+
</tr>
|
1992
|
+
<tr>
|
1993
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1994
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>, with a
|
1995
|
+
reference count of one, which should
|
1996
|
+
be freed with <a class="link" href="pango-Text-Attributes.html#pango-attr-list-unref" title="pango_attr_list_unref ()"><code class="function">pango_attr_list_unref()</code></a>.
|
1997
|
+
Returns <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>list</code></em> was <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
1998
|
+
</td>
|
1999
|
+
</tr>
|
2000
|
+
</tbody>
|
2001
|
+
</table></div>
|
2002
|
+
</div>
|
2003
|
+
<hr>
|
2004
|
+
<div class="refsect2" title="pango_attr_list_insert ()">
|
2005
|
+
<a name="pango-attr-list-insert"></a><h3>pango_attr_list_insert ()</h3>
|
2006
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attr_list_insert (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
2007
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);</pre>
|
2008
|
+
<p>
|
2009
|
+
Insert the given attribute into the <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>. It will
|
2010
|
+
be inserted after all other attributes with a matching
|
2011
|
+
<em class="parameter"><code>start_index</code></em>.</p>
|
2012
|
+
<div class="variablelist"><table border="0">
|
2013
|
+
<col align="left" valign="top">
|
2014
|
+
<tbody>
|
2015
|
+
<tr>
|
2016
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2017
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>
|
2018
|
+
</td>
|
2019
|
+
</tr>
|
2020
|
+
<tr>
|
2021
|
+
<td><p><span class="term"><em class="parameter"><code>attr</code></em> :</span></p></td>
|
2022
|
+
<td> the attribute to insert. Ownership of this value is
|
2023
|
+
assumed by the list.
|
2024
|
+
</td>
|
2025
|
+
</tr>
|
2026
|
+
</tbody>
|
2027
|
+
</table></div>
|
2028
|
+
</div>
|
2029
|
+
<hr>
|
2030
|
+
<div class="refsect2" title="pango_attr_list_insert_before ()">
|
2031
|
+
<a name="pango-attr-list-insert-before"></a><h3>pango_attr_list_insert_before ()</h3>
|
2032
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attr_list_insert_before (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
2033
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);</pre>
|
2034
|
+
<p>
|
2035
|
+
Insert the given attribute into the <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>. It will
|
2036
|
+
be inserted before all other attributes with a matching
|
2037
|
+
<em class="parameter"><code>start_index</code></em>.</p>
|
2038
|
+
<div class="variablelist"><table border="0">
|
2039
|
+
<col align="left" valign="top">
|
2040
|
+
<tbody>
|
2041
|
+
<tr>
|
2042
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2043
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>
|
2044
|
+
</td>
|
2045
|
+
</tr>
|
2046
|
+
<tr>
|
2047
|
+
<td><p><span class="term"><em class="parameter"><code>attr</code></em> :</span></p></td>
|
2048
|
+
<td> the attribute to insert. Ownership of this value is
|
2049
|
+
assumed by the list.
|
2050
|
+
</td>
|
2051
|
+
</tr>
|
2052
|
+
</tbody>
|
2053
|
+
</table></div>
|
2054
|
+
</div>
|
2055
|
+
<hr>
|
2056
|
+
<div class="refsect2" title="pango_attr_list_change ()">
|
2057
|
+
<a name="pango-attr-list-change"></a><h3>pango_attr_list_change ()</h3>
|
2058
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attr_list_change (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
2059
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attr);</pre>
|
2060
|
+
<p>
|
2061
|
+
Insert the given attribute into the <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>. It will
|
2062
|
+
replace any attributes of the same type on that segment
|
2063
|
+
and be merged with any adjoining attributes that are identical.
|
2064
|
+
</p>
|
2065
|
+
<p>
|
2066
|
+
This function is slower than <a class="link" href="pango-Text-Attributes.html#pango-attr-list-insert" title="pango_attr_list_insert ()"><code class="function">pango_attr_list_insert()</code></a> for
|
2067
|
+
creating a attribute list in order (potentially much slower
|
2068
|
+
for large lists). However, <a class="link" href="pango-Text-Attributes.html#pango-attr-list-insert" title="pango_attr_list_insert ()"><code class="function">pango_attr_list_insert()</code></a> is not
|
2069
|
+
suitable for continually changing a set of attributes
|
2070
|
+
since it never removes or combines existing attributes.</p>
|
2071
|
+
<div class="variablelist"><table border="0">
|
2072
|
+
<col align="left" valign="top">
|
2073
|
+
<tbody>
|
2074
|
+
<tr>
|
2075
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2076
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>
|
2077
|
+
</td>
|
2078
|
+
</tr>
|
2079
|
+
<tr>
|
2080
|
+
<td><p><span class="term"><em class="parameter"><code>attr</code></em> :</span></p></td>
|
2081
|
+
<td> the attribute to insert. Ownership of this value is
|
2082
|
+
assumed by the list.
|
2083
|
+
</td>
|
2084
|
+
</tr>
|
2085
|
+
</tbody>
|
2086
|
+
</table></div>
|
2087
|
+
</div>
|
2088
|
+
<hr>
|
2089
|
+
<div class="refsect2" title="pango_attr_list_splice ()">
|
2090
|
+
<a name="pango-attr-list-splice"></a><h3>pango_attr_list_splice ()</h3>
|
2091
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attr_list_splice (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
2092
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *other,
|
2093
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> pos,
|
2094
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> len);</pre>
|
2095
|
+
<p>
|
2096
|
+
This function opens up a hole in <em class="parameter"><code>list</code></em>, fills it in with attributes from
|
2097
|
+
the left, and then merges <em class="parameter"><code>other</code></em> on top of the hole.
|
2098
|
+
</p>
|
2099
|
+
<p>
|
2100
|
+
This operation is equivalent to stretching every attribute
|
2101
|
+
that applies at position <em class="parameter"><code>pos</code></em> in <em class="parameter"><code>list</code></em> by an amount <em class="parameter"><code>len</code></em>,
|
2102
|
+
and then calling <a class="link" href="pango-Text-Attributes.html#pango-attr-list-change" title="pango_attr_list_change ()"><code class="function">pango_attr_list_change()</code></a> with a copy
|
2103
|
+
of each attribute in <em class="parameter"><code>other</code></em> in sequence (offset in position by <em class="parameter"><code>pos</code></em>).
|
2104
|
+
</p>
|
2105
|
+
<p>
|
2106
|
+
This operation proves useful for, for instance, inserting
|
2107
|
+
a pre-edit string in the middle of an edit buffer.</p>
|
2108
|
+
<div class="variablelist"><table border="0">
|
2109
|
+
<col align="left" valign="top">
|
2110
|
+
<tbody>
|
2111
|
+
<tr>
|
2112
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2113
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>
|
2114
|
+
</td>
|
2115
|
+
</tr>
|
2116
|
+
<tr>
|
2117
|
+
<td><p><span class="term"><em class="parameter"><code>other</code></em> :</span></p></td>
|
2118
|
+
<td> another <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>
|
2119
|
+
</td>
|
2120
|
+
</tr>
|
2121
|
+
<tr>
|
2122
|
+
<td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
|
2123
|
+
<td> the position in <em class="parameter"><code>list</code></em> at which to insert <em class="parameter"><code>other</code></em>
|
2124
|
+
</td>
|
2125
|
+
</tr>
|
2126
|
+
<tr>
|
2127
|
+
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
2128
|
+
<td> the length of the spliced segment. (Note that this
|
2129
|
+
must be specified since the attributes in <em class="parameter"><code>other</code></em>
|
2130
|
+
may only be present at some subsection of this range)
|
2131
|
+
</td>
|
2132
|
+
</tr>
|
2133
|
+
</tbody>
|
2134
|
+
</table></div>
|
2135
|
+
</div>
|
2136
|
+
<hr>
|
2137
|
+
<div class="refsect2" title="pango_attr_list_filter ()">
|
2138
|
+
<a name="pango-attr-list-filter"></a><h3>pango_attr_list_filter ()</h3>
|
2139
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> * pango_attr_list_filter (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list,
|
2140
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrFilterFunc" title="PangoAttrFilterFunc ()"><span class="returnvalue">PangoAttrFilterFunc</span></a> func,
|
2141
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data);</pre>
|
2142
|
+
<p>
|
2143
|
+
Given a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a> and callback function, removes any elements
|
2144
|
+
of <em class="parameter"><code>list</code></em> for which <em class="parameter"><code>func</code></em> returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and inserts them into
|
2145
|
+
a new list.</p>
|
2146
|
+
<div class="variablelist"><table border="0">
|
2147
|
+
<col align="left" valign="top">
|
2148
|
+
<tbody>
|
2149
|
+
<tr>
|
2150
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2151
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>
|
2152
|
+
</td>
|
2153
|
+
</tr>
|
2154
|
+
<tr>
|
2155
|
+
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
2156
|
+
<td> callback function; returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an attribute
|
2157
|
+
should be filtered out.
|
2158
|
+
</td>
|
2159
|
+
</tr>
|
2160
|
+
<tr>
|
2161
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2162
|
+
<td> Data to be passed to <em class="parameter"><code>func</code></em>
|
2163
|
+
</td>
|
2164
|
+
</tr>
|
2165
|
+
<tr>
|
2166
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2167
|
+
<td> the new <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a> or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
|
2168
|
+
no attributes of the given types were found.
|
2169
|
+
|
2170
|
+
</td>
|
2171
|
+
</tr>
|
2172
|
+
</tbody>
|
2173
|
+
</table></div>
|
2174
|
+
<p class="since">Since 1.2</p>
|
2175
|
+
</div>
|
2176
|
+
<hr>
|
2177
|
+
<div class="refsect2" title="PangoAttrFilterFunc ()">
|
2178
|
+
<a name="PangoAttrFilterFunc"></a><h3>PangoAttrFilterFunc ()</h3>
|
2179
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (*PangoAttrFilterFunc) (<a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> *attribute,
|
2180
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> data);</pre>
|
2181
|
+
<p>
|
2182
|
+
A predicate function used by <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>
|
2183
|
+
to filter out a subset of attributes for a list.
|
2184
|
+
</p>
|
2185
|
+
<div class="variablelist"><table border="0">
|
2186
|
+
<col align="left" valign="top">
|
2187
|
+
<tbody>
|
2188
|
+
<tr>
|
2189
|
+
<td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
|
2190
|
+
<td>a <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>
|
2191
|
+
</td>
|
2192
|
+
</tr>
|
2193
|
+
<tr>
|
2194
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2195
|
+
<td>callback data passed to <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>
|
2196
|
+
</td>
|
2197
|
+
</tr>
|
2198
|
+
<tr>
|
2199
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2200
|
+
<td>
|
2201
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the attribute should be filtered out
|
2202
|
+
</td>
|
2203
|
+
</tr>
|
2204
|
+
</tbody>
|
2205
|
+
</table></div>
|
2206
|
+
</div>
|
2207
|
+
<hr>
|
2208
|
+
<div class="refsect2" title="pango_attr_list_get_iterator ()">
|
2209
|
+
<a name="pango-attr-list-get-iterator"></a><h3>pango_attr_list_get_iterator ()</h3>
|
2210
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> * pango_attr_list_get_iterator (<a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *list);</pre>
|
2211
|
+
<p>
|
2212
|
+
Create a iterator initialized to the beginning of the list.
|
2213
|
+
<em class="parameter"><code>list</code></em> must not be modified until this iterator is freed.</p>
|
2214
|
+
<div class="variablelist"><table border="0">
|
2215
|
+
<col align="left" valign="top">
|
2216
|
+
<tbody>
|
2217
|
+
<tr>
|
2218
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
2219
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>
|
2220
|
+
</td>
|
2221
|
+
</tr>
|
2222
|
+
<tr>
|
2223
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2224
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a>, which should
|
2225
|
+
be freed with <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-destroy" title="pango_attr_iterator_destroy ()"><code class="function">pango_attr_iterator_destroy()</code></a>.
|
2226
|
+
</td>
|
2227
|
+
</tr>
|
2228
|
+
</tbody>
|
2229
|
+
</table></div>
|
2230
|
+
</div>
|
2231
|
+
<hr>
|
2232
|
+
<div class="refsect2" title="PangoAttrIterator">
|
2233
|
+
<a name="PangoAttrIterator"></a><h3>PangoAttrIterator</h3>
|
2234
|
+
<pre class="programlisting">typedef struct _PangoAttrIterator PangoAttrIterator;</pre>
|
2235
|
+
<p>
|
2236
|
+
The <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a> structure is used to represent an
|
2237
|
+
iterator through a <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a>. A new iterator is created
|
2238
|
+
with <a class="link" href="pango-Text-Attributes.html#pango-attr-list-get-iterator" title="pango_attr_list_get_iterator ()"><code class="function">pango_attr_list_get_iterator()</code></a>. Once the iterator
|
2239
|
+
is created, it can be advanced through the style changes
|
2240
|
+
in the text using <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-next" title="pango_attr_iterator_next ()"><code class="function">pango_attr_iterator_next()</code></a>. At each
|
2241
|
+
style change, the range of the current style segment and the
|
2242
|
+
attributes currently in effect can be queried.
|
2243
|
+
</p>
|
2244
|
+
</div>
|
2245
|
+
<hr>
|
2246
|
+
<div class="refsect2" title="pango_attr_iterator_copy ()">
|
2247
|
+
<a name="pango-attr-iterator-copy"></a><h3>pango_attr_iterator_copy ()</h3>
|
2248
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> * pango_attr_iterator_copy (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator);</pre>
|
2249
|
+
<p>
|
2250
|
+
Copy a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a></p>
|
2251
|
+
<div class="variablelist"><table border="0">
|
2252
|
+
<col align="left" valign="top">
|
2253
|
+
<tbody>
|
2254
|
+
<tr>
|
2255
|
+
<td><p><span class="term"><em class="parameter"><code>iterator</code></em> :</span></p></td>
|
2256
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a>.
|
2257
|
+
</td>
|
2258
|
+
</tr>
|
2259
|
+
<tr>
|
2260
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2261
|
+
<td> the newly allocated <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a>, which should
|
2262
|
+
be freed with <a class="link" href="pango-Text-Attributes.html#pango-attr-iterator-destroy" title="pango_attr_iterator_destroy ()"><code class="function">pango_attr_iterator_destroy()</code></a>.
|
2263
|
+
</td>
|
2264
|
+
</tr>
|
2265
|
+
</tbody>
|
2266
|
+
</table></div>
|
2267
|
+
</div>
|
2268
|
+
<hr>
|
2269
|
+
<div class="refsect2" title="pango_attr_iterator_next ()">
|
2270
|
+
<a name="pango-attr-iterator-next"></a><h3>pango_attr_iterator_next ()</h3>
|
2271
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> pango_attr_iterator_next (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator);</pre>
|
2272
|
+
<p>
|
2273
|
+
Advance the iterator until the next change of style.</p>
|
2274
|
+
<div class="variablelist"><table border="0">
|
2275
|
+
<col align="left" valign="top">
|
2276
|
+
<tbody>
|
2277
|
+
<tr>
|
2278
|
+
<td><p><span class="term"><em class="parameter"><code>iterator</code></em> :</span></p></td>
|
2279
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a>
|
2280
|
+
</td>
|
2281
|
+
</tr>
|
2282
|
+
<tr>
|
2283
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2284
|
+
<td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the iterator is at the end of the list, otherwise <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>
|
2285
|
+
</td>
|
2286
|
+
</tr>
|
2287
|
+
</tbody>
|
2288
|
+
</table></div>
|
2289
|
+
</div>
|
2290
|
+
<hr>
|
2291
|
+
<div class="refsect2" title="pango_attr_iterator_range ()">
|
2292
|
+
<a name="pango-attr-iterator-range"></a><h3>pango_attr_iterator_range ()</h3>
|
2293
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attr_iterator_range (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator,
|
2294
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *start,
|
2295
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *end);</pre>
|
2296
|
+
<p>
|
2297
|
+
Get the range of the current segment. Note that the
|
2298
|
+
stored return values are signed, not unsigned like
|
2299
|
+
the values in <a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="type">PangoAttribute</span></a>. To deal with this API
|
2300
|
+
oversight, stored return values that wouldn't fit into
|
2301
|
+
a signed integer are clamped to <a href="/usr/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html#G-MAXINT:CAPS"><code class="literal">G_MAXINT</code></a>.</p>
|
2302
|
+
<div class="variablelist"><table border="0">
|
2303
|
+
<col align="left" valign="top">
|
2304
|
+
<tbody>
|
2305
|
+
<tr>
|
2306
|
+
<td><p><span class="term"><em class="parameter"><code>iterator</code></em> :</span></p></td>
|
2307
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a>
|
2308
|
+
</td>
|
2309
|
+
</tr>
|
2310
|
+
<tr>
|
2311
|
+
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
2312
|
+
<td> location to store the start of the range
|
2313
|
+
</td>
|
2314
|
+
</tr>
|
2315
|
+
<tr>
|
2316
|
+
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
2317
|
+
<td> location to store the end of the range
|
2318
|
+
</td>
|
2319
|
+
</tr>
|
2320
|
+
</tbody>
|
2321
|
+
</table></div>
|
2322
|
+
</div>
|
2323
|
+
<hr>
|
2324
|
+
<div class="refsect2" title="pango_attr_iterator_get ()">
|
2325
|
+
<a name="pango-attr-iterator-get"></a><h3>pango_attr_iterator_get ()</h3>
|
2326
|
+
<pre class="programlisting"><a class="link" href="pango-Text-Attributes.html#PangoAttribute" title="PangoAttribute"><span class="returnvalue">PangoAttribute</span></a> * pango_attr_iterator_get (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator,
|
2327
|
+
<a class="link" href="pango-Text-Attributes.html#PangoAttrType" title="enum PangoAttrType"><span class="returnvalue">PangoAttrType</span></a> type);</pre>
|
2328
|
+
<p>
|
2329
|
+
Find the current attribute of a particular type at the iterator
|
2330
|
+
location. When multiple attributes of the same type overlap,
|
2331
|
+
the attribute whose range starts closest to the current location
|
2332
|
+
is used.</p>
|
2333
|
+
<div class="variablelist"><table border="0">
|
2334
|
+
<col align="left" valign="top">
|
2335
|
+
<tbody>
|
2336
|
+
<tr>
|
2337
|
+
<td><p><span class="term"><em class="parameter"><code>iterator</code></em> :</span></p></td>
|
2338
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a>
|
2339
|
+
</td>
|
2340
|
+
</tr>
|
2341
|
+
<tr>
|
2342
|
+
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
2343
|
+
<td> the type of attribute to find.
|
2344
|
+
</td>
|
2345
|
+
</tr>
|
2346
|
+
<tr>
|
2347
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2348
|
+
<td> the current attribute of the given type, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
2349
|
+
if no attribute of that type applies to the current
|
2350
|
+
location.
|
2351
|
+
</td>
|
2352
|
+
</tr>
|
2353
|
+
</tbody>
|
2354
|
+
</table></div>
|
2355
|
+
</div>
|
2356
|
+
<hr>
|
2357
|
+
<div class="refsect2" title="pango_attr_iterator_get_font ()">
|
2358
|
+
<a name="pango-attr-iterator-get-font"></a><h3>pango_attr_iterator_get_font ()</h3>
|
2359
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attr_iterator_get_font (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator,
|
2360
|
+
<a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="returnvalue">PangoFontDescription</span></a> *desc,
|
2361
|
+
<a class="link" href="pango-Scripts-and-Languages.html#PangoLanguage" title="PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> **language,
|
2362
|
+
<a href="/usr/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="returnvalue">GSList</span></a> **extra_attrs);</pre>
|
2363
|
+
<p>
|
2364
|
+
Get the font and other attributes at the current iterator position.</p>
|
2365
|
+
<div class="variablelist"><table border="0">
|
2366
|
+
<col align="left" valign="top">
|
2367
|
+
<tbody>
|
2368
|
+
<tr>
|
2369
|
+
<td><p><span class="term"><em class="parameter"><code>iterator</code></em> :</span></p></td>
|
2370
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a>
|
2371
|
+
</td>
|
2372
|
+
</tr>
|
2373
|
+
<tr>
|
2374
|
+
<td><p><span class="term"><em class="parameter"><code>desc</code></em> :</span></p></td>
|
2375
|
+
<td> a <a class="link" href="pango-Fonts.html#PangoFontDescription" title="PangoFontDescription"><span class="type">PangoFontDescription</span></a> to fill in with the current values.
|
2376
|
+
The family name in this structure will be set using
|
2377
|
+
<a class="link" href="pango-Fonts.html#pango-font-description-set-family-static" title="pango_font_description_set_family_static ()"><code class="function">pango_font_description_set_family_static()</code></a> using values from
|
2378
|
+
an attribute in the <a class="link" href="pango-Text-Attributes.html#PangoAttrList" title="PangoAttrList"><span class="type">PangoAttrList</span></a> associated with the iterator,
|
2379
|
+
so if you plan to keep it around, you must call:
|
2380
|
+
<code class="literal">pango_font_description_set_family (desc, pango_font_description_get_family (desc))</code>.
|
2381
|
+
</td>
|
2382
|
+
</tr>
|
2383
|
+
<tr>
|
2384
|
+
<td><p><span class="term"><em class="parameter"><code>language</code></em> :</span></p></td>
|
2385
|
+
<td> if non-<a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, location to store language tag for item, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
2386
|
+
if none is found.
|
2387
|
+
</td>
|
2388
|
+
</tr>
|
2389
|
+
<tr>
|
2390
|
+
<td><p><span class="term"><em class="parameter"><code>extra_attrs</code></em> :</span></p></td>
|
2391
|
+
<td>element type Pango.Attribute): (transfer full. element type Pango.Attribute): (transfer full</td>
|
2392
|
+
</tr>
|
2393
|
+
</tbody>
|
2394
|
+
</table></div>
|
2395
|
+
</div>
|
2396
|
+
<hr>
|
2397
|
+
<div class="refsect2" title="pango_attr_iterator_get_attrs ()">
|
2398
|
+
<a name="pango-attr-iterator-get-attrs"></a><h3>pango_attr_iterator_get_attrs ()</h3>
|
2399
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html#GSList"><span class="returnvalue">GSList</span></a> * pango_attr_iterator_get_attrs (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator);</pre>
|
2400
|
+
<p>
|
2401
|
+
Gets a list of all attributes at the current position of the
|
2402
|
+
iterator.</p>
|
2403
|
+
<div class="variablelist"><table border="0">
|
2404
|
+
<col align="left" valign="top">
|
2405
|
+
<tbody>
|
2406
|
+
<tr>
|
2407
|
+
<td><p><span class="term"><em class="parameter"><code>iterator</code></em> :</span></p></td>
|
2408
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a>
|
2409
|
+
</td>
|
2410
|
+
</tr>
|
2411
|
+
<tr>
|
2412
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2413
|
+
<td>element-type Pango.Attribute): (transfer full. <a href="http://foldoc.doc.ic.ac.uk/foldoc/foldoc.cgi?query=element-type"><span class="acronym">element-type</span></a> Pango.Attribute): (transfer full. </td>
|
2414
|
+
</tr>
|
2415
|
+
</tbody>
|
2416
|
+
</table></div>
|
2417
|
+
<p class="since">Since 1.2</p>
|
2418
|
+
</div>
|
2419
|
+
<hr>
|
2420
|
+
<div class="refsect2" title="pango_attr_iterator_destroy ()">
|
2421
|
+
<a name="pango-attr-iterator-destroy"></a><h3>pango_attr_iterator_destroy ()</h3>
|
2422
|
+
<pre class="programlisting"><span class="returnvalue">void</span> pango_attr_iterator_destroy (<a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="returnvalue">PangoAttrIterator</span></a> *iterator);</pre>
|
2423
|
+
<p>
|
2424
|
+
Destroy a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a> and free all associated memory.</p>
|
2425
|
+
<div class="variablelist"><table border="0">
|
2426
|
+
<col align="left" valign="top">
|
2427
|
+
<tbody><tr>
|
2428
|
+
<td><p><span class="term"><em class="parameter"><code>iterator</code></em> :</span></p></td>
|
2429
|
+
<td> a <a class="link" href="pango-Text-Attributes.html#PangoAttrIterator" title="PangoAttrIterator"><span class="type">PangoAttrIterator</span></a>.
|
2430
|
+
</td>
|
2431
|
+
</tr></tbody>
|
2432
|
+
</table></div>
|
2433
|
+
</div>
|
2434
|
+
</div>
|
2435
|
+
</div>
|
2436
|
+
<div class="footer">
|
2437
|
+
<hr>
|
2438
|
+
Generated by GTK-Doc V1.13</div>
|
2439
|
+
</body>
|
2440
|
+
</html>
|