glib2 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +40 -0
- data/Rakefile +157 -0
- data/ext/glib2/depend +18 -0
- data/ext/glib2/extconf.rb +80 -0
- data/ext/glib2/glib2.def +147 -0
- data/ext/glib2/rbgcompat.h +29 -0
- data/ext/glib2/rbglib.c +1158 -0
- data/ext/glib2/rbglib.h +202 -0
- data/ext/glib2/rbglib2conversions.h +57 -0
- data/ext/glib2/rbglib_bookmarkfile.c +546 -0
- data/ext/glib2/rbglib_convert.c +197 -0
- data/ext/glib2/rbglib_error.c +164 -0
- data/ext/glib2/rbglib_fileutils.c +119 -0
- data/ext/glib2/rbglib_gettext.c +48 -0
- data/ext/glib2/rbglib_i18n.c +40 -0
- data/ext/glib2/rbglib_int64.c +165 -0
- data/ext/glib2/rbglib_io_constants.c +30 -0
- data/ext/glib2/rbglib_iochannel.c +824 -0
- data/ext/glib2/rbglib_iochannel_win32_socket.c +56 -0
- data/ext/glib2/rbglib_iochannelerror.c +49 -0
- data/ext/glib2/rbglib_keyfile.c +755 -0
- data/ext/glib2/rbglib_maincontext.c +565 -0
- data/ext/glib2/rbglib_mainloop.c +121 -0
- data/ext/glib2/rbglib_messages.c +148 -0
- data/ext/glib2/rbglib_pollfd.c +112 -0
- data/ext/glib2/rbglib_shell.c +64 -0
- data/ext/glib2/rbglib_shellerror.c +34 -0
- data/ext/glib2/rbglib_source.c +242 -0
- data/ext/glib2/rbglib_spawn.c +245 -0
- data/ext/glib2/rbglib_spawnerror.c +53 -0
- data/ext/glib2/rbglib_threads.c +61 -0
- data/ext/glib2/rbglib_timer.c +127 -0
- data/ext/glib2/rbglib_ucs4.c +79 -0
- data/ext/glib2/rbglib_unichar.c +201 -0
- data/ext/glib2/rbglib_unicode.c +90 -0
- data/ext/glib2/rbglib_utf16.c +78 -0
- data/ext/glib2/rbglib_utf8.c +257 -0
- data/ext/glib2/rbglib_utils.c +339 -0
- data/ext/glib2/rbglib_win32.c +112 -0
- data/ext/glib2/rbglibdeprecated.c +56 -0
- data/ext/glib2/rbglibdeprecated.h +34 -0
- data/ext/glib2/rbgobj_boxed.c +295 -0
- data/ext/glib2/rbgobj_closure.c +345 -0
- data/ext/glib2/rbgobj_convert.c +195 -0
- data/ext/glib2/rbgobj_enumflags.c +109 -0
- data/ext/glib2/rbgobj_enums.c +401 -0
- data/ext/glib2/rbgobj_flags.c +522 -0
- data/ext/glib2/rbgobj_object.c +885 -0
- data/ext/glib2/rbgobj_param.c +378 -0
- data/ext/glib2/rbgobj_paramspecs.c +311 -0
- data/ext/glib2/rbgobj_signal.c +978 -0
- data/ext/glib2/rbgobj_strv.c +44 -0
- data/ext/glib2/rbgobj_type.c +846 -0
- data/ext/glib2/rbgobj_typeinstance.c +128 -0
- data/ext/glib2/rbgobj_typeinterface.c +149 -0
- data/ext/glib2/rbgobj_typemodule.c +72 -0
- data/ext/glib2/rbgobj_typeplugin.c +57 -0
- data/ext/glib2/rbgobj_value.c +395 -0
- data/ext/glib2/rbgobj_valuearray.c +100 -0
- data/ext/glib2/rbgobj_valuetypes.c +243 -0
- data/ext/glib2/rbgobject.c +387 -0
- data/ext/glib2/rbgobject.h +301 -0
- data/ext/glib2/rbgprivate.h +178 -0
- data/ext/glib2/rbgutil.c +183 -0
- data/ext/glib2/rbgutil.h +119 -0
- data/ext/glib2/rbgutil_callback.c +272 -0
- data/ext/glib2/rbgutil_list.c +173 -0
- data/ext/glib2/rbgutil_list.h +85 -0
- data/ext/glib2/rbgutildeprecated.c +252 -0
- data/ext/glib2/rbgutildeprecated.h +63 -0
- data/extconf.rb +49 -0
- data/lib/2.0/glib2.so +0 -0
- data/lib/2.1/glib2.so +0 -0
- data/lib/2.2/glib2.so +0 -0
- data/lib/glib-mkenums.rb +214 -0
- data/lib/glib2.rb +231 -0
- data/lib/glib2/deprecatable.rb +153 -0
- data/lib/gnome2-raketask.rb +8 -0
- data/lib/gnome2/rake/external-package.rb +227 -0
- data/lib/gnome2/rake/native-binary-build-task.rb +129 -0
- data/lib/gnome2/rake/package-task.rb +273 -0
- data/lib/gnome2/rake/package.rb +152 -0
- data/lib/gnome2/rake/source-download-task.rb +82 -0
- data/lib/gnome2/rake/windows-binary-build-task.rb +303 -0
- data/lib/gnome2/rake/windows-binary-download-task.rb +181 -0
- data/lib/mkmf-gnome2.rb +637 -0
- data/sample/bookmarkfile.rb +66 -0
- data/sample/idle.rb +41 -0
- data/sample/iochannel.rb +44 -0
- data/sample/keyfile.rb +62 -0
- data/sample/shell.rb +36 -0
- data/sample/spawn.rb +25 -0
- data/sample/timeout.rb +28 -0
- data/sample/timeout2.rb +35 -0
- data/sample/timer.rb +40 -0
- data/sample/type-register.rb +103 -0
- data/sample/type-register2.rb +104 -0
- data/sample/utils.rb +54 -0
- data/test/glib-test-init.rb +5 -0
- data/test/glib-test-utils.rb +12 -0
- data/test/run-test.rb +21 -0
- data/test/test_enum.rb +99 -0
- data/test/test_file_utils.rb +53 -0
- data/test/test_flags.rb +129 -0
- data/test/test_glib2.rb +122 -0
- data/test/test_iochannel.rb +275 -0
- data/test/test_key_file.rb +42 -0
- data/test/test_mkenums.rb +25 -0
- data/test/test_poll_fd.rb +26 -0
- data/test/test_signal.rb +20 -0
- data/test/test_source.rb +63 -0
- data/test/test_spawn.rb +33 -0
- data/test/test_timeout.rb +28 -0
- data/test/test_unicode.rb +394 -0
- data/test/test_utils.rb +37 -0
- data/test/test_value.rb +31 -0
- data/test/test_win32.rb +13 -0
- data/vendor/local/bin/certtool.exe +0 -0
- data/vendor/local/bin/danetool.exe +0 -0
- data/vendor/local/bin/envsubst.exe +0 -0
- data/vendor/local/bin/gdbus-codegen +39 -0
- data/vendor/local/bin/gdbus.exe +0 -0
- data/vendor/local/bin/gettext.exe +0 -0
- data/vendor/local/bin/gettext.sh +121 -0
- data/vendor/local/bin/gio-querymodules.exe +0 -0
- data/vendor/local/bin/glib-compile-resources.exe +0 -0
- data/vendor/local/bin/glib-compile-schemas.exe +0 -0
- data/vendor/local/bin/glib-genmarshal.exe +0 -0
- data/vendor/local/bin/glib-gettextize +187 -0
- data/vendor/local/bin/glib-mkenums +565 -0
- data/vendor/local/bin/gnutls-cli-debug.exe +0 -0
- data/vendor/local/bin/gnutls-cli.exe +0 -0
- data/vendor/local/bin/gnutls-serv.exe +0 -0
- data/vendor/local/bin/gobject-query.exe +0 -0
- data/vendor/local/bin/gresource.exe +0 -0
- data/vendor/local/bin/gsettings.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper-console.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper.exe +0 -0
- data/vendor/local/bin/iconv.exe +0 -0
- data/vendor/local/bin/libasprintf-0.dll +0 -0
- data/vendor/local/bin/libcharset-1.dll +0 -0
- data/vendor/local/bin/libffi-6.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/libgmp-10.dll +0 -0
- data/vendor/local/bin/libgnutls-28.def +861 -0
- data/vendor/local/bin/libgnutls-28.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-27.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-28.def +228 -0
- data/vendor/local/bin/libgnutls-xssl-0.dll +0 -0
- data/vendor/local/bin/libgnutls-xssl-28.def +13 -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/libhogweed-2-5.dll +0 -0
- data/vendor/local/bin/libiconv-2.dll +0 -0
- data/vendor/local/bin/libintl-8.dll +0 -0
- data/vendor/local/bin/libnettle-4-7.dll +0 -0
- data/vendor/local/bin/nettle-hash.exe +0 -0
- data/vendor/local/bin/nettle-lfib-stream.exe +0 -0
- data/vendor/local/bin/ngettext.exe +0 -0
- data/vendor/local/bin/ocsptool.exe +0 -0
- data/vendor/local/bin/pkcs1-conv.exe +0 -0
- data/vendor/local/bin/psktool.exe +0 -0
- data/vendor/local/bin/sexp-conv.exe +0 -0
- data/vendor/local/bin/srptool.exe +0 -0
- data/vendor/local/include/autosprintf.h +67 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32inputstream.h +82 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32outputstream.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gaction.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroup.h +161 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroupexporter.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gactionmap.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gappinfo.h +313 -0
- data/vendor/local/include/glib-2.0/gio/gapplication.h +236 -0
- data/vendor/local/include/glib-2.0/gio/gapplicationcommandline.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +124 -0
- data/vendor/local/include/glib-2.0/gio/gasyncresult.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gbytesicon.h +52 -0
- data/vendor/local/include/glib-2.0/gio/gcancellable.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +63 -0
- data/vendor/local/include/glib-2.0/gio/gcontenttype.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gconverter.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gcredentials.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +180 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gdbusactiongroup.h +54 -0
- data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +65 -0
- data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +51 -0
- data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +663 -0
- data/vendor/local/include/glib-2.0/gio/gdbuserror.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterface.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +325 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmenumodel.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +102 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobject.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanager.h +94 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h +146 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectproxy.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectskeleton.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +214 -0
- data/vendor/local/include/glib-2.0/gio/gdbusserver.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gdbusutils.h +55 -0
- data/vendor/local/include/glib-2.0/gio/gdrive.h +259 -0
- data/vendor/local/include/glib-2.0/gio/gemblem.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gfile.h +1250 -0
- data/vendor/local/include/glib-2.0/gio/gfileattribute.h +84 -0
- data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +144 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +57 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +1070 -0
- data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +114 -0
- data/vendor/local/include/glib-2.0/gio/gfileiostream.h +121 -0
- data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gicon.h +101 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddress.h +124 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddressmask.h +85 -0
- data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/ginitable.h +99 -0
- data/vendor/local/include/glib-2.0/gio/ginputstream.h +201 -0
- data/vendor/local/include/glib-2.0/gio/gio.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +1816 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +53 -0
- data/vendor/local/include/glib-2.0/gio/giomodule.h +169 -0
- data/vendor/local/include/glib-2.0/gio/gioscheduler.h +54 -0
- data/vendor/local/include/glib-2.0/gio/giostream.h +135 -0
- data/vendor/local/include/glib-2.0/gio/giotypes.h +535 -0
- data/vendor/local/include/glib-2.0/gio/gloadableicon.h +99 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +90 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +107 -0
- data/vendor/local/include/glib-2.0/gio/gmenu.h +182 -0
- data/vendor/local/include/glib-2.0/gio/gmenuexporter.h +40 -0
- data/vendor/local/include/glib-2.0/gio/gmenumodel.h +305 -0
- data/vendor/local/include/glib-2.0/gio/gmount.h +276 -0
- data/vendor/local/include/glib-2.0/gio/gmountoperation.h +140 -0
- data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gnetworking.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkmonitor.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gnotification.h +97 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +254 -0
- data/vendor/local/include/glib-2.0/gio/gpermission.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gpollableinputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableoutputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableutils.h +64 -0
- data/vendor/local/include/glib-2.0/gio/gpropertyaction.h +47 -0
- data/vendor/local/include/glib-2.0/gio/gproxy.h +128 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +74 -0
- data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gremoteactiongroup.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gresolver.h +212 -0
- data/vendor/local/include/glib-2.0/gio/gresource.h +129 -0
- data/vendor/local/include/glib-2.0/gio/gseekable.h +103 -0
- data/vendor/local/include/glib-2.0/gio/gsettings.h +331 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsschema.h +104 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleaction.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleactiongroup.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +162 -0
- data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleproxyresolver.h +89 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +289 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsocketclient.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +150 -0
- data/vendor/local/include/glib-2.0/gio/gsocketservice.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocess.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocesslauncher.h +116 -0
- data/vendor/local/include/glib-2.0/gio/gtask.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtcpwrapperconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtestdbus.h +72 -0
- data/vendor/local/include/glib-2.0/gio/gthemedicon.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gtlsbackend.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gtlscertificate.h +92 -0
- data/vendor/local/include/glib-2.0/gio/gtlsclientconnection.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gtlsconnection.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gtlsdatabase.h +247 -0
- data/vendor/local/include/glib-2.0/gio/gtlsfiledatabase.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gtlsinteraction.h +148 -0
- data/vendor/local/include/glib-2.0/gio/gtlspassword.h +110 -0
- data/vendor/local/include/glib-2.0/gio/gtlsserverconnection.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gvfs.h +132 -0
- data/vendor/local/include/glib-2.0/gio/gvolume.h +251 -0
- data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +58 -0
- data/vendor/local/include/glib-2.0/glib-object.h +40 -0
- data/vendor/local/include/glib-2.0/glib-unix.h +119 -0
- data/vendor/local/include/glib-2.0/glib.h +112 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gallocator.h +88 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcache.h +75 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcompletion.h +83 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gmain.h +139 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/grel.h +105 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gthread.h +293 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +103 -0
- data/vendor/local/include/glib-2.0/glib/garray.h +238 -0
- data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +109 -0
- data/vendor/local/include/glib-2.0/glib/gatomic.h +281 -0
- data/vendor/local/include/glib-2.0/glib/gbacktrace.h +64 -0
- data/vendor/local/include/glib-2.0/glib/gbase64.h +61 -0
- data/vendor/local/include/glib-2.0/glib/gbitlock.h +76 -0
- data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +255 -0
- data/vendor/local/include/glib-2.0/glib/gbytes.h +90 -0
- data/vendor/local/include/glib-2.0/glib/gcharset.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gchecksum.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +199 -0
- data/vendor/local/include/glib-2.0/glib/gdataset.h +150 -0
- data/vendor/local/include/glib-2.0/glib/gdate.h +309 -0
- data/vendor/local/include/glib-2.0/glib/gdatetime.h +264 -0
- data/vendor/local/include/glib-2.0/glib/gdir.h +64 -0
- data/vendor/local/include/glib-2.0/glib/genviron.h +78 -0
- data/vendor/local/include/glib-2.0/glib/gerror.h +118 -0
- data/vendor/local/include/glib-2.0/glib/gfileutils.h +207 -0
- data/vendor/local/include/glib-2.0/glib/ggettext.h +63 -0
- data/vendor/local/include/glib-2.0/glib/ghash.h +185 -0
- data/vendor/local/include/glib-2.0/glib/ghmac.h +78 -0
- data/vendor/local/include/glib-2.0/glib/ghook.h +202 -0
- data/vendor/local/include/glib-2.0/glib/ghostutils.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +36 -0
- data/vendor/local/include/glib-2.0/glib/gi18n.h +32 -0
- data/vendor/local/include/glib-2.0/glib/giochannel.h +413 -0
- data/vendor/local/include/glib-2.0/glib/gkeyfile.h +320 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +152 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +366 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +614 -0
- data/vendor/local/include/glib-2.0/glib/gmappedfile.h +58 -0
- data/vendor/local/include/glib-2.0/glib/gmarkup.h +262 -0
- data/vendor/local/include/glib-2.0/glib/gmem.h +298 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +407 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +322 -0
- data/vendor/local/include/glib-2.0/glib/goption.h +377 -0
- data/vendor/local/include/glib-2.0/glib/gpattern.h +53 -0
- data/vendor/local/include/glib-2.0/glib/gpoll.h +127 -0
- data/vendor/local/include/glib-2.0/glib/gprimes.h +50 -0
- data/vendor/local/include/glib-2.0/glib/gprintf.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gqsort.h +45 -0
- data/vendor/local/include/glib-2.0/glib/gquark.h +68 -0
- data/vendor/local/include/glib-2.0/glib/gqueue.h +190 -0
- data/vendor/local/include/glib-2.0/glib/grand.h +99 -0
- data/vendor/local/include/glib-2.0/glib/gregex.h +610 -0
- data/vendor/local/include/glib-2.0/glib/gscanner.h +303 -0
- data/vendor/local/include/glib-2.0/glib/gsequence.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gshell.h +59 -0
- data/vendor/local/include/glib-2.0/glib/gslice.h +98 -0
- data/vendor/local/include/glib-2.0/glib/gslist.h +143 -0
- data/vendor/local/include/glib-2.0/glib/gspawn.h +307 -0
- data/vendor/local/include/glib-2.0/glib/gstdio.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +306 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +189 -0
- data/vendor/local/include/glib-2.0/glib/gstringchunk.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +421 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +271 -0
- data/vendor/local/include/glib-2.0/glib/gthreadpool.h +92 -0
- data/vendor/local/include/glib-2.0/glib/gtimer.h +74 -0
- data/vendor/local/include/glib-2.0/glib/gtimezone.h +89 -0
- data/vendor/local/include/glib-2.0/glib/gtrashstack.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gtree.h +104 -0
- data/vendor/local/include/glib-2.0/glib/gtypes.h +482 -0
- data/vendor/local/include/glib-2.0/glib/gunicode.h +860 -0
- data/vendor/local/include/glib-2.0/glib/gurifuncs.h +83 -0
- data/vendor/local/include/glib-2.0/glib/gutils.h +374 -0
- data/vendor/local/include/glib-2.0/glib/gvariant.h +452 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +380 -0
- data/vendor/local/include/glib-2.0/glib/gversion.h +55 -0
- data/vendor/local/include/glib-2.0/glib/gversionmacros.h +345 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +134 -0
- data/vendor/local/include/glib-2.0/gmodule.h +115 -0
- data/vendor/local/include/glib-2.0/gobject/gbinding.h +149 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +122 -0
- data/vendor/local/include/glib-2.0/gobject/gclosure.h +297 -0
- data/vendor/local/include/glib-2.0/gobject/genums.h +273 -0
- data/vendor/local/include/glib-2.0/gobject/glib-types.h +358 -0
- data/vendor/local/include/glib-2.0/gobject/gmarshal.h +385 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +672 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +197 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +447 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1164 -0
- data/vendor/local/include/glib-2.0/gobject/gsignal.h +604 -0
- data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +38 -0
- data/vendor/local/include/glib-2.0/gobject/gtype.h +1990 -0
- data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +278 -0
- data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
- data/vendor/local/include/glib-2.0/gobject/gvalue.h +194 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +104 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +254 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +300 -0
- data/vendor/local/include/gmp.h +2301 -0
- data/vendor/local/include/gnutls/abstract.h +454 -0
- data/vendor/local/include/gnutls/compat.h +401 -0
- data/vendor/local/include/gnutls/crypto.h +117 -0
- data/vendor/local/include/gnutls/dtls.h +92 -0
- data/vendor/local/include/gnutls/gnutls.h +2299 -0
- data/vendor/local/include/gnutls/ocsp.h +257 -0
- data/vendor/local/include/gnutls/openpgp.h +366 -0
- data/vendor/local/include/gnutls/openssl.h +329 -0
- data/vendor/local/include/gnutls/pkcs11.h +356 -0
- data/vendor/local/include/gnutls/pkcs12.h +135 -0
- data/vendor/local/include/gnutls/tpm.h +79 -0
- data/vendor/local/include/gnutls/x509.h +1192 -0
- data/vendor/local/include/gnutls/xssl.h +125 -0
- data/vendor/local/include/iconv.h +242 -0
- data/vendor/local/include/libcharset.h +46 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/include/localcharset.h +42 -0
- data/vendor/local/include/nettle/aes.h +85 -0
- data/vendor/local/include/nettle/arcfour.h +66 -0
- data/vendor/local/include/nettle/arctwo.h +82 -0
- data/vendor/local/include/nettle/asn1.h +144 -0
- data/vendor/local/include/nettle/base16.h +106 -0
- data/vendor/local/include/nettle/base64.h +153 -0
- data/vendor/local/include/nettle/bignum.h +121 -0
- data/vendor/local/include/nettle/blowfish.h +76 -0
- data/vendor/local/include/nettle/buffer.h +98 -0
- data/vendor/local/include/nettle/camellia.h +82 -0
- data/vendor/local/include/nettle/cast128.h +77 -0
- data/vendor/local/include/nettle/cbc.h +76 -0
- data/vendor/local/include/nettle/ctr.h +62 -0
- data/vendor/local/include/nettle/des-compat.h +154 -0
- data/vendor/local/include/nettle/des.h +111 -0
- data/vendor/local/include/nettle/dsa.h +293 -0
- data/vendor/local/include/nettle/ecc-curve.h +45 -0
- data/vendor/local/include/nettle/ecc.h +261 -0
- data/vendor/local/include/nettle/ecdsa.h +94 -0
- data/vendor/local/include/nettle/gcm.h +186 -0
- data/vendor/local/include/nettle/gosthash94.h +88 -0
- data/vendor/local/include/nettle/hmac.h +202 -0
- data/vendor/local/include/nettle/knuth-lfib.h +75 -0
- data/vendor/local/include/nettle/macros.h +238 -0
- data/vendor/local/include/nettle/md2.h +69 -0
- data/vendor/local/include/nettle/md4.h +73 -0
- data/vendor/local/include/nettle/md5-compat.h +50 -0
- data/vendor/local/include/nettle/md5.h +76 -0
- data/vendor/local/include/nettle/memxor.h +22 -0
- data/vendor/local/include/nettle/nettle-meta.h +232 -0
- data/vendor/local/include/nettle/nettle-stdint.h +286 -0
- data/vendor/local/include/nettle/nettle-types.h +92 -0
- data/vendor/local/include/nettle/pbkdf2.h +77 -0
- data/vendor/local/include/nettle/pgp.h +240 -0
- data/vendor/local/include/nettle/pkcs1.h +106 -0
- data/vendor/local/include/nettle/realloc.h +41 -0
- data/vendor/local/include/nettle/ripemd160.h +78 -0
- data/vendor/local/include/nettle/rsa-compat.h +131 -0
- data/vendor/local/include/nettle/rsa.h +419 -0
- data/vendor/local/include/nettle/salsa20.h +93 -0
- data/vendor/local/include/nettle/serpent.h +81 -0
- data/vendor/local/include/nettle/sexp.h +212 -0
- data/vendor/local/include/nettle/sha.h +34 -0
- data/vendor/local/include/nettle/sha1.h +78 -0
- data/vendor/local/include/nettle/sha2.h +156 -0
- data/vendor/local/include/nettle/sha3.h +176 -0
- data/vendor/local/include/nettle/twofish.h +78 -0
- data/vendor/local/include/nettle/umac.h +241 -0
- data/vendor/local/include/nettle/yarrow.h +137 -0
- data/vendor/local/lib/charset.alias +4 -0
- data/vendor/local/lib/gio/modules/libgiognutls.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.la +41 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +199 -0
- data/vendor/local/lib/gthread-2.0.def +3 -0
- data/vendor/local/lib/libasprintf.a +0 -0
- data/vendor/local/lib/libasprintf.dll.a +0 -0
- data/vendor/local/lib/libasprintf.la +41 -0
- data/vendor/local/lib/libcharset.a +0 -0
- data/vendor/local/lib/libcharset.dll.a +0 -0
- data/vendor/local/lib/libcharset.la +41 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffi.h +487 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffitarget.h +150 -0
- data/vendor/local/lib/libffi.a +0 -0
- data/vendor/local/lib/libffi.dll.a +0 -0
- data/vendor/local/lib/libffi.la +41 -0
- data/vendor/local/lib/libgio-2.0.dll.a +0 -0
- data/vendor/local/lib/libgio-2.0.la +41 -0
- data/vendor/local/lib/libglib-2.0.dll.a +0 -0
- data/vendor/local/lib/libglib-2.0.la +41 -0
- data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
- data/vendor/local/lib/libgmodule-2.0.la +41 -0
- data/vendor/local/lib/libgmp.dll.a +0 -0
- data/vendor/local/lib/libgmp.la +41 -0
- data/vendor/local/lib/libgnutls-openssl.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.la +41 -0
- data/vendor/local/lib/libgnutls-xssl.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.la +41 -0
- data/vendor/local/lib/libgnutls.a +0 -0
- data/vendor/local/lib/libgnutls.dll.a +0 -0
- data/vendor/local/lib/libgnutls.la +41 -0
- data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
- data/vendor/local/lib/libgobject-2.0.la +41 -0
- data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
- data/vendor/local/lib/libgthread-2.0.la +41 -0
- data/vendor/local/lib/libhogweed.a +0 -0
- data/vendor/local/lib/libhogweed.dll.a +0 -0
- data/vendor/local/lib/libiconv.dll.a +0 -0
- data/vendor/local/lib/libiconv.la +41 -0
- data/vendor/local/lib/libintl.a +0 -0
- data/vendor/local/lib/libintl.dll.a +0 -0
- data/vendor/local/lib/libintl.la +41 -0
- data/vendor/local/lib/libnettle.a +0 -0
- data/vendor/local/lib/libnettle.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gio-2.0.pc +18 -0
- data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/glib-2.0.pc +16 -0
- data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gnutls.pc +24 -0
- data/vendor/local/lib/pkgconfig/gobject-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/hogweed.pc +18 -0
- data/vendor/local/lib/pkgconfig/libffi.pc +11 -0
- data/vendor/local/lib/pkgconfig/nettle.pc +11 -0
- data/vendor/local/lib/pkgconfig/patched +0 -0
- data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
- data/vendor/local/share/aclocal/glib-gettext.m4 +435 -0
- data/vendor/local/share/aclocal/gsettings.m4 +83 -0
- data/vendor/local/share/bash-completion/completions/gapplication +55 -0
- data/vendor/local/share/bash-completion/completions/gdbus +33 -0
- data/vendor/local/share/bash-completion/completions/gresource +58 -0
- data/vendor/local/share/bash-completion/completions/gsettings +84 -0
- data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +158 -0
- data/vendor/local/share/doc/gettext/bindtextdomain.3.html +154 -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 +139 -0
- data/vendor/local/share/doc/gettext/gettext.1.html +188 -0
- data/vendor/local/share/doc/gettext/gettext.3.html +182 -0
- data/vendor/local/share/doc/gettext/javadoc2/allclasses-frame.html +25 -0
- data/vendor/local/share/doc/gettext/javadoc2/deprecated-list.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html +321 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-frame.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-summary.html +103 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-tree.html +99 -0
- data/vendor/local/share/doc/gettext/javadoc2/help-doc.html +136 -0
- data/vendor/local/share/doc/gettext/javadoc2/index-all.html +111 -0
- data/vendor/local/share/doc/gettext/javadoc2/index.html +22 -0
- data/vendor/local/share/doc/gettext/javadoc2/overview-tree.html +96 -0
- data/vendor/local/share/doc/gettext/javadoc2/package-list +1 -0
- data/vendor/local/share/doc/gettext/javadoc2/packages.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/serialized-form.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/stylesheet.css +29 -0
- data/vendor/local/share/doc/gettext/ngettext.1.html +194 -0
- data/vendor/local/share/doc/gettext/ngettext.3.html +138 -0
- data/vendor/local/share/doc/gettext/textdomain.3.html +140 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/doc/libiconv/iconv.1.html +206 -0
- data/vendor/local/share/doc/libiconv/iconv.3.html +207 -0
- data/vendor/local/share/doc/libiconv/iconv_close.3.html +90 -0
- data/vendor/local/share/doc/libiconv/iconv_open.3.html +318 -0
- data/vendor/local/share/doc/libiconv/iconv_open_into.3.html +120 -0
- data/vendor/local/share/doc/libiconv/iconvctl.3.html +189 -0
- data/vendor/local/share/gdb/auto-load/libglib-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gdb/auto-load/libgobject-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gettext/ABOUT-NLS +1282 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.py +27 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.py +3412 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.py +329 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.py +201 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.py +25 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.py +424 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.py +288 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.py +102 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyo +0 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +257 -0
- data/vendor/local/share/glib-2.0/gdb/gobject.py +295 -0
- data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +268 -0
- data/vendor/local/share/glib-2.0/schemas/gschema.dtd +73 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleAnimal.html +1537 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleCat.html +679 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObject.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObjectManagerClient.html +561 -0
- data/vendor/local/share/gtk-doc/html/gio/GAction.html +832 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionGroup.html +1242 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionMap.html +507 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +2160 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfoMonitor.html +151 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplication.html +2448 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplicationCommandLine.html +981 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +769 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +511 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +705 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +393 -0
- data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +861 -0
- data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +317 -0
- data/vendor/local/share/gtk-doc/html/gio/GConverter.html +467 -0
- data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +564 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusActionGroup.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +4687 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterface.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterfaceSkeleton.html +882 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMenuModel.html +152 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +2484 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +903 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObject.html +404 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManager.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerClient.html +1281 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerServer.html +505 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectProxy.html +260 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectSkeleton.html +491 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2170 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +635 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1595 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +699 -0
- data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1873 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +325 -0
- data/vendor/local/share/gtk-doc/html/gio/GFile.html +9688 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +145 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +713 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +352 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +200 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +4261 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +293 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +345 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +287 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +249 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +251 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +772 -0
- data/vendor/local/share/gtk-doc/html/gio/GIcon.html +479 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +1044 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +419 -0
- data/vendor/local/share/gtk-doc/html/gio/GInitable.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +1164 -0
- data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +308 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +577 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenu.html +1877 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenuModel.html +1205 -0
- data/vendor/local/share/gtk-doc/html/gio/GMount.html +1929 -0
- data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +1197 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +451 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkMonitor.html +499 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +421 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1561 -0
- data/vendor/local/share/gtk-doc/html/gio/GPermission.html +672 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableInputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableOutputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxy.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +580 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +395 -0
- data/vendor/local/share/gtk-doc/html/gio/GRemoteActionGroup.html +290 -0
- data/vendor/local/share/gtk-doc/html/gio/GResolver.html +1171 -0
- data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +441 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettings.html +3485 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +755 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAction.html +540 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleActionGroup.html +319 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1634 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +129 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleProxyResolver.html +433 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +3696 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +374 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +2079 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +623 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +631 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +868 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GSrvTarget.html +424 -0
- data/vendor/local/share/gtk-doc/html/gio/GSubprocess.html +1601 -0
- data/vendor/local/share/gtk-doc/html/gio/GTask.html +2562 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpWrapperConnection.html +211 -0
- data/vendor/local/share/gtk-doc/html/gio/GTestDBus.html +510 -0
- data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +464 -0
- data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +241 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsBackend.html +432 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsCertificate.html +590 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsClientConnection.html +550 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsConnection.html +1294 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsDatabase.html +1091 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsFileDatabase.html +208 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsInteraction.html +735 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsPassword.html +662 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsServerConnection.html +193 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +553 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +349 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +612 -0
- data/vendor/local/share/gtk-doc/html/gio/GVfs.html +358 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1391 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +926 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +220 -0
- data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +148 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +157 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1083 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +210 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1640 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-28.html +715 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-30.html +686 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-32.html +725 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-34.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-36.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-38.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-40.html +369 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-42.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +198 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +9512 -0
- data/vendor/local/share/gtk-doc/html/gio/application.html +80 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +232 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +114 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +45 -0
- data/vendor/local/share/gtk-doc/html/gio/ch30.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s02.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s03.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s04.html +46 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s05.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s06.html +278 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s07.html +160 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33.html +116 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s02.html +142 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s03.html +202 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s04.html +97 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s05.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +131 -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/gapplication-tool.html +288 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-codegen.html +1098 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +65 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html +51 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus.html +300 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1572 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +1131 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +613 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GActionGroup-exporter.html +192 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GBytesIcon.html +162 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +595 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +1106 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +650 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +539 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +365 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GInetAddressMask.html +443 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GMenuModel-exporter.html +183 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GNotification.html +670 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GPropertyAction.html +177 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GResource.html +1141 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSettingsSchema-GSettingsSchemaSource.html +1186 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSubprocessLauncher.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32InputStream.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32OutputStream.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +658 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-TLS-Overview.html +321 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +1398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +575 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gnetworking.h.html +94 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gpollableutils.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +188 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2715 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-resources.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gresource-tool.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gsettings-tool.html +178 -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 +60 -0
- data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/icons.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/index.html +646 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +4046 -0
- data/vendor/local/share/gtk-doc/html/gio/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-example.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-model.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +82 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +40 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/resources.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/running-gio-apps.html +189 -0
- data/vendor/local/share/gtk-doc/html/gio/settings.html +42 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gio/subprocesses.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/testing.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/tls.html +62 -0
- data/vendor/local/share/gtk-doc/html/gio/tools.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/types.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/up-insensitive.png +0 -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/Sorted_binary_tree_breadth-first_traversal.svg +134 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_inorder.svg +753 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_postorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_preorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +167 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +307 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +562 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +357 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +108 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +119 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +86 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +189 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +423 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-28.html +122 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-30.html +252 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-32.html +343 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-34.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-36.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-38.html +111 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +399 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-40.html +158 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +416 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +157 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +596 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +9013 -0
- data/vendor/local/share/gtk-doc/html/glib/deprecated.html +47 -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 +1130 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +1242 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +944 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +614 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +958 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +440 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +1155 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2442 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +1513 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +2152 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +540 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1299 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +2164 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +644 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-HMACs.html +549 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2808 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html +2101 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1860 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1941 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1226 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +2516 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2430 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +6967 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1842 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +373 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +2260 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1817 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +287 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +814 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +3457 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +1007 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1878 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1375 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +625 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +947 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1180 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +2274 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +236 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +3551 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +1059 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +378 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +775 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +660 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +2054 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +302 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1491 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1560 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +1165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +593 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +374 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +4052 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1797 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +3149 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +5082 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +774 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3183 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +319 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +254 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +309 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-UNIX-specific-utilities-and-integration.html +618 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +508 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +4995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +483 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +598 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +585 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +153 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +145 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-core.html +68 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +100 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +57 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +96 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-programming.html +76 -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 +124 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-running.html +295 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +126 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2399 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.html +72 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester.html +187 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1338 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-text.html +667 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +358 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2782 -0
- data/vendor/local/share/gtk-doc/html/glib/left-insensitive.png +0 -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-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
- data/vendor/local/share/gtk-doc/html/glib/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +981 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +814 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +558 -0
- data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +50 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +196 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-28.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-30.html +65 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-32.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-34.html +58 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-36.html +51 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-38.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +173 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-40.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +132 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2999 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +290 -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 +380 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +337 -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 +677 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +3510 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +1110 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1937 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +1101 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +3395 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +7262 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +4119 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +6080 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +644 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +309 -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 +392 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +128 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +838 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +141 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +288 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +378 -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 +98 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +88 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +172 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +117 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +250 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +270 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +137 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-override.html +133 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-prerequisite.html +123 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +153 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +149 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.html +201 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +869 -0
- data/vendor/local/share/gtk-doc/html/gobject/left-insensitive.png +0 -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 +67 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/right-insensitive.png +0 -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 +378 -0
- data/vendor/local/share/gtk-doc/html/gobject/style.css +476 -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 +48 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
- data/vendor/local/share/info/autosprintf.info +133 -0
- data/vendor/local/share/info/dir +43 -0
- data/vendor/local/share/info/gmp.info +181 -0
- data/vendor/local/share/info/gmp.info-1 +7073 -0
- data/vendor/local/share/info/gmp.info-2 +3865 -0
- data/vendor/local/share/info/gnutls-client-server-use-case.png +0 -0
- data/vendor/local/share/info/gnutls-guile.info +1589 -0
- data/vendor/local/share/info/gnutls-handshake-sequence.png +0 -0
- data/vendor/local/share/info/gnutls-handshake-state.png +0 -0
- data/vendor/local/share/info/gnutls-internals.png +0 -0
- data/vendor/local/share/info/gnutls-layers.png +0 -0
- data/vendor/local/share/info/gnutls-logo.png +0 -0
- data/vendor/local/share/info/gnutls-modauth.png +0 -0
- data/vendor/local/share/info/gnutls-pgp.png +0 -0
- data/vendor/local/share/info/gnutls-x509.png +0 -0
- data/vendor/local/share/info/gnutls.info +1371 -0
- data/vendor/local/share/info/gnutls.info-1 +7371 -0
- data/vendor/local/share/info/gnutls.info-2 +7842 -0
- data/vendor/local/share/info/gnutls.info-3 +11715 -0
- data/vendor/local/share/info/gnutls.info-4 +6737 -0
- data/vendor/local/share/info/gnutls.info-5 +2308 -0
- data/vendor/local/share/info/libffi.info +765 -0
- data/vendor/local/share/info/pkcs11-vision.png +0 -0
- data/vendor/local/share/license/gettext/AUTHORS +2 -0
- data/vendor/local/share/license/gettext/COPYING +13 -0
- data/vendor/local/share/license/glib-networking/AUTHORS +0 -0
- data/vendor/local/share/license/glib-networking/COPYING +481 -0
- data/vendor/local/share/license/glib/AUTHORS +40 -0
- data/vendor/local/share/license/glib/COPYING +482 -0
- data/vendor/local/share/license/gmp/AUTHORS +100 -0
- data/vendor/local/share/license/gmp/COPYING +674 -0
- data/vendor/local/share/license/gnutls/AUTHORS +92 -0
- data/vendor/local/share/license/gnutls/COPYING +674 -0
- data/vendor/local/share/license/libiconv/AUTHORS +1 -0
- data/vendor/local/share/license/libiconv/COPYING +674 -0
- data/vendor/local/share/license/libiconv/COPYING.LIB +482 -0
- data/vendor/local/share/license/nettle/AUTHORS +1 -0
- data/vendor/local/share/license/nettle/COPYING.LIB +510 -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/an/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib-networking.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/glib-networking.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/glib-networking.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/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gnutls.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/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gnutls.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/glib-networking.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@boldquot/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gnutls.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/glib-networking.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/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fur/LC_MESSAGES/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib-networking.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/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib-networking.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/glib-networking.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 +75 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib-networking.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/glib-networking.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/glib-networking.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/ms/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gnutls.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gnutls.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/glib-networking.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/glib-networking.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/glib-networking.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/glib-networking.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/glib-networking.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/glib-networking.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/glib-networking.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/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib-networking.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/glib-networking.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/ug/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ug/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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gnutls.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gnutls.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/glib-networking.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/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/man/man1/certtool.1 +741 -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/gnutls-cli-debug.1 +165 -0
- data/vendor/local/share/man/man1/gnutls-cli.1 +420 -0
- data/vendor/local/share/man/man1/gnutls-serv.1 +453 -0
- data/vendor/local/share/man/man1/iconv.1 +108 -0
- data/vendor/local/share/man/man1/ngettext.1 +68 -0
- data/vendor/local/share/man/man1/ocsptool.1 +335 -0
- data/vendor/local/share/man/man1/p11tool.1 +320 -0
- data/vendor/local/share/man/man1/psktool.1 +129 -0
- data/vendor/local/share/man/man1/srptool.1 +164 -0
- data/vendor/local/share/man/man1/tpmtool.1 +223 -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/ffi.3 +41 -0
- data/vendor/local/share/man/man3/ffi_call.3 +103 -0
- data/vendor/local/share/man/man3/ffi_prep_cif.3 +68 -0
- data/vendor/local/share/man/man3/ffi_prep_cif_var.3 +73 -0
- data/vendor/local/share/man/man3/gettext.3 +99 -0
- data/vendor/local/share/man/man3/gnutls_alert_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_strname.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_alert_send.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_alert_send_appropriate.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_alpn_get_selected_protocol.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_alpn_set_protocols.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_client_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_server_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_auth_client_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_auth_get_type.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_auth_server_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_bye.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_certificate_activation_time_peers.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_allocate_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_get_request_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_set_retrieve_function.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_expiration_time_peers.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_ca_names.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_cas.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_credentials.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_crls.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_keys.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_crt_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_issuer.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_ours.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_request.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_retrieve_function.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_dh_params.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_key.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_file.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_mem.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function.3 +65 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function2.3 +68 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_rsa_export_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_trust_list.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_flags.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_function.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_limits.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file2.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3 +63 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_system_trust.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_file.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verification_status_print.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers3.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_check_version.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_add_auth.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_cipher_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_block_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_iv_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_tag_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_init.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_list.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_iv.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_priority.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_get_name.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_info.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_cipher_tag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_compression_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_set_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_credentials_clear.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_credentials_set.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_get_default_cache_expiration.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_db_get_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_remove_session.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_cache_expiration.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_remove_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_retrieve_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_db_set_store_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_group.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_peers_public_bits.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_prime_bits.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_secret_bits.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export2_pkcs3.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_pkcs3.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_generate2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_pkcs3.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_raw.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_dh_set_prime_bits.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_digest_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_send.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_verify.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_data_mtu.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_mtu.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_prestate_set.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_data_mtu.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_mtu.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_timeouts.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_error_is_fatal.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_error_to_alert.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_est_record_overhead_size.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_fingerprint.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_global_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_global_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_global_set_audit_log_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_level.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mem_functions.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mutex.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_global_set_time_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_handshake.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_handshake_description_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_in.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_out.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_hook_function.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_max_packet_length.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_post_client_hello_function.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_private_extensions.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_random.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_hash.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_fast.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hash_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_allowed.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_enable.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_ping.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_pong.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_set_timeouts.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_hex2bin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hex_decode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hex_encode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hmac.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hmac_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_fast.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_hmac_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_init.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_hmac_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_set_nonce.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_key_generate.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_kx_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_kx_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_load_file.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_mac_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_nonce_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_mac_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert_id.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_cert_id.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_nonce.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_version.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_randomize_nonce.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_extension.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_nonce.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_check_crt.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_certs.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_nonce.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_produced.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_responder.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_response.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_single.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify_direct.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_enable_client.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_get.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_is_checked.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_check_hostname.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_auth_subkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_creation_time.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_expiration_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_fingerprint.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_usage.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_usage.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_print.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_ring.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_self.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_check_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_rsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_fingerprint.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sign_hash.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_send_cert.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_set_recv_key_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pcert_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509_raw.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pcert_list_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode_alloc.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_perror.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_pk_algorithm_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pk_bits_to_sec_param.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pk_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_to_sign.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_add_provider.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_secret_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_crt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_delete_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_pin_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_raw_issuer.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_init.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export3.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export_url.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_info.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_import_url.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_export_url.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_info.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_reinit.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_pin_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_token_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_flags.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_info.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_mechanism.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_random.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_set_pin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_type_get_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_decrypt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_encrypt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_data.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_type.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_data.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_key_id.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_generate_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_get_bag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_set_bag.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_simple_parse.3 +84 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_verify_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_import.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl_raw.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt_raw.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_prf.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_prf_raw.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_priority_certificate_type_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_cipher_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_compression_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_priority_ecc_curve_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_get_cipher_suite_index.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_init.3 +102 -0
- data/vendor/local/share/man/man3/gnutls_priority_kx_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_mac_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_protocol_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_set.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_priority_set_direct.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_sign_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_privkey_decrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_privkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_type.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_url.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_privkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_data.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_hash.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_raw_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_status.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_protocol_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_protocol_set_priority.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_client_get_hint.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_server_get_username.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_file.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_hint.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_encrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_openpgp_key_id.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_verify_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_privkey.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_url.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_crq.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_key_usage.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_random_art.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_range_split.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_record_can_use_length_hiding.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_record_check_corked.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_check_pending.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_cork.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_disable_padding.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_get_direction.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_record_get_discarded.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_get_max_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_overhead_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_recv.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_record_recv_seq.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_record_send.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_record_send_range.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_empty_records.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_size.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_record_set_timeout.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_record_uncork.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rehandshake.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_rnd.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rnd_refresh.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_modulus_bits.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_pubkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_cpy.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_pkcs1.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_generate2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_pkcs1.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_safe_renegotiation_status.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_to_pk_bits.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_server_name_get.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_server_name_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_session_channel_binding.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_session_enable_compatibility_mode.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_force_valid.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_get_desc.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_session_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_random.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_session_is_resumed.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_resumption_requested.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_set_data.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_set_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_set_premaster.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_session_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_client.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_server.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_key_generate.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_set_default_export_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_set_default_priority.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_client.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_requested.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_hash_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_pk_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_is_secure.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_sign_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode_alloc.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_server_get_username.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials_function.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_prime_bits.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_srp_verifier.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_keys.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_mki.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_name.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_selected_profile.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_mki.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile_direct.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_store_commitment.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_store_pubkey.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_strerror.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_strerror_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_supplemental_get_name.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_tdb_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_tdb_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_commitment_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_verify_func.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_get_registered.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_get_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_delete.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_generate.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr2.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_timeout_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_push_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_vec_push_function.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_url_is_supported.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_verify_stored_pubkey.3 +67 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_check_issuer.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_gn_serial.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_id.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_dn_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_next_update.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_number.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_this_update.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_print.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_privkey_sign.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_authority_key_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt_serial.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_next_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_number.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_this_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_version.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_verify.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_deinit.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_info.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_basic_constraints.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_challenge_password.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_usage.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_private_key_usage_period.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_init.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_print.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_privkey_sign.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_basic_constraints.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_challenge_password.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_version.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_verify.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_hostname.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_issuer.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_revocation.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_activation_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_info_access.3 +100 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_gn_serial.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_id.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_basic_constraints.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_ca_status.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_expiration_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_info.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_fingerprint.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_usage.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_policy.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_private_key_usage_period.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_proxy.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_serial.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_key_id.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_verify_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import2.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_verify.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_privkey_sign.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_activation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_info_access.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_basic_constraints.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_ca_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq_extensions.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_usage.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_policy.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy_dn.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_version.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_data.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_hash.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_get_rdn_ava.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_init.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_known.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_policy_release.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2_pkcs8.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_pkcs8.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_fix.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_generate.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import2.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_openssl.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_pkcs8.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_data.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_hash.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_verify_params.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_by_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_cas.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_crls.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_named_crt.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_system_trust.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_file.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_get_issuer.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_cas.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_file.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_mem.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_crt.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_named_crt.3 +53 -0
- data/vendor/local/share/man/man3/iconv.3 +92 -0
- data/vendor/local/share/man/man3/iconv_close.3 +31 -0
- data/vendor/local/share/man/man3/iconv_open.3 +205 -0
- data/vendor/local/share/man/man3/iconv_open_into.3 +47 -0
- data/vendor/local/share/man/man3/iconvctl.3 +67 -0
- data/vendor/local/share/man/man3/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -0
- data/vendor/local/share/man/man3/xssl_client_init.3 +56 -0
- data/vendor/local/share/man/man3/xssl_cred_deinit.3 +37 -0
- data/vendor/local/share/man/man3/xssl_cred_init.3 +48 -0
- data/vendor/local/share/man/man3/xssl_deinit.3 +36 -0
- data/vendor/local/share/man/man3/xssl_flush.3 +39 -0
- data/vendor/local/share/man/man3/xssl_get_session.3 +35 -0
- data/vendor/local/share/man/man3/xssl_getdelim.3 +49 -0
- data/vendor/local/share/man/man3/xssl_printf.3 +45 -0
- data/vendor/local/share/man/man3/xssl_read.3 +43 -0
- data/vendor/local/share/man/man3/xssl_server_init.3 +50 -0
- data/vendor/local/share/man/man3/xssl_sinit.3 +44 -0
- data/vendor/local/share/man/man3/xssl_write.3 +47 -0
- metadata +2311 -0
@@ -0,0 +1,4119 @@
|
|
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: GObject</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="GObject Reference Manual">
|
8
|
+
<link rel="up" href="rn01.html" title="API Reference">
|
9
|
+
<link rel="prev" href="GTypeModule.html" title="GTypeModule">
|
10
|
+
<link rel="next" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#gobject-The-Base-Object-Type.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#gobject-The-Base-Object-Type.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_signals"> <span class="dim">|</span>
|
20
|
+
<a href="#gobject-The-Base-Object-Type.signals" class="shortcut">Signals</a></span>
|
21
|
+
</td>
|
22
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
23
|
+
<td><a accesskey="u" href="rn01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
24
|
+
<td><a accesskey="p" href="GTypeModule.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
25
|
+
<td><a accesskey="n" href="gobject-Enumeration-and-Flag-Types.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
26
|
+
</tr></table>
|
27
|
+
<div class="refentry">
|
28
|
+
<a name="gobject-The-Base-Object-Type"></a><div class="titlepage"></div>
|
29
|
+
<div class="refnamediv"><table width="100%"><tr>
|
30
|
+
<td valign="top">
|
31
|
+
<h2><span class="refentrytitle"><a name="gobject-The-Base-Object-Type.top_of_page"></a>GObject</span></h2>
|
32
|
+
<p>GObject — The base object type</p>
|
33
|
+
</td>
|
34
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
35
|
+
</tr></table></div>
|
36
|
+
<div class="refsect1">
|
37
|
+
<a name="gobject-The-Base-Object-Type.functions"></a><h2>Functions</h2>
|
38
|
+
<div class="informaltable"><table width="100%" border="0">
|
39
|
+
<colgroup>
|
40
|
+
<col width="150px" class="functions_return">
|
41
|
+
<col class="functions_name">
|
42
|
+
</colgroup>
|
43
|
+
<tbody>
|
44
|
+
<tr>
|
45
|
+
<td class="function_type">
|
46
|
+
<span class="returnvalue">void</span>
|
47
|
+
</td>
|
48
|
+
<td class="function_name">
|
49
|
+
<span class="c_punctuation">(</span><a class="link" href="gobject-The-Base-Object-Type.html#GObjectGetPropertyFunc" title="GObjectGetPropertyFunc ()">*GObjectGetPropertyFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
50
|
+
</td>
|
51
|
+
</tr>
|
52
|
+
<tr>
|
53
|
+
<td class="function_type">
|
54
|
+
<span class="returnvalue">void</span>
|
55
|
+
</td>
|
56
|
+
<td class="function_name">
|
57
|
+
<span class="c_punctuation">(</span><a class="link" href="gobject-The-Base-Object-Type.html#GObjectSetPropertyFunc" title="GObjectSetPropertyFunc ()">*GObjectSetPropertyFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
58
|
+
</td>
|
59
|
+
</tr>
|
60
|
+
<tr>
|
61
|
+
<td class="function_type">
|
62
|
+
<span class="returnvalue">void</span>
|
63
|
+
</td>
|
64
|
+
<td class="function_name">
|
65
|
+
<span class="c_punctuation">(</span><a class="link" href="gobject-The-Base-Object-Type.html#GObjectFinalizeFunc" title="GObjectFinalizeFunc ()">*GObjectFinalizeFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
66
|
+
</td>
|
67
|
+
</tr>
|
68
|
+
<tr>
|
69
|
+
<td class="define_keyword">#define</td>
|
70
|
+
<td class="function_name">
|
71
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-TYPE-IS-OBJECT:CAPS" title="G_TYPE_IS_OBJECT()">G_TYPE_IS_OBJECT</a><span class="c_punctuation">()</span>
|
72
|
+
</td>
|
73
|
+
</tr>
|
74
|
+
<tr>
|
75
|
+
<td class="define_keyword">#define</td>
|
76
|
+
<td class="function_name">
|
77
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT:CAPS" title="G_OBJECT()">G_OBJECT</a><span class="c_punctuation">()</span>
|
78
|
+
</td>
|
79
|
+
</tr>
|
80
|
+
<tr>
|
81
|
+
<td class="define_keyword">#define</td>
|
82
|
+
<td class="function_name">
|
83
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-IS-OBJECT:CAPS" title="G_IS_OBJECT()">G_IS_OBJECT</a><span class="c_punctuation">()</span>
|
84
|
+
</td>
|
85
|
+
</tr>
|
86
|
+
<tr>
|
87
|
+
<td class="define_keyword">#define</td>
|
88
|
+
<td class="function_name">
|
89
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT-CLASS:CAPS" title="G_OBJECT_CLASS()">G_OBJECT_CLASS</a><span class="c_punctuation">()</span>
|
90
|
+
</td>
|
91
|
+
</tr>
|
92
|
+
<tr>
|
93
|
+
<td class="define_keyword">#define</td>
|
94
|
+
<td class="function_name">
|
95
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-IS-OBJECT-CLASS:CAPS" title="G_IS_OBJECT_CLASS()">G_IS_OBJECT_CLASS</a><span class="c_punctuation">()</span>
|
96
|
+
</td>
|
97
|
+
</tr>
|
98
|
+
<tr>
|
99
|
+
<td class="define_keyword">#define</td>
|
100
|
+
<td class="function_name">
|
101
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT-GET-CLASS:CAPS" title="G_OBJECT_GET_CLASS()">G_OBJECT_GET_CLASS</a><span class="c_punctuation">()</span>
|
102
|
+
</td>
|
103
|
+
</tr>
|
104
|
+
<tr>
|
105
|
+
<td class="define_keyword">#define</td>
|
106
|
+
<td class="function_name">
|
107
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT-TYPE:CAPS" title="G_OBJECT_TYPE()">G_OBJECT_TYPE</a><span class="c_punctuation">()</span>
|
108
|
+
</td>
|
109
|
+
</tr>
|
110
|
+
<tr>
|
111
|
+
<td class="define_keyword">#define</td>
|
112
|
+
<td class="function_name">
|
113
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT-TYPE-NAME:CAPS" title="G_OBJECT_TYPE_NAME()">G_OBJECT_TYPE_NAME</a><span class="c_punctuation">()</span>
|
114
|
+
</td>
|
115
|
+
</tr>
|
116
|
+
<tr>
|
117
|
+
<td class="define_keyword">#define</td>
|
118
|
+
<td class="function_name">
|
119
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT-CLASS-TYPE:CAPS" title="G_OBJECT_CLASS_TYPE()">G_OBJECT_CLASS_TYPE</a><span class="c_punctuation">()</span>
|
120
|
+
</td>
|
121
|
+
</tr>
|
122
|
+
<tr>
|
123
|
+
<td class="define_keyword">#define</td>
|
124
|
+
<td class="function_name">
|
125
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT-CLASS-NAME:CAPS" title="G_OBJECT_CLASS_NAME()">G_OBJECT_CLASS_NAME</a><span class="c_punctuation">()</span>
|
126
|
+
</td>
|
127
|
+
</tr>
|
128
|
+
<tr>
|
129
|
+
<td class="function_type">
|
130
|
+
<span class="returnvalue">void</span>
|
131
|
+
</td>
|
132
|
+
<td class="function_name">
|
133
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-install-property" title="g_object_class_install_property ()">g_object_class_install_property</a> <span class="c_punctuation">()</span>
|
134
|
+
</td>
|
135
|
+
</tr>
|
136
|
+
<tr>
|
137
|
+
<td class="function_type">
|
138
|
+
<span class="returnvalue">void</span>
|
139
|
+
</td>
|
140
|
+
<td class="function_name">
|
141
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-install-properties" title="g_object_class_install_properties ()">g_object_class_install_properties</a> <span class="c_punctuation">()</span>
|
142
|
+
</td>
|
143
|
+
</tr>
|
144
|
+
<tr>
|
145
|
+
<td class="function_type">
|
146
|
+
<a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="returnvalue">GParamSpec</span></a> *
|
147
|
+
</td>
|
148
|
+
<td class="function_name">
|
149
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-find-property" title="g_object_class_find_property ()">g_object_class_find_property</a> <span class="c_punctuation">()</span>
|
150
|
+
</td>
|
151
|
+
</tr>
|
152
|
+
<tr>
|
153
|
+
<td class="function_type">
|
154
|
+
<a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="returnvalue">GParamSpec</span></a> **
|
155
|
+
</td>
|
156
|
+
<td class="function_name">
|
157
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-list-properties" title="g_object_class_list_properties ()">g_object_class_list_properties</a> <span class="c_punctuation">()</span>
|
158
|
+
</td>
|
159
|
+
</tr>
|
160
|
+
<tr>
|
161
|
+
<td class="function_type">
|
162
|
+
<span class="returnvalue">void</span>
|
163
|
+
</td>
|
164
|
+
<td class="function_name">
|
165
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-override-property" title="g_object_class_override_property ()">g_object_class_override_property</a> <span class="c_punctuation">()</span>
|
166
|
+
</td>
|
167
|
+
</tr>
|
168
|
+
<tr>
|
169
|
+
<td class="function_type">
|
170
|
+
<span class="returnvalue">void</span>
|
171
|
+
</td>
|
172
|
+
<td class="function_name">
|
173
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-interface-install-property" title="g_object_interface_install_property ()">g_object_interface_install_property</a> <span class="c_punctuation">()</span>
|
174
|
+
</td>
|
175
|
+
</tr>
|
176
|
+
<tr>
|
177
|
+
<td class="function_type">
|
178
|
+
<a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="returnvalue">GParamSpec</span></a> *
|
179
|
+
</td>
|
180
|
+
<td class="function_name">
|
181
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-interface-find-property" title="g_object_interface_find_property ()">g_object_interface_find_property</a> <span class="c_punctuation">()</span>
|
182
|
+
</td>
|
183
|
+
</tr>
|
184
|
+
<tr>
|
185
|
+
<td class="function_type">
|
186
|
+
<a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="returnvalue">GParamSpec</span></a> **
|
187
|
+
</td>
|
188
|
+
<td class="function_name">
|
189
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-interface-list-properties" title="g_object_interface_list_properties ()">g_object_interface_list_properties</a> <span class="c_punctuation">()</span>
|
190
|
+
</td>
|
191
|
+
</tr>
|
192
|
+
<tr>
|
193
|
+
<td class="function_type">
|
194
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
195
|
+
</td>
|
196
|
+
<td class="function_name">
|
197
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-new" title="g_object_new ()">g_object_new</a> <span class="c_punctuation">()</span>
|
198
|
+
</td>
|
199
|
+
</tr>
|
200
|
+
<tr>
|
201
|
+
<td class="function_type">
|
202
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
203
|
+
</td>
|
204
|
+
<td class="function_name">
|
205
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-newv" title="g_object_newv ()">g_object_newv</a> <span class="c_punctuation">()</span>
|
206
|
+
</td>
|
207
|
+
</tr>
|
208
|
+
<tr>
|
209
|
+
<td class="function_type">
|
210
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
211
|
+
</td>
|
212
|
+
<td class="function_name">
|
213
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref" title="g_object_ref ()">g_object_ref</a> <span class="c_punctuation">()</span>
|
214
|
+
</td>
|
215
|
+
</tr>
|
216
|
+
<tr>
|
217
|
+
<td class="function_type">
|
218
|
+
<span class="returnvalue">void</span>
|
219
|
+
</td>
|
220
|
+
<td class="function_name">
|
221
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-unref" title="g_object_unref ()">g_object_unref</a> <span class="c_punctuation">()</span>
|
222
|
+
</td>
|
223
|
+
</tr>
|
224
|
+
<tr>
|
225
|
+
<td class="function_type">
|
226
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
227
|
+
</td>
|
228
|
+
<td class="function_name">
|
229
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref-sink" title="g_object_ref_sink ()">g_object_ref_sink</a> <span class="c_punctuation">()</span>
|
230
|
+
</td>
|
231
|
+
</tr>
|
232
|
+
<tr>
|
233
|
+
<td class="function_type">
|
234
|
+
<span class="returnvalue">void</span>
|
235
|
+
</td>
|
236
|
+
<td class="function_name">
|
237
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-clear-object" title="g_clear_object ()">g_clear_object</a> <span class="c_punctuation">()</span>
|
238
|
+
</td>
|
239
|
+
</tr>
|
240
|
+
<tr>
|
241
|
+
<td class="function_type">
|
242
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
243
|
+
</td>
|
244
|
+
<td class="function_name">
|
245
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-is-floating" title="g_object_is_floating ()">g_object_is_floating</a> <span class="c_punctuation">()</span>
|
246
|
+
</td>
|
247
|
+
</tr>
|
248
|
+
<tr>
|
249
|
+
<td class="function_type">
|
250
|
+
<span class="returnvalue">void</span>
|
251
|
+
</td>
|
252
|
+
<td class="function_name">
|
253
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-force-floating" title="g_object_force_floating ()">g_object_force_floating</a> <span class="c_punctuation">()</span>
|
254
|
+
</td>
|
255
|
+
</tr>
|
256
|
+
<tr>
|
257
|
+
<td class="function_type">
|
258
|
+
<span class="returnvalue">void</span>
|
259
|
+
</td>
|
260
|
+
<td class="function_name">
|
261
|
+
<span class="c_punctuation">(</span><a class="link" href="gobject-The-Base-Object-Type.html#GWeakNotify" title="GWeakNotify ()">*GWeakNotify</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
262
|
+
</td>
|
263
|
+
</tr>
|
264
|
+
<tr>
|
265
|
+
<td class="function_type">
|
266
|
+
<span class="returnvalue">void</span>
|
267
|
+
</td>
|
268
|
+
<td class="function_name">
|
269
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-weak-ref" title="g_object_weak_ref ()">g_object_weak_ref</a> <span class="c_punctuation">()</span>
|
270
|
+
</td>
|
271
|
+
</tr>
|
272
|
+
<tr>
|
273
|
+
<td class="function_type">
|
274
|
+
<span class="returnvalue">void</span>
|
275
|
+
</td>
|
276
|
+
<td class="function_name">
|
277
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-weak-unref" title="g_object_weak_unref ()">g_object_weak_unref</a> <span class="c_punctuation">()</span>
|
278
|
+
</td>
|
279
|
+
</tr>
|
280
|
+
<tr>
|
281
|
+
<td class="function_type">
|
282
|
+
<span class="returnvalue">void</span>
|
283
|
+
</td>
|
284
|
+
<td class="function_name">
|
285
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-weak-pointer" title="g_object_add_weak_pointer ()">g_object_add_weak_pointer</a> <span class="c_punctuation">()</span>
|
286
|
+
</td>
|
287
|
+
</tr>
|
288
|
+
<tr>
|
289
|
+
<td class="function_type">
|
290
|
+
<span class="returnvalue">void</span>
|
291
|
+
</td>
|
292
|
+
<td class="function_name">
|
293
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-remove-weak-pointer" title="g_object_remove_weak_pointer ()">g_object_remove_weak_pointer</a> <span class="c_punctuation">()</span>
|
294
|
+
</td>
|
295
|
+
</tr>
|
296
|
+
<tr>
|
297
|
+
<td class="function_type">
|
298
|
+
<span class="returnvalue">void</span>
|
299
|
+
</td>
|
300
|
+
<td class="function_name">
|
301
|
+
<span class="c_punctuation">(</span><a class="link" href="gobject-The-Base-Object-Type.html#GToggleNotify" title="GToggleNotify ()">*GToggleNotify</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
302
|
+
</td>
|
303
|
+
</tr>
|
304
|
+
<tr>
|
305
|
+
<td class="function_type">
|
306
|
+
<span class="returnvalue">void</span>
|
307
|
+
</td>
|
308
|
+
<td class="function_name">
|
309
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-toggle-ref" title="g_object_add_toggle_ref ()">g_object_add_toggle_ref</a> <span class="c_punctuation">()</span>
|
310
|
+
</td>
|
311
|
+
</tr>
|
312
|
+
<tr>
|
313
|
+
<td class="function_type">
|
314
|
+
<span class="returnvalue">void</span>
|
315
|
+
</td>
|
316
|
+
<td class="function_name">
|
317
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-remove-toggle-ref" title="g_object_remove_toggle_ref ()">g_object_remove_toggle_ref</a> <span class="c_punctuation">()</span>
|
318
|
+
</td>
|
319
|
+
</tr>
|
320
|
+
<tr>
|
321
|
+
<td class="function_type">
|
322
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
323
|
+
</td>
|
324
|
+
<td class="function_name">
|
325
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-connect" title="g_object_connect ()">g_object_connect</a> <span class="c_punctuation">()</span>
|
326
|
+
</td>
|
327
|
+
</tr>
|
328
|
+
<tr>
|
329
|
+
<td class="function_type">
|
330
|
+
<span class="returnvalue">void</span>
|
331
|
+
</td>
|
332
|
+
<td class="function_name">
|
333
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-disconnect" title="g_object_disconnect ()">g_object_disconnect</a> <span class="c_punctuation">()</span>
|
334
|
+
</td>
|
335
|
+
</tr>
|
336
|
+
<tr>
|
337
|
+
<td class="function_type">
|
338
|
+
<span class="returnvalue">void</span>
|
339
|
+
</td>
|
340
|
+
<td class="function_name">
|
341
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set" title="g_object_set ()">g_object_set</a> <span class="c_punctuation">()</span>
|
342
|
+
</td>
|
343
|
+
</tr>
|
344
|
+
<tr>
|
345
|
+
<td class="function_type">
|
346
|
+
<span class="returnvalue">void</span>
|
347
|
+
</td>
|
348
|
+
<td class="function_name">
|
349
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-get" title="g_object_get ()">g_object_get</a> <span class="c_punctuation">()</span>
|
350
|
+
</td>
|
351
|
+
</tr>
|
352
|
+
<tr>
|
353
|
+
<td class="function_type">
|
354
|
+
<span class="returnvalue">void</span>
|
355
|
+
</td>
|
356
|
+
<td class="function_name">
|
357
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-notify" title="g_object_notify ()">g_object_notify</a> <span class="c_punctuation">()</span>
|
358
|
+
</td>
|
359
|
+
</tr>
|
360
|
+
<tr>
|
361
|
+
<td class="function_type">
|
362
|
+
<span class="returnvalue">void</span>
|
363
|
+
</td>
|
364
|
+
<td class="function_name">
|
365
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-notify-by-pspec" title="g_object_notify_by_pspec ()">g_object_notify_by_pspec</a> <span class="c_punctuation">()</span>
|
366
|
+
</td>
|
367
|
+
</tr>
|
368
|
+
<tr>
|
369
|
+
<td class="function_type">
|
370
|
+
<span class="returnvalue">void</span>
|
371
|
+
</td>
|
372
|
+
<td class="function_name">
|
373
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-freeze-notify" title="g_object_freeze_notify ()">g_object_freeze_notify</a> <span class="c_punctuation">()</span>
|
374
|
+
</td>
|
375
|
+
</tr>
|
376
|
+
<tr>
|
377
|
+
<td class="function_type">
|
378
|
+
<span class="returnvalue">void</span>
|
379
|
+
</td>
|
380
|
+
<td class="function_name">
|
381
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-thaw-notify" title="g_object_thaw_notify ()">g_object_thaw_notify</a> <span class="c_punctuation">()</span>
|
382
|
+
</td>
|
383
|
+
</tr>
|
384
|
+
<tr>
|
385
|
+
<td class="function_type">
|
386
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
387
|
+
</td>
|
388
|
+
<td class="function_name">
|
389
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-data" title="g_object_get_data ()">g_object_get_data</a> <span class="c_punctuation">()</span>
|
390
|
+
</td>
|
391
|
+
</tr>
|
392
|
+
<tr>
|
393
|
+
<td class="function_type">
|
394
|
+
<span class="returnvalue">void</span>
|
395
|
+
</td>
|
396
|
+
<td class="function_name">
|
397
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-data" title="g_object_set_data ()">g_object_set_data</a> <span class="c_punctuation">()</span>
|
398
|
+
</td>
|
399
|
+
</tr>
|
400
|
+
<tr>
|
401
|
+
<td class="function_type">
|
402
|
+
<span class="returnvalue">void</span>
|
403
|
+
</td>
|
404
|
+
<td class="function_name">
|
405
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-data-full" title="g_object_set_data_full ()">g_object_set_data_full</a> <span class="c_punctuation">()</span>
|
406
|
+
</td>
|
407
|
+
</tr>
|
408
|
+
<tr>
|
409
|
+
<td class="function_type">
|
410
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
411
|
+
</td>
|
412
|
+
<td class="function_name">
|
413
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-steal-data" title="g_object_steal_data ()">g_object_steal_data</a> <span class="c_punctuation">()</span>
|
414
|
+
</td>
|
415
|
+
</tr>
|
416
|
+
<tr>
|
417
|
+
<td class="function_type">
|
418
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
419
|
+
</td>
|
420
|
+
<td class="function_name">
|
421
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-dup-data" title="g_object_dup_data ()">g_object_dup_data</a> <span class="c_punctuation">()</span>
|
422
|
+
</td>
|
423
|
+
</tr>
|
424
|
+
<tr>
|
425
|
+
<td class="function_type">
|
426
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
427
|
+
</td>
|
428
|
+
<td class="function_name">
|
429
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-replace-data" title="g_object_replace_data ()">g_object_replace_data</a> <span class="c_punctuation">()</span>
|
430
|
+
</td>
|
431
|
+
</tr>
|
432
|
+
<tr>
|
433
|
+
<td class="function_type">
|
434
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
435
|
+
</td>
|
436
|
+
<td class="function_name">
|
437
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-qdata" title="g_object_get_qdata ()">g_object_get_qdata</a> <span class="c_punctuation">()</span>
|
438
|
+
</td>
|
439
|
+
</tr>
|
440
|
+
<tr>
|
441
|
+
<td class="function_type">
|
442
|
+
<span class="returnvalue">void</span>
|
443
|
+
</td>
|
444
|
+
<td class="function_name">
|
445
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-qdata" title="g_object_set_qdata ()">g_object_set_qdata</a> <span class="c_punctuation">()</span>
|
446
|
+
</td>
|
447
|
+
</tr>
|
448
|
+
<tr>
|
449
|
+
<td class="function_type">
|
450
|
+
<span class="returnvalue">void</span>
|
451
|
+
</td>
|
452
|
+
<td class="function_name">
|
453
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-qdata-full" title="g_object_set_qdata_full ()">g_object_set_qdata_full</a> <span class="c_punctuation">()</span>
|
454
|
+
</td>
|
455
|
+
</tr>
|
456
|
+
<tr>
|
457
|
+
<td class="function_type">
|
458
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
459
|
+
</td>
|
460
|
+
<td class="function_name">
|
461
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-steal-qdata" title="g_object_steal_qdata ()">g_object_steal_qdata</a> <span class="c_punctuation">()</span>
|
462
|
+
</td>
|
463
|
+
</tr>
|
464
|
+
<tr>
|
465
|
+
<td class="function_type">
|
466
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
467
|
+
</td>
|
468
|
+
<td class="function_name">
|
469
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-dup-qdata" title="g_object_dup_qdata ()">g_object_dup_qdata</a> <span class="c_punctuation">()</span>
|
470
|
+
</td>
|
471
|
+
</tr>
|
472
|
+
<tr>
|
473
|
+
<td class="function_type">
|
474
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
475
|
+
</td>
|
476
|
+
<td class="function_name">
|
477
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-replace-qdata" title="g_object_replace_qdata ()">g_object_replace_qdata</a> <span class="c_punctuation">()</span>
|
478
|
+
</td>
|
479
|
+
</tr>
|
480
|
+
<tr>
|
481
|
+
<td class="function_type">
|
482
|
+
<span class="returnvalue">void</span>
|
483
|
+
</td>
|
484
|
+
<td class="function_name">
|
485
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-property" title="g_object_set_property ()">g_object_set_property</a> <span class="c_punctuation">()</span>
|
486
|
+
</td>
|
487
|
+
</tr>
|
488
|
+
<tr>
|
489
|
+
<td class="function_type">
|
490
|
+
<span class="returnvalue">void</span>
|
491
|
+
</td>
|
492
|
+
<td class="function_name">
|
493
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-property" title="g_object_get_property ()">g_object_get_property</a> <span class="c_punctuation">()</span>
|
494
|
+
</td>
|
495
|
+
</tr>
|
496
|
+
<tr>
|
497
|
+
<td class="function_type">
|
498
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a> *
|
499
|
+
</td>
|
500
|
+
<td class="function_name">
|
501
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-new-valist" title="g_object_new_valist ()">g_object_new_valist</a> <span class="c_punctuation">()</span>
|
502
|
+
</td>
|
503
|
+
</tr>
|
504
|
+
<tr>
|
505
|
+
<td class="function_type">
|
506
|
+
<span class="returnvalue">void</span>
|
507
|
+
</td>
|
508
|
+
<td class="function_name">
|
509
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-valist" title="g_object_set_valist ()">g_object_set_valist</a> <span class="c_punctuation">()</span>
|
510
|
+
</td>
|
511
|
+
</tr>
|
512
|
+
<tr>
|
513
|
+
<td class="function_type">
|
514
|
+
<span class="returnvalue">void</span>
|
515
|
+
</td>
|
516
|
+
<td class="function_name">
|
517
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-valist" title="g_object_get_valist ()">g_object_get_valist</a> <span class="c_punctuation">()</span>
|
518
|
+
</td>
|
519
|
+
</tr>
|
520
|
+
<tr>
|
521
|
+
<td class="function_type">
|
522
|
+
<span class="returnvalue">void</span>
|
523
|
+
</td>
|
524
|
+
<td class="function_name">
|
525
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-watch-closure" title="g_object_watch_closure ()">g_object_watch_closure</a> <span class="c_punctuation">()</span>
|
526
|
+
</td>
|
527
|
+
</tr>
|
528
|
+
<tr>
|
529
|
+
<td class="function_type">
|
530
|
+
<span class="returnvalue">void</span>
|
531
|
+
</td>
|
532
|
+
<td class="function_name">
|
533
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-run-dispose" title="g_object_run_dispose ()">g_object_run_dispose</a> <span class="c_punctuation">()</span>
|
534
|
+
</td>
|
535
|
+
</tr>
|
536
|
+
<tr>
|
537
|
+
<td class="define_keyword">#define</td>
|
538
|
+
<td class="function_name">
|
539
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT-WARN-INVALID-PROPERTY-ID:CAPS" title="G_OBJECT_WARN_INVALID_PROPERTY_ID()">G_OBJECT_WARN_INVALID_PROPERTY_ID</a><span class="c_punctuation">()</span>
|
540
|
+
</td>
|
541
|
+
</tr>
|
542
|
+
<tr>
|
543
|
+
<td class="function_type">
|
544
|
+
<span class="returnvalue">void</span>
|
545
|
+
</td>
|
546
|
+
<td class="function_name">
|
547
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-weak-ref-init" title="g_weak_ref_init ()">g_weak_ref_init</a> <span class="c_punctuation">()</span>
|
548
|
+
</td>
|
549
|
+
</tr>
|
550
|
+
<tr>
|
551
|
+
<td class="function_type">
|
552
|
+
<span class="returnvalue">void</span>
|
553
|
+
</td>
|
554
|
+
<td class="function_name">
|
555
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-weak-ref-clear" title="g_weak_ref_clear ()">g_weak_ref_clear</a> <span class="c_punctuation">()</span>
|
556
|
+
</td>
|
557
|
+
</tr>
|
558
|
+
<tr>
|
559
|
+
<td class="function_type">
|
560
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
561
|
+
</td>
|
562
|
+
<td class="function_name">
|
563
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-weak-ref-get" title="g_weak_ref_get ()">g_weak_ref_get</a> <span class="c_punctuation">()</span>
|
564
|
+
</td>
|
565
|
+
</tr>
|
566
|
+
<tr>
|
567
|
+
<td class="function_type">
|
568
|
+
<span class="returnvalue">void</span>
|
569
|
+
</td>
|
570
|
+
<td class="function_name">
|
571
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-weak-ref-set" title="g_weak_ref_set ()">g_weak_ref_set</a> <span class="c_punctuation">()</span>
|
572
|
+
</td>
|
573
|
+
</tr>
|
574
|
+
</tbody>
|
575
|
+
</table></div>
|
576
|
+
</div>
|
577
|
+
<div class="refsect1">
|
578
|
+
<a name="gobject-The-Base-Object-Type.signals"></a><h2>Signals</h2>
|
579
|
+
<div class="informaltable"><table border="0">
|
580
|
+
<colgroup>
|
581
|
+
<col width="150px" class="signals_return">
|
582
|
+
<col width="300px" class="signals_name">
|
583
|
+
<col width="200px" class="signals_flags">
|
584
|
+
</colgroup>
|
585
|
+
<tbody><tr>
|
586
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
587
|
+
<td class="signal_name"><a class="link" href="gobject-The-Base-Object-Type.html#GObject-notify" title="The “notify” signal">notify</a></td>
|
588
|
+
<td class="signal_flags"><a class="link" href="gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></td>
|
589
|
+
</tr></tbody>
|
590
|
+
</table></div>
|
591
|
+
</div>
|
592
|
+
<a name="GObject"></a><div class="refsect1">
|
593
|
+
<a name="gobject-The-Base-Object-Type.other"></a><h2>Types and Values</h2>
|
594
|
+
<div class="informaltable"><table width="100%" border="0">
|
595
|
+
<colgroup>
|
596
|
+
<col width="150px" class="name">
|
597
|
+
<col class="description">
|
598
|
+
</colgroup>
|
599
|
+
<tbody>
|
600
|
+
<tr>
|
601
|
+
<td class="datatype_keyword">struct</td>
|
602
|
+
<td class="function_name"><a class="link" href="gobject-The-Base-Object-Type.html#GObject-struct" title="struct GObject">GObject</a></td>
|
603
|
+
</tr>
|
604
|
+
<tr>
|
605
|
+
<td class="datatype_keyword">struct</td>
|
606
|
+
<td class="function_name"><a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass">GObjectClass</a></td>
|
607
|
+
</tr>
|
608
|
+
<tr>
|
609
|
+
<td class="datatype_keyword">struct</td>
|
610
|
+
<td class="function_name"><a class="link" href="gobject-The-Base-Object-Type.html#GObjectConstructParam" title="struct GObjectConstructParam">GObjectConstructParam</a></td>
|
611
|
+
</tr>
|
612
|
+
<tr>
|
613
|
+
<td class="datatype_keyword">struct</td>
|
614
|
+
<td class="function_name"><a class="link" href="gobject-The-Base-Object-Type.html#GParameter" title="struct GParameter">GParameter</a></td>
|
615
|
+
</tr>
|
616
|
+
<tr>
|
617
|
+
<td class="typedef_keyword">typedef</td>
|
618
|
+
<td class="function_name"><a class="link" href="gobject-The-Base-Object-Type.html#GInitiallyUnowned" title="GInitiallyUnowned">GInitiallyUnowned</a></td>
|
619
|
+
</tr>
|
620
|
+
<tr>
|
621
|
+
<td class="typedef_keyword">typedef</td>
|
622
|
+
<td class="function_name"><a class="link" href="gobject-The-Base-Object-Type.html#GInitiallyUnownedClass" title="GInitiallyUnownedClass">GInitiallyUnownedClass</a></td>
|
623
|
+
</tr>
|
624
|
+
<tr>
|
625
|
+
<td class="define_keyword">#define</td>
|
626
|
+
<td class="function_name"><a class="link" href="gobject-The-Base-Object-Type.html#G-TYPE-INITIALLY-UNOWNED:CAPS" title="G_TYPE_INITIALLY_UNOWNED">G_TYPE_INITIALLY_UNOWNED</a></td>
|
627
|
+
</tr>
|
628
|
+
<tr>
|
629
|
+
<td class="datatype_keyword"> </td>
|
630
|
+
<td class="function_name"><a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef">GWeakRef</a></td>
|
631
|
+
</tr>
|
632
|
+
</tbody>
|
633
|
+
</table></div>
|
634
|
+
</div>
|
635
|
+
<div class="refsect1">
|
636
|
+
<a name="gobject-The-Base-Object-Type.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
637
|
+
<pre class="screen"> GObject
|
638
|
+
<span class="lineart">├──</span> <a class="link" href="GBinding.html" title="GBinding">GBinding</a>
|
639
|
+
<span class="lineart">╰──</span> <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
|
640
|
+
</pre>
|
641
|
+
</div>
|
642
|
+
<div class="refsect1">
|
643
|
+
<a name="gobject-The-Base-Object-Type.includes"></a><h2>Includes</h2>
|
644
|
+
<pre class="synopsis">#include <glib-object.h>
|
645
|
+
</pre>
|
646
|
+
</div>
|
647
|
+
<div class="refsect1">
|
648
|
+
<a name="gobject-The-Base-Object-Type.description"></a><h2>Description</h2>
|
649
|
+
<p>GObject is the fundamental type providing the common attributes and
|
650
|
+
methods for all object types in GTK+, Pango and other libraries
|
651
|
+
based on GObject. The GObject class provides methods for object
|
652
|
+
construction and destruction, property access methods, and signal
|
653
|
+
support. Signals are described in detail <a class="link" href="gobject-Signals.html" title="Signals">here</a>.</p>
|
654
|
+
<div class="refsect3">
|
655
|
+
<a name="floating-ref"></a><h4>Floating references</h4>
|
656
|
+
<p>GInitiallyUnowned is derived from GObject. The only difference between
|
657
|
+
the two is that the initial reference of a GInitiallyUnowned is flagged
|
658
|
+
as a "floating" reference. This means that it is not specifically
|
659
|
+
claimed to be "owned" by any code portion. The main motivation for
|
660
|
+
providing floating references is C convenience. In particular, it
|
661
|
+
allows code to be written as:</p>
|
662
|
+
<div class="informalexample">
|
663
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
664
|
+
<tbody>
|
665
|
+
<tr>
|
666
|
+
<td class="listing_lines" align="right"><pre>1
|
667
|
+
2</pre></td>
|
668
|
+
<td class="listing_code"><pre class="programlisting"><span class="normal">container </span><span class="symbol">=</span><span class="normal"> </span><span class="function">create_container</span><span class="normal"> </span><span class="symbol">();</span>
|
669
|
+
<span class="function">container_add_child</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">container</span><span class="symbol">,</span><span class="normal"> </span><span class="function">create_child</span><span class="symbol">());</span></pre></td>
|
670
|
+
</tr>
|
671
|
+
</tbody>
|
672
|
+
</table>
|
673
|
+
</div>
|
674
|
+
|
675
|
+
<p>
|
676
|
+
If <code class="function">container_add_child()</code> calls <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref-sink" title="g_object_ref_sink ()"><code class="function">g_object_ref_sink()</code></a> on the passed-in child,
|
677
|
+
no reference of the newly created child is leaked. Without floating
|
678
|
+
references, <code class="function">container_add_child()</code> can only <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref" title="g_object_ref ()"><code class="function">g_object_ref()</code></a> the new child,
|
679
|
+
so to implement this code without reference leaks, it would have to be
|
680
|
+
written as:</p>
|
681
|
+
<div class="informalexample">
|
682
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
683
|
+
<tbody>
|
684
|
+
<tr>
|
685
|
+
<td class="listing_lines" align="right"><pre>1
|
686
|
+
2
|
687
|
+
3
|
688
|
+
4
|
689
|
+
5</pre></td>
|
690
|
+
<td class="listing_code"><pre class="programlisting"><span class="usertype">Child</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">child</span><span class="symbol">;</span>
|
691
|
+
<span class="normal">container </span><span class="symbol">=</span><span class="normal"> </span><span class="function">create_container</span><span class="normal"> </span><span class="symbol">();</span>
|
692
|
+
<span class="normal">child </span><span class="symbol">=</span><span class="normal"> </span><span class="function">create_child</span><span class="normal"> </span><span class="symbol">();</span>
|
693
|
+
<span class="function">container_add_child</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">container</span><span class="symbol">,</span><span class="normal"> child</span><span class="symbol">);</span>
|
694
|
+
<span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-unref">g_object_unref</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">child</span><span class="symbol">);</span></pre></td>
|
695
|
+
</tr>
|
696
|
+
</tbody>
|
697
|
+
</table>
|
698
|
+
</div>
|
699
|
+
|
700
|
+
<p>
|
701
|
+
The floating reference can be converted into an ordinary reference by
|
702
|
+
calling <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref-sink" title="g_object_ref_sink ()"><code class="function">g_object_ref_sink()</code></a>. For already sunken objects (objects that
|
703
|
+
don't have a floating reference anymore), <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref-sink" title="g_object_ref_sink ()"><code class="function">g_object_ref_sink()</code></a> is equivalent
|
704
|
+
to <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref" title="g_object_ref ()"><code class="function">g_object_ref()</code></a> and returns a new reference.</p>
|
705
|
+
<p>Since floating references are useful almost exclusively for C convenience,
|
706
|
+
language bindings that provide automated reference and memory ownership
|
707
|
+
maintenance (such as smart pointers or garbage collection) should not
|
708
|
+
expose floating references in their API.</p>
|
709
|
+
<p>Some object implementations may need to save an objects floating state
|
710
|
+
across certain code portions (an example is <a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a>), to achieve this,
|
711
|
+
the following sequence can be used:</p>
|
712
|
+
<div class="informalexample">
|
713
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
714
|
+
<tbody>
|
715
|
+
<tr>
|
716
|
+
<td class="listing_lines" align="right"><pre>1
|
717
|
+
2
|
718
|
+
3
|
719
|
+
4
|
720
|
+
5
|
721
|
+
6
|
722
|
+
7
|
723
|
+
8
|
724
|
+
9
|
725
|
+
10
|
726
|
+
11
|
727
|
+
12</pre></td>
|
728
|
+
<td class="listing_code"><pre class="programlisting"><span class="comment">// save floating state</span>
|
729
|
+
<span class="usertype">gboolean</span><span class="normal"> was_floating </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-is-floating">g_object_is_floating</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">object</span><span class="symbol">);</span>
|
730
|
+
<span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-ref-sink">g_object_ref_sink</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">object</span><span class="symbol">);</span>
|
731
|
+
<span class="comment">// protected code portion</span>
|
732
|
+
|
733
|
+
<span class="symbol">...</span>
|
734
|
+
|
735
|
+
<span class="comment">// restore floating state</span>
|
736
|
+
<span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">was_floating</span><span class="symbol">)</span>
|
737
|
+
<span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-force-floating">g_object_force_floating</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">object</span><span class="symbol">);</span>
|
738
|
+
<span class="keyword">else</span>
|
739
|
+
<span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-unref">g_object_unref</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">object</span><span class="symbol">);</span><span class="normal"> </span><span class="comment">// release previously acquired reference</span></pre></td>
|
740
|
+
</tr>
|
741
|
+
</tbody>
|
742
|
+
</table>
|
743
|
+
</div>
|
744
|
+
|
745
|
+
<p></p>
|
746
|
+
</div>
|
747
|
+
</div>
|
748
|
+
<div class="refsect1">
|
749
|
+
<a name="gobject-The-Base-Object-Type.functions_details"></a><h2>Functions</h2>
|
750
|
+
<div class="refsect2">
|
751
|
+
<a name="GObjectGetPropertyFunc"></a><h3>GObjectGetPropertyFunc ()</h3>
|
752
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
753
|
+
<span class="c_punctuation">(</span>*GObjectGetPropertyFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
754
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> property_id</code></em>,
|
755
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *value</code></em>,
|
756
|
+
<em class="parameter"><code><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>);</pre>
|
757
|
+
<p>The type of the <em class="parameter"><code>get_property</code></em>
|
758
|
+
function of <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a>.</p>
|
759
|
+
<div class="refsect3">
|
760
|
+
<a name="id-1.4.5.10.2.5"></a><h4>Parameters</h4>
|
761
|
+
<div class="informaltable"><table width="100%" border="0">
|
762
|
+
<colgroup>
|
763
|
+
<col width="150px" class="parameters_name">
|
764
|
+
<col class="parameters_description">
|
765
|
+
<col width="200px" class="parameters_annotations">
|
766
|
+
</colgroup>
|
767
|
+
<tbody>
|
768
|
+
<tr>
|
769
|
+
<td class="parameter_name"><p>object</p></td>
|
770
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
771
|
+
<td class="parameter_annotations"> </td>
|
772
|
+
</tr>
|
773
|
+
<tr>
|
774
|
+
<td class="parameter_name"><p>property_id</p></td>
|
775
|
+
<td class="parameter_description"><p>the numeric id under which the property was registered with
|
776
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-install-property" title="g_object_class_install_property ()"><code class="function">g_object_class_install_property()</code></a>.</p></td>
|
777
|
+
<td class="parameter_annotations"> </td>
|
778
|
+
</tr>
|
779
|
+
<tr>
|
780
|
+
<td class="parameter_name"><p>value</p></td>
|
781
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> to return the property value in</p></td>
|
782
|
+
<td class="parameter_annotations"> </td>
|
783
|
+
</tr>
|
784
|
+
<tr>
|
785
|
+
<td class="parameter_name"><p>pspec</p></td>
|
786
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> describing the property</p></td>
|
787
|
+
<td class="parameter_annotations"> </td>
|
788
|
+
</tr>
|
789
|
+
</tbody>
|
790
|
+
</table></div>
|
791
|
+
</div>
|
792
|
+
</div>
|
793
|
+
<hr>
|
794
|
+
<div class="refsect2">
|
795
|
+
<a name="GObjectSetPropertyFunc"></a><h3>GObjectSetPropertyFunc ()</h3>
|
796
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
797
|
+
<span class="c_punctuation">(</span>*GObjectSetPropertyFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
798
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> property_id</code></em>,
|
799
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *value</code></em>,
|
800
|
+
<em class="parameter"><code><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>);</pre>
|
801
|
+
<p>The type of the <em class="parameter"><code>set_property</code></em>
|
802
|
+
function of <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a>.</p>
|
803
|
+
<div class="refsect3">
|
804
|
+
<a name="id-1.4.5.10.3.5"></a><h4>Parameters</h4>
|
805
|
+
<div class="informaltable"><table width="100%" border="0">
|
806
|
+
<colgroup>
|
807
|
+
<col width="150px" class="parameters_name">
|
808
|
+
<col class="parameters_description">
|
809
|
+
<col width="200px" class="parameters_annotations">
|
810
|
+
</colgroup>
|
811
|
+
<tbody>
|
812
|
+
<tr>
|
813
|
+
<td class="parameter_name"><p>object</p></td>
|
814
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
815
|
+
<td class="parameter_annotations"> </td>
|
816
|
+
</tr>
|
817
|
+
<tr>
|
818
|
+
<td class="parameter_name"><p>property_id</p></td>
|
819
|
+
<td class="parameter_description"><p>the numeric id under which the property was registered with
|
820
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-install-property" title="g_object_class_install_property ()"><code class="function">g_object_class_install_property()</code></a>.</p></td>
|
821
|
+
<td class="parameter_annotations"> </td>
|
822
|
+
</tr>
|
823
|
+
<tr>
|
824
|
+
<td class="parameter_name"><p>value</p></td>
|
825
|
+
<td class="parameter_description"><p>the new value for the property</p></td>
|
826
|
+
<td class="parameter_annotations"> </td>
|
827
|
+
</tr>
|
828
|
+
<tr>
|
829
|
+
<td class="parameter_name"><p>pspec</p></td>
|
830
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> describing the property</p></td>
|
831
|
+
<td class="parameter_annotations"> </td>
|
832
|
+
</tr>
|
833
|
+
</tbody>
|
834
|
+
</table></div>
|
835
|
+
</div>
|
836
|
+
</div>
|
837
|
+
<hr>
|
838
|
+
<div class="refsect2">
|
839
|
+
<a name="GObjectFinalizeFunc"></a><h3>GObjectFinalizeFunc ()</h3>
|
840
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
841
|
+
<span class="c_punctuation">(</span>*GObjectFinalizeFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>);</pre>
|
842
|
+
<p>The type of the <em class="parameter"><code>finalize</code></em>
|
843
|
+
function of <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a>.</p>
|
844
|
+
<div class="refsect3">
|
845
|
+
<a name="id-1.4.5.10.4.5"></a><h4>Parameters</h4>
|
846
|
+
<div class="informaltable"><table width="100%" border="0">
|
847
|
+
<colgroup>
|
848
|
+
<col width="150px" class="parameters_name">
|
849
|
+
<col class="parameters_description">
|
850
|
+
<col width="200px" class="parameters_annotations">
|
851
|
+
</colgroup>
|
852
|
+
<tbody><tr>
|
853
|
+
<td class="parameter_name"><p>object</p></td>
|
854
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> being finalized</p></td>
|
855
|
+
<td class="parameter_annotations"> </td>
|
856
|
+
</tr></tbody>
|
857
|
+
</table></div>
|
858
|
+
</div>
|
859
|
+
</div>
|
860
|
+
<hr>
|
861
|
+
<div class="refsect2">
|
862
|
+
<a name="G-TYPE-IS-OBJECT:CAPS"></a><h3>G_TYPE_IS_OBJECT()</h3>
|
863
|
+
<pre class="programlisting">#define G_TYPE_IS_OBJECT(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_OBJECT)
|
864
|
+
</pre>
|
865
|
+
<p>Check if the passed in type id is a <a class="link" href="gobject-Type-Information.html#G-TYPE-OBJECT:CAPS" title="G_TYPE_OBJECT"><code class="literal">G_TYPE_OBJECT</code></a> or derived from it.</p>
|
866
|
+
<div class="refsect3">
|
867
|
+
<a name="id-1.4.5.10.5.5"></a><h4>Parameters</h4>
|
868
|
+
<div class="informaltable"><table width="100%" border="0">
|
869
|
+
<colgroup>
|
870
|
+
<col width="150px" class="parameters_name">
|
871
|
+
<col class="parameters_description">
|
872
|
+
<col width="200px" class="parameters_annotations">
|
873
|
+
</colgroup>
|
874
|
+
<tbody><tr>
|
875
|
+
<td class="parameter_name"><p>type</p></td>
|
876
|
+
<td class="parameter_description"><p>Type id to check</p></td>
|
877
|
+
<td class="parameter_annotations"> </td>
|
878
|
+
</tr></tbody>
|
879
|
+
</table></div>
|
880
|
+
</div>
|
881
|
+
<div class="refsect3">
|
882
|
+
<a name="id-1.4.5.10.5.6"></a><h4>Returns</h4>
|
883
|
+
<p> <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> or <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, indicating whether <em class="parameter"><code>type</code></em>
|
884
|
+
is a <a class="link" href="gobject-Type-Information.html#G-TYPE-OBJECT:CAPS" title="G_TYPE_OBJECT"><code class="literal">G_TYPE_OBJECT</code></a>.</p>
|
885
|
+
<p></p>
|
886
|
+
</div>
|
887
|
+
</div>
|
888
|
+
<hr>
|
889
|
+
<div class="refsect2">
|
890
|
+
<a name="G-OBJECT:CAPS"></a><h3>G_OBJECT()</h3>
|
891
|
+
<pre class="programlisting">#define G_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_OBJECT, GObject))
|
892
|
+
</pre>
|
893
|
+
<p>Casts a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> or derived pointer into a (GObject*) pointer.
|
894
|
+
Depending on the current debugging level, this function may invoke
|
895
|
+
certain runtime checks to identify invalid casts.</p>
|
896
|
+
<div class="refsect3">
|
897
|
+
<a name="id-1.4.5.10.6.5"></a><h4>Parameters</h4>
|
898
|
+
<div class="informaltable"><table width="100%" border="0">
|
899
|
+
<colgroup>
|
900
|
+
<col width="150px" class="parameters_name">
|
901
|
+
<col class="parameters_description">
|
902
|
+
<col width="200px" class="parameters_annotations">
|
903
|
+
</colgroup>
|
904
|
+
<tbody><tr>
|
905
|
+
<td class="parameter_name"><p>object</p></td>
|
906
|
+
<td class="parameter_description"><p>Object which is subject to casting.</p></td>
|
907
|
+
<td class="parameter_annotations"> </td>
|
908
|
+
</tr></tbody>
|
909
|
+
</table></div>
|
910
|
+
</div>
|
911
|
+
</div>
|
912
|
+
<hr>
|
913
|
+
<div class="refsect2">
|
914
|
+
<a name="G-IS-OBJECT:CAPS"></a><h3>G_IS_OBJECT()</h3>
|
915
|
+
<pre class="programlisting">#define G_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_FUNDAMENTAL_TYPE ((object), G_TYPE_OBJECT))
|
916
|
+
</pre>
|
917
|
+
<p>Checks whether a valid <a class="link" href="gobject-Type-Information.html#GTypeInstance" title="struct GTypeInstance"><span class="type">GTypeInstance</span></a> pointer is of type <a class="link" href="gobject-Type-Information.html#G-TYPE-OBJECT:CAPS" title="G_TYPE_OBJECT"><code class="literal">G_TYPE_OBJECT</code></a>.</p>
|
918
|
+
<div class="refsect3">
|
919
|
+
<a name="id-1.4.5.10.7.5"></a><h4>Parameters</h4>
|
920
|
+
<div class="informaltable"><table width="100%" border="0">
|
921
|
+
<colgroup>
|
922
|
+
<col width="150px" class="parameters_name">
|
923
|
+
<col class="parameters_description">
|
924
|
+
<col width="200px" class="parameters_annotations">
|
925
|
+
</colgroup>
|
926
|
+
<tbody><tr>
|
927
|
+
<td class="parameter_name"><p>object</p></td>
|
928
|
+
<td class="parameter_description"><p>Instance to check for being a <a class="link" href="gobject-Type-Information.html#G-TYPE-OBJECT:CAPS" title="G_TYPE_OBJECT"><code class="literal">G_TYPE_OBJECT</code></a>.</p></td>
|
929
|
+
<td class="parameter_annotations"> </td>
|
930
|
+
</tr></tbody>
|
931
|
+
</table></div>
|
932
|
+
</div>
|
933
|
+
</div>
|
934
|
+
<hr>
|
935
|
+
<div class="refsect2">
|
936
|
+
<a name="G-OBJECT-CLASS:CAPS"></a><h3>G_OBJECT_CLASS()</h3>
|
937
|
+
<pre class="programlisting">#define G_OBJECT_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_OBJECT, GObjectClass))
|
938
|
+
</pre>
|
939
|
+
<p>Casts a derived <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a> structure into a <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a> structure.</p>
|
940
|
+
<div class="refsect3">
|
941
|
+
<a name="id-1.4.5.10.8.5"></a><h4>Parameters</h4>
|
942
|
+
<div class="informaltable"><table width="100%" border="0">
|
943
|
+
<colgroup>
|
944
|
+
<col width="150px" class="parameters_name">
|
945
|
+
<col class="parameters_description">
|
946
|
+
<col width="200px" class="parameters_annotations">
|
947
|
+
</colgroup>
|
948
|
+
<tbody><tr>
|
949
|
+
<td class="parameter_name"><p>class</p></td>
|
950
|
+
<td class="parameter_description"><p>a valid <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a></p></td>
|
951
|
+
<td class="parameter_annotations"> </td>
|
952
|
+
</tr></tbody>
|
953
|
+
</table></div>
|
954
|
+
</div>
|
955
|
+
</div>
|
956
|
+
<hr>
|
957
|
+
<div class="refsect2">
|
958
|
+
<a name="G-IS-OBJECT-CLASS:CAPS"></a><h3>G_IS_OBJECT_CLASS()</h3>
|
959
|
+
<pre class="programlisting">#define G_IS_OBJECT_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_OBJECT))
|
960
|
+
</pre>
|
961
|
+
<p>Checks whether <em class="parameter"><code>class</code></em>
|
962
|
+
"is a" valid <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a> structure of type
|
963
|
+
<a class="link" href="gobject-Type-Information.html#G-TYPE-OBJECT:CAPS" title="G_TYPE_OBJECT"><code class="literal">G_TYPE_OBJECT</code></a> or derived.</p>
|
964
|
+
<div class="refsect3">
|
965
|
+
<a name="id-1.4.5.10.9.5"></a><h4>Parameters</h4>
|
966
|
+
<div class="informaltable"><table width="100%" border="0">
|
967
|
+
<colgroup>
|
968
|
+
<col width="150px" class="parameters_name">
|
969
|
+
<col class="parameters_description">
|
970
|
+
<col width="200px" class="parameters_annotations">
|
971
|
+
</colgroup>
|
972
|
+
<tbody><tr>
|
973
|
+
<td class="parameter_name"><p>class</p></td>
|
974
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a></p></td>
|
975
|
+
<td class="parameter_annotations"> </td>
|
976
|
+
</tr></tbody>
|
977
|
+
</table></div>
|
978
|
+
</div>
|
979
|
+
</div>
|
980
|
+
<hr>
|
981
|
+
<div class="refsect2">
|
982
|
+
<a name="G-OBJECT-GET-CLASS:CAPS"></a><h3>G_OBJECT_GET_CLASS()</h3>
|
983
|
+
<pre class="programlisting">#define G_OBJECT_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_OBJECT, GObjectClass))
|
984
|
+
</pre>
|
985
|
+
<p>Get the class structure associated to a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> instance.</p>
|
986
|
+
<div class="refsect3">
|
987
|
+
<a name="id-1.4.5.10.10.5"></a><h4>Parameters</h4>
|
988
|
+
<div class="informaltable"><table width="100%" border="0">
|
989
|
+
<colgroup>
|
990
|
+
<col width="150px" class="parameters_name">
|
991
|
+
<col class="parameters_description">
|
992
|
+
<col width="200px" class="parameters_annotations">
|
993
|
+
</colgroup>
|
994
|
+
<tbody><tr>
|
995
|
+
<td class="parameter_name"><p>object</p></td>
|
996
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> instance.</p></td>
|
997
|
+
<td class="parameter_annotations"> </td>
|
998
|
+
</tr></tbody>
|
999
|
+
</table></div>
|
1000
|
+
</div>
|
1001
|
+
<div class="refsect3">
|
1002
|
+
<a name="id-1.4.5.10.10.6"></a><h4>Returns</h4>
|
1003
|
+
<p> pointer to object class structure.</p>
|
1004
|
+
<p></p>
|
1005
|
+
</div>
|
1006
|
+
</div>
|
1007
|
+
<hr>
|
1008
|
+
<div class="refsect2">
|
1009
|
+
<a name="G-OBJECT-TYPE:CAPS"></a><h3>G_OBJECT_TYPE()</h3>
|
1010
|
+
<pre class="programlisting">#define G_OBJECT_TYPE(object) (G_TYPE_FROM_INSTANCE (object))
|
1011
|
+
</pre>
|
1012
|
+
<p>Get the type id of an object.</p>
|
1013
|
+
<div class="refsect3">
|
1014
|
+
<a name="id-1.4.5.10.11.5"></a><h4>Parameters</h4>
|
1015
|
+
<div class="informaltable"><table width="100%" border="0">
|
1016
|
+
<colgroup>
|
1017
|
+
<col width="150px" class="parameters_name">
|
1018
|
+
<col class="parameters_description">
|
1019
|
+
<col width="200px" class="parameters_annotations">
|
1020
|
+
</colgroup>
|
1021
|
+
<tbody><tr>
|
1022
|
+
<td class="parameter_name"><p>object</p></td>
|
1023
|
+
<td class="parameter_description"><p>Object to return the type id for.</p></td>
|
1024
|
+
<td class="parameter_annotations"> </td>
|
1025
|
+
</tr></tbody>
|
1026
|
+
</table></div>
|
1027
|
+
</div>
|
1028
|
+
<div class="refsect3">
|
1029
|
+
<a name="id-1.4.5.10.11.6"></a><h4>Returns</h4>
|
1030
|
+
<p> Type id of <em class="parameter"><code>object</code></em>
|
1031
|
+
.</p>
|
1032
|
+
<p></p>
|
1033
|
+
</div>
|
1034
|
+
</div>
|
1035
|
+
<hr>
|
1036
|
+
<div class="refsect2">
|
1037
|
+
<a name="G-OBJECT-TYPE-NAME:CAPS"></a><h3>G_OBJECT_TYPE_NAME()</h3>
|
1038
|
+
<pre class="programlisting">#define G_OBJECT_TYPE_NAME(object) (g_type_name (G_OBJECT_TYPE (object)))
|
1039
|
+
</pre>
|
1040
|
+
<p>Get the name of an object's type.</p>
|
1041
|
+
<div class="refsect3">
|
1042
|
+
<a name="id-1.4.5.10.12.5"></a><h4>Parameters</h4>
|
1043
|
+
<div class="informaltable"><table width="100%" border="0">
|
1044
|
+
<colgroup>
|
1045
|
+
<col width="150px" class="parameters_name">
|
1046
|
+
<col class="parameters_description">
|
1047
|
+
<col width="200px" class="parameters_annotations">
|
1048
|
+
</colgroup>
|
1049
|
+
<tbody><tr>
|
1050
|
+
<td class="parameter_name"><p>object</p></td>
|
1051
|
+
<td class="parameter_description"><p>Object to return the type name for.</p></td>
|
1052
|
+
<td class="parameter_annotations"> </td>
|
1053
|
+
</tr></tbody>
|
1054
|
+
</table></div>
|
1055
|
+
</div>
|
1056
|
+
<div class="refsect3">
|
1057
|
+
<a name="id-1.4.5.10.12.6"></a><h4>Returns</h4>
|
1058
|
+
<p> Type name of <em class="parameter"><code>object</code></em>
|
1059
|
+
. The string is owned by the type system and
|
1060
|
+
should not be freed.</p>
|
1061
|
+
<p></p>
|
1062
|
+
</div>
|
1063
|
+
</div>
|
1064
|
+
<hr>
|
1065
|
+
<div class="refsect2">
|
1066
|
+
<a name="G-OBJECT-CLASS-TYPE:CAPS"></a><h3>G_OBJECT_CLASS_TYPE()</h3>
|
1067
|
+
<pre class="programlisting">#define G_OBJECT_CLASS_TYPE(class) (G_TYPE_FROM_CLASS (class))
|
1068
|
+
</pre>
|
1069
|
+
<p>Get the type id of a class structure.</p>
|
1070
|
+
<div class="refsect3">
|
1071
|
+
<a name="id-1.4.5.10.13.5"></a><h4>Parameters</h4>
|
1072
|
+
<div class="informaltable"><table width="100%" border="0">
|
1073
|
+
<colgroup>
|
1074
|
+
<col width="150px" class="parameters_name">
|
1075
|
+
<col class="parameters_description">
|
1076
|
+
<col width="200px" class="parameters_annotations">
|
1077
|
+
</colgroup>
|
1078
|
+
<tbody><tr>
|
1079
|
+
<td class="parameter_name"><p>class</p></td>
|
1080
|
+
<td class="parameter_description"><p>a valid <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a></p></td>
|
1081
|
+
<td class="parameter_annotations"> </td>
|
1082
|
+
</tr></tbody>
|
1083
|
+
</table></div>
|
1084
|
+
</div>
|
1085
|
+
<div class="refsect3">
|
1086
|
+
<a name="id-1.4.5.10.13.6"></a><h4>Returns</h4>
|
1087
|
+
<p> Type id of <em class="parameter"><code>class</code></em>
|
1088
|
+
.</p>
|
1089
|
+
<p></p>
|
1090
|
+
</div>
|
1091
|
+
</div>
|
1092
|
+
<hr>
|
1093
|
+
<div class="refsect2">
|
1094
|
+
<a name="G-OBJECT-CLASS-NAME:CAPS"></a><h3>G_OBJECT_CLASS_NAME()</h3>
|
1095
|
+
<pre class="programlisting">#define G_OBJECT_CLASS_NAME(class) (g_type_name (G_OBJECT_CLASS_TYPE (class)))
|
1096
|
+
</pre>
|
1097
|
+
<p>Return the name of a class structure's type.</p>
|
1098
|
+
<div class="refsect3">
|
1099
|
+
<a name="id-1.4.5.10.14.5"></a><h4>Parameters</h4>
|
1100
|
+
<div class="informaltable"><table width="100%" border="0">
|
1101
|
+
<colgroup>
|
1102
|
+
<col width="150px" class="parameters_name">
|
1103
|
+
<col class="parameters_description">
|
1104
|
+
<col width="200px" class="parameters_annotations">
|
1105
|
+
</colgroup>
|
1106
|
+
<tbody><tr>
|
1107
|
+
<td class="parameter_name"><p>class</p></td>
|
1108
|
+
<td class="parameter_description"><p>a valid <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a></p></td>
|
1109
|
+
<td class="parameter_annotations"> </td>
|
1110
|
+
</tr></tbody>
|
1111
|
+
</table></div>
|
1112
|
+
</div>
|
1113
|
+
<div class="refsect3">
|
1114
|
+
<a name="id-1.4.5.10.14.6"></a><h4>Returns</h4>
|
1115
|
+
<p> Type name of <em class="parameter"><code>class</code></em>
|
1116
|
+
. The string is owned by the type system and
|
1117
|
+
should not be freed.</p>
|
1118
|
+
<p></p>
|
1119
|
+
</div>
|
1120
|
+
</div>
|
1121
|
+
<hr>
|
1122
|
+
<div class="refsect2">
|
1123
|
+
<a name="g-object-class-install-property"></a><h3>g_object_class_install_property ()</h3>
|
1124
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1125
|
+
g_object_class_install_property (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a> *oclass</code></em>,
|
1126
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> property_id</code></em>,
|
1127
|
+
<em class="parameter"><code><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>);</pre>
|
1128
|
+
<p>Installs a new property.</p>
|
1129
|
+
<p>All properties should be installed during the class initializer. It
|
1130
|
+
is possible to install properties after that, but doing so is not
|
1131
|
+
recommend, and specifically, is not guaranteed to be thread-safe vs.
|
1132
|
+
use of properties on the same type on other threads.</p>
|
1133
|
+
<p>Note that it is possible to redefine a property in a derived class,
|
1134
|
+
by installing a property with the same name. This can be useful at times,
|
1135
|
+
e.g. to change the range of allowed values or the default value.</p>
|
1136
|
+
<div class="refsect3">
|
1137
|
+
<a name="id-1.4.5.10.15.7"></a><h4>Parameters</h4>
|
1138
|
+
<div class="informaltable"><table width="100%" border="0">
|
1139
|
+
<colgroup>
|
1140
|
+
<col width="150px" class="parameters_name">
|
1141
|
+
<col class="parameters_description">
|
1142
|
+
<col width="200px" class="parameters_annotations">
|
1143
|
+
</colgroup>
|
1144
|
+
<tbody>
|
1145
|
+
<tr>
|
1146
|
+
<td class="parameter_name"><p>oclass</p></td>
|
1147
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a></p></td>
|
1148
|
+
<td class="parameter_annotations"> </td>
|
1149
|
+
</tr>
|
1150
|
+
<tr>
|
1151
|
+
<td class="parameter_name"><p>property_id</p></td>
|
1152
|
+
<td class="parameter_description"><p>the id for the new property</p></td>
|
1153
|
+
<td class="parameter_annotations"> </td>
|
1154
|
+
</tr>
|
1155
|
+
<tr>
|
1156
|
+
<td class="parameter_name"><p>pspec</p></td>
|
1157
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> for the new property</p></td>
|
1158
|
+
<td class="parameter_annotations"> </td>
|
1159
|
+
</tr>
|
1160
|
+
</tbody>
|
1161
|
+
</table></div>
|
1162
|
+
</div>
|
1163
|
+
</div>
|
1164
|
+
<hr>
|
1165
|
+
<div class="refsect2">
|
1166
|
+
<a name="g-object-class-install-properties"></a><h3>g_object_class_install_properties ()</h3>
|
1167
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1168
|
+
g_object_class_install_properties (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a> *oclass</code></em>,
|
1169
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_pspecs</code></em>,
|
1170
|
+
<em class="parameter"><code><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> **pspecs</code></em>);</pre>
|
1171
|
+
<p>Installs new properties from an array of <a href="gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpecs</span></a>.</p>
|
1172
|
+
<p>All properties should be installed during the class initializer. It
|
1173
|
+
is possible to install properties after that, but doing so is not
|
1174
|
+
recommend, and specifically, is not guaranteed to be thread-safe vs.
|
1175
|
+
use of properties on the same type on other threads.</p>
|
1176
|
+
<p>The property id of each property is the index of each <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> in
|
1177
|
+
the <em class="parameter"><code>pspecs</code></em>
|
1178
|
+
array.</p>
|
1179
|
+
<p>The property id of 0 is treated specially by <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> and it should not
|
1180
|
+
be used to store a <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a>.</p>
|
1181
|
+
<p>This function should be used if you plan to use a static array of
|
1182
|
+
<a href="gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpecs</span></a> and <a class="link" href="gobject-The-Base-Object-Type.html#g-object-notify-by-pspec" title="g_object_notify_by_pspec ()"><code class="function">g_object_notify_by_pspec()</code></a>. For instance, this
|
1183
|
+
class initialization:</p>
|
1184
|
+
<div class="informalexample">
|
1185
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1186
|
+
<tbody>
|
1187
|
+
<tr>
|
1188
|
+
<td class="listing_lines" align="right"><pre>1
|
1189
|
+
2
|
1190
|
+
3
|
1191
|
+
4
|
1192
|
+
5
|
1193
|
+
6
|
1194
|
+
7
|
1195
|
+
8
|
1196
|
+
9
|
1197
|
+
10
|
1198
|
+
11
|
1199
|
+
12
|
1200
|
+
13
|
1201
|
+
14
|
1202
|
+
15
|
1203
|
+
16
|
1204
|
+
17
|
1205
|
+
18
|
1206
|
+
19
|
1207
|
+
20
|
1208
|
+
21
|
1209
|
+
22
|
1210
|
+
23
|
1211
|
+
24
|
1212
|
+
25
|
1213
|
+
26
|
1214
|
+
27
|
1215
|
+
28</pre></td>
|
1216
|
+
<td class="listing_code"><pre class="programlisting"><span class="keyword">enum</span><span class="normal"> </span><span class="cbracket">{</span>
|
1217
|
+
<span class="normal"> PROP_0</span><span class="symbol">,</span><span class="normal"> PROP_FOO</span><span class="symbol">,</span><span class="normal"> PROP_BAR</span><span class="symbol">,</span><span class="normal"> N_PROPERTIES</span>
|
1218
|
+
<span class="cbracket">}</span><span class="symbol">;</span>
|
1219
|
+
|
1220
|
+
<span class="keyword">static</span><span class="normal"> </span><span class="usertype">GParamSpec</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">obj_properties</span><span class="symbol">[</span><span class="normal">N_PROPERTIES</span><span class="symbol">]</span><span class="normal"> </span><span class="symbol">=</span><span class="normal"> </span><span class="cbracket">{</span><span class="normal"> <a href="../glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">,</span><span class="normal"> </span><span class="cbracket">}</span><span class="symbol">;</span>
|
1221
|
+
|
1222
|
+
<span class="keyword">static</span><span class="normal"> </span><span class="type">void</span>
|
1223
|
+
<span class="function">my_object_class_init</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">MyObjectClass</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">klass</span><span class="symbol">)</span>
|
1224
|
+
<span class="cbracket">{</span>
|
1225
|
+
<span class="normal"> </span><span class="usertype">GObjectClass</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">gobject_class </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#G-OBJECT-CLASS:CAPS">G_OBJECT_CLASS</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">klass</span><span class="symbol">);</span>
|
1226
|
+
|
1227
|
+
<span class="normal"> obj_properties</span><span class="symbol">[</span><span class="normal">PROP_FOO</span><span class="symbol">]</span><span class="normal"> </span><span class="symbol">=</span>
|
1228
|
+
<span class="normal"> </span><span class="function"><a href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-int">g_param_spec_int</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"foo"</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Foo"</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Foo"</span><span class="symbol">,</span>
|
1229
|
+
<span class="normal"> </span><span class="symbol">-</span><span class="number">1</span><span class="symbol">,</span><span class="normal"> <a href="../glib/glib-Basic-Types.html#G-MAXINT:CAPS">G_MAXINT</a></span><span class="symbol">,</span>
|
1230
|
+
<span class="normal"> </span><span class="number">0</span><span class="symbol">,</span>
|
1231
|
+
<span class="normal"> G_PARAM_READWRITE</span><span class="symbol">);</span>
|
1232
|
+
|
1233
|
+
<span class="normal"> obj_properties</span><span class="symbol">[</span><span class="normal">PROP_BAR</span><span class="symbol">]</span><span class="normal"> </span><span class="symbol">=</span>
|
1234
|
+
<span class="normal"> </span><span class="function"><a href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-string">g_param_spec_string</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"bar"</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Bar"</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Bar"</span><span class="symbol">,</span>
|
1235
|
+
<span class="normal"> <a href="../glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">,</span>
|
1236
|
+
<span class="normal"> G_PARAM_READWRITE</span><span class="symbol">);</span>
|
1237
|
+
|
1238
|
+
<span class="normal"> gobject_class</span><span class="symbol">-></span><span class="normal">set_property </span><span class="symbol">=</span><span class="normal"> my_object_set_property</span><span class="symbol">;</span>
|
1239
|
+
<span class="normal"> gobject_class</span><span class="symbol">-></span><span class="normal">get_property </span><span class="symbol">=</span><span class="normal"> my_object_get_property</span><span class="symbol">;</span>
|
1240
|
+
<span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-class-install-properties">g_object_class_install_properties</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">gobject_class</span><span class="symbol">,</span>
|
1241
|
+
<span class="normal"> N_PROPERTIES</span><span class="symbol">,</span>
|
1242
|
+
<span class="normal"> obj_properties</span><span class="symbol">);</span>
|
1243
|
+
<span class="cbracket">}</span></pre></td>
|
1244
|
+
</tr>
|
1245
|
+
</tbody>
|
1246
|
+
</table>
|
1247
|
+
</div>
|
1248
|
+
|
1249
|
+
<p></p>
|
1250
|
+
<p>allows calling <a class="link" href="gobject-The-Base-Object-Type.html#g-object-notify-by-pspec" title="g_object_notify_by_pspec ()"><code class="function">g_object_notify_by_pspec()</code></a> to notify of property changes:</p>
|
1251
|
+
<div class="informalexample">
|
1252
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1253
|
+
<tbody>
|
1254
|
+
<tr>
|
1255
|
+
<td class="listing_lines" align="right"><pre>1
|
1256
|
+
2
|
1257
|
+
3
|
1258
|
+
4
|
1259
|
+
5
|
1260
|
+
6
|
1261
|
+
7
|
1262
|
+
8
|
1263
|
+
9</pre></td>
|
1264
|
+
<td class="listing_code"><pre class="programlisting"><span class="type">void</span>
|
1265
|
+
<span class="function">my_object_set_foo</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">MyObject</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">self</span><span class="symbol">,</span><span class="normal"> </span><span class="usertype">gint</span><span class="normal"> foo</span><span class="symbol">)</span>
|
1266
|
+
<span class="cbracket">{</span>
|
1267
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">self</span><span class="symbol">-></span><span class="normal">foo </span><span class="symbol">!=</span><span class="normal"> foo</span><span class="symbol">)</span>
|
1268
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
1269
|
+
<span class="normal"> self</span><span class="symbol">-></span><span class="normal">foo </span><span class="symbol">=</span><span class="normal"> foo</span><span class="symbol">;</span>
|
1270
|
+
<span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-notify-by-pspec">g_object_notify_by_pspec</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="gobject-The-Base-Object-Type.html#G-OBJECT:CAPS">G_OBJECT</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">self</span><span class="symbol">),</span><span class="normal"> obj_properties</span><span class="symbol">[</span><span class="normal">PROP_FOO</span><span class="symbol">]);</span>
|
1271
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
1272
|
+
<span class="normal"> </span><span class="cbracket">}</span></pre></td>
|
1273
|
+
</tr>
|
1274
|
+
</tbody>
|
1275
|
+
</table>
|
1276
|
+
</div>
|
1277
|
+
|
1278
|
+
<p></p>
|
1279
|
+
<div class="refsect3">
|
1280
|
+
<a name="id-1.4.5.10.16.14"></a><h4>Parameters</h4>
|
1281
|
+
<div class="informaltable"><table width="100%" border="0">
|
1282
|
+
<colgroup>
|
1283
|
+
<col width="150px" class="parameters_name">
|
1284
|
+
<col class="parameters_description">
|
1285
|
+
<col width="200px" class="parameters_annotations">
|
1286
|
+
</colgroup>
|
1287
|
+
<tbody>
|
1288
|
+
<tr>
|
1289
|
+
<td class="parameter_name"><p>oclass</p></td>
|
1290
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a></p></td>
|
1291
|
+
<td class="parameter_annotations"> </td>
|
1292
|
+
</tr>
|
1293
|
+
<tr>
|
1294
|
+
<td class="parameter_name"><p>n_pspecs</p></td>
|
1295
|
+
<td class="parameter_description"><p>the length of the <a href="gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpecs</span></a> array</p></td>
|
1296
|
+
<td class="parameter_annotations"> </td>
|
1297
|
+
</tr>
|
1298
|
+
<tr>
|
1299
|
+
<td class="parameter_name"><p>pspecs</p></td>
|
1300
|
+
<td class="parameter_description"><p> the <a href="gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpecs</span></a> array
|
1301
|
+
defining the new properties. </p></td>
|
1302
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_pspecs]</span></td>
|
1303
|
+
</tr>
|
1304
|
+
</tbody>
|
1305
|
+
</table></div>
|
1306
|
+
</div>
|
1307
|
+
<p class="since">Since 2.26</p>
|
1308
|
+
</div>
|
1309
|
+
<hr>
|
1310
|
+
<div class="refsect2">
|
1311
|
+
<a name="g-object-class-find-property"></a><h3>g_object_class_find_property ()</h3>
|
1312
|
+
<pre class="programlisting"><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="returnvalue">GParamSpec</span></a> *
|
1313
|
+
g_object_class_find_property (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a> *oclass</code></em>,
|
1314
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *property_name</code></em>);</pre>
|
1315
|
+
<p>Looks up the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> for a property of a class.</p>
|
1316
|
+
<div class="refsect3">
|
1317
|
+
<a name="id-1.4.5.10.17.5"></a><h4>Parameters</h4>
|
1318
|
+
<div class="informaltable"><table width="100%" border="0">
|
1319
|
+
<colgroup>
|
1320
|
+
<col width="150px" class="parameters_name">
|
1321
|
+
<col class="parameters_description">
|
1322
|
+
<col width="200px" class="parameters_annotations">
|
1323
|
+
</colgroup>
|
1324
|
+
<tbody>
|
1325
|
+
<tr>
|
1326
|
+
<td class="parameter_name"><p>oclass</p></td>
|
1327
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a></p></td>
|
1328
|
+
<td class="parameter_annotations"> </td>
|
1329
|
+
</tr>
|
1330
|
+
<tr>
|
1331
|
+
<td class="parameter_name"><p>property_name</p></td>
|
1332
|
+
<td class="parameter_description"><p>the name of the property to look up</p></td>
|
1333
|
+
<td class="parameter_annotations"> </td>
|
1334
|
+
</tr>
|
1335
|
+
</tbody>
|
1336
|
+
</table></div>
|
1337
|
+
</div>
|
1338
|
+
<div class="refsect3">
|
1339
|
+
<a name="id-1.4.5.10.17.6"></a><h4>Returns</h4>
|
1340
|
+
<p> the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> for the property, or
|
1341
|
+
<a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the class doesn't have a property of that name. </p>
|
1342
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1343
|
+
</div>
|
1344
|
+
</div>
|
1345
|
+
<hr>
|
1346
|
+
<div class="refsect2">
|
1347
|
+
<a name="g-object-class-list-properties"></a><h3>g_object_class_list_properties ()</h3>
|
1348
|
+
<pre class="programlisting"><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="returnvalue">GParamSpec</span></a> **
|
1349
|
+
g_object_class_list_properties (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a> *oclass</code></em>,
|
1350
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *n_properties</code></em>);</pre>
|
1351
|
+
<p>Get an array of <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a>* for all properties of a class.</p>
|
1352
|
+
<div class="refsect3">
|
1353
|
+
<a name="id-1.4.5.10.18.5"></a><h4>Parameters</h4>
|
1354
|
+
<div class="informaltable"><table width="100%" border="0">
|
1355
|
+
<colgroup>
|
1356
|
+
<col width="150px" class="parameters_name">
|
1357
|
+
<col class="parameters_description">
|
1358
|
+
<col width="200px" class="parameters_annotations">
|
1359
|
+
</colgroup>
|
1360
|
+
<tbody>
|
1361
|
+
<tr>
|
1362
|
+
<td class="parameter_name"><p>oclass</p></td>
|
1363
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a></p></td>
|
1364
|
+
<td class="parameter_annotations"> </td>
|
1365
|
+
</tr>
|
1366
|
+
<tr>
|
1367
|
+
<td class="parameter_name"><p>n_properties</p></td>
|
1368
|
+
<td class="parameter_description"><p> return location for the length of the returned array. </p></td>
|
1369
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
1370
|
+
</tr>
|
1371
|
+
</tbody>
|
1372
|
+
</table></div>
|
1373
|
+
</div>
|
1374
|
+
<div class="refsect3">
|
1375
|
+
<a name="id-1.4.5.10.18.6"></a><h4>Returns</h4>
|
1376
|
+
<p> an array of
|
1377
|
+
<a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a>* which should be freed after use. </p>
|
1378
|
+
<p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_properties][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span></p>
|
1379
|
+
</div>
|
1380
|
+
</div>
|
1381
|
+
<hr>
|
1382
|
+
<div class="refsect2">
|
1383
|
+
<a name="g-object-class-override-property"></a><h3>g_object_class_override_property ()</h3>
|
1384
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1385
|
+
g_object_class_override_property (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a> *oclass</code></em>,
|
1386
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> property_id</code></em>,
|
1387
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
|
1388
|
+
<p>Registers <em class="parameter"><code>property_id</code></em>
|
1389
|
+
as referring to a property with the name
|
1390
|
+
<em class="parameter"><code>name</code></em>
|
1391
|
+
in a parent class or in an interface implemented by <em class="parameter"><code>oclass</code></em>
|
1392
|
+
.
|
1393
|
+
This allows this class to "override" a property implementation in
|
1394
|
+
a parent class or to provide the implementation of a property from
|
1395
|
+
an interface.</p>
|
1396
|
+
<p>Internally, overriding is implemented by creating a property of type
|
1397
|
+
<a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecOverride" title="struct GParamSpecOverride"><span class="type">GParamSpecOverride</span></a>; generally operations that query the properties of
|
1398
|
+
the object class, such as <a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-find-property" title="g_object_class_find_property ()"><code class="function">g_object_class_find_property()</code></a> or
|
1399
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-list-properties" title="g_object_class_list_properties ()"><code class="function">g_object_class_list_properties()</code></a> will return the overridden
|
1400
|
+
property. However, in one case, the <em class="parameter"><code>construct_properties</code></em>
|
1401
|
+
argument of
|
1402
|
+
the <em class="parameter"><code>constructor</code></em>
|
1403
|
+
virtual function, the <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecOverride" title="struct GParamSpecOverride"><span class="type">GParamSpecOverride</span></a> is passed
|
1404
|
+
instead, so that the <em class="parameter"><code>param_id</code></em>
|
1405
|
+
field of the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> will be
|
1406
|
+
correct. For virtually all uses, this makes no difference. If you
|
1407
|
+
need to get the overridden property, you can call
|
1408
|
+
<a class="link" href="gobject-GParamSpec.html#g-param-spec-get-redirect-target" title="g_param_spec_get_redirect_target ()"><code class="function">g_param_spec_get_redirect_target()</code></a>.</p>
|
1409
|
+
<div class="refsect3">
|
1410
|
+
<a name="id-1.4.5.10.19.6"></a><h4>Parameters</h4>
|
1411
|
+
<div class="informaltable"><table width="100%" border="0">
|
1412
|
+
<colgroup>
|
1413
|
+
<col width="150px" class="parameters_name">
|
1414
|
+
<col class="parameters_description">
|
1415
|
+
<col width="200px" class="parameters_annotations">
|
1416
|
+
</colgroup>
|
1417
|
+
<tbody>
|
1418
|
+
<tr>
|
1419
|
+
<td class="parameter_name"><p>oclass</p></td>
|
1420
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a></p></td>
|
1421
|
+
<td class="parameter_annotations"> </td>
|
1422
|
+
</tr>
|
1423
|
+
<tr>
|
1424
|
+
<td class="parameter_name"><p>property_id</p></td>
|
1425
|
+
<td class="parameter_description"><p>the new property ID</p></td>
|
1426
|
+
<td class="parameter_annotations"> </td>
|
1427
|
+
</tr>
|
1428
|
+
<tr>
|
1429
|
+
<td class="parameter_name"><p>name</p></td>
|
1430
|
+
<td class="parameter_description"><p>the name of a property registered in a parent class or
|
1431
|
+
in an interface of this class.</p></td>
|
1432
|
+
<td class="parameter_annotations"> </td>
|
1433
|
+
</tr>
|
1434
|
+
</tbody>
|
1435
|
+
</table></div>
|
1436
|
+
</div>
|
1437
|
+
<p class="since">Since 2.4</p>
|
1438
|
+
</div>
|
1439
|
+
<hr>
|
1440
|
+
<div class="refsect2">
|
1441
|
+
<a name="g-object-interface-install-property"></a><h3>g_object_interface_install_property ()</h3>
|
1442
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1443
|
+
g_object_interface_install_property (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> g_iface</code></em>,
|
1444
|
+
<em class="parameter"><code><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>);</pre>
|
1445
|
+
<p>Add a property to an interface; this is only useful for interfaces
|
1446
|
+
that are added to GObject-derived types. Adding a property to an
|
1447
|
+
interface forces all objects classes with that interface to have a
|
1448
|
+
compatible property. The compatible property could be a newly
|
1449
|
+
created <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a>, but normally
|
1450
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-override-property" title="g_object_class_override_property ()"><code class="function">g_object_class_override_property()</code></a> will be used so that the object
|
1451
|
+
class only needs to provide an implementation and inherits the
|
1452
|
+
property description, default value, bounds, and so forth from the
|
1453
|
+
interface property.</p>
|
1454
|
+
<p>This function is meant to be called from the interface's default
|
1455
|
+
vtable initialization function (the <em class="parameter"><code>class_init</code></em>
|
1456
|
+
member of
|
1457
|
+
<a class="link" href="gobject-Type-Information.html#GTypeInfo" title="struct GTypeInfo"><span class="type">GTypeInfo</span></a>.) It must not be called after after <em class="parameter"><code>class_init</code></em>
|
1458
|
+
has
|
1459
|
+
been called for any object types implementing this interface.</p>
|
1460
|
+
<div class="refsect3">
|
1461
|
+
<a name="id-1.4.5.10.20.6"></a><h4>Parameters</h4>
|
1462
|
+
<div class="informaltable"><table width="100%" border="0">
|
1463
|
+
<colgroup>
|
1464
|
+
<col width="150px" class="parameters_name">
|
1465
|
+
<col class="parameters_description">
|
1466
|
+
<col width="200px" class="parameters_annotations">
|
1467
|
+
</colgroup>
|
1468
|
+
<tbody>
|
1469
|
+
<tr>
|
1470
|
+
<td class="parameter_name"><p>g_iface</p></td>
|
1471
|
+
<td class="parameter_description"><p>any interface vtable for the interface, or the default
|
1472
|
+
vtable for the interface.</p></td>
|
1473
|
+
<td class="parameter_annotations"> </td>
|
1474
|
+
</tr>
|
1475
|
+
<tr>
|
1476
|
+
<td class="parameter_name"><p>pspec</p></td>
|
1477
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> for the new property</p></td>
|
1478
|
+
<td class="parameter_annotations"> </td>
|
1479
|
+
</tr>
|
1480
|
+
</tbody>
|
1481
|
+
</table></div>
|
1482
|
+
</div>
|
1483
|
+
<p class="since">Since 2.4</p>
|
1484
|
+
</div>
|
1485
|
+
<hr>
|
1486
|
+
<div class="refsect2">
|
1487
|
+
<a name="g-object-interface-find-property"></a><h3>g_object_interface_find_property ()</h3>
|
1488
|
+
<pre class="programlisting"><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="returnvalue">GParamSpec</span></a> *
|
1489
|
+
g_object_interface_find_property (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> g_iface</code></em>,
|
1490
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *property_name</code></em>);</pre>
|
1491
|
+
<p>Find the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> with the given name for an
|
1492
|
+
interface. Generally, the interface vtable passed in as <em class="parameter"><code>g_iface</code></em>
|
1493
|
+
|
1494
|
+
will be the default vtable from <a class="link" href="gobject-Type-Information.html#g-type-default-interface-ref" title="g_type_default_interface_ref ()"><code class="function">g_type_default_interface_ref()</code></a>, or,
|
1495
|
+
if you know the interface has already been loaded,
|
1496
|
+
<a class="link" href="gobject-Type-Information.html#g-type-default-interface-peek" title="g_type_default_interface_peek ()"><code class="function">g_type_default_interface_peek()</code></a>.</p>
|
1497
|
+
<div class="refsect3">
|
1498
|
+
<a name="id-1.4.5.10.21.5"></a><h4>Parameters</h4>
|
1499
|
+
<div class="informaltable"><table width="100%" border="0">
|
1500
|
+
<colgroup>
|
1501
|
+
<col width="150px" class="parameters_name">
|
1502
|
+
<col class="parameters_description">
|
1503
|
+
<col width="200px" class="parameters_annotations">
|
1504
|
+
</colgroup>
|
1505
|
+
<tbody>
|
1506
|
+
<tr>
|
1507
|
+
<td class="parameter_name"><p>g_iface</p></td>
|
1508
|
+
<td class="parameter_description"><p>any interface vtable for the interface, or the default
|
1509
|
+
vtable for the interface</p></td>
|
1510
|
+
<td class="parameter_annotations"> </td>
|
1511
|
+
</tr>
|
1512
|
+
<tr>
|
1513
|
+
<td class="parameter_name"><p>property_name</p></td>
|
1514
|
+
<td class="parameter_description"><p>name of a property to lookup.</p></td>
|
1515
|
+
<td class="parameter_annotations"> </td>
|
1516
|
+
</tr>
|
1517
|
+
</tbody>
|
1518
|
+
</table></div>
|
1519
|
+
</div>
|
1520
|
+
<div class="refsect3">
|
1521
|
+
<a name="id-1.4.5.10.21.6"></a><h4>Returns</h4>
|
1522
|
+
<p> the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> for the property of the
|
1523
|
+
interface with the name <em class="parameter"><code>property_name</code></em>
|
1524
|
+
, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no
|
1525
|
+
such property exists. </p>
|
1526
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1527
|
+
</div>
|
1528
|
+
<p class="since">Since 2.4</p>
|
1529
|
+
</div>
|
1530
|
+
<hr>
|
1531
|
+
<div class="refsect2">
|
1532
|
+
<a name="g-object-interface-list-properties"></a><h3>g_object_interface_list_properties ()</h3>
|
1533
|
+
<pre class="programlisting"><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="returnvalue">GParamSpec</span></a> **
|
1534
|
+
g_object_interface_list_properties (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> g_iface</code></em>,
|
1535
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *n_properties_p</code></em>);</pre>
|
1536
|
+
<p>Lists the properties of an interface.Generally, the interface
|
1537
|
+
vtable passed in as <em class="parameter"><code>g_iface</code></em>
|
1538
|
+
will be the default vtable from
|
1539
|
+
<a class="link" href="gobject-Type-Information.html#g-type-default-interface-ref" title="g_type_default_interface_ref ()"><code class="function">g_type_default_interface_ref()</code></a>, or, if you know the interface has
|
1540
|
+
already been loaded, <a class="link" href="gobject-Type-Information.html#g-type-default-interface-peek" title="g_type_default_interface_peek ()"><code class="function">g_type_default_interface_peek()</code></a>.</p>
|
1541
|
+
<div class="refsect3">
|
1542
|
+
<a name="id-1.4.5.10.22.5"></a><h4>Parameters</h4>
|
1543
|
+
<div class="informaltable"><table width="100%" border="0">
|
1544
|
+
<colgroup>
|
1545
|
+
<col width="150px" class="parameters_name">
|
1546
|
+
<col class="parameters_description">
|
1547
|
+
<col width="200px" class="parameters_annotations">
|
1548
|
+
</colgroup>
|
1549
|
+
<tbody>
|
1550
|
+
<tr>
|
1551
|
+
<td class="parameter_name"><p>g_iface</p></td>
|
1552
|
+
<td class="parameter_description"><p>any interface vtable for the interface, or the default
|
1553
|
+
vtable for the interface</p></td>
|
1554
|
+
<td class="parameter_annotations"> </td>
|
1555
|
+
</tr>
|
1556
|
+
<tr>
|
1557
|
+
<td class="parameter_name"><p>n_properties_p</p></td>
|
1558
|
+
<td class="parameter_description"><p> location to store number of properties returned. </p></td>
|
1559
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
1560
|
+
</tr>
|
1561
|
+
</tbody>
|
1562
|
+
</table></div>
|
1563
|
+
</div>
|
1564
|
+
<div class="refsect3">
|
1565
|
+
<a name="id-1.4.5.10.22.6"></a><h4>Returns</h4>
|
1566
|
+
<p> a
|
1567
|
+
pointer to an array of pointers to <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a>
|
1568
|
+
structures. The paramspecs are owned by GLib, but the
|
1569
|
+
array should be freed with <a href="../glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when you are done with
|
1570
|
+
it. </p>
|
1571
|
+
<p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_properties_p][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span></p>
|
1572
|
+
</div>
|
1573
|
+
<p class="since">Since 2.4</p>
|
1574
|
+
</div>
|
1575
|
+
<hr>
|
1576
|
+
<div class="refsect2">
|
1577
|
+
<a name="g-object-new"></a><h3>g_object_new ()</h3>
|
1578
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
1579
|
+
g_object_new (<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> object_type</code></em>,
|
1580
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_property_name</code></em>,
|
1581
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
1582
|
+
<p>Creates a new instance of a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> subtype and sets its properties.</p>
|
1583
|
+
<p>Construction parameters (see <a class="link" href="gobject-GParamSpec.html#G-PARAM-CONSTRUCT:CAPS"><span class="type">G_PARAM_CONSTRUCT</span></a>, <a class="link" href="gobject-GParamSpec.html#G-PARAM-CONSTRUCT-ONLY:CAPS"><span class="type">G_PARAM_CONSTRUCT_ONLY</span></a>)
|
1584
|
+
which are not explicitly specified are set to their default values.</p>
|
1585
|
+
<div class="refsect3">
|
1586
|
+
<a name="id-1.4.5.10.23.6"></a><h4>Parameters</h4>
|
1587
|
+
<div class="informaltable"><table width="100%" border="0">
|
1588
|
+
<colgroup>
|
1589
|
+
<col width="150px" class="parameters_name">
|
1590
|
+
<col class="parameters_description">
|
1591
|
+
<col width="200px" class="parameters_annotations">
|
1592
|
+
</colgroup>
|
1593
|
+
<tbody>
|
1594
|
+
<tr>
|
1595
|
+
<td class="parameter_name"><p>object_type</p></td>
|
1596
|
+
<td class="parameter_description"><p>the type id of the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> subtype to instantiate</p></td>
|
1597
|
+
<td class="parameter_annotations"> </td>
|
1598
|
+
</tr>
|
1599
|
+
<tr>
|
1600
|
+
<td class="parameter_name"><p>first_property_name</p></td>
|
1601
|
+
<td class="parameter_description"><p>the name of the first property</p></td>
|
1602
|
+
<td class="parameter_annotations"> </td>
|
1603
|
+
</tr>
|
1604
|
+
<tr>
|
1605
|
+
<td class="parameter_name"><p>...</p></td>
|
1606
|
+
<td class="parameter_description"><p>the value of the first property, followed optionally by more
|
1607
|
+
name/value pairs, followed by <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
1608
|
+
<td class="parameter_annotations"> </td>
|
1609
|
+
</tr>
|
1610
|
+
</tbody>
|
1611
|
+
</table></div>
|
1612
|
+
</div>
|
1613
|
+
<div class="refsect3">
|
1614
|
+
<a name="id-1.4.5.10.23.7"></a><h4>Returns</h4>
|
1615
|
+
<p> a new instance of <em class="parameter"><code>object_type</code></em>
|
1616
|
+
. </p>
|
1617
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1618
|
+
</div>
|
1619
|
+
</div>
|
1620
|
+
<hr>
|
1621
|
+
<div class="refsect2">
|
1622
|
+
<a name="g-object-newv"></a><h3>g_object_newv ()</h3>
|
1623
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
1624
|
+
g_object_newv (<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> object_type</code></em>,
|
1625
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_parameters</code></em>,
|
1626
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GParameter" title="struct GParameter"><span class="type">GParameter</span></a> *parameters</code></em>);</pre>
|
1627
|
+
<p>Creates a new instance of a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> subtype and sets its properties.</p>
|
1628
|
+
<p>Construction parameters (see <a class="link" href="gobject-GParamSpec.html#G-PARAM-CONSTRUCT:CAPS"><span class="type">G_PARAM_CONSTRUCT</span></a>, <a class="link" href="gobject-GParamSpec.html#G-PARAM-CONSTRUCT-ONLY:CAPS"><span class="type">G_PARAM_CONSTRUCT_ONLY</span></a>)
|
1629
|
+
which are not explicitly specified are set to their default values.</p>
|
1630
|
+
<p>Rename to: g_object_new</p>
|
1631
|
+
<div class="refsect3">
|
1632
|
+
<a name="id-1.4.5.10.24.7"></a><h4>Parameters</h4>
|
1633
|
+
<div class="informaltable"><table width="100%" border="0">
|
1634
|
+
<colgroup>
|
1635
|
+
<col width="150px" class="parameters_name">
|
1636
|
+
<col class="parameters_description">
|
1637
|
+
<col width="200px" class="parameters_annotations">
|
1638
|
+
</colgroup>
|
1639
|
+
<tbody>
|
1640
|
+
<tr>
|
1641
|
+
<td class="parameter_name"><p>object_type</p></td>
|
1642
|
+
<td class="parameter_description"><p>the type id of the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> subtype to instantiate</p></td>
|
1643
|
+
<td class="parameter_annotations"> </td>
|
1644
|
+
</tr>
|
1645
|
+
<tr>
|
1646
|
+
<td class="parameter_name"><p>n_parameters</p></td>
|
1647
|
+
<td class="parameter_description"><p>the length of the <em class="parameter"><code>parameters</code></em>
|
1648
|
+
array</p></td>
|
1649
|
+
<td class="parameter_annotations"> </td>
|
1650
|
+
</tr>
|
1651
|
+
<tr>
|
1652
|
+
<td class="parameter_name"><p>parameters</p></td>
|
1653
|
+
<td class="parameter_description"><p> an array of <a class="link" href="gobject-The-Base-Object-Type.html#GParameter" title="struct GParameter"><span class="type">GParameter</span></a>. </p></td>
|
1654
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_parameters]</span></td>
|
1655
|
+
</tr>
|
1656
|
+
</tbody>
|
1657
|
+
</table></div>
|
1658
|
+
</div>
|
1659
|
+
<div class="refsect3">
|
1660
|
+
<a name="id-1.4.5.10.24.8"></a><h4>Returns</h4>
|
1661
|
+
<p> a new instance of
|
1662
|
+
<em class="parameter"><code>object_type</code></em>
|
1663
|
+
. </p>
|
1664
|
+
<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GObject.Object][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1665
|
+
</div>
|
1666
|
+
</div>
|
1667
|
+
<hr>
|
1668
|
+
<div class="refsect2">
|
1669
|
+
<a name="g-object-ref"></a><h3>g_object_ref ()</h3>
|
1670
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
1671
|
+
g_object_ref (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>);</pre>
|
1672
|
+
<p>Increases the reference count of <em class="parameter"><code>object</code></em>
|
1673
|
+
.</p>
|
1674
|
+
<div class="refsect3">
|
1675
|
+
<a name="id-1.4.5.10.25.5"></a><h4>Parameters</h4>
|
1676
|
+
<div class="informaltable"><table width="100%" border="0">
|
1677
|
+
<colgroup>
|
1678
|
+
<col width="150px" class="parameters_name">
|
1679
|
+
<col class="parameters_description">
|
1680
|
+
<col width="200px" class="parameters_annotations">
|
1681
|
+
</colgroup>
|
1682
|
+
<tbody><tr>
|
1683
|
+
<td class="parameter_name"><p>object</p></td>
|
1684
|
+
<td class="parameter_description"><p> a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>. </p></td>
|
1685
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GObject.Object]</span></td>
|
1686
|
+
</tr></tbody>
|
1687
|
+
</table></div>
|
1688
|
+
</div>
|
1689
|
+
<div class="refsect3">
|
1690
|
+
<a name="id-1.4.5.10.25.6"></a><h4>Returns</h4>
|
1691
|
+
<p> the same <em class="parameter"><code>object</code></em>
|
1692
|
+
. </p>
|
1693
|
+
<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GObject.Object][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1694
|
+
</div>
|
1695
|
+
</div>
|
1696
|
+
<hr>
|
1697
|
+
<div class="refsect2">
|
1698
|
+
<a name="g-object-unref"></a><h3>g_object_unref ()</h3>
|
1699
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1700
|
+
g_object_unref (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>);</pre>
|
1701
|
+
<p>Decreases the reference count of <em class="parameter"><code>object</code></em>
|
1702
|
+
. When its reference count
|
1703
|
+
drops to 0, the object is finalized (i.e. its memory is freed).</p>
|
1704
|
+
<div class="refsect3">
|
1705
|
+
<a name="id-1.4.5.10.26.5"></a><h4>Parameters</h4>
|
1706
|
+
<div class="informaltable"><table width="100%" border="0">
|
1707
|
+
<colgroup>
|
1708
|
+
<col width="150px" class="parameters_name">
|
1709
|
+
<col class="parameters_description">
|
1710
|
+
<col width="200px" class="parameters_annotations">
|
1711
|
+
</colgroup>
|
1712
|
+
<tbody><tr>
|
1713
|
+
<td class="parameter_name"><p>object</p></td>
|
1714
|
+
<td class="parameter_description"><p> a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>. </p></td>
|
1715
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GObject.Object]</span></td>
|
1716
|
+
</tr></tbody>
|
1717
|
+
</table></div>
|
1718
|
+
</div>
|
1719
|
+
</div>
|
1720
|
+
<hr>
|
1721
|
+
<div class="refsect2">
|
1722
|
+
<a name="g-object-ref-sink"></a><h3>g_object_ref_sink ()</h3>
|
1723
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
1724
|
+
g_object_ref_sink (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>);</pre>
|
1725
|
+
<p>Increase the reference count of <em class="parameter"><code>object</code></em>
|
1726
|
+
, and possibly remove the
|
1727
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#floating-ref" title="Floating references">floating</a> reference, if <em class="parameter"><code>object</code></em>
|
1728
|
+
has a floating reference.</p>
|
1729
|
+
<p>In other words, if the object is floating, then this call "assumes
|
1730
|
+
ownership" of the floating reference, converting it to a normal
|
1731
|
+
reference by clearing the floating flag while leaving the reference
|
1732
|
+
count unchanged. If the object is not floating, then this call
|
1733
|
+
adds a new normal reference increasing the reference count by one.</p>
|
1734
|
+
<div class="refsect3">
|
1735
|
+
<a name="id-1.4.5.10.27.6"></a><h4>Parameters</h4>
|
1736
|
+
<div class="informaltable"><table width="100%" border="0">
|
1737
|
+
<colgroup>
|
1738
|
+
<col width="150px" class="parameters_name">
|
1739
|
+
<col class="parameters_description">
|
1740
|
+
<col width="200px" class="parameters_annotations">
|
1741
|
+
</colgroup>
|
1742
|
+
<tbody><tr>
|
1743
|
+
<td class="parameter_name"><p>object</p></td>
|
1744
|
+
<td class="parameter_description"><p> a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>. </p></td>
|
1745
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GObject.Object]</span></td>
|
1746
|
+
</tr></tbody>
|
1747
|
+
</table></div>
|
1748
|
+
</div>
|
1749
|
+
<div class="refsect3">
|
1750
|
+
<a name="id-1.4.5.10.27.7"></a><h4>Returns</h4>
|
1751
|
+
<p> <em class="parameter"><code>object</code></em>
|
1752
|
+
. </p>
|
1753
|
+
<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GObject.Object][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1754
|
+
</div>
|
1755
|
+
<p class="since">Since 2.10</p>
|
1756
|
+
</div>
|
1757
|
+
<hr>
|
1758
|
+
<div class="refsect2">
|
1759
|
+
<a name="g-clear-object"></a><h3>g_clear_object ()</h3>
|
1760
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1761
|
+
g_clear_object (<em class="parameter"><code>volatile <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> **object_ptr</code></em>);</pre>
|
1762
|
+
<p>Clears a reference to a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.</p>
|
1763
|
+
<p><em class="parameter"><code>object_ptr</code></em>
|
1764
|
+
must not be <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
1765
|
+
<p>If the reference is <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> then this function does nothing.
|
1766
|
+
Otherwise, the reference count of the object is decreased and the
|
1767
|
+
pointer is set to <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
1768
|
+
<p>A macro is also included that allows this function to be used without
|
1769
|
+
pointer casts.</p>
|
1770
|
+
<div class="refsect3">
|
1771
|
+
<a name="id-1.4.5.10.28.8"></a><h4>Parameters</h4>
|
1772
|
+
<div class="informaltable"><table width="100%" border="0">
|
1773
|
+
<colgroup>
|
1774
|
+
<col width="150px" class="parameters_name">
|
1775
|
+
<col class="parameters_description">
|
1776
|
+
<col width="200px" class="parameters_annotations">
|
1777
|
+
</colgroup>
|
1778
|
+
<tbody><tr>
|
1779
|
+
<td class="parameter_name"><p>object_ptr</p></td>
|
1780
|
+
<td class="parameter_description"><p>a pointer to a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> reference</p></td>
|
1781
|
+
<td class="parameter_annotations"> </td>
|
1782
|
+
</tr></tbody>
|
1783
|
+
</table></div>
|
1784
|
+
</div>
|
1785
|
+
<p class="since">Since 2.28</p>
|
1786
|
+
</div>
|
1787
|
+
<hr>
|
1788
|
+
<div class="refsect2">
|
1789
|
+
<a name="g-object-is-floating"></a><h3>g_object_is_floating ()</h3>
|
1790
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1791
|
+
g_object_is_floating (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>);</pre>
|
1792
|
+
<p>Checks whether <em class="parameter"><code>object</code></em>
|
1793
|
+
has a <a class="link" href="gobject-The-Base-Object-Type.html#floating-ref" title="Floating references">floating</a> reference.</p>
|
1794
|
+
<div class="refsect3">
|
1795
|
+
<a name="id-1.4.5.10.29.5"></a><h4>Parameters</h4>
|
1796
|
+
<div class="informaltable"><table width="100%" border="0">
|
1797
|
+
<colgroup>
|
1798
|
+
<col width="150px" class="parameters_name">
|
1799
|
+
<col class="parameters_description">
|
1800
|
+
<col width="200px" class="parameters_annotations">
|
1801
|
+
</colgroup>
|
1802
|
+
<tbody><tr>
|
1803
|
+
<td class="parameter_name"><p>object</p></td>
|
1804
|
+
<td class="parameter_description"><p> a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>. </p></td>
|
1805
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GObject.Object]</span></td>
|
1806
|
+
</tr></tbody>
|
1807
|
+
</table></div>
|
1808
|
+
</div>
|
1809
|
+
<div class="refsect3">
|
1810
|
+
<a name="id-1.4.5.10.29.6"></a><h4>Returns</h4>
|
1811
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>object</code></em>
|
1812
|
+
has a floating reference</p>
|
1813
|
+
<p></p>
|
1814
|
+
</div>
|
1815
|
+
<p class="since">Since 2.10</p>
|
1816
|
+
</div>
|
1817
|
+
<hr>
|
1818
|
+
<div class="refsect2">
|
1819
|
+
<a name="g-object-force-floating"></a><h3>g_object_force_floating ()</h3>
|
1820
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1821
|
+
g_object_force_floating (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>);</pre>
|
1822
|
+
<p>This function is intended for <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> implementations to re-enforce
|
1823
|
+
a <a class="link" href="gobject-The-Base-Object-Type.html#floating-ref" title="Floating references">floating</a> object reference. Doing this is seldom
|
1824
|
+
required: all <a href="gobject-The-Base-Object-Type.html#GInitiallyUnowned"><span class="type">GInitiallyUnowneds</span></a> are created with a floating reference
|
1825
|
+
which usually just needs to be sunken by calling <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref-sink" title="g_object_ref_sink ()"><code class="function">g_object_ref_sink()</code></a>.</p>
|
1826
|
+
<div class="refsect3">
|
1827
|
+
<a name="id-1.4.5.10.30.5"></a><h4>Parameters</h4>
|
1828
|
+
<div class="informaltable"><table width="100%" border="0">
|
1829
|
+
<colgroup>
|
1830
|
+
<col width="150px" class="parameters_name">
|
1831
|
+
<col class="parameters_description">
|
1832
|
+
<col width="200px" class="parameters_annotations">
|
1833
|
+
</colgroup>
|
1834
|
+
<tbody><tr>
|
1835
|
+
<td class="parameter_name"><p>object</p></td>
|
1836
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
1837
|
+
<td class="parameter_annotations"> </td>
|
1838
|
+
</tr></tbody>
|
1839
|
+
</table></div>
|
1840
|
+
</div>
|
1841
|
+
<p class="since">Since 2.10</p>
|
1842
|
+
</div>
|
1843
|
+
<hr>
|
1844
|
+
<div class="refsect2">
|
1845
|
+
<a name="GWeakNotify"></a><h3>GWeakNotify ()</h3>
|
1846
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1847
|
+
<span class="c_punctuation">(</span>*GWeakNotify<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
1848
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *where_the_object_was</code></em>);</pre>
|
1849
|
+
<p>A <a class="link" href="gobject-The-Base-Object-Type.html#GWeakNotify" title="GWeakNotify ()"><span class="type">GWeakNotify</span></a> function can be added to an object as a callback that gets
|
1850
|
+
triggered when the object is finalized. Since the object is already being
|
1851
|
+
finalized when the <a class="link" href="gobject-The-Base-Object-Type.html#GWeakNotify" title="GWeakNotify ()"><span class="type">GWeakNotify</span></a> is called, there's not much you could do
|
1852
|
+
with the object, apart from e.g. using its address as hash-index or the like.</p>
|
1853
|
+
<div class="refsect3">
|
1854
|
+
<a name="id-1.4.5.10.31.5"></a><h4>Parameters</h4>
|
1855
|
+
<div class="informaltable"><table width="100%" border="0">
|
1856
|
+
<colgroup>
|
1857
|
+
<col width="150px" class="parameters_name">
|
1858
|
+
<col class="parameters_description">
|
1859
|
+
<col width="200px" class="parameters_annotations">
|
1860
|
+
</colgroup>
|
1861
|
+
<tbody>
|
1862
|
+
<tr>
|
1863
|
+
<td class="parameter_name"><p>data</p></td>
|
1864
|
+
<td class="parameter_description"><p>data that was provided when the weak reference was established</p></td>
|
1865
|
+
<td class="parameter_annotations"> </td>
|
1866
|
+
</tr>
|
1867
|
+
<tr>
|
1868
|
+
<td class="parameter_name"><p>where_the_object_was</p></td>
|
1869
|
+
<td class="parameter_description"><p>the object being finalized</p></td>
|
1870
|
+
<td class="parameter_annotations"> </td>
|
1871
|
+
</tr>
|
1872
|
+
</tbody>
|
1873
|
+
</table></div>
|
1874
|
+
</div>
|
1875
|
+
</div>
|
1876
|
+
<hr>
|
1877
|
+
<div class="refsect2">
|
1878
|
+
<a name="g-object-weak-ref"></a><h3>g_object_weak_ref ()</h3>
|
1879
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1880
|
+
g_object_weak_ref (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
1881
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GWeakNotify" title="GWeakNotify ()"><span class="type">GWeakNotify</span></a> notify</code></em>,
|
1882
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1883
|
+
<p>Adds a weak reference callback to an object. Weak references are
|
1884
|
+
used for notification when an object is finalized. They are called
|
1885
|
+
"weak references" because they allow you to safely hold a pointer
|
1886
|
+
to an object without calling <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref" title="g_object_ref ()"><code class="function">g_object_ref()</code></a> (<a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref" title="g_object_ref ()"><code class="function">g_object_ref()</code></a> adds a
|
1887
|
+
strong reference, that is, forces the object to stay alive).</p>
|
1888
|
+
<p>Note that the weak references created by this method are not
|
1889
|
+
thread-safe: they cannot safely be used in one thread if the
|
1890
|
+
object's last <a class="link" href="gobject-The-Base-Object-Type.html#g-object-unref" title="g_object_unref ()"><code class="function">g_object_unref()</code></a> might happen in another thread.
|
1891
|
+
Use <a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> if thread-safety is required.</p>
|
1892
|
+
<div class="refsect3">
|
1893
|
+
<a name="id-1.4.5.10.32.6"></a><h4>Parameters</h4>
|
1894
|
+
<div class="informaltable"><table width="100%" border="0">
|
1895
|
+
<colgroup>
|
1896
|
+
<col width="150px" class="parameters_name">
|
1897
|
+
<col class="parameters_description">
|
1898
|
+
<col width="200px" class="parameters_annotations">
|
1899
|
+
</colgroup>
|
1900
|
+
<tbody>
|
1901
|
+
<tr>
|
1902
|
+
<td class="parameter_name"><p>object</p></td>
|
1903
|
+
<td class="parameter_description"><p><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to reference weakly</p></td>
|
1904
|
+
<td class="parameter_annotations"> </td>
|
1905
|
+
</tr>
|
1906
|
+
<tr>
|
1907
|
+
<td class="parameter_name"><p>notify</p></td>
|
1908
|
+
<td class="parameter_description"><p>callback to invoke before the object is freed</p></td>
|
1909
|
+
<td class="parameter_annotations"> </td>
|
1910
|
+
</tr>
|
1911
|
+
<tr>
|
1912
|
+
<td class="parameter_name"><p>data</p></td>
|
1913
|
+
<td class="parameter_description"><p>extra data to pass to notify</p></td>
|
1914
|
+
<td class="parameter_annotations"> </td>
|
1915
|
+
</tr>
|
1916
|
+
</tbody>
|
1917
|
+
</table></div>
|
1918
|
+
</div>
|
1919
|
+
</div>
|
1920
|
+
<hr>
|
1921
|
+
<div class="refsect2">
|
1922
|
+
<a name="g-object-weak-unref"></a><h3>g_object_weak_unref ()</h3>
|
1923
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1924
|
+
g_object_weak_unref (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
1925
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GWeakNotify" title="GWeakNotify ()"><span class="type">GWeakNotify</span></a> notify</code></em>,
|
1926
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1927
|
+
<p>Removes a weak reference callback to an object.</p>
|
1928
|
+
<div class="refsect3">
|
1929
|
+
<a name="id-1.4.5.10.33.5"></a><h4>Parameters</h4>
|
1930
|
+
<div class="informaltable"><table width="100%" border="0">
|
1931
|
+
<colgroup>
|
1932
|
+
<col width="150px" class="parameters_name">
|
1933
|
+
<col class="parameters_description">
|
1934
|
+
<col width="200px" class="parameters_annotations">
|
1935
|
+
</colgroup>
|
1936
|
+
<tbody>
|
1937
|
+
<tr>
|
1938
|
+
<td class="parameter_name"><p>object</p></td>
|
1939
|
+
<td class="parameter_description"><p><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to remove a weak reference from</p></td>
|
1940
|
+
<td class="parameter_annotations"> </td>
|
1941
|
+
</tr>
|
1942
|
+
<tr>
|
1943
|
+
<td class="parameter_name"><p>notify</p></td>
|
1944
|
+
<td class="parameter_description"><p>callback to search for</p></td>
|
1945
|
+
<td class="parameter_annotations"> </td>
|
1946
|
+
</tr>
|
1947
|
+
<tr>
|
1948
|
+
<td class="parameter_name"><p>data</p></td>
|
1949
|
+
<td class="parameter_description"><p>data to search for</p></td>
|
1950
|
+
<td class="parameter_annotations"> </td>
|
1951
|
+
</tr>
|
1952
|
+
</tbody>
|
1953
|
+
</table></div>
|
1954
|
+
</div>
|
1955
|
+
</div>
|
1956
|
+
<hr>
|
1957
|
+
<div class="refsect2">
|
1958
|
+
<a name="g-object-add-weak-pointer"></a><h3>g_object_add_weak_pointer ()</h3>
|
1959
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1960
|
+
g_object_add_weak_pointer (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
1961
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> *weak_pointer_location</code></em>);</pre>
|
1962
|
+
<p>Adds a weak reference from weak_pointer to <em class="parameter"><code>object</code></em>
|
1963
|
+
to indicate that
|
1964
|
+
the pointer located at <em class="parameter"><code>weak_pointer_location</code></em>
|
1965
|
+
is only valid during
|
1966
|
+
the lifetime of <em class="parameter"><code>object</code></em>
|
1967
|
+
. When the <em class="parameter"><code>object</code></em>
|
1968
|
+
is finalized,
|
1969
|
+
<em class="parameter"><code>weak_pointer</code></em>
|
1970
|
+
will be set to <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
1971
|
+
<p>Note that as with <a class="link" href="gobject-The-Base-Object-Type.html#g-object-weak-ref" title="g_object_weak_ref ()"><code class="function">g_object_weak_ref()</code></a>, the weak references created by
|
1972
|
+
this method are not thread-safe: they cannot safely be used in one
|
1973
|
+
thread if the object's last <a class="link" href="gobject-The-Base-Object-Type.html#g-object-unref" title="g_object_unref ()"><code class="function">g_object_unref()</code></a> might happen in another
|
1974
|
+
thread. Use <a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> if thread-safety is required.</p>
|
1975
|
+
<div class="refsect3">
|
1976
|
+
<a name="id-1.4.5.10.34.6"></a><h4>Parameters</h4>
|
1977
|
+
<div class="informaltable"><table width="100%" border="0">
|
1978
|
+
<colgroup>
|
1979
|
+
<col width="150px" class="parameters_name">
|
1980
|
+
<col class="parameters_description">
|
1981
|
+
<col width="200px" class="parameters_annotations">
|
1982
|
+
</colgroup>
|
1983
|
+
<tbody>
|
1984
|
+
<tr>
|
1985
|
+
<td class="parameter_name"><p>object</p></td>
|
1986
|
+
<td class="parameter_description"><p>The object that should be weak referenced.</p></td>
|
1987
|
+
<td class="parameter_annotations"> </td>
|
1988
|
+
</tr>
|
1989
|
+
<tr>
|
1990
|
+
<td class="parameter_name"><p>weak_pointer_location</p></td>
|
1991
|
+
<td class="parameter_description"><p> The memory address of a pointer. </p></td>
|
1992
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
|
1993
|
+
</tr>
|
1994
|
+
</tbody>
|
1995
|
+
</table></div>
|
1996
|
+
</div>
|
1997
|
+
</div>
|
1998
|
+
<hr>
|
1999
|
+
<div class="refsect2">
|
2000
|
+
<a name="g-object-remove-weak-pointer"></a><h3>g_object_remove_weak_pointer ()</h3>
|
2001
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2002
|
+
g_object_remove_weak_pointer (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2003
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> *weak_pointer_location</code></em>);</pre>
|
2004
|
+
<p>Removes a weak reference from <em class="parameter"><code>object</code></em>
|
2005
|
+
that was previously added
|
2006
|
+
using <a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-weak-pointer" title="g_object_add_weak_pointer ()"><code class="function">g_object_add_weak_pointer()</code></a>. The <em class="parameter"><code>weak_pointer_location</code></em>
|
2007
|
+
has
|
2008
|
+
to match the one used with <a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-weak-pointer" title="g_object_add_weak_pointer ()"><code class="function">g_object_add_weak_pointer()</code></a>.</p>
|
2009
|
+
<div class="refsect3">
|
2010
|
+
<a name="id-1.4.5.10.35.5"></a><h4>Parameters</h4>
|
2011
|
+
<div class="informaltable"><table width="100%" border="0">
|
2012
|
+
<colgroup>
|
2013
|
+
<col width="150px" class="parameters_name">
|
2014
|
+
<col class="parameters_description">
|
2015
|
+
<col width="200px" class="parameters_annotations">
|
2016
|
+
</colgroup>
|
2017
|
+
<tbody>
|
2018
|
+
<tr>
|
2019
|
+
<td class="parameter_name"><p>object</p></td>
|
2020
|
+
<td class="parameter_description"><p>The object that is weak referenced.</p></td>
|
2021
|
+
<td class="parameter_annotations"> </td>
|
2022
|
+
</tr>
|
2023
|
+
<tr>
|
2024
|
+
<td class="parameter_name"><p>weak_pointer_location</p></td>
|
2025
|
+
<td class="parameter_description"><p> The memory address of a pointer. </p></td>
|
2026
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
|
2027
|
+
</tr>
|
2028
|
+
</tbody>
|
2029
|
+
</table></div>
|
2030
|
+
</div>
|
2031
|
+
</div>
|
2032
|
+
<hr>
|
2033
|
+
<div class="refsect2">
|
2034
|
+
<a name="GToggleNotify"></a><h3>GToggleNotify ()</h3>
|
2035
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2036
|
+
<span class="c_punctuation">(</span>*GToggleNotify<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
2037
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2038
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_last_ref</code></em>);</pre>
|
2039
|
+
<p>A callback function used for notification when the state
|
2040
|
+
of a toggle reference changes. See <a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-toggle-ref" title="g_object_add_toggle_ref ()"><code class="function">g_object_add_toggle_ref()</code></a>.</p>
|
2041
|
+
<div class="refsect3">
|
2042
|
+
<a name="id-1.4.5.10.36.5"></a><h4>Parameters</h4>
|
2043
|
+
<div class="informaltable"><table width="100%" border="0">
|
2044
|
+
<colgroup>
|
2045
|
+
<col width="150px" class="parameters_name">
|
2046
|
+
<col class="parameters_description">
|
2047
|
+
<col width="200px" class="parameters_annotations">
|
2048
|
+
</colgroup>
|
2049
|
+
<tbody>
|
2050
|
+
<tr>
|
2051
|
+
<td class="parameter_name"><p>data</p></td>
|
2052
|
+
<td class="parameter_description"><p>Callback data passed to <a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-toggle-ref" title="g_object_add_toggle_ref ()"><code class="function">g_object_add_toggle_ref()</code></a></p></td>
|
2053
|
+
<td class="parameter_annotations"> </td>
|
2054
|
+
</tr>
|
2055
|
+
<tr>
|
2056
|
+
<td class="parameter_name"><p>object</p></td>
|
2057
|
+
<td class="parameter_description"><p>The object on which <a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-toggle-ref" title="g_object_add_toggle_ref ()"><code class="function">g_object_add_toggle_ref()</code></a> was called.</p></td>
|
2058
|
+
<td class="parameter_annotations"> </td>
|
2059
|
+
</tr>
|
2060
|
+
<tr>
|
2061
|
+
<td class="parameter_name"><p>is_last_ref</p></td>
|
2062
|
+
<td class="parameter_description"><p><a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the toggle reference is now the
|
2063
|
+
last reference to the object. <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the toggle
|
2064
|
+
reference was the last reference and there are now other
|
2065
|
+
references.</p></td>
|
2066
|
+
<td class="parameter_annotations"> </td>
|
2067
|
+
</tr>
|
2068
|
+
</tbody>
|
2069
|
+
</table></div>
|
2070
|
+
</div>
|
2071
|
+
</div>
|
2072
|
+
<hr>
|
2073
|
+
<div class="refsect2">
|
2074
|
+
<a name="g-object-add-toggle-ref"></a><h3>g_object_add_toggle_ref ()</h3>
|
2075
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2076
|
+
g_object_add_toggle_ref (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2077
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GToggleNotify" title="GToggleNotify ()"><span class="type">GToggleNotify</span></a> notify</code></em>,
|
2078
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
2079
|
+
<p>Increases the reference count of the object by one and sets a
|
2080
|
+
callback to be called when all other references to the object are
|
2081
|
+
dropped, or when this is already the last reference to the object
|
2082
|
+
and another reference is established.</p>
|
2083
|
+
<p>This functionality is intended for binding <em class="parameter"><code>object</code></em>
|
2084
|
+
to a proxy
|
2085
|
+
object managed by another memory manager. This is done with two
|
2086
|
+
paired references: the strong reference added by
|
2087
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-toggle-ref" title="g_object_add_toggle_ref ()"><code class="function">g_object_add_toggle_ref()</code></a> and a reverse reference to the proxy
|
2088
|
+
object which is either a strong reference or weak reference.</p>
|
2089
|
+
<p>The setup is that when there are no other references to <em class="parameter"><code>object</code></em>
|
2090
|
+
,
|
2091
|
+
only a weak reference is held in the reverse direction from <em class="parameter"><code>object</code></em>
|
2092
|
+
|
2093
|
+
to the proxy object, but when there are other references held to
|
2094
|
+
<em class="parameter"><code>object</code></em>
|
2095
|
+
, a strong reference is held. The <em class="parameter"><code>notify</code></em>
|
2096
|
+
callback is called
|
2097
|
+
when the reference from <em class="parameter"><code>object</code></em>
|
2098
|
+
to the proxy object should be
|
2099
|
+
"toggled" from strong to weak (<em class="parameter"><code>is_last_ref</code></em>
|
2100
|
+
true) or weak to strong
|
2101
|
+
(<em class="parameter"><code>is_last_ref</code></em>
|
2102
|
+
false).</p>
|
2103
|
+
<p>Since a (normal) reference must be held to the object before
|
2104
|
+
calling <a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-toggle-ref" title="g_object_add_toggle_ref ()"><code class="function">g_object_add_toggle_ref()</code></a>, the initial state of the reverse
|
2105
|
+
link is always strong.</p>
|
2106
|
+
<p>Multiple toggle references may be added to the same gobject,
|
2107
|
+
however if there are multiple toggle references to an object, none
|
2108
|
+
of them will ever be notified until all but one are removed. For
|
2109
|
+
this reason, you should only ever use a toggle reference if there
|
2110
|
+
is important state in the proxy object.</p>
|
2111
|
+
<div class="refsect3">
|
2112
|
+
<a name="id-1.4.5.10.37.9"></a><h4>Parameters</h4>
|
2113
|
+
<div class="informaltable"><table width="100%" border="0">
|
2114
|
+
<colgroup>
|
2115
|
+
<col width="150px" class="parameters_name">
|
2116
|
+
<col class="parameters_description">
|
2117
|
+
<col width="200px" class="parameters_annotations">
|
2118
|
+
</colgroup>
|
2119
|
+
<tbody>
|
2120
|
+
<tr>
|
2121
|
+
<td class="parameter_name"><p>object</p></td>
|
2122
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2123
|
+
<td class="parameter_annotations"> </td>
|
2124
|
+
</tr>
|
2125
|
+
<tr>
|
2126
|
+
<td class="parameter_name"><p>notify</p></td>
|
2127
|
+
<td class="parameter_description"><p>a function to call when this reference is the
|
2128
|
+
last reference to the object, or is no longer
|
2129
|
+
the last reference.</p></td>
|
2130
|
+
<td class="parameter_annotations"> </td>
|
2131
|
+
</tr>
|
2132
|
+
<tr>
|
2133
|
+
<td class="parameter_name"><p>data</p></td>
|
2134
|
+
<td class="parameter_description"><p>data to pass to <em class="parameter"><code>notify</code></em>
|
2135
|
+
</p></td>
|
2136
|
+
<td class="parameter_annotations"> </td>
|
2137
|
+
</tr>
|
2138
|
+
</tbody>
|
2139
|
+
</table></div>
|
2140
|
+
</div>
|
2141
|
+
<p class="since">Since 2.8</p>
|
2142
|
+
</div>
|
2143
|
+
<hr>
|
2144
|
+
<div class="refsect2">
|
2145
|
+
<a name="g-object-remove-toggle-ref"></a><h3>g_object_remove_toggle_ref ()</h3>
|
2146
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2147
|
+
g_object_remove_toggle_ref (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2148
|
+
<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GToggleNotify" title="GToggleNotify ()"><span class="type">GToggleNotify</span></a> notify</code></em>,
|
2149
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
2150
|
+
<p>Removes a reference added with <a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-toggle-ref" title="g_object_add_toggle_ref ()"><code class="function">g_object_add_toggle_ref()</code></a>. The
|
2151
|
+
reference count of the object is decreased by one.</p>
|
2152
|
+
<div class="refsect3">
|
2153
|
+
<a name="id-1.4.5.10.38.5"></a><h4>Parameters</h4>
|
2154
|
+
<div class="informaltable"><table width="100%" border="0">
|
2155
|
+
<colgroup>
|
2156
|
+
<col width="150px" class="parameters_name">
|
2157
|
+
<col class="parameters_description">
|
2158
|
+
<col width="200px" class="parameters_annotations">
|
2159
|
+
</colgroup>
|
2160
|
+
<tbody>
|
2161
|
+
<tr>
|
2162
|
+
<td class="parameter_name"><p>object</p></td>
|
2163
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2164
|
+
<td class="parameter_annotations"> </td>
|
2165
|
+
</tr>
|
2166
|
+
<tr>
|
2167
|
+
<td class="parameter_name"><p>notify</p></td>
|
2168
|
+
<td class="parameter_description"><p>a function to call when this reference is the
|
2169
|
+
last reference to the object, or is no longer
|
2170
|
+
the last reference.</p></td>
|
2171
|
+
<td class="parameter_annotations"> </td>
|
2172
|
+
</tr>
|
2173
|
+
<tr>
|
2174
|
+
<td class="parameter_name"><p>data</p></td>
|
2175
|
+
<td class="parameter_description"><p>data to pass to <em class="parameter"><code>notify</code></em>
|
2176
|
+
</p></td>
|
2177
|
+
<td class="parameter_annotations"> </td>
|
2178
|
+
</tr>
|
2179
|
+
</tbody>
|
2180
|
+
</table></div>
|
2181
|
+
</div>
|
2182
|
+
<p class="since">Since 2.8</p>
|
2183
|
+
</div>
|
2184
|
+
<hr>
|
2185
|
+
<div class="refsect2">
|
2186
|
+
<a name="g-object-connect"></a><h3>g_object_connect ()</h3>
|
2187
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
2188
|
+
g_object_connect (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>,
|
2189
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *signal_spec</code></em>,
|
2190
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
2191
|
+
<p>A convenience function to connect multiple signals at once.</p>
|
2192
|
+
<p>The signal specs expected by this function have the form
|
2193
|
+
"modifier::signal_name", where modifier can be one of the following:</p>
|
2194
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
2195
|
+
<li class="listitem"><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; "><li class="listitem"><p>signal: equivalent to g_signal_connect_data (..., NULL, 0)</p></li></ul></div></li>
|
2196
|
+
<li class="listitem"><p>object-signal, object_signal: equivalent to g_signal_connect_object (..., 0)</p></li>
|
2197
|
+
<li class="listitem"><p>swapped-signal, swapped_signal: equivalent to g_signal_connect_data (..., NULL, G_CONNECT_SWAPPED)</p></li>
|
2198
|
+
<li class="listitem"><p>swapped_object_signal, swapped-object-signal: equivalent to g_signal_connect_object (..., G_CONNECT_SWAPPED)</p></li>
|
2199
|
+
<li class="listitem"><p>signal_after, signal-after: equivalent to g_signal_connect_data (..., NULL, G_CONNECT_AFTER)</p></li>
|
2200
|
+
<li class="listitem"><p>object_signal_after, object-signal-after: equivalent to g_signal_connect_object (..., G_CONNECT_AFTER)</p></li>
|
2201
|
+
<li class="listitem"><p>swapped_signal_after, swapped-signal-after: equivalent to g_signal_connect_data (..., NULL, G_CONNECT_SWAPPED | G_CONNECT_AFTER)</p></li>
|
2202
|
+
<li class="listitem"><p>swapped_object_signal_after, swapped-object-signal-after: equivalent to g_signal_connect_object (..., G_CONNECT_SWAPPED | G_CONNECT_AFTER)</p></li>
|
2203
|
+
</ul></div>
|
2204
|
+
<div class="informalexample">
|
2205
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
2206
|
+
<tbody>
|
2207
|
+
<tr>
|
2208
|
+
<td class="listing_lines" align="right"><pre>1
|
2209
|
+
2
|
2210
|
+
3
|
2211
|
+
4
|
2212
|
+
5
|
2213
|
+
6
|
2214
|
+
7
|
2215
|
+
8</pre></td>
|
2216
|
+
<td class="listing_code"><pre class="programlisting"><span class="normal">menu</span><span class="symbol">-></span><span class="normal">toplevel </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-connect">g_object_connect</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-new">g_object_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">GTK_TYPE_WINDOW</span><span class="symbol">,</span>
|
2217
|
+
<span class="normal"> </span><span class="string">"type"</span><span class="symbol">,</span><span class="normal"> GTK_WINDOW_POPUP</span><span class="symbol">,</span>
|
2218
|
+
<span class="normal"> </span><span class="string">"child"</span><span class="symbol">,</span><span class="normal"> menu</span><span class="symbol">,</span>
|
2219
|
+
<span class="normal"> <a href="../glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">),</span>
|
2220
|
+
<span class="normal"> </span><span class="string">"signal::event"</span><span class="symbol">,</span><span class="normal"> gtk_menu_window_event</span><span class="symbol">,</span><span class="normal"> menu</span><span class="symbol">,</span>
|
2221
|
+
<span class="normal"> </span><span class="string">"signal::size_request"</span><span class="symbol">,</span><span class="normal"> gtk_menu_window_size_request</span><span class="symbol">,</span><span class="normal"> menu</span><span class="symbol">,</span>
|
2222
|
+
<span class="normal"> </span><span class="string">"signal::destroy"</span><span class="symbol">,</span><span class="normal"> <a href="http://developer.gnome.org/gtk2/GtkWidget.html#gtk-widget-destroyed">gtk_widget_destroyed</a></span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">menu</span><span class="symbol">-></span><span class="normal">toplevel</span><span class="symbol">,</span>
|
2223
|
+
<span class="normal"> <a href="../glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">);</span></pre></td>
|
2224
|
+
</tr>
|
2225
|
+
</tbody>
|
2226
|
+
</table>
|
2227
|
+
</div>
|
2228
|
+
|
2229
|
+
<p></p>
|
2230
|
+
<div class="refsect3">
|
2231
|
+
<a name="id-1.4.5.10.39.9"></a><h4>Parameters</h4>
|
2232
|
+
<div class="informaltable"><table width="100%" border="0">
|
2233
|
+
<colgroup>
|
2234
|
+
<col width="150px" class="parameters_name">
|
2235
|
+
<col class="parameters_description">
|
2236
|
+
<col width="200px" class="parameters_annotations">
|
2237
|
+
</colgroup>
|
2238
|
+
<tbody>
|
2239
|
+
<tr>
|
2240
|
+
<td class="parameter_name"><p>object</p></td>
|
2241
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2242
|
+
<td class="parameter_annotations"> </td>
|
2243
|
+
</tr>
|
2244
|
+
<tr>
|
2245
|
+
<td class="parameter_name"><p>signal_spec</p></td>
|
2246
|
+
<td class="parameter_description"><p>the spec for the first signal</p></td>
|
2247
|
+
<td class="parameter_annotations"> </td>
|
2248
|
+
</tr>
|
2249
|
+
<tr>
|
2250
|
+
<td class="parameter_name"><p>...</p></td>
|
2251
|
+
<td class="parameter_description"><p><a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()"><span class="type">GCallback</span></a> for the first signal, followed by data for the
|
2252
|
+
first signal, followed optionally by more signal
|
2253
|
+
spec/callback/data triples, followed by <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
2254
|
+
<td class="parameter_annotations"> </td>
|
2255
|
+
</tr>
|
2256
|
+
</tbody>
|
2257
|
+
</table></div>
|
2258
|
+
</div>
|
2259
|
+
<div class="refsect3">
|
2260
|
+
<a name="id-1.4.5.10.39.10"></a><h4>Returns</h4>
|
2261
|
+
<p> <em class="parameter"><code>object</code></em>
|
2262
|
+
. </p>
|
2263
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
2264
|
+
</div>
|
2265
|
+
</div>
|
2266
|
+
<hr>
|
2267
|
+
<div class="refsect2">
|
2268
|
+
<a name="g-object-disconnect"></a><h3>g_object_disconnect ()</h3>
|
2269
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2270
|
+
g_object_disconnect (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>,
|
2271
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *signal_spec</code></em>,
|
2272
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
2273
|
+
<p>A convenience function to disconnect multiple signals at once.</p>
|
2274
|
+
<p>The signal specs expected by this function have the form
|
2275
|
+
"any_signal", which means to disconnect any signal with matching
|
2276
|
+
callback and data, or "any_signal::signal_name", which only
|
2277
|
+
disconnects the signal named "signal_name".</p>
|
2278
|
+
<div class="refsect3">
|
2279
|
+
<a name="id-1.4.5.10.40.6"></a><h4>Parameters</h4>
|
2280
|
+
<div class="informaltable"><table width="100%" border="0">
|
2281
|
+
<colgroup>
|
2282
|
+
<col width="150px" class="parameters_name">
|
2283
|
+
<col class="parameters_description">
|
2284
|
+
<col width="200px" class="parameters_annotations">
|
2285
|
+
</colgroup>
|
2286
|
+
<tbody>
|
2287
|
+
<tr>
|
2288
|
+
<td class="parameter_name"><p>object</p></td>
|
2289
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2290
|
+
<td class="parameter_annotations"> </td>
|
2291
|
+
</tr>
|
2292
|
+
<tr>
|
2293
|
+
<td class="parameter_name"><p>signal_spec</p></td>
|
2294
|
+
<td class="parameter_description"><p>the spec for the first signal</p></td>
|
2295
|
+
<td class="parameter_annotations"> </td>
|
2296
|
+
</tr>
|
2297
|
+
<tr>
|
2298
|
+
<td class="parameter_name"><p>...</p></td>
|
2299
|
+
<td class="parameter_description"><p><a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()"><span class="type">GCallback</span></a> for the first signal, followed by data for the first signal,
|
2300
|
+
followed optionally by more signal spec/callback/data triples,
|
2301
|
+
followed by <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
2302
|
+
<td class="parameter_annotations"> </td>
|
2303
|
+
</tr>
|
2304
|
+
</tbody>
|
2305
|
+
</table></div>
|
2306
|
+
</div>
|
2307
|
+
</div>
|
2308
|
+
<hr>
|
2309
|
+
<div class="refsect2">
|
2310
|
+
<a name="g-object-set"></a><h3>g_object_set ()</h3>
|
2311
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2312
|
+
g_object_set (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>,
|
2313
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_property_name</code></em>,
|
2314
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
2315
|
+
<p>Sets properties on an object.</p>
|
2316
|
+
<p>Note that the "notify" signals are queued and only emitted (in
|
2317
|
+
reverse order) after all properties have been set. See
|
2318
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-freeze-notify" title="g_object_freeze_notify ()"><code class="function">g_object_freeze_notify()</code></a>.</p>
|
2319
|
+
<div class="refsect3">
|
2320
|
+
<a name="id-1.4.5.10.41.6"></a><h4>Parameters</h4>
|
2321
|
+
<div class="informaltable"><table width="100%" border="0">
|
2322
|
+
<colgroup>
|
2323
|
+
<col width="150px" class="parameters_name">
|
2324
|
+
<col class="parameters_description">
|
2325
|
+
<col width="200px" class="parameters_annotations">
|
2326
|
+
</colgroup>
|
2327
|
+
<tbody>
|
2328
|
+
<tr>
|
2329
|
+
<td class="parameter_name"><p>object</p></td>
|
2330
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2331
|
+
<td class="parameter_annotations"> </td>
|
2332
|
+
</tr>
|
2333
|
+
<tr>
|
2334
|
+
<td class="parameter_name"><p>first_property_name</p></td>
|
2335
|
+
<td class="parameter_description"><p>name of the first property to set</p></td>
|
2336
|
+
<td class="parameter_annotations"> </td>
|
2337
|
+
</tr>
|
2338
|
+
<tr>
|
2339
|
+
<td class="parameter_name"><p>...</p></td>
|
2340
|
+
<td class="parameter_description"><p>value for the first property, followed optionally by more
|
2341
|
+
name/value pairs, followed by <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
2342
|
+
<td class="parameter_annotations"> </td>
|
2343
|
+
</tr>
|
2344
|
+
</tbody>
|
2345
|
+
</table></div>
|
2346
|
+
</div>
|
2347
|
+
</div>
|
2348
|
+
<hr>
|
2349
|
+
<div class="refsect2">
|
2350
|
+
<a name="g-object-get"></a><h3>g_object_get ()</h3>
|
2351
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2352
|
+
g_object_get (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>,
|
2353
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_property_name</code></em>,
|
2354
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
2355
|
+
<p>Gets properties of an object.</p>
|
2356
|
+
<p>In general, a copy is made of the property contents and the caller
|
2357
|
+
is responsible for freeing the memory in the appropriate manner for
|
2358
|
+
the type, for instance by calling <a href="../glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> or <a class="link" href="gobject-The-Base-Object-Type.html#g-object-unref" title="g_object_unref ()"><code class="function">g_object_unref()</code></a>.</p>
|
2359
|
+
<p>Here is an example of using <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get" title="g_object_get ()"><code class="function">g_object_get()</code></a> to get the contents
|
2360
|
+
of three properties: an integer, a string and an object:</p>
|
2361
|
+
<div class="informalexample">
|
2362
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
2363
|
+
<tbody>
|
2364
|
+
<tr>
|
2365
|
+
<td class="listing_lines" align="right"><pre>1
|
2366
|
+
2
|
2367
|
+
3
|
2368
|
+
4
|
2369
|
+
5
|
2370
|
+
6
|
2371
|
+
7
|
2372
|
+
8
|
2373
|
+
9
|
2374
|
+
10
|
2375
|
+
11
|
2376
|
+
12
|
2377
|
+
13
|
2378
|
+
14</pre></td>
|
2379
|
+
<td class="listing_code"><pre class="programlisting"><span class="usertype">gint</span><span class="normal"> intval</span><span class="symbol">;</span>
|
2380
|
+
<span class="usertype">gchar</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">strval</span><span class="symbol">;</span>
|
2381
|
+
<span class="usertype">GObject</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">objval</span><span class="symbol">;</span>
|
2382
|
+
|
2383
|
+
<span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-get">g_object_get</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">my_object</span><span class="symbol">,</span>
|
2384
|
+
<span class="normal"> </span><span class="string">"int-property"</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">intval</span><span class="symbol">,</span>
|
2385
|
+
<span class="normal"> </span><span class="string">"str-property"</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">strval</span><span class="symbol">,</span>
|
2386
|
+
<span class="normal"> </span><span class="string">"obj-property"</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">objval</span><span class="symbol">,</span>
|
2387
|
+
<span class="normal"> <a href="../glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">);</span>
|
2388
|
+
|
2389
|
+
<span class="comment">// Do something with intval, strval, objval</span>
|
2390
|
+
|
2391
|
+
<span class="function"><a href="../glib/glib-Memory-Allocation.html#g-free">g_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">strval</span><span class="symbol">);</span>
|
2392
|
+
<span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-unref">g_object_unref</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">objval</span><span class="symbol">);</span></pre></td>
|
2393
|
+
</tr>
|
2394
|
+
</tbody>
|
2395
|
+
</table>
|
2396
|
+
</div>
|
2397
|
+
|
2398
|
+
<p></p>
|
2399
|
+
<div class="refsect3">
|
2400
|
+
<a name="id-1.4.5.10.42.9"></a><h4>Parameters</h4>
|
2401
|
+
<div class="informaltable"><table width="100%" border="0">
|
2402
|
+
<colgroup>
|
2403
|
+
<col width="150px" class="parameters_name">
|
2404
|
+
<col class="parameters_description">
|
2405
|
+
<col width="200px" class="parameters_annotations">
|
2406
|
+
</colgroup>
|
2407
|
+
<tbody>
|
2408
|
+
<tr>
|
2409
|
+
<td class="parameter_name"><p>object</p></td>
|
2410
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2411
|
+
<td class="parameter_annotations"> </td>
|
2412
|
+
</tr>
|
2413
|
+
<tr>
|
2414
|
+
<td class="parameter_name"><p>first_property_name</p></td>
|
2415
|
+
<td class="parameter_description"><p>name of the first property to get</p></td>
|
2416
|
+
<td class="parameter_annotations"> </td>
|
2417
|
+
</tr>
|
2418
|
+
<tr>
|
2419
|
+
<td class="parameter_name"><p>...</p></td>
|
2420
|
+
<td class="parameter_description"><p>return location for the first property, followed optionally by more
|
2421
|
+
name/return location pairs, followed by <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
2422
|
+
<td class="parameter_annotations"> </td>
|
2423
|
+
</tr>
|
2424
|
+
</tbody>
|
2425
|
+
</table></div>
|
2426
|
+
</div>
|
2427
|
+
</div>
|
2428
|
+
<hr>
|
2429
|
+
<div class="refsect2">
|
2430
|
+
<a name="g-object-notify"></a><h3>g_object_notify ()</h3>
|
2431
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2432
|
+
g_object_notify (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2433
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *property_name</code></em>);</pre>
|
2434
|
+
<p>Emits a "notify" signal for the property <em class="parameter"><code>property_name</code></em>
|
2435
|
+
on <em class="parameter"><code>object</code></em>
|
2436
|
+
.</p>
|
2437
|
+
<p>When possible, eg. when signaling a property change from within the class
|
2438
|
+
that registered the property, you should use <a class="link" href="gobject-The-Base-Object-Type.html#g-object-notify-by-pspec" title="g_object_notify_by_pspec ()"><code class="function">g_object_notify_by_pspec()</code></a>
|
2439
|
+
instead.</p>
|
2440
|
+
<p>Note that emission of the notify signal may be blocked with
|
2441
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-freeze-notify" title="g_object_freeze_notify ()"><code class="function">g_object_freeze_notify()</code></a>. In this case, the signal emissions are queued
|
2442
|
+
and will be emitted (in reverse order) when <a class="link" href="gobject-The-Base-Object-Type.html#g-object-thaw-notify" title="g_object_thaw_notify ()"><code class="function">g_object_thaw_notify()</code></a> is
|
2443
|
+
called.</p>
|
2444
|
+
<div class="refsect3">
|
2445
|
+
<a name="id-1.4.5.10.43.7"></a><h4>Parameters</h4>
|
2446
|
+
<div class="informaltable"><table width="100%" border="0">
|
2447
|
+
<colgroup>
|
2448
|
+
<col width="150px" class="parameters_name">
|
2449
|
+
<col class="parameters_description">
|
2450
|
+
<col width="200px" class="parameters_annotations">
|
2451
|
+
</colgroup>
|
2452
|
+
<tbody>
|
2453
|
+
<tr>
|
2454
|
+
<td class="parameter_name"><p>object</p></td>
|
2455
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2456
|
+
<td class="parameter_annotations"> </td>
|
2457
|
+
</tr>
|
2458
|
+
<tr>
|
2459
|
+
<td class="parameter_name"><p>property_name</p></td>
|
2460
|
+
<td class="parameter_description"><p>the name of a property installed on the class of <em class="parameter"><code>object</code></em>
|
2461
|
+
.</p></td>
|
2462
|
+
<td class="parameter_annotations"> </td>
|
2463
|
+
</tr>
|
2464
|
+
</tbody>
|
2465
|
+
</table></div>
|
2466
|
+
</div>
|
2467
|
+
</div>
|
2468
|
+
<hr>
|
2469
|
+
<div class="refsect2">
|
2470
|
+
<a name="g-object-notify-by-pspec"></a><h3>g_object_notify_by_pspec ()</h3>
|
2471
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2472
|
+
g_object_notify_by_pspec (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2473
|
+
<em class="parameter"><code><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>);</pre>
|
2474
|
+
<p>Emits a "notify" signal for the property specified by <em class="parameter"><code>pspec</code></em>
|
2475
|
+
on <em class="parameter"><code>object</code></em>
|
2476
|
+
.</p>
|
2477
|
+
<p>This function omits the property name lookup, hence it is faster than
|
2478
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-notify" title="g_object_notify ()"><code class="function">g_object_notify()</code></a>.</p>
|
2479
|
+
<p>One way to avoid using <a class="link" href="gobject-The-Base-Object-Type.html#g-object-notify" title="g_object_notify ()"><code class="function">g_object_notify()</code></a> from within the
|
2480
|
+
class that registered the properties, and using <a class="link" href="gobject-The-Base-Object-Type.html#g-object-notify-by-pspec" title="g_object_notify_by_pspec ()"><code class="function">g_object_notify_by_pspec()</code></a>
|
2481
|
+
instead, is to store the GParamSpec used with
|
2482
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-class-install-property" title="g_object_class_install_property ()"><code class="function">g_object_class_install_property()</code></a> inside a static array, e.g.:</p>
|
2483
|
+
<div class="informalexample">
|
2484
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
2485
|
+
<tbody>
|
2486
|
+
<tr>
|
2487
|
+
<td class="listing_lines" align="right"><pre>1
|
2488
|
+
2
|
2489
|
+
3
|
2490
|
+
4
|
2491
|
+
5
|
2492
|
+
6
|
2493
|
+
7
|
2494
|
+
8
|
2495
|
+
9
|
2496
|
+
10
|
2497
|
+
11
|
2498
|
+
12
|
2499
|
+
13
|
2500
|
+
14
|
2501
|
+
15
|
2502
|
+
16
|
2503
|
+
17
|
2504
|
+
18
|
2505
|
+
19
|
2506
|
+
20</pre></td>
|
2507
|
+
<td class="listing_code"><pre class="programlisting"><span class="keyword">enum</span>
|
2508
|
+
<span class="cbracket">{</span>
|
2509
|
+
<span class="normal"> PROP_0</span><span class="symbol">,</span>
|
2510
|
+
<span class="normal"> PROP_FOO</span><span class="symbol">,</span>
|
2511
|
+
<span class="normal"> PROP_LAST</span>
|
2512
|
+
<span class="cbracket">}</span><span class="symbol">;</span>
|
2513
|
+
|
2514
|
+
<span class="keyword">static</span><span class="normal"> </span><span class="usertype">GParamSpec</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">properties</span><span class="symbol">[</span><span class="normal">PROP_LAST</span><span class="symbol">];</span>
|
2515
|
+
|
2516
|
+
<span class="keyword">static</span><span class="normal"> </span><span class="type">void</span>
|
2517
|
+
<span class="function">my_object_class_init</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">MyObjectClass</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">klass</span><span class="symbol">)</span>
|
2518
|
+
<span class="cbracket">{</span>
|
2519
|
+
<span class="normal"> properties</span><span class="symbol">[</span><span class="normal">PROP_FOO</span><span class="symbol">]</span><span class="normal"> </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-int">g_param_spec_int</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"foo"</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Foo"</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"The foo"</span><span class="symbol">,</span>
|
2520
|
+
<span class="normal"> </span><span class="number">0</span><span class="symbol">,</span><span class="normal"> </span><span class="number">100</span><span class="symbol">,</span>
|
2521
|
+
<span class="normal"> </span><span class="number">50</span><span class="symbol">,</span>
|
2522
|
+
<span class="normal"> G_PARAM_READWRITE</span><span class="symbol">);</span>
|
2523
|
+
<span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-class-install-property">g_object_class_install_property</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">gobject_class</span><span class="symbol">,</span>
|
2524
|
+
<span class="normal"> PROP_FOO</span><span class="symbol">,</span>
|
2525
|
+
<span class="normal"> properties</span><span class="symbol">[</span><span class="normal">PROP_FOO</span><span class="symbol">]);</span>
|
2526
|
+
<span class="cbracket">}</span></pre></td>
|
2527
|
+
</tr>
|
2528
|
+
</tbody>
|
2529
|
+
</table>
|
2530
|
+
</div>
|
2531
|
+
|
2532
|
+
<p></p>
|
2533
|
+
<p>and then notify a change on the "foo" property with:</p>
|
2534
|
+
<div class="informalexample">
|
2535
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
2536
|
+
<tbody>
|
2537
|
+
<tr>
|
2538
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
2539
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-notify-by-pspec">g_object_notify_by_pspec</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">self</span><span class="symbol">,</span><span class="normal"> properties</span><span class="symbol">[</span><span class="normal">PROP_FOO</span><span class="symbol">]);</span></pre></td>
|
2540
|
+
</tr>
|
2541
|
+
</tbody>
|
2542
|
+
</table>
|
2543
|
+
</div>
|
2544
|
+
|
2545
|
+
<p></p>
|
2546
|
+
<div class="refsect3">
|
2547
|
+
<a name="id-1.4.5.10.44.12"></a><h4>Parameters</h4>
|
2548
|
+
<div class="informaltable"><table width="100%" border="0">
|
2549
|
+
<colgroup>
|
2550
|
+
<col width="150px" class="parameters_name">
|
2551
|
+
<col class="parameters_description">
|
2552
|
+
<col width="200px" class="parameters_annotations">
|
2553
|
+
</colgroup>
|
2554
|
+
<tbody>
|
2555
|
+
<tr>
|
2556
|
+
<td class="parameter_name"><p>object</p></td>
|
2557
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2558
|
+
<td class="parameter_annotations"> </td>
|
2559
|
+
</tr>
|
2560
|
+
<tr>
|
2561
|
+
<td class="parameter_name"><p>pspec</p></td>
|
2562
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> of a property installed on the class of <em class="parameter"><code>object</code></em>
|
2563
|
+
.</p></td>
|
2564
|
+
<td class="parameter_annotations"> </td>
|
2565
|
+
</tr>
|
2566
|
+
</tbody>
|
2567
|
+
</table></div>
|
2568
|
+
</div>
|
2569
|
+
<p class="since">Since 2.26</p>
|
2570
|
+
</div>
|
2571
|
+
<hr>
|
2572
|
+
<div class="refsect2">
|
2573
|
+
<a name="g-object-freeze-notify"></a><h3>g_object_freeze_notify ()</h3>
|
2574
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2575
|
+
g_object_freeze_notify (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>);</pre>
|
2576
|
+
<p>Increases the freeze count on <em class="parameter"><code>object</code></em>
|
2577
|
+
. If the freeze count is
|
2578
|
+
non-zero, the emission of "notify" signals on <em class="parameter"><code>object</code></em>
|
2579
|
+
is
|
2580
|
+
stopped. The signals are queued until the freeze count is decreased
|
2581
|
+
to zero. Duplicate notifications are squashed so that at most one
|
2582
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#GObject-notify" title="The “notify” signal"><span class="type">“notify”</span></a> signal is emitted for each property modified while the
|
2583
|
+
object is frozen.</p>
|
2584
|
+
<p>This is necessary for accessors that modify multiple properties to prevent
|
2585
|
+
premature notification while the object is still being modified.</p>
|
2586
|
+
<div class="refsect3">
|
2587
|
+
<a name="id-1.4.5.10.45.6"></a><h4>Parameters</h4>
|
2588
|
+
<div class="informaltable"><table width="100%" border="0">
|
2589
|
+
<colgroup>
|
2590
|
+
<col width="150px" class="parameters_name">
|
2591
|
+
<col class="parameters_description">
|
2592
|
+
<col width="200px" class="parameters_annotations">
|
2593
|
+
</colgroup>
|
2594
|
+
<tbody><tr>
|
2595
|
+
<td class="parameter_name"><p>object</p></td>
|
2596
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2597
|
+
<td class="parameter_annotations"> </td>
|
2598
|
+
</tr></tbody>
|
2599
|
+
</table></div>
|
2600
|
+
</div>
|
2601
|
+
</div>
|
2602
|
+
<hr>
|
2603
|
+
<div class="refsect2">
|
2604
|
+
<a name="g-object-thaw-notify"></a><h3>g_object_thaw_notify ()</h3>
|
2605
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2606
|
+
g_object_thaw_notify (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>);</pre>
|
2607
|
+
<p>Reverts the effect of a previous call to
|
2608
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-freeze-notify" title="g_object_freeze_notify ()"><code class="function">g_object_freeze_notify()</code></a>. The freeze count is decreased on <em class="parameter"><code>object</code></em>
|
2609
|
+
|
2610
|
+
and when it reaches zero, queued "notify" signals are emitted.</p>
|
2611
|
+
<p>Duplicate notifications for each property are squashed so that at most one
|
2612
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#GObject-notify" title="The “notify” signal"><span class="type">“notify”</span></a> signal is emitted for each property, in the reverse order
|
2613
|
+
in which they have been queued.</p>
|
2614
|
+
<p>It is an error to call this function when the freeze count is zero.</p>
|
2615
|
+
<div class="refsect3">
|
2616
|
+
<a name="id-1.4.5.10.46.7"></a><h4>Parameters</h4>
|
2617
|
+
<div class="informaltable"><table width="100%" border="0">
|
2618
|
+
<colgroup>
|
2619
|
+
<col width="150px" class="parameters_name">
|
2620
|
+
<col class="parameters_description">
|
2621
|
+
<col width="200px" class="parameters_annotations">
|
2622
|
+
</colgroup>
|
2623
|
+
<tbody><tr>
|
2624
|
+
<td class="parameter_name"><p>object</p></td>
|
2625
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
2626
|
+
<td class="parameter_annotations"> </td>
|
2627
|
+
</tr></tbody>
|
2628
|
+
</table></div>
|
2629
|
+
</div>
|
2630
|
+
</div>
|
2631
|
+
<hr>
|
2632
|
+
<div class="refsect2">
|
2633
|
+
<a name="g-object-get-data"></a><h3>g_object_get_data ()</h3>
|
2634
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
2635
|
+
g_object_get_data (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2636
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>);</pre>
|
2637
|
+
<p>Gets a named field from the objects table of associations (see <a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-data" title="g_object_set_data ()"><code class="function">g_object_set_data()</code></a>).</p>
|
2638
|
+
<div class="refsect3">
|
2639
|
+
<a name="id-1.4.5.10.47.5"></a><h4>Parameters</h4>
|
2640
|
+
<div class="informaltable"><table width="100%" border="0">
|
2641
|
+
<colgroup>
|
2642
|
+
<col width="150px" class="parameters_name">
|
2643
|
+
<col class="parameters_description">
|
2644
|
+
<col width="200px" class="parameters_annotations">
|
2645
|
+
</colgroup>
|
2646
|
+
<tbody>
|
2647
|
+
<tr>
|
2648
|
+
<td class="parameter_name"><p>object</p></td>
|
2649
|
+
<td class="parameter_description"><p><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> containing the associations</p></td>
|
2650
|
+
<td class="parameter_annotations"> </td>
|
2651
|
+
</tr>
|
2652
|
+
<tr>
|
2653
|
+
<td class="parameter_name"><p>key</p></td>
|
2654
|
+
<td class="parameter_description"><p>name of the key for that association</p></td>
|
2655
|
+
<td class="parameter_annotations"> </td>
|
2656
|
+
</tr>
|
2657
|
+
</tbody>
|
2658
|
+
</table></div>
|
2659
|
+
</div>
|
2660
|
+
<div class="refsect3">
|
2661
|
+
<a name="id-1.4.5.10.47.6"></a><h4>Returns</h4>
|
2662
|
+
<p> the data if found, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no such data exists. </p>
|
2663
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
2664
|
+
</div>
|
2665
|
+
</div>
|
2666
|
+
<hr>
|
2667
|
+
<div class="refsect2">
|
2668
|
+
<a name="g-object-set-data"></a><h3>g_object_set_data ()</h3>
|
2669
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2670
|
+
g_object_set_data (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2671
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>,
|
2672
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
2673
|
+
<p>Each object carries around a table of associations from
|
2674
|
+
strings to pointers. This function lets you set an association.</p>
|
2675
|
+
<p>If the object already had an association with that name,
|
2676
|
+
the old association will be destroyed.</p>
|
2677
|
+
<div class="refsect3">
|
2678
|
+
<a name="id-1.4.5.10.48.6"></a><h4>Parameters</h4>
|
2679
|
+
<div class="informaltable"><table width="100%" border="0">
|
2680
|
+
<colgroup>
|
2681
|
+
<col width="150px" class="parameters_name">
|
2682
|
+
<col class="parameters_description">
|
2683
|
+
<col width="200px" class="parameters_annotations">
|
2684
|
+
</colgroup>
|
2685
|
+
<tbody>
|
2686
|
+
<tr>
|
2687
|
+
<td class="parameter_name"><p>object</p></td>
|
2688
|
+
<td class="parameter_description"><p><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> containing the associations.</p></td>
|
2689
|
+
<td class="parameter_annotations"> </td>
|
2690
|
+
</tr>
|
2691
|
+
<tr>
|
2692
|
+
<td class="parameter_name"><p>key</p></td>
|
2693
|
+
<td class="parameter_description"><p>name of the key</p></td>
|
2694
|
+
<td class="parameter_annotations"> </td>
|
2695
|
+
</tr>
|
2696
|
+
<tr>
|
2697
|
+
<td class="parameter_name"><p>data</p></td>
|
2698
|
+
<td class="parameter_description"><p>data to associate with that key</p></td>
|
2699
|
+
<td class="parameter_annotations"> </td>
|
2700
|
+
</tr>
|
2701
|
+
</tbody>
|
2702
|
+
</table></div>
|
2703
|
+
</div>
|
2704
|
+
</div>
|
2705
|
+
<hr>
|
2706
|
+
<div class="refsect2">
|
2707
|
+
<a name="g-object-set-data-full"></a><h3>g_object_set_data_full ()</h3>
|
2708
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2709
|
+
g_object_set_data_full (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2710
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>,
|
2711
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
2712
|
+
<em class="parameter"><code><a href="../glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
|
2713
|
+
<p>Like <a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-data" title="g_object_set_data ()"><code class="function">g_object_set_data()</code></a> except it adds notification
|
2714
|
+
for when the association is destroyed, either by setting it
|
2715
|
+
to a different value or when the object is destroyed.</p>
|
2716
|
+
<p>Note that the <em class="parameter"><code>destroy</code></em>
|
2717
|
+
callback is not called if <em class="parameter"><code>data</code></em>
|
2718
|
+
is <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
2719
|
+
<div class="refsect3">
|
2720
|
+
<a name="id-1.4.5.10.49.6"></a><h4>Parameters</h4>
|
2721
|
+
<div class="informaltable"><table width="100%" border="0">
|
2722
|
+
<colgroup>
|
2723
|
+
<col width="150px" class="parameters_name">
|
2724
|
+
<col class="parameters_description">
|
2725
|
+
<col width="200px" class="parameters_annotations">
|
2726
|
+
</colgroup>
|
2727
|
+
<tbody>
|
2728
|
+
<tr>
|
2729
|
+
<td class="parameter_name"><p>object</p></td>
|
2730
|
+
<td class="parameter_description"><p><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> containing the associations</p></td>
|
2731
|
+
<td class="parameter_annotations"> </td>
|
2732
|
+
</tr>
|
2733
|
+
<tr>
|
2734
|
+
<td class="parameter_name"><p>key</p></td>
|
2735
|
+
<td class="parameter_description"><p>name of the key</p></td>
|
2736
|
+
<td class="parameter_annotations"> </td>
|
2737
|
+
</tr>
|
2738
|
+
<tr>
|
2739
|
+
<td class="parameter_name"><p>data</p></td>
|
2740
|
+
<td class="parameter_description"><p>data to associate with that key</p></td>
|
2741
|
+
<td class="parameter_annotations"> </td>
|
2742
|
+
</tr>
|
2743
|
+
<tr>
|
2744
|
+
<td class="parameter_name"><p>destroy</p></td>
|
2745
|
+
<td class="parameter_description"><p>function to call when the association is destroyed</p></td>
|
2746
|
+
<td class="parameter_annotations"> </td>
|
2747
|
+
</tr>
|
2748
|
+
</tbody>
|
2749
|
+
</table></div>
|
2750
|
+
</div>
|
2751
|
+
</div>
|
2752
|
+
<hr>
|
2753
|
+
<div class="refsect2">
|
2754
|
+
<a name="g-object-steal-data"></a><h3>g_object_steal_data ()</h3>
|
2755
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
2756
|
+
g_object_steal_data (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2757
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>);</pre>
|
2758
|
+
<p>Remove a specified datum from the object's data associations,
|
2759
|
+
without invoking the association's destroy handler.</p>
|
2760
|
+
<div class="refsect3">
|
2761
|
+
<a name="id-1.4.5.10.50.5"></a><h4>Parameters</h4>
|
2762
|
+
<div class="informaltable"><table width="100%" border="0">
|
2763
|
+
<colgroup>
|
2764
|
+
<col width="150px" class="parameters_name">
|
2765
|
+
<col class="parameters_description">
|
2766
|
+
<col width="200px" class="parameters_annotations">
|
2767
|
+
</colgroup>
|
2768
|
+
<tbody>
|
2769
|
+
<tr>
|
2770
|
+
<td class="parameter_name"><p>object</p></td>
|
2771
|
+
<td class="parameter_description"><p><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> containing the associations</p></td>
|
2772
|
+
<td class="parameter_annotations"> </td>
|
2773
|
+
</tr>
|
2774
|
+
<tr>
|
2775
|
+
<td class="parameter_name"><p>key</p></td>
|
2776
|
+
<td class="parameter_description"><p>name of the key</p></td>
|
2777
|
+
<td class="parameter_annotations"> </td>
|
2778
|
+
</tr>
|
2779
|
+
</tbody>
|
2780
|
+
</table></div>
|
2781
|
+
</div>
|
2782
|
+
<div class="refsect3">
|
2783
|
+
<a name="id-1.4.5.10.50.6"></a><h4>Returns</h4>
|
2784
|
+
<p> the data if found, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no such data exists. </p>
|
2785
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
2786
|
+
</div>
|
2787
|
+
</div>
|
2788
|
+
<hr>
|
2789
|
+
<div class="refsect2">
|
2790
|
+
<a name="g-object-dup-data"></a><h3>g_object_dup_data ()</h3>
|
2791
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
2792
|
+
g_object_dup_data (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2793
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>,
|
2794
|
+
<em class="parameter"><code><a href="../glib/glib-Keyed-Data-Lists.html#GDuplicateFunc"><span class="type">GDuplicateFunc</span></a> dup_func</code></em>,
|
2795
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
|
2796
|
+
<p>This is a variant of <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-data" title="g_object_get_data ()"><code class="function">g_object_get_data()</code></a> which returns
|
2797
|
+
a 'duplicate' of the value. <em class="parameter"><code>dup_func</code></em>
|
2798
|
+
defines the
|
2799
|
+
meaning of 'duplicate' in this context, it could e.g.
|
2800
|
+
take a reference on a ref-counted object.</p>
|
2801
|
+
<p>If the <em class="parameter"><code>key</code></em>
|
2802
|
+
is not set on the object then <em class="parameter"><code>dup_func</code></em>
|
2803
|
+
|
2804
|
+
will be called with a <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> argument.</p>
|
2805
|
+
<p>Note that <em class="parameter"><code>dup_func</code></em>
|
2806
|
+
is called while user data of <em class="parameter"><code>object</code></em>
|
2807
|
+
|
2808
|
+
is locked.</p>
|
2809
|
+
<p>This function can be useful to avoid races when multiple
|
2810
|
+
threads are using object data on the same key on the same
|
2811
|
+
object.</p>
|
2812
|
+
<div class="refsect3">
|
2813
|
+
<a name="id-1.4.5.10.51.8"></a><h4>Parameters</h4>
|
2814
|
+
<div class="informaltable"><table width="100%" border="0">
|
2815
|
+
<colgroup>
|
2816
|
+
<col width="150px" class="parameters_name">
|
2817
|
+
<col class="parameters_description">
|
2818
|
+
<col width="200px" class="parameters_annotations">
|
2819
|
+
</colgroup>
|
2820
|
+
<tbody>
|
2821
|
+
<tr>
|
2822
|
+
<td class="parameter_name"><p>object</p></td>
|
2823
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to store user data on</p></td>
|
2824
|
+
<td class="parameter_annotations"> </td>
|
2825
|
+
</tr>
|
2826
|
+
<tr>
|
2827
|
+
<td class="parameter_name"><p>key</p></td>
|
2828
|
+
<td class="parameter_description"><p>a string, naming the user data pointer</p></td>
|
2829
|
+
<td class="parameter_annotations"> </td>
|
2830
|
+
</tr>
|
2831
|
+
<tr>
|
2832
|
+
<td class="parameter_name"><p>dup_func</p></td>
|
2833
|
+
<td class="parameter_description"><p> function to dup the value. </p></td>
|
2834
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2835
|
+
</tr>
|
2836
|
+
<tr>
|
2837
|
+
<td class="parameter_name"><p>user_data</p></td>
|
2838
|
+
<td class="parameter_description"><p> passed as user_data to <em class="parameter"><code>dup_func</code></em>
|
2839
|
+
. </p></td>
|
2840
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2841
|
+
</tr>
|
2842
|
+
</tbody>
|
2843
|
+
</table></div>
|
2844
|
+
</div>
|
2845
|
+
<div class="refsect3">
|
2846
|
+
<a name="id-1.4.5.10.51.9"></a><h4>Returns</h4>
|
2847
|
+
<p> the result of calling <em class="parameter"><code>dup_func</code></em>
|
2848
|
+
on the value
|
2849
|
+
associated with <em class="parameter"><code>key</code></em>
|
2850
|
+
on <em class="parameter"><code>object</code></em>
|
2851
|
+
, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if not set.
|
2852
|
+
If <em class="parameter"><code>dup_func</code></em>
|
2853
|
+
is <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, the value is returned
|
2854
|
+
unmodified.</p>
|
2855
|
+
<p></p>
|
2856
|
+
</div>
|
2857
|
+
<p class="since">Since 2.34</p>
|
2858
|
+
</div>
|
2859
|
+
<hr>
|
2860
|
+
<div class="refsect2">
|
2861
|
+
<a name="g-object-replace-data"></a><h3>g_object_replace_data ()</h3>
|
2862
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2863
|
+
g_object_replace_data (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2864
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>,
|
2865
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> oldval</code></em>,
|
2866
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> newval</code></em>,
|
2867
|
+
<em class="parameter"><code><a href="../glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>,
|
2868
|
+
<em class="parameter"><code><a href="../glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> *old_destroy</code></em>);</pre>
|
2869
|
+
<p>Compares the user data for the key <em class="parameter"><code>key</code></em>
|
2870
|
+
on <em class="parameter"><code>object</code></em>
|
2871
|
+
with
|
2872
|
+
<em class="parameter"><code>oldval</code></em>
|
2873
|
+
, and if they are the same, replaces <em class="parameter"><code>oldval</code></em>
|
2874
|
+
with
|
2875
|
+
<em class="parameter"><code>newval</code></em>
|
2876
|
+
.</p>
|
2877
|
+
<p>This is like a typical atomic compare-and-exchange
|
2878
|
+
operation, for user data on an object.</p>
|
2879
|
+
<p>If the previous value was replaced then ownership of the
|
2880
|
+
old value (<em class="parameter"><code>oldval</code></em>
|
2881
|
+
) is passed to the caller, including
|
2882
|
+
the registered destroy notify for it (passed out in <em class="parameter"><code>old_destroy</code></em>
|
2883
|
+
).
|
2884
|
+
Its up to the caller to free this as he wishes, which may
|
2885
|
+
or may not include using <em class="parameter"><code>old_destroy</code></em>
|
2886
|
+
as sometimes replacement
|
2887
|
+
should not destroy the object in the normal way.</p>
|
2888
|
+
<div class="refsect3">
|
2889
|
+
<a name="id-1.4.5.10.52.7"></a><h4>Parameters</h4>
|
2890
|
+
<div class="informaltable"><table width="100%" border="0">
|
2891
|
+
<colgroup>
|
2892
|
+
<col width="150px" class="parameters_name">
|
2893
|
+
<col class="parameters_description">
|
2894
|
+
<col width="200px" class="parameters_annotations">
|
2895
|
+
</colgroup>
|
2896
|
+
<tbody>
|
2897
|
+
<tr>
|
2898
|
+
<td class="parameter_name"><p>object</p></td>
|
2899
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to store user data on</p></td>
|
2900
|
+
<td class="parameter_annotations"> </td>
|
2901
|
+
</tr>
|
2902
|
+
<tr>
|
2903
|
+
<td class="parameter_name"><p>key</p></td>
|
2904
|
+
<td class="parameter_description"><p>a string, naming the user data pointer</p></td>
|
2905
|
+
<td class="parameter_annotations"> </td>
|
2906
|
+
</tr>
|
2907
|
+
<tr>
|
2908
|
+
<td class="parameter_name"><p>oldval</p></td>
|
2909
|
+
<td class="parameter_description"><p> the old value to compare against. </p></td>
|
2910
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2911
|
+
</tr>
|
2912
|
+
<tr>
|
2913
|
+
<td class="parameter_name"><p>newval</p></td>
|
2914
|
+
<td class="parameter_description"><p> the new value. </p></td>
|
2915
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2916
|
+
</tr>
|
2917
|
+
<tr>
|
2918
|
+
<td class="parameter_name"><p>destroy</p></td>
|
2919
|
+
<td class="parameter_description"><p> a destroy notify for the new value. </p></td>
|
2920
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2921
|
+
</tr>
|
2922
|
+
<tr>
|
2923
|
+
<td class="parameter_name"><p>old_destroy</p></td>
|
2924
|
+
<td class="parameter_description"><p> destroy notify for the existing value. </p></td>
|
2925
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2926
|
+
</tr>
|
2927
|
+
</tbody>
|
2928
|
+
</table></div>
|
2929
|
+
</div>
|
2930
|
+
<div class="refsect3">
|
2931
|
+
<a name="id-1.4.5.10.52.8"></a><h4>Returns</h4>
|
2932
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the existing value for <em class="parameter"><code>key</code></em>
|
2933
|
+
was replaced
|
2934
|
+
by <em class="parameter"><code>newval</code></em>
|
2935
|
+
, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
2936
|
+
<p></p>
|
2937
|
+
</div>
|
2938
|
+
<p class="since">Since 2.34</p>
|
2939
|
+
</div>
|
2940
|
+
<hr>
|
2941
|
+
<div class="refsect2">
|
2942
|
+
<a name="g-object-get-qdata"></a><h3>g_object_get_qdata ()</h3>
|
2943
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
2944
|
+
g_object_get_qdata (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2945
|
+
<em class="parameter"><code><a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> quark</code></em>);</pre>
|
2946
|
+
<p>This function gets back user data pointers stored via
|
2947
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-qdata" title="g_object_set_qdata ()"><code class="function">g_object_set_qdata()</code></a>.</p>
|
2948
|
+
<div class="refsect3">
|
2949
|
+
<a name="id-1.4.5.10.53.5"></a><h4>Parameters</h4>
|
2950
|
+
<div class="informaltable"><table width="100%" border="0">
|
2951
|
+
<colgroup>
|
2952
|
+
<col width="150px" class="parameters_name">
|
2953
|
+
<col class="parameters_description">
|
2954
|
+
<col width="200px" class="parameters_annotations">
|
2955
|
+
</colgroup>
|
2956
|
+
<tbody>
|
2957
|
+
<tr>
|
2958
|
+
<td class="parameter_name"><p>object</p></td>
|
2959
|
+
<td class="parameter_description"><p>The GObject to get a stored user data pointer from</p></td>
|
2960
|
+
<td class="parameter_annotations"> </td>
|
2961
|
+
</tr>
|
2962
|
+
<tr>
|
2963
|
+
<td class="parameter_name"><p>quark</p></td>
|
2964
|
+
<td class="parameter_description"><p>A <a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a>, naming the user data pointer</p></td>
|
2965
|
+
<td class="parameter_annotations"> </td>
|
2966
|
+
</tr>
|
2967
|
+
</tbody>
|
2968
|
+
</table></div>
|
2969
|
+
</div>
|
2970
|
+
<div class="refsect3">
|
2971
|
+
<a name="id-1.4.5.10.53.6"></a><h4>Returns</h4>
|
2972
|
+
<p> The user data pointer set, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
2973
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
2974
|
+
</div>
|
2975
|
+
</div>
|
2976
|
+
<hr>
|
2977
|
+
<div class="refsect2">
|
2978
|
+
<a name="g-object-set-qdata"></a><h3>g_object_set_qdata ()</h3>
|
2979
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2980
|
+
g_object_set_qdata (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
2981
|
+
<em class="parameter"><code><a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> quark</code></em>,
|
2982
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
2983
|
+
<p>This sets an opaque, named pointer on an object.
|
2984
|
+
The name is specified through a <a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> (retrived e.g. via
|
2985
|
+
<a href="../glib/glib-Quarks.html#g-quark-from-static-string"><code class="function">g_quark_from_static_string()</code></a>), and the pointer
|
2986
|
+
can be gotten back from the <em class="parameter"><code>object</code></em>
|
2987
|
+
with <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-qdata" title="g_object_get_qdata ()"><code class="function">g_object_get_qdata()</code></a>
|
2988
|
+
until the <em class="parameter"><code>object</code></em>
|
2989
|
+
is finalized.
|
2990
|
+
Setting a previously set user data pointer, overrides (frees)
|
2991
|
+
the old pointer set, using <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a> as pointer essentially
|
2992
|
+
removes the data stored.</p>
|
2993
|
+
<div class="refsect3">
|
2994
|
+
<a name="id-1.4.5.10.54.5"></a><h4>Parameters</h4>
|
2995
|
+
<div class="informaltable"><table width="100%" border="0">
|
2996
|
+
<colgroup>
|
2997
|
+
<col width="150px" class="parameters_name">
|
2998
|
+
<col class="parameters_description">
|
2999
|
+
<col width="200px" class="parameters_annotations">
|
3000
|
+
</colgroup>
|
3001
|
+
<tbody>
|
3002
|
+
<tr>
|
3003
|
+
<td class="parameter_name"><p>object</p></td>
|
3004
|
+
<td class="parameter_description"><p>The GObject to set store a user data pointer</p></td>
|
3005
|
+
<td class="parameter_annotations"> </td>
|
3006
|
+
</tr>
|
3007
|
+
<tr>
|
3008
|
+
<td class="parameter_name"><p>quark</p></td>
|
3009
|
+
<td class="parameter_description"><p>A <a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a>, naming the user data pointer</p></td>
|
3010
|
+
<td class="parameter_annotations"> </td>
|
3011
|
+
</tr>
|
3012
|
+
<tr>
|
3013
|
+
<td class="parameter_name"><p>data</p></td>
|
3014
|
+
<td class="parameter_description"><p>An opaque user data pointer</p></td>
|
3015
|
+
<td class="parameter_annotations"> </td>
|
3016
|
+
</tr>
|
3017
|
+
</tbody>
|
3018
|
+
</table></div>
|
3019
|
+
</div>
|
3020
|
+
</div>
|
3021
|
+
<hr>
|
3022
|
+
<div class="refsect2">
|
3023
|
+
<a name="g-object-set-qdata-full"></a><h3>g_object_set_qdata_full ()</h3>
|
3024
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3025
|
+
g_object_set_qdata_full (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
3026
|
+
<em class="parameter"><code><a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> quark</code></em>,
|
3027
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
3028
|
+
<em class="parameter"><code><a href="../glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
|
3029
|
+
<p>This function works like <a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-qdata" title="g_object_set_qdata ()"><code class="function">g_object_set_qdata()</code></a>, but in addition,
|
3030
|
+
a void (*destroy) (gpointer) function may be specified which is
|
3031
|
+
called with <em class="parameter"><code>data</code></em>
|
3032
|
+
as argument when the <em class="parameter"><code>object</code></em>
|
3033
|
+
is finalized, or
|
3034
|
+
the data is being overwritten by a call to <a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-qdata" title="g_object_set_qdata ()"><code class="function">g_object_set_qdata()</code></a>
|
3035
|
+
with the same <em class="parameter"><code>quark</code></em>
|
3036
|
+
.</p>
|
3037
|
+
<div class="refsect3">
|
3038
|
+
<a name="id-1.4.5.10.55.5"></a><h4>Parameters</h4>
|
3039
|
+
<div class="informaltable"><table width="100%" border="0">
|
3040
|
+
<colgroup>
|
3041
|
+
<col width="150px" class="parameters_name">
|
3042
|
+
<col class="parameters_description">
|
3043
|
+
<col width="200px" class="parameters_annotations">
|
3044
|
+
</colgroup>
|
3045
|
+
<tbody>
|
3046
|
+
<tr>
|
3047
|
+
<td class="parameter_name"><p>object</p></td>
|
3048
|
+
<td class="parameter_description"><p>The GObject to set store a user data pointer</p></td>
|
3049
|
+
<td class="parameter_annotations"> </td>
|
3050
|
+
</tr>
|
3051
|
+
<tr>
|
3052
|
+
<td class="parameter_name"><p>quark</p></td>
|
3053
|
+
<td class="parameter_description"><p>A <a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a>, naming the user data pointer</p></td>
|
3054
|
+
<td class="parameter_annotations"> </td>
|
3055
|
+
</tr>
|
3056
|
+
<tr>
|
3057
|
+
<td class="parameter_name"><p>data</p></td>
|
3058
|
+
<td class="parameter_description"><p>An opaque user data pointer</p></td>
|
3059
|
+
<td class="parameter_annotations"> </td>
|
3060
|
+
</tr>
|
3061
|
+
<tr>
|
3062
|
+
<td class="parameter_name"><p>destroy</p></td>
|
3063
|
+
<td class="parameter_description"><p>Function to invoke with <em class="parameter"><code>data</code></em>
|
3064
|
+
as argument, when <em class="parameter"><code>data</code></em>
|
3065
|
+
needs to be freed</p></td>
|
3066
|
+
<td class="parameter_annotations"> </td>
|
3067
|
+
</tr>
|
3068
|
+
</tbody>
|
3069
|
+
</table></div>
|
3070
|
+
</div>
|
3071
|
+
</div>
|
3072
|
+
<hr>
|
3073
|
+
<div class="refsect2">
|
3074
|
+
<a name="g-object-steal-qdata"></a><h3>g_object_steal_qdata ()</h3>
|
3075
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
3076
|
+
g_object_steal_qdata (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
3077
|
+
<em class="parameter"><code><a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> quark</code></em>);</pre>
|
3078
|
+
<p>This function gets back user data pointers stored via
|
3079
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-qdata" title="g_object_set_qdata ()"><code class="function">g_object_set_qdata()</code></a> and removes the <em class="parameter"><code>data</code></em>
|
3080
|
+
from object
|
3081
|
+
without invoking its <code class="function">destroy()</code> function (if any was
|
3082
|
+
set).
|
3083
|
+
Usually, calling this function is only required to update
|
3084
|
+
user data pointers with a destroy notifier, for example:</p>
|
3085
|
+
<div class="informalexample">
|
3086
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
3087
|
+
<tbody>
|
3088
|
+
<tr>
|
3089
|
+
<td class="listing_lines" align="right"><pre>1
|
3090
|
+
2
|
3091
|
+
3
|
3092
|
+
4
|
3093
|
+
5
|
3094
|
+
6
|
3095
|
+
7
|
3096
|
+
8
|
3097
|
+
9
|
3098
|
+
10
|
3099
|
+
11
|
3100
|
+
12
|
3101
|
+
13
|
3102
|
+
14
|
3103
|
+
15
|
3104
|
+
16
|
3105
|
+
17
|
3106
|
+
18
|
3107
|
+
19
|
3108
|
+
20
|
3109
|
+
21
|
3110
|
+
22
|
3111
|
+
23</pre></td>
|
3112
|
+
<td class="listing_code"><pre class="programlisting"><span class="type">void</span>
|
3113
|
+
<span class="function">object_add_to_user_list</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">GObject</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">object</span><span class="symbol">,</span>
|
3114
|
+
<span class="normal"> </span><span class="keyword">const</span><span class="normal"> </span><span class="usertype">gchar</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">new_string</span><span class="symbol">)</span>
|
3115
|
+
<span class="cbracket">{</span>
|
3116
|
+
<span class="normal"> </span><span class="comment">// the quark, naming the object data</span>
|
3117
|
+
<span class="normal"> </span><span class="usertype">GQuark</span><span class="normal"> quark_string_list </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="../glib/glib-Quarks.html#g-quark-from-static-string">g_quark_from_static_string</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"my-string-list"</span><span class="symbol">);</span>
|
3118
|
+
<span class="normal"> </span><span class="comment">// retrive the old string list</span>
|
3119
|
+
<span class="normal"> </span><span class="usertype">GList</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">list </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-steal-qdata">g_object_steal_qdata</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">object</span><span class="symbol">,</span><span class="normal"> quark_string_list</span><span class="symbol">);</span>
|
3120
|
+
|
3121
|
+
<span class="normal"> </span><span class="comment">// prepend new string</span>
|
3122
|
+
<span class="normal"> list </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="../glib/glib-Doubly-Linked-Lists.html#g-list-prepend">g_list_prepend</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list</span><span class="symbol">,</span><span class="normal"> </span><span class="function"><a href="../glib/glib-String-Utility-Functions.html#g-strdup">g_strdup</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">new_string</span><span class="symbol">));</span>
|
3123
|
+
<span class="normal"> </span><span class="comment">// this changed 'list', so we need to set it again</span>
|
3124
|
+
<span class="normal"> </span><span class="function"><a href="gobject-The-Base-Object-Type.html#g-object-set-qdata-full">g_object_set_qdata_full</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">object</span><span class="symbol">,</span><span class="normal"> quark_string_list</span><span class="symbol">,</span><span class="normal"> list</span><span class="symbol">,</span><span class="normal"> free_string_list</span><span class="symbol">);</span>
|
3125
|
+
<span class="cbracket">}</span>
|
3126
|
+
<span class="keyword">static</span><span class="normal"> </span><span class="type">void</span>
|
3127
|
+
<span class="function">free_string_list</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">gpointer</span><span class="normal"> data</span><span class="symbol">)</span>
|
3128
|
+
<span class="cbracket">{</span>
|
3129
|
+
<span class="normal"> </span><span class="usertype">GList</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">node</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">list </span><span class="symbol">=</span><span class="normal"> data</span><span class="symbol">;</span>
|
3130
|
+
|
3131
|
+
<span class="normal"> </span><span class="keyword">for</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">node </span><span class="symbol">=</span><span class="normal"> list</span><span class="symbol">;</span><span class="normal"> node</span><span class="symbol">;</span><span class="normal"> node </span><span class="symbol">=</span><span class="normal"> node</span><span class="symbol">-></span><span class="normal">next</span><span class="symbol">)</span>
|
3132
|
+
<span class="normal"> </span><span class="function"><a href="../glib/glib-Memory-Allocation.html#g-free">g_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">node</span><span class="symbol">-></span><span class="normal">data</span><span class="symbol">);</span>
|
3133
|
+
<span class="normal"> </span><span class="function"><a href="../glib/glib-Doubly-Linked-Lists.html#g-list-free">g_list_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list</span><span class="symbol">);</span>
|
3134
|
+
<span class="cbracket">}</span></pre></td>
|
3135
|
+
</tr>
|
3136
|
+
</tbody>
|
3137
|
+
</table>
|
3138
|
+
</div>
|
3139
|
+
|
3140
|
+
<p>
|
3141
|
+
Using <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-qdata" title="g_object_get_qdata ()"><code class="function">g_object_get_qdata()</code></a> in the above example, instead of
|
3142
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-steal-qdata" title="g_object_steal_qdata ()"><code class="function">g_object_steal_qdata()</code></a> would have left the destroy function set,
|
3143
|
+
and thus the partial string list would have been freed upon
|
3144
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-qdata-full" title="g_object_set_qdata_full ()"><code class="function">g_object_set_qdata_full()</code></a>.</p>
|
3145
|
+
<div class="refsect3">
|
3146
|
+
<a name="id-1.4.5.10.56.7"></a><h4>Parameters</h4>
|
3147
|
+
<div class="informaltable"><table width="100%" border="0">
|
3148
|
+
<colgroup>
|
3149
|
+
<col width="150px" class="parameters_name">
|
3150
|
+
<col class="parameters_description">
|
3151
|
+
<col width="200px" class="parameters_annotations">
|
3152
|
+
</colgroup>
|
3153
|
+
<tbody>
|
3154
|
+
<tr>
|
3155
|
+
<td class="parameter_name"><p>object</p></td>
|
3156
|
+
<td class="parameter_description"><p>The GObject to get a stored user data pointer from</p></td>
|
3157
|
+
<td class="parameter_annotations"> </td>
|
3158
|
+
</tr>
|
3159
|
+
<tr>
|
3160
|
+
<td class="parameter_name"><p>quark</p></td>
|
3161
|
+
<td class="parameter_description"><p>A <a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a>, naming the user data pointer</p></td>
|
3162
|
+
<td class="parameter_annotations"> </td>
|
3163
|
+
</tr>
|
3164
|
+
</tbody>
|
3165
|
+
</table></div>
|
3166
|
+
</div>
|
3167
|
+
<div class="refsect3">
|
3168
|
+
<a name="id-1.4.5.10.56.8"></a><h4>Returns</h4>
|
3169
|
+
<p> The user data pointer set, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
3170
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
3171
|
+
</div>
|
3172
|
+
</div>
|
3173
|
+
<hr>
|
3174
|
+
<div class="refsect2">
|
3175
|
+
<a name="g-object-dup-qdata"></a><h3>g_object_dup_qdata ()</h3>
|
3176
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
3177
|
+
g_object_dup_qdata (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
3178
|
+
<em class="parameter"><code><a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> quark</code></em>,
|
3179
|
+
<em class="parameter"><code><a href="../glib/glib-Keyed-Data-Lists.html#GDuplicateFunc"><span class="type">GDuplicateFunc</span></a> dup_func</code></em>,
|
3180
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
|
3181
|
+
<p>This is a variant of <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-qdata" title="g_object_get_qdata ()"><code class="function">g_object_get_qdata()</code></a> which returns
|
3182
|
+
a 'duplicate' of the value. <em class="parameter"><code>dup_func</code></em>
|
3183
|
+
defines the
|
3184
|
+
meaning of 'duplicate' in this context, it could e.g.
|
3185
|
+
take a reference on a ref-counted object.</p>
|
3186
|
+
<p>If the <em class="parameter"><code>quark</code></em>
|
3187
|
+
is not set on the object then <em class="parameter"><code>dup_func</code></em>
|
3188
|
+
|
3189
|
+
will be called with a <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> argument.</p>
|
3190
|
+
<p>Note that <em class="parameter"><code>dup_func</code></em>
|
3191
|
+
is called while user data of <em class="parameter"><code>object</code></em>
|
3192
|
+
|
3193
|
+
is locked.</p>
|
3194
|
+
<p>This function can be useful to avoid races when multiple
|
3195
|
+
threads are using object data on the same key on the same
|
3196
|
+
object.</p>
|
3197
|
+
<div class="refsect3">
|
3198
|
+
<a name="id-1.4.5.10.57.8"></a><h4>Parameters</h4>
|
3199
|
+
<div class="informaltable"><table width="100%" border="0">
|
3200
|
+
<colgroup>
|
3201
|
+
<col width="150px" class="parameters_name">
|
3202
|
+
<col class="parameters_description">
|
3203
|
+
<col width="200px" class="parameters_annotations">
|
3204
|
+
</colgroup>
|
3205
|
+
<tbody>
|
3206
|
+
<tr>
|
3207
|
+
<td class="parameter_name"><p>object</p></td>
|
3208
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to store user data on</p></td>
|
3209
|
+
<td class="parameter_annotations"> </td>
|
3210
|
+
</tr>
|
3211
|
+
<tr>
|
3212
|
+
<td class="parameter_name"><p>quark</p></td>
|
3213
|
+
<td class="parameter_description"><p>a <a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a>, naming the user data pointer</p></td>
|
3214
|
+
<td class="parameter_annotations"> </td>
|
3215
|
+
</tr>
|
3216
|
+
<tr>
|
3217
|
+
<td class="parameter_name"><p>dup_func</p></td>
|
3218
|
+
<td class="parameter_description"><p> function to dup the value. </p></td>
|
3219
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
3220
|
+
</tr>
|
3221
|
+
<tr>
|
3222
|
+
<td class="parameter_name"><p>user_data</p></td>
|
3223
|
+
<td class="parameter_description"><p> passed as user_data to <em class="parameter"><code>dup_func</code></em>
|
3224
|
+
. </p></td>
|
3225
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
3226
|
+
</tr>
|
3227
|
+
</tbody>
|
3228
|
+
</table></div>
|
3229
|
+
</div>
|
3230
|
+
<div class="refsect3">
|
3231
|
+
<a name="id-1.4.5.10.57.9"></a><h4>Returns</h4>
|
3232
|
+
<p> the result of calling <em class="parameter"><code>dup_func</code></em>
|
3233
|
+
on the value
|
3234
|
+
associated with <em class="parameter"><code>quark</code></em>
|
3235
|
+
on <em class="parameter"><code>object</code></em>
|
3236
|
+
, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if not set.
|
3237
|
+
If <em class="parameter"><code>dup_func</code></em>
|
3238
|
+
is <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, the value is returned
|
3239
|
+
unmodified.</p>
|
3240
|
+
<p></p>
|
3241
|
+
</div>
|
3242
|
+
<p class="since">Since 2.34</p>
|
3243
|
+
</div>
|
3244
|
+
<hr>
|
3245
|
+
<div class="refsect2">
|
3246
|
+
<a name="g-object-replace-qdata"></a><h3>g_object_replace_qdata ()</h3>
|
3247
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
3248
|
+
g_object_replace_qdata (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
3249
|
+
<em class="parameter"><code><a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> quark</code></em>,
|
3250
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> oldval</code></em>,
|
3251
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> newval</code></em>,
|
3252
|
+
<em class="parameter"><code><a href="../glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>,
|
3253
|
+
<em class="parameter"><code><a href="../glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> *old_destroy</code></em>);</pre>
|
3254
|
+
<p>Compares the user data for the key <em class="parameter"><code>quark</code></em>
|
3255
|
+
on <em class="parameter"><code>object</code></em>
|
3256
|
+
with
|
3257
|
+
<em class="parameter"><code>oldval</code></em>
|
3258
|
+
, and if they are the same, replaces <em class="parameter"><code>oldval</code></em>
|
3259
|
+
with
|
3260
|
+
<em class="parameter"><code>newval</code></em>
|
3261
|
+
.</p>
|
3262
|
+
<p>This is like a typical atomic compare-and-exchange
|
3263
|
+
operation, for user data on an object.</p>
|
3264
|
+
<p>If the previous value was replaced then ownership of the
|
3265
|
+
old value (<em class="parameter"><code>oldval</code></em>
|
3266
|
+
) is passed to the caller, including
|
3267
|
+
the registered destroy notify for it (passed out in <em class="parameter"><code>old_destroy</code></em>
|
3268
|
+
).
|
3269
|
+
Its up to the caller to free this as he wishes, which may
|
3270
|
+
or may not include using <em class="parameter"><code>old_destroy</code></em>
|
3271
|
+
as sometimes replacement
|
3272
|
+
should not destroy the object in the normal way.</p>
|
3273
|
+
<div class="refsect3">
|
3274
|
+
<a name="id-1.4.5.10.58.7"></a><h4>Parameters</h4>
|
3275
|
+
<div class="informaltable"><table width="100%" border="0">
|
3276
|
+
<colgroup>
|
3277
|
+
<col width="150px" class="parameters_name">
|
3278
|
+
<col class="parameters_description">
|
3279
|
+
<col width="200px" class="parameters_annotations">
|
3280
|
+
</colgroup>
|
3281
|
+
<tbody>
|
3282
|
+
<tr>
|
3283
|
+
<td class="parameter_name"><p>object</p></td>
|
3284
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to store user data on</p></td>
|
3285
|
+
<td class="parameter_annotations"> </td>
|
3286
|
+
</tr>
|
3287
|
+
<tr>
|
3288
|
+
<td class="parameter_name"><p>quark</p></td>
|
3289
|
+
<td class="parameter_description"><p>a <a href="../glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a>, naming the user data pointer</p></td>
|
3290
|
+
<td class="parameter_annotations"> </td>
|
3291
|
+
</tr>
|
3292
|
+
<tr>
|
3293
|
+
<td class="parameter_name"><p>oldval</p></td>
|
3294
|
+
<td class="parameter_description"><p> the old value to compare against. </p></td>
|
3295
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
3296
|
+
</tr>
|
3297
|
+
<tr>
|
3298
|
+
<td class="parameter_name"><p>newval</p></td>
|
3299
|
+
<td class="parameter_description"><p> the new value. </p></td>
|
3300
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
3301
|
+
</tr>
|
3302
|
+
<tr>
|
3303
|
+
<td class="parameter_name"><p>destroy</p></td>
|
3304
|
+
<td class="parameter_description"><p> a destroy notify for the new value. </p></td>
|
3305
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
3306
|
+
</tr>
|
3307
|
+
<tr>
|
3308
|
+
<td class="parameter_name"><p>old_destroy</p></td>
|
3309
|
+
<td class="parameter_description"><p> destroy notify for the existing value. </p></td>
|
3310
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
3311
|
+
</tr>
|
3312
|
+
</tbody>
|
3313
|
+
</table></div>
|
3314
|
+
</div>
|
3315
|
+
<div class="refsect3">
|
3316
|
+
<a name="id-1.4.5.10.58.8"></a><h4>Returns</h4>
|
3317
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the existing value for <em class="parameter"><code>quark</code></em>
|
3318
|
+
was replaced
|
3319
|
+
by <em class="parameter"><code>newval</code></em>
|
3320
|
+
, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
3321
|
+
<p></p>
|
3322
|
+
</div>
|
3323
|
+
<p class="since">Since 2.34</p>
|
3324
|
+
</div>
|
3325
|
+
<hr>
|
3326
|
+
<div class="refsect2">
|
3327
|
+
<a name="g-object-set-property"></a><h3>g_object_set_property ()</h3>
|
3328
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3329
|
+
g_object_set_property (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
3330
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *property_name</code></em>,
|
3331
|
+
<em class="parameter"><code>const <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
|
3332
|
+
<p>Sets a property on an object.</p>
|
3333
|
+
<div class="refsect3">
|
3334
|
+
<a name="id-1.4.5.10.59.5"></a><h4>Parameters</h4>
|
3335
|
+
<div class="informaltable"><table width="100%" border="0">
|
3336
|
+
<colgroup>
|
3337
|
+
<col width="150px" class="parameters_name">
|
3338
|
+
<col class="parameters_description">
|
3339
|
+
<col width="200px" class="parameters_annotations">
|
3340
|
+
</colgroup>
|
3341
|
+
<tbody>
|
3342
|
+
<tr>
|
3343
|
+
<td class="parameter_name"><p>object</p></td>
|
3344
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
3345
|
+
<td class="parameter_annotations"> </td>
|
3346
|
+
</tr>
|
3347
|
+
<tr>
|
3348
|
+
<td class="parameter_name"><p>property_name</p></td>
|
3349
|
+
<td class="parameter_description"><p>the name of the property to set</p></td>
|
3350
|
+
<td class="parameter_annotations"> </td>
|
3351
|
+
</tr>
|
3352
|
+
<tr>
|
3353
|
+
<td class="parameter_name"><p>value</p></td>
|
3354
|
+
<td class="parameter_description"><p>the value</p></td>
|
3355
|
+
<td class="parameter_annotations"> </td>
|
3356
|
+
</tr>
|
3357
|
+
</tbody>
|
3358
|
+
</table></div>
|
3359
|
+
</div>
|
3360
|
+
</div>
|
3361
|
+
<hr>
|
3362
|
+
<div class="refsect2">
|
3363
|
+
<a name="g-object-get-property"></a><h3>g_object_get_property ()</h3>
|
3364
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3365
|
+
g_object_get_property (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
3366
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *property_name</code></em>,
|
3367
|
+
<em class="parameter"><code><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
|
3368
|
+
<p>Gets a property of an object. <em class="parameter"><code>value</code></em>
|
3369
|
+
must have been initialized to the
|
3370
|
+
expected type of the property (or a type to which the expected type can be
|
3371
|
+
transformed) using <a class="link" href="gobject-Generic-values.html#g-value-init" title="g_value_init ()"><code class="function">g_value_init()</code></a>.</p>
|
3372
|
+
<p>In general, a copy is made of the property contents and the caller is
|
3373
|
+
responsible for freeing the memory by calling <a class="link" href="gobject-Generic-values.html#g-value-unset" title="g_value_unset ()"><code class="function">g_value_unset()</code></a>.</p>
|
3374
|
+
<p>Note that <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-property" title="g_object_get_property ()"><code class="function">g_object_get_property()</code></a> is really intended for language
|
3375
|
+
bindings, <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get" title="g_object_get ()"><code class="function">g_object_get()</code></a> is much more convenient for C programming.</p>
|
3376
|
+
<div class="refsect3">
|
3377
|
+
<a name="id-1.4.5.10.60.7"></a><h4>Parameters</h4>
|
3378
|
+
<div class="informaltable"><table width="100%" border="0">
|
3379
|
+
<colgroup>
|
3380
|
+
<col width="150px" class="parameters_name">
|
3381
|
+
<col class="parameters_description">
|
3382
|
+
<col width="200px" class="parameters_annotations">
|
3383
|
+
</colgroup>
|
3384
|
+
<tbody>
|
3385
|
+
<tr>
|
3386
|
+
<td class="parameter_name"><p>object</p></td>
|
3387
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
3388
|
+
<td class="parameter_annotations"> </td>
|
3389
|
+
</tr>
|
3390
|
+
<tr>
|
3391
|
+
<td class="parameter_name"><p>property_name</p></td>
|
3392
|
+
<td class="parameter_description"><p>the name of the property to get</p></td>
|
3393
|
+
<td class="parameter_annotations"> </td>
|
3394
|
+
</tr>
|
3395
|
+
<tr>
|
3396
|
+
<td class="parameter_name"><p>value</p></td>
|
3397
|
+
<td class="parameter_description"><p>return location for the property value</p></td>
|
3398
|
+
<td class="parameter_annotations"> </td>
|
3399
|
+
</tr>
|
3400
|
+
</tbody>
|
3401
|
+
</table></div>
|
3402
|
+
</div>
|
3403
|
+
</div>
|
3404
|
+
<hr>
|
3405
|
+
<div class="refsect2">
|
3406
|
+
<a name="g-object-new-valist"></a><h3>g_object_new_valist ()</h3>
|
3407
|
+
<pre class="programlisting"><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a> *
|
3408
|
+
g_object_new_valist (<em class="parameter"><code><a class="link" href="gobject-Type-Information.html#GType" title="GType"><span class="type">GType</span></a> object_type</code></em>,
|
3409
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_property_name</code></em>,
|
3410
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
3411
|
+
<p>Creates a new instance of a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> subtype and sets its properties.</p>
|
3412
|
+
<p>Construction parameters (see <a class="link" href="gobject-GParamSpec.html#G-PARAM-CONSTRUCT:CAPS"><span class="type">G_PARAM_CONSTRUCT</span></a>, <a class="link" href="gobject-GParamSpec.html#G-PARAM-CONSTRUCT-ONLY:CAPS"><span class="type">G_PARAM_CONSTRUCT_ONLY</span></a>)
|
3413
|
+
which are not explicitly specified are set to their default values.</p>
|
3414
|
+
<div class="refsect3">
|
3415
|
+
<a name="id-1.4.5.10.61.6"></a><h4>Parameters</h4>
|
3416
|
+
<div class="informaltable"><table width="100%" border="0">
|
3417
|
+
<colgroup>
|
3418
|
+
<col width="150px" class="parameters_name">
|
3419
|
+
<col class="parameters_description">
|
3420
|
+
<col width="200px" class="parameters_annotations">
|
3421
|
+
</colgroup>
|
3422
|
+
<tbody>
|
3423
|
+
<tr>
|
3424
|
+
<td class="parameter_name"><p>object_type</p></td>
|
3425
|
+
<td class="parameter_description"><p>the type id of the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> subtype to instantiate</p></td>
|
3426
|
+
<td class="parameter_annotations"> </td>
|
3427
|
+
</tr>
|
3428
|
+
<tr>
|
3429
|
+
<td class="parameter_name"><p>first_property_name</p></td>
|
3430
|
+
<td class="parameter_description"><p>the name of the first property</p></td>
|
3431
|
+
<td class="parameter_annotations"> </td>
|
3432
|
+
</tr>
|
3433
|
+
<tr>
|
3434
|
+
<td class="parameter_name"><p>var_args</p></td>
|
3435
|
+
<td class="parameter_description"><p>the value of the first property, followed optionally by more
|
3436
|
+
name/value pairs, followed by <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
3437
|
+
<td class="parameter_annotations"> </td>
|
3438
|
+
</tr>
|
3439
|
+
</tbody>
|
3440
|
+
</table></div>
|
3441
|
+
</div>
|
3442
|
+
<div class="refsect3">
|
3443
|
+
<a name="id-1.4.5.10.61.7"></a><h4>Returns</h4>
|
3444
|
+
<p> a new instance of <em class="parameter"><code>object_type</code></em>
|
3445
|
+
</p>
|
3446
|
+
<p></p>
|
3447
|
+
</div>
|
3448
|
+
</div>
|
3449
|
+
<hr>
|
3450
|
+
<div class="refsect2">
|
3451
|
+
<a name="g-object-set-valist"></a><h3>g_object_set_valist ()</h3>
|
3452
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3453
|
+
g_object_set_valist (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
3454
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_property_name</code></em>,
|
3455
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
3456
|
+
<p>Sets properties on an object.</p>
|
3457
|
+
<div class="refsect3">
|
3458
|
+
<a name="id-1.4.5.10.62.5"></a><h4>Parameters</h4>
|
3459
|
+
<div class="informaltable"><table width="100%" border="0">
|
3460
|
+
<colgroup>
|
3461
|
+
<col width="150px" class="parameters_name">
|
3462
|
+
<col class="parameters_description">
|
3463
|
+
<col width="200px" class="parameters_annotations">
|
3464
|
+
</colgroup>
|
3465
|
+
<tbody>
|
3466
|
+
<tr>
|
3467
|
+
<td class="parameter_name"><p>object</p></td>
|
3468
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
3469
|
+
<td class="parameter_annotations"> </td>
|
3470
|
+
</tr>
|
3471
|
+
<tr>
|
3472
|
+
<td class="parameter_name"><p>first_property_name</p></td>
|
3473
|
+
<td class="parameter_description"><p>name of the first property to set</p></td>
|
3474
|
+
<td class="parameter_annotations"> </td>
|
3475
|
+
</tr>
|
3476
|
+
<tr>
|
3477
|
+
<td class="parameter_name"><p>var_args</p></td>
|
3478
|
+
<td class="parameter_description"><p>value for the first property, followed optionally by more
|
3479
|
+
name/value pairs, followed by <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
3480
|
+
<td class="parameter_annotations"> </td>
|
3481
|
+
</tr>
|
3482
|
+
</tbody>
|
3483
|
+
</table></div>
|
3484
|
+
</div>
|
3485
|
+
</div>
|
3486
|
+
<hr>
|
3487
|
+
<div class="refsect2">
|
3488
|
+
<a name="g-object-get-valist"></a><h3>g_object_get_valist ()</h3>
|
3489
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3490
|
+
g_object_get_valist (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
3491
|
+
<em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_property_name</code></em>,
|
3492
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
3493
|
+
<p>Gets properties of an object.</p>
|
3494
|
+
<p>In general, a copy is made of the property contents and the caller
|
3495
|
+
is responsible for freeing the memory in the appropriate manner for
|
3496
|
+
the type, for instance by calling <a href="../glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> or <a class="link" href="gobject-The-Base-Object-Type.html#g-object-unref" title="g_object_unref ()"><code class="function">g_object_unref()</code></a>.</p>
|
3497
|
+
<p>See <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get" title="g_object_get ()"><code class="function">g_object_get()</code></a>.</p>
|
3498
|
+
<div class="refsect3">
|
3499
|
+
<a name="id-1.4.5.10.63.7"></a><h4>Parameters</h4>
|
3500
|
+
<div class="informaltable"><table width="100%" border="0">
|
3501
|
+
<colgroup>
|
3502
|
+
<col width="150px" class="parameters_name">
|
3503
|
+
<col class="parameters_description">
|
3504
|
+
<col width="200px" class="parameters_annotations">
|
3505
|
+
</colgroup>
|
3506
|
+
<tbody>
|
3507
|
+
<tr>
|
3508
|
+
<td class="parameter_name"><p>object</p></td>
|
3509
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
3510
|
+
<td class="parameter_annotations"> </td>
|
3511
|
+
</tr>
|
3512
|
+
<tr>
|
3513
|
+
<td class="parameter_name"><p>first_property_name</p></td>
|
3514
|
+
<td class="parameter_description"><p>name of the first property to get</p></td>
|
3515
|
+
<td class="parameter_annotations"> </td>
|
3516
|
+
</tr>
|
3517
|
+
<tr>
|
3518
|
+
<td class="parameter_name"><p>var_args</p></td>
|
3519
|
+
<td class="parameter_description"><p>return location for the first property, followed optionally by more
|
3520
|
+
name/return location pairs, followed by <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
3521
|
+
<td class="parameter_annotations"> </td>
|
3522
|
+
</tr>
|
3523
|
+
</tbody>
|
3524
|
+
</table></div>
|
3525
|
+
</div>
|
3526
|
+
</div>
|
3527
|
+
<hr>
|
3528
|
+
<div class="refsect2">
|
3529
|
+
<a name="g-object-watch-closure"></a><h3>g_object_watch_closure ()</h3>
|
3530
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3531
|
+
g_object_watch_closure (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>,
|
3532
|
+
<em class="parameter"><code><a class="link" href="gobject-Closures.html#GClosure" title="struct GClosure"><span class="type">GClosure</span></a> *closure</code></em>);</pre>
|
3533
|
+
<p>This function essentially limits the life time of the <em class="parameter"><code>closure</code></em>
|
3534
|
+
to
|
3535
|
+
the life time of the object. That is, when the object is finalized,
|
3536
|
+
the <em class="parameter"><code>closure</code></em>
|
3537
|
+
is invalidated by calling <a class="link" href="gobject-Closures.html#g-closure-invalidate" title="g_closure_invalidate ()"><code class="function">g_closure_invalidate()</code></a> on
|
3538
|
+
it, in order to prevent invocations of the closure with a finalized
|
3539
|
+
(nonexisting) object. Also, <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref" title="g_object_ref ()"><code class="function">g_object_ref()</code></a> and <a class="link" href="gobject-The-Base-Object-Type.html#g-object-unref" title="g_object_unref ()"><code class="function">g_object_unref()</code></a> are
|
3540
|
+
added as marshal guards to the <em class="parameter"><code>closure</code></em>
|
3541
|
+
, to ensure that an extra
|
3542
|
+
reference count is held on <em class="parameter"><code>object</code></em>
|
3543
|
+
during invocation of the
|
3544
|
+
<em class="parameter"><code>closure</code></em>
|
3545
|
+
. Usually, this function will be called on closures that
|
3546
|
+
use this <em class="parameter"><code>object</code></em>
|
3547
|
+
as closure data.</p>
|
3548
|
+
<div class="refsect3">
|
3549
|
+
<a name="id-1.4.5.10.64.5"></a><h4>Parameters</h4>
|
3550
|
+
<div class="informaltable"><table width="100%" border="0">
|
3551
|
+
<colgroup>
|
3552
|
+
<col width="150px" class="parameters_name">
|
3553
|
+
<col class="parameters_description">
|
3554
|
+
<col width="200px" class="parameters_annotations">
|
3555
|
+
</colgroup>
|
3556
|
+
<tbody>
|
3557
|
+
<tr>
|
3558
|
+
<td class="parameter_name"><p>object</p></td>
|
3559
|
+
<td class="parameter_description"><p>GObject restricting lifetime of <em class="parameter"><code>closure</code></em>
|
3560
|
+
</p></td>
|
3561
|
+
<td class="parameter_annotations"> </td>
|
3562
|
+
</tr>
|
3563
|
+
<tr>
|
3564
|
+
<td class="parameter_name"><p>closure</p></td>
|
3565
|
+
<td class="parameter_description"><p>GClosure to watch</p></td>
|
3566
|
+
<td class="parameter_annotations"> </td>
|
3567
|
+
</tr>
|
3568
|
+
</tbody>
|
3569
|
+
</table></div>
|
3570
|
+
</div>
|
3571
|
+
</div>
|
3572
|
+
<hr>
|
3573
|
+
<div class="refsect2">
|
3574
|
+
<a name="g-object-run-dispose"></a><h3>g_object_run_dispose ()</h3>
|
3575
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3576
|
+
g_object_run_dispose (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object</code></em>);</pre>
|
3577
|
+
<p>Releases all references to other objects. This can be used to break
|
3578
|
+
reference cycles.</p>
|
3579
|
+
<p>This functions should only be called from object system implementations.</p>
|
3580
|
+
<div class="refsect3">
|
3581
|
+
<a name="id-1.4.5.10.65.6"></a><h4>Parameters</h4>
|
3582
|
+
<div class="informaltable"><table width="100%" border="0">
|
3583
|
+
<colgroup>
|
3584
|
+
<col width="150px" class="parameters_name">
|
3585
|
+
<col class="parameters_description">
|
3586
|
+
<col width="200px" class="parameters_annotations">
|
3587
|
+
</colgroup>
|
3588
|
+
<tbody><tr>
|
3589
|
+
<td class="parameter_name"><p>object</p></td>
|
3590
|
+
<td class="parameter_description"><p>a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
3591
|
+
<td class="parameter_annotations"> </td>
|
3592
|
+
</tr></tbody>
|
3593
|
+
</table></div>
|
3594
|
+
</div>
|
3595
|
+
</div>
|
3596
|
+
<hr>
|
3597
|
+
<div class="refsect2">
|
3598
|
+
<a name="G-OBJECT-WARN-INVALID-PROPERTY-ID:CAPS"></a><h3>G_OBJECT_WARN_INVALID_PROPERTY_ID()</h3>
|
3599
|
+
<pre class="programlisting">#define G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec)</pre>
|
3600
|
+
<p>This macro should be used to emit a standard warning about unexpected
|
3601
|
+
properties in <code class="function">set_property()</code> and <code class="function">get_property()</code> implementations.</p>
|
3602
|
+
<div class="refsect3">
|
3603
|
+
<a name="id-1.4.5.10.66.5"></a><h4>Parameters</h4>
|
3604
|
+
<div class="informaltable"><table width="100%" border="0">
|
3605
|
+
<colgroup>
|
3606
|
+
<col width="150px" class="parameters_name">
|
3607
|
+
<col class="parameters_description">
|
3608
|
+
<col width="200px" class="parameters_annotations">
|
3609
|
+
</colgroup>
|
3610
|
+
<tbody>
|
3611
|
+
<tr>
|
3612
|
+
<td class="parameter_name"><p>object</p></td>
|
3613
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> on which <code class="function">set_property()</code> or <code class="function">get_property()</code> was called</p></td>
|
3614
|
+
<td class="parameter_annotations"> </td>
|
3615
|
+
</tr>
|
3616
|
+
<tr>
|
3617
|
+
<td class="parameter_name"><p>property_id</p></td>
|
3618
|
+
<td class="parameter_description"><p>the numeric id of the property</p></td>
|
3619
|
+
<td class="parameter_annotations"> </td>
|
3620
|
+
</tr>
|
3621
|
+
<tr>
|
3622
|
+
<td class="parameter_name"><p>pspec</p></td>
|
3623
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> of the property</p></td>
|
3624
|
+
<td class="parameter_annotations"> </td>
|
3625
|
+
</tr>
|
3626
|
+
</tbody>
|
3627
|
+
</table></div>
|
3628
|
+
</div>
|
3629
|
+
</div>
|
3630
|
+
<hr>
|
3631
|
+
<div class="refsect2">
|
3632
|
+
<a name="g-weak-ref-init"></a><h3>g_weak_ref_init ()</h3>
|
3633
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3634
|
+
g_weak_ref_init (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> *weak_ref</code></em>,
|
3635
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>);</pre>
|
3636
|
+
<p>Initialise a non-statically-allocated <a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a>.</p>
|
3637
|
+
<p>This function also calls <a class="link" href="gobject-The-Base-Object-Type.html#g-weak-ref-set" title="g_weak_ref_set ()"><code class="function">g_weak_ref_set()</code></a> with <em class="parameter"><code>object</code></em>
|
3638
|
+
on the
|
3639
|
+
freshly-initialised weak reference.</p>
|
3640
|
+
<p>This function should always be matched with a call to
|
3641
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-weak-ref-clear" title="g_weak_ref_clear ()"><code class="function">g_weak_ref_clear()</code></a>. It is not necessary to use this function for a
|
3642
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> in static storage because it will already be
|
3643
|
+
properly initialised. Just use <a class="link" href="gobject-The-Base-Object-Type.html#g-weak-ref-set" title="g_weak_ref_set ()"><code class="function">g_weak_ref_set()</code></a> directly.</p>
|
3644
|
+
<div class="refsect3">
|
3645
|
+
<a name="id-1.4.5.10.67.7"></a><h4>Parameters</h4>
|
3646
|
+
<div class="informaltable"><table width="100%" border="0">
|
3647
|
+
<colgroup>
|
3648
|
+
<col width="150px" class="parameters_name">
|
3649
|
+
<col class="parameters_description">
|
3650
|
+
<col width="200px" class="parameters_annotations">
|
3651
|
+
</colgroup>
|
3652
|
+
<tbody>
|
3653
|
+
<tr>
|
3654
|
+
<td class="parameter_name"><p>weak_ref</p></td>
|
3655
|
+
<td class="parameter_description"><p> uninitialized or empty location for a weak
|
3656
|
+
reference. </p></td>
|
3657
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
|
3658
|
+
</tr>
|
3659
|
+
<tr>
|
3660
|
+
<td class="parameter_name"><p>object</p></td>
|
3661
|
+
<td class="parameter_description"><p> a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
3662
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
3663
|
+
</tr>
|
3664
|
+
</tbody>
|
3665
|
+
</table></div>
|
3666
|
+
</div>
|
3667
|
+
<p class="since">Since 2.32</p>
|
3668
|
+
</div>
|
3669
|
+
<hr>
|
3670
|
+
<div class="refsect2">
|
3671
|
+
<a name="g-weak-ref-clear"></a><h3>g_weak_ref_clear ()</h3>
|
3672
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3673
|
+
g_weak_ref_clear (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> *weak_ref</code></em>);</pre>
|
3674
|
+
<p>Frees resources associated with a non-statically-allocated <a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a>.
|
3675
|
+
After this call, the <a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> is left in an undefined state.</p>
|
3676
|
+
<p>You should only call this on a <a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> that previously had
|
3677
|
+
<a class="link" href="gobject-The-Base-Object-Type.html#g-weak-ref-init" title="g_weak_ref_init ()"><code class="function">g_weak_ref_init()</code></a> called on it.</p>
|
3678
|
+
<div class="refsect3">
|
3679
|
+
<a name="id-1.4.5.10.68.6"></a><h4>Parameters</h4>
|
3680
|
+
<div class="informaltable"><table width="100%" border="0">
|
3681
|
+
<colgroup>
|
3682
|
+
<col width="150px" class="parameters_name">
|
3683
|
+
<col class="parameters_description">
|
3684
|
+
<col width="200px" class="parameters_annotations">
|
3685
|
+
</colgroup>
|
3686
|
+
<tbody><tr>
|
3687
|
+
<td class="parameter_name"><p>weak_ref</p></td>
|
3688
|
+
<td class="parameter_description"><p> location of a weak reference, which
|
3689
|
+
may be empty. </p></td>
|
3690
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
|
3691
|
+
</tr></tbody>
|
3692
|
+
</table></div>
|
3693
|
+
</div>
|
3694
|
+
<p class="since">Since 2.32</p>
|
3695
|
+
</div>
|
3696
|
+
<hr>
|
3697
|
+
<div class="refsect2">
|
3698
|
+
<a name="g-weak-ref-get"></a><h3>g_weak_ref_get ()</h3>
|
3699
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
|
3700
|
+
g_weak_ref_get (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> *weak_ref</code></em>);</pre>
|
3701
|
+
<p>If <em class="parameter"><code>weak_ref</code></em>
|
3702
|
+
is not empty, atomically acquire a strong
|
3703
|
+
reference to the object it points to, and return that reference.</p>
|
3704
|
+
<p>This function is needed because of the potential race between taking
|
3705
|
+
the pointer value and <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref" title="g_object_ref ()"><code class="function">g_object_ref()</code></a> on it, if the object was losing
|
3706
|
+
its last reference at the same time in a different thread.</p>
|
3707
|
+
<p>The caller should release the resulting reference in the usual way,
|
3708
|
+
by using <a class="link" href="gobject-The-Base-Object-Type.html#g-object-unref" title="g_object_unref ()"><code class="function">g_object_unref()</code></a>.</p>
|
3709
|
+
<div class="refsect3">
|
3710
|
+
<a name="id-1.4.5.10.69.7"></a><h4>Parameters</h4>
|
3711
|
+
<div class="informaltable"><table width="100%" border="0">
|
3712
|
+
<colgroup>
|
3713
|
+
<col width="150px" class="parameters_name">
|
3714
|
+
<col class="parameters_description">
|
3715
|
+
<col width="200px" class="parameters_annotations">
|
3716
|
+
</colgroup>
|
3717
|
+
<tbody><tr>
|
3718
|
+
<td class="parameter_name"><p>weak_ref</p></td>
|
3719
|
+
<td class="parameter_description"><p> location of a weak reference to a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>. </p></td>
|
3720
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
|
3721
|
+
</tr></tbody>
|
3722
|
+
</table></div>
|
3723
|
+
</div>
|
3724
|
+
<div class="refsect3">
|
3725
|
+
<a name="id-1.4.5.10.69.8"></a><h4>Returns</h4>
|
3726
|
+
<p> the object pointed to
|
3727
|
+
by <em class="parameter"><code>weak_ref</code></em>
|
3728
|
+
, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if it was empty. </p>
|
3729
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GObject.Object]</span></p>
|
3730
|
+
</div>
|
3731
|
+
<p class="since">Since 2.32</p>
|
3732
|
+
</div>
|
3733
|
+
<hr>
|
3734
|
+
<div class="refsect2">
|
3735
|
+
<a name="g-weak-ref-set"></a><h3>g_weak_ref_set ()</h3>
|
3736
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3737
|
+
g_weak_ref_set (<em class="parameter"><code><a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> *weak_ref</code></em>,
|
3738
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> object</code></em>);</pre>
|
3739
|
+
<p>Change the object to which <em class="parameter"><code>weak_ref</code></em>
|
3740
|
+
points, or set it to
|
3741
|
+
<a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
3742
|
+
<p>You must own a strong reference on <em class="parameter"><code>object</code></em>
|
3743
|
+
while calling this
|
3744
|
+
function.</p>
|
3745
|
+
<div class="refsect3">
|
3746
|
+
<a name="id-1.4.5.10.70.6"></a><h4>Parameters</h4>
|
3747
|
+
<div class="informaltable"><table width="100%" border="0">
|
3748
|
+
<colgroup>
|
3749
|
+
<col width="150px" class="parameters_name">
|
3750
|
+
<col class="parameters_description">
|
3751
|
+
<col width="200px" class="parameters_annotations">
|
3752
|
+
</colgroup>
|
3753
|
+
<tbody>
|
3754
|
+
<tr>
|
3755
|
+
<td class="parameter_name"><p>weak_ref</p></td>
|
3756
|
+
<td class="parameter_description"><p>location for a weak reference</p></td>
|
3757
|
+
<td class="parameter_annotations"> </td>
|
3758
|
+
</tr>
|
3759
|
+
<tr>
|
3760
|
+
<td class="parameter_name"><p>object</p></td>
|
3761
|
+
<td class="parameter_description"><p> a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
3762
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
3763
|
+
</tr>
|
3764
|
+
</tbody>
|
3765
|
+
</table></div>
|
3766
|
+
</div>
|
3767
|
+
<p class="since">Since 2.32</p>
|
3768
|
+
</div>
|
3769
|
+
</div>
|
3770
|
+
<div class="refsect1">
|
3771
|
+
<a name="gobject-The-Base-Object-Type.other_details"></a><h2>Types and Values</h2>
|
3772
|
+
<div class="refsect2">
|
3773
|
+
<a name="GObject-struct"></a><h3>struct GObject</h3>
|
3774
|
+
<pre class="programlisting">struct GObject;</pre>
|
3775
|
+
<p>All the fields in the GObject structure are private
|
3776
|
+
to the <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> implementation and should never be accessed directly.</p>
|
3777
|
+
</div>
|
3778
|
+
<hr>
|
3779
|
+
<div class="refsect2">
|
3780
|
+
<a name="GObjectClass"></a><h3>struct GObjectClass</h3>
|
3781
|
+
<pre class="programlisting">struct GObjectClass {
|
3782
|
+
GTypeClass g_type_class;
|
3783
|
+
|
3784
|
+
/* seldom overidden */
|
3785
|
+
GObject* (*constructor) (GType type,
|
3786
|
+
guint n_construct_properties,
|
3787
|
+
GObjectConstructParam *construct_properties);
|
3788
|
+
/* overridable methods */
|
3789
|
+
void (*set_property) (GObject *object,
|
3790
|
+
guint property_id,
|
3791
|
+
const GValue *value,
|
3792
|
+
GParamSpec *pspec);
|
3793
|
+
void (*get_property) (GObject *object,
|
3794
|
+
guint property_id,
|
3795
|
+
GValue *value,
|
3796
|
+
GParamSpec *pspec);
|
3797
|
+
void (*dispose) (GObject *object);
|
3798
|
+
void (*finalize) (GObject *object);
|
3799
|
+
/* seldom overidden */
|
3800
|
+
void (*dispatch_properties_changed) (GObject *object,
|
3801
|
+
guint n_pspecs,
|
3802
|
+
GParamSpec **pspecs);
|
3803
|
+
/* signals */
|
3804
|
+
void (*notify) (GObject *object,
|
3805
|
+
GParamSpec *pspec);
|
3806
|
+
|
3807
|
+
/* called when done constructing */
|
3808
|
+
void (*constructed) (GObject *object);
|
3809
|
+
};
|
3810
|
+
</pre>
|
3811
|
+
<p>The class structure for the GObject type.</p>
|
3812
|
+
<p><example>
|
3813
|
+
<title>Implementing singletons using a constructor</title>
|
3814
|
+
<programlisting>
|
3815
|
+
static MySingleton *the_singleton = NULL;</p>
|
3816
|
+
<p>static GObject*
|
3817
|
+
my_singleton_constructor (GType type,
|
3818
|
+
guint n_construct_params,
|
3819
|
+
GObjectConstructParam *construct_params)
|
3820
|
+
{
|
3821
|
+
GObject *object;</p>
|
3822
|
+
<p> if (!the_singleton)
|
3823
|
+
{
|
3824
|
+
object = G_OBJECT_CLASS (parent_class)->constructor (type,
|
3825
|
+
n_construct_params,
|
3826
|
+
construct_params);
|
3827
|
+
the_singleton = MY_SINGLETON (object);
|
3828
|
+
}
|
3829
|
+
else
|
3830
|
+
object = g_object_ref (G_OBJECT (the_singleton));</p>
|
3831
|
+
<p> return object;
|
3832
|
+
}
|
3833
|
+
</programlisting></example></p>
|
3834
|
+
<div class="refsect3">
|
3835
|
+
<a name="id-1.4.5.11.3.9"></a><h4>Members</h4>
|
3836
|
+
<div class="informaltable"><table width="100%" border="0">
|
3837
|
+
<colgroup>
|
3838
|
+
<col width="300px" class="struct_members_name">
|
3839
|
+
<col class="struct_members_description">
|
3840
|
+
<col width="200px" class="struct_members_annotations">
|
3841
|
+
</colgroup>
|
3842
|
+
<tbody>
|
3843
|
+
<tr>
|
3844
|
+
<td class="struct_member_name"><p><a class="link" href="gobject-Type-Information.html#GTypeClass" title="struct GTypeClass"><span class="type">GTypeClass</span></a> <em class="structfield"><code><a name="GObjectClass.g-type-class"></a>g_type_class</code></em>;</p></td>
|
3845
|
+
<td class="struct_member_description"><p>the parent class</p></td>
|
3846
|
+
<td class="struct_member_annotations"> </td>
|
3847
|
+
</tr>
|
3848
|
+
<tr>
|
3849
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="GObjectClass.constructor"></a>constructor</code></em> ()</p></td>
|
3850
|
+
<td class="struct_member_description"><p>the <em class="parameter"><code>constructor</code></em>
|
3851
|
+
function is called by <a class="link" href="gobject-The-Base-Object-Type.html#g-object-new" title="g_object_new ()"><code class="function">g_object_new()</code></a> to
|
3852
|
+
complete the object initialization after all the construction properties are
|
3853
|
+
set. The first thing a <em class="parameter"><code>constructor</code></em>
|
3854
|
+
implementation must do is chain up to the
|
3855
|
+
<em class="parameter"><code>constructor</code></em>
|
3856
|
+
of the parent class. Overriding <em class="parameter"><code>constructor</code></em>
|
3857
|
+
should be rarely
|
3858
|
+
needed, e.g. to handle construct properties, or to implement singletons.</p></td>
|
3859
|
+
<td class="struct_member_annotations"> </td>
|
3860
|
+
</tr>
|
3861
|
+
<tr>
|
3862
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="GObjectClass.set-property"></a>set_property</code></em> ()</p></td>
|
3863
|
+
<td class="struct_member_description"><p>the generic setter for all properties of this type. Should be
|
3864
|
+
overridden for every type with properties. If implementations of
|
3865
|
+
<em class="parameter"><code>set_property</code></em>
|
3866
|
+
don't emit property change notification explicitly, this will
|
3867
|
+
be done implicitly by the type system. However, if the notify signal is
|
3868
|
+
emitted explicitly, the type system will not emit it a second time.</p></td>
|
3869
|
+
<td class="struct_member_annotations"> </td>
|
3870
|
+
</tr>
|
3871
|
+
<tr>
|
3872
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="GObjectClass.get-property"></a>get_property</code></em> ()</p></td>
|
3873
|
+
<td class="struct_member_description"><p>the generic getter for all properties of this type. Should be
|
3874
|
+
overridden for every type with properties.</p></td>
|
3875
|
+
<td class="struct_member_annotations"> </td>
|
3876
|
+
</tr>
|
3877
|
+
<tr>
|
3878
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="GObjectClass.dispose"></a>dispose</code></em> ()</p></td>
|
3879
|
+
<td class="struct_member_description"><p>the <em class="parameter"><code>dispose</code></em>
|
3880
|
+
function is supposed to drop all references to other
|
3881
|
+
objects, but keep the instance otherwise intact, so that client method
|
3882
|
+
invocations still work. It may be run multiple times (due to reference
|
3883
|
+
loops). Before returning, <em class="parameter"><code>dispose</code></em>
|
3884
|
+
should chain up to the <em class="parameter"><code>dispose</code></em>
|
3885
|
+
method
|
3886
|
+
of the parent class.</p></td>
|
3887
|
+
<td class="struct_member_annotations"> </td>
|
3888
|
+
</tr>
|
3889
|
+
<tr>
|
3890
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="GObjectClass.finalize"></a>finalize</code></em> ()</p></td>
|
3891
|
+
<td class="struct_member_description"><p>instance finalization function, should finish the finalization of
|
3892
|
+
the instance begun in <em class="parameter"><code>dispose</code></em>
|
3893
|
+
and chain up to the <em class="parameter"><code>finalize</code></em>
|
3894
|
+
method of the
|
3895
|
+
parent class.</p></td>
|
3896
|
+
<td class="struct_member_annotations"> </td>
|
3897
|
+
</tr>
|
3898
|
+
<tr>
|
3899
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="GObjectClass.dispatch-properties-changed"></a>dispatch_properties_changed</code></em> ()</p></td>
|
3900
|
+
<td class="struct_member_description"><p>emits property change notification for a bunch
|
3901
|
+
of properties. Overriding <em class="parameter"><code>dispatch_properties_changed</code></em>
|
3902
|
+
should be rarely
|
3903
|
+
needed.</p></td>
|
3904
|
+
<td class="struct_member_annotations"> </td>
|
3905
|
+
</tr>
|
3906
|
+
<tr>
|
3907
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="GObjectClass.notify"></a>notify</code></em> ()</p></td>
|
3908
|
+
<td class="struct_member_description"><p>the class closure for the notify signal</p></td>
|
3909
|
+
<td class="struct_member_annotations"> </td>
|
3910
|
+
</tr>
|
3911
|
+
<tr>
|
3912
|
+
<td class="struct_member_name"><p><em class="structfield"><code><a name="GObjectClass.constructed"></a>constructed</code></em> ()</p></td>
|
3913
|
+
<td class="struct_member_description"><p>the <em class="parameter"><code>constructed</code></em>
|
3914
|
+
function is called by <a class="link" href="gobject-The-Base-Object-Type.html#g-object-new" title="g_object_new ()"><code class="function">g_object_new()</code></a> as the
|
3915
|
+
final step of the object creation process. At the point of the call, all
|
3916
|
+
construction properties have been set on the object. The purpose of this
|
3917
|
+
call is to allow for object initialisation steps that can only be performed
|
3918
|
+
after construction properties have been set. <em class="parameter"><code>constructed</code></em>
|
3919
|
+
implementors
|
3920
|
+
should chain up to the <em class="parameter"><code>constructed</code></em>
|
3921
|
+
call of their parent class to allow it
|
3922
|
+
to complete its initialisation.</p></td>
|
3923
|
+
<td class="struct_member_annotations"> </td>
|
3924
|
+
</tr>
|
3925
|
+
</tbody>
|
3926
|
+
</table></div>
|
3927
|
+
</div>
|
3928
|
+
</div>
|
3929
|
+
<hr>
|
3930
|
+
<div class="refsect2">
|
3931
|
+
<a name="GObjectConstructParam"></a><h3>struct GObjectConstructParam</h3>
|
3932
|
+
<pre class="programlisting">struct GObjectConstructParam {
|
3933
|
+
GParamSpec *pspec;
|
3934
|
+
GValue *value;
|
3935
|
+
};
|
3936
|
+
</pre>
|
3937
|
+
<p>The GObjectConstructParam struct is an auxiliary
|
3938
|
+
structure used to hand <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a>/<a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> pairs to the <em class="parameter"><code>constructor</code></em>
|
3939
|
+
of
|
3940
|
+
a <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="struct GObjectClass"><span class="type">GObjectClass</span></a>.</p>
|
3941
|
+
<div class="refsect3">
|
3942
|
+
<a name="id-1.4.5.11.4.5"></a><h4>Members</h4>
|
3943
|
+
<div class="informaltable"><table width="100%" border="0">
|
3944
|
+
<colgroup>
|
3945
|
+
<col width="300px" class="struct_members_name">
|
3946
|
+
<col class="struct_members_description">
|
3947
|
+
<col width="200px" class="struct_members_annotations">
|
3948
|
+
</colgroup>
|
3949
|
+
<tbody>
|
3950
|
+
<tr>
|
3951
|
+
<td class="struct_member_name"><p><a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> *<em class="structfield"><code><a name="GObjectConstructParam.pspec"></a>pspec</code></em>;</p></td>
|
3952
|
+
<td class="struct_member_description"><p>the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> of the construct parameter</p></td>
|
3953
|
+
<td class="struct_member_annotations"> </td>
|
3954
|
+
</tr>
|
3955
|
+
<tr>
|
3956
|
+
<td class="struct_member_name"><p><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> *<em class="structfield"><code><a name="GObjectConstructParam.value"></a>value</code></em>;</p></td>
|
3957
|
+
<td class="struct_member_description"><p>the value to set the parameter to</p></td>
|
3958
|
+
<td class="struct_member_annotations"> </td>
|
3959
|
+
</tr>
|
3960
|
+
</tbody>
|
3961
|
+
</table></div>
|
3962
|
+
</div>
|
3963
|
+
</div>
|
3964
|
+
<hr>
|
3965
|
+
<div class="refsect2">
|
3966
|
+
<a name="GParameter"></a><h3>struct GParameter</h3>
|
3967
|
+
<pre class="programlisting">struct GParameter {
|
3968
|
+
const gchar *name;
|
3969
|
+
GValue value;
|
3970
|
+
};
|
3971
|
+
</pre>
|
3972
|
+
<p>The GParameter struct is an auxiliary structure used
|
3973
|
+
to hand parameter name/value pairs to <a class="link" href="gobject-The-Base-Object-Type.html#g-object-newv" title="g_object_newv ()"><code class="function">g_object_newv()</code></a>.</p>
|
3974
|
+
<div class="refsect3">
|
3975
|
+
<a name="id-1.4.5.11.5.5"></a><h4>Members</h4>
|
3976
|
+
<div class="informaltable"><table width="100%" border="0">
|
3977
|
+
<colgroup>
|
3978
|
+
<col width="300px" class="struct_members_name">
|
3979
|
+
<col class="struct_members_description">
|
3980
|
+
<col width="200px" class="struct_members_annotations">
|
3981
|
+
</colgroup>
|
3982
|
+
<tbody>
|
3983
|
+
<tr>
|
3984
|
+
<td class="struct_member_name"><p>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GParameter.name"></a>name</code></em>;</p></td>
|
3985
|
+
<td class="struct_member_description"><p>the parameter name</p></td>
|
3986
|
+
<td class="struct_member_annotations"> </td>
|
3987
|
+
</tr>
|
3988
|
+
<tr>
|
3989
|
+
<td class="struct_member_name"><p><a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a> <em class="structfield"><code><a name="GParameter.value"></a>value</code></em>;</p></td>
|
3990
|
+
<td class="struct_member_description"><p>the parameter value</p></td>
|
3991
|
+
<td class="struct_member_annotations"> </td>
|
3992
|
+
</tr>
|
3993
|
+
</tbody>
|
3994
|
+
</table></div>
|
3995
|
+
</div>
|
3996
|
+
</div>
|
3997
|
+
<hr>
|
3998
|
+
<div class="refsect2">
|
3999
|
+
<a name="GInitiallyUnowned"></a><h3>GInitiallyUnowned</h3>
|
4000
|
+
<pre class="programlisting">typedef struct _GObject GInitiallyUnowned;
|
4001
|
+
</pre>
|
4002
|
+
<p>All the fields in the GInitiallyUnowned structure
|
4003
|
+
are private to the <a class="link" href="gobject-The-Base-Object-Type.html#GInitiallyUnowned" title="GInitiallyUnowned"><span class="type">GInitiallyUnowned</span></a> implementation and should never be
|
4004
|
+
accessed directly.</p>
|
4005
|
+
</div>
|
4006
|
+
<hr>
|
4007
|
+
<div class="refsect2">
|
4008
|
+
<a name="GInitiallyUnownedClass"></a><h3>GInitiallyUnownedClass</h3>
|
4009
|
+
<pre class="programlisting">typedef struct _GObjectClass GInitiallyUnownedClass;
|
4010
|
+
</pre>
|
4011
|
+
<p>The class structure for the GInitiallyUnowned type.</p>
|
4012
|
+
</div>
|
4013
|
+
<hr>
|
4014
|
+
<div class="refsect2">
|
4015
|
+
<a name="G-TYPE-INITIALLY-UNOWNED:CAPS"></a><h3>G_TYPE_INITIALLY_UNOWNED</h3>
|
4016
|
+
<pre class="programlisting">#define G_TYPE_INITIALLY_UNOWNED (g_initially_unowned_get_type())
|
4017
|
+
</pre>
|
4018
|
+
<p>The type for <a class="link" href="gobject-The-Base-Object-Type.html#GInitiallyUnowned" title="GInitiallyUnowned"><span class="type">GInitiallyUnowned</span></a>.</p>
|
4019
|
+
</div>
|
4020
|
+
<hr>
|
4021
|
+
<div class="refsect2">
|
4022
|
+
<a name="GWeakRef"></a><h3>GWeakRef</h3>
|
4023
|
+
<pre class="programlisting">typedef struct {
|
4024
|
+
} GWeakRef;
|
4025
|
+
</pre>
|
4026
|
+
<p>A structure containing a weak reference to a <a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>. It can either
|
4027
|
+
be empty (i.e. point to <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>), or point to an object for as long as
|
4028
|
+
at least one "strong" reference to that object exists. Before the
|
4029
|
+
object's <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass.dispose"><span class="type">GObjectClass.dispose</span></a> method is called, every <a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a>
|
4030
|
+
associated with becomes empty (i.e. points to <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>).</p>
|
4031
|
+
<p>Like <a class="link" href="gobject-Generic-values.html#GValue" title="GValue"><span class="type">GValue</span></a>, <a class="link" href="gobject-The-Base-Object-Type.html#GWeakRef" title="GWeakRef"><span class="type">GWeakRef</span></a> can be statically allocated, stack- or
|
4032
|
+
heap-allocated, or embedded in larger structures.</p>
|
4033
|
+
<p>Unlike <a class="link" href="gobject-The-Base-Object-Type.html#g-object-weak-ref" title="g_object_weak_ref ()"><code class="function">g_object_weak_ref()</code></a> and <a class="link" href="gobject-The-Base-Object-Type.html#g-object-add-weak-pointer" title="g_object_add_weak_pointer ()"><code class="function">g_object_add_weak_pointer()</code></a>, this weak
|
4034
|
+
reference is thread-safe: converting a weak pointer to a reference is
|
4035
|
+
atomic with respect to invalidation of weak pointers to destroyed
|
4036
|
+
objects.</p>
|
4037
|
+
<p>If the object's <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass.dispose"><span class="type">GObjectClass.dispose</span></a> method results in additional
|
4038
|
+
references to the object being held, any <a href="gobject-The-Base-Object-Type.html#GWeakRef"><span class="type">GWeakRefs</span></a> taken
|
4039
|
+
before it was disposed will continue to point to <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. If
|
4040
|
+
<a href="gobject-The-Base-Object-Type.html#GWeakRef"><span class="type">GWeakRefs</span></a> are taken after the object is disposed and
|
4041
|
+
re-referenced, they will continue to point to it until its refcount
|
4042
|
+
goes back to zero, at which point they too will be invalidated.</p>
|
4043
|
+
</div>
|
4044
|
+
</div>
|
4045
|
+
<div class="refsect1">
|
4046
|
+
<a name="gobject-The-Base-Object-Type.signal-details"></a><h2>Signal Details</h2>
|
4047
|
+
<div class="refsect2">
|
4048
|
+
<a name="GObject-notify"></a><h3>The <code class="literal">“notify”</code> signal</h3>
|
4049
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
4050
|
+
user_function (<a class="link" href="gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *gobject,
|
4051
|
+
<a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> *pspec,
|
4052
|
+
<a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
4053
|
+
<p>The notify signal is emitted on an object when one of its
|
4054
|
+
properties has been changed. Note that getting this signal
|
4055
|
+
doesn't guarantee that the value of the property has actually
|
4056
|
+
changed, it may also be emitted when the setter for the property
|
4057
|
+
is called to reinstate the previous value.</p>
|
4058
|
+
<p>This signal is typically used to obtain change notification for a
|
4059
|
+
single property, by specifying the property name as a detail in the
|
4060
|
+
<a class="link" href="gobject-Signals.html#g-signal-connect" title="g_signal_connect()"><code class="function">g_signal_connect()</code></a> call, like this:</p>
|
4061
|
+
<div class="informalexample">
|
4062
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
4063
|
+
<tbody>
|
4064
|
+
<tr>
|
4065
|
+
<td class="listing_lines" align="right"><pre>1
|
4066
|
+
2
|
4067
|
+
3</pre></td>
|
4068
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="gobject-Signals.html#g-signal-connect">g_signal_connect</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">text_view</span><span class="symbol">-></span><span class="normal">buffer</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"notify::paste-target-list"</span><span class="symbol">,</span>
|
4069
|
+
<span class="normal"> </span><span class="function"><a href="gobject-Closures.html#G-CALLBACK:CAPS">G_CALLBACK</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">gtk_text_view_target_list_notify</span><span class="symbol">),</span>
|
4070
|
+
<span class="normal"> text_view</span><span class="symbol">)</span></pre></td>
|
4071
|
+
</tr>
|
4072
|
+
</tbody>
|
4073
|
+
</table>
|
4074
|
+
</div>
|
4075
|
+
|
4076
|
+
<p>
|
4077
|
+
It is important to note that you must use
|
4078
|
+
canonical parameter names as
|
4079
|
+
detail strings for the notify signal.</p>
|
4080
|
+
<div class="refsect3">
|
4081
|
+
<a name="id-1.4.5.12.2.8"></a><h4>Parameters</h4>
|
4082
|
+
<div class="informaltable"><table width="100%" border="0">
|
4083
|
+
<colgroup>
|
4084
|
+
<col width="150px" class="parameters_name">
|
4085
|
+
<col class="parameters_description">
|
4086
|
+
<col width="200px" class="parameters_annotations">
|
4087
|
+
</colgroup>
|
4088
|
+
<tbody>
|
4089
|
+
<tr>
|
4090
|
+
<td class="parameter_name"><p>gobject</p></td>
|
4091
|
+
<td class="parameter_description"><p>the object which received the signal.</p></td>
|
4092
|
+
<td class="parameter_annotations"> </td>
|
4093
|
+
</tr>
|
4094
|
+
<tr>
|
4095
|
+
<td class="parameter_name"><p>pspec</p></td>
|
4096
|
+
<td class="parameter_description"><p>the <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="struct GParamSpec"><span class="type">GParamSpec</span></a> of the property which changed.</p></td>
|
4097
|
+
<td class="parameter_annotations"> </td>
|
4098
|
+
</tr>
|
4099
|
+
<tr>
|
4100
|
+
<td class="parameter_name"><p>user_data</p></td>
|
4101
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
4102
|
+
<td class="parameter_annotations"> </td>
|
4103
|
+
</tr>
|
4104
|
+
</tbody>
|
4105
|
+
</table></div>
|
4106
|
+
</div>
|
4107
|
+
<p>Flags: <a class="link" href="gobject-Signals.html#G-SIGNAL-NO-HOOKS:CAPS">No Hooks</a></p>
|
4108
|
+
</div>
|
4109
|
+
</div>
|
4110
|
+
<div class="refsect1">
|
4111
|
+
<a name="gobject-The-Base-Object-Type.see-also"></a><h2>See Also</h2>
|
4112
|
+
<p><a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecObject" title="struct GParamSpecObject"><span class="type">GParamSpecObject</span></a>, <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-object" title="g_param_spec_object ()"><code class="function">g_param_spec_object()</code></a></p>
|
4113
|
+
</div>
|
4114
|
+
</div>
|
4115
|
+
<div class="footer">
|
4116
|
+
<hr>
|
4117
|
+
Generated by GTK-Doc V1.21.1</div>
|
4118
|
+
</body>
|
4119
|
+
</html>
|