glib2 0.90.2-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (875) hide show
  1. data/ChangeLog +3115 -0
  2. data/README +40 -0
  3. data/Rakefile +69 -0
  4. data/ext/glib2/depend +10 -0
  5. data/ext/glib2/extconf.rb +61 -0
  6. data/ext/glib2/glib2.def +89 -0
  7. data/ext/glib2/rbgcompat.h +30 -0
  8. data/ext/glib2/rbglib.c +330 -0
  9. data/ext/glib2/rbglib.h +96 -0
  10. data/ext/glib2/rbglib_bookmarkfile.c +595 -0
  11. data/ext/glib2/rbglib_completion.c +192 -0
  12. data/ext/glib2/rbglib_convert.c +195 -0
  13. data/ext/glib2/rbglib_error.c +95 -0
  14. data/ext/glib2/rbglib_fileutils.c +83 -0
  15. data/ext/glib2/rbglib_i18n.c +44 -0
  16. data/ext/glib2/rbglib_int64.c +157 -0
  17. data/ext/glib2/rbglib_iochannel.c +883 -0
  18. data/ext/glib2/rbglib_keyfile.c +846 -0
  19. data/ext/glib2/rbglib_maincontext.c +915 -0
  20. data/ext/glib2/rbglib_mainloop.c +87 -0
  21. data/ext/glib2/rbglib_messages.c +150 -0
  22. data/ext/glib2/rbglib_pollfd.c +111 -0
  23. data/ext/glib2/rbglib_shell.c +68 -0
  24. data/ext/glib2/rbglib_source.c +190 -0
  25. data/ext/glib2/rbglib_spawn.c +345 -0
  26. data/ext/glib2/rbglib_threads.c +51 -0
  27. data/ext/glib2/rbglib_timer.c +127 -0
  28. data/ext/glib2/rbglib_unicode.c +611 -0
  29. data/ext/glib2/rbglib_utils.c +386 -0
  30. data/ext/glib2/rbglib_win32.c +136 -0
  31. data/ext/glib2/rbgobj_boxed.c +251 -0
  32. data/ext/glib2/rbgobj_closure.c +337 -0
  33. data/ext/glib2/rbgobj_convert.c +167 -0
  34. data/ext/glib2/rbgobj_enums.c +961 -0
  35. data/ext/glib2/rbgobj_fundamental.c +30 -0
  36. data/ext/glib2/rbgobj_object.c +892 -0
  37. data/ext/glib2/rbgobj_param.c +390 -0
  38. data/ext/glib2/rbgobj_paramspecs.c +305 -0
  39. data/ext/glib2/rbgobj_signal.c +963 -0
  40. data/ext/glib2/rbgobj_strv.c +61 -0
  41. data/ext/glib2/rbgobj_type.c +851 -0
  42. data/ext/glib2/rbgobj_typeinstance.c +121 -0
  43. data/ext/glib2/rbgobj_typeinterface.c +148 -0
  44. data/ext/glib2/rbgobj_typemodule.c +66 -0
  45. data/ext/glib2/rbgobj_typeplugin.c +49 -0
  46. data/ext/glib2/rbgobj_value.c +313 -0
  47. data/ext/glib2/rbgobj_valuearray.c +59 -0
  48. data/ext/glib2/rbgobj_valuetypes.c +298 -0
  49. data/ext/glib2/rbgobject.c +406 -0
  50. data/ext/glib2/rbgobject.h +265 -0
  51. data/ext/glib2/rbgprivate.h +88 -0
  52. data/ext/glib2/rbgutil.c +316 -0
  53. data/ext/glib2/rbgutil.h +82 -0
  54. data/ext/glib2/rbgutil_callback.c +231 -0
  55. data/extconf.rb +49 -0
  56. data/lib/1.8/glib2.so +0 -0
  57. data/lib/1.9/glib2.so +0 -0
  58. data/lib/glib-mkenums.rb +199 -0
  59. data/lib/glib2.rb +239 -0
  60. data/lib/gnome2-win32-binary-downloader.rb +92 -0
  61. data/lib/mkmf-gnome2.rb +377 -0
  62. data/sample/bookmarkfile.rb +66 -0
  63. data/sample/completion.rb +45 -0
  64. data/sample/idle.rb +41 -0
  65. data/sample/iochannel.rb +44 -0
  66. data/sample/keyfile.rb +62 -0
  67. data/sample/shell.rb +36 -0
  68. data/sample/spawn.rb +25 -0
  69. data/sample/timeout.rb +28 -0
  70. data/sample/timeout2.rb +35 -0
  71. data/sample/timer.rb +40 -0
  72. data/sample/type-register.rb +103 -0
  73. data/sample/type-register2.rb +104 -0
  74. data/sample/utils.rb +54 -0
  75. data/test/glib-test-init.rb +6 -0
  76. data/test/glib-test-utils.rb +12 -0
  77. data/test/run-test.rb +21 -0
  78. data/test/test_enum.rb +99 -0
  79. data/test/test_file_utils.rb +15 -0
  80. data/test/test_glib2.rb +120 -0
  81. data/test/test_iochannel.rb +275 -0
  82. data/test/test_key_file.rb +38 -0
  83. data/test/test_mkenums.rb +25 -0
  84. data/test/test_signal.rb +20 -0
  85. data/test/test_timeout.rb +28 -0
  86. data/test/test_unicode.rb +369 -0
  87. data/test/test_utils.rb +37 -0
  88. data/test/test_win32.rb +13 -0
  89. data/test-unit/COPYING +56 -0
  90. data/test-unit/GPL +340 -0
  91. data/test-unit/History.txt +232 -0
  92. data/test-unit/Manifest.txt +110 -0
  93. data/test-unit/PSFL +271 -0
  94. data/test-unit/README.txt +75 -0
  95. data/test-unit/Rakefile +53 -0
  96. data/test-unit/TODO +5 -0
  97. data/test-unit/bin/testrb +5 -0
  98. data/test-unit/html/bar.png +0 -0
  99. data/test-unit/html/bar.svg +153 -0
  100. data/test-unit/html/developer.png +0 -0
  101. data/test-unit/html/developer.svg +469 -0
  102. data/test-unit/html/famfamfam-logo.png +0 -0
  103. data/test-unit/html/favicon.ico +0 -0
  104. data/test-unit/html/favicon.png +0 -0
  105. data/test-unit/html/favicon.svg +82 -0
  106. data/test-unit/html/heading-mark.png +0 -0
  107. data/test-unit/html/heading-mark.svg +393 -0
  108. data/test-unit/html/index.html +247 -0
  109. data/test-unit/html/index.html.ja +270 -0
  110. data/test-unit/html/install.png +0 -0
  111. data/test-unit/html/install.svg +636 -0
  112. data/test-unit/html/jp.png +0 -0
  113. data/test-unit/html/kinotan-failure.png +0 -0
  114. data/test-unit/html/kinotan-pass.png +0 -0
  115. data/test-unit/html/logo.png +0 -0
  116. data/test-unit/html/logo.svg +483 -0
  117. data/test-unit/html/reference.png +0 -0
  118. data/test-unit/html/rubyforge.png +0 -0
  119. data/test-unit/html/tango-logo.png +0 -0
  120. data/test-unit/html/test-unit.css +339 -0
  121. data/test-unit/html/tutorial.png +0 -0
  122. data/test-unit/html/tutorial.svg +559 -0
  123. data/test-unit/html/us.png +0 -0
  124. data/test-unit/images/color-diff.png +0 -0
  125. data/test-unit/lib/test/unit/assertionfailederror.rb +25 -0
  126. data/test-unit/lib/test/unit/assertions.rb +1334 -0
  127. data/test-unit/lib/test/unit/attribute.rb +125 -0
  128. data/test-unit/lib/test/unit/autorunner.rb +363 -0
  129. data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
  130. data/test-unit/lib/test/unit/collector/dir.rb +108 -0
  131. data/test-unit/lib/test/unit/collector/load.rb +144 -0
  132. data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
  133. data/test-unit/lib/test/unit/collector.rb +36 -0
  134. data/test-unit/lib/test/unit/color-scheme.rb +106 -0
  135. data/test-unit/lib/test/unit/color.rb +96 -0
  136. data/test-unit/lib/test/unit/diff.rb +740 -0
  137. data/test-unit/lib/test/unit/error.rb +130 -0
  138. data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
  139. data/test-unit/lib/test/unit/failure.rb +136 -0
  140. data/test-unit/lib/test/unit/fixture.rb +176 -0
  141. data/test-unit/lib/test/unit/notification.rb +129 -0
  142. data/test-unit/lib/test/unit/omission.rb +191 -0
  143. data/test-unit/lib/test/unit/pending.rb +150 -0
  144. data/test-unit/lib/test/unit/priority.rb +180 -0
  145. data/test-unit/lib/test/unit/runner/console.rb +52 -0
  146. data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
  147. data/test-unit/lib/test/unit/runner/tap.rb +8 -0
  148. data/test-unit/lib/test/unit/testcase.rb +483 -0
  149. data/test-unit/lib/test/unit/testresult.rb +121 -0
  150. data/test-unit/lib/test/unit/testsuite.rb +110 -0
  151. data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
  152. data/test-unit/lib/test/unit/ui/console/testrunner.rb +430 -0
  153. data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +63 -0
  154. data/test-unit/lib/test/unit/ui/tap/testrunner.rb +82 -0
  155. data/test-unit/lib/test/unit/ui/testrunner.rb +53 -0
  156. data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
  157. data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
  158. data/test-unit/lib/test/unit/util/backtracefilter.rb +42 -0
  159. data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
  160. data/test-unit/lib/test/unit/util/observable.rb +90 -0
  161. data/test-unit/lib/test/unit/util/output.rb +31 -0
  162. data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
  163. data/test-unit/lib/test/unit/version.rb +7 -0
  164. data/test-unit/lib/test/unit.rb +328 -0
  165. data/test-unit/sample/adder.rb +13 -0
  166. data/test-unit/sample/subtracter.rb +12 -0
  167. data/test-unit/sample/test_adder.rb +20 -0
  168. data/test-unit/sample/test_subtracter.rb +20 -0
  169. data/test-unit/sample/test_user.rb +23 -0
  170. data/test-unit/test/collector/test-descendant.rb +133 -0
  171. data/test-unit/test/collector/test-load.rb +442 -0
  172. data/test-unit/test/collector/test_dir.rb +406 -0
  173. data/test-unit/test/collector/test_objectspace.rb +100 -0
  174. data/test-unit/test/run-test.rb +15 -0
  175. data/test-unit/test/test-attribute.rb +86 -0
  176. data/test-unit/test/test-color-scheme.rb +69 -0
  177. data/test-unit/test/test-color.rb +47 -0
  178. data/test-unit/test/test-diff.rb +518 -0
  179. data/test-unit/test/test-emacs-runner.rb +60 -0
  180. data/test-unit/test/test-fixture.rb +287 -0
  181. data/test-unit/test/test-notification.rb +33 -0
  182. data/test-unit/test/test-omission.rb +81 -0
  183. data/test-unit/test/test-pending.rb +70 -0
  184. data/test-unit/test/test-priority.rb +119 -0
  185. data/test-unit/test/test-testcase.rb +544 -0
  186. data/test-unit/test/test_assertions.rb +1197 -0
  187. data/test-unit/test/test_error.rb +26 -0
  188. data/test-unit/test/test_failure.rb +33 -0
  189. data/test-unit/test/test_testresult.rb +113 -0
  190. data/test-unit/test/test_testsuite.rb +129 -0
  191. data/test-unit/test/testunit-test-util.rb +14 -0
  192. data/test-unit/test/ui/test_tap.rb +33 -0
  193. data/test-unit/test/ui/test_testrunmediator.rb +20 -0
  194. data/test-unit/test/util/test-method-owner-finder.rb +38 -0
  195. data/test-unit/test/util/test-output.rb +11 -0
  196. data/test-unit/test/util/test_backtracefilter.rb +41 -0
  197. data/test-unit/test/util/test_observable.rb +102 -0
  198. data/test-unit/test/util/test_procwrapper.rb +36 -0
  199. data/vendor/local/bin/envsubst.exe +0 -0
  200. data/vendor/local/bin/gettext.exe +0 -0
  201. data/vendor/local/bin/gettext.sh +123 -0
  202. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  203. data/vendor/local/bin/glib-gettextize +188 -0
  204. data/vendor/local/bin/glib-mkenums +511 -0
  205. data/vendor/local/bin/gobject-query.exe +0 -0
  206. data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
  207. data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
  208. data/vendor/local/bin/intl.dll +0 -0
  209. data/vendor/local/bin/libasprintf-0.dll +0 -0
  210. data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
  211. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  212. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  213. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  214. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  215. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  216. data/vendor/local/bin/ngettext.exe +0 -0
  217. data/vendor/local/include/autosprintf.h +66 -0
  218. data/vendor/local/include/glib-2.0/gio/gappinfo.h +237 -0
  219. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
  220. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
  221. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
  222. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +82 -0
  223. data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
  224. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
  225. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
  226. data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
  227. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
  228. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
  229. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +133 -0
  230. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +116 -0
  231. data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
  232. data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
  233. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
  234. data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
  235. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
  236. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +133 -0
  237. data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
  238. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +951 -0
  239. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
  240. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
  241. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
  242. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
  243. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
  244. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
  245. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
  246. data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
  247. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
  248. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
  249. data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
  250. data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
  251. data/vendor/local/include/glib-2.0/gio/gio.h +101 -0
  252. data/vendor/local/include/glib-2.0/gio/gioenums.h +703 -0
  253. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +79 -0
  254. data/vendor/local/include/glib-2.0/gio/gioerror.h +48 -0
  255. data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
  256. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
  257. data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
  258. data/vendor/local/include/glib-2.0/gio/giotypes.h +339 -0
  259. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
  260. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
  261. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +97 -0
  262. data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
  263. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
  264. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
  265. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +69 -0
  266. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +69 -0
  267. data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
  268. data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
  269. data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
  270. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
  271. data/vendor/local/include/glib-2.0/gio/gsocket.h +176 -0
  272. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
  273. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
  274. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +130 -0
  275. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +68 -0
  276. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
  277. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
  278. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
  279. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
  280. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
  281. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
  282. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
  283. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  284. data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
  285. data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
  286. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +151 -0
  287. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +55 -0
  288. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +54 -0
  289. data/vendor/local/include/glib-2.0/glib/galloca.h +63 -0
  290. data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
  291. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
  292. data/vendor/local/include/glib-2.0/glib/gatomic.h +85 -0
  293. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
  294. data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
  295. data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
  296. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +191 -0
  297. data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
  298. data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
  299. data/vendor/local/include/glib-2.0/glib/gcompletion.h +77 -0
  300. data/vendor/local/include/glib-2.0/glib/gconvert.h +138 -0
  301. data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
  302. data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
  303. data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
  304. data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
  305. data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
  306. data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
  307. data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
  308. data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
  309. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
  310. data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
  311. data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
  312. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +250 -0
  313. data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
  314. data/vendor/local/include/glib-2.0/glib/gmacros.h +277 -0
  315. data/vendor/local/include/glib-2.0/glib/gmain.h +304 -0
  316. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
  317. data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
  318. data/vendor/local/include/glib-2.0/glib/gmem.h +203 -0
  319. data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
  320. data/vendor/local/include/glib-2.0/glib/gnode.h +288 -0
  321. data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
  322. data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
  323. data/vendor/local/include/glib-2.0/glib/gpoll.h +93 -0
  324. data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
  325. data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
  326. data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
  327. data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
  328. data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
  329. data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
  330. data/vendor/local/include/glib-2.0/glib/gregex.h +243 -0
  331. data/vendor/local/include/glib-2.0/glib/grel.h +97 -0
  332. data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
  333. data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
  334. data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
  335. data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
  336. data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
  337. data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
  338. data/vendor/local/include/glib-2.0/glib/gstdio.h +159 -0
  339. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +267 -0
  340. data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
  341. data/vendor/local/include/glib-2.0/glib/gtestutils.h +292 -0
  342. data/vendor/local/include/glib-2.0/glib/gthread.h +408 -0
  343. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
  344. data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
  345. data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
  346. data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
  347. data/vendor/local/include/glib-2.0/glib/gunicode.h +404 -0
  348. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
  349. data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
  350. data/vendor/local/include/glib-2.0/glib/gvariant.h +224 -0
  351. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +305 -0
  352. data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
  353. data/vendor/local/include/glib-2.0/glib-object.h +41 -0
  354. data/vendor/local/include/glib-2.0/glib.h +97 -0
  355. data/vendor/local/include/glib-2.0/gmodule.h +101 -0
  356. data/vendor/local/include/glib-2.0/gobject/gboxed.h +236 -0
  357. data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
  358. data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
  359. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +169 -0
  360. data/vendor/local/include/glib-2.0/gobject/gobject.h +562 -0
  361. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +166 -0
  362. data/vendor/local/include/glib-2.0/gobject/gparam.h +410 -0
  363. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1083 -0
  364. data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
  365. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
  366. data/vendor/local/include/glib-2.0/gobject/gtype.h +1608 -0
  367. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
  368. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  369. data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
  370. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
  371. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +222 -0
  372. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +243 -0
  373. data/vendor/local/include/libintl.h +464 -0
  374. data/vendor/local/lib/GNU.Gettext.dll +0 -0
  375. data/vendor/local/lib/gio-2.0.def +800 -0
  376. data/vendor/local/lib/gio-2.0.lib +0 -0
  377. data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
  378. data/vendor/local/lib/glib-2.0.def +1381 -0
  379. data/vendor/local/lib/glib-2.0.lib +0 -0
  380. data/vendor/local/lib/gmodule-2.0.def +11 -0
  381. data/vendor/local/lib/gmodule-2.0.lib +0 -0
  382. data/vendor/local/lib/gobject-2.0.def +349 -0
  383. data/vendor/local/lib/gobject-2.0.lib +0 -0
  384. data/vendor/local/lib/gthread-2.0.def +3 -0
  385. data/vendor/local/lib/gthread-2.0.lib +0 -0
  386. data/vendor/local/lib/intl.lib +0 -0
  387. data/vendor/local/lib/libasprintf.dll.a +0 -0
  388. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  389. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  390. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  391. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  392. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  393. data/vendor/local/lib/libintl.def +31 -0
  394. data/vendor/local/lib/libintl.dll.a +0 -0
  395. data/vendor/local/lib/pkgconfig/gio-2.0.pc +14 -0
  396. data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
  397. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  398. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  399. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
  400. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  401. data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
  402. data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
  403. data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
  404. data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
  405. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  406. data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
  407. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
  408. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
  409. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  410. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  411. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  412. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  413. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  414. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  415. data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
  416. data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
  417. data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
  418. data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
  419. data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
  420. data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
  421. data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
  422. data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
  423. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  424. data/vendor/local/share/glib-2.0/gdb/glib.py +252 -0
  425. data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
  426. data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
  427. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +277 -0
  428. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1390 -0
  429. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +531 -0
  430. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
  431. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +568 -0
  432. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +295 -0
  433. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
  434. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
  435. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +388 -0
  436. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +993 -0
  437. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +544 -0
  438. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
  439. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
  440. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
  441. data/vendor/local/share/gtk-doc/html/gio/GFile.html +7450 -0
  442. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +115 -0
  443. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +520 -0
  444. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
  445. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
  446. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3116 -0
  447. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
  448. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
  449. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
  450. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
  451. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +182 -0
  452. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +183 -0
  453. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
  454. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
  455. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
  456. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
  457. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +195 -0
  458. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
  459. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
  460. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
  461. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
  462. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +362 -0
  463. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
  464. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
  465. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +263 -0
  466. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +248 -0
  467. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1006 -0
  468. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
  469. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
  470. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +979 -0
  471. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2152 -0
  472. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
  473. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +930 -0
  474. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +428 -0
  475. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +548 -0
  476. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +274 -0
  477. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +741 -0
  478. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
  479. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
  480. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
  481. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +381 -0
  482. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +280 -0
  483. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
  484. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
  485. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +306 -0
  486. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
  487. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
  488. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +709 -0
  489. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +180 -0
  490. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +128 -0
  491. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
  492. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
  493. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1088 -0
  494. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +206 -0
  495. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +97 -0
  496. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +4499 -0
  497. data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
  498. data/vendor/local/share/gtk-doc/html/gio/ch01.html +171 -0
  499. data/vendor/local/share/gtk-doc/html/gio/ch02.html +45 -0
  500. data/vendor/local/share/gtk-doc/html/gio/ch03.html +80 -0
  501. data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
  502. data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
  503. data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
  504. data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
  505. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  506. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +96 -0
  507. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  508. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  509. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  510. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  511. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
  512. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +465 -0
  513. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +381 -0
  514. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +163 -0
  515. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +163 -0
  516. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +927 -0
  517. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +328 -0
  518. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
  519. data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
  520. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +918 -0
  521. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +107 -0
  522. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1235 -0
  523. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +1384 -0
  524. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  525. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +47 -0
  526. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  527. data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
  528. data/vendor/local/share/gtk-doc/html/gio/index.html +318 -0
  529. data/vendor/local/share/gtk-doc/html/gio/index.sgml +1795 -0
  530. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/gio/migrating.html +42 -0
  532. data/vendor/local/share/gtk-doc/html/gio/networking.html +57 -0
  533. data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
  534. data/vendor/local/share/gtk-doc/html/gio/pt02.html +293 -0
  535. data/vendor/local/share/gtk-doc/html/gio/resolver.html +47 -0
  536. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  537. data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
  538. data/vendor/local/share/gtk-doc/html/gio/style.css +257 -0
  539. data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
  540. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  541. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  542. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  543. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
  544. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
  545. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +563 -0
  546. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
  547. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
  548. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
  549. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
  550. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
  551. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +419 -0
  552. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +389 -0
  553. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +413 -0
  554. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
  555. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +340 -0
  556. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +7835 -0
  557. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  558. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
  559. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
  560. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +413 -0
  561. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +430 -0
  562. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
  563. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
  564. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
  565. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2054 -0
  566. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
  567. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
  568. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
  569. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1187 -0
  570. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1665 -0
  571. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
  572. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
  573. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2042 -0
  574. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
  575. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
  576. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
  577. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1023 -0
  578. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1810 -0
  579. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +3798 -0
  580. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1815 -0
  581. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
  582. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
  583. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
  584. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
  585. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +629 -0
  586. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
  587. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2556 -0
  588. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
  589. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
  590. data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
  591. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1029 -0
  592. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
  593. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
  594. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
  595. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +703 -0
  596. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1045 -0
  597. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1523 -0
  598. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1466 -0
  599. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +204 -0
  600. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2648 -0
  601. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
  602. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
  603. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
  604. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +483 -0
  605. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
  606. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
  607. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1283 -0
  608. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1212 -0
  609. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
  610. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +466 -0
  611. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
  612. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2947 -0
  613. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1290 -0
  614. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1719 -0
  615. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3379 -0
  616. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
  617. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
  618. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
  619. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
  620. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
  621. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +314 -0
  622. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3356 -0
  623. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +150 -0
  624. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
  625. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
  626. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
  627. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
  628. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
  629. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
  630. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
  631. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
  632. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
  633. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
  634. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2395 -0
  635. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
  636. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +302 -0
  637. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +112 -0
  638. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2084 -0
  639. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2556 -0
  640. data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
  641. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
  642. data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
  643. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1171 -0
  644. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  645. data/vendor/local/share/gtk-doc/html/glib/index.html +336 -0
  646. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2717 -0
  647. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  648. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  649. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  650. data/vendor/local/share/gtk-doc/html/glib/style.css +257 -0
  651. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  652. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  653. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
  654. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
  655. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
  656. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
  657. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
  658. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
  659. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
  660. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
  661. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +72 -0
  662. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
  663. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
  664. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
  665. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
  666. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2577 -0
  667. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  668. data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
  669. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
  670. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  671. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  672. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  673. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +355 -0
  674. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +295 -0
  675. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  676. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +406 -0
  677. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2355 -0
  678. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
  679. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1423 -0
  680. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
  681. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
  682. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5242 -0
  683. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2609 -0
  684. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4227 -0
  685. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +413 -0
  686. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +230 -0
  687. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  688. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
  689. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
  690. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +723 -0
  691. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +757 -0
  692. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
  693. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
  694. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
  695. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  696. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  697. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
  698. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
  699. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
  700. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
  701. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
  702. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
  703. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
  704. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
  705. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
  706. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  707. data/vendor/local/share/gtk-doc/html/gobject/index.html +187 -0
  708. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +734 -0
  709. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  710. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  711. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  712. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
  713. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  714. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  715. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +82 -0
  716. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  717. data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
  718. data/vendor/local/share/gtk-doc/html/gobject/style.css +257 -0
  719. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  720. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  721. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  722. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
  723. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  724. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  725. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  726. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  727. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  728. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  729. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  730. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  731. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  732. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  733. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  734. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  735. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  736. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  737. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  738. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  739. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  740. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  741. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  742. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  743. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  744. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  745. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  746. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  747. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  748. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  749. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  750. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  751. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  752. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  753. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  754. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  755. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  756. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  757. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  758. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  759. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  760. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  761. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  762. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  763. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  764. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  765. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  766. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  767. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  768. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  769. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  770. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  771. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  772. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  773. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  774. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  775. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  776. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  777. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  778. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  779. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  780. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  781. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  782. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  783. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  784. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  785. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  786. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  787. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  788. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  789. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  790. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  791. data/vendor/local/share/locale/locale.alias +77 -0
  792. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  793. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  794. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  795. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  796. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  797. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  798. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  799. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  800. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  801. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  802. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  803. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  804. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  805. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  806. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  807. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  808. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  809. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  810. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  811. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  812. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  813. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  814. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  815. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  816. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  817. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  818. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  819. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  820. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  821. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  822. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  823. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  824. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  825. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  826. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  827. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  828. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  829. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  830. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  831. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  832. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  833. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  834. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  835. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  836. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  837. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  838. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  839. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  840. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  841. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  842. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  843. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  844. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  845. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  846. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  847. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  848. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  849. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  850. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  851. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  852. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  853. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  854. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  855. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  856. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  857. data/vendor/local/share/man/man1/gettext.1 +69 -0
  858. data/vendor/local/share/man/man1/glib-genmarshal.1 +307 -0
  859. data/vendor/local/share/man/man1/glib-mkenums.1 +234 -0
  860. data/vendor/local/share/man/man1/gobject-query.1 +83 -0
  861. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  862. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  863. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  864. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  865. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  866. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  867. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  868. data/vendor/local/share/man/man3/gettext.3 +99 -0
  869. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  870. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  871. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
  872. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
  873. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
  874. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
  875. metadata +940 -0
@@ -0,0 +1,2577 @@
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>Index</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
7
+ <link rel="home" href="index.html" title="GObject Reference Manual">
8
+ <link rel="up" href="index.html" title="GObject Reference Manual">
9
+ <link rel="prev" href="tools-gtkdoc.html" title="Writing API docs">
10
+ <link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">
11
+ <meta name="generator" content="GTK-Doc V1.14 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="tools-gtkdoc.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td> </td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GObject Reference Manual</th>
21
+ <td><a accesskey="n" href="api-index-deprecated.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a class="shortcut" href="#idxB">B</a>
25
+  | 
26
+ <a class="shortcut" href="#idxC">C</a>
27
+  | 
28
+ <a class="shortcut" href="#idxD">D</a>
29
+  | 
30
+ <a class="shortcut" href="#idxE">E</a>
31
+  | 
32
+ <a class="shortcut" href="#idxF">F</a>
33
+  | 
34
+ <a class="shortcut" href="#idxI">I</a>
35
+  | 
36
+ <a class="shortcut" href="#idxO">O</a>
37
+  | 
38
+ <a class="shortcut" href="#idxP">P</a>
39
+  | 
40
+ <a class="shortcut" href="#idxS">S</a>
41
+  | 
42
+ <a class="shortcut" href="#idxT">T</a>
43
+  | 
44
+ <a class="shortcut" href="#idxV">V</a>
45
+  | 
46
+ <a class="shortcut" href="#idxW">W</a>
47
+ </td></tr>
48
+ </table>
49
+ <div class="index" title="Index">
50
+ <div class="titlepage"><div><div><h2 class="title">
51
+ <a name="api-index-full"></a>Index</h2></div></div></div>
52
+ <a name="idx"></a><a name="idxB"></a><h3 class="title">B</h3>
53
+ <dt>
54
+ <a class="link" href="gobject-Type-Information.html#GBaseFinalizeFunc" title="GBaseFinalizeFunc ()">GBaseFinalizeFunc</a>, user_function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
55
+ </dt>
56
+ <dd></dd>
57
+ <dt>
58
+ <a class="link" href="gobject-Type-Information.html#GBaseInitFunc" title="GBaseInitFunc ()">GBaseInitFunc</a>, user_function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
59
+ </dt>
60
+ <dd></dd>
61
+ <dt>
62
+ <a class="link" href="gobject-Boxed-Types.html#GBoxedCopyFunc" title="GBoxedCopyFunc ()">GBoxedCopyFunc</a>, user_function in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
63
+ </dt>
64
+ <dd></dd>
65
+ <dt>
66
+ <a class="link" href="gobject-Boxed-Types.html#GBoxedFreeFunc" title="GBoxedFreeFunc ()">GBoxedFreeFunc</a>, user_function in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
67
+ </dt>
68
+ <dd></dd>
69
+ <dt>
70
+ <a class="link" href="gobject-Boxed-Types.html#g-boxed-copy" title="g_boxed_copy ()">g_boxed_copy</a>, function in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
71
+ </dt>
72
+ <dd></dd>
73
+ <dt>
74
+ <a class="link" href="gobject-Boxed-Types.html#g-boxed-free" title="g_boxed_free ()">g_boxed_free</a>, function in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
75
+ </dt>
76
+ <dd></dd>
77
+ <dt>
78
+ <a class="link" href="gobject-Boxed-Types.html#g-boxed-type-register-static" title="g_boxed_type_register_static ()">g_boxed_type_register_static</a>, function in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
79
+ </dt>
80
+ <dd></dd>
81
+ <a name="idxC"></a><h3 class="title">C</h3>
82
+ <dt>
83
+ <a class="link" href="gobject-Closures.html#G-CALLBACK:CAPS" title="G_CALLBACK()">G_CALLBACK</a>, macro in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
84
+ </dt>
85
+ <dd></dd>
86
+ <dt>
87
+ <a class="link" href="gobject-Closures.html#GCallback" title="GCallback ()">GCallback</a>, user_function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
88
+ </dt>
89
+ <dd></dd>
90
+ <dt>
91
+ <a class="link" href="gobject-Closures.html#GCClosure" title="GCClosure">GCClosure</a>, struct in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
92
+ </dt>
93
+ <dd></dd>
94
+ <dt>
95
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-BOOLEAN--FLAGS" title="g_cclosure_marshal_BOOLEAN__FLAGS ()">g_cclosure_marshal_BOOLEAN__FLAGS</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
96
+ </dt>
97
+ <dd></dd>
98
+ <dt>
99
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-BOOL--FLAGS" title="g_cclosure_marshal_BOOL__FLAGS">g_cclosure_marshal_BOOL__FLAGS</a>, macro in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
100
+ </dt>
101
+ <dd></dd>
102
+ <dt>
103
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-STRING--OBJECT-POINTER" title="g_cclosure_marshal_STRING__OBJECT_POINTER ()">g_cclosure_marshal_STRING__OBJECT_POINTER</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
104
+ </dt>
105
+ <dd></dd>
106
+ <dt>
107
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--BOOLEAN" title="g_cclosure_marshal_VOID__BOOLEAN ()">g_cclosure_marshal_VOID__BOOLEAN</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
108
+ </dt>
109
+ <dd></dd>
110
+ <dt>
111
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--BOXED" title="g_cclosure_marshal_VOID__BOXED ()">g_cclosure_marshal_VOID__BOXED</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
112
+ </dt>
113
+ <dd></dd>
114
+ <dt>
115
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--CHAR" title="g_cclosure_marshal_VOID__CHAR ()">g_cclosure_marshal_VOID__CHAR</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
116
+ </dt>
117
+ <dd></dd>
118
+ <dt>
119
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--DOUBLE" title="g_cclosure_marshal_VOID__DOUBLE ()">g_cclosure_marshal_VOID__DOUBLE</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
120
+ </dt>
121
+ <dd></dd>
122
+ <dt>
123
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--ENUM" title="g_cclosure_marshal_VOID__ENUM ()">g_cclosure_marshal_VOID__ENUM</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
124
+ </dt>
125
+ <dd></dd>
126
+ <dt>
127
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--FLAGS" title="g_cclosure_marshal_VOID__FLAGS ()">g_cclosure_marshal_VOID__FLAGS</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
128
+ </dt>
129
+ <dd></dd>
130
+ <dt>
131
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--FLOAT" title="g_cclosure_marshal_VOID__FLOAT ()">g_cclosure_marshal_VOID__FLOAT</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
132
+ </dt>
133
+ <dd></dd>
134
+ <dt>
135
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--INT" title="g_cclosure_marshal_VOID__INT ()">g_cclosure_marshal_VOID__INT</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
136
+ </dt>
137
+ <dd></dd>
138
+ <dt>
139
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--LONG" title="g_cclosure_marshal_VOID__LONG ()">g_cclosure_marshal_VOID__LONG</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
140
+ </dt>
141
+ <dd></dd>
142
+ <dt>
143
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--OBJECT" title="g_cclosure_marshal_VOID__OBJECT ()">g_cclosure_marshal_VOID__OBJECT</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
144
+ </dt>
145
+ <dd></dd>
146
+ <dt>
147
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--PARAM" title="g_cclosure_marshal_VOID__PARAM ()">g_cclosure_marshal_VOID__PARAM</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
148
+ </dt>
149
+ <dd></dd>
150
+ <dt>
151
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--POINTER" title="g_cclosure_marshal_VOID__POINTER ()">g_cclosure_marshal_VOID__POINTER</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
152
+ </dt>
153
+ <dd></dd>
154
+ <dt>
155
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--STRING" title="g_cclosure_marshal_VOID__STRING ()">g_cclosure_marshal_VOID__STRING</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
156
+ </dt>
157
+ <dd></dd>
158
+ <dt>
159
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--UCHAR" title="g_cclosure_marshal_VOID__UCHAR ()">g_cclosure_marshal_VOID__UCHAR</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
160
+ </dt>
161
+ <dd></dd>
162
+ <dt>
163
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--UINT" title="g_cclosure_marshal_VOID__UINT ()">g_cclosure_marshal_VOID__UINT</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
164
+ </dt>
165
+ <dd></dd>
166
+ <dt>
167
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--UINT-POINTER" title="g_cclosure_marshal_VOID__UINT_POINTER ()">g_cclosure_marshal_VOID__UINT_POINTER</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
168
+ </dt>
169
+ <dd></dd>
170
+ <dt>
171
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--ULONG" title="g_cclosure_marshal_VOID__ULONG ()">g_cclosure_marshal_VOID__ULONG</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
172
+ </dt>
173
+ <dd></dd>
174
+ <dt>
175
+ <a class="link" href="gobject-Closures.html#g-cclosure-marshal-VOID--VOID" title="g_cclosure_marshal_VOID__VOID ()">g_cclosure_marshal_VOID__VOID</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
176
+ </dt>
177
+ <dd></dd>
178
+ <dt>
179
+ <a class="link" href="gobject-Closures.html#g-cclosure-new" title="g_cclosure_new ()">g_cclosure_new</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
180
+ </dt>
181
+ <dd></dd>
182
+ <dt>
183
+ <a class="link" href="gobject-Closures.html#g-cclosure-new-object" title="g_cclosure_new_object ()">g_cclosure_new_object</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
184
+ </dt>
185
+ <dd></dd>
186
+ <dt>
187
+ <a class="link" href="gobject-Closures.html#g-cclosure-new-object-swap" title="g_cclosure_new_object_swap ()">g_cclosure_new_object_swap</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
188
+ </dt>
189
+ <dd></dd>
190
+ <dt>
191
+ <a class="link" href="gobject-Closures.html#g-cclosure-new-swap" title="g_cclosure_new_swap ()">g_cclosure_new_swap</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
192
+ </dt>
193
+ <dd></dd>
194
+ <dt>
195
+ <a class="link" href="gobject-Closures.html#G-CCLOSURE-SWAP-DATA:CAPS" title="G_CCLOSURE_SWAP_DATA()">G_CCLOSURE_SWAP_DATA</a>, macro in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
196
+ </dt>
197
+ <dd></dd>
198
+ <dt>
199
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#gchararray" title="gchararray">gchararray</a>, typedef in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
200
+ </dt>
201
+ <dd></dd>
202
+ <dt>
203
+ <a class="link" href="gobject-Type-Information.html#GClassFinalizeFunc" title="GClassFinalizeFunc ()">GClassFinalizeFunc</a>, user_function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
204
+ </dt>
205
+ <dd></dd>
206
+ <dt>
207
+ <a class="link" href="gobject-Type-Information.html#GClassInitFunc" title="GClassInitFunc ()">GClassInitFunc</a>, user_function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
208
+ </dt>
209
+ <dd></dd>
210
+ <dt>
211
+ <a class="link" href="gobject-Closures.html#GClosure" title="GClosure">GClosure</a>, struct in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
212
+ </dt>
213
+ <dd></dd>
214
+ <dt>
215
+ <a class="link" href="gobject-Closures.html#GClosureMarshal" title="GClosureMarshal ()">GClosureMarshal</a>, user_function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
216
+ </dt>
217
+ <dd></dd>
218
+ <dt>
219
+ <a class="link" href="gobject-Closures.html#GClosureNotify" title="GClosureNotify ()">GClosureNotify</a>, user_function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
220
+ </dt>
221
+ <dd></dd>
222
+ <dt>
223
+ <a class="link" href="gobject-Closures.html#g-closure-add-finalize-notifier" title="g_closure_add_finalize_notifier ()">g_closure_add_finalize_notifier</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
224
+ </dt>
225
+ <dd></dd>
226
+ <dt>
227
+ <a class="link" href="gobject-Closures.html#g-closure-add-invalidate-notifier" title="g_closure_add_invalidate_notifier ()">g_closure_add_invalidate_notifier</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
228
+ </dt>
229
+ <dd></dd>
230
+ <dt>
231
+ <a class="link" href="gobject-Closures.html#g-closure-add-marshal-guards" title="g_closure_add_marshal_guards ()">g_closure_add_marshal_guards</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
232
+ </dt>
233
+ <dd></dd>
234
+ <dt>
235
+ <a class="link" href="gobject-Closures.html#g-closure-invalidate" title="g_closure_invalidate ()">g_closure_invalidate</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
236
+ </dt>
237
+ <dd></dd>
238
+ <dt>
239
+ <a class="link" href="gobject-Closures.html#g-closure-invoke" title="g_closure_invoke ()">g_closure_invoke</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
240
+ </dt>
241
+ <dd></dd>
242
+ <dt>
243
+ <a class="link" href="gobject-Closures.html#G-CLOSURE-NEEDS-MARSHAL:CAPS" title="G_CLOSURE_NEEDS_MARSHAL()">G_CLOSURE_NEEDS_MARSHAL</a>, macro in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
244
+ </dt>
245
+ <dd></dd>
246
+ <dt>
247
+ <a class="link" href="gobject-Closures.html#g-closure-new-object" title="g_closure_new_object ()">g_closure_new_object</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
248
+ </dt>
249
+ <dd></dd>
250
+ <dt>
251
+ <a class="link" href="gobject-Closures.html#g-closure-new-simple" title="g_closure_new_simple ()">g_closure_new_simple</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
252
+ </dt>
253
+ <dd></dd>
254
+ <dt>
255
+ <a class="link" href="gobject-Closures.html#G-CLOSURE-N-NOTIFIERS:CAPS" title="G_CLOSURE_N_NOTIFIERS()">G_CLOSURE_N_NOTIFIERS</a>, macro in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
256
+ </dt>
257
+ <dd></dd>
258
+ <dt>
259
+ <a class="link" href="gobject-Closures.html#g-closure-ref" title="g_closure_ref ()">g_closure_ref</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
260
+ </dt>
261
+ <dd></dd>
262
+ <dt>
263
+ <a class="link" href="gobject-Closures.html#g-closure-remove-finalize-notifier" title="g_closure_remove_finalize_notifier ()">g_closure_remove_finalize_notifier</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
264
+ </dt>
265
+ <dd></dd>
266
+ <dt>
267
+ <a class="link" href="gobject-Closures.html#g-closure-remove-invalidate-notifier" title="g_closure_remove_invalidate_notifier ()">g_closure_remove_invalidate_notifier</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
268
+ </dt>
269
+ <dd></dd>
270
+ <dt>
271
+ <a class="link" href="gobject-Closures.html#g-closure-set-marshal" title="g_closure_set_marshal ()">g_closure_set_marshal</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
272
+ </dt>
273
+ <dd></dd>
274
+ <dt>
275
+ <a class="link" href="gobject-Closures.html#g-closure-set-meta-marshal" title="g_closure_set_meta_marshal ()">g_closure_set_meta_marshal</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
276
+ </dt>
277
+ <dd></dd>
278
+ <dt>
279
+ <a class="link" href="gobject-Closures.html#g-closure-sink" title="g_closure_sink ()">g_closure_sink</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
280
+ </dt>
281
+ <dd></dd>
282
+ <dt>
283
+ <a class="link" href="gobject-Closures.html#g-closure-unref" title="g_closure_unref ()">g_closure_unref</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
284
+ </dt>
285
+ <dd></dd>
286
+ <dt>
287
+ <a class="link" href="gobject-Signals.html#GConnectFlags" title="enum GConnectFlags">GConnectFlags</a>, enum in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
288
+ </dt>
289
+ <dd></dd>
290
+ <a name="idxD"></a><h3 class="title">D</h3>
291
+ <dt>
292
+ <a class="link" href="gobject-Type-Information.html#G-DEFINE-ABSTRACT-TYPE:CAPS" title="G_DEFINE_ABSTRACT_TYPE()">G_DEFINE_ABSTRACT_TYPE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
293
+ </dt>
294
+ <dd></dd>
295
+ <dt>
296
+ <a class="link" href="gobject-Type-Information.html#G-DEFINE-ABSTRACT-TYPE-WITH-CODE:CAPS" title="G_DEFINE_ABSTRACT_TYPE_WITH_CODE()">G_DEFINE_ABSTRACT_TYPE_WITH_CODE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
297
+ </dt>
298
+ <dd></dd>
299
+ <dt>
300
+ <a class="link" href="GTypeModule.html#G-DEFINE-DYNAMIC-TYPE:CAPS" title="G_DEFINE_DYNAMIC_TYPE()">G_DEFINE_DYNAMIC_TYPE</a>, macro in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
301
+ </dt>
302
+ <dd></dd>
303
+ <dt>
304
+ <a class="link" href="GTypeModule.html#G-DEFINE-DYNAMIC-TYPE-EXTENDED:CAPS" title="G_DEFINE_DYNAMIC_TYPE_EXTENDED()">G_DEFINE_DYNAMIC_TYPE_EXTENDED</a>, macro in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
305
+ </dt>
306
+ <dd></dd>
307
+ <dt>
308
+ <a class="link" href="gobject-Type-Information.html#G-DEFINE-INTERFACE:CAPS" title="G_DEFINE_INTERFACE()">G_DEFINE_INTERFACE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
309
+ </dt>
310
+ <dd></dd>
311
+ <dt>
312
+ <a class="link" href="gobject-Type-Information.html#G-DEFINE-INTERFACE-WITH-CODE:CAPS" title="G_DEFINE_INTERFACE_WITH_CODE()">G_DEFINE_INTERFACE_WITH_CODE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
313
+ </dt>
314
+ <dd></dd>
315
+ <dt>
316
+ <a class="link" href="gobject-Type-Information.html#G-DEFINE-TYPE:CAPS" title="G_DEFINE_TYPE()">G_DEFINE_TYPE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
317
+ </dt>
318
+ <dd></dd>
319
+ <dt>
320
+ <a class="link" href="gobject-Type-Information.html#G-DEFINE-TYPE-EXTENDED:CAPS" title="G_DEFINE_TYPE_EXTENDED()">G_DEFINE_TYPE_EXTENDED</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
321
+ </dt>
322
+ <dd></dd>
323
+ <dt>
324
+ <a class="link" href="gobject-Type-Information.html#G-DEFINE-TYPE-WITH-CODE:CAPS" title="G_DEFINE_TYPE_WITH_CODE()">G_DEFINE_TYPE_WITH_CODE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
325
+ </dt>
326
+ <dd></dd>
327
+ <a name="idxE"></a><h3 class="title">E</h3>
328
+ <dt>
329
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#GEnumClass" title="GEnumClass">GEnumClass</a>, struct in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
330
+ </dt>
331
+ <dd></dd>
332
+ <dt>
333
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#GEnumValue" title="GEnumValue">GEnumValue</a>, struct in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
334
+ </dt>
335
+ <dd></dd>
336
+ <dt>
337
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-ENUM-CLASS:CAPS" title="G_ENUM_CLASS()">G_ENUM_CLASS</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
338
+ </dt>
339
+ <dd></dd>
340
+ <dt>
341
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-ENUM-CLASS-TYPE:CAPS" title="G_ENUM_CLASS_TYPE()">G_ENUM_CLASS_TYPE</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
342
+ </dt>
343
+ <dd></dd>
344
+ <dt>
345
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-ENUM-CLASS-TYPE-NAME:CAPS" title="G_ENUM_CLASS_TYPE_NAME()">G_ENUM_CLASS_TYPE_NAME</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
346
+ </dt>
347
+ <dd></dd>
348
+ <dt>
349
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-enum-complete-type-info" title="g_enum_complete_type_info ()">g_enum_complete_type_info</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
350
+ </dt>
351
+ <dd></dd>
352
+ <dt>
353
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-enum-get-value" title="g_enum_get_value ()">g_enum_get_value</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
354
+ </dt>
355
+ <dd></dd>
356
+ <dt>
357
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-enum-get-value-by-name" title="g_enum_get_value_by_name ()">g_enum_get_value_by_name</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
358
+ </dt>
359
+ <dd></dd>
360
+ <dt>
361
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-enum-get-value-by-nick" title="g_enum_get_value_by_nick ()">g_enum_get_value_by_nick</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
362
+ </dt>
363
+ <dd></dd>
364
+ <dt>
365
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-enum-register-static" title="g_enum_register_static ()">g_enum_register_static</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
366
+ </dt>
367
+ <dd></dd>
368
+ <a name="idxF"></a><h3 class="title">F</h3>
369
+ <dt>
370
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#GFlagsClass" title="GFlagsClass">GFlagsClass</a>, struct in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
371
+ </dt>
372
+ <dd></dd>
373
+ <dt>
374
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#GFlagsValue" title="GFlagsValue">GFlagsValue</a>, struct in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
375
+ </dt>
376
+ <dd></dd>
377
+ <dt>
378
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-FLAGS-CLASS:CAPS" title="G_FLAGS_CLASS()">G_FLAGS_CLASS</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
379
+ </dt>
380
+ <dd></dd>
381
+ <dt>
382
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-FLAGS-CLASS-TYPE:CAPS" title="G_FLAGS_CLASS_TYPE()">G_FLAGS_CLASS_TYPE</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
383
+ </dt>
384
+ <dd></dd>
385
+ <dt>
386
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-FLAGS-CLASS-TYPE-NAME:CAPS" title="G_FLAGS_CLASS_TYPE_NAME()">G_FLAGS_CLASS_TYPE_NAME</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
387
+ </dt>
388
+ <dd></dd>
389
+ <dt>
390
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-flags-complete-type-info" title="g_flags_complete_type_info ()">g_flags_complete_type_info</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
391
+ </dt>
392
+ <dd></dd>
393
+ <dt>
394
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-flags-get-first-value" title="g_flags_get_first_value ()">g_flags_get_first_value</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
395
+ </dt>
396
+ <dd></dd>
397
+ <dt>
398
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-flags-get-value-by-name" title="g_flags_get_value_by_name ()">g_flags_get_value_by_name</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
399
+ </dt>
400
+ <dd></dd>
401
+ <dt>
402
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-flags-get-value-by-nick" title="g_flags_get_value_by_nick ()">g_flags_get_value_by_nick</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
403
+ </dt>
404
+ <dd></dd>
405
+ <dt>
406
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#g-flags-register-static" title="g_flags_register_static ()">g_flags_register_static</a>, function in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
407
+ </dt>
408
+ <dd></dd>
409
+ <a name="idxI"></a><h3 class="title">I</h3>
410
+ <dt>
411
+ <a class="link" href="gobject-Type-Information.html#G-IMPLEMENT-INTERFACE:CAPS" title="G_IMPLEMENT_INTERFACE()">G_IMPLEMENT_INTERFACE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
412
+ </dt>
413
+ <dd></dd>
414
+ <dt>
415
+ <a class="link" href="GTypeModule.html#G-IMPLEMENT-INTERFACE-DYNAMIC:CAPS" title="G_IMPLEMENT_INTERFACE_DYNAMIC()">G_IMPLEMENT_INTERFACE_DYNAMIC</a>, macro in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
416
+ </dt>
417
+ <dd></dd>
418
+ <dt>
419
+ <a class="link" href="gobject-The-Base-Object-Type.html#GInitiallyUnowned" title="GInitiallyUnowned">GInitiallyUnowned</a>, typedef in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
420
+ </dt>
421
+ <dd></dd>
422
+ <dt>
423
+ <a class="link" href="gobject-The-Base-Object-Type.html#GInitiallyUnownedClass" title="GInitiallyUnownedClass">GInitiallyUnownedClass</a>, typedef in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
424
+ </dt>
425
+ <dd></dd>
426
+ <dt>
427
+ <a class="link" href="gobject-Type-Information.html#GInstanceInitFunc" title="GInstanceInitFunc ()">GInstanceInitFunc</a>, user_function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
428
+ </dt>
429
+ <dd></dd>
430
+ <dt>
431
+ <a class="link" href="gobject-Type-Information.html#GInterfaceFinalizeFunc" title="GInterfaceFinalizeFunc ()">GInterfaceFinalizeFunc</a>, user_function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
432
+ </dt>
433
+ <dd></dd>
434
+ <dt>
435
+ <a class="link" href="gobject-Type-Information.html#GInterfaceInfo" title="GInterfaceInfo">GInterfaceInfo</a>, struct in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
436
+ </dt>
437
+ <dd></dd>
438
+ <dt>
439
+ <a class="link" href="gobject-Type-Information.html#GInterfaceInitFunc" title="GInterfaceInitFunc ()">GInterfaceInitFunc</a>, user_function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
440
+ </dt>
441
+ <dd></dd>
442
+ <dt>
443
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-IS-ENUM-CLASS:CAPS" title="G_IS_ENUM_CLASS()">G_IS_ENUM_CLASS</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
444
+ </dt>
445
+ <dd></dd>
446
+ <dt>
447
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-IS-FLAGS-CLASS:CAPS" title="G_IS_FLAGS_CLASS()">G_IS_FLAGS_CLASS</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
448
+ </dt>
449
+ <dd></dd>
450
+ <dt>
451
+ <a class="link" href="gobject-The-Base-Object-Type.html#G-IS-OBJECT:CAPS" title="G_IS_OBJECT()">G_IS_OBJECT</a>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
452
+ </dt>
453
+ <dd></dd>
454
+ <dt>
455
+ <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>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
456
+ </dt>
457
+ <dd></dd>
458
+ <dt>
459
+ <a class="link" href="gobject-GParamSpec.html#G-IS-PARAM-SPEC:CAPS" title="G_IS_PARAM_SPEC()">G_IS_PARAM_SPEC</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
460
+ </dt>
461
+ <dd></dd>
462
+ <dt>
463
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-BOOLEAN:CAPS" title="G_IS_PARAM_SPEC_BOOLEAN()">G_IS_PARAM_SPEC_BOOLEAN</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
464
+ </dt>
465
+ <dd></dd>
466
+ <dt>
467
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-BOXED:CAPS" title="G_IS_PARAM_SPEC_BOXED()">G_IS_PARAM_SPEC_BOXED</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
468
+ </dt>
469
+ <dd></dd>
470
+ <dt>
471
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-CHAR:CAPS" title="G_IS_PARAM_SPEC_CHAR()">G_IS_PARAM_SPEC_CHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
472
+ </dt>
473
+ <dd></dd>
474
+ <dt>
475
+ <a class="link" href="gobject-GParamSpec.html#G-IS-PARAM-SPEC-CLASS:CAPS" title="G_IS_PARAM_SPEC_CLASS()">G_IS_PARAM_SPEC_CLASS</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
476
+ </dt>
477
+ <dd></dd>
478
+ <dt>
479
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-DOUBLE:CAPS" title="G_IS_PARAM_SPEC_DOUBLE()">G_IS_PARAM_SPEC_DOUBLE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
480
+ </dt>
481
+ <dd></dd>
482
+ <dt>
483
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-ENUM:CAPS" title="G_IS_PARAM_SPEC_ENUM()">G_IS_PARAM_SPEC_ENUM</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
484
+ </dt>
485
+ <dd></dd>
486
+ <dt>
487
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-FLAGS:CAPS" title="G_IS_PARAM_SPEC_FLAGS()">G_IS_PARAM_SPEC_FLAGS</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
488
+ </dt>
489
+ <dd></dd>
490
+ <dt>
491
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-FLOAT:CAPS" title="G_IS_PARAM_SPEC_FLOAT()">G_IS_PARAM_SPEC_FLOAT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
492
+ </dt>
493
+ <dd></dd>
494
+ <dt>
495
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-GTYPE:CAPS" title="G_IS_PARAM_SPEC_GTYPE()">G_IS_PARAM_SPEC_GTYPE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
496
+ </dt>
497
+ <dd></dd>
498
+ <dt>
499
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-INT:CAPS" title="G_IS_PARAM_SPEC_INT()">G_IS_PARAM_SPEC_INT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
500
+ </dt>
501
+ <dd></dd>
502
+ <dt>
503
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-INT64:CAPS" title="G_IS_PARAM_SPEC_INT64()">G_IS_PARAM_SPEC_INT64</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
504
+ </dt>
505
+ <dd></dd>
506
+ <dt>
507
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-LONG:CAPS" title="G_IS_PARAM_SPEC_LONG()">G_IS_PARAM_SPEC_LONG</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
508
+ </dt>
509
+ <dd></dd>
510
+ <dt>
511
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-OBJECT:CAPS" title="G_IS_PARAM_SPEC_OBJECT()">G_IS_PARAM_SPEC_OBJECT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
512
+ </dt>
513
+ <dd></dd>
514
+ <dt>
515
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-OVERRIDE:CAPS" title="G_IS_PARAM_SPEC_OVERRIDE()">G_IS_PARAM_SPEC_OVERRIDE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
516
+ </dt>
517
+ <dd></dd>
518
+ <dt>
519
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-PARAM:CAPS" title="G_IS_PARAM_SPEC_PARAM()">G_IS_PARAM_SPEC_PARAM</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
520
+ </dt>
521
+ <dd></dd>
522
+ <dt>
523
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-POINTER:CAPS" title="G_IS_PARAM_SPEC_POINTER()">G_IS_PARAM_SPEC_POINTER</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
524
+ </dt>
525
+ <dd></dd>
526
+ <dt>
527
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-STRING:CAPS" title="G_IS_PARAM_SPEC_STRING()">G_IS_PARAM_SPEC_STRING</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
528
+ </dt>
529
+ <dd></dd>
530
+ <dt>
531
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-UCHAR:CAPS" title="G_IS_PARAM_SPEC_UCHAR()">G_IS_PARAM_SPEC_UCHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
532
+ </dt>
533
+ <dd></dd>
534
+ <dt>
535
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-UINT:CAPS" title="G_IS_PARAM_SPEC_UINT()">G_IS_PARAM_SPEC_UINT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
536
+ </dt>
537
+ <dd></dd>
538
+ <dt>
539
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-UINT64:CAPS" title="G_IS_PARAM_SPEC_UINT64()">G_IS_PARAM_SPEC_UINT64</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
540
+ </dt>
541
+ <dd></dd>
542
+ <dt>
543
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-ULONG:CAPS" title="G_IS_PARAM_SPEC_ULONG()">G_IS_PARAM_SPEC_ULONG</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
544
+ </dt>
545
+ <dd></dd>
546
+ <dt>
547
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-UNICHAR:CAPS" title="G_IS_PARAM_SPEC_UNICHAR()">G_IS_PARAM_SPEC_UNICHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
548
+ </dt>
549
+ <dd></dd>
550
+ <dt>
551
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-IS-PARAM-SPEC-VALUE-ARRAY:CAPS" title="G_IS_PARAM_SPEC_VALUE_ARRAY()">G_IS_PARAM_SPEC_VALUE_ARRAY</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
552
+ </dt>
553
+ <dd></dd>
554
+ <dt>
555
+ <a class="link" href="gobject-Generic-values.html#G-IS-VALUE:CAPS" title="G_IS_VALUE()">G_IS_VALUE</a>, macro in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
556
+ </dt>
557
+ <dd></dd>
558
+ <a name="idxO"></a><h3 class="title">O</h3>
559
+ <dt>
560
+ <a class="link" href="gobject-The-Base-Object-Type.html#GObject-struct" title="GObject">GObject</a>, struct in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
561
+ </dt>
562
+ <dd></dd>
563
+ <dt>
564
+ <a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT:CAPS" title="G_OBJECT()">G_OBJECT</a>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
565
+ </dt>
566
+ <dd></dd>
567
+ <dt>
568
+ <a class="link" href="gobject-The-Base-Object-Type.html#GObject-notify" title='The "notify" signal'>GObject::notify</a>, object signal in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
569
+ </dt>
570
+ <dd></dd>
571
+ <dt>
572
+ <a class="link" href="gobject-The-Base-Object-Type.html#GObjectClass" title="GObjectClass">GObjectClass</a>, struct in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
573
+ </dt>
574
+ <dd></dd>
575
+ <dt>
576
+ <a class="link" href="gobject-The-Base-Object-Type.html#GObjectConstructParam" title="GObjectConstructParam">GObjectConstructParam</a>, struct in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
577
+ </dt>
578
+ <dd></dd>
579
+ <dt>
580
+ <a class="link" href="gobject-The-Base-Object-Type.html#GObjectFinalizeFunc" title="GObjectFinalizeFunc ()">GObjectFinalizeFunc</a>, user_function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
581
+ </dt>
582
+ <dd></dd>
583
+ <dt>
584
+ <a class="link" href="gobject-The-Base-Object-Type.html#GObjectGetPropertyFunc" title="GObjectGetPropertyFunc ()">GObjectGetPropertyFunc</a>, user_function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
585
+ </dt>
586
+ <dd></dd>
587
+ <dt>
588
+ <a class="link" href="gobject-The-Base-Object-Type.html#GObjectSetPropertyFunc" title="GObjectSetPropertyFunc ()">GObjectSetPropertyFunc</a>, user_function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
589
+ </dt>
590
+ <dd></dd>
591
+ <dt>
592
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
593
+ </dt>
594
+ <dd></dd>
595
+ <dt>
596
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
597
+ </dt>
598
+ <dd></dd>
599
+ <dt>
600
+ <a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT-CLASS:CAPS" title="G_OBJECT_CLASS()">G_OBJECT_CLASS</a>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
601
+ </dt>
602
+ <dd></dd>
603
+ <dt>
604
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
605
+ </dt>
606
+ <dd></dd>
607
+ <dt>
608
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
609
+ </dt>
610
+ <dd></dd>
611
+ <dt>
612
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
613
+ </dt>
614
+ <dd></dd>
615
+ <dt>
616
+ <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>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
617
+ </dt>
618
+ <dd></dd>
619
+ <dt>
620
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
621
+ </dt>
622
+ <dd></dd>
623
+ <dt>
624
+ <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>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
625
+ </dt>
626
+ <dd></dd>
627
+ <dt>
628
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-connect" title="g_object_connect ()">g_object_connect</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
629
+ </dt>
630
+ <dd></dd>
631
+ <dt>
632
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-disconnect" title="g_object_disconnect ()">g_object_disconnect</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
633
+ </dt>
634
+ <dd></dd>
635
+ <dt>
636
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-force-floating" title="g_object_force_floating ()">g_object_force_floating</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
637
+ </dt>
638
+ <dd></dd>
639
+ <dt>
640
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-freeze-notify" title="g_object_freeze_notify ()">g_object_freeze_notify</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
641
+ </dt>
642
+ <dd></dd>
643
+ <dt>
644
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get" title="g_object_get ()">g_object_get</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
645
+ </dt>
646
+ <dd></dd>
647
+ <dt>
648
+ <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>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
649
+ </dt>
650
+ <dd></dd>
651
+ <dt>
652
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-data" title="g_object_get_data ()">g_object_get_data</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
653
+ </dt>
654
+ <dd></dd>
655
+ <dt>
656
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-property" title="g_object_get_property ()">g_object_get_property</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
657
+ </dt>
658
+ <dd></dd>
659
+ <dt>
660
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-qdata" title="g_object_get_qdata ()">g_object_get_qdata</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
661
+ </dt>
662
+ <dd></dd>
663
+ <dt>
664
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-get-valist" title="g_object_get_valist ()">g_object_get_valist</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
665
+ </dt>
666
+ <dd></dd>
667
+ <dt>
668
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
669
+ </dt>
670
+ <dd></dd>
671
+ <dt>
672
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
673
+ </dt>
674
+ <dd></dd>
675
+ <dt>
676
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
677
+ </dt>
678
+ <dd></dd>
679
+ <dt>
680
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-is-floating" title="g_object_is_floating ()">g_object_is_floating</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
681
+ </dt>
682
+ <dd></dd>
683
+ <dt>
684
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-new" title="g_object_new ()">g_object_new</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
685
+ </dt>
686
+ <dd></dd>
687
+ <dt>
688
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-newv" title="g_object_newv ()">g_object_newv</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
689
+ </dt>
690
+ <dd></dd>
691
+ <dt>
692
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-new-valist" title="g_object_new_valist ()">g_object_new_valist</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
693
+ </dt>
694
+ <dd></dd>
695
+ <dt>
696
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-notify" title="g_object_notify ()">g_object_notify</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
697
+ </dt>
698
+ <dd></dd>
699
+ <dt>
700
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref" title="g_object_ref ()">g_object_ref</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
701
+ </dt>
702
+ <dd></dd>
703
+ <dt>
704
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-ref-sink" title="g_object_ref_sink ()">g_object_ref_sink</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
705
+ </dt>
706
+ <dd></dd>
707
+ <dt>
708
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
709
+ </dt>
710
+ <dd></dd>
711
+ <dt>
712
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
713
+ </dt>
714
+ <dd></dd>
715
+ <dt>
716
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-run-dispose" title="g_object_run_dispose ()">g_object_run_dispose</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
717
+ </dt>
718
+ <dd></dd>
719
+ <dt>
720
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-set" title="g_object_set ()">g_object_set</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
721
+ </dt>
722
+ <dd></dd>
723
+ <dt>
724
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-data" title="g_object_set_data ()">g_object_set_data</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
725
+ </dt>
726
+ <dd></dd>
727
+ <dt>
728
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
729
+ </dt>
730
+ <dd></dd>
731
+ <dt>
732
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-property" title="g_object_set_property ()">g_object_set_property</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
733
+ </dt>
734
+ <dd></dd>
735
+ <dt>
736
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-qdata" title="g_object_set_qdata ()">g_object_set_qdata</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
737
+ </dt>
738
+ <dd></dd>
739
+ <dt>
740
+ <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>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
741
+ </dt>
742
+ <dd></dd>
743
+ <dt>
744
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-set-valist" title="g_object_set_valist ()">g_object_set_valist</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
745
+ </dt>
746
+ <dd></dd>
747
+ <dt>
748
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-steal-data" title="g_object_steal_data ()">g_object_steal_data</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
749
+ </dt>
750
+ <dd></dd>
751
+ <dt>
752
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-steal-qdata" title="g_object_steal_qdata ()">g_object_steal_qdata</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
753
+ </dt>
754
+ <dd></dd>
755
+ <dt>
756
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-thaw-notify" title="g_object_thaw_notify ()">g_object_thaw_notify</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
757
+ </dt>
758
+ <dd></dd>
759
+ <dt>
760
+ <a class="link" href="gobject-The-Base-Object-Type.html#G-OBJECT-TYPE:CAPS" title="G_OBJECT_TYPE()">G_OBJECT_TYPE</a>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
761
+ </dt>
762
+ <dd></dd>
763
+ <dt>
764
+ <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>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
765
+ </dt>
766
+ <dd></dd>
767
+ <dt>
768
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-unref" title="g_object_unref ()">g_object_unref</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
769
+ </dt>
770
+ <dd></dd>
771
+ <dt>
772
+ <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>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
773
+ </dt>
774
+ <dd></dd>
775
+ <dt>
776
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-watch-closure" title="g_object_watch_closure ()">g_object_watch_closure</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
777
+ </dt>
778
+ <dd></dd>
779
+ <dt>
780
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-weak-ref" title="g_object_weak_ref ()">g_object_weak_ref</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
781
+ </dt>
782
+ <dd></dd>
783
+ <dt>
784
+ <a class="link" href="gobject-The-Base-Object-Type.html#g-object-weak-unref" title="g_object_weak_unref ()">g_object_weak_unref</a>, function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
785
+ </dt>
786
+ <dd></dd>
787
+ <a name="idxP"></a><h3 class="title">P</h3>
788
+ <dt>
789
+ <a class="link" href="gobject-The-Base-Object-Type.html#GParameter" title="GParameter">GParameter</a>, struct in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
790
+ </dt>
791
+ <dd></dd>
792
+ <dt>
793
+ <a class="link" href="gobject-GParamSpec.html#GParamFlags" title="enum GParamFlags">GParamFlags</a>, enum in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
794
+ </dt>
795
+ <dd></dd>
796
+ <dt>
797
+ <a class="link" href="gobject-GParamSpec.html#GParamSpec" title="GParamSpec">GParamSpec</a>, struct in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
798
+ </dt>
799
+ <dd></dd>
800
+ <dt>
801
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecBoolean" title="GParamSpecBoolean">GParamSpecBoolean</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
802
+ </dt>
803
+ <dd></dd>
804
+ <dt>
805
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecBoxed" title="GParamSpecBoxed">GParamSpecBoxed</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
806
+ </dt>
807
+ <dd></dd>
808
+ <dt>
809
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecChar" title="GParamSpecChar">GParamSpecChar</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
810
+ </dt>
811
+ <dd></dd>
812
+ <dt>
813
+ <a class="link" href="gobject-GParamSpec.html#GParamSpecClass" title="GParamSpecClass">GParamSpecClass</a>, struct in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
814
+ </dt>
815
+ <dd></dd>
816
+ <dt>
817
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecDouble" title="GParamSpecDouble">GParamSpecDouble</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
818
+ </dt>
819
+ <dd></dd>
820
+ <dt>
821
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecEnum" title="GParamSpecEnum">GParamSpecEnum</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
822
+ </dt>
823
+ <dd></dd>
824
+ <dt>
825
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecFlags" title="GParamSpecFlags">GParamSpecFlags</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
826
+ </dt>
827
+ <dd></dd>
828
+ <dt>
829
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecFloat" title="GParamSpecFloat">GParamSpecFloat</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
830
+ </dt>
831
+ <dd></dd>
832
+ <dt>
833
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecGType" title="GParamSpecGType">GParamSpecGType</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
834
+ </dt>
835
+ <dd></dd>
836
+ <dt>
837
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecInt" title="GParamSpecInt">GParamSpecInt</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
838
+ </dt>
839
+ <dd></dd>
840
+ <dt>
841
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecInt64" title="GParamSpecInt64">GParamSpecInt64</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
842
+ </dt>
843
+ <dd></dd>
844
+ <dt>
845
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecLong" title="GParamSpecLong">GParamSpecLong</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
846
+ </dt>
847
+ <dd></dd>
848
+ <dt>
849
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecObject" title="GParamSpecObject">GParamSpecObject</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
850
+ </dt>
851
+ <dd></dd>
852
+ <dt>
853
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecOverride" title="GParamSpecOverride">GParamSpecOverride</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
854
+ </dt>
855
+ <dd></dd>
856
+ <dt>
857
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecParam" title="GParamSpecParam">GParamSpecParam</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
858
+ </dt>
859
+ <dd></dd>
860
+ <dt>
861
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecPointer" title="GParamSpecPointer">GParamSpecPointer</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
862
+ </dt>
863
+ <dd></dd>
864
+ <dt>
865
+ <a class="link" href="gobject-GParamSpec.html#GParamSpecPool" title="GParamSpecPool">GParamSpecPool</a>, struct in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
866
+ </dt>
867
+ <dd></dd>
868
+ <dt>
869
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecString" title="GParamSpecString">GParamSpecString</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
870
+ </dt>
871
+ <dd></dd>
872
+ <dt>
873
+ <a class="link" href="gobject-GParamSpec.html#GParamSpecTypeInfo" title="GParamSpecTypeInfo">GParamSpecTypeInfo</a>, struct in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
874
+ </dt>
875
+ <dd></dd>
876
+ <dt>
877
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecUChar" title="GParamSpecUChar">GParamSpecUChar</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
878
+ </dt>
879
+ <dd></dd>
880
+ <dt>
881
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecUInt" title="GParamSpecUInt">GParamSpecUInt</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
882
+ </dt>
883
+ <dd></dd>
884
+ <dt>
885
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecUInt64" title="GParamSpecUInt64">GParamSpecUInt64</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
886
+ </dt>
887
+ <dd></dd>
888
+ <dt>
889
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecULong" title="GParamSpecULong">GParamSpecULong</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
890
+ </dt>
891
+ <dd></dd>
892
+ <dt>
893
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecUnichar" title="GParamSpecUnichar">GParamSpecUnichar</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
894
+ </dt>
895
+ <dd></dd>
896
+ <dt>
897
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#GParamSpecValueArray" title="GParamSpecValueArray">GParamSpecValueArray</a>, struct in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
898
+ </dt>
899
+ <dd></dd>
900
+ <dt>
901
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-MASK:CAPS" title="G_PARAM_MASK">G_PARAM_MASK</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
902
+ </dt>
903
+ <dd></dd>
904
+ <dt>
905
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-READWRITE:CAPS" title="G_PARAM_READWRITE">G_PARAM_READWRITE</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
906
+ </dt>
907
+ <dd></dd>
908
+ <dt>
909
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-SPEC:CAPS" title="G_PARAM_SPEC()">G_PARAM_SPEC</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
910
+ </dt>
911
+ <dd></dd>
912
+ <dt>
913
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-BOOLEAN:CAPS" title="G_PARAM_SPEC_BOOLEAN()">G_PARAM_SPEC_BOOLEAN</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
914
+ </dt>
915
+ <dd></dd>
916
+ <dt>
917
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-boolean" title="g_param_spec_boolean ()">g_param_spec_boolean</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
918
+ </dt>
919
+ <dd></dd>
920
+ <dt>
921
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-BOXED:CAPS" title="G_PARAM_SPEC_BOXED()">G_PARAM_SPEC_BOXED</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
922
+ </dt>
923
+ <dd></dd>
924
+ <dt>
925
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-boxed" title="g_param_spec_boxed ()">g_param_spec_boxed</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
926
+ </dt>
927
+ <dd></dd>
928
+ <dt>
929
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-char" title="g_param_spec_char ()">g_param_spec_char</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
930
+ </dt>
931
+ <dd></dd>
932
+ <dt>
933
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-CHAR:CAPS" title="G_PARAM_SPEC_CHAR()">G_PARAM_SPEC_CHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
934
+ </dt>
935
+ <dd></dd>
936
+ <dt>
937
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-SPEC-CLASS:CAPS" title="G_PARAM_SPEC_CLASS()">G_PARAM_SPEC_CLASS</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
938
+ </dt>
939
+ <dd></dd>
940
+ <dt>
941
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-DOUBLE:CAPS" title="G_PARAM_SPEC_DOUBLE()">G_PARAM_SPEC_DOUBLE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
942
+ </dt>
943
+ <dd></dd>
944
+ <dt>
945
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-double" title="g_param_spec_double ()">g_param_spec_double</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
946
+ </dt>
947
+ <dd></dd>
948
+ <dt>
949
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-ENUM:CAPS" title="G_PARAM_SPEC_ENUM()">G_PARAM_SPEC_ENUM</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
950
+ </dt>
951
+ <dd></dd>
952
+ <dt>
953
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-enum" title="g_param_spec_enum ()">g_param_spec_enum</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
954
+ </dt>
955
+ <dd></dd>
956
+ <dt>
957
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-FLAGS:CAPS" title="G_PARAM_SPEC_FLAGS()">G_PARAM_SPEC_FLAGS</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
958
+ </dt>
959
+ <dd></dd>
960
+ <dt>
961
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-flags" title="g_param_spec_flags ()">g_param_spec_flags</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
962
+ </dt>
963
+ <dd></dd>
964
+ <dt>
965
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-FLOAT:CAPS" title="G_PARAM_SPEC_FLOAT()">G_PARAM_SPEC_FLOAT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
966
+ </dt>
967
+ <dd></dd>
968
+ <dt>
969
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-float" title="g_param_spec_float ()">g_param_spec_float</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
970
+ </dt>
971
+ <dd></dd>
972
+ <dt>
973
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-get-blurb" title="g_param_spec_get_blurb ()">g_param_spec_get_blurb</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
974
+ </dt>
975
+ <dd></dd>
976
+ <dt>
977
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-SPEC-GET-CLASS:CAPS" title="G_PARAM_SPEC_GET_CLASS()">G_PARAM_SPEC_GET_CLASS</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
978
+ </dt>
979
+ <dd></dd>
980
+ <dt>
981
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-get-name" title="g_param_spec_get_name ()">g_param_spec_get_name</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
982
+ </dt>
983
+ <dd></dd>
984
+ <dt>
985
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-get-nick" title="g_param_spec_get_nick ()">g_param_spec_get_nick</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
986
+ </dt>
987
+ <dd></dd>
988
+ <dt>
989
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-get-qdata" title="g_param_spec_get_qdata ()">g_param_spec_get_qdata</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
990
+ </dt>
991
+ <dd></dd>
992
+ <dt>
993
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-get-redirect-target" title="g_param_spec_get_redirect_target ()">g_param_spec_get_redirect_target</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
994
+ </dt>
995
+ <dd></dd>
996
+ <dt>
997
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-gtype" title="g_param_spec_gtype ()">g_param_spec_gtype</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
998
+ </dt>
999
+ <dd></dd>
1000
+ <dt>
1001
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-GTYPE:CAPS" title="G_PARAM_SPEC_GTYPE()">G_PARAM_SPEC_GTYPE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1002
+ </dt>
1003
+ <dd></dd>
1004
+ <dt>
1005
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-int" title="g_param_spec_int ()">g_param_spec_int</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1006
+ </dt>
1007
+ <dd></dd>
1008
+ <dt>
1009
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-INT:CAPS" title="G_PARAM_SPEC_INT()">G_PARAM_SPEC_INT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1010
+ </dt>
1011
+ <dd></dd>
1012
+ <dt>
1013
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-int64" title="g_param_spec_int64 ()">g_param_spec_int64</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1014
+ </dt>
1015
+ <dd></dd>
1016
+ <dt>
1017
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-INT64:CAPS" title="G_PARAM_SPEC_INT64()">G_PARAM_SPEC_INT64</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1018
+ </dt>
1019
+ <dd></dd>
1020
+ <dt>
1021
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-internal" title="g_param_spec_internal ()">g_param_spec_internal</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1022
+ </dt>
1023
+ <dd></dd>
1024
+ <dt>
1025
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-LONG:CAPS" title="G_PARAM_SPEC_LONG()">G_PARAM_SPEC_LONG</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1026
+ </dt>
1027
+ <dd></dd>
1028
+ <dt>
1029
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-long" title="g_param_spec_long ()">g_param_spec_long</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1030
+ </dt>
1031
+ <dd></dd>
1032
+ <dt>
1033
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-OBJECT:CAPS" title="G_PARAM_SPEC_OBJECT()">G_PARAM_SPEC_OBJECT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1034
+ </dt>
1035
+ <dd></dd>
1036
+ <dt>
1037
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-object" title="g_param_spec_object ()">g_param_spec_object</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1038
+ </dt>
1039
+ <dd></dd>
1040
+ <dt>
1041
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-override" title="g_param_spec_override ()">g_param_spec_override</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1042
+ </dt>
1043
+ <dd></dd>
1044
+ <dt>
1045
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-OVERRIDE:CAPS" title="G_PARAM_SPEC_OVERRIDE()">G_PARAM_SPEC_OVERRIDE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1046
+ </dt>
1047
+ <dd></dd>
1048
+ <dt>
1049
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-PARAM:CAPS" title="G_PARAM_SPEC_PARAM()">G_PARAM_SPEC_PARAM</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1050
+ </dt>
1051
+ <dd></dd>
1052
+ <dt>
1053
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-param" title="g_param_spec_param ()">g_param_spec_param</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1054
+ </dt>
1055
+ <dd></dd>
1056
+ <dt>
1057
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-pointer" title="g_param_spec_pointer ()">g_param_spec_pointer</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1058
+ </dt>
1059
+ <dd></dd>
1060
+ <dt>
1061
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-POINTER:CAPS" title="G_PARAM_SPEC_POINTER()">G_PARAM_SPEC_POINTER</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1062
+ </dt>
1063
+ <dd></dd>
1064
+ <dt>
1065
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-pool-insert" title="g_param_spec_pool_insert ()">g_param_spec_pool_insert</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1066
+ </dt>
1067
+ <dd></dd>
1068
+ <dt>
1069
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-pool-list" title="g_param_spec_pool_list ()">g_param_spec_pool_list</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1070
+ </dt>
1071
+ <dd></dd>
1072
+ <dt>
1073
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-pool-list-owned" title="g_param_spec_pool_list_owned ()">g_param_spec_pool_list_owned</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1074
+ </dt>
1075
+ <dd></dd>
1076
+ <dt>
1077
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-pool-lookup" title="g_param_spec_pool_lookup ()">g_param_spec_pool_lookup</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1078
+ </dt>
1079
+ <dd></dd>
1080
+ <dt>
1081
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-pool-new" title="g_param_spec_pool_new ()">g_param_spec_pool_new</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1082
+ </dt>
1083
+ <dd></dd>
1084
+ <dt>
1085
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-pool-remove" title="g_param_spec_pool_remove ()">g_param_spec_pool_remove</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1086
+ </dt>
1087
+ <dd></dd>
1088
+ <dt>
1089
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-ref" title="g_param_spec_ref ()">g_param_spec_ref</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1090
+ </dt>
1091
+ <dd></dd>
1092
+ <dt>
1093
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-ref-sink" title="g_param_spec_ref_sink ()">g_param_spec_ref_sink</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1094
+ </dt>
1095
+ <dd></dd>
1096
+ <dt>
1097
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-set-qdata" title="g_param_spec_set_qdata ()">g_param_spec_set_qdata</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1098
+ </dt>
1099
+ <dd></dd>
1100
+ <dt>
1101
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-set-qdata-full" title="g_param_spec_set_qdata_full ()">g_param_spec_set_qdata_full</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1102
+ </dt>
1103
+ <dd></dd>
1104
+ <dt>
1105
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-sink" title="g_param_spec_sink ()">g_param_spec_sink</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1106
+ </dt>
1107
+ <dd></dd>
1108
+ <dt>
1109
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-steal-qdata" title="g_param_spec_steal_qdata ()">g_param_spec_steal_qdata</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1110
+ </dt>
1111
+ <dd></dd>
1112
+ <dt>
1113
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-string" title="g_param_spec_string ()">g_param_spec_string</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1114
+ </dt>
1115
+ <dd></dd>
1116
+ <dt>
1117
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-STRING:CAPS" title="G_PARAM_SPEC_STRING()">G_PARAM_SPEC_STRING</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1118
+ </dt>
1119
+ <dd></dd>
1120
+ <dt>
1121
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-SPEC-TYPE:CAPS" title="G_PARAM_SPEC_TYPE()">G_PARAM_SPEC_TYPE</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1122
+ </dt>
1123
+ <dd></dd>
1124
+ <dt>
1125
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-SPEC-TYPE-NAME:CAPS" title="G_PARAM_SPEC_TYPE_NAME()">G_PARAM_SPEC_TYPE_NAME</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1126
+ </dt>
1127
+ <dd></dd>
1128
+ <dt>
1129
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-uchar" title="g_param_spec_uchar ()">g_param_spec_uchar</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1130
+ </dt>
1131
+ <dd></dd>
1132
+ <dt>
1133
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-UCHAR:CAPS" title="G_PARAM_SPEC_UCHAR()">G_PARAM_SPEC_UCHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1134
+ </dt>
1135
+ <dd></dd>
1136
+ <dt>
1137
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-uint" title="g_param_spec_uint ()">g_param_spec_uint</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1138
+ </dt>
1139
+ <dd></dd>
1140
+ <dt>
1141
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-UINT:CAPS" title="G_PARAM_SPEC_UINT()">G_PARAM_SPEC_UINT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1142
+ </dt>
1143
+ <dd></dd>
1144
+ <dt>
1145
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-uint64" title="g_param_spec_uint64 ()">g_param_spec_uint64</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1146
+ </dt>
1147
+ <dd></dd>
1148
+ <dt>
1149
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-UINT64:CAPS" title="G_PARAM_SPEC_UINT64()">G_PARAM_SPEC_UINT64</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1150
+ </dt>
1151
+ <dd></dd>
1152
+ <dt>
1153
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-ulong" title="g_param_spec_ulong ()">g_param_spec_ulong</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1154
+ </dt>
1155
+ <dd></dd>
1156
+ <dt>
1157
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-ULONG:CAPS" title="G_PARAM_SPEC_ULONG()">G_PARAM_SPEC_ULONG</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1158
+ </dt>
1159
+ <dd></dd>
1160
+ <dt>
1161
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-unichar" title="g_param_spec_unichar ()">g_param_spec_unichar</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1162
+ </dt>
1163
+ <dd></dd>
1164
+ <dt>
1165
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-UNICHAR:CAPS" title="G_PARAM_SPEC_UNICHAR()">G_PARAM_SPEC_UNICHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1166
+ </dt>
1167
+ <dd></dd>
1168
+ <dt>
1169
+ <a class="link" href="gobject-GParamSpec.html#g-param-spec-unref" title="g_param_spec_unref ()">g_param_spec_unref</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1170
+ </dt>
1171
+ <dd></dd>
1172
+ <dt>
1173
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-param-spec-value-array" title="g_param_spec_value_array ()">g_param_spec_value_array</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1174
+ </dt>
1175
+ <dd></dd>
1176
+ <dt>
1177
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-PARAM-SPEC-VALUE-ARRAY:CAPS" title="G_PARAM_SPEC_VALUE_ARRAY()">G_PARAM_SPEC_VALUE_ARRAY</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1178
+ </dt>
1179
+ <dd></dd>
1180
+ <dt>
1181
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-SPEC-VALUE-TYPE:CAPS" title="G_PARAM_SPEC_VALUE_TYPE()">G_PARAM_SPEC_VALUE_TYPE</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1182
+ </dt>
1183
+ <dd></dd>
1184
+ <dt>
1185
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS" title="G_PARAM_STATIC_STRINGS">G_PARAM_STATIC_STRINGS</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1186
+ </dt>
1187
+ <dd></dd>
1188
+ <dt>
1189
+ <a class="link" href="gobject-GParamSpec.html#g-param-type-register-static" title="g_param_type_register_static ()">g_param_type_register_static</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1190
+ </dt>
1191
+ <dd></dd>
1192
+ <dt>
1193
+ <a class="link" href="gobject-GParamSpec.html#G-PARAM-USER-SHIFT:CAPS" title="G_PARAM_USER_SHIFT">G_PARAM_USER_SHIFT</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1194
+ </dt>
1195
+ <dd></dd>
1196
+ <dt>
1197
+ <a class="link" href="gobject-GParamSpec.html#g-param-values-cmp" title="g_param_values_cmp ()">g_param_values_cmp</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1198
+ </dt>
1199
+ <dd></dd>
1200
+ <dt>
1201
+ <a class="link" href="gobject-GParamSpec.html#g-param-value-convert" title="g_param_value_convert ()">g_param_value_convert</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1202
+ </dt>
1203
+ <dd></dd>
1204
+ <dt>
1205
+ <a class="link" href="gobject-GParamSpec.html#g-param-value-defaults" title="g_param_value_defaults ()">g_param_value_defaults</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1206
+ </dt>
1207
+ <dd></dd>
1208
+ <dt>
1209
+ <a class="link" href="gobject-GParamSpec.html#g-param-value-set-default" title="g_param_value_set_default ()">g_param_value_set_default</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1210
+ </dt>
1211
+ <dd></dd>
1212
+ <dt>
1213
+ <a class="link" href="gobject-GParamSpec.html#g-param-value-validate" title="g_param_value_validate ()">g_param_value_validate</a>, function in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1214
+ </dt>
1215
+ <dd></dd>
1216
+ <dt>
1217
+ <a class="link" href="gobject-Boxed-Types.html#g-pointer-type-register-static" title="g_pointer_type_register_static ()">g_pointer_type_register_static</a>, function in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
1218
+ </dt>
1219
+ <dd></dd>
1220
+ <a name="idxS"></a><h3 class="title">S</h3>
1221
+ <dt>
1222
+ <a class="link" href="gobject-Signals.html#GSignalAccumulator" title="GSignalAccumulator ()">GSignalAccumulator</a>, user_function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1223
+ </dt>
1224
+ <dd></dd>
1225
+ <dt>
1226
+ <a class="link" href="gobject-Signals.html#GSignalCMarshaller" title="GSignalCMarshaller">GSignalCMarshaller</a>, typedef in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1227
+ </dt>
1228
+ <dd></dd>
1229
+ <dt>
1230
+ <a class="link" href="gobject-Signals.html#GSignalEmissionHook" title="GSignalEmissionHook ()">GSignalEmissionHook</a>, user_function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1231
+ </dt>
1232
+ <dd></dd>
1233
+ <dt>
1234
+ <a class="link" href="gobject-Signals.html#GSignalFlags" title="enum GSignalFlags">GSignalFlags</a>, enum in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1235
+ </dt>
1236
+ <dd></dd>
1237
+ <dt>
1238
+ <a class="link" href="gobject-Signals.html#GSignalInvocationHint" title="GSignalInvocationHint">GSignalInvocationHint</a>, struct in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1239
+ </dt>
1240
+ <dd></dd>
1241
+ <dt>
1242
+ <a class="link" href="gobject-Signals.html#GSignalMatchType" title="enum GSignalMatchType">GSignalMatchType</a>, enum in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1243
+ </dt>
1244
+ <dd></dd>
1245
+ <dt>
1246
+ <a class="link" href="gobject-Signals.html#GSignalQuery" title="GSignalQuery">GSignalQuery</a>, struct in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1247
+ </dt>
1248
+ <dd></dd>
1249
+ <dt>
1250
+ <a class="link" href="gobject-Signals.html#g-signal-accumulator-true-handled" title="g_signal_accumulator_true_handled ()">g_signal_accumulator_true_handled</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1251
+ </dt>
1252
+ <dd></dd>
1253
+ <dt>
1254
+ <a class="link" href="gobject-Signals.html#g-signal-add-emission-hook" title="g_signal_add_emission_hook ()">g_signal_add_emission_hook</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1255
+ </dt>
1256
+ <dd></dd>
1257
+ <dt>
1258
+ <a class="link" href="gobject-Signals.html#g-signal-chain-from-overridden" title="g_signal_chain_from_overridden ()">g_signal_chain_from_overridden</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1259
+ </dt>
1260
+ <dd></dd>
1261
+ <dt>
1262
+ <a class="link" href="gobject-Signals.html#g-signal-chain-from-overridden-handler" title="g_signal_chain_from_overridden_handler ()">g_signal_chain_from_overridden_handler</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1263
+ </dt>
1264
+ <dd></dd>
1265
+ <dt>
1266
+ <a class="link" href="gobject-Signals.html#g-signal-connect" title="g_signal_connect()">g_signal_connect</a>, macro in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1267
+ </dt>
1268
+ <dd></dd>
1269
+ <dt>
1270
+ <a class="link" href="gobject-Signals.html#g-signal-connect-after" title="g_signal_connect_after()">g_signal_connect_after</a>, macro in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1271
+ </dt>
1272
+ <dd></dd>
1273
+ <dt>
1274
+ <a class="link" href="gobject-Signals.html#g-signal-connect-closure" title="g_signal_connect_closure ()">g_signal_connect_closure</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1275
+ </dt>
1276
+ <dd></dd>
1277
+ <dt>
1278
+ <a class="link" href="gobject-Signals.html#g-signal-connect-closure-by-id" title="g_signal_connect_closure_by_id ()">g_signal_connect_closure_by_id</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1279
+ </dt>
1280
+ <dd></dd>
1281
+ <dt>
1282
+ <a class="link" href="gobject-Signals.html#g-signal-connect-data" title="g_signal_connect_data ()">g_signal_connect_data</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1283
+ </dt>
1284
+ <dd></dd>
1285
+ <dt>
1286
+ <a class="link" href="gobject-Signals.html#g-signal-connect-object" title="g_signal_connect_object ()">g_signal_connect_object</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1287
+ </dt>
1288
+ <dd></dd>
1289
+ <dt>
1290
+ <a class="link" href="gobject-Signals.html#g-signal-connect-swapped" title="g_signal_connect_swapped()">g_signal_connect_swapped</a>, macro in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1291
+ </dt>
1292
+ <dd></dd>
1293
+ <dt>
1294
+ <a class="link" href="gobject-Signals.html#g-signal-emit" title="g_signal_emit ()">g_signal_emit</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1295
+ </dt>
1296
+ <dd></dd>
1297
+ <dt>
1298
+ <a class="link" href="gobject-Signals.html#g-signal-emitv" title="g_signal_emitv ()">g_signal_emitv</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1299
+ </dt>
1300
+ <dd></dd>
1301
+ <dt>
1302
+ <a class="link" href="gobject-Signals.html#g-signal-emit-by-name" title="g_signal_emit_by_name ()">g_signal_emit_by_name</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1303
+ </dt>
1304
+ <dd></dd>
1305
+ <dt>
1306
+ <a class="link" href="gobject-Signals.html#g-signal-emit-valist" title="g_signal_emit_valist ()">g_signal_emit_valist</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1307
+ </dt>
1308
+ <dd></dd>
1309
+ <dt>
1310
+ <a class="link" href="gobject-Signals.html#G-SIGNAL-FLAGS-MASK:CAPS" title="G_SIGNAL_FLAGS_MASK">G_SIGNAL_FLAGS_MASK</a>, macro in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1311
+ </dt>
1312
+ <dd></dd>
1313
+ <dt>
1314
+ <a class="link" href="gobject-Signals.html#g-signal-get-invocation-hint" title="g_signal_get_invocation_hint ()">g_signal_get_invocation_hint</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1315
+ </dt>
1316
+ <dd></dd>
1317
+ <dt>
1318
+ <a class="link" href="gobject-Signals.html#g-signal-handlers-block-by-func" title="g_signal_handlers_block_by_func()">g_signal_handlers_block_by_func</a>, macro in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1319
+ </dt>
1320
+ <dd></dd>
1321
+ <dt>
1322
+ <a class="link" href="gobject-Signals.html#g-signal-handlers-block-matched" title="g_signal_handlers_block_matched ()">g_signal_handlers_block_matched</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1323
+ </dt>
1324
+ <dd></dd>
1325
+ <dt>
1326
+ <a class="link" href="gobject-Signals.html#g-signal-handlers-disconnect-by-func" title="g_signal_handlers_disconnect_by_func()">g_signal_handlers_disconnect_by_func</a>, macro in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1327
+ </dt>
1328
+ <dd></dd>
1329
+ <dt>
1330
+ <a class="link" href="gobject-Signals.html#g-signal-handlers-disconnect-matched" title="g_signal_handlers_disconnect_matched ()">g_signal_handlers_disconnect_matched</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1331
+ </dt>
1332
+ <dd></dd>
1333
+ <dt>
1334
+ <a class="link" href="gobject-Signals.html#g-signal-handlers-unblock-by-func" title="g_signal_handlers_unblock_by_func()">g_signal_handlers_unblock_by_func</a>, macro in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1335
+ </dt>
1336
+ <dd></dd>
1337
+ <dt>
1338
+ <a class="link" href="gobject-Signals.html#g-signal-handlers-unblock-matched" title="g_signal_handlers_unblock_matched ()">g_signal_handlers_unblock_matched</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1339
+ </dt>
1340
+ <dd></dd>
1341
+ <dt>
1342
+ <a class="link" href="gobject-Signals.html#g-signal-handler-block" title="g_signal_handler_block ()">g_signal_handler_block</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1343
+ </dt>
1344
+ <dd></dd>
1345
+ <dt>
1346
+ <a class="link" href="gobject-Signals.html#g-signal-handler-disconnect" title="g_signal_handler_disconnect ()">g_signal_handler_disconnect</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1347
+ </dt>
1348
+ <dd></dd>
1349
+ <dt>
1350
+ <a class="link" href="gobject-Signals.html#g-signal-handler-find" title="g_signal_handler_find ()">g_signal_handler_find</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1351
+ </dt>
1352
+ <dd></dd>
1353
+ <dt>
1354
+ <a class="link" href="gobject-Signals.html#g-signal-handler-is-connected" title="g_signal_handler_is_connected ()">g_signal_handler_is_connected</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1355
+ </dt>
1356
+ <dd></dd>
1357
+ <dt>
1358
+ <a class="link" href="gobject-Signals.html#g-signal-handler-unblock" title="g_signal_handler_unblock ()">g_signal_handler_unblock</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1359
+ </dt>
1360
+ <dd></dd>
1361
+ <dt>
1362
+ <a class="link" href="gobject-Signals.html#g-signal-has-handler-pending" title="g_signal_has_handler_pending ()">g_signal_has_handler_pending</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1363
+ </dt>
1364
+ <dd></dd>
1365
+ <dt>
1366
+ <a class="link" href="gobject-Signals.html#g-signal-list-ids" title="g_signal_list_ids ()">g_signal_list_ids</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1367
+ </dt>
1368
+ <dd></dd>
1369
+ <dt>
1370
+ <a class="link" href="gobject-Signals.html#g-signal-lookup" title="g_signal_lookup ()">g_signal_lookup</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1371
+ </dt>
1372
+ <dd></dd>
1373
+ <dt>
1374
+ <a class="link" href="gobject-Signals.html#G-SIGNAL-MATCH-MASK:CAPS" title="G_SIGNAL_MATCH_MASK">G_SIGNAL_MATCH_MASK</a>, macro in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1375
+ </dt>
1376
+ <dd></dd>
1377
+ <dt>
1378
+ <a class="link" href="gobject-Signals.html#g-signal-name" title="g_signal_name ()">g_signal_name</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1379
+ </dt>
1380
+ <dd></dd>
1381
+ <dt>
1382
+ <a class="link" href="gobject-Signals.html#g-signal-new" title="g_signal_new ()">g_signal_new</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1383
+ </dt>
1384
+ <dd></dd>
1385
+ <dt>
1386
+ <a class="link" href="gobject-Signals.html#g-signal-newv" title="g_signal_newv ()">g_signal_newv</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1387
+ </dt>
1388
+ <dd></dd>
1389
+ <dt>
1390
+ <a class="link" href="gobject-Signals.html#g-signal-new-class-handler" title="g_signal_new_class_handler ()">g_signal_new_class_handler</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1391
+ </dt>
1392
+ <dd></dd>
1393
+ <dt>
1394
+ <a class="link" href="gobject-Signals.html#g-signal-new-valist" title="g_signal_new_valist ()">g_signal_new_valist</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1395
+ </dt>
1396
+ <dd></dd>
1397
+ <dt>
1398
+ <a class="link" href="gobject-Signals.html#g-signal-override-class-closure" title="g_signal_override_class_closure ()">g_signal_override_class_closure</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1399
+ </dt>
1400
+ <dd></dd>
1401
+ <dt>
1402
+ <a class="link" href="gobject-Signals.html#g-signal-override-class-handler" title="g_signal_override_class_handler ()">g_signal_override_class_handler</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1403
+ </dt>
1404
+ <dd></dd>
1405
+ <dt>
1406
+ <a class="link" href="gobject-Signals.html#g-signal-parse-name" title="g_signal_parse_name ()">g_signal_parse_name</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1407
+ </dt>
1408
+ <dd></dd>
1409
+ <dt>
1410
+ <a class="link" href="gobject-Signals.html#g-signal-query" title="g_signal_query ()">g_signal_query</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1411
+ </dt>
1412
+ <dd></dd>
1413
+ <dt>
1414
+ <a class="link" href="gobject-Signals.html#g-signal-remove-emission-hook" title="g_signal_remove_emission_hook ()">g_signal_remove_emission_hook</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1415
+ </dt>
1416
+ <dd></dd>
1417
+ <dt>
1418
+ <a class="link" href="gobject-Signals.html#g-signal-stop-emission" title="g_signal_stop_emission ()">g_signal_stop_emission</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1419
+ </dt>
1420
+ <dd></dd>
1421
+ <dt>
1422
+ <a class="link" href="gobject-Signals.html#g-signal-stop-emission-by-name" title="g_signal_stop_emission_by_name ()">g_signal_stop_emission_by_name</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1423
+ </dt>
1424
+ <dd></dd>
1425
+ <dt>
1426
+ <a class="link" href="gobject-Signals.html#g-signal-type-cclosure-new" title="g_signal_type_cclosure_new ()">g_signal_type_cclosure_new</a>, function in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1427
+ </dt>
1428
+ <dd></dd>
1429
+ <dt>
1430
+ <a class="link" href="gobject-Signals.html#G-SIGNAL-TYPE-STATIC-SCOPE:CAPS" title="G_SIGNAL_TYPE_STATIC_SCOPE">G_SIGNAL_TYPE_STATIC_SCOPE</a>, macro in <a class="link" href="gobject-Signals.html" title="Signals">Signals</a>
1431
+ </dt>
1432
+ <dd></dd>
1433
+ <dt>
1434
+ <a class="link" href="gobject-Closures.html#g-source-set-closure" title="g_source_set_closure ()">g_source_set_closure</a>, function in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
1435
+ </dt>
1436
+ <dd></dd>
1437
+ <dt>
1438
+ <a class="link" href="gobject-Generic-values.html#g-strdup-value-contents" title="g_strdup_value_contents ()">g_strdup_value_contents</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
1439
+ </dt>
1440
+ <dd></dd>
1441
+ <dt>
1442
+ <a class="link" href="gobject-Boxed-Types.html#GStrv" title="GStrv">GStrv</a>, typedef in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
1443
+ </dt>
1444
+ <dd></dd>
1445
+ <a name="idxT"></a><h3 class="title">T</h3>
1446
+ <dt>
1447
+ <a class="link" href="gobject-The-Base-Object-Type.html#GToggleNotify" title="GToggleNotify ()">GToggleNotify</a>, user_function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
1448
+ </dt>
1449
+ <dd></dd>
1450
+ <dt>
1451
+ <a class="link" href="gobject-Type-Information.html#GType" title="GType">GType</a>, typedef in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1452
+ </dt>
1453
+ <dd></dd>
1454
+ <dt>
1455
+ <a class="link" href="gobject-Type-Information.html#GTypeClass" title="GTypeClass">GTypeClass</a>, struct in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1456
+ </dt>
1457
+ <dd></dd>
1458
+ <dt>
1459
+ <a class="link" href="gobject-Type-Information.html#GTypeClassCacheFunc" title="GTypeClassCacheFunc ()">GTypeClassCacheFunc</a>, user_function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1460
+ </dt>
1461
+ <dd></dd>
1462
+ <dt>
1463
+ <a class="link" href="gobject-Varargs-Value-Collection.html#GTypeCValue" title="union GTypeCValue">GTypeCValue</a>, union in <a class="link" href="gobject-Varargs-Value-Collection.html" title="Varargs Value Collection">Varargs Value Collection</a>
1464
+ </dt>
1465
+ <dd></dd>
1466
+ <dt>
1467
+ <a class="link" href="gobject-Type-Information.html#GTypeDebugFlags" title="enum GTypeDebugFlags">GTypeDebugFlags</a>, enum in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1468
+ </dt>
1469
+ <dd></dd>
1470
+ <dt>
1471
+ <a class="link" href="gobject-Type-Information.html#GTypeFlags" title="enum GTypeFlags">GTypeFlags</a>, enum in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1472
+ </dt>
1473
+ <dd></dd>
1474
+ <dt>
1475
+ <a class="link" href="gobject-Type-Information.html#GTypeFundamentalFlags" title="enum GTypeFundamentalFlags">GTypeFundamentalFlags</a>, enum in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1476
+ </dt>
1477
+ <dd></dd>
1478
+ <dt>
1479
+ <a class="link" href="gobject-Type-Information.html#GTypeFundamentalInfo" title="GTypeFundamentalInfo">GTypeFundamentalInfo</a>, struct in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1480
+ </dt>
1481
+ <dd></dd>
1482
+ <dt>
1483
+ <a class="link" href="gobject-Type-Information.html#GTypeInfo" title="GTypeInfo">GTypeInfo</a>, struct in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1484
+ </dt>
1485
+ <dd></dd>
1486
+ <dt>
1487
+ <a class="link" href="gobject-Type-Information.html#GTypeInstance" title="GTypeInstance">GTypeInstance</a>, struct in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1488
+ </dt>
1489
+ <dd></dd>
1490
+ <dt>
1491
+ <a class="link" href="gobject-Type-Information.html#GTypeInterface" title="GTypeInterface">GTypeInterface</a>, struct in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1492
+ </dt>
1493
+ <dd></dd>
1494
+ <dt>
1495
+ <a class="link" href="gobject-Type-Information.html#GTypeInterfaceCheckFunc" title="GTypeInterfaceCheckFunc ()">GTypeInterfaceCheckFunc</a>, user_function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1496
+ </dt>
1497
+ <dd></dd>
1498
+ <dt>
1499
+ <a class="link" href="GTypeModule.html#GTypeModule-struct" title="GTypeModule">GTypeModule</a>, struct in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
1500
+ </dt>
1501
+ <dd></dd>
1502
+ <dt>
1503
+ <a class="link" href="GTypeModule.html#GTypeModuleClass" title="GTypeModuleClass">GTypeModuleClass</a>, struct in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
1504
+ </dt>
1505
+ <dd></dd>
1506
+ <dt>
1507
+ <a class="link" href="GTypePlugin.html#GTypePlugin-struct" title="GTypePlugin">GTypePlugin</a>, struct in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
1508
+ </dt>
1509
+ <dd></dd>
1510
+ <dt>
1511
+ <a class="link" href="GTypePlugin.html#GTypePluginClass" title="GTypePluginClass">GTypePluginClass</a>, struct in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
1512
+ </dt>
1513
+ <dd></dd>
1514
+ <dt>
1515
+ <a class="link" href="GTypePlugin.html#GTypePluginCompleteInterfaceInfo" title="GTypePluginCompleteInterfaceInfo ()">GTypePluginCompleteInterfaceInfo</a>, user_function in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
1516
+ </dt>
1517
+ <dd></dd>
1518
+ <dt>
1519
+ <a class="link" href="GTypePlugin.html#GTypePluginCompleteTypeInfo" title="GTypePluginCompleteTypeInfo ()">GTypePluginCompleteTypeInfo</a>, user_function in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
1520
+ </dt>
1521
+ <dd></dd>
1522
+ <dt>
1523
+ <a class="link" href="GTypePlugin.html#GTypePluginUnuse" title="GTypePluginUnuse ()">GTypePluginUnuse</a>, user_function in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
1524
+ </dt>
1525
+ <dd></dd>
1526
+ <dt>
1527
+ <a class="link" href="GTypePlugin.html#GTypePluginUse" title="GTypePluginUse ()">GTypePluginUse</a>, user_function in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
1528
+ </dt>
1529
+ <dd></dd>
1530
+ <dt>
1531
+ <a class="link" href="gobject-Type-Information.html#GTypeQuery" title="GTypeQuery">GTypeQuery</a>, struct in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1532
+ </dt>
1533
+ <dd></dd>
1534
+ <dt>
1535
+ <a class="link" href="gobject-Type-Information.html#GTypeValueTable" title="GTypeValueTable">GTypeValueTable</a>, struct in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1536
+ </dt>
1537
+ <dd></dd>
1538
+ <dt>
1539
+ <a class="link" href="gobject-Type-Information.html#g-type-add-class-cache-func" title="g_type_add_class_cache_func ()">g_type_add_class_cache_func</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1540
+ </dt>
1541
+ <dd></dd>
1542
+ <dt>
1543
+ <a class="link" href="gobject-Type-Information.html#g-type-add-class-private" title="g_type_add_class_private ()">g_type_add_class_private</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1544
+ </dt>
1545
+ <dd></dd>
1546
+ <dt>
1547
+ <a class="link" href="gobject-Type-Information.html#g-type-add-interface-check" title="g_type_add_interface_check ()">g_type_add_interface_check</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1548
+ </dt>
1549
+ <dd></dd>
1550
+ <dt>
1551
+ <a class="link" href="gobject-Type-Information.html#g-type-add-interface-dynamic" title="g_type_add_interface_dynamic ()">g_type_add_interface_dynamic</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1552
+ </dt>
1553
+ <dd></dd>
1554
+ <dt>
1555
+ <a class="link" href="gobject-Type-Information.html#g-type-add-interface-static" title="g_type_add_interface_static ()">g_type_add_interface_static</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1556
+ </dt>
1557
+ <dd></dd>
1558
+ <dt>
1559
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-ARRAY:CAPS" title="G_TYPE_ARRAY">G_TYPE_ARRAY</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
1560
+ </dt>
1561
+ <dd></dd>
1562
+ <dt>
1563
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-BOOLEAN:CAPS" title="G_TYPE_BOOLEAN">G_TYPE_BOOLEAN</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1564
+ </dt>
1565
+ <dd></dd>
1566
+ <dt>
1567
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-BOXED:CAPS" title="G_TYPE_BOXED">G_TYPE_BOXED</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1568
+ </dt>
1569
+ <dd></dd>
1570
+ <dt>
1571
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-BYTE-ARRAY:CAPS" title="G_TYPE_BYTE_ARRAY">G_TYPE_BYTE_ARRAY</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
1572
+ </dt>
1573
+ <dd></dd>
1574
+ <dt>
1575
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-CHAR:CAPS" title="G_TYPE_CHAR">G_TYPE_CHAR</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1576
+ </dt>
1577
+ <dd></dd>
1578
+ <dt>
1579
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-CHECK-CLASS-CAST:CAPS" title="G_TYPE_CHECK_CLASS_CAST()">G_TYPE_CHECK_CLASS_CAST</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1580
+ </dt>
1581
+ <dd></dd>
1582
+ <dt>
1583
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-CHECK-CLASS-TYPE:CAPS" title="G_TYPE_CHECK_CLASS_TYPE()">G_TYPE_CHECK_CLASS_TYPE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1584
+ </dt>
1585
+ <dd></dd>
1586
+ <dt>
1587
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-CHECK-INSTANCE:CAPS" title="G_TYPE_CHECK_INSTANCE()">G_TYPE_CHECK_INSTANCE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1588
+ </dt>
1589
+ <dd></dd>
1590
+ <dt>
1591
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-CHECK-INSTANCE-CAST:CAPS" title="G_TYPE_CHECK_INSTANCE_CAST()">G_TYPE_CHECK_INSTANCE_CAST</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1592
+ </dt>
1593
+ <dd></dd>
1594
+ <dt>
1595
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-CHECK-INSTANCE-TYPE:CAPS" title="G_TYPE_CHECK_INSTANCE_TYPE()">G_TYPE_CHECK_INSTANCE_TYPE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1596
+ </dt>
1597
+ <dd></dd>
1598
+ <dt>
1599
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-CHECK-VALUE:CAPS" title="G_TYPE_CHECK_VALUE()">G_TYPE_CHECK_VALUE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1600
+ </dt>
1601
+ <dd></dd>
1602
+ <dt>
1603
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-CHECK-VALUE-TYPE:CAPS" title="G_TYPE_CHECK_VALUE_TYPE()">G_TYPE_CHECK_VALUE_TYPE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1604
+ </dt>
1605
+ <dd></dd>
1606
+ <dt>
1607
+ <a class="link" href="gobject-Type-Information.html#g-type-children" title="g_type_children ()">g_type_children</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1608
+ </dt>
1609
+ <dd></dd>
1610
+ <dt>
1611
+ <a class="link" href="gobject-Type-Information.html#g-type-class-add-private" title="g_type_class_add_private ()">g_type_class_add_private</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1612
+ </dt>
1613
+ <dd></dd>
1614
+ <dt>
1615
+ <a class="link" href="gobject-Type-Information.html#g-type-class-peek" title="g_type_class_peek ()">g_type_class_peek</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1616
+ </dt>
1617
+ <dd></dd>
1618
+ <dt>
1619
+ <a class="link" href="gobject-Type-Information.html#g-type-class-peek-parent" title="g_type_class_peek_parent ()">g_type_class_peek_parent</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1620
+ </dt>
1621
+ <dd></dd>
1622
+ <dt>
1623
+ <a class="link" href="gobject-Type-Information.html#g-type-class-peek-static" title="g_type_class_peek_static ()">g_type_class_peek_static</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1624
+ </dt>
1625
+ <dd></dd>
1626
+ <dt>
1627
+ <a class="link" href="gobject-Type-Information.html#g-type-class-ref" title="g_type_class_ref ()">g_type_class_ref</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1628
+ </dt>
1629
+ <dd></dd>
1630
+ <dt>
1631
+ <a class="link" href="gobject-Type-Information.html#g-type-class-unref" title="g_type_class_unref ()">g_type_class_unref</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1632
+ </dt>
1633
+ <dd></dd>
1634
+ <dt>
1635
+ <a class="link" href="gobject-Type-Information.html#g-type-class-unref-uncached" title="g_type_class_unref_uncached ()">g_type_class_unref_uncached</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1636
+ </dt>
1637
+ <dd></dd>
1638
+ <dt>
1639
+ <a class="link" href="gobject-Closures.html#G-TYPE-CLOSURE:CAPS" title="G_TYPE_CLOSURE">G_TYPE_CLOSURE</a>, macro in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
1640
+ </dt>
1641
+ <dd></dd>
1642
+ <dt>
1643
+ <a class="link" href="gobject-Type-Information.html#g-type-create-instance" title="g_type_create_instance ()">g_type_create_instance</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1644
+ </dt>
1645
+ <dd></dd>
1646
+ <dt>
1647
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-DATE:CAPS" title="G_TYPE_DATE">G_TYPE_DATE</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
1648
+ </dt>
1649
+ <dd></dd>
1650
+ <dt>
1651
+ <a class="link" href="gobject-Type-Information.html#g-type-default-interface-peek" title="g_type_default_interface_peek ()">g_type_default_interface_peek</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1652
+ </dt>
1653
+ <dd></dd>
1654
+ <dt>
1655
+ <a class="link" href="gobject-Type-Information.html#g-type-default-interface-ref" title="g_type_default_interface_ref ()">g_type_default_interface_ref</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1656
+ </dt>
1657
+ <dd></dd>
1658
+ <dt>
1659
+ <a class="link" href="gobject-Type-Information.html#g-type-default-interface-unref" title="g_type_default_interface_unref ()">g_type_default_interface_unref</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1660
+ </dt>
1661
+ <dd></dd>
1662
+ <dt>
1663
+ <a class="link" href="gobject-Type-Information.html#g-type-depth" title="g_type_depth ()">g_type_depth</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1664
+ </dt>
1665
+ <dd></dd>
1666
+ <dt>
1667
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-DOUBLE:CAPS" title="G_TYPE_DOUBLE">G_TYPE_DOUBLE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1668
+ </dt>
1669
+ <dd></dd>
1670
+ <dt>
1671
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-ENUM:CAPS" title="G_TYPE_ENUM">G_TYPE_ENUM</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1672
+ </dt>
1673
+ <dd></dd>
1674
+ <dt>
1675
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-FLAGS:CAPS" title="G_TYPE_FLAGS">G_TYPE_FLAGS</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1676
+ </dt>
1677
+ <dd></dd>
1678
+ <dt>
1679
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-FLAG-RESERVED-ID-BIT:CAPS" title="G_TYPE_FLAG_RESERVED_ID_BIT">G_TYPE_FLAG_RESERVED_ID_BIT</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1680
+ </dt>
1681
+ <dd></dd>
1682
+ <dt>
1683
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-FLOAT:CAPS" title="G_TYPE_FLOAT">G_TYPE_FLOAT</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1684
+ </dt>
1685
+ <dd></dd>
1686
+ <dt>
1687
+ <a class="link" href="gobject-Type-Information.html#g-type-free-instance" title="g_type_free_instance ()">g_type_free_instance</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1688
+ </dt>
1689
+ <dd></dd>
1690
+ <dt>
1691
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-FROM-CLASS:CAPS" title="G_TYPE_FROM_CLASS()">G_TYPE_FROM_CLASS</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1692
+ </dt>
1693
+ <dd></dd>
1694
+ <dt>
1695
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-FROM-INSTANCE:CAPS" title="G_TYPE_FROM_INSTANCE()">G_TYPE_FROM_INSTANCE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1696
+ </dt>
1697
+ <dd></dd>
1698
+ <dt>
1699
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-FROM-INTERFACE:CAPS" title="G_TYPE_FROM_INTERFACE()">G_TYPE_FROM_INTERFACE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1700
+ </dt>
1701
+ <dd></dd>
1702
+ <dt>
1703
+ <a class="link" href="gobject-Type-Information.html#g-type-from-name" title="g_type_from_name ()">g_type_from_name</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1704
+ </dt>
1705
+ <dd></dd>
1706
+ <dt>
1707
+ <a class="link" href="gobject-Type-Information.html#g-type-fundamental" title="g_type_fundamental ()">g_type_fundamental</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1708
+ </dt>
1709
+ <dd></dd>
1710
+ <dt>
1711
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-FUNDAMENTAL:CAPS" title="G_TYPE_FUNDAMENTAL()">G_TYPE_FUNDAMENTAL</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1712
+ </dt>
1713
+ <dd></dd>
1714
+ <dt>
1715
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-FUNDAMENTAL-MAX:CAPS" title="G_TYPE_FUNDAMENTAL_MAX">G_TYPE_FUNDAMENTAL_MAX</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1716
+ </dt>
1717
+ <dd></dd>
1718
+ <dt>
1719
+ <a class="link" href="gobject-Type-Information.html#g-type-fundamental-next" title="g_type_fundamental_next ()">g_type_fundamental_next</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1720
+ </dt>
1721
+ <dd></dd>
1722
+ <dt>
1723
+ <a class="link" href="gobject-Type-Information.html#g-type-get-plugin" title="g_type_get_plugin ()">g_type_get_plugin</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1724
+ </dt>
1725
+ <dd></dd>
1726
+ <dt>
1727
+ <a class="link" href="gobject-Type-Information.html#g-type-get-qdata" title="g_type_get_qdata ()">g_type_get_qdata</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1728
+ </dt>
1729
+ <dd></dd>
1730
+ <dt>
1731
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-GSTRING:CAPS" title="G_TYPE_GSTRING">G_TYPE_GSTRING</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
1732
+ </dt>
1733
+ <dd></dd>
1734
+ <dt>
1735
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-GTYPE:CAPS" title="G_TYPE_GTYPE">G_TYPE_GTYPE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1736
+ </dt>
1737
+ <dd></dd>
1738
+ <dt>
1739
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-HASH-TABLE:CAPS" title="G_TYPE_HASH_TABLE">G_TYPE_HASH_TABLE</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
1740
+ </dt>
1741
+ <dd></dd>
1742
+ <dt>
1743
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-HAS-VALUE-TABLE:CAPS" title="G_TYPE_HAS_VALUE_TABLE()">G_TYPE_HAS_VALUE_TABLE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1744
+ </dt>
1745
+ <dd></dd>
1746
+ <dt>
1747
+ <a class="link" href="gobject-Type-Information.html#g-type-init" title="g_type_init ()">g_type_init</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1748
+ </dt>
1749
+ <dd></dd>
1750
+ <dt>
1751
+ <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>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
1752
+ </dt>
1753
+ <dd></dd>
1754
+ <dt>
1755
+ <a class="link" href="gobject-Type-Information.html#g-type-init-with-debug-flags" title="g_type_init_with_debug_flags ()">g_type_init_with_debug_flags</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1756
+ </dt>
1757
+ <dd></dd>
1758
+ <dt>
1759
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-INSTANCE-GET-CLASS:CAPS" title="G_TYPE_INSTANCE_GET_CLASS()">G_TYPE_INSTANCE_GET_CLASS</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1760
+ </dt>
1761
+ <dd></dd>
1762
+ <dt>
1763
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-INSTANCE-GET-INTERFACE:CAPS" title="G_TYPE_INSTANCE_GET_INTERFACE()">G_TYPE_INSTANCE_GET_INTERFACE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1764
+ </dt>
1765
+ <dd></dd>
1766
+ <dt>
1767
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-INSTANCE-GET-PRIVATE:CAPS" title="G_TYPE_INSTANCE_GET_PRIVATE()">G_TYPE_INSTANCE_GET_PRIVATE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1768
+ </dt>
1769
+ <dd></dd>
1770
+ <dt>
1771
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-INT:CAPS" title="G_TYPE_INT">G_TYPE_INT</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1772
+ </dt>
1773
+ <dd></dd>
1774
+ <dt>
1775
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-INT64:CAPS" title="G_TYPE_INT64">G_TYPE_INT64</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1776
+ </dt>
1777
+ <dd></dd>
1778
+ <dt>
1779
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-INTERFACE:CAPS" title="G_TYPE_INTERFACE">G_TYPE_INTERFACE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1780
+ </dt>
1781
+ <dd></dd>
1782
+ <dt>
1783
+ <a class="link" href="gobject-Type-Information.html#g-type-interfaces" title="g_type_interfaces ()">g_type_interfaces</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1784
+ </dt>
1785
+ <dd></dd>
1786
+ <dt>
1787
+ <a class="link" href="gobject-Type-Information.html#g-type-interface-add-prerequisite" title="g_type_interface_add_prerequisite ()">g_type_interface_add_prerequisite</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1788
+ </dt>
1789
+ <dd></dd>
1790
+ <dt>
1791
+ <a class="link" href="gobject-Type-Information.html#g-type-interface-get-plugin" title="g_type_interface_get_plugin ()">g_type_interface_get_plugin</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1792
+ </dt>
1793
+ <dd></dd>
1794
+ <dt>
1795
+ <a class="link" href="gobject-Type-Information.html#g-type-interface-peek" title="g_type_interface_peek ()">g_type_interface_peek</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1796
+ </dt>
1797
+ <dd></dd>
1798
+ <dt>
1799
+ <a class="link" href="gobject-Type-Information.html#g-type-interface-peek-parent" title="g_type_interface_peek_parent ()">g_type_interface_peek_parent</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1800
+ </dt>
1801
+ <dd></dd>
1802
+ <dt>
1803
+ <a class="link" href="gobject-Type-Information.html#g-type-interface-prerequisites" title="g_type_interface_prerequisites ()">g_type_interface_prerequisites</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1804
+ </dt>
1805
+ <dd></dd>
1806
+ <dt>
1807
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-INVALID:CAPS" title="G_TYPE_INVALID">G_TYPE_INVALID</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1808
+ </dt>
1809
+ <dd></dd>
1810
+ <dt>
1811
+ <a class="link" href="gobject-Closures.html#G-TYPE-IO-CHANNEL:CAPS" title="G_TYPE_IO_CHANNEL">G_TYPE_IO_CHANNEL</a>, macro in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
1812
+ </dt>
1813
+ <dd></dd>
1814
+ <dt>
1815
+ <a class="link" href="gobject-Closures.html#G-TYPE-IO-CONDITION:CAPS" title="G_TYPE_IO_CONDITION">G_TYPE_IO_CONDITION</a>, macro in <a class="link" href="gobject-Closures.html" title="Closures">Closures</a>
1816
+ </dt>
1817
+ <dd></dd>
1818
+ <dt>
1819
+ <a class="link" href="gobject-Type-Information.html#g-type-is-a" title="g_type_is_a ()">g_type_is_a</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1820
+ </dt>
1821
+ <dd></dd>
1822
+ <dt>
1823
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-IS-ABSTRACT:CAPS" title="G_TYPE_IS_ABSTRACT()">G_TYPE_IS_ABSTRACT</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1824
+ </dt>
1825
+ <dd></dd>
1826
+ <dt>
1827
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-IS-CLASSED:CAPS" title="G_TYPE_IS_CLASSED()">G_TYPE_IS_CLASSED</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1828
+ </dt>
1829
+ <dd></dd>
1830
+ <dt>
1831
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-IS-DEEP-DERIVABLE:CAPS" title="G_TYPE_IS_DEEP_DERIVABLE()">G_TYPE_IS_DEEP_DERIVABLE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1832
+ </dt>
1833
+ <dd></dd>
1834
+ <dt>
1835
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-IS-DERIVABLE:CAPS" title="G_TYPE_IS_DERIVABLE()">G_TYPE_IS_DERIVABLE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1836
+ </dt>
1837
+ <dd></dd>
1838
+ <dt>
1839
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-IS-DERIVED:CAPS" title="G_TYPE_IS_DERIVED()">G_TYPE_IS_DERIVED</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1840
+ </dt>
1841
+ <dd></dd>
1842
+ <dt>
1843
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-TYPE-IS-ENUM:CAPS" title="G_TYPE_IS_ENUM()">G_TYPE_IS_ENUM</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
1844
+ </dt>
1845
+ <dd></dd>
1846
+ <dt>
1847
+ <a class="link" href="gobject-Enumeration-and-Flag-Types.html#G-TYPE-IS-FLAGS:CAPS" title="G_TYPE_IS_FLAGS()">G_TYPE_IS_FLAGS</a>, macro in <a class="link" href="gobject-Enumeration-and-Flag-Types.html" title="Enumeration and Flag Types">Enumeration and Flag Types</a>
1848
+ </dt>
1849
+ <dd></dd>
1850
+ <dt>
1851
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-IS-FUNDAMENTAL:CAPS" title="G_TYPE_IS_FUNDAMENTAL()">G_TYPE_IS_FUNDAMENTAL</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1852
+ </dt>
1853
+ <dd></dd>
1854
+ <dt>
1855
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-IS-INSTANTIATABLE:CAPS" title="G_TYPE_IS_INSTANTIATABLE()">G_TYPE_IS_INSTANTIATABLE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1856
+ </dt>
1857
+ <dd></dd>
1858
+ <dt>
1859
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-IS-INTERFACE:CAPS" title="G_TYPE_IS_INTERFACE()">G_TYPE_IS_INTERFACE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1860
+ </dt>
1861
+ <dd></dd>
1862
+ <dt>
1863
+ <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>, macro in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
1864
+ </dt>
1865
+ <dd></dd>
1866
+ <dt>
1867
+ <a class="link" href="gobject-GParamSpec.html#G-TYPE-IS-PARAM:CAPS" title="G_TYPE_IS_PARAM()">G_TYPE_IS_PARAM</a>, macro in <a class="link" href="gobject-GParamSpec.html" title="GParamSpec">GParamSpec</a>
1868
+ </dt>
1869
+ <dd></dd>
1870
+ <dt>
1871
+ <a class="link" href="gobject-Generic-values.html#G-TYPE-IS-VALUE:CAPS" title="G_TYPE_IS_VALUE()">G_TYPE_IS_VALUE</a>, macro in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
1872
+ </dt>
1873
+ <dd></dd>
1874
+ <dt>
1875
+ <a class="link" href="gobject-Generic-values.html#G-TYPE-IS-VALUE-ABSTRACT:CAPS" title="G_TYPE_IS_VALUE_ABSTRACT()">G_TYPE_IS_VALUE_ABSTRACT</a>, macro in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
1876
+ </dt>
1877
+ <dd></dd>
1878
+ <dt>
1879
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-IS-VALUE-TYPE:CAPS" title="G_TYPE_IS_VALUE_TYPE()">G_TYPE_IS_VALUE_TYPE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1880
+ </dt>
1881
+ <dd></dd>
1882
+ <dt>
1883
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-LONG:CAPS" title="G_TYPE_LONG">G_TYPE_LONG</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1884
+ </dt>
1885
+ <dd></dd>
1886
+ <dt>
1887
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-MAKE-FUNDAMENTAL:CAPS" title="G_TYPE_MAKE_FUNDAMENTAL()">G_TYPE_MAKE_FUNDAMENTAL</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1888
+ </dt>
1889
+ <dd></dd>
1890
+ <dt>
1891
+ <a class="link" href="GTypeModule.html#g-type-module-add-interface" title="g_type_module_add_interface ()">g_type_module_add_interface</a>, function in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
1892
+ </dt>
1893
+ <dd></dd>
1894
+ <dt>
1895
+ <a class="link" href="GTypeModule.html#g-type-module-register-enum" title="g_type_module_register_enum ()">g_type_module_register_enum</a>, function in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
1896
+ </dt>
1897
+ <dd></dd>
1898
+ <dt>
1899
+ <a class="link" href="GTypeModule.html#g-type-module-register-flags" title="g_type_module_register_flags ()">g_type_module_register_flags</a>, function in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
1900
+ </dt>
1901
+ <dd></dd>
1902
+ <dt>
1903
+ <a class="link" href="GTypeModule.html#g-type-module-register-type" title="g_type_module_register_type ()">g_type_module_register_type</a>, function in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
1904
+ </dt>
1905
+ <dd></dd>
1906
+ <dt>
1907
+ <a class="link" href="GTypeModule.html#g-type-module-set-name" title="g_type_module_set_name ()">g_type_module_set_name</a>, function in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
1908
+ </dt>
1909
+ <dd></dd>
1910
+ <dt>
1911
+ <a class="link" href="GTypeModule.html#g-type-module-unuse" title="g_type_module_unuse ()">g_type_module_unuse</a>, function in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
1912
+ </dt>
1913
+ <dd></dd>
1914
+ <dt>
1915
+ <a class="link" href="GTypeModule.html#g-type-module-use" title="g_type_module_use ()">g_type_module_use</a>, function in <a class="link" href="GTypeModule.html" title="GTypeModule">GTypeModule</a>
1916
+ </dt>
1917
+ <dd></dd>
1918
+ <dt>
1919
+ <a class="link" href="gobject-Type-Information.html#g-type-name" title="g_type_name ()">g_type_name</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1920
+ </dt>
1921
+ <dd></dd>
1922
+ <dt>
1923
+ <a class="link" href="gobject-Type-Information.html#g-type-next-base" title="g_type_next_base ()">g_type_next_base</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1924
+ </dt>
1925
+ <dd></dd>
1926
+ <dt>
1927
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-NONE:CAPS" title="G_TYPE_NONE">G_TYPE_NONE</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1928
+ </dt>
1929
+ <dd></dd>
1930
+ <dt>
1931
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-OBJECT:CAPS" title="G_TYPE_OBJECT">G_TYPE_OBJECT</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1932
+ </dt>
1933
+ <dd></dd>
1934
+ <dt>
1935
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-PARAM:CAPS" title="G_TYPE_PARAM">G_TYPE_PARAM</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
1936
+ </dt>
1937
+ <dd></dd>
1938
+ <dt>
1939
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-BOOLEAN:CAPS" title="G_TYPE_PARAM_BOOLEAN">G_TYPE_PARAM_BOOLEAN</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1940
+ </dt>
1941
+ <dd></dd>
1942
+ <dt>
1943
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-BOXED:CAPS" title="G_TYPE_PARAM_BOXED">G_TYPE_PARAM_BOXED</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1944
+ </dt>
1945
+ <dd></dd>
1946
+ <dt>
1947
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-CHAR:CAPS" title="G_TYPE_PARAM_CHAR">G_TYPE_PARAM_CHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1948
+ </dt>
1949
+ <dd></dd>
1950
+ <dt>
1951
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-DOUBLE:CAPS" title="G_TYPE_PARAM_DOUBLE">G_TYPE_PARAM_DOUBLE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1952
+ </dt>
1953
+ <dd></dd>
1954
+ <dt>
1955
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-ENUM:CAPS" title="G_TYPE_PARAM_ENUM">G_TYPE_PARAM_ENUM</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1956
+ </dt>
1957
+ <dd></dd>
1958
+ <dt>
1959
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-FLAGS:CAPS" title="G_TYPE_PARAM_FLAGS">G_TYPE_PARAM_FLAGS</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1960
+ </dt>
1961
+ <dd></dd>
1962
+ <dt>
1963
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-FLOAT:CAPS" title="G_TYPE_PARAM_FLOAT">G_TYPE_PARAM_FLOAT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1964
+ </dt>
1965
+ <dd></dd>
1966
+ <dt>
1967
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-GTYPE:CAPS" title="G_TYPE_PARAM_GTYPE">G_TYPE_PARAM_GTYPE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1968
+ </dt>
1969
+ <dd></dd>
1970
+ <dt>
1971
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-INT:CAPS" title="G_TYPE_PARAM_INT">G_TYPE_PARAM_INT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1972
+ </dt>
1973
+ <dd></dd>
1974
+ <dt>
1975
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-INT64:CAPS" title="G_TYPE_PARAM_INT64">G_TYPE_PARAM_INT64</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1976
+ </dt>
1977
+ <dd></dd>
1978
+ <dt>
1979
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-LONG:CAPS" title="G_TYPE_PARAM_LONG">G_TYPE_PARAM_LONG</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1980
+ </dt>
1981
+ <dd></dd>
1982
+ <dt>
1983
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-OBJECT:CAPS" title="G_TYPE_PARAM_OBJECT">G_TYPE_PARAM_OBJECT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1984
+ </dt>
1985
+ <dd></dd>
1986
+ <dt>
1987
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-OVERRIDE:CAPS" title="G_TYPE_PARAM_OVERRIDE">G_TYPE_PARAM_OVERRIDE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1988
+ </dt>
1989
+ <dd></dd>
1990
+ <dt>
1991
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-PARAM:CAPS" title="G_TYPE_PARAM_PARAM">G_TYPE_PARAM_PARAM</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1992
+ </dt>
1993
+ <dd></dd>
1994
+ <dt>
1995
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-POINTER:CAPS" title="G_TYPE_PARAM_POINTER">G_TYPE_PARAM_POINTER</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
1996
+ </dt>
1997
+ <dd></dd>
1998
+ <dt>
1999
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-STRING:CAPS" title="G_TYPE_PARAM_STRING">G_TYPE_PARAM_STRING</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2000
+ </dt>
2001
+ <dd></dd>
2002
+ <dt>
2003
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-UCHAR:CAPS" title="G_TYPE_PARAM_UCHAR">G_TYPE_PARAM_UCHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2004
+ </dt>
2005
+ <dd></dd>
2006
+ <dt>
2007
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-UINT:CAPS" title="G_TYPE_PARAM_UINT">G_TYPE_PARAM_UINT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2008
+ </dt>
2009
+ <dd></dd>
2010
+ <dt>
2011
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-UINT64:CAPS" title="G_TYPE_PARAM_UINT64">G_TYPE_PARAM_UINT64</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2012
+ </dt>
2013
+ <dd></dd>
2014
+ <dt>
2015
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-ULONG:CAPS" title="G_TYPE_PARAM_ULONG">G_TYPE_PARAM_ULONG</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2016
+ </dt>
2017
+ <dd></dd>
2018
+ <dt>
2019
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-UNICHAR:CAPS" title="G_TYPE_PARAM_UNICHAR">G_TYPE_PARAM_UNICHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2020
+ </dt>
2021
+ <dd></dd>
2022
+ <dt>
2023
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-TYPE-PARAM-VALUE-ARRAY:CAPS" title="G_TYPE_PARAM_VALUE_ARRAY">G_TYPE_PARAM_VALUE_ARRAY</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2024
+ </dt>
2025
+ <dd></dd>
2026
+ <dt>
2027
+ <a class="link" href="gobject-Type-Information.html#g-type-parent" title="g_type_parent ()">g_type_parent</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2028
+ </dt>
2029
+ <dd></dd>
2030
+ <dt>
2031
+ <a class="link" href="GTypePlugin.html#g-type-plugin-complete-interface-info" title="g_type_plugin_complete_interface_info ()">g_type_plugin_complete_interface_info</a>, function in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
2032
+ </dt>
2033
+ <dd></dd>
2034
+ <dt>
2035
+ <a class="link" href="GTypePlugin.html#g-type-plugin-complete-type-info" title="g_type_plugin_complete_type_info ()">g_type_plugin_complete_type_info</a>, function in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
2036
+ </dt>
2037
+ <dd></dd>
2038
+ <dt>
2039
+ <a class="link" href="GTypePlugin.html#g-type-plugin-unuse" title="g_type_plugin_unuse ()">g_type_plugin_unuse</a>, function in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
2040
+ </dt>
2041
+ <dd></dd>
2042
+ <dt>
2043
+ <a class="link" href="GTypePlugin.html#g-type-plugin-use" title="g_type_plugin_use ()">g_type_plugin_use</a>, function in <a class="link" href="GTypePlugin.html" title="GTypePlugin">GTypePlugin</a>
2044
+ </dt>
2045
+ <dd></dd>
2046
+ <dt>
2047
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-POINTER:CAPS" title="G_TYPE_POINTER">G_TYPE_POINTER</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2048
+ </dt>
2049
+ <dd></dd>
2050
+ <dt>
2051
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-PTR-ARRAY:CAPS" title="G_TYPE_PTR_ARRAY">G_TYPE_PTR_ARRAY</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
2052
+ </dt>
2053
+ <dd></dd>
2054
+ <dt>
2055
+ <a class="link" href="gobject-Type-Information.html#g-type-qname" title="g_type_qname ()">g_type_qname</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2056
+ </dt>
2057
+ <dd></dd>
2058
+ <dt>
2059
+ <a class="link" href="gobject-Type-Information.html#g-type-query" title="g_type_query ()">g_type_query</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2060
+ </dt>
2061
+ <dd></dd>
2062
+ <dt>
2063
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-REGEX:CAPS" title="G_TYPE_REGEX">G_TYPE_REGEX</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
2064
+ </dt>
2065
+ <dd></dd>
2066
+ <dt>
2067
+ <a class="link" href="gobject-Type-Information.html#g-type-register-dynamic" title="g_type_register_dynamic ()">g_type_register_dynamic</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2068
+ </dt>
2069
+ <dd></dd>
2070
+ <dt>
2071
+ <a class="link" href="gobject-Type-Information.html#g-type-register-fundamental" title="g_type_register_fundamental ()">g_type_register_fundamental</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2072
+ </dt>
2073
+ <dd></dd>
2074
+ <dt>
2075
+ <a class="link" href="gobject-Type-Information.html#g-type-register-static" title="g_type_register_static ()">g_type_register_static</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2076
+ </dt>
2077
+ <dd></dd>
2078
+ <dt>
2079
+ <a class="link" href="gobject-Type-Information.html#g-type-register-static-simple" title="g_type_register_static_simple ()">g_type_register_static_simple</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2080
+ </dt>
2081
+ <dd></dd>
2082
+ <dt>
2083
+ <a class="link" href="gobject-Type-Information.html#g-type-remove-class-cache-func" title="g_type_remove_class_cache_func ()">g_type_remove_class_cache_func</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2084
+ </dt>
2085
+ <dd></dd>
2086
+ <dt>
2087
+ <a class="link" href="gobject-Type-Information.html#g-type-remove-interface-check" title="g_type_remove_interface_check ()">g_type_remove_interface_check</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2088
+ </dt>
2089
+ <dd></dd>
2090
+ <dt>
2091
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-RESERVED-BSE-FIRST:CAPS" title="G_TYPE_RESERVED_BSE_FIRST">G_TYPE_RESERVED_BSE_FIRST</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2092
+ </dt>
2093
+ <dd></dd>
2094
+ <dt>
2095
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-RESERVED-BSE-LAST:CAPS" title="G_TYPE_RESERVED_BSE_LAST">G_TYPE_RESERVED_BSE_LAST</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2096
+ </dt>
2097
+ <dd></dd>
2098
+ <dt>
2099
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-RESERVED-GLIB-FIRST:CAPS" title="G_TYPE_RESERVED_GLIB_FIRST">G_TYPE_RESERVED_GLIB_FIRST</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2100
+ </dt>
2101
+ <dd></dd>
2102
+ <dt>
2103
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-RESERVED-GLIB-LAST:CAPS" title="G_TYPE_RESERVED_GLIB_LAST">G_TYPE_RESERVED_GLIB_LAST</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2104
+ </dt>
2105
+ <dd></dd>
2106
+ <dt>
2107
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-RESERVED-USER-FIRST:CAPS" title="G_TYPE_RESERVED_USER_FIRST">G_TYPE_RESERVED_USER_FIRST</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2108
+ </dt>
2109
+ <dd></dd>
2110
+ <dt>
2111
+ <a class="link" href="gobject-Type-Information.html#g-type-set-qdata" title="g_type_set_qdata ()">g_type_set_qdata</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2112
+ </dt>
2113
+ <dd></dd>
2114
+ <dt>
2115
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-STRING:CAPS" title="G_TYPE_STRING">G_TYPE_STRING</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2116
+ </dt>
2117
+ <dd></dd>
2118
+ <dt>
2119
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-STRV:CAPS" title="G_TYPE_STRV">G_TYPE_STRV</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
2120
+ </dt>
2121
+ <dd></dd>
2122
+ <dt>
2123
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-UCHAR:CAPS" title="G_TYPE_UCHAR">G_TYPE_UCHAR</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2124
+ </dt>
2125
+ <dd></dd>
2126
+ <dt>
2127
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-UINT:CAPS" title="G_TYPE_UINT">G_TYPE_UINT</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2128
+ </dt>
2129
+ <dd></dd>
2130
+ <dt>
2131
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-UINT64:CAPS" title="G_TYPE_UINT64">G_TYPE_UINT64</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2132
+ </dt>
2133
+ <dd></dd>
2134
+ <dt>
2135
+ <a class="link" href="gobject-Type-Information.html#G-TYPE-ULONG:CAPS" title="G_TYPE_ULONG">G_TYPE_ULONG</a>, macro in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2136
+ </dt>
2137
+ <dd></dd>
2138
+ <dt>
2139
+ <a class="link" href="gobject-Generic-values.html#G-TYPE-VALUE:CAPS" title="G_TYPE_VALUE">G_TYPE_VALUE</a>, macro in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2140
+ </dt>
2141
+ <dd></dd>
2142
+ <dt>
2143
+ <a class="link" href="gobject-Generic-values.html#G-TYPE-VALUE-ARRAY:CAPS" title="G_TYPE_VALUE_ARRAY">G_TYPE_VALUE_ARRAY</a>, macro in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2144
+ </dt>
2145
+ <dd></dd>
2146
+ <dt>
2147
+ <a class="link" href="gobject-Type-Information.html#g-type-value-table-peek" title="g_type_value_table_peek ()">g_type_value_table_peek</a>, function in <a class="link" href="gobject-Type-Information.html" title="Type Information">Type Information</a>
2148
+ </dt>
2149
+ <dd></dd>
2150
+ <dt>
2151
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-VARIANT:CAPS" title="G_TYPE_VARIANT">G_TYPE_VARIANT</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
2152
+ </dt>
2153
+ <dd></dd>
2154
+ <dt>
2155
+ <a class="link" href="gobject-Boxed-Types.html#G-TYPE-VARIANT-TYPE:CAPS" title="G_TYPE_VARIANT_TYPE">G_TYPE_VARIANT_TYPE</a>, macro in <a class="link" href="gobject-Boxed-Types.html" title="Boxed Types">Boxed Types</a>
2156
+ </dt>
2157
+ <dd></dd>
2158
+ <a name="idxV"></a><h3 class="title">V</h3>
2159
+ <dt>
2160
+ <a class="link" href="gobject-Generic-values.html#GValue" title="GValue">GValue</a>, struct in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2161
+ </dt>
2162
+ <dd></dd>
2163
+ <dt>
2164
+ <a class="link" href="gobject-Value-arrays.html#GValueArray" title="GValueArray">GValueArray</a>, struct in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2165
+ </dt>
2166
+ <dd></dd>
2167
+ <dt>
2168
+ <a class="link" href="gobject-Generic-values.html#GValueTransform" title="GValueTransform ()">GValueTransform</a>, user_function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2169
+ </dt>
2170
+ <dd></dd>
2171
+ <dt>
2172
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-append" title="g_value_array_append ()">g_value_array_append</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2173
+ </dt>
2174
+ <dd></dd>
2175
+ <dt>
2176
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-copy" title="g_value_array_copy ()">g_value_array_copy</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2177
+ </dt>
2178
+ <dd></dd>
2179
+ <dt>
2180
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-free" title="g_value_array_free ()">g_value_array_free</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2181
+ </dt>
2182
+ <dd></dd>
2183
+ <dt>
2184
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-get-nth" title="g_value_array_get_nth ()">g_value_array_get_nth</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2185
+ </dt>
2186
+ <dd></dd>
2187
+ <dt>
2188
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-insert" title="g_value_array_insert ()">g_value_array_insert</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2189
+ </dt>
2190
+ <dd></dd>
2191
+ <dt>
2192
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-new" title="g_value_array_new ()">g_value_array_new</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2193
+ </dt>
2194
+ <dd></dd>
2195
+ <dt>
2196
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-prepend" title="g_value_array_prepend ()">g_value_array_prepend</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2197
+ </dt>
2198
+ <dd></dd>
2199
+ <dt>
2200
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-remove" title="g_value_array_remove ()">g_value_array_remove</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2201
+ </dt>
2202
+ <dd></dd>
2203
+ <dt>
2204
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-sort" title="g_value_array_sort ()">g_value_array_sort</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2205
+ </dt>
2206
+ <dd></dd>
2207
+ <dt>
2208
+ <a class="link" href="gobject-Value-arrays.html#g-value-array-sort-with-data" title="g_value_array_sort_with_data ()">g_value_array_sort_with_data</a>, function in <a class="link" href="gobject-Value-arrays.html" title="Value arrays">Value arrays</a>
2209
+ </dt>
2210
+ <dd></dd>
2211
+ <dt>
2212
+ <a class="link" href="gobject-Varargs-Value-Collection.html#G-VALUE-COLLECT:CAPS" title="G_VALUE_COLLECT()">G_VALUE_COLLECT</a>, macro in <a class="link" href="gobject-Varargs-Value-Collection.html" title="Varargs Value Collection">Varargs Value Collection</a>
2213
+ </dt>
2214
+ <dd></dd>
2215
+ <dt>
2216
+ <a class="link" href="gobject-Varargs-Value-Collection.html#G-VALUE-COLLECT-FORMAT-MAX-LENGTH:CAPS" title="G_VALUE_COLLECT_FORMAT_MAX_LENGTH">G_VALUE_COLLECT_FORMAT_MAX_LENGTH</a>, macro in <a class="link" href="gobject-Varargs-Value-Collection.html" title="Varargs Value Collection">Varargs Value Collection</a>
2217
+ </dt>
2218
+ <dd></dd>
2219
+ <dt>
2220
+ <a class="link" href="gobject-Varargs-Value-Collection.html#G-VALUE-COLLECT-INIT:CAPS" title="G_VALUE_COLLECT_INIT()">G_VALUE_COLLECT_INIT</a>, macro in <a class="link" href="gobject-Varargs-Value-Collection.html" title="Varargs Value Collection">Varargs Value Collection</a>
2221
+ </dt>
2222
+ <dd></dd>
2223
+ <dt>
2224
+ <a class="link" href="gobject-Generic-values.html#g-value-copy" title="g_value_copy ()">g_value_copy</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2225
+ </dt>
2226
+ <dd></dd>
2227
+ <dt>
2228
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-dup-boxed" title="g_value_dup_boxed ()">g_value_dup_boxed</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2229
+ </dt>
2230
+ <dd></dd>
2231
+ <dt>
2232
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-dup-object" title="g_value_dup_object ()">g_value_dup_object</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2233
+ </dt>
2234
+ <dd></dd>
2235
+ <dt>
2236
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-dup-param" title="g_value_dup_param ()">g_value_dup_param</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2237
+ </dt>
2238
+ <dd></dd>
2239
+ <dt>
2240
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-dup-string" title="g_value_dup_string ()">g_value_dup_string</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2241
+ </dt>
2242
+ <dd></dd>
2243
+ <dt>
2244
+ <a class="link" href="gobject-Generic-values.html#g-value-fits-pointer" title="g_value_fits_pointer ()">g_value_fits_pointer</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2245
+ </dt>
2246
+ <dd></dd>
2247
+ <dt>
2248
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-boolean" title="g_value_get_boolean ()">g_value_get_boolean</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2249
+ </dt>
2250
+ <dd></dd>
2251
+ <dt>
2252
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-boxed" title="g_value_get_boxed ()">g_value_get_boxed</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2253
+ </dt>
2254
+ <dd></dd>
2255
+ <dt>
2256
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-char" title="g_value_get_char ()">g_value_get_char</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2257
+ </dt>
2258
+ <dd></dd>
2259
+ <dt>
2260
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-double" title="g_value_get_double ()">g_value_get_double</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2261
+ </dt>
2262
+ <dd></dd>
2263
+ <dt>
2264
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-enum" title="g_value_get_enum ()">g_value_get_enum</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2265
+ </dt>
2266
+ <dd></dd>
2267
+ <dt>
2268
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-flags" title="g_value_get_flags ()">g_value_get_flags</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2269
+ </dt>
2270
+ <dd></dd>
2271
+ <dt>
2272
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-float" title="g_value_get_float ()">g_value_get_float</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2273
+ </dt>
2274
+ <dd></dd>
2275
+ <dt>
2276
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-gtype" title="g_value_get_gtype ()">g_value_get_gtype</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2277
+ </dt>
2278
+ <dd></dd>
2279
+ <dt>
2280
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-int" title="g_value_get_int ()">g_value_get_int</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2281
+ </dt>
2282
+ <dd></dd>
2283
+ <dt>
2284
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-int64" title="g_value_get_int64 ()">g_value_get_int64</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2285
+ </dt>
2286
+ <dd></dd>
2287
+ <dt>
2288
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-long" title="g_value_get_long ()">g_value_get_long</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2289
+ </dt>
2290
+ <dd></dd>
2291
+ <dt>
2292
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-object" title="g_value_get_object ()">g_value_get_object</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2293
+ </dt>
2294
+ <dd></dd>
2295
+ <dt>
2296
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-param" title="g_value_get_param ()">g_value_get_param</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2297
+ </dt>
2298
+ <dd></dd>
2299
+ <dt>
2300
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-pointer" title="g_value_get_pointer ()">g_value_get_pointer</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2301
+ </dt>
2302
+ <dd></dd>
2303
+ <dt>
2304
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-string" title="g_value_get_string ()">g_value_get_string</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2305
+ </dt>
2306
+ <dd></dd>
2307
+ <dt>
2308
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-uchar" title="g_value_get_uchar ()">g_value_get_uchar</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2309
+ </dt>
2310
+ <dd></dd>
2311
+ <dt>
2312
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-uint" title="g_value_get_uint ()">g_value_get_uint</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2313
+ </dt>
2314
+ <dd></dd>
2315
+ <dt>
2316
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-uint64" title="g_value_get_uint64 ()">g_value_get_uint64</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2317
+ </dt>
2318
+ <dd></dd>
2319
+ <dt>
2320
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-get-ulong" title="g_value_get_ulong ()">g_value_get_ulong</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2321
+ </dt>
2322
+ <dd></dd>
2323
+ <dt>
2324
+ <a class="link" href="gobject-Generic-values.html#G-VALUE-HOLDS:CAPS" title="G_VALUE_HOLDS()">G_VALUE_HOLDS</a>, macro in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2325
+ </dt>
2326
+ <dd></dd>
2327
+ <dt>
2328
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-BOOLEAN:CAPS" title="G_VALUE_HOLDS_BOOLEAN()">G_VALUE_HOLDS_BOOLEAN</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2329
+ </dt>
2330
+ <dd></dd>
2331
+ <dt>
2332
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-BOXED:CAPS" title="G_VALUE_HOLDS_BOXED()">G_VALUE_HOLDS_BOXED</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2333
+ </dt>
2334
+ <dd></dd>
2335
+ <dt>
2336
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-CHAR:CAPS" title="G_VALUE_HOLDS_CHAR()">G_VALUE_HOLDS_CHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2337
+ </dt>
2338
+ <dd></dd>
2339
+ <dt>
2340
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-DOUBLE:CAPS" title="G_VALUE_HOLDS_DOUBLE()">G_VALUE_HOLDS_DOUBLE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2341
+ </dt>
2342
+ <dd></dd>
2343
+ <dt>
2344
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-ENUM:CAPS" title="G_VALUE_HOLDS_ENUM()">G_VALUE_HOLDS_ENUM</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2345
+ </dt>
2346
+ <dd></dd>
2347
+ <dt>
2348
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-FLAGS:CAPS" title="G_VALUE_HOLDS_FLAGS()">G_VALUE_HOLDS_FLAGS</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2349
+ </dt>
2350
+ <dd></dd>
2351
+ <dt>
2352
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-FLOAT:CAPS" title="G_VALUE_HOLDS_FLOAT()">G_VALUE_HOLDS_FLOAT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2353
+ </dt>
2354
+ <dd></dd>
2355
+ <dt>
2356
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-GTYPE:CAPS" title="G_VALUE_HOLDS_GTYPE()">G_VALUE_HOLDS_GTYPE</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2357
+ </dt>
2358
+ <dd></dd>
2359
+ <dt>
2360
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-INT:CAPS" title="G_VALUE_HOLDS_INT()">G_VALUE_HOLDS_INT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2361
+ </dt>
2362
+ <dd></dd>
2363
+ <dt>
2364
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-INT64:CAPS" title="G_VALUE_HOLDS_INT64()">G_VALUE_HOLDS_INT64</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2365
+ </dt>
2366
+ <dd></dd>
2367
+ <dt>
2368
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-LONG:CAPS" title="G_VALUE_HOLDS_LONG()">G_VALUE_HOLDS_LONG</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2369
+ </dt>
2370
+ <dd></dd>
2371
+ <dt>
2372
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-OBJECT:CAPS" title="G_VALUE_HOLDS_OBJECT()">G_VALUE_HOLDS_OBJECT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2373
+ </dt>
2374
+ <dd></dd>
2375
+ <dt>
2376
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-PARAM:CAPS" title="G_VALUE_HOLDS_PARAM()">G_VALUE_HOLDS_PARAM</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2377
+ </dt>
2378
+ <dd></dd>
2379
+ <dt>
2380
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-POINTER:CAPS" title="G_VALUE_HOLDS_POINTER()">G_VALUE_HOLDS_POINTER</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2381
+ </dt>
2382
+ <dd></dd>
2383
+ <dt>
2384
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-STRING:CAPS" title="G_VALUE_HOLDS_STRING()">G_VALUE_HOLDS_STRING</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2385
+ </dt>
2386
+ <dd></dd>
2387
+ <dt>
2388
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-UCHAR:CAPS" title="G_VALUE_HOLDS_UCHAR()">G_VALUE_HOLDS_UCHAR</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2389
+ </dt>
2390
+ <dd></dd>
2391
+ <dt>
2392
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-UINT:CAPS" title="G_VALUE_HOLDS_UINT()">G_VALUE_HOLDS_UINT</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2393
+ </dt>
2394
+ <dd></dd>
2395
+ <dt>
2396
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-UINT64:CAPS" title="G_VALUE_HOLDS_UINT64()">G_VALUE_HOLDS_UINT64</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2397
+ </dt>
2398
+ <dd></dd>
2399
+ <dt>
2400
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#G-VALUE-HOLDS-ULONG:CAPS" title="G_VALUE_HOLDS_ULONG()">G_VALUE_HOLDS_ULONG</a>, macro in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2401
+ </dt>
2402
+ <dd></dd>
2403
+ <dt>
2404
+ <a class="link" href="gobject-Generic-values.html#g-value-init" title="g_value_init ()">g_value_init</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2405
+ </dt>
2406
+ <dd></dd>
2407
+ <dt>
2408
+ <a class="link" href="gobject-Varargs-Value-Collection.html#G-VALUE-LCOPY:CAPS" title="G_VALUE_LCOPY()">G_VALUE_LCOPY</a>, macro in <a class="link" href="gobject-Varargs-Value-Collection.html" title="Varargs Value Collection">Varargs Value Collection</a>
2409
+ </dt>
2410
+ <dd></dd>
2411
+ <dt>
2412
+ <a class="link" href="gobject-Generic-values.html#g-value-peek-pointer" title="g_value_peek_pointer ()">g_value_peek_pointer</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2413
+ </dt>
2414
+ <dd></dd>
2415
+ <dt>
2416
+ <a class="link" href="gobject-Generic-values.html#g-value-register-transform-func" title="g_value_register_transform_func ()">g_value_register_transform_func</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2417
+ </dt>
2418
+ <dd></dd>
2419
+ <dt>
2420
+ <a class="link" href="gobject-Generic-values.html#g-value-reset" title="g_value_reset ()">g_value_reset</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2421
+ </dt>
2422
+ <dd></dd>
2423
+ <dt>
2424
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-boolean" title="g_value_set_boolean ()">g_value_set_boolean</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2425
+ </dt>
2426
+ <dd></dd>
2427
+ <dt>
2428
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-boxed" title="g_value_set_boxed ()">g_value_set_boxed</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2429
+ </dt>
2430
+ <dd></dd>
2431
+ <dt>
2432
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-boxed-take-ownership" title="g_value_set_boxed_take_ownership ()">g_value_set_boxed_take_ownership</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2433
+ </dt>
2434
+ <dd></dd>
2435
+ <dt>
2436
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-char" title="g_value_set_char ()">g_value_set_char</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2437
+ </dt>
2438
+ <dd></dd>
2439
+ <dt>
2440
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-double" title="g_value_set_double ()">g_value_set_double</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2441
+ </dt>
2442
+ <dd></dd>
2443
+ <dt>
2444
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-enum" title="g_value_set_enum ()">g_value_set_enum</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2445
+ </dt>
2446
+ <dd></dd>
2447
+ <dt>
2448
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-flags" title="g_value_set_flags ()">g_value_set_flags</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2449
+ </dt>
2450
+ <dd></dd>
2451
+ <dt>
2452
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-float" title="g_value_set_float ()">g_value_set_float</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2453
+ </dt>
2454
+ <dd></dd>
2455
+ <dt>
2456
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-gtype" title="g_value_set_gtype ()">g_value_set_gtype</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2457
+ </dt>
2458
+ <dd></dd>
2459
+ <dt>
2460
+ <a class="link" href="gobject-Generic-values.html#g-value-set-instance" title="g_value_set_instance ()">g_value_set_instance</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2461
+ </dt>
2462
+ <dd></dd>
2463
+ <dt>
2464
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-int" title="g_value_set_int ()">g_value_set_int</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2465
+ </dt>
2466
+ <dd></dd>
2467
+ <dt>
2468
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-int64" title="g_value_set_int64 ()">g_value_set_int64</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2469
+ </dt>
2470
+ <dd></dd>
2471
+ <dt>
2472
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-long" title="g_value_set_long ()">g_value_set_long</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2473
+ </dt>
2474
+ <dd></dd>
2475
+ <dt>
2476
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-object" title="g_value_set_object ()">g_value_set_object</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2477
+ </dt>
2478
+ <dd></dd>
2479
+ <dt>
2480
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-object-take-ownership" title="g_value_set_object_take_ownership ()">g_value_set_object_take_ownership</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2481
+ </dt>
2482
+ <dd></dd>
2483
+ <dt>
2484
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-param" title="g_value_set_param ()">g_value_set_param</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2485
+ </dt>
2486
+ <dd></dd>
2487
+ <dt>
2488
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-param-take-ownership" title="g_value_set_param_take_ownership ()">g_value_set_param_take_ownership</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2489
+ </dt>
2490
+ <dd></dd>
2491
+ <dt>
2492
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-pointer" title="g_value_set_pointer ()">g_value_set_pointer</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2493
+ </dt>
2494
+ <dd></dd>
2495
+ <dt>
2496
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-static-boxed" title="g_value_set_static_boxed ()">g_value_set_static_boxed</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2497
+ </dt>
2498
+ <dd></dd>
2499
+ <dt>
2500
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-static-string" title="g_value_set_static_string ()">g_value_set_static_string</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2501
+ </dt>
2502
+ <dd></dd>
2503
+ <dt>
2504
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-string" title="g_value_set_string ()">g_value_set_string</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2505
+ </dt>
2506
+ <dd></dd>
2507
+ <dt>
2508
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-string-take-ownership" title="g_value_set_string_take_ownership ()">g_value_set_string_take_ownership</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2509
+ </dt>
2510
+ <dd></dd>
2511
+ <dt>
2512
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-uchar" title="g_value_set_uchar ()">g_value_set_uchar</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2513
+ </dt>
2514
+ <dd></dd>
2515
+ <dt>
2516
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-uint" title="g_value_set_uint ()">g_value_set_uint</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2517
+ </dt>
2518
+ <dd></dd>
2519
+ <dt>
2520
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-uint64" title="g_value_set_uint64 ()">g_value_set_uint64</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2521
+ </dt>
2522
+ <dd></dd>
2523
+ <dt>
2524
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-set-ulong" title="g_value_set_ulong ()">g_value_set_ulong</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2525
+ </dt>
2526
+ <dd></dd>
2527
+ <dt>
2528
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-take-boxed" title="g_value_take_boxed ()">g_value_take_boxed</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2529
+ </dt>
2530
+ <dd></dd>
2531
+ <dt>
2532
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-take-object" title="g_value_take_object ()">g_value_take_object</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2533
+ </dt>
2534
+ <dd></dd>
2535
+ <dt>
2536
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-take-param" title="g_value_take_param ()">g_value_take_param</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2537
+ </dt>
2538
+ <dd></dd>
2539
+ <dt>
2540
+ <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html#g-value-take-string" title="g_value_take_string ()">g_value_take_string</a>, function in <a class="link" href="gobject-Standard-Parameter-and-Value-Types.html" title="Parameters and Values">Standard Parameter and Value Types</a>
2541
+ </dt>
2542
+ <dd></dd>
2543
+ <dt>
2544
+ <a class="link" href="gobject-Generic-values.html#g-value-transform" title="g_value_transform ()">g_value_transform</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2545
+ </dt>
2546
+ <dd></dd>
2547
+ <dt>
2548
+ <a class="link" href="gobject-Generic-values.html#G-VALUE-TYPE:CAPS" title="G_VALUE_TYPE()">G_VALUE_TYPE</a>, macro in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2549
+ </dt>
2550
+ <dd></dd>
2551
+ <dt>
2552
+ <a class="link" href="gobject-Generic-values.html#g-value-type-compatible" title="g_value_type_compatible ()">g_value_type_compatible</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2553
+ </dt>
2554
+ <dd></dd>
2555
+ <dt>
2556
+ <a class="link" href="gobject-Generic-values.html#G-VALUE-TYPE-NAME:CAPS" title="G_VALUE_TYPE_NAME()">G_VALUE_TYPE_NAME</a>, macro in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2557
+ </dt>
2558
+ <dd></dd>
2559
+ <dt>
2560
+ <a class="link" href="gobject-Generic-values.html#g-value-type-transformable" title="g_value_type_transformable ()">g_value_type_transformable</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2561
+ </dt>
2562
+ <dd></dd>
2563
+ <dt>
2564
+ <a class="link" href="gobject-Generic-values.html#g-value-unset" title="g_value_unset ()">g_value_unset</a>, function in <a class="link" href="gobject-Generic-values.html" title="Generic values">Generic values</a>
2565
+ </dt>
2566
+ <dd></dd>
2567
+ <a name="idxW"></a><h3 class="title">W</h3>
2568
+ <dt>
2569
+ <a class="link" href="gobject-The-Base-Object-Type.html#GWeakNotify" title="GWeakNotify ()">GWeakNotify</a>, user_function in <a class="link" href="gobject-The-Base-Object-Type.html" title="The Base Object Type">The Base Object Type</a>
2570
+ </dt>
2571
+ <dd></dd>
2572
+ </div>
2573
+ <div class="footer">
2574
+ <hr>
2575
+ Generated by GTK-Doc V1.14</div>
2576
+ </body>
2577
+ </html>