gio2 0.90.3-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +60 -0
- data/README +34 -0
- data/Rakefile +76 -0
- data/ext/gio2/depend +5 -0
- data/ext/gio2/extconf.rb +91 -0
- data/ext/gio2/gappinfo.c +318 -0
- data/ext/gio2/gapplaunchcontext.c +79 -0
- data/ext/gio2/gasyncinitable.c +244 -0
- data/ext/gio2/gasyncresult.c +39 -0
- data/ext/gio2/gbufferedinputstream.c +184 -0
- data/ext/gio2/gbufferedoutputstream.c +82 -0
- data/ext/gio2/gcancellable.c +177 -0
- data/ext/gio2/gcharsetconverter.c +72 -0
- data/ext/gio2/gcontenttype.c +135 -0
- data/ext/gio2/gconverter.c +117 -0
- data/ext/gio2/gconverterinputstream.c +48 -0
- data/ext/gio2/gconverteroutputstream.c +48 -0
- data/ext/gio2/gdatainputstream.c +341 -0
- data/ext/gio2/gdataoutputstream.c +202 -0
- data/ext/gio2/gdesktopappinfo.c +90 -0
- data/ext/gio2/gdrive.c +267 -0
- data/ext/gio2/gemblem.c +71 -0
- data/ext/gio2/gemblemedicon.c +63 -0
- data/ext/gio2/gfile.c +2058 -0
- data/ext/gio2/gfileattribute.c +263 -0
- data/ext/gio2/gfileattributematcher.c +90 -0
- data/ext/gio2/gfiledescriptorbased.c +42 -0
- data/ext/gio2/gfileenumerator.c +167 -0
- data/ext/gio2/gfileicon.c +46 -0
- data/ext/gio2/gfileinfo.c +641 -0
- data/ext/gio2/gfileinputstream.c +92 -0
- data/ext/gio2/gfileiostream.c +98 -0
- data/ext/gio2/gfilemonitor.c +63 -0
- data/ext/gio2/gfilenamecompleter.c +72 -0
- data/ext/gio2/gfileoutputstream.c +100 -0
- data/ext/gio2/gfilterinputstream.c +56 -0
- data/ext/gio2/gfilteroutputstream.c +56 -0
- data/ext/gio2/gicon.c +69 -0
- data/ext/gio2/ginetaddress.c +188 -0
- data/ext/gio2/ginetsocketaddress.c +54 -0
- data/ext/gio2/ginitable.c +195 -0
- data/ext/gio2/ginputstream.c +341 -0
- data/ext/gio2/gio2.c +120 -0
- data/ext/gio2/gio2.def +2 -0
- data/ext/gio2/gio2.h +343 -0
- data/ext/gio2/gioerror.c +67 -0
- data/ext/gio2/giomodule.c +63 -0
- data/ext/gio2/gioscheduler.c +195 -0
- data/ext/gio2/giostream.c +129 -0
- data/ext/gio2/gloadableicon.c +91 -0
- data/ext/gio2/gmemoryinputstream.c +65 -0
- data/ext/gio2/gmemoryoutputstream.c +65 -0
- data/ext/gio2/gmount.c +283 -0
- data/ext/gio2/gmountoperation.c +168 -0
- data/ext/gio2/gnetworkaddress.c +71 -0
- data/ext/gio2/gnetworkservice.c +64 -0
- data/ext/gio2/goutputstream.c +343 -0
- data/ext/gio2/gresolver.c +230 -0
- data/ext/gio2/gseekable.c +89 -0
- data/ext/gio2/gsimpleasyncresult.c +153 -0
- data/ext/gio2/gsocket.c +451 -0
- data/ext/gio2/gsocketaddress.c +45 -0
- data/ext/gio2/gsocketclient.c +273 -0
- data/ext/gio2/gsocketconnectable.c +97 -0
- data/ext/gio2/gsocketconnection.c +82 -0
- data/ext/gio2/gsocketcontrolmessage.c +82 -0
- data/ext/gio2/gsocketlistener.c +239 -0
- data/ext/gio2/gsocketservice.c +64 -0
- data/ext/gio2/gsrvtarget.c +77 -0
- data/ext/gio2/gtcpconnection.c +48 -0
- data/ext/gio2/gthemedicon.c +86 -0
- data/ext/gio2/gthreadedsocketservice.c +39 -0
- data/ext/gio2/gunixconnection.c +69 -0
- data/ext/gio2/gunixfdlist.c +112 -0
- data/ext/gio2/gunixfdmessage.c +81 -0
- data/ext/gio2/gunixinputstream.c +73 -0
- data/ext/gio2/gunixmounts.c +346 -0
- data/ext/gio2/gunixoutputstream.c +73 -0
- data/ext/gio2/gunixsocketaddress.c +79 -0
- data/ext/gio2/gvfs.c +84 -0
- data/ext/gio2/gvolume.c +191 -0
- data/ext/gio2/gvolumemonitor.c +77 -0
- data/ext/gio2/gzlibcompressor.c +47 -0
- data/ext/gio2/gzlibdecompressor.c +43 -0
- data/ext/gio2/util.c +323 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gio2.so +0 -0
- data/lib/1.9/gio2.so +0 -0
- data/lib/gio2.rb +141 -0
- data/vendor/local/bin/envsubst.exe +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 +537 -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/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/ngettext.exe +0 -0
- data/vendor/local/include/autosprintf.h +66 -0
- data/vendor/local/include/glib-2.0/gio/gappinfo.h +236 -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 +81 -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 +79 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gcredentials.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +150 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +46 -0
- data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +562 -0
- data/vendor/local/include/glib-2.0/gio/gdbuserror.h +100 -0
- data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +286 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +149 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +73 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +112 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +94 -0
- data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gdbusserver.h +54 -0
- data/vendor/local/include/glib-2.0/gio/gdbusutils.h +44 -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 +132 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +952 -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 +122 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +1221 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +121 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +52 -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 +375 -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 +98 -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 +73 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +71 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
- data/vendor/local/include/glib-2.0/gio/gpermission.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gproxy.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +96 -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/gsettings.h +258 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +138 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +194 -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 +152 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +74 -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 +150 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +57 -0
- data/vendor/local/include/glib-2.0/glib-object.h +42 -0
- data/vendor/local/include/glib-2.0/glib.h +99 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +110 -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 +105 -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 +215 -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 +81 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +162 -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/gdatetime.h +217 -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 +266 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +284 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +531 -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 +309 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +290 -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 +117 -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 +471 -0
- data/vendor/local/include/glib-2.0/glib/grel.h +101 -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 +147 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +269 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +297 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +407 -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/gtimezone.h +44 -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 +421 -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 +248 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +334 -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/gbinding.h +136 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +248 -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 +186 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +567 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +193 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +415 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1137 -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 +1736 -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 +227 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +260 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/lib/GNU.Gettext.dll +0 -0
- data/vendor/local/lib/gio-2.0.def +1143 -0
- data/vendor/local/lib/gio-2.0.lib +0 -0
- data/vendor/local/lib/glib-2.0.def +1452 -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 +370 -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/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/pkgconfig/gio-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -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/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-dev_2.26.0-2_win32.mft +570 -0
- data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
- data/vendor/local/manifest/glib_2.26.0-2_win32.mft +102 -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/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-2.26.0/COPYING +482 -0
- data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/glib-dev-2.26.0/COPYING +482 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +249 -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 +279 -0
- data/vendor/local/share/glib-2.0/schemas/gschema.dtd +60 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1403 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +733 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +563 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +291 -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 +423 -0
- data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +398 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +254 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +6211 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +1833 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +618 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2050 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +1124 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1215 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +540 -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 +7462 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +120 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +516 -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 +3144 -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 +188 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +189 -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 +196 -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 +393 -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 +343 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +311 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1012 -0
- data/vendor/local/share/gtk-doc/html/gio/GPermission.html +560 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxy.html +312 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +348 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +301 -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/GSettings.html +2424 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +609 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1193 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2438 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +1292 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +513 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +337 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +275 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +745 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +165 -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/GUnixConnection.html +298 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +222 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +389 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +288 -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 +491 -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 +705 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +252 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +170 -0
- data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +65 -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 +1084 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +223 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1598 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +112 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +6250 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +207 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +180 -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/ch24.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch25.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch25s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch25s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26.html +57 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s02.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s03.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s04.html +46 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s05.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s06.html +277 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s07.html +95 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27.html +70 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s02.html +130 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s03.html +202 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s04.html +96 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s05.html +823 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s06.html +828 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +109 -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/gdbus-convenience.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus.html +243 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +316 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1117 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +216 -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 +473 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +391 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +908 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +933 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +409 -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-Owning-Bus-Names.html +736 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +909 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +666 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +123 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1736 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2006 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +102 -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 +53 -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 +435 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +2513 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +62 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +69 -0
- data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/settings.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +265 -0
- data/vendor/local/share/gtk-doc/html/gio/tools.html +44 -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/annotation-glossary.html +77 -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 +559 -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 +420 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +359 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +396 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +417 -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 +419 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +8214 -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 +414 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +466 -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 +2056 -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 +1094 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1671 -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 +2045 -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 +1026 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1852 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2201 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +239 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +4278 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1864 -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 +692 -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 +2740 -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 +1033 -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 +748 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1105 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1552 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1468 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +194 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2745 -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 +532 -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 +1282 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1213 -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 +470 -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 +2960 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1291 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1805 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3478 -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 +400 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3448 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +253 -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 +466 -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 +2217 -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 +319 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +118 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2183 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2671 -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 +1288 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +344 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2846 -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 +265 -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/GBinding.html +803 -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/annotation-glossary.html +47 -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 +73 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +201 -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 +2721 -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 +361 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +307 -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 +417 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2412 -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 +1433 -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 +5555 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2875 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4460 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +416 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +260 -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 +762 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +801 -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 +192 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +786 -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 +85 -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 +265 -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/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/kk/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/gettext.1 +69 -0
- data/vendor/local/share/man/man1/glib-genmarshal.1 +312 -0
- data/vendor/local/share/man/man1/glib-mkenums.1 +246 -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/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/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -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/glib_2.26.0-2_win32.log +2867 -0
- data/vendor/local/src/tml/packaging/glib_2.26.0-2_win32.sh +64 -0
- metadata +952 -0
@@ -0,0 +1,121 @@
|
|
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>How to create and use signals</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
+
<link rel="home" href="index.html" title="GObject Reference Manual">
|
8
|
+
<link rel="up" href="pt02.html" title="Part IV. Tutorial">
|
9
|
+
<link rel="prev" href="howto-interface-properties.html" title="Interface Properties">
|
10
|
+
<link rel="next" href="pt03.html" title="Part V. Related Tools">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.15.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
16
|
+
<td><a accesskey="p" href="howto-interface-properties.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
17
|
+
<td><a accesskey="u" href="pt02.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
18
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
19
|
+
<th width="100%" align="center">GObject Reference Manual</th>
|
20
|
+
<td><a accesskey="n" href="pt03.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="chapter">
|
23
|
+
<div class="titlepage"><div><div><h2 class="title">
|
24
|
+
<a name="howto-signals"></a>How to create and use signals</h2></div></div></div>
|
25
|
+
<div class="toc"><dl><dt><span class="sect1"><a href="howto-signals.html#howto-simple-signals">Simple use of signals</a></span></dt></dl></div>
|
26
|
+
<p>
|
27
|
+
The signal system which was built in GType is pretty complex and
|
28
|
+
flexible: it is possible for its users to connect at runtime any
|
29
|
+
number of callbacks (implemented in any language for which a binding
|
30
|
+
exists)
|
31
|
+
<sup>[<a name="id471830" href="#ftn.id471830" class="footnote">14</a>]</sup>
|
32
|
+
to any signal and to stop the emission of any signal at any
|
33
|
+
state of the signal emission process. This flexibility makes it
|
34
|
+
possible to use GSignal for much more than just emit signals which
|
35
|
+
can be received by numerous clients.
|
36
|
+
</p>
|
37
|
+
<div class="sect1">
|
38
|
+
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
|
39
|
+
<a name="howto-simple-signals"></a>Simple use of signals</h2></div></div></div>
|
40
|
+
<p>
|
41
|
+
The most basic use of signals is to implement simple event
|
42
|
+
notification: for example, if we have a MamanFile object, and
|
43
|
+
if this object has a write method, we might wish to be notified
|
44
|
+
whenever someone has changed something via our MamanFile instance.
|
45
|
+
The code below shows how the user can connect a callback to the
|
46
|
+
"changed" signal.
|
47
|
+
</p>
|
48
|
+
<pre class="programlisting">
|
49
|
+
file = g_object_new (MAMAN_FILE_TYPE, NULL);
|
50
|
+
|
51
|
+
g_signal_connect (file, "changed", G_CALLBACK (changed_event), NULL);
|
52
|
+
|
53
|
+
maman_file_write (file, buffer, strlen (buffer));
|
54
|
+
</pre>
|
55
|
+
<p>
|
56
|
+
</p>
|
57
|
+
<p>
|
58
|
+
The <span class="type">MamanFile</span> signal is registered in the class_init
|
59
|
+
function:
|
60
|
+
</p>
|
61
|
+
<pre class="programlisting">
|
62
|
+
file_signals[CHANGED] =
|
63
|
+
g_signal_newv ("changed",
|
64
|
+
G_TYPE_FROM_CLASS (gobject_class),
|
65
|
+
G_SIGNAL_RUN_LAST | G_SIGNAL_NO_RECURSE | G_SIGNAL_NO_HOOKS,
|
66
|
+
NULL /* closure */,
|
67
|
+
NULL /* accumulator */,
|
68
|
+
NULL /* accumulator data */,
|
69
|
+
g_cclosure_marshal_VOID__VOID,
|
70
|
+
G_TYPE_NONE /* return_type */,
|
71
|
+
0 /* n_params */,
|
72
|
+
NULL /* param_types */);
|
73
|
+
</pre>
|
74
|
+
<p>
|
75
|
+
and the signal is emitted in <code class="function">maman_file_write</code>:
|
76
|
+
</p>
|
77
|
+
<pre class="programlisting">
|
78
|
+
void
|
79
|
+
maman_file_write (MamanFile *self,
|
80
|
+
const guchar *buffer,
|
81
|
+
gssize size)
|
82
|
+
{
|
83
|
+
/* First write data. */
|
84
|
+
|
85
|
+
/* Then, notify user of data written. */
|
86
|
+
g_signal_emit (self, file_signals[CHANGED], 0 /* details */);
|
87
|
+
}
|
88
|
+
</pre>
|
89
|
+
<p>
|
90
|
+
As shown above, you can safely set the details parameter to zero if
|
91
|
+
you do not know what it can be used for. For a discussion of what you
|
92
|
+
could used it for, see <a class="xref" href="signal.html#signal-detail" title="The detail argument">the section called “The <span class="emphasis"><em>detail</em></span> argument”</a>
|
93
|
+
</p>
|
94
|
+
<p>
|
95
|
+
The signature of the signal handler in the above example is defined as
|
96
|
+
<code class="function">g_cclosure_marshal_VOID__VOID</code>. Its name follows
|
97
|
+
a simple convention which encodes the function parameter and return value
|
98
|
+
types in the function name. Specifically, the value in front of the
|
99
|
+
double underscore is the type of the return value, while the value(s)
|
100
|
+
after the double underscore denote the parameter types.
|
101
|
+
</p>
|
102
|
+
<p>
|
103
|
+
The header <code class="filename">gobject/gmarshal.h</code> defines a set of
|
104
|
+
commonly needed closures that one can use. If you want to have complex
|
105
|
+
marshallers for your signals you should probably use glib-genmarshal
|
106
|
+
to autogenerate them from a file containing their return and
|
107
|
+
parameter types.
|
108
|
+
</p>
|
109
|
+
</div>
|
110
|
+
<div class="footnotes">
|
111
|
+
<br><hr width="100" align="left">
|
112
|
+
<div class="footnote"><p><sup>[<a name="ftn.id471830" href="#id471830" class="para">14</a>] </sup>A Python callback can be connected to any signal on any
|
113
|
+
C-based GObject.
|
114
|
+
</p></div>
|
115
|
+
</div>
|
116
|
+
</div>
|
117
|
+
<div class="footer">
|
118
|
+
<hr>
|
119
|
+
Generated by GTK-Doc V1.15.1</div>
|
120
|
+
</body>
|
121
|
+
</html>
|
@@ -0,0 +1,192 @@
|
|
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>GObject Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
+
<link rel="home" href="index.html" title="GObject Reference Manual">
|
8
|
+
<link rel="next" href="pr01.html" title="Introduction">
|
9
|
+
<meta name="generator" content="GTK-Doc V1.15.1 (XML mode)">
|
10
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
11
|
+
</head>
|
12
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
13
|
+
<div class="book">
|
14
|
+
<div class="titlepage">
|
15
|
+
<div>
|
16
|
+
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GObject Reference Manual</p></th></tr></table></div>
|
17
|
+
<div><p class="releaseinfo">
|
18
|
+
for GObject 2.26.0
|
19
|
+
|
20
|
+
The latest version of this documentation can be found on-line at
|
21
|
+
<a class="ulink" href="http://library.gnome.org/devel/gobject/unstable/" target="_top">http://library.gnome.org/devel/gobject/unstable/</a>.
|
22
|
+
</p></div>
|
23
|
+
</div>
|
24
|
+
<hr>
|
25
|
+
</div>
|
26
|
+
<div class="toc"><dl>
|
27
|
+
<dt><span class="preface"><a href="pr01.html">Introduction</a></span></dt>
|
28
|
+
<dt><span class="part"><a href="pt01.html">I. Concepts</a></span></dt>
|
29
|
+
<dd><dl>
|
30
|
+
<dt><span class="chapter"><a href="chapter-intro.html">Background</a></span></dt>
|
31
|
+
<dd><dl>
|
32
|
+
<dt><span class="sect1"><a href="chapter-intro.html#id313385">Data types and programming</a></span></dt>
|
33
|
+
<dt><span class="sect1"><a href="ch01s02.html">Exporting a C API</a></span></dt>
|
34
|
+
</dl></dd>
|
35
|
+
<dt><span class="chapter"><a href="chapter-gtype.html">The GLib Dynamic Type System</a></span></dt>
|
36
|
+
<dd><dl>
|
37
|
+
<dt><span class="sect1"><a href="chapter-gtype.html#gtype-copy">Copy functions</a></span></dt>
|
38
|
+
<dt><span class="sect1"><a href="gtype-conventions.html">Conventions</a></span></dt>
|
39
|
+
<dt><span class="sect1"><a href="gtype-non-instantiable.html">Non-instantiable non-classed fundamental types</a></span></dt>
|
40
|
+
<dt><span class="sect1"><a href="gtype-instantiable-classed.html">Instantiable classed types: objects</a></span></dt>
|
41
|
+
<dd><dl><dt><span class="sect2"><a href="gtype-instantiable-classed.html#gtype-instantiable-classed-init-done">Initialization and Destruction</a></span></dt></dl></dd>
|
42
|
+
<dt><span class="sect1"><a href="gtype-non-instantiable-classed.html">Non-instantiable classed types: interfaces</a></span></dt>
|
43
|
+
<dd><dl>
|
44
|
+
<dt><span class="sect2"><a href="gtype-non-instantiable-classed.html#gtype-non-instantiable-classed-init">Interface Initialization</a></span></dt>
|
45
|
+
<dt><span class="sect2"><a href="gtype-non-instantiable-classed.html#gtype-non-instantiable-classed-dest">Interface Destruction</a></span></dt>
|
46
|
+
</dl></dd>
|
47
|
+
</dl></dd>
|
48
|
+
<dt><span class="chapter"><a href="chapter-gobject.html">The GObject base class</a></span></dt>
|
49
|
+
<dd><dl>
|
50
|
+
<dt><span class="sect1"><a href="chapter-gobject.html#gobject-instantiation">Object instantiation</a></span></dt>
|
51
|
+
<dt><span class="sect1"><a href="gobject-memory.html">Object memory management</a></span></dt>
|
52
|
+
<dd><dl>
|
53
|
+
<dt><span class="sect2"><a href="gobject-memory.html#gobject-memory-refcount">Reference count</a></span></dt>
|
54
|
+
<dt><span class="sect2"><a href="gobject-memory.html#gobject-memory-weakref">Weak References</a></span></dt>
|
55
|
+
<dt><span class="sect2"><a href="gobject-memory.html#gobject-memory-cycles">Reference counts and cycles</a></span></dt>
|
56
|
+
</dl></dd>
|
57
|
+
<dt><span class="sect1"><a href="gobject-properties.html">Object properties</a></span></dt>
|
58
|
+
<dd><dl><dt><span class="sect2"><a href="gobject-properties.html#gobject-multi-properties">Accessing multiple properties at once</a></span></dt></dl></dd>
|
59
|
+
</dl></dd>
|
60
|
+
<dt><span class="chapter"><a href="chapter-signal.html">The GObject messaging system</a></span></dt>
|
61
|
+
<dd><dl>
|
62
|
+
<dt><span class="sect1"><a href="chapter-signal.html#closure">Closures</a></span></dt>
|
63
|
+
<dd><dl>
|
64
|
+
<dt><span class="sect2"><a href="chapter-signal.html#id386863">C Closures</a></span></dt>
|
65
|
+
<dt><span class="sect2"><a href="chapter-signal.html#id382891">Non-C closures (for the fearless)</a></span></dt>
|
66
|
+
</dl></dd>
|
67
|
+
<dt><span class="sect1"><a href="signal.html">Signals</a></span></dt>
|
68
|
+
<dd><dl>
|
69
|
+
<dt><span class="sect2"><a href="signal.html#signal-registration">Signal registration</a></span></dt>
|
70
|
+
<dt><span class="sect2"><a href="signal.html#signal-connection">Signal connection</a></span></dt>
|
71
|
+
<dt><span class="sect2"><a href="signal.html#signal-emission">Signal emission</a></span></dt>
|
72
|
+
<dt><span class="sect2"><a href="signal.html#signal-detail">The <span class="emphasis"><em>detail</em></span> argument</a></span></dt>
|
73
|
+
</dl></dd>
|
74
|
+
</dl></dd>
|
75
|
+
</dl></dd>
|
76
|
+
<dt><span class="reference"><a href="rn01.html">II. API Reference</a></span></dt>
|
77
|
+
<dd><dl>
|
78
|
+
<dt>
|
79
|
+
<span class="refentrytitle"><a href="gobject-Type-Information.html">Type Information</a></span><span class="refpurpose"> — The GLib Runtime type identification and
|
80
|
+
management system</span>
|
81
|
+
</dt>
|
82
|
+
<dt>
|
83
|
+
<span class="refentrytitle"><a href="GTypePlugin.html">GTypePlugin</a></span><span class="refpurpose"> — An interface for dynamically loadable types</span>
|
84
|
+
</dt>
|
85
|
+
<dt>
|
86
|
+
<span class="refentrytitle"><a href="GTypeModule.html">GTypeModule</a></span><span class="refpurpose"> — Type loading modules</span>
|
87
|
+
</dt>
|
88
|
+
<dt>
|
89
|
+
<span class="refentrytitle"><a href="gobject-The-Base-Object-Type.html">The Base Object Type</a></span><span class="refpurpose"> — The base object type</span>
|
90
|
+
</dt>
|
91
|
+
<dt>
|
92
|
+
<span class="refentrytitle"><a href="gobject-Enumeration-and-Flag-Types.html">Enumeration and Flag Types</a></span><span class="refpurpose"> — Enumeration and flags types</span>
|
93
|
+
</dt>
|
94
|
+
<dt>
|
95
|
+
<span class="refentrytitle"><a href="gobject-Boxed-Types.html">Boxed Types</a></span><span class="refpurpose"> — A mechanism to wrap opaque C structures registered
|
96
|
+
by the type system</span>
|
97
|
+
</dt>
|
98
|
+
<dt>
|
99
|
+
<span class="refentrytitle"><a href="gobject-Generic-values.html">Generic values</a></span><span class="refpurpose"> — A polymorphic type that can hold values of any
|
100
|
+
other type</span>
|
101
|
+
</dt>
|
102
|
+
<dt>
|
103
|
+
<span class="refentrytitle"><a href="gobject-Standard-Parameter-and-Value-Types.html">Parameters and Values</a></span><span class="refpurpose"> — Standard Parameter and Value Types</span>
|
104
|
+
</dt>
|
105
|
+
<dt>
|
106
|
+
<span class="refentrytitle"><a href="gobject-GParamSpec.html">GParamSpec</a></span><span class="refpurpose"> — Metadata for parameter specifications</span>
|
107
|
+
</dt>
|
108
|
+
<dt>
|
109
|
+
<span class="refentrytitle"><a href="gobject-Varargs-Value-Collection.html">Varargs Value Collection</a></span><span class="refpurpose"> — Converting varargs to generic values</span>
|
110
|
+
</dt>
|
111
|
+
<dt>
|
112
|
+
<span class="refentrytitle"><a href="gobject-Signals.html">Signals</a></span><span class="refpurpose"> — A means for customization of object behaviour
|
113
|
+
and a general purpose notification mechanism</span>
|
114
|
+
</dt>
|
115
|
+
<dt>
|
116
|
+
<span class="refentrytitle"><a href="gobject-Closures.html">Closures</a></span><span class="refpurpose"> — Functions as first-class objects</span>
|
117
|
+
</dt>
|
118
|
+
<dt>
|
119
|
+
<span class="refentrytitle"><a href="gobject-Value-arrays.html">Value arrays</a></span><span class="refpurpose"> — A container structure to maintain an array of
|
120
|
+
generic values</span>
|
121
|
+
</dt>
|
122
|
+
<dt>
|
123
|
+
<span class="refentrytitle"><a href="GBinding.html">GBinding</a></span><span class="refpurpose"> — Bind two object properties</span>
|
124
|
+
</dt>
|
125
|
+
</dl></dd>
|
126
|
+
<dt><span class="reference"><a href="rn02.html">III. Tools Reference</a></span></dt>
|
127
|
+
<dd><dl>
|
128
|
+
<dt>
|
129
|
+
<span class="refentrytitle"><a href="glib-mkenums.html">glib-mkenums</a></span><span class="refpurpose"> — C language enum description generation utility</span>
|
130
|
+
</dt>
|
131
|
+
<dt>
|
132
|
+
<span class="refentrytitle"><a href="glib-genmarshal.html">glib-genmarshal</a></span><span class="refpurpose"> — C code marshaller generation utility for GLib closures</span>
|
133
|
+
</dt>
|
134
|
+
<dt>
|
135
|
+
<span class="refentrytitle"><a href="gobject-query.html">gobject-query</a></span><span class="refpurpose"> — display a tree of types</span>
|
136
|
+
</dt>
|
137
|
+
</dl></dd>
|
138
|
+
<dt><span class="part"><a href="pt02.html">IV. Tutorial</a></span></dt>
|
139
|
+
<dd><dl>
|
140
|
+
<dt><span class="chapter"><a href="howto-gobject.html">How to define and implement a new GObject</a></span></dt>
|
141
|
+
<dd><dl>
|
142
|
+
<dt><span class="sect1"><a href="howto-gobject.html#howto-gobject-header">Boilerplate header code</a></span></dt>
|
143
|
+
<dt><span class="sect1"><a href="howto-gobject-code.html">Boilerplate code</a></span></dt>
|
144
|
+
<dt><span class="sect1"><a href="howto-gobject-construction.html">Object Construction</a></span></dt>
|
145
|
+
<dt><span class="sect1"><a href="howto-gobject-destruction.html">Object Destruction</a></span></dt>
|
146
|
+
<dt><span class="sect1"><a href="howto-gobject-methods.html">Object methods</a></span></dt>
|
147
|
+
<dd><dl>
|
148
|
+
<dt><span class="sect2"><a href="howto-gobject-methods.html#id458520">Non-virtual public methods</a></span></dt>
|
149
|
+
<dt><span class="sect2"><a href="howto-gobject-methods.html#id458545">Virtual public methods</a></span></dt>
|
150
|
+
<dt><span class="sect2"><a href="howto-gobject-methods.html#id458629">Virtual private Methods</a></span></dt>
|
151
|
+
</dl></dd>
|
152
|
+
<dt><span class="sect1"><a href="howto-gobject-chainup.html">Chaining up</a></span></dt>
|
153
|
+
</dl></dd>
|
154
|
+
<dt><span class="chapter"><a href="howto-interface.html">How to define and implement interfaces</a></span></dt>
|
155
|
+
<dd><dl>
|
156
|
+
<dt><span class="sect1"><a href="howto-interface.html#howto-interface-define">How to define interfaces</a></span></dt>
|
157
|
+
<dt><span class="sect1"><a href="howto-interface-implement.html">How To define implement an Interface?</a></span></dt>
|
158
|
+
<dt><span class="sect1"><a href="ch06s03.html">Interface definition prerequisites</a></span></dt>
|
159
|
+
<dt><span class="sect1"><a href="howto-interface-properties.html">Interface Properties</a></span></dt>
|
160
|
+
</dl></dd>
|
161
|
+
<dt><span class="chapter"><a href="howto-signals.html">How to create and use signals</a></span></dt>
|
162
|
+
<dd><dl><dt><span class="sect1"><a href="howto-signals.html#howto-simple-signals">Simple use of signals</a></span></dt></dl></dd>
|
163
|
+
</dl></dd>
|
164
|
+
<dt><span class="part"><a href="pt03.html">V. Related Tools</a></span></dt>
|
165
|
+
<dd><dl>
|
166
|
+
<dt><span class="chapter"><a href="tools-vala.html">Vala</a></span></dt>
|
167
|
+
<dt><span class="chapter"><a href="tools-gob.html">GObject builder</a></span></dt>
|
168
|
+
<dt><span class="chapter"><a href="tools-ginspector.html">Graphical inspection of GObjects</a></span></dt>
|
169
|
+
<dt><span class="chapter"><a href="tools-refdb.html">Debugging reference count problems</a></span></dt>
|
170
|
+
<dt><span class="chapter"><a href="tools-gtkdoc.html">Writing API docs</a></span></dt>
|
171
|
+
</dl></dd>
|
172
|
+
<dt><span class="index"><a href="api-index-full.html">Index</a></span></dt>
|
173
|
+
<dt><span class="index"><a href="api-index-deprecated.html">Index of deprecated symbols</a></span></dt>
|
174
|
+
<dt><span class="index"><a href="api-index-2-2.html">Index of new symbols in 2.2</a></span></dt>
|
175
|
+
<dt><span class="index"><a href="api-index-2-4.html">Index of new symbols in 2.4</a></span></dt>
|
176
|
+
<dt><span class="index"><a href="api-index-2-6.html">Index of new symbols in 2.6</a></span></dt>
|
177
|
+
<dt><span class="index"><a href="api-index-2-8.html">Index of new symbols in 2.8</a></span></dt>
|
178
|
+
<dt><span class="index"><a href="api-index-2-10.html">Index of new symbols in 2.10</a></span></dt>
|
179
|
+
<dt><span class="index"><a href="api-index-2-12.html">Index of new symbols in 2.12</a></span></dt>
|
180
|
+
<dt><span class="index"><a href="api-index-2-14.html">Index of new symbols in 2.14</a></span></dt>
|
181
|
+
<dt><span class="index"><a href="api-index-2-18.html">Index of new symbols in 2.18</a></span></dt>
|
182
|
+
<dt><span class="index"><a href="api-index-2-22.html">Index of new symbols in 2.22</a></span></dt>
|
183
|
+
<dt><span class="index"><a href="api-index-2-24.html">Index of new symbols in 2.24</a></span></dt>
|
184
|
+
<dt><span class="index"><a href="api-index-2-26.html">Index of new symbols in 2.26</a></span></dt>
|
185
|
+
<dt><span class="glossary"><a href="annotation-glossary.html">Annotation Glossary</a></span></dt>
|
186
|
+
</dl></div>
|
187
|
+
</div>
|
188
|
+
<div class="footer">
|
189
|
+
<hr>
|
190
|
+
Generated by GTK-Doc V1.15.1</div>
|
191
|
+
</body>
|
192
|
+
</html>
|
@@ -0,0 +1,786 @@
|
|
1
|
+
<ONLINE href="http://library.gnome.org/devel/gobject/unstable/">
|
2
|
+
<ANCHOR id="gobject-Type-Information" href="gobject/gobject-Type-Information.html">
|
3
|
+
<ANCHOR id="gobject-Type-Information.synopsis" href="gobject/gobject-Type-Information.html#gobject-Type-Information.synopsis">
|
4
|
+
<ANCHOR id="gobject-Type-Information.description" href="gobject/gobject-Type-Information.html#gobject-Type-Information.description">
|
5
|
+
<ANCHOR id="gobject-Type-Information.details" href="gobject/gobject-Type-Information.html#gobject-Type-Information.details">
|
6
|
+
<ANCHOR id="GType" href="gobject/gobject-Type-Information.html#GType">
|
7
|
+
<ANCHOR id="G-TYPE-FUNDAMENTAL:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FUNDAMENTAL:CAPS">
|
8
|
+
<ANCHOR id="G-TYPE-FUNDAMENTAL-MAX:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FUNDAMENTAL-MAX:CAPS">
|
9
|
+
<ANCHOR id="G-TYPE-MAKE-FUNDAMENTAL:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-MAKE-FUNDAMENTAL:CAPS">
|
10
|
+
<ANCHOR id="G-TYPE-IS-ABSTRACT:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-IS-ABSTRACT:CAPS">
|
11
|
+
<ANCHOR id="G-TYPE-IS-DERIVED:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-IS-DERIVED:CAPS">
|
12
|
+
<ANCHOR id="G-TYPE-IS-FUNDAMENTAL:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-IS-FUNDAMENTAL:CAPS">
|
13
|
+
<ANCHOR id="G-TYPE-IS-VALUE-TYPE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-IS-VALUE-TYPE:CAPS">
|
14
|
+
<ANCHOR id="G-TYPE-HAS-VALUE-TABLE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-HAS-VALUE-TABLE:CAPS">
|
15
|
+
<ANCHOR id="G-TYPE-IS-CLASSED:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-IS-CLASSED:CAPS">
|
16
|
+
<ANCHOR id="G-TYPE-IS-INSTANTIATABLE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-IS-INSTANTIATABLE:CAPS">
|
17
|
+
<ANCHOR id="G-TYPE-IS-DERIVABLE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-IS-DERIVABLE:CAPS">
|
18
|
+
<ANCHOR id="G-TYPE-IS-DEEP-DERIVABLE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-IS-DEEP-DERIVABLE:CAPS">
|
19
|
+
<ANCHOR id="G-TYPE-IS-INTERFACE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-IS-INTERFACE:CAPS">
|
20
|
+
<ANCHOR id="GTypeInterface" href="gobject/gobject-Type-Information.html#GTypeInterface">
|
21
|
+
<ANCHOR id="GTypeInstance" href="gobject/gobject-Type-Information.html#GTypeInstance">
|
22
|
+
<ANCHOR id="GTypeClass" href="gobject/gobject-Type-Information.html#GTypeClass">
|
23
|
+
<ANCHOR id="GTypeInfo" href="gobject/gobject-Type-Information.html#GTypeInfo">
|
24
|
+
<ANCHOR id="GTypeFundamentalInfo" href="gobject/gobject-Type-Information.html#GTypeFundamentalInfo">
|
25
|
+
<ANCHOR id="GInterfaceInfo" href="gobject/gobject-Type-Information.html#GInterfaceInfo">
|
26
|
+
<ANCHOR id="GTypeValueTable" href="gobject/gobject-Type-Information.html#GTypeValueTable">
|
27
|
+
<ANCHOR id="G-TYPE-FROM-INSTANCE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FROM-INSTANCE:CAPS">
|
28
|
+
<ANCHOR id="G-TYPE-FROM-CLASS:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FROM-CLASS:CAPS">
|
29
|
+
<ANCHOR id="G-TYPE-FROM-INTERFACE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FROM-INTERFACE:CAPS">
|
30
|
+
<ANCHOR id="G-TYPE-INSTANCE-GET-CLASS:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-INSTANCE-GET-CLASS:CAPS">
|
31
|
+
<ANCHOR id="G-TYPE-INSTANCE-GET-INTERFACE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-INSTANCE-GET-INTERFACE:CAPS">
|
32
|
+
<ANCHOR id="G-TYPE-INSTANCE-GET-PRIVATE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-INSTANCE-GET-PRIVATE:CAPS">
|
33
|
+
<ANCHOR id="G-TYPE-CLASS-GET-PRIVATE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-CLASS-GET-PRIVATE:CAPS">
|
34
|
+
<ANCHOR id="G-TYPE-CHECK-INSTANCE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-CHECK-INSTANCE:CAPS">
|
35
|
+
<ANCHOR id="G-TYPE-CHECK-INSTANCE-CAST:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-CHECK-INSTANCE-CAST:CAPS">
|
36
|
+
<ANCHOR id="G-TYPE-CHECK-INSTANCE-TYPE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-CHECK-INSTANCE-TYPE:CAPS">
|
37
|
+
<ANCHOR id="G-TYPE-CHECK-CLASS-CAST:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-CHECK-CLASS-CAST:CAPS">
|
38
|
+
<ANCHOR id="G-TYPE-CHECK-CLASS-TYPE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-CHECK-CLASS-TYPE:CAPS">
|
39
|
+
<ANCHOR id="G-TYPE-CHECK-VALUE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-CHECK-VALUE:CAPS">
|
40
|
+
<ANCHOR id="G-TYPE-CHECK-VALUE-TYPE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-CHECK-VALUE-TYPE:CAPS">
|
41
|
+
<ANCHOR id="G-TYPE-FLAG-RESERVED-ID-BIT:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FLAG-RESERVED-ID-BIT:CAPS">
|
42
|
+
<ANCHOR id="g-type-init" href="gobject/gobject-Type-Information.html#g-type-init">
|
43
|
+
<ANCHOR id="GTypeDebugFlags" href="gobject/gobject-Type-Information.html#GTypeDebugFlags">
|
44
|
+
<ANCHOR id="G-TYPE-DEBUG-NONE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-DEBUG-NONE:CAPS">
|
45
|
+
<ANCHOR id="G-TYPE-DEBUG-OBJECTS:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-DEBUG-OBJECTS:CAPS">
|
46
|
+
<ANCHOR id="G-TYPE-DEBUG-SIGNALS:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-DEBUG-SIGNALS:CAPS">
|
47
|
+
<ANCHOR id="G-TYPE-DEBUG-MASK:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-DEBUG-MASK:CAPS">
|
48
|
+
<ANCHOR id="g-type-init-with-debug-flags" href="gobject/gobject-Type-Information.html#g-type-init-with-debug-flags">
|
49
|
+
<ANCHOR id="g-type-name" href="gobject/gobject-Type-Information.html#g-type-name">
|
50
|
+
<ANCHOR id="g-type-qname" href="gobject/gobject-Type-Information.html#g-type-qname">
|
51
|
+
<ANCHOR id="g-type-from-name" href="gobject/gobject-Type-Information.html#g-type-from-name">
|
52
|
+
<ANCHOR id="g-type-parent" href="gobject/gobject-Type-Information.html#g-type-parent">
|
53
|
+
<ANCHOR id="g-type-depth" href="gobject/gobject-Type-Information.html#g-type-depth">
|
54
|
+
<ANCHOR id="g-type-next-base" href="gobject/gobject-Type-Information.html#g-type-next-base">
|
55
|
+
<ANCHOR id="g-type-is-a" href="gobject/gobject-Type-Information.html#g-type-is-a">
|
56
|
+
<ANCHOR id="g-type-class-ref" href="gobject/gobject-Type-Information.html#g-type-class-ref">
|
57
|
+
<ANCHOR id="g-type-class-peek" href="gobject/gobject-Type-Information.html#g-type-class-peek">
|
58
|
+
<ANCHOR id="g-type-class-peek-static" href="gobject/gobject-Type-Information.html#g-type-class-peek-static">
|
59
|
+
<ANCHOR id="g-type-class-unref" href="gobject/gobject-Type-Information.html#g-type-class-unref">
|
60
|
+
<ANCHOR id="g-type-class-peek-parent" href="gobject/gobject-Type-Information.html#g-type-class-peek-parent">
|
61
|
+
<ANCHOR id="g-type-class-add-private" href="gobject/gobject-Type-Information.html#g-type-class-add-private">
|
62
|
+
<ANCHOR id="g-type-add-class-private" href="gobject/gobject-Type-Information.html#g-type-add-class-private">
|
63
|
+
<ANCHOR id="g-type-interface-peek" href="gobject/gobject-Type-Information.html#g-type-interface-peek">
|
64
|
+
<ANCHOR id="g-type-interface-peek-parent" href="gobject/gobject-Type-Information.html#g-type-interface-peek-parent">
|
65
|
+
<ANCHOR id="g-type-default-interface-ref" href="gobject/gobject-Type-Information.html#g-type-default-interface-ref">
|
66
|
+
<ANCHOR id="g-type-default-interface-peek" href="gobject/gobject-Type-Information.html#g-type-default-interface-peek">
|
67
|
+
<ANCHOR id="g-type-default-interface-unref" href="gobject/gobject-Type-Information.html#g-type-default-interface-unref">
|
68
|
+
<ANCHOR id="g-type-children" href="gobject/gobject-Type-Information.html#g-type-children">
|
69
|
+
<ANCHOR id="g-type-interfaces" href="gobject/gobject-Type-Information.html#g-type-interfaces">
|
70
|
+
<ANCHOR id="g-type-interface-prerequisites" href="gobject/gobject-Type-Information.html#g-type-interface-prerequisites">
|
71
|
+
<ANCHOR id="g-type-set-qdata" href="gobject/gobject-Type-Information.html#g-type-set-qdata">
|
72
|
+
<ANCHOR id="g-type-get-qdata" href="gobject/gobject-Type-Information.html#g-type-get-qdata">
|
73
|
+
<ANCHOR id="g-type-query" href="gobject/gobject-Type-Information.html#g-type-query">
|
74
|
+
<ANCHOR id="GTypeQuery" href="gobject/gobject-Type-Information.html#GTypeQuery">
|
75
|
+
<ANCHOR id="GBaseInitFunc" href="gobject/gobject-Type-Information.html#GBaseInitFunc">
|
76
|
+
<ANCHOR id="GBaseFinalizeFunc" href="gobject/gobject-Type-Information.html#GBaseFinalizeFunc">
|
77
|
+
<ANCHOR id="GClassInitFunc" href="gobject/gobject-Type-Information.html#GClassInitFunc">
|
78
|
+
<ANCHOR id="GClassFinalizeFunc" href="gobject/gobject-Type-Information.html#GClassFinalizeFunc">
|
79
|
+
<ANCHOR id="GInstanceInitFunc" href="gobject/gobject-Type-Information.html#GInstanceInitFunc">
|
80
|
+
<ANCHOR id="GInterfaceInitFunc" href="gobject/gobject-Type-Information.html#GInterfaceInitFunc">
|
81
|
+
<ANCHOR id="GInterfaceFinalizeFunc" href="gobject/gobject-Type-Information.html#GInterfaceFinalizeFunc">
|
82
|
+
<ANCHOR id="GTypeClassCacheFunc" href="gobject/gobject-Type-Information.html#GTypeClassCacheFunc">
|
83
|
+
<ANCHOR id="GTypeFlags" href="gobject/gobject-Type-Information.html#GTypeFlags">
|
84
|
+
<ANCHOR id="G-TYPE-FLAG-ABSTRACT:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FLAG-ABSTRACT:CAPS">
|
85
|
+
<ANCHOR id="G-TYPE-FLAG-VALUE-ABSTRACT:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FLAG-VALUE-ABSTRACT:CAPS">
|
86
|
+
<ANCHOR id="GTypeFundamentalFlags" href="gobject/gobject-Type-Information.html#GTypeFundamentalFlags">
|
87
|
+
<ANCHOR id="G-TYPE-FLAG-CLASSED:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FLAG-CLASSED:CAPS">
|
88
|
+
<ANCHOR id="G-TYPE-FLAG-INSTANTIATABLE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FLAG-INSTANTIATABLE:CAPS">
|
89
|
+
<ANCHOR id="G-TYPE-FLAG-DERIVABLE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FLAG-DERIVABLE:CAPS">
|
90
|
+
<ANCHOR id="G-TYPE-FLAG-DEEP-DERIVABLE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FLAG-DEEP-DERIVABLE:CAPS">
|
91
|
+
<ANCHOR id="g-type-register-static" href="gobject/gobject-Type-Information.html#g-type-register-static">
|
92
|
+
<ANCHOR id="g-type-register-static-simple" href="gobject/gobject-Type-Information.html#g-type-register-static-simple">
|
93
|
+
<ANCHOR id="g-type-register-dynamic" href="gobject/gobject-Type-Information.html#g-type-register-dynamic">
|
94
|
+
<ANCHOR id="g-type-register-fundamental" href="gobject/gobject-Type-Information.html#g-type-register-fundamental">
|
95
|
+
<ANCHOR id="g-type-add-interface-static" href="gobject/gobject-Type-Information.html#g-type-add-interface-static">
|
96
|
+
<ANCHOR id="g-type-add-interface-dynamic" href="gobject/gobject-Type-Information.html#g-type-add-interface-dynamic">
|
97
|
+
<ANCHOR id="g-type-interface-add-prerequisite" href="gobject/gobject-Type-Information.html#g-type-interface-add-prerequisite">
|
98
|
+
<ANCHOR id="g-type-get-plugin" href="gobject/gobject-Type-Information.html#g-type-get-plugin">
|
99
|
+
<ANCHOR id="g-type-interface-get-plugin" href="gobject/gobject-Type-Information.html#g-type-interface-get-plugin">
|
100
|
+
<ANCHOR id="g-type-fundamental-next" href="gobject/gobject-Type-Information.html#g-type-fundamental-next">
|
101
|
+
<ANCHOR id="g-type-fundamental" href="gobject/gobject-Type-Information.html#g-type-fundamental">
|
102
|
+
<ANCHOR id="g-type-create-instance" href="gobject/gobject-Type-Information.html#g-type-create-instance">
|
103
|
+
<ANCHOR id="g-type-free-instance" href="gobject/gobject-Type-Information.html#g-type-free-instance">
|
104
|
+
<ANCHOR id="g-type-add-class-cache-func" href="gobject/gobject-Type-Information.html#g-type-add-class-cache-func">
|
105
|
+
<ANCHOR id="g-type-remove-class-cache-func" href="gobject/gobject-Type-Information.html#g-type-remove-class-cache-func">
|
106
|
+
<ANCHOR id="g-type-class-unref-uncached" href="gobject/gobject-Type-Information.html#g-type-class-unref-uncached">
|
107
|
+
<ANCHOR id="g-type-add-interface-check" href="gobject/gobject-Type-Information.html#g-type-add-interface-check">
|
108
|
+
<ANCHOR id="g-type-remove-interface-check" href="gobject/gobject-Type-Information.html#g-type-remove-interface-check">
|
109
|
+
<ANCHOR id="GTypeInterfaceCheckFunc" href="gobject/gobject-Type-Information.html#GTypeInterfaceCheckFunc">
|
110
|
+
<ANCHOR id="g-type-value-table-peek" href="gobject/gobject-Type-Information.html#g-type-value-table-peek">
|
111
|
+
<ANCHOR id="G-DEFINE-TYPE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-TYPE:CAPS">
|
112
|
+
<ANCHOR id="G-DEFINE-TYPE-WITH-CODE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-TYPE-WITH-CODE:CAPS">
|
113
|
+
<ANCHOR id="G-DEFINE-ABSTRACT-TYPE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-ABSTRACT-TYPE:CAPS">
|
114
|
+
<ANCHOR id="G-DEFINE-ABSTRACT-TYPE-WITH-CODE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-ABSTRACT-TYPE-WITH-CODE:CAPS">
|
115
|
+
<ANCHOR id="G-DEFINE-INTERFACE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-INTERFACE:CAPS">
|
116
|
+
<ANCHOR id="G-DEFINE-INTERFACE-WITH-CODE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-INTERFACE-WITH-CODE:CAPS">
|
117
|
+
<ANCHOR id="G-IMPLEMENT-INTERFACE:CAPS" href="gobject/gobject-Type-Information.html#G-IMPLEMENT-INTERFACE:CAPS">
|
118
|
+
<ANCHOR id="G-DEFINE-TYPE-EXTENDED:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-TYPE-EXTENDED:CAPS">
|
119
|
+
<ANCHOR id="G-DEFINE-BOXED-TYPE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-BOXED-TYPE:CAPS">
|
120
|
+
<ANCHOR id="G-DEFINE-BOXED-TYPE-WITH-CODE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-BOXED-TYPE-WITH-CODE:CAPS">
|
121
|
+
<ANCHOR id="G-DEFINE-POINTER-TYPE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-POINTER-TYPE:CAPS">
|
122
|
+
<ANCHOR id="G-DEFINE-POINTER-TYPE-WITH-CODE:CAPS" href="gobject/gobject-Type-Information.html#G-DEFINE-POINTER-TYPE-WITH-CODE:CAPS">
|
123
|
+
<ANCHOR id="G-TYPE-INVALID:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-INVALID:CAPS">
|
124
|
+
<ANCHOR id="G-TYPE-NONE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-NONE:CAPS">
|
125
|
+
<ANCHOR id="G-TYPE-INTERFACE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-INTERFACE:CAPS">
|
126
|
+
<ANCHOR id="G-TYPE-CHAR:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-CHAR:CAPS">
|
127
|
+
<ANCHOR id="G-TYPE-UCHAR:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-UCHAR:CAPS">
|
128
|
+
<ANCHOR id="G-TYPE-BOOLEAN:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-BOOLEAN:CAPS">
|
129
|
+
<ANCHOR id="G-TYPE-INT:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-INT:CAPS">
|
130
|
+
<ANCHOR id="G-TYPE-UINT:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-UINT:CAPS">
|
131
|
+
<ANCHOR id="G-TYPE-LONG:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-LONG:CAPS">
|
132
|
+
<ANCHOR id="G-TYPE-ULONG:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-ULONG:CAPS">
|
133
|
+
<ANCHOR id="G-TYPE-INT64:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-INT64:CAPS">
|
134
|
+
<ANCHOR id="G-TYPE-UINT64:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-UINT64:CAPS">
|
135
|
+
<ANCHOR id="G-TYPE-ENUM:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-ENUM:CAPS">
|
136
|
+
<ANCHOR id="G-TYPE-FLAGS:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FLAGS:CAPS">
|
137
|
+
<ANCHOR id="G-TYPE-FLOAT:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-FLOAT:CAPS">
|
138
|
+
<ANCHOR id="G-TYPE-DOUBLE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-DOUBLE:CAPS">
|
139
|
+
<ANCHOR id="G-TYPE-STRING:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-STRING:CAPS">
|
140
|
+
<ANCHOR id="G-TYPE-POINTER:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-POINTER:CAPS">
|
141
|
+
<ANCHOR id="G-TYPE-BOXED:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-BOXED:CAPS">
|
142
|
+
<ANCHOR id="G-TYPE-PARAM:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-PARAM:CAPS">
|
143
|
+
<ANCHOR id="G-TYPE-OBJECT:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-OBJECT:CAPS">
|
144
|
+
<ANCHOR id="G-TYPE-GTYPE:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-GTYPE:CAPS">
|
145
|
+
<ANCHOR id="G-TYPE-VARIANT:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-VARIANT:CAPS">
|
146
|
+
<ANCHOR id="G-TYPE-RESERVED-GLIB-FIRST:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-RESERVED-GLIB-FIRST:CAPS">
|
147
|
+
<ANCHOR id="G-TYPE-RESERVED-GLIB-LAST:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-RESERVED-GLIB-LAST:CAPS">
|
148
|
+
<ANCHOR id="G-TYPE-RESERVED-BSE-FIRST:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-RESERVED-BSE-FIRST:CAPS">
|
149
|
+
<ANCHOR id="G-TYPE-RESERVED-BSE-LAST:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-RESERVED-BSE-LAST:CAPS">
|
150
|
+
<ANCHOR id="G-TYPE-RESERVED-USER-FIRST:CAPS" href="gobject/gobject-Type-Information.html#G-TYPE-RESERVED-USER-FIRST:CAPS">
|
151
|
+
<ANCHOR id="GTypePlugin" href="gobject/GTypePlugin.html">
|
152
|
+
<ANCHOR id="GTypePlugin.synopsis" href="gobject/GTypePlugin.html#GTypePlugin.synopsis">
|
153
|
+
<ANCHOR id="GTypePlugin.object-hierarchy" href="gobject/GTypePlugin.html#GTypePlugin.object-hierarchy">
|
154
|
+
<ANCHOR id="GTypePlugin.implementations" href="gobject/GTypePlugin.html#GTypePlugin.implementations">
|
155
|
+
<ANCHOR id="GTypePlugin.description" href="gobject/GTypePlugin.html#GTypePlugin.description">
|
156
|
+
<ANCHOR id="GTypePlugin.details" href="gobject/GTypePlugin.html#GTypePlugin.details">
|
157
|
+
<ANCHOR id="GTypePlugin-struct" href="gobject/GTypePlugin.html#GTypePlugin-struct">
|
158
|
+
<ANCHOR id="GTypePluginClass" href="gobject/GTypePlugin.html#GTypePluginClass">
|
159
|
+
<ANCHOR id="GTypePluginUse" href="gobject/GTypePlugin.html#GTypePluginUse">
|
160
|
+
<ANCHOR id="GTypePluginUnuse" href="gobject/GTypePlugin.html#GTypePluginUnuse">
|
161
|
+
<ANCHOR id="GTypePluginCompleteTypeInfo" href="gobject/GTypePlugin.html#GTypePluginCompleteTypeInfo">
|
162
|
+
<ANCHOR id="GTypePluginCompleteInterfaceInfo" href="gobject/GTypePlugin.html#GTypePluginCompleteInterfaceInfo">
|
163
|
+
<ANCHOR id="g-type-plugin-use" href="gobject/GTypePlugin.html#g-type-plugin-use">
|
164
|
+
<ANCHOR id="g-type-plugin-unuse" href="gobject/GTypePlugin.html#g-type-plugin-unuse">
|
165
|
+
<ANCHOR id="g-type-plugin-complete-type-info" href="gobject/GTypePlugin.html#g-type-plugin-complete-type-info">
|
166
|
+
<ANCHOR id="g-type-plugin-complete-interface-info" href="gobject/GTypePlugin.html#g-type-plugin-complete-interface-info">
|
167
|
+
<ANCHOR id="GTypePlugin.see-also" href="gobject/GTypePlugin.html#GTypePlugin.see-also">
|
168
|
+
<ANCHOR id="GTypeModule" href="gobject/GTypeModule.html">
|
169
|
+
<ANCHOR id="GTypeModule.synopsis" href="gobject/GTypeModule.html#GTypeModule.synopsis">
|
170
|
+
<ANCHOR id="GTypeModule.object-hierarchy" href="gobject/GTypeModule.html#GTypeModule.object-hierarchy">
|
171
|
+
<ANCHOR id="GTypeModule.implemented-interfaces" href="gobject/GTypeModule.html#GTypeModule.implemented-interfaces">
|
172
|
+
<ANCHOR id="GTypeModule.description" href="gobject/GTypeModule.html#GTypeModule.description">
|
173
|
+
<ANCHOR id="GTypeModule.details" href="gobject/GTypeModule.html#GTypeModule.details">
|
174
|
+
<ANCHOR id="GTypeModule-struct" href="gobject/GTypeModule.html#GTypeModule-struct">
|
175
|
+
<ANCHOR id="GTypeModuleClass" href="gobject/GTypeModule.html#GTypeModuleClass">
|
176
|
+
<ANCHOR id="g-type-module-use" href="gobject/GTypeModule.html#g-type-module-use">
|
177
|
+
<ANCHOR id="g-type-module-unuse" href="gobject/GTypeModule.html#g-type-module-unuse">
|
178
|
+
<ANCHOR id="g-type-module-set-name" href="gobject/GTypeModule.html#g-type-module-set-name">
|
179
|
+
<ANCHOR id="g-type-module-register-type" href="gobject/GTypeModule.html#g-type-module-register-type">
|
180
|
+
<ANCHOR id="g-type-module-add-interface" href="gobject/GTypeModule.html#g-type-module-add-interface">
|
181
|
+
<ANCHOR id="g-type-module-register-enum" href="gobject/GTypeModule.html#g-type-module-register-enum">
|
182
|
+
<ANCHOR id="g-type-module-register-flags" href="gobject/GTypeModule.html#g-type-module-register-flags">
|
183
|
+
<ANCHOR id="G-DEFINE-DYNAMIC-TYPE:CAPS" href="gobject/GTypeModule.html#G-DEFINE-DYNAMIC-TYPE:CAPS">
|
184
|
+
<ANCHOR id="G-DEFINE-DYNAMIC-TYPE-EXTENDED:CAPS" href="gobject/GTypeModule.html#G-DEFINE-DYNAMIC-TYPE-EXTENDED:CAPS">
|
185
|
+
<ANCHOR id="G-IMPLEMENT-INTERFACE-DYNAMIC:CAPS" href="gobject/GTypeModule.html#G-IMPLEMENT-INTERFACE-DYNAMIC:CAPS">
|
186
|
+
<ANCHOR id="GTypeModule.see-also" href="gobject/GTypeModule.html#GTypeModule.see-also">
|
187
|
+
<ANCHOR id="gobject-The-Base-Object-Type" href="gobject/gobject-The-Base-Object-Type.html">
|
188
|
+
<ANCHOR id="gobject-The-Base-Object-Type.synopsis" href="gobject/gobject-The-Base-Object-Type.html#gobject-The-Base-Object-Type.synopsis">
|
189
|
+
<ANCHOR id="GObject" href="gobject/gobject-The-Base-Object-Type.html#GObject">
|
190
|
+
<ANCHOR id="gobject-The-Base-Object-Type.object-hierarchy" href="gobject/gobject-The-Base-Object-Type.html#gobject-The-Base-Object-Type.object-hierarchy">
|
191
|
+
<ANCHOR id="gobject-The-Base-Object-Type.signals" href="gobject/gobject-The-Base-Object-Type.html#gobject-The-Base-Object-Type.signals">
|
192
|
+
<ANCHOR id="gobject-The-Base-Object-Type.description" href="gobject/gobject-The-Base-Object-Type.html#gobject-The-Base-Object-Type.description">
|
193
|
+
<ANCHOR id="gobject-The-Base-Object-Type.details" href="gobject/gobject-The-Base-Object-Type.html#gobject-The-Base-Object-Type.details">
|
194
|
+
<ANCHOR id="GObject-struct" href="gobject/gobject-The-Base-Object-Type.html#GObject-struct">
|
195
|
+
<ANCHOR id="GObjectClass" href="gobject/gobject-The-Base-Object-Type.html#GObjectClass">
|
196
|
+
<ANCHOR id="GObjectConstructParam" href="gobject/gobject-The-Base-Object-Type.html#GObjectConstructParam">
|
197
|
+
<ANCHOR id="GObjectGetPropertyFunc" href="gobject/gobject-The-Base-Object-Type.html#GObjectGetPropertyFunc">
|
198
|
+
<ANCHOR id="GObjectSetPropertyFunc" href="gobject/gobject-The-Base-Object-Type.html#GObjectSetPropertyFunc">
|
199
|
+
<ANCHOR id="GObjectFinalizeFunc" href="gobject/gobject-The-Base-Object-Type.html#GObjectFinalizeFunc">
|
200
|
+
<ANCHOR id="G-TYPE-IS-OBJECT:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-TYPE-IS-OBJECT:CAPS">
|
201
|
+
<ANCHOR id="G-OBJECT:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-OBJECT:CAPS">
|
202
|
+
<ANCHOR id="G-IS-OBJECT:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-IS-OBJECT:CAPS">
|
203
|
+
<ANCHOR id="G-OBJECT-CLASS:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-OBJECT-CLASS:CAPS">
|
204
|
+
<ANCHOR id="G-IS-OBJECT-CLASS:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-IS-OBJECT-CLASS:CAPS">
|
205
|
+
<ANCHOR id="G-OBJECT-GET-CLASS:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-OBJECT-GET-CLASS:CAPS">
|
206
|
+
<ANCHOR id="G-OBJECT-TYPE:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-OBJECT-TYPE:CAPS">
|
207
|
+
<ANCHOR id="G-OBJECT-TYPE-NAME:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-OBJECT-TYPE-NAME:CAPS">
|
208
|
+
<ANCHOR id="G-OBJECT-CLASS-TYPE:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-OBJECT-CLASS-TYPE:CAPS">
|
209
|
+
<ANCHOR id="G-OBJECT-CLASS-NAME:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-OBJECT-CLASS-NAME:CAPS">
|
210
|
+
<ANCHOR id="g-object-class-install-property" href="gobject/gobject-The-Base-Object-Type.html#g-object-class-install-property">
|
211
|
+
<ANCHOR id="g-object-class-install-properties" href="gobject/gobject-The-Base-Object-Type.html#g-object-class-install-properties">
|
212
|
+
<ANCHOR id="g-object-class-find-property" href="gobject/gobject-The-Base-Object-Type.html#g-object-class-find-property">
|
213
|
+
<ANCHOR id="g-object-class-list-properties" href="gobject/gobject-The-Base-Object-Type.html#g-object-class-list-properties">
|
214
|
+
<ANCHOR id="g-object-class-override-property" href="gobject/gobject-The-Base-Object-Type.html#g-object-class-override-property">
|
215
|
+
<ANCHOR id="g-object-interface-install-property" href="gobject/gobject-The-Base-Object-Type.html#g-object-interface-install-property">
|
216
|
+
<ANCHOR id="g-object-interface-find-property" href="gobject/gobject-The-Base-Object-Type.html#g-object-interface-find-property">
|
217
|
+
<ANCHOR id="g-object-interface-list-properties" href="gobject/gobject-The-Base-Object-Type.html#g-object-interface-list-properties">
|
218
|
+
<ANCHOR id="g-object-new" href="gobject/gobject-The-Base-Object-Type.html#g-object-new">
|
219
|
+
<ANCHOR id="g-object-newv" href="gobject/gobject-The-Base-Object-Type.html#g-object-newv">
|
220
|
+
<ANCHOR id="GParameter" href="gobject/gobject-The-Base-Object-Type.html#GParameter">
|
221
|
+
<ANCHOR id="g-object-ref" href="gobject/gobject-The-Base-Object-Type.html#g-object-ref">
|
222
|
+
<ANCHOR id="g-object-unref" href="gobject/gobject-The-Base-Object-Type.html#g-object-unref">
|
223
|
+
<ANCHOR id="g-object-ref-sink" href="gobject/gobject-The-Base-Object-Type.html#g-object-ref-sink">
|
224
|
+
<ANCHOR id="GInitiallyUnowned" href="gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">
|
225
|
+
<ANCHOR id="GInitiallyUnownedClass" href="gobject/gobject-The-Base-Object-Type.html#GInitiallyUnownedClass">
|
226
|
+
<ANCHOR id="G-TYPE-INITIALLY-UNOWNED:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-TYPE-INITIALLY-UNOWNED:CAPS">
|
227
|
+
<ANCHOR id="g-object-is-floating" href="gobject/gobject-The-Base-Object-Type.html#g-object-is-floating">
|
228
|
+
<ANCHOR id="g-object-force-floating" href="gobject/gobject-The-Base-Object-Type.html#g-object-force-floating">
|
229
|
+
<ANCHOR id="GWeakNotify" href="gobject/gobject-The-Base-Object-Type.html#GWeakNotify">
|
230
|
+
<ANCHOR id="g-object-weak-ref" href="gobject/gobject-The-Base-Object-Type.html#g-object-weak-ref">
|
231
|
+
<ANCHOR id="g-object-weak-unref" href="gobject/gobject-The-Base-Object-Type.html#g-object-weak-unref">
|
232
|
+
<ANCHOR id="g-object-add-weak-pointer" href="gobject/gobject-The-Base-Object-Type.html#g-object-add-weak-pointer">
|
233
|
+
<ANCHOR id="g-object-remove-weak-pointer" href="gobject/gobject-The-Base-Object-Type.html#g-object-remove-weak-pointer">
|
234
|
+
<ANCHOR id="GToggleNotify" href="gobject/gobject-The-Base-Object-Type.html#GToggleNotify">
|
235
|
+
<ANCHOR id="g-object-add-toggle-ref" href="gobject/gobject-The-Base-Object-Type.html#g-object-add-toggle-ref">
|
236
|
+
<ANCHOR id="g-object-remove-toggle-ref" href="gobject/gobject-The-Base-Object-Type.html#g-object-remove-toggle-ref">
|
237
|
+
<ANCHOR id="g-object-connect" href="gobject/gobject-The-Base-Object-Type.html#g-object-connect">
|
238
|
+
<ANCHOR id="g-object-disconnect" href="gobject/gobject-The-Base-Object-Type.html#g-object-disconnect">
|
239
|
+
<ANCHOR id="g-object-set" href="gobject/gobject-The-Base-Object-Type.html#g-object-set">
|
240
|
+
<ANCHOR id="g-object-get" href="gobject/gobject-The-Base-Object-Type.html#g-object-get">
|
241
|
+
<ANCHOR id="g-object-notify" href="gobject/gobject-The-Base-Object-Type.html#g-object-notify">
|
242
|
+
<ANCHOR id="g-object-notify-by-pspec" href="gobject/gobject-The-Base-Object-Type.html#g-object-notify-by-pspec">
|
243
|
+
<ANCHOR id="g-object-freeze-notify" href="gobject/gobject-The-Base-Object-Type.html#g-object-freeze-notify">
|
244
|
+
<ANCHOR id="g-object-thaw-notify" href="gobject/gobject-The-Base-Object-Type.html#g-object-thaw-notify">
|
245
|
+
<ANCHOR id="g-object-get-data" href="gobject/gobject-The-Base-Object-Type.html#g-object-get-data">
|
246
|
+
<ANCHOR id="g-object-set-data" href="gobject/gobject-The-Base-Object-Type.html#g-object-set-data">
|
247
|
+
<ANCHOR id="g-object-set-data-full" href="gobject/gobject-The-Base-Object-Type.html#g-object-set-data-full">
|
248
|
+
<ANCHOR id="g-object-steal-data" href="gobject/gobject-The-Base-Object-Type.html#g-object-steal-data">
|
249
|
+
<ANCHOR id="g-object-get-qdata" href="gobject/gobject-The-Base-Object-Type.html#g-object-get-qdata">
|
250
|
+
<ANCHOR id="g-object-set-qdata" href="gobject/gobject-The-Base-Object-Type.html#g-object-set-qdata">
|
251
|
+
<ANCHOR id="g-object-set-qdata-full" href="gobject/gobject-The-Base-Object-Type.html#g-object-set-qdata-full">
|
252
|
+
<ANCHOR id="g-object-steal-qdata" href="gobject/gobject-The-Base-Object-Type.html#g-object-steal-qdata">
|
253
|
+
<ANCHOR id="g-object-set-property" href="gobject/gobject-The-Base-Object-Type.html#g-object-set-property">
|
254
|
+
<ANCHOR id="g-object-get-property" href="gobject/gobject-The-Base-Object-Type.html#g-object-get-property">
|
255
|
+
<ANCHOR id="g-object-new-valist" href="gobject/gobject-The-Base-Object-Type.html#g-object-new-valist">
|
256
|
+
<ANCHOR id="g-object-set-valist" href="gobject/gobject-The-Base-Object-Type.html#g-object-set-valist">
|
257
|
+
<ANCHOR id="g-object-get-valist" href="gobject/gobject-The-Base-Object-Type.html#g-object-get-valist">
|
258
|
+
<ANCHOR id="g-object-watch-closure" href="gobject/gobject-The-Base-Object-Type.html#g-object-watch-closure">
|
259
|
+
<ANCHOR id="g-object-run-dispose" href="gobject/gobject-The-Base-Object-Type.html#g-object-run-dispose">
|
260
|
+
<ANCHOR id="G-OBJECT-WARN-INVALID-PROPERTY-ID:CAPS" href="gobject/gobject-The-Base-Object-Type.html#G-OBJECT-WARN-INVALID-PROPERTY-ID:CAPS">
|
261
|
+
<ANCHOR id="gobject-The-Base-Object-Type.signal-details" href="gobject/gobject-The-Base-Object-Type.html#gobject-The-Base-Object-Type.signal-details">
|
262
|
+
<ANCHOR id="GObject-notify" href="gobject/gobject-The-Base-Object-Type.html#GObject-notify">
|
263
|
+
<ANCHOR id="gobject-The-Base-Object-Type.see-also" href="gobject/gobject-The-Base-Object-Type.html#gobject-The-Base-Object-Type.see-also">
|
264
|
+
<ANCHOR id="gobject-Enumeration-and-Flag-Types" href="gobject/gobject-Enumeration-and-Flag-Types.html">
|
265
|
+
<ANCHOR id="gobject-Enumeration-and-Flag-Types.synopsis" href="gobject/gobject-Enumeration-and-Flag-Types.html#gobject-Enumeration-and-Flag-Types.synopsis">
|
266
|
+
<ANCHOR id="gobject-Enumeration-and-Flag-Types.description" href="gobject/gobject-Enumeration-and-Flag-Types.html#gobject-Enumeration-and-Flag-Types.description">
|
267
|
+
<ANCHOR id="gobject-Enumeration-and-Flag-Types.details" href="gobject/gobject-Enumeration-and-Flag-Types.html#gobject-Enumeration-and-Flag-Types.details">
|
268
|
+
<ANCHOR id="GEnumClass" href="gobject/gobject-Enumeration-and-Flag-Types.html#GEnumClass">
|
269
|
+
<ANCHOR id="GFlagsClass" href="gobject/gobject-Enumeration-and-Flag-Types.html#GFlagsClass">
|
270
|
+
<ANCHOR id="G-ENUM-CLASS-TYPE:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-ENUM-CLASS-TYPE:CAPS">
|
271
|
+
<ANCHOR id="G-ENUM-CLASS-TYPE-NAME:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-ENUM-CLASS-TYPE-NAME:CAPS">
|
272
|
+
<ANCHOR id="G-TYPE-IS-ENUM:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-TYPE-IS-ENUM:CAPS">
|
273
|
+
<ANCHOR id="G-ENUM-CLASS:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-ENUM-CLASS:CAPS">
|
274
|
+
<ANCHOR id="G-IS-ENUM-CLASS:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-IS-ENUM-CLASS:CAPS">
|
275
|
+
<ANCHOR id="G-TYPE-IS-FLAGS:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-TYPE-IS-FLAGS:CAPS">
|
276
|
+
<ANCHOR id="G-FLAGS-CLASS:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-FLAGS-CLASS:CAPS">
|
277
|
+
<ANCHOR id="G-IS-FLAGS-CLASS:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-IS-FLAGS-CLASS:CAPS">
|
278
|
+
<ANCHOR id="G-FLAGS-CLASS-TYPE:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-FLAGS-CLASS-TYPE:CAPS">
|
279
|
+
<ANCHOR id="G-FLAGS-CLASS-TYPE-NAME:CAPS" href="gobject/gobject-Enumeration-and-Flag-Types.html#G-FLAGS-CLASS-TYPE-NAME:CAPS">
|
280
|
+
<ANCHOR id="GEnumValue" href="gobject/gobject-Enumeration-and-Flag-Types.html#GEnumValue">
|
281
|
+
<ANCHOR id="GFlagsValue" href="gobject/gobject-Enumeration-and-Flag-Types.html#GFlagsValue">
|
282
|
+
<ANCHOR id="g-enum-get-value" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-enum-get-value">
|
283
|
+
<ANCHOR id="g-enum-get-value-by-name" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-enum-get-value-by-name">
|
284
|
+
<ANCHOR id="g-enum-get-value-by-nick" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-enum-get-value-by-nick">
|
285
|
+
<ANCHOR id="g-flags-get-first-value" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-flags-get-first-value">
|
286
|
+
<ANCHOR id="g-flags-get-value-by-name" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-flags-get-value-by-name">
|
287
|
+
<ANCHOR id="g-flags-get-value-by-nick" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-flags-get-value-by-nick">
|
288
|
+
<ANCHOR id="g-enum-register-static" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-enum-register-static">
|
289
|
+
<ANCHOR id="g-flags-register-static" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-flags-register-static">
|
290
|
+
<ANCHOR id="g-enum-complete-type-info" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-enum-complete-type-info">
|
291
|
+
<ANCHOR id="g-flags-complete-type-info" href="gobject/gobject-Enumeration-and-Flag-Types.html#g-flags-complete-type-info">
|
292
|
+
<ANCHOR id="gobject-Enumeration-and-Flag-Types.see-also" href="gobject/gobject-Enumeration-and-Flag-Types.html#gobject-Enumeration-and-Flag-Types.see-also">
|
293
|
+
<ANCHOR id="gobject-Boxed-Types" href="gobject/gobject-Boxed-Types.html">
|
294
|
+
<ANCHOR id="gobject-Boxed-Types.synopsis" href="gobject/gobject-Boxed-Types.html#gobject-Boxed-Types.synopsis">
|
295
|
+
<ANCHOR id="gobject-Boxed-Types.description" href="gobject/gobject-Boxed-Types.html#gobject-Boxed-Types.description">
|
296
|
+
<ANCHOR id="gobject-Boxed-Types.details" href="gobject/gobject-Boxed-Types.html#gobject-Boxed-Types.details">
|
297
|
+
<ANCHOR id="GBoxedCopyFunc" href="gobject/gobject-Boxed-Types.html#GBoxedCopyFunc">
|
298
|
+
<ANCHOR id="GBoxedFreeFunc" href="gobject/gobject-Boxed-Types.html#GBoxedFreeFunc">
|
299
|
+
<ANCHOR id="g-boxed-copy" href="gobject/gobject-Boxed-Types.html#g-boxed-copy">
|
300
|
+
<ANCHOR id="g-boxed-free" href="gobject/gobject-Boxed-Types.html#g-boxed-free">
|
301
|
+
<ANCHOR id="g-boxed-type-register-static" href="gobject/gobject-Boxed-Types.html#g-boxed-type-register-static">
|
302
|
+
<ANCHOR id="g-pointer-type-register-static" href="gobject/gobject-Boxed-Types.html#g-pointer-type-register-static">
|
303
|
+
<ANCHOR id="G-TYPE-HASH-TABLE:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-HASH-TABLE:CAPS">
|
304
|
+
<ANCHOR id="G-TYPE-DATE:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-DATE:CAPS">
|
305
|
+
<ANCHOR id="G-TYPE-GSTRING:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-GSTRING:CAPS">
|
306
|
+
<ANCHOR id="G-TYPE-STRV:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-STRV:CAPS">
|
307
|
+
<ANCHOR id="G-TYPE-REGEX:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-REGEX:CAPS">
|
308
|
+
<ANCHOR id="G-TYPE-ARRAY:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-ARRAY:CAPS">
|
309
|
+
<ANCHOR id="G-TYPE-BYTE-ARRAY:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-BYTE-ARRAY:CAPS">
|
310
|
+
<ANCHOR id="G-TYPE-PTR-ARRAY:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-PTR-ARRAY:CAPS">
|
311
|
+
<ANCHOR id="G-TYPE-VARIANT-TYPE:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-VARIANT-TYPE:CAPS">
|
312
|
+
<ANCHOR id="G-TYPE-ERROR:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-ERROR:CAPS">
|
313
|
+
<ANCHOR id="G-TYPE-DATE-TIME:CAPS" href="gobject/gobject-Boxed-Types.html#G-TYPE-DATE-TIME:CAPS">
|
314
|
+
<ANCHOR id="GStrv" href="gobject/gobject-Boxed-Types.html#GStrv">
|
315
|
+
<ANCHOR id="gobject-Boxed-Types.see-also" href="gobject/gobject-Boxed-Types.html#gobject-Boxed-Types.see-also">
|
316
|
+
<ANCHOR id="gobject-Generic-values" href="gobject/gobject-Generic-values.html">
|
317
|
+
<ANCHOR id="gobject-Generic-values.synopsis" href="gobject/gobject-Generic-values.html#gobject-Generic-values.synopsis">
|
318
|
+
<ANCHOR id="gobject-Generic-values.description" href="gobject/gobject-Generic-values.html#gobject-Generic-values.description">
|
319
|
+
<ANCHOR id="gobject-Generic-values.details" href="gobject/gobject-Generic-values.html#gobject-Generic-values.details">
|
320
|
+
<ANCHOR id="G-VALUE-HOLDS:CAPS" href="gobject/gobject-Generic-values.html#G-VALUE-HOLDS:CAPS">
|
321
|
+
<ANCHOR id="G-VALUE-TYPE:CAPS" href="gobject/gobject-Generic-values.html#G-VALUE-TYPE:CAPS">
|
322
|
+
<ANCHOR id="G-VALUE-TYPE-NAME:CAPS" href="gobject/gobject-Generic-values.html#G-VALUE-TYPE-NAME:CAPS">
|
323
|
+
<ANCHOR id="G-TYPE-IS-VALUE:CAPS" href="gobject/gobject-Generic-values.html#G-TYPE-IS-VALUE:CAPS">
|
324
|
+
<ANCHOR id="G-TYPE-IS-VALUE-ABSTRACT:CAPS" href="gobject/gobject-Generic-values.html#G-TYPE-IS-VALUE-ABSTRACT:CAPS">
|
325
|
+
<ANCHOR id="G-IS-VALUE:CAPS" href="gobject/gobject-Generic-values.html#G-IS-VALUE:CAPS">
|
326
|
+
<ANCHOR id="GValue" href="gobject/gobject-Generic-values.html#GValue">
|
327
|
+
<ANCHOR id="G-TYPE-VALUE:CAPS" href="gobject/gobject-Generic-values.html#G-TYPE-VALUE:CAPS">
|
328
|
+
<ANCHOR id="G-TYPE-VALUE-ARRAY:CAPS" href="gobject/gobject-Generic-values.html#G-TYPE-VALUE-ARRAY:CAPS">
|
329
|
+
<ANCHOR id="g-value-init" href="gobject/gobject-Generic-values.html#g-value-init">
|
330
|
+
<ANCHOR id="g-value-copy" href="gobject/gobject-Generic-values.html#g-value-copy">
|
331
|
+
<ANCHOR id="g-value-reset" href="gobject/gobject-Generic-values.html#g-value-reset">
|
332
|
+
<ANCHOR id="g-value-unset" href="gobject/gobject-Generic-values.html#g-value-unset">
|
333
|
+
<ANCHOR id="g-value-set-instance" href="gobject/gobject-Generic-values.html#g-value-set-instance">
|
334
|
+
<ANCHOR id="g-value-fits-pointer" href="gobject/gobject-Generic-values.html#g-value-fits-pointer">
|
335
|
+
<ANCHOR id="g-value-peek-pointer" href="gobject/gobject-Generic-values.html#g-value-peek-pointer">
|
336
|
+
<ANCHOR id="g-value-type-compatible" href="gobject/gobject-Generic-values.html#g-value-type-compatible">
|
337
|
+
<ANCHOR id="g-value-type-transformable" href="gobject/gobject-Generic-values.html#g-value-type-transformable">
|
338
|
+
<ANCHOR id="g-value-transform" href="gobject/gobject-Generic-values.html#g-value-transform">
|
339
|
+
<ANCHOR id="GValueTransform" href="gobject/gobject-Generic-values.html#GValueTransform">
|
340
|
+
<ANCHOR id="g-value-register-transform-func" href="gobject/gobject-Generic-values.html#g-value-register-transform-func">
|
341
|
+
<ANCHOR id="g-strdup-value-contents" href="gobject/gobject-Generic-values.html#g-strdup-value-contents">
|
342
|
+
<ANCHOR id="gobject-Generic-values.see-also" href="gobject/gobject-Generic-values.html#gobject-Generic-values.see-also">
|
343
|
+
<ANCHOR id="gobject-Standard-Parameter-and-Value-Types" href="gobject/gobject-Standard-Parameter-and-Value-Types.html">
|
344
|
+
<ANCHOR id="gobject-Standard-Parameter-and-Value-Types.synopsis" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#gobject-Standard-Parameter-and-Value-Types.synopsis">
|
345
|
+
<ANCHOR id="gobject-Standard-Parameter-and-Value-Types.description" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#gobject-Standard-Parameter-and-Value-Types.description">
|
346
|
+
<ANCHOR id="gobject-Standard-Parameter-and-Value-Types.details" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#gobject-Standard-Parameter-and-Value-Types.details">
|
347
|
+
<ANCHOR id="G-IS-PARAM-SPEC-BOOLEAN:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-BOOLEAN:CAPS">
|
348
|
+
<ANCHOR id="G-PARAM-SPEC-BOOLEAN:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-BOOLEAN:CAPS">
|
349
|
+
<ANCHOR id="G-VALUE-HOLDS-BOOLEAN:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-BOOLEAN:CAPS">
|
350
|
+
<ANCHOR id="G-TYPE-PARAM-BOOLEAN:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-BOOLEAN:CAPS">
|
351
|
+
<ANCHOR id="GParamSpecBoolean" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecBoolean">
|
352
|
+
<ANCHOR id="g-param-spec-boolean" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-boolean">
|
353
|
+
<ANCHOR id="g-value-set-boolean" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-boolean">
|
354
|
+
<ANCHOR id="g-value-get-boolean" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-boolean">
|
355
|
+
<ANCHOR id="G-IS-PARAM-SPEC-CHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-CHAR:CAPS">
|
356
|
+
<ANCHOR id="G-PARAM-SPEC-CHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-CHAR:CAPS">
|
357
|
+
<ANCHOR id="G-VALUE-HOLDS-CHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-CHAR:CAPS">
|
358
|
+
<ANCHOR id="G-TYPE-PARAM-CHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-CHAR:CAPS">
|
359
|
+
<ANCHOR id="GParamSpecChar" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecChar">
|
360
|
+
<ANCHOR id="g-param-spec-char" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-char">
|
361
|
+
<ANCHOR id="g-value-set-char" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-char">
|
362
|
+
<ANCHOR id="g-value-get-char" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-char">
|
363
|
+
<ANCHOR id="G-IS-PARAM-SPEC-UCHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-UCHAR:CAPS">
|
364
|
+
<ANCHOR id="G-PARAM-SPEC-UCHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-UCHAR:CAPS">
|
365
|
+
<ANCHOR id="G-VALUE-HOLDS-UCHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-UCHAR:CAPS">
|
366
|
+
<ANCHOR id="G-TYPE-PARAM-UCHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-UCHAR:CAPS">
|
367
|
+
<ANCHOR id="GParamSpecUChar" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecUChar">
|
368
|
+
<ANCHOR id="g-param-spec-uchar" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-uchar">
|
369
|
+
<ANCHOR id="g-value-set-uchar" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-uchar">
|
370
|
+
<ANCHOR id="g-value-get-uchar" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-uchar">
|
371
|
+
<ANCHOR id="G-IS-PARAM-SPEC-INT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-INT:CAPS">
|
372
|
+
<ANCHOR id="G-PARAM-SPEC-INT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-INT:CAPS">
|
373
|
+
<ANCHOR id="G-VALUE-HOLDS-INT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-INT:CAPS">
|
374
|
+
<ANCHOR id="G-TYPE-PARAM-INT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-INT:CAPS">
|
375
|
+
<ANCHOR id="GParamSpecInt" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecInt">
|
376
|
+
<ANCHOR id="g-param-spec-int" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-int">
|
377
|
+
<ANCHOR id="g-value-set-int" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-int">
|
378
|
+
<ANCHOR id="g-value-get-int" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-int">
|
379
|
+
<ANCHOR id="G-IS-PARAM-SPEC-UINT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-UINT:CAPS">
|
380
|
+
<ANCHOR id="G-PARAM-SPEC-UINT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-UINT:CAPS">
|
381
|
+
<ANCHOR id="G-VALUE-HOLDS-UINT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-UINT:CAPS">
|
382
|
+
<ANCHOR id="G-TYPE-PARAM-UINT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-UINT:CAPS">
|
383
|
+
<ANCHOR id="GParamSpecUInt" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecUInt">
|
384
|
+
<ANCHOR id="g-param-spec-uint" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-uint">
|
385
|
+
<ANCHOR id="g-value-set-uint" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-uint">
|
386
|
+
<ANCHOR id="g-value-get-uint" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-uint">
|
387
|
+
<ANCHOR id="G-IS-PARAM-SPEC-LONG:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-LONG:CAPS">
|
388
|
+
<ANCHOR id="G-PARAM-SPEC-LONG:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-LONG:CAPS">
|
389
|
+
<ANCHOR id="G-VALUE-HOLDS-LONG:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-LONG:CAPS">
|
390
|
+
<ANCHOR id="G-TYPE-PARAM-LONG:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-LONG:CAPS">
|
391
|
+
<ANCHOR id="GParamSpecLong" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecLong">
|
392
|
+
<ANCHOR id="g-param-spec-long" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-long">
|
393
|
+
<ANCHOR id="g-value-set-long" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-long">
|
394
|
+
<ANCHOR id="g-value-get-long" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-long">
|
395
|
+
<ANCHOR id="G-IS-PARAM-SPEC-ULONG:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-ULONG:CAPS">
|
396
|
+
<ANCHOR id="G-PARAM-SPEC-ULONG:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-ULONG:CAPS">
|
397
|
+
<ANCHOR id="G-VALUE-HOLDS-ULONG:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-ULONG:CAPS">
|
398
|
+
<ANCHOR id="G-TYPE-PARAM-ULONG:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-ULONG:CAPS">
|
399
|
+
<ANCHOR id="GParamSpecULong" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecULong">
|
400
|
+
<ANCHOR id="g-param-spec-ulong" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-ulong">
|
401
|
+
<ANCHOR id="g-value-set-ulong" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-ulong">
|
402
|
+
<ANCHOR id="g-value-get-ulong" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-ulong">
|
403
|
+
<ANCHOR id="G-IS-PARAM-SPEC-INT64:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-INT64:CAPS">
|
404
|
+
<ANCHOR id="G-PARAM-SPEC-INT64:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-INT64:CAPS">
|
405
|
+
<ANCHOR id="G-VALUE-HOLDS-INT64:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-INT64:CAPS">
|
406
|
+
<ANCHOR id="G-TYPE-PARAM-INT64:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-INT64:CAPS">
|
407
|
+
<ANCHOR id="GParamSpecInt64" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecInt64">
|
408
|
+
<ANCHOR id="g-param-spec-int64" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-int64">
|
409
|
+
<ANCHOR id="g-value-set-int64" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-int64">
|
410
|
+
<ANCHOR id="g-value-get-int64" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-int64">
|
411
|
+
<ANCHOR id="G-IS-PARAM-SPEC-UINT64:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-UINT64:CAPS">
|
412
|
+
<ANCHOR id="G-PARAM-SPEC-UINT64:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-UINT64:CAPS">
|
413
|
+
<ANCHOR id="G-VALUE-HOLDS-UINT64:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-UINT64:CAPS">
|
414
|
+
<ANCHOR id="G-TYPE-PARAM-UINT64:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-UINT64:CAPS">
|
415
|
+
<ANCHOR id="GParamSpecUInt64" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecUInt64">
|
416
|
+
<ANCHOR id="g-param-spec-uint64" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-uint64">
|
417
|
+
<ANCHOR id="g-value-set-uint64" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-uint64">
|
418
|
+
<ANCHOR id="g-value-get-uint64" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-uint64">
|
419
|
+
<ANCHOR id="G-IS-PARAM-SPEC-FLOAT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-FLOAT:CAPS">
|
420
|
+
<ANCHOR id="G-PARAM-SPEC-FLOAT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-FLOAT:CAPS">
|
421
|
+
<ANCHOR id="G-VALUE-HOLDS-FLOAT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-FLOAT:CAPS">
|
422
|
+
<ANCHOR id="G-TYPE-PARAM-FLOAT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-FLOAT:CAPS">
|
423
|
+
<ANCHOR id="GParamSpecFloat" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecFloat">
|
424
|
+
<ANCHOR id="g-param-spec-float" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-float">
|
425
|
+
<ANCHOR id="g-value-set-float" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-float">
|
426
|
+
<ANCHOR id="g-value-get-float" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-float">
|
427
|
+
<ANCHOR id="G-IS-PARAM-SPEC-DOUBLE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-DOUBLE:CAPS">
|
428
|
+
<ANCHOR id="G-PARAM-SPEC-DOUBLE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-DOUBLE:CAPS">
|
429
|
+
<ANCHOR id="G-VALUE-HOLDS-DOUBLE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-DOUBLE:CAPS">
|
430
|
+
<ANCHOR id="G-TYPE-PARAM-DOUBLE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-DOUBLE:CAPS">
|
431
|
+
<ANCHOR id="GParamSpecDouble" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecDouble">
|
432
|
+
<ANCHOR id="g-param-spec-double" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-double">
|
433
|
+
<ANCHOR id="g-value-set-double" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-double">
|
434
|
+
<ANCHOR id="g-value-get-double" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-double">
|
435
|
+
<ANCHOR id="G-IS-PARAM-SPEC-ENUM:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-ENUM:CAPS">
|
436
|
+
<ANCHOR id="G-PARAM-SPEC-ENUM:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-ENUM:CAPS">
|
437
|
+
<ANCHOR id="G-VALUE-HOLDS-ENUM:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-ENUM:CAPS">
|
438
|
+
<ANCHOR id="G-TYPE-PARAM-ENUM:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-ENUM:CAPS">
|
439
|
+
<ANCHOR id="GParamSpecEnum" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecEnum">
|
440
|
+
<ANCHOR id="g-param-spec-enum" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-enum">
|
441
|
+
<ANCHOR id="g-value-set-enum" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-enum">
|
442
|
+
<ANCHOR id="g-value-get-enum" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-enum">
|
443
|
+
<ANCHOR id="G-IS-PARAM-SPEC-FLAGS:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-FLAGS:CAPS">
|
444
|
+
<ANCHOR id="G-PARAM-SPEC-FLAGS:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-FLAGS:CAPS">
|
445
|
+
<ANCHOR id="G-VALUE-HOLDS-FLAGS:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-FLAGS:CAPS">
|
446
|
+
<ANCHOR id="G-TYPE-PARAM-FLAGS:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-FLAGS:CAPS">
|
447
|
+
<ANCHOR id="GParamSpecFlags" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecFlags">
|
448
|
+
<ANCHOR id="g-param-spec-flags" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-flags">
|
449
|
+
<ANCHOR id="g-value-set-flags" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-flags">
|
450
|
+
<ANCHOR id="g-value-get-flags" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-flags">
|
451
|
+
<ANCHOR id="G-IS-PARAM-SPEC-STRING:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-STRING:CAPS">
|
452
|
+
<ANCHOR id="G-PARAM-SPEC-STRING:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-STRING:CAPS">
|
453
|
+
<ANCHOR id="G-VALUE-HOLDS-STRING:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-STRING:CAPS">
|
454
|
+
<ANCHOR id="G-TYPE-PARAM-STRING:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-STRING:CAPS">
|
455
|
+
<ANCHOR id="GParamSpecString" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecString">
|
456
|
+
<ANCHOR id="gchararray" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#gchararray">
|
457
|
+
<ANCHOR id="g-param-spec-string" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-string">
|
458
|
+
<ANCHOR id="g-value-set-string" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-string">
|
459
|
+
<ANCHOR id="g-value-set-static-string" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-static-string">
|
460
|
+
<ANCHOR id="g-value-take-string" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-take-string">
|
461
|
+
<ANCHOR id="g-value-set-string-take-ownership" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-string-take-ownership">
|
462
|
+
<ANCHOR id="g-value-get-string" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-string">
|
463
|
+
<ANCHOR id="g-value-dup-string" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-dup-string">
|
464
|
+
<ANCHOR id="G-IS-PARAM-SPEC-PARAM:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-PARAM:CAPS">
|
465
|
+
<ANCHOR id="G-PARAM-SPEC-PARAM:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-PARAM:CAPS">
|
466
|
+
<ANCHOR id="G-VALUE-HOLDS-PARAM:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-PARAM:CAPS">
|
467
|
+
<ANCHOR id="G-TYPE-PARAM-PARAM:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-PARAM:CAPS">
|
468
|
+
<ANCHOR id="GParamSpecParam" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecParam">
|
469
|
+
<ANCHOR id="g-param-spec-param" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-param">
|
470
|
+
<ANCHOR id="g-value-set-param" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-param">
|
471
|
+
<ANCHOR id="g-value-take-param" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-take-param">
|
472
|
+
<ANCHOR id="g-value-set-param-take-ownership" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-param-take-ownership">
|
473
|
+
<ANCHOR id="g-value-get-param" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-param">
|
474
|
+
<ANCHOR id="g-value-dup-param" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-dup-param">
|
475
|
+
<ANCHOR id="G-IS-PARAM-SPEC-BOXED:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-BOXED:CAPS">
|
476
|
+
<ANCHOR id="G-PARAM-SPEC-BOXED:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-BOXED:CAPS">
|
477
|
+
<ANCHOR id="G-VALUE-HOLDS-BOXED:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-BOXED:CAPS">
|
478
|
+
<ANCHOR id="G-TYPE-PARAM-BOXED:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-BOXED:CAPS">
|
479
|
+
<ANCHOR id="GParamSpecBoxed" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecBoxed">
|
480
|
+
<ANCHOR id="g-param-spec-boxed" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-boxed">
|
481
|
+
<ANCHOR id="g-value-set-boxed" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-boxed">
|
482
|
+
<ANCHOR id="g-value-set-static-boxed" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-static-boxed">
|
483
|
+
<ANCHOR id="g-value-take-boxed" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-take-boxed">
|
484
|
+
<ANCHOR id="g-value-set-boxed-take-ownership" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-boxed-take-ownership">
|
485
|
+
<ANCHOR id="g-value-get-boxed" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-boxed">
|
486
|
+
<ANCHOR id="g-value-dup-boxed" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-dup-boxed">
|
487
|
+
<ANCHOR id="G-IS-PARAM-SPEC-POINTER:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-POINTER:CAPS">
|
488
|
+
<ANCHOR id="G-PARAM-SPEC-POINTER:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-POINTER:CAPS">
|
489
|
+
<ANCHOR id="G-VALUE-HOLDS-POINTER:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-POINTER:CAPS">
|
490
|
+
<ANCHOR id="G-TYPE-PARAM-POINTER:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-POINTER:CAPS">
|
491
|
+
<ANCHOR id="GParamSpecPointer" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecPointer">
|
492
|
+
<ANCHOR id="g-param-spec-pointer" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-pointer">
|
493
|
+
<ANCHOR id="g-value-set-pointer" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-pointer">
|
494
|
+
<ANCHOR id="g-value-get-pointer" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-pointer">
|
495
|
+
<ANCHOR id="G-IS-PARAM-SPEC-OBJECT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-OBJECT:CAPS">
|
496
|
+
<ANCHOR id="G-PARAM-SPEC-OBJECT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-OBJECT:CAPS">
|
497
|
+
<ANCHOR id="G-VALUE-HOLDS-OBJECT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-OBJECT:CAPS">
|
498
|
+
<ANCHOR id="G-TYPE-PARAM-OBJECT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-OBJECT:CAPS">
|
499
|
+
<ANCHOR id="GParamSpecObject" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecObject">
|
500
|
+
<ANCHOR id="g-param-spec-object" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-object">
|
501
|
+
<ANCHOR id="g-value-set-object" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-object">
|
502
|
+
<ANCHOR id="g-value-take-object" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-take-object">
|
503
|
+
<ANCHOR id="g-value-set-object-take-ownership" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-object-take-ownership">
|
504
|
+
<ANCHOR id="g-value-get-object" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-object">
|
505
|
+
<ANCHOR id="g-value-dup-object" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-dup-object">
|
506
|
+
<ANCHOR id="G-IS-PARAM-SPEC-UNICHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-UNICHAR:CAPS">
|
507
|
+
<ANCHOR id="G-PARAM-SPEC-UNICHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-UNICHAR:CAPS">
|
508
|
+
<ANCHOR id="G-TYPE-PARAM-UNICHAR:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-UNICHAR:CAPS">
|
509
|
+
<ANCHOR id="GParamSpecUnichar" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecUnichar">
|
510
|
+
<ANCHOR id="g-param-spec-unichar" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-unichar">
|
511
|
+
<ANCHOR id="G-IS-PARAM-SPEC-VALUE-ARRAY:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-VALUE-ARRAY:CAPS">
|
512
|
+
<ANCHOR id="G-PARAM-SPEC-VALUE-ARRAY:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-VALUE-ARRAY:CAPS">
|
513
|
+
<ANCHOR id="G-TYPE-PARAM-VALUE-ARRAY:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-VALUE-ARRAY:CAPS">
|
514
|
+
<ANCHOR id="GParamSpecValueArray" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecValueArray">
|
515
|
+
<ANCHOR id="g-param-spec-value-array" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-value-array">
|
516
|
+
<ANCHOR id="G-IS-PARAM-SPEC-OVERRIDE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-OVERRIDE:CAPS">
|
517
|
+
<ANCHOR id="G-PARAM-SPEC-OVERRIDE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-OVERRIDE:CAPS">
|
518
|
+
<ANCHOR id="G-TYPE-PARAM-OVERRIDE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-OVERRIDE:CAPS">
|
519
|
+
<ANCHOR id="GParamSpecOverride" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecOverride">
|
520
|
+
<ANCHOR id="g-param-spec-override" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-override">
|
521
|
+
<ANCHOR id="G-IS-PARAM-SPEC-GTYPE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-GTYPE:CAPS">
|
522
|
+
<ANCHOR id="G-PARAM-SPEC-GTYPE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-GTYPE:CAPS">
|
523
|
+
<ANCHOR id="G-VALUE-HOLDS-GTYPE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-GTYPE:CAPS">
|
524
|
+
<ANCHOR id="G-TYPE-PARAM-GTYPE:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-GTYPE:CAPS">
|
525
|
+
<ANCHOR id="GParamSpecGType" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecGType">
|
526
|
+
<ANCHOR id="g-param-spec-gtype" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-gtype">
|
527
|
+
<ANCHOR id="g-value-get-gtype" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-gtype">
|
528
|
+
<ANCHOR id="g-value-set-gtype" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-gtype">
|
529
|
+
<ANCHOR id="G-IS-PARAM-SPEC-VARIANT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-VARIANT:CAPS">
|
530
|
+
<ANCHOR id="G-PARAM-SPEC-VARIANT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-VARIANT:CAPS">
|
531
|
+
<ANCHOR id="G-VALUE-HOLDS-VARIANT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-VARIANT:CAPS">
|
532
|
+
<ANCHOR id="G-TYPE-PARAM-VARIANT:CAPS" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-VARIANT:CAPS">
|
533
|
+
<ANCHOR id="GParamSpecVariant" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#GParamSpecVariant">
|
534
|
+
<ANCHOR id="g-param-spec-variant" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-variant">
|
535
|
+
<ANCHOR id="g-value-get-variant" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-get-variant">
|
536
|
+
<ANCHOR id="g-value-dup-variant" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-dup-variant">
|
537
|
+
<ANCHOR id="g-value-set-variant" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-set-variant">
|
538
|
+
<ANCHOR id="g-value-take-variant" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#g-value-take-variant">
|
539
|
+
<ANCHOR id="gobject-Standard-Parameter-and-Value-Types.see-also" href="gobject/gobject-Standard-Parameter-and-Value-Types.html#gobject-Standard-Parameter-and-Value-Types.see-also">
|
540
|
+
<ANCHOR id="gobject-GParamSpec" href="gobject/gobject-GParamSpec.html">
|
541
|
+
<ANCHOR id="gobject-GParamSpec.synopsis" href="gobject/gobject-GParamSpec.html#gobject-GParamSpec.synopsis">
|
542
|
+
<ANCHOR id="gobject-GParamSpec.description" href="gobject/gobject-GParamSpec.html#gobject-GParamSpec.description">
|
543
|
+
<ANCHOR id="gobject-GParamSpec.details" href="gobject/gobject-GParamSpec.html#gobject-GParamSpec.details">
|
544
|
+
<ANCHOR id="G-TYPE-IS-PARAM:CAPS" href="gobject/gobject-GParamSpec.html#G-TYPE-IS-PARAM:CAPS">
|
545
|
+
<ANCHOR id="G-PARAM-SPEC:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-SPEC:CAPS">
|
546
|
+
<ANCHOR id="G-IS-PARAM-SPEC:CAPS" href="gobject/gobject-GParamSpec.html#G-IS-PARAM-SPEC:CAPS">
|
547
|
+
<ANCHOR id="G-PARAM-SPEC-CLASS:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-SPEC-CLASS:CAPS">
|
548
|
+
<ANCHOR id="G-IS-PARAM-SPEC-CLASS:CAPS" href="gobject/gobject-GParamSpec.html#G-IS-PARAM-SPEC-CLASS:CAPS">
|
549
|
+
<ANCHOR id="G-PARAM-SPEC-GET-CLASS:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-SPEC-GET-CLASS:CAPS">
|
550
|
+
<ANCHOR id="G-PARAM-SPEC-TYPE:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-SPEC-TYPE:CAPS">
|
551
|
+
<ANCHOR id="G-PARAM-SPEC-TYPE-NAME:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-SPEC-TYPE-NAME:CAPS">
|
552
|
+
<ANCHOR id="G-PARAM-SPEC-VALUE-TYPE:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-SPEC-VALUE-TYPE:CAPS">
|
553
|
+
<ANCHOR id="GParamSpec" href="gobject/gobject-GParamSpec.html#GParamSpec">
|
554
|
+
<ANCHOR id="GParamSpecClass" href="gobject/gobject-GParamSpec.html#GParamSpecClass">
|
555
|
+
<ANCHOR id="GParamFlags" href="gobject/gobject-GParamSpec.html#GParamFlags">
|
556
|
+
<ANCHOR id="G-PARAM-READABLE:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-READABLE:CAPS">
|
557
|
+
<ANCHOR id="G-PARAM-WRITABLE:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-WRITABLE:CAPS">
|
558
|
+
<ANCHOR id="G-PARAM-CONSTRUCT:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-CONSTRUCT:CAPS">
|
559
|
+
<ANCHOR id="G-PARAM-CONSTRUCT-ONLY:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-CONSTRUCT-ONLY:CAPS">
|
560
|
+
<ANCHOR id="G-PARAM-LAX-VALIDATION:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-LAX-VALIDATION:CAPS">
|
561
|
+
<ANCHOR id="G-PARAM-STATIC-NAME:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-STATIC-NAME:CAPS">
|
562
|
+
<ANCHOR id="G-PARAM-PRIVATE:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-PRIVATE:CAPS">
|
563
|
+
<ANCHOR id="G-PARAM-STATIC-NICK:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-STATIC-NICK:CAPS">
|
564
|
+
<ANCHOR id="G-PARAM-STATIC-BLURB:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-STATIC-BLURB:CAPS">
|
565
|
+
<ANCHOR id="G-PARAM-DEPRECATED:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-DEPRECATED:CAPS">
|
566
|
+
<ANCHOR id="G-PARAM-READWRITE:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-READWRITE:CAPS">
|
567
|
+
<ANCHOR id="G-PARAM-STATIC-STRINGS:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS">
|
568
|
+
<ANCHOR id="G-PARAM-MASK:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-MASK:CAPS">
|
569
|
+
<ANCHOR id="G-PARAM-USER-SHIFT:CAPS" href="gobject/gobject-GParamSpec.html#G-PARAM-USER-SHIFT:CAPS">
|
570
|
+
<ANCHOR id="g-param-spec-ref" href="gobject/gobject-GParamSpec.html#g-param-spec-ref">
|
571
|
+
<ANCHOR id="g-param-spec-unref" href="gobject/gobject-GParamSpec.html#g-param-spec-unref">
|
572
|
+
<ANCHOR id="g-param-spec-sink" href="gobject/gobject-GParamSpec.html#g-param-spec-sink">
|
573
|
+
<ANCHOR id="g-param-spec-ref-sink" href="gobject/gobject-GParamSpec.html#g-param-spec-ref-sink">
|
574
|
+
<ANCHOR id="g-param-value-set-default" href="gobject/gobject-GParamSpec.html#g-param-value-set-default">
|
575
|
+
<ANCHOR id="g-param-value-defaults" href="gobject/gobject-GParamSpec.html#g-param-value-defaults">
|
576
|
+
<ANCHOR id="g-param-value-validate" href="gobject/gobject-GParamSpec.html#g-param-value-validate">
|
577
|
+
<ANCHOR id="g-param-value-convert" href="gobject/gobject-GParamSpec.html#g-param-value-convert">
|
578
|
+
<ANCHOR id="g-param-values-cmp" href="gobject/gobject-GParamSpec.html#g-param-values-cmp">
|
579
|
+
<ANCHOR id="g-param-spec-get-name" href="gobject/gobject-GParamSpec.html#g-param-spec-get-name">
|
580
|
+
<ANCHOR id="g-param-spec-get-nick" href="gobject/gobject-GParamSpec.html#g-param-spec-get-nick">
|
581
|
+
<ANCHOR id="g-param-spec-get-blurb" href="gobject/gobject-GParamSpec.html#g-param-spec-get-blurb">
|
582
|
+
<ANCHOR id="g-param-spec-get-qdata" href="gobject/gobject-GParamSpec.html#g-param-spec-get-qdata">
|
583
|
+
<ANCHOR id="g-param-spec-set-qdata" href="gobject/gobject-GParamSpec.html#g-param-spec-set-qdata">
|
584
|
+
<ANCHOR id="g-param-spec-set-qdata-full" href="gobject/gobject-GParamSpec.html#g-param-spec-set-qdata-full">
|
585
|
+
<ANCHOR id="g-param-spec-steal-qdata" href="gobject/gobject-GParamSpec.html#g-param-spec-steal-qdata">
|
586
|
+
<ANCHOR id="g-param-spec-get-redirect-target" href="gobject/gobject-GParamSpec.html#g-param-spec-get-redirect-target">
|
587
|
+
<ANCHOR id="g-param-spec-internal" href="gobject/gobject-GParamSpec.html#g-param-spec-internal">
|
588
|
+
<ANCHOR id="GParamSpecTypeInfo" href="gobject/gobject-GParamSpec.html#GParamSpecTypeInfo">
|
589
|
+
<ANCHOR id="g-param-type-register-static" href="gobject/gobject-GParamSpec.html#g-param-type-register-static">
|
590
|
+
<ANCHOR id="GParamSpecPool" href="gobject/gobject-GParamSpec.html#GParamSpecPool">
|
591
|
+
<ANCHOR id="g-param-spec-pool-new" href="gobject/gobject-GParamSpec.html#g-param-spec-pool-new">
|
592
|
+
<ANCHOR id="g-param-spec-pool-insert" href="gobject/gobject-GParamSpec.html#g-param-spec-pool-insert">
|
593
|
+
<ANCHOR id="g-param-spec-pool-remove" href="gobject/gobject-GParamSpec.html#g-param-spec-pool-remove">
|
594
|
+
<ANCHOR id="g-param-spec-pool-lookup" href="gobject/gobject-GParamSpec.html#g-param-spec-pool-lookup">
|
595
|
+
<ANCHOR id="g-param-spec-pool-list" href="gobject/gobject-GParamSpec.html#g-param-spec-pool-list">
|
596
|
+
<ANCHOR id="g-param-spec-pool-list-owned" href="gobject/gobject-GParamSpec.html#g-param-spec-pool-list-owned">
|
597
|
+
<ANCHOR id="gobject-GParamSpec.see-also" href="gobject/gobject-GParamSpec.html#gobject-GParamSpec.see-also">
|
598
|
+
<ANCHOR id="gobject-Varargs-Value-Collection" href="gobject/gobject-Varargs-Value-Collection.html">
|
599
|
+
<ANCHOR id="gobject-Varargs-Value-Collection.synopsis" href="gobject/gobject-Varargs-Value-Collection.html#gobject-Varargs-Value-Collection.synopsis">
|
600
|
+
<ANCHOR id="gobject-Varargs-Value-Collection.description" href="gobject/gobject-Varargs-Value-Collection.html#gobject-Varargs-Value-Collection.description">
|
601
|
+
<ANCHOR id="gobject-Varargs-Value-Collection.details" href="gobject/gobject-Varargs-Value-Collection.html#gobject-Varargs-Value-Collection.details">
|
602
|
+
<ANCHOR id="GTypeCValue" href="gobject/gobject-Varargs-Value-Collection.html#GTypeCValue">
|
603
|
+
<ANCHOR id="G-VALUE-COLLECT-INIT:CAPS" href="gobject/gobject-Varargs-Value-Collection.html#G-VALUE-COLLECT-INIT:CAPS">
|
604
|
+
<ANCHOR id="G-VALUE-COLLECT:CAPS" href="gobject/gobject-Varargs-Value-Collection.html#G-VALUE-COLLECT:CAPS">
|
605
|
+
<ANCHOR id="G-VALUE-LCOPY:CAPS" href="gobject/gobject-Varargs-Value-Collection.html#G-VALUE-LCOPY:CAPS">
|
606
|
+
<ANCHOR id="G-VALUE-COLLECT-FORMAT-MAX-LENGTH:CAPS" href="gobject/gobject-Varargs-Value-Collection.html#G-VALUE-COLLECT-FORMAT-MAX-LENGTH:CAPS">
|
607
|
+
<ANCHOR id="gobject-Varargs-Value-Collection.see-also" href="gobject/gobject-Varargs-Value-Collection.html#gobject-Varargs-Value-Collection.see-also">
|
608
|
+
<ANCHOR id="gobject-Signals" href="gobject/gobject-Signals.html">
|
609
|
+
<ANCHOR id="gobject-Signals.synopsis" href="gobject/gobject-Signals.html#gobject-Signals.synopsis">
|
610
|
+
<ANCHOR id="gobject-Signals.description" href="gobject/gobject-Signals.html#gobject-Signals.description">
|
611
|
+
<ANCHOR id="gobject-Signals.details" href="gobject/gobject-Signals.html#gobject-Signals.details">
|
612
|
+
<ANCHOR id="GSignalInvocationHint" href="gobject/gobject-Signals.html#GSignalInvocationHint">
|
613
|
+
<ANCHOR id="GSignalAccumulator" href="gobject/gobject-Signals.html#GSignalAccumulator">
|
614
|
+
<ANCHOR id="GSignalCMarshaller" href="gobject/gobject-Signals.html#GSignalCMarshaller">
|
615
|
+
<ANCHOR id="GSignalEmissionHook" href="gobject/gobject-Signals.html#GSignalEmissionHook">
|
616
|
+
<ANCHOR id="GSignalFlags" href="gobject/gobject-Signals.html#GSignalFlags">
|
617
|
+
<ANCHOR id="G-SIGNAL-RUN-FIRST:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">
|
618
|
+
<ANCHOR id="G-SIGNAL-RUN-LAST:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">
|
619
|
+
<ANCHOR id="G-SIGNAL-RUN-CLEANUP:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-RUN-CLEANUP:CAPS">
|
620
|
+
<ANCHOR id="G-SIGNAL-NO-RECURSE:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-NO-RECURSE:CAPS">
|
621
|
+
<ANCHOR id="G-SIGNAL-DETAILED:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-DETAILED:CAPS">
|
622
|
+
<ANCHOR id="G-SIGNAL-ACTION:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">
|
623
|
+
<ANCHOR id="G-SIGNAL-NO-HOOKS:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">
|
624
|
+
<ANCHOR id="GSignalMatchType" href="gobject/gobject-Signals.html#GSignalMatchType">
|
625
|
+
<ANCHOR id="G-SIGNAL-MATCH-ID:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-MATCH-ID:CAPS">
|
626
|
+
<ANCHOR id="G-SIGNAL-MATCH-DETAIL:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-MATCH-DETAIL:CAPS">
|
627
|
+
<ANCHOR id="G-SIGNAL-MATCH-CLOSURE:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-MATCH-CLOSURE:CAPS">
|
628
|
+
<ANCHOR id="G-SIGNAL-MATCH-FUNC:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-MATCH-FUNC:CAPS">
|
629
|
+
<ANCHOR id="G-SIGNAL-MATCH-DATA:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-MATCH-DATA:CAPS">
|
630
|
+
<ANCHOR id="G-SIGNAL-MATCH-UNBLOCKED:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-MATCH-UNBLOCKED:CAPS">
|
631
|
+
<ANCHOR id="GSignalQuery" href="gobject/gobject-Signals.html#GSignalQuery">
|
632
|
+
<ANCHOR id="G-SIGNAL-TYPE-STATIC-SCOPE:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-TYPE-STATIC-SCOPE:CAPS">
|
633
|
+
<ANCHOR id="G-SIGNAL-MATCH-MASK:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-MATCH-MASK:CAPS">
|
634
|
+
<ANCHOR id="G-SIGNAL-FLAGS-MASK:CAPS" href="gobject/gobject-Signals.html#G-SIGNAL-FLAGS-MASK:CAPS">
|
635
|
+
<ANCHOR id="g-signal-new" href="gobject/gobject-Signals.html#g-signal-new">
|
636
|
+
<ANCHOR id="g-signal-newv" href="gobject/gobject-Signals.html#g-signal-newv">
|
637
|
+
<ANCHOR id="g-signal-new-valist" href="gobject/gobject-Signals.html#g-signal-new-valist">
|
638
|
+
<ANCHOR id="g-signal-query" href="gobject/gobject-Signals.html#g-signal-query">
|
639
|
+
<ANCHOR id="g-signal-lookup" href="gobject/gobject-Signals.html#g-signal-lookup">
|
640
|
+
<ANCHOR id="g-signal-name" href="gobject/gobject-Signals.html#g-signal-name">
|
641
|
+
<ANCHOR id="g-signal-list-ids" href="gobject/gobject-Signals.html#g-signal-list-ids">
|
642
|
+
<ANCHOR id="g-signal-emit" href="gobject/gobject-Signals.html#g-signal-emit">
|
643
|
+
<ANCHOR id="g-signal-emit-by-name" href="gobject/gobject-Signals.html#g-signal-emit-by-name">
|
644
|
+
<ANCHOR id="g-signal-emitv" href="gobject/gobject-Signals.html#g-signal-emitv">
|
645
|
+
<ANCHOR id="g-signal-emit-valist" href="gobject/gobject-Signals.html#g-signal-emit-valist">
|
646
|
+
<ANCHOR id="g-signal-connect" href="gobject/gobject-Signals.html#g-signal-connect">
|
647
|
+
<ANCHOR id="g-signal-connect-after" href="gobject/gobject-Signals.html#g-signal-connect-after">
|
648
|
+
<ANCHOR id="g-signal-connect-swapped" href="gobject/gobject-Signals.html#g-signal-connect-swapped">
|
649
|
+
<ANCHOR id="g-signal-connect-object" href="gobject/gobject-Signals.html#g-signal-connect-object">
|
650
|
+
<ANCHOR id="GConnectFlags" href="gobject/gobject-Signals.html#GConnectFlags">
|
651
|
+
<ANCHOR id="G-CONNECT-AFTER:CAPS" href="gobject/gobject-Signals.html#G-CONNECT-AFTER:CAPS">
|
652
|
+
<ANCHOR id="G-CONNECT-SWAPPED:CAPS" href="gobject/gobject-Signals.html#G-CONNECT-SWAPPED:CAPS">
|
653
|
+
<ANCHOR id="g-signal-connect-data" href="gobject/gobject-Signals.html#g-signal-connect-data">
|
654
|
+
<ANCHOR id="g-signal-connect-closure" href="gobject/gobject-Signals.html#g-signal-connect-closure">
|
655
|
+
<ANCHOR id="g-signal-connect-closure-by-id" href="gobject/gobject-Signals.html#g-signal-connect-closure-by-id">
|
656
|
+
<ANCHOR id="g-signal-handler-block" href="gobject/gobject-Signals.html#g-signal-handler-block">
|
657
|
+
<ANCHOR id="g-signal-handler-unblock" href="gobject/gobject-Signals.html#g-signal-handler-unblock">
|
658
|
+
<ANCHOR id="g-signal-handler-disconnect" href="gobject/gobject-Signals.html#g-signal-handler-disconnect">
|
659
|
+
<ANCHOR id="g-signal-handler-find" href="gobject/gobject-Signals.html#g-signal-handler-find">
|
660
|
+
<ANCHOR id="g-signal-handlers-block-matched" href="gobject/gobject-Signals.html#g-signal-handlers-block-matched">
|
661
|
+
<ANCHOR id="g-signal-handlers-unblock-matched" href="gobject/gobject-Signals.html#g-signal-handlers-unblock-matched">
|
662
|
+
<ANCHOR id="g-signal-handlers-disconnect-matched" href="gobject/gobject-Signals.html#g-signal-handlers-disconnect-matched">
|
663
|
+
<ANCHOR id="g-signal-handler-is-connected" href="gobject/gobject-Signals.html#g-signal-handler-is-connected">
|
664
|
+
<ANCHOR id="g-signal-handlers-block-by-func" href="gobject/gobject-Signals.html#g-signal-handlers-block-by-func">
|
665
|
+
<ANCHOR id="g-signal-handlers-unblock-by-func" href="gobject/gobject-Signals.html#g-signal-handlers-unblock-by-func">
|
666
|
+
<ANCHOR id="g-signal-handlers-disconnect-by-func" href="gobject/gobject-Signals.html#g-signal-handlers-disconnect-by-func">
|
667
|
+
<ANCHOR id="g-signal-has-handler-pending" href="gobject/gobject-Signals.html#g-signal-has-handler-pending">
|
668
|
+
<ANCHOR id="g-signal-stop-emission" href="gobject/gobject-Signals.html#g-signal-stop-emission">
|
669
|
+
<ANCHOR id="g-signal-stop-emission-by-name" href="gobject/gobject-Signals.html#g-signal-stop-emission-by-name">
|
670
|
+
<ANCHOR id="g-signal-override-class-closure" href="gobject/gobject-Signals.html#g-signal-override-class-closure">
|
671
|
+
<ANCHOR id="g-signal-chain-from-overridden" href="gobject/gobject-Signals.html#g-signal-chain-from-overridden">
|
672
|
+
<ANCHOR id="g-signal-new-class-handler" href="gobject/gobject-Signals.html#g-signal-new-class-handler">
|
673
|
+
<ANCHOR id="g-signal-override-class-handler" href="gobject/gobject-Signals.html#g-signal-override-class-handler">
|
674
|
+
<ANCHOR id="g-signal-chain-from-overridden-handler" href="gobject/gobject-Signals.html#g-signal-chain-from-overridden-handler">
|
675
|
+
<ANCHOR id="g-signal-add-emission-hook" href="gobject/gobject-Signals.html#g-signal-add-emission-hook">
|
676
|
+
<ANCHOR id="g-signal-remove-emission-hook" href="gobject/gobject-Signals.html#g-signal-remove-emission-hook">
|
677
|
+
<ANCHOR id="g-signal-parse-name" href="gobject/gobject-Signals.html#g-signal-parse-name">
|
678
|
+
<ANCHOR id="g-signal-get-invocation-hint" href="gobject/gobject-Signals.html#g-signal-get-invocation-hint">
|
679
|
+
<ANCHOR id="g-signal-type-cclosure-new" href="gobject/gobject-Signals.html#g-signal-type-cclosure-new">
|
680
|
+
<ANCHOR id="g-signal-accumulator-true-handled" href="gobject/gobject-Signals.html#g-signal-accumulator-true-handled">
|
681
|
+
<ANCHOR id="gobject-Closures" href="gobject/gobject-Closures.html">
|
682
|
+
<ANCHOR id="gobject-Closures.synopsis" href="gobject/gobject-Closures.html#gobject-Closures.synopsis">
|
683
|
+
<ANCHOR id="gobject-Closures.description" href="gobject/gobject-Closures.html#gobject-Closures.description">
|
684
|
+
<ANCHOR id="gobject-Closures.details" href="gobject/gobject-Closures.html#gobject-Closures.details">
|
685
|
+
<ANCHOR id="G-CLOSURE-NEEDS-MARSHAL:CAPS" href="gobject/gobject-Closures.html#G-CLOSURE-NEEDS-MARSHAL:CAPS">
|
686
|
+
<ANCHOR id="G-CLOSURE-N-NOTIFIERS:CAPS" href="gobject/gobject-Closures.html#G-CLOSURE-N-NOTIFIERS:CAPS">
|
687
|
+
<ANCHOR id="G-CCLOSURE-SWAP-DATA:CAPS" href="gobject/gobject-Closures.html#G-CCLOSURE-SWAP-DATA:CAPS">
|
688
|
+
<ANCHOR id="G-CALLBACK:CAPS" href="gobject/gobject-Closures.html#G-CALLBACK:CAPS">
|
689
|
+
<ANCHOR id="GCallback" href="gobject/gobject-Closures.html#GCallback">
|
690
|
+
<ANCHOR id="GClosure" href="gobject/gobject-Closures.html#GClosure">
|
691
|
+
<ANCHOR id="G-TYPE-CLOSURE:CAPS" href="gobject/gobject-Closures.html#G-TYPE-CLOSURE:CAPS">
|
692
|
+
<ANCHOR id="GCClosure" href="gobject/gobject-Closures.html#GCClosure">
|
693
|
+
<ANCHOR id="GClosureMarshal" href="gobject/gobject-Closures.html#GClosureMarshal">
|
694
|
+
<ANCHOR id="GClosureNotify" href="gobject/gobject-Closures.html#GClosureNotify">
|
695
|
+
<ANCHOR id="g-cclosure-new" href="gobject/gobject-Closures.html#g-cclosure-new">
|
696
|
+
<ANCHOR id="g-cclosure-new-swap" href="gobject/gobject-Closures.html#g-cclosure-new-swap">
|
697
|
+
<ANCHOR id="g-cclosure-new-object" href="gobject/gobject-Closures.html#g-cclosure-new-object">
|
698
|
+
<ANCHOR id="g-cclosure-new-object-swap" href="gobject/gobject-Closures.html#g-cclosure-new-object-swap">
|
699
|
+
<ANCHOR id="g-closure-new-object" href="gobject/gobject-Closures.html#g-closure-new-object">
|
700
|
+
<ANCHOR id="g-closure-ref" href="gobject/gobject-Closures.html#g-closure-ref">
|
701
|
+
<ANCHOR id="g-closure-sink" href="gobject/gobject-Closures.html#g-closure-sink">
|
702
|
+
<ANCHOR id="g-closure-unref" href="gobject/gobject-Closures.html#g-closure-unref">
|
703
|
+
<ANCHOR id="g-closure-invoke" href="gobject/gobject-Closures.html#g-closure-invoke">
|
704
|
+
<ANCHOR id="g-closure-invalidate" href="gobject/gobject-Closures.html#g-closure-invalidate">
|
705
|
+
<ANCHOR id="g-closure-add-finalize-notifier" href="gobject/gobject-Closures.html#g-closure-add-finalize-notifier">
|
706
|
+
<ANCHOR id="g-closure-add-invalidate-notifier" href="gobject/gobject-Closures.html#g-closure-add-invalidate-notifier">
|
707
|
+
<ANCHOR id="g-closure-remove-finalize-notifier" href="gobject/gobject-Closures.html#g-closure-remove-finalize-notifier">
|
708
|
+
<ANCHOR id="g-closure-remove-invalidate-notifier" href="gobject/gobject-Closures.html#g-closure-remove-invalidate-notifier">
|
709
|
+
<ANCHOR id="g-closure-new-simple" href="gobject/gobject-Closures.html#g-closure-new-simple">
|
710
|
+
<ANCHOR id="g-closure-set-marshal" href="gobject/gobject-Closures.html#g-closure-set-marshal">
|
711
|
+
<ANCHOR id="g-closure-add-marshal-guards" href="gobject/gobject-Closures.html#g-closure-add-marshal-guards">
|
712
|
+
<ANCHOR id="g-closure-set-meta-marshal" href="gobject/gobject-Closures.html#g-closure-set-meta-marshal">
|
713
|
+
<ANCHOR id="g-source-set-closure" href="gobject/gobject-Closures.html#g-source-set-closure">
|
714
|
+
<ANCHOR id="G-TYPE-IO-CHANNEL:CAPS" href="gobject/gobject-Closures.html#G-TYPE-IO-CHANNEL:CAPS">
|
715
|
+
<ANCHOR id="G-TYPE-IO-CONDITION:CAPS" href="gobject/gobject-Closures.html#G-TYPE-IO-CONDITION:CAPS">
|
716
|
+
<ANCHOR id="g-cclosure-marshal-VOID--VOID" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--VOID">
|
717
|
+
<ANCHOR id="g-cclosure-marshal-VOID--BOOLEAN" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--BOOLEAN">
|
718
|
+
<ANCHOR id="g-cclosure-marshal-VOID--CHAR" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--CHAR">
|
719
|
+
<ANCHOR id="g-cclosure-marshal-VOID--UCHAR" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--UCHAR">
|
720
|
+
<ANCHOR id="g-cclosure-marshal-VOID--INT" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--INT">
|
721
|
+
<ANCHOR id="g-cclosure-marshal-VOID--UINT" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--UINT">
|
722
|
+
<ANCHOR id="g-cclosure-marshal-VOID--LONG" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--LONG">
|
723
|
+
<ANCHOR id="g-cclosure-marshal-VOID--ULONG" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--ULONG">
|
724
|
+
<ANCHOR id="g-cclosure-marshal-VOID--ENUM" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--ENUM">
|
725
|
+
<ANCHOR id="g-cclosure-marshal-VOID--FLAGS" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--FLAGS">
|
726
|
+
<ANCHOR id="g-cclosure-marshal-VOID--FLOAT" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--FLOAT">
|
727
|
+
<ANCHOR id="g-cclosure-marshal-VOID--DOUBLE" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--DOUBLE">
|
728
|
+
<ANCHOR id="g-cclosure-marshal-VOID--STRING" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--STRING">
|
729
|
+
<ANCHOR id="g-cclosure-marshal-VOID--PARAM" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--PARAM">
|
730
|
+
<ANCHOR id="g-cclosure-marshal-VOID--BOXED" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--BOXED">
|
731
|
+
<ANCHOR id="g-cclosure-marshal-VOID--POINTER" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--POINTER">
|
732
|
+
<ANCHOR id="g-cclosure-marshal-VOID--OBJECT" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--OBJECT">
|
733
|
+
<ANCHOR id="g-cclosure-marshal-VOID--VARIANT" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--VARIANT">
|
734
|
+
<ANCHOR id="g-cclosure-marshal-STRING--OBJECT-POINTER" href="gobject/gobject-Closures.html#g-cclosure-marshal-STRING--OBJECT-POINTER">
|
735
|
+
<ANCHOR id="g-cclosure-marshal-VOID--UINT-POINTER" href="gobject/gobject-Closures.html#g-cclosure-marshal-VOID--UINT-POINTER">
|
736
|
+
<ANCHOR id="g-cclosure-marshal-BOOLEAN--FLAGS" href="gobject/gobject-Closures.html#g-cclosure-marshal-BOOLEAN--FLAGS">
|
737
|
+
<ANCHOR id="g-cclosure-marshal-BOOL--FLAGS" href="gobject/gobject-Closures.html#g-cclosure-marshal-BOOL--FLAGS">
|
738
|
+
<ANCHOR id="gobject-Value-arrays" href="gobject/gobject-Value-arrays.html">
|
739
|
+
<ANCHOR id="gobject-Value-arrays.synopsis" href="gobject/gobject-Value-arrays.html#gobject-Value-arrays.synopsis">
|
740
|
+
<ANCHOR id="gobject-Value-arrays.description" href="gobject/gobject-Value-arrays.html#gobject-Value-arrays.description">
|
741
|
+
<ANCHOR id="gobject-Value-arrays.details" href="gobject/gobject-Value-arrays.html#gobject-Value-arrays.details">
|
742
|
+
<ANCHOR id="GValueArray" href="gobject/gobject-Value-arrays.html#GValueArray">
|
743
|
+
<ANCHOR id="g-value-array-get-nth" href="gobject/gobject-Value-arrays.html#g-value-array-get-nth">
|
744
|
+
<ANCHOR id="g-value-array-new" href="gobject/gobject-Value-arrays.html#g-value-array-new">
|
745
|
+
<ANCHOR id="g-value-array-copy" href="gobject/gobject-Value-arrays.html#g-value-array-copy">
|
746
|
+
<ANCHOR id="g-value-array-free" href="gobject/gobject-Value-arrays.html#g-value-array-free">
|
747
|
+
<ANCHOR id="g-value-array-append" href="gobject/gobject-Value-arrays.html#g-value-array-append">
|
748
|
+
<ANCHOR id="g-value-array-prepend" href="gobject/gobject-Value-arrays.html#g-value-array-prepend">
|
749
|
+
<ANCHOR id="g-value-array-insert" href="gobject/gobject-Value-arrays.html#g-value-array-insert">
|
750
|
+
<ANCHOR id="g-value-array-remove" href="gobject/gobject-Value-arrays.html#g-value-array-remove">
|
751
|
+
<ANCHOR id="g-value-array-sort" href="gobject/gobject-Value-arrays.html#g-value-array-sort">
|
752
|
+
<ANCHOR id="g-value-array-sort-with-data" href="gobject/gobject-Value-arrays.html#g-value-array-sort-with-data">
|
753
|
+
<ANCHOR id="gobject-Value-arrays.see-also" href="gobject/gobject-Value-arrays.html#gobject-Value-arrays.see-also">
|
754
|
+
<ANCHOR id="GBinding" href="gobject/GBinding.html">
|
755
|
+
<ANCHOR id="GBinding.synopsis" href="gobject/GBinding.html#GBinding.synopsis">
|
756
|
+
<ANCHOR id="GBinding.object-hierarchy" href="gobject/GBinding.html#GBinding.object-hierarchy">
|
757
|
+
<ANCHOR id="GBinding.properties" href="gobject/GBinding.html#GBinding.properties">
|
758
|
+
<ANCHOR id="GBinding.description" href="gobject/GBinding.html#GBinding.description">
|
759
|
+
<ANCHOR id="GBinding.details" href="gobject/GBinding.html#GBinding.details">
|
760
|
+
<ANCHOR id="GBinding-struct" href="gobject/GBinding.html#GBinding-struct">
|
761
|
+
<ANCHOR id="GBindingFlags" href="gobject/GBinding.html#GBindingFlags">
|
762
|
+
<ANCHOR id="G-BINDING-DEFAULT:CAPS" href="gobject/GBinding.html#G-BINDING-DEFAULT:CAPS">
|
763
|
+
<ANCHOR id="G-BINDING-BIDIRECTIONAL:CAPS" href="gobject/GBinding.html#G-BINDING-BIDIRECTIONAL:CAPS">
|
764
|
+
<ANCHOR id="G-BINDING-SYNC-CREATE:CAPS" href="gobject/GBinding.html#G-BINDING-SYNC-CREATE:CAPS">
|
765
|
+
<ANCHOR id="G-BINDING-INVERT-BOOLEAN:CAPS" href="gobject/GBinding.html#G-BINDING-INVERT-BOOLEAN:CAPS">
|
766
|
+
<ANCHOR id="g-binding-get-source" href="gobject/GBinding.html#g-binding-get-source">
|
767
|
+
<ANCHOR id="g-binding-get-source-property" href="gobject/GBinding.html#g-binding-get-source-property">
|
768
|
+
<ANCHOR id="g-binding-get-target" href="gobject/GBinding.html#g-binding-get-target">
|
769
|
+
<ANCHOR id="g-binding-get-target-property" href="gobject/GBinding.html#g-binding-get-target-property">
|
770
|
+
<ANCHOR id="g-binding-get-flags" href="gobject/GBinding.html#g-binding-get-flags">
|
771
|
+
<ANCHOR id="g-object-bind-property" href="gobject/GBinding.html#g-object-bind-property">
|
772
|
+
<ANCHOR id="GBindingTransformFunc" href="gobject/GBinding.html#GBindingTransformFunc">
|
773
|
+
<ANCHOR id="g-object-bind-property-full" href="gobject/GBinding.html#g-object-bind-property-full">
|
774
|
+
<ANCHOR id="g-object-bind-property-with-closures" href="gobject/GBinding.html#g-object-bind-property-with-closures">
|
775
|
+
<ANCHOR id="GBinding.property-details" href="gobject/GBinding.html#GBinding.property-details">
|
776
|
+
<ANCHOR id="GBinding--flags" href="gobject/GBinding.html#GBinding--flags">
|
777
|
+
<ANCHOR id="GBinding--source" href="gobject/GBinding.html#GBinding--source">
|
778
|
+
<ANCHOR id="GBinding--source-property" href="gobject/GBinding.html#GBinding--source-property">
|
779
|
+
<ANCHOR id="GBinding--target" href="gobject/GBinding.html#GBinding--target">
|
780
|
+
<ANCHOR id="GBinding--target-property" href="gobject/GBinding.html#GBinding--target-property">
|
781
|
+
<ANCHOR id="glib-mkenums" href="gobject/glib-mkenums.html">
|
782
|
+
<ANCHOR id="glib-genmarshal" href="gobject/glib-genmarshal.html">
|
783
|
+
<ANCHOR id="gobject-query" href="gobject/gobject-query.html">
|
784
|
+
<ANCHOR id="annotation-glossterm-array" href="gobject/annotation-glossary.html#annotation-glossterm-array">
|
785
|
+
<ANCHOR id="annotation-glossterm-allow-none" href="gobject/annotation-glossary.html#annotation-glossterm-allow-none">
|
786
|
+
<ANCHOR id="annotation-glossterm-transfer none" href="gobject/annotation-glossary.html#annotation-glossterm-transfer none">
|