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,3116 @@
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>GFileInfo</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
7
+ <link rel="home" href="index.html" title="GIO Reference Manual">
8
+ <link rel="up" href="file_ops.html" title="File Operations">
9
+ <link rel="prev" href="gio-GFileAttribute.html" title="GFileAttribute">
10
+ <link rel="next" href="GFileEnumerator.html" title="GFileEnumerator">
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="gio-GFileAttribute.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="file_ops.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></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">GIO Reference Manual</th>
21
+ <td><a accesskey="n" href="GFileEnumerator.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 href="#GFileInfo.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GFileInfo.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GFileInfo.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+ </td></tr>
30
+ </table>
31
+ <div class="refentry" title="GFileInfo">
32
+ <a name="GFileInfo"></a><div class="titlepage"></div>
33
+ <div class="refnamediv"><table width="100%"><tr>
34
+ <td valign="top">
35
+ <h2><span class="refentrytitle"><a name="GFileInfo.top_of_page"></a>GFileInfo</span></h2>
36
+ <p>GFileInfo — File Information and Attributes</p>
37
+ </td>
38
+ <td valign="top" align="right"></td>
39
+ </tr></table></div>
40
+ <div class="refsynopsisdiv" title="Synopsis">
41
+ <a name="GFileInfo.synopsis"></a><h2>Synopsis</h2>
42
+ <pre class="synopsis">
43
+ #include &lt;gio/gio.h&gt;
44
+
45
+ <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher">GFileAttributeMatcher</a>;
46
+ enum <a class="link" href="GFileInfo.html#GFileType" title="enum GFileType">GFileType</a>;
47
+ <a class="link" href="GFileInfo.html#GFileInfo-struct" title="GFileInfo">GFileInfo</a>;
48
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_TYPE">G_FILE_ATTRIBUTE_STANDARD_TYPE</a>
49
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN">G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN</a>
50
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-BACKUP:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP">G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP</a>
51
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK">G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK</a>
52
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-VIRTUAL:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL">G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL</a>
53
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_NAME">G_FILE_ATTRIBUTE_STANDARD_NAME</a>
54
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME">G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME</a>
55
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME">G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME</a>
56
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-COPY-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_COPY_NAME">G_FILE_ATTRIBUTE_STANDARD_COPY_NAME</a>
57
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_ICON">G_FILE_ATTRIBUTE_STANDARD_ICON</a>
58
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE">G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE</a>
59
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-FAST-CONTENT-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE">G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE</a>
60
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SIZE">G_FILE_ATTRIBUTE_STANDARD_SIZE</a>
61
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ALLOCATED-SIZE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE">G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE</a>
62
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET">G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET</a>
63
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TARGET-URI:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_TARGET_URI">G_FILE_ATTRIBUTE_STANDARD_TARGET_URI</a>
64
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER">G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER</a>
65
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS" title="G_FILE_ATTRIBUTE_ETAG_VALUE">G_FILE_ATTRIBUTE_ETAG_VALUE</a>
66
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ID-FILE:CAPS" title="G_FILE_ATTRIBUTE_ID_FILE">G_FILE_ATTRIBUTE_ID_FILE</a>
67
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ID-FILESYSTEM:CAPS" title="G_FILE_ATTRIBUTE_ID_FILESYSTEM">G_FILE_ATTRIBUTE_ID_FILESYSTEM</a>
68
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-READ:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_READ">G_FILE_ATTRIBUTE_ACCESS_CAN_READ</a>
69
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-WRITE:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE">G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE</a>
70
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-EXECUTE:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE">G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE</a>
71
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-DELETE:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE">G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE</a>
72
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-TRASH:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH">G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH</a>
73
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-RENAME:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME">G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME</a>
74
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-MOUNT:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT</a>
75
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-UNMOUNT:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT</a>
76
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-EJECT:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT</a>
77
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE">G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE</a>
78
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE-FILE:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE">G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE</a>
79
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-HAL-UDI:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI">G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI</a>
80
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-POLL:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL</a>
81
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-IS-MEDIA-CHECK-AUTOMATIC:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC">G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC</a>
82
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START</a>
83
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START-DEGRADED:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED</a>
84
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-STOP:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP</a>
85
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-START-STOP-TYPE:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE">G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE</a>
86
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS" title="G_FILE_ATTRIBUTE_TIME_MODIFIED">G_FILE_ATTRIBUTE_TIME_MODIFIED</a>
87
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED-USEC:CAPS" title="G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC">G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC</a>
88
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS" title="G_FILE_ATTRIBUTE_TIME_ACCESS">G_FILE_ATTRIBUTE_TIME_ACCESS</a>
89
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS-USEC:CAPS" title="G_FILE_ATTRIBUTE_TIME_ACCESS_USEC">G_FILE_ATTRIBUTE_TIME_ACCESS_USEC</a>
90
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS" title="G_FILE_ATTRIBUTE_TIME_CHANGED">G_FILE_ATTRIBUTE_TIME_CHANGED</a>
91
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED-USEC:CAPS" title="G_FILE_ATTRIBUTE_TIME_CHANGED_USEC">G_FILE_ATTRIBUTE_TIME_CHANGED_USEC</a>
92
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED:CAPS" title="G_FILE_ATTRIBUTE_TIME_CREATED">G_FILE_ATTRIBUTE_TIME_CREATED</a>
93
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED-USEC:CAPS" title="G_FILE_ATTRIBUTE_TIME_CREATED_USEC">G_FILE_ATTRIBUTE_TIME_CREATED_USEC</a>
94
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-DEVICE:CAPS" title="G_FILE_ATTRIBUTE_UNIX_DEVICE">G_FILE_ATTRIBUTE_UNIX_DEVICE</a>
95
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-INODE:CAPS" title="G_FILE_ATTRIBUTE_UNIX_INODE">G_FILE_ATTRIBUTE_UNIX_INODE</a>
96
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-MODE:CAPS" title="G_FILE_ATTRIBUTE_UNIX_MODE">G_FILE_ATTRIBUTE_UNIX_MODE</a>
97
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-NLINK:CAPS" title="G_FILE_ATTRIBUTE_UNIX_NLINK">G_FILE_ATTRIBUTE_UNIX_NLINK</a>
98
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-UID:CAPS" title="G_FILE_ATTRIBUTE_UNIX_UID">G_FILE_ATTRIBUTE_UNIX_UID</a>
99
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-GID:CAPS" title="G_FILE_ATTRIBUTE_UNIX_GID">G_FILE_ATTRIBUTE_UNIX_GID</a>
100
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-RDEV:CAPS" title="G_FILE_ATTRIBUTE_UNIX_RDEV">G_FILE_ATTRIBUTE_UNIX_RDEV</a>
101
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-BLOCK-SIZE:CAPS" title="G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE">G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE</a>
102
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-BLOCKS:CAPS" title="G_FILE_ATTRIBUTE_UNIX_BLOCKS">G_FILE_ATTRIBUTE_UNIX_BLOCKS</a>
103
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-IS-MOUNTPOINT:CAPS" title="G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT">G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT</a>
104
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-DOS-IS-ARCHIVE:CAPS" title="G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE">G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE</a>
105
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-DOS-IS-SYSTEM:CAPS" title="G_FILE_ATTRIBUTE_DOS_IS_SYSTEM">G_FILE_ATTRIBUTE_DOS_IS_SYSTEM</a>
106
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-USER:CAPS" title="G_FILE_ATTRIBUTE_OWNER_USER">G_FILE_ATTRIBUTE_OWNER_USER</a>
107
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-USER-REAL:CAPS" title="G_FILE_ATTRIBUTE_OWNER_USER_REAL">G_FILE_ATTRIBUTE_OWNER_USER_REAL</a>
108
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-GROUP:CAPS" title="G_FILE_ATTRIBUTE_OWNER_GROUP">G_FILE_ATTRIBUTE_OWNER_GROUP</a>
109
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAIL-PATH:CAPS" title="G_FILE_ATTRIBUTE_THUMBNAIL_PATH">G_FILE_ATTRIBUTE_THUMBNAIL_PATH</a>
110
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAILING-FAILED:CAPS" title="G_FILE_ATTRIBUTE_THUMBNAILING_FAILED">G_FILE_ATTRIBUTE_THUMBNAILING_FAILED</a>
111
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-PREVIEW-ICON:CAPS" title="G_FILE_ATTRIBUTE_PREVIEW_ICON">G_FILE_ATTRIBUTE_PREVIEW_ICON</a>
112
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-SIZE:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_SIZE">G_FILE_ATTRIBUTE_FILESYSTEM_SIZE</a>
113
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-FREE:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_FREE">G_FILE_ATTRIBUTE_FILESYSTEM_FREE</a>
114
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-TYPE:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_TYPE">G_FILE_ATTRIBUTE_FILESYSTEM_TYPE</a>
115
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-READONLY:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_READONLY">G_FILE_ATTRIBUTE_FILESYSTEM_READONLY</a>
116
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-GVFS-BACKEND:CAPS" title="G_FILE_ATTRIBUTE_GVFS_BACKEND">G_FILE_ATTRIBUTE_GVFS_BACKEND</a>
117
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-SELINUX-CONTEXT:CAPS" title="G_FILE_ATTRIBUTE_SELINUX_CONTEXT">G_FILE_ATTRIBUTE_SELINUX_CONTEXT</a>
118
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TRASH-ITEM-COUNT:CAPS" title="G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT">G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT</a>
119
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-USE-PREVIEW:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW">G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW</a>
120
+ #define <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DESCRIPTION:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION">G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION</a>
121
+ <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="returnvalue">GFileInfo</span></a> * <a class="link" href="GFileInfo.html#g-file-info-new" title="g_file_info_new ()">g_file_info_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
122
+ <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="returnvalue">GFileInfo</span></a> * <a class="link" href="GFileInfo.html#g-file-info-dup" title="g_file_info_dup ()">g_file_info_dup</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *other</code></em>);
123
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-copy-into" title="g_file_info_copy_into ()">g_file_info_copy_into</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *src_info</code></em>,
124
+ <em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *dest_info</code></em>);
125
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-info-has-attribute" title="g_file_info_has_attribute ()">g_file_info_has_attribute</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
126
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
127
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-info-has-namespace" title="g_file_info_has_namespace ()">g_file_info_has_namespace</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
128
+ <em class="parameter"><code>const <span class="type">char</span> *name_space</code></em>);
129
+ <span class="returnvalue">char</span> ** <a class="link" href="GFileInfo.html#g-file-info-list-attributes" title="g_file_info_list_attributes ()">g_file_info_list_attributes</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
130
+ <em class="parameter"><code>const <span class="type">char</span> *name_space</code></em>);
131
+ <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="returnvalue">GFileAttributeType</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-attribute-type" title="g_file_info_get_attribute_type ()">g_file_info_get_attribute_type</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
132
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
133
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-remove-attribute" title="g_file_info_remove_attribute ()">g_file_info_remove_attribute</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
134
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
135
+ <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-info-get-attribute-as-string" title="g_file_info_get_attribute_as_string ()">g_file_info_get_attribute_as_string</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
136
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
137
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-attribute-data" title="g_file_info_get_attribute_data ()">g_file_info_get_attribute_data</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
138
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
139
+ <em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> *type</code></em>,
140
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> *value_pp</code></em>,
141
+ <em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a> *status</code></em>);
142
+ <a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="returnvalue">GFileAttributeStatus</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-attribute-status" title="g_file_info_get_attribute_status ()">g_file_info_get_attribute_status</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
143
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
144
+ const <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-info-get-attribute-string" title="g_file_info_get_attribute_string ()">g_file_info_get_attribute_string</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
145
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
146
+ <span class="returnvalue">char</span> ** <a class="link" href="GFileInfo.html#g-file-info-get-attribute-stringv" title="g_file_info_get_attribute_stringv ()">g_file_info_get_attribute_stringv</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
147
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
148
+ const <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-info-get-attribute-byte-string" title="g_file_info_get_attribute_byte_string ()">g_file_info_get_attribute_byte_string</a>
149
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
150
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
151
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-attribute-boolean" title="g_file_info_get_attribute_boolean ()">g_file_info_get_attribute_boolean</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
152
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
153
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-attribute-uint32" title="g_file_info_get_attribute_uint32 ()">g_file_info_get_attribute_uint32</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
154
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
155
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint32"><span class="returnvalue">gint32</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-attribute-int32" title="g_file_info_get_attribute_int32 ()">g_file_info_get_attribute_int32</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
156
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
157
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-attribute-uint64" title="g_file_info_get_attribute_uint64 ()">g_file_info_get_attribute_uint64</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
158
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
159
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="returnvalue">gint64</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-attribute-int64" title="g_file_info_get_attribute_int64 ()">g_file_info_get_attribute_int64</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
160
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
161
+ <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a> * <a class="link" href="GFileInfo.html#g-file-info-get-attribute-object" title="g_file_info_get_attribute_object ()">g_file_info_get_attribute_object</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
162
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
163
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute" title="g_file_info_set_attribute ()">g_file_info_set_attribute</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
164
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
165
+ <em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> type</code></em>,
166
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> value_p</code></em>);
167
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-status" title="g_file_info_set_attribute_status ()">g_file_info_set_attribute_status</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
168
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
169
+ <em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a> status</code></em>);
170
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-string" title="g_file_info_set_attribute_string ()">g_file_info_set_attribute_string</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
171
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
172
+ <em class="parameter"><code>const <span class="type">char</span> *attr_value</code></em>);
173
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-stringv" title="g_file_info_set_attribute_stringv ()">g_file_info_set_attribute_stringv</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
174
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
175
+ <em class="parameter"><code><span class="type">char</span> **attr_value</code></em>);
176
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-byte-string" title="g_file_info_set_attribute_byte_string ()">g_file_info_set_attribute_byte_string</a>
177
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
178
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
179
+ <em class="parameter"><code>const <span class="type">char</span> *attr_value</code></em>);
180
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-boolean" title="g_file_info_set_attribute_boolean ()">g_file_info_set_attribute_boolean</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
181
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
182
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> attr_value</code></em>);
183
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-uint32" title="g_file_info_set_attribute_uint32 ()">g_file_info_set_attribute_uint32</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
184
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
185
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> attr_value</code></em>);
186
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-int32" title="g_file_info_set_attribute_int32 ()">g_file_info_set_attribute_int32</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
187
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
188
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint32"><span class="type">gint32</span></a> attr_value</code></em>);
189
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-uint64" title="g_file_info_set_attribute_uint64 ()">g_file_info_set_attribute_uint64</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
190
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
191
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> attr_value</code></em>);
192
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-int64" title="g_file_info_set_attribute_int64 ()">g_file_info_set_attribute_int64</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
193
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
194
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> attr_value</code></em>);
195
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-object" title="g_file_info_set_attribute_object ()">g_file_info_set_attribute_object</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
196
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
197
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *attr_value</code></em>);
198
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-clear-status" title="g_file_info_clear_status ()">g_file_info_clear_status</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
199
+ <a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="returnvalue">GFileType</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-file-type" title="g_file_info_get_file_type ()">g_file_info_get_file_type</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
200
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-is-hidden" title="g_file_info_get_is_hidden ()">g_file_info_get_is_hidden</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
201
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-is-backup" title="g_file_info_get_is_backup ()">g_file_info_get_is_backup</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
202
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-is-symlink" title="g_file_info_get_is_symlink ()">g_file_info_get_is_symlink</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
203
+ const <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-info-get-name" title="g_file_info_get_name ()">g_file_info_get_name</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
204
+ const <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-info-get-display-name" title="g_file_info_get_display_name ()">g_file_info_get_display_name</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
205
+ const <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-info-get-edit-name" title="g_file_info_get_edit_name ()">g_file_info_get_edit_name</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
206
+ <a class="link" href="GIcon.html" title="GIcon"><span class="returnvalue">GIcon</span></a> * <a class="link" href="GFileInfo.html#g-file-info-get-icon" title="g_file_info_get_icon ()">g_file_info_get_icon</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
207
+ const <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-info-get-content-type" title="g_file_info_get_content_type ()">g_file_info_get_content_type</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
208
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#goffset"><span class="returnvalue">goffset</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-size" title="g_file_info_get_size ()">g_file_info_get_size</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
209
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-get-modification-time" title="g_file_info_get_modification_time ()">g_file_info_get_modification_time</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
210
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> *result</code></em>);
211
+ const <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-info-get-symlink-target" title="g_file_info_get_symlink_target ()">g_file_info_get_symlink_target</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
212
+ const <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-info-get-etag" title="g_file_info_get_etag ()">g_file_info_get_etag</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
213
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint32"><span class="returnvalue">gint32</span></a> <a class="link" href="GFileInfo.html#g-file-info-get-sort-order" title="g_file_info_get_sort_order ()">g_file_info_get_sort_order</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
214
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-attribute-mask" title="g_file_info_set_attribute_mask ()">g_file_info_set_attribute_mask</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
215
+ <em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *mask</code></em>);
216
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-unset-attribute-mask" title="g_file_info_unset_attribute_mask ()">g_file_info_unset_attribute_mask</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);
217
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-file-type" title="g_file_info_set_file_type ()">g_file_info_set_file_type</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
218
+ <em class="parameter"><code><a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="type">GFileType</span></a> type</code></em>);
219
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-is-hidden" title="g_file_info_set_is_hidden ()">g_file_info_set_is_hidden</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
220
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_hidden</code></em>);
221
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-is-symlink" title="g_file_info_set_is_symlink ()">g_file_info_set_is_symlink</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
222
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_symlink</code></em>);
223
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-name" title="g_file_info_set_name ()">g_file_info_set_name</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
224
+ <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);
225
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-display-name" title="g_file_info_set_display_name ()">g_file_info_set_display_name</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
226
+ <em class="parameter"><code>const <span class="type">char</span> *display_name</code></em>);
227
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-edit-name" title="g_file_info_set_edit_name ()">g_file_info_set_edit_name</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
228
+ <em class="parameter"><code>const <span class="type">char</span> *edit_name</code></em>);
229
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-icon" title="g_file_info_set_icon ()">g_file_info_set_icon</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
230
+ <em class="parameter"><code><a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a> *icon</code></em>);
231
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-content-type" title="g_file_info_set_content_type ()">g_file_info_set_content_type</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
232
+ <em class="parameter"><code>const <span class="type">char</span> *content_type</code></em>);
233
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-size" title="g_file_info_set_size ()">g_file_info_set_size</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
234
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#goffset"><span class="type">goffset</span></a> size</code></em>);
235
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-modification-time" title="g_file_info_set_modification_time ()">g_file_info_set_modification_time</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
236
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> *mtime</code></em>);
237
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-symlink-target" title="g_file_info_set_symlink_target ()">g_file_info_set_symlink_target</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
238
+ <em class="parameter"><code>const <span class="type">char</span> *symlink_target</code></em>);
239
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-info-set-sort-order" title="g_file_info_set_sort_order ()">g_file_info_set_sort_order</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
240
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint32"><span class="type">gint32</span></a> sort_order</code></em>);
241
+ <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> * <a class="link" href="GFileInfo.html#g-file-attribute-matcher-new" title="g_file_attribute_matcher_new ()">g_file_attribute_matcher_new</a> (<em class="parameter"><code>const <span class="type">char</span> *attributes</code></em>);
242
+ <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> * <a class="link" href="GFileInfo.html#g-file-attribute-matcher-ref" title="g_file_attribute_matcher_ref ()">g_file_attribute_matcher_ref</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);
243
+ <span class="returnvalue">void</span> <a class="link" href="GFileInfo.html#g-file-attribute-matcher-unref" title="g_file_attribute_matcher_unref ()">g_file_attribute_matcher_unref</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);
244
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-attribute-matcher-matches" title="g_file_attribute_matcher_matches ()">g_file_attribute_matcher_matches</a> (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
245
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
246
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-attribute-matcher-matches-only" title="g_file_attribute_matcher_matches_only ()">g_file_attribute_matcher_matches_only</a>
247
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
248
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);
249
+ <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GFileInfo.html#g-file-attribute-matcher-enumerate-namespace" title="g_file_attribute_matcher_enumerate_namespace ()">g_file_attribute_matcher_enumerate_namespace</a>
250
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
251
+ <em class="parameter"><code>const <span class="type">char</span> *ns</code></em>);
252
+ const <span class="returnvalue">char</span> * <a class="link" href="GFileInfo.html#g-file-attribute-matcher-enumerate-next" title="g_file_attribute_matcher_enumerate_next ()">g_file_attribute_matcher_enumerate_next</a>
253
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);
254
+ </pre>
255
+ </div>
256
+ <div class="refsect1" title="Object Hierarchy">
257
+ <a name="GFileInfo.object-hierarchy"></a><h2>Object Hierarchy</h2>
258
+ <pre class="synopsis">
259
+ <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
260
+ +----GFileInfo
261
+ </pre>
262
+ </div>
263
+ <div class="refsect1" title="Description">
264
+ <a name="GFileInfo.description"></a><h2>Description</h2>
265
+ <p>
266
+ Functionality for manipulating basic metadata for files. <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>
267
+ implements methods for getting information that all files should
268
+ contain, and allows for manipulation of extended attributes.
269
+ </p>
270
+ <p>
271
+ See <a class="link" href="gio-GFileAttribute.html" title="GFileAttribute">GFileAttribute</a> for more
272
+ information on how GIO handles file attributes.
273
+ </p>
274
+ <p>
275
+ To obtain a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> for a <a class="link" href="GFile.html" title="GFile"><span class="type">GFile</span></a>, use <a class="link" href="GFile.html#g-file-query-info" title="g_file_query_info ()"><code class="function">g_file_query_info()</code></a> (or its
276
+ async variant). To obtain a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> for a file input or output
277
+ stream, use <a class="link" href="GFileInputStream.html#g-file-input-stream-query-info" title="g_file_input_stream_query_info ()"><code class="function">g_file_input_stream_query_info()</code></a> or
278
+ <a class="link" href="GFileOutputStream.html#g-file-output-stream-query-info" title="g_file_output_stream_query_info ()"><code class="function">g_file_output_stream_query_info()</code></a> (or their async variants).
279
+ </p>
280
+ <p>
281
+ To change the actual attributes of a file, you should then set the
282
+ attribute in the <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> and call <a class="link" href="GFile.html#g-file-set-attributes-from-info" title="g_file_set_attributes_from_info ()"><code class="function">g_file_set_attributes_from_info()</code></a>
283
+ or <a class="link" href="GFile.html#g-file-set-attributes-async" title="g_file_set_attributes_async ()"><code class="function">g_file_set_attributes_async()</code></a> on a GFile.
284
+ </p>
285
+ <p>
286
+ However, not all attributes can be changed in the file. For instance,
287
+ the actual size of a file cannot be changed via <a class="link" href="GFileInfo.html#g-file-info-set-size" title="g_file_info_set_size ()"><code class="function">g_file_info_set_size()</code></a>.
288
+ You may call <a class="link" href="GFile.html#g-file-query-settable-attributes" title="g_file_query_settable_attributes ()"><code class="function">g_file_query_settable_attributes()</code></a> and
289
+ <a class="link" href="GFile.html#g-file-query-writable-namespaces" title="g_file_query_writable_namespaces ()"><code class="function">g_file_query_writable_namespaces()</code></a> to discover the settable attributes
290
+ of a particular file at runtime.
291
+ </p>
292
+ <p>
293
+ <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> allows for searching through a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> for
294
+ attributes.
295
+ </p>
296
+ </div>
297
+ <div class="refsect1" title="Details">
298
+ <a name="GFileInfo.details"></a><h2>Details</h2>
299
+ <div class="refsect2" title="GFileAttributeMatcher">
300
+ <a name="GFileAttributeMatcher"></a><h3>GFileAttributeMatcher</h3>
301
+ <pre class="programlisting">typedef struct _GFileAttributeMatcher GFileAttributeMatcher;</pre>
302
+ <p>
303
+ Determines if a string matches a file attribute.
304
+ </p>
305
+ </div>
306
+ <hr>
307
+ <div class="refsect2" title="enum GFileType">
308
+ <a name="GFileType"></a><h3>enum GFileType</h3>
309
+ <pre class="programlisting">typedef enum {
310
+ G_FILE_TYPE_UNKNOWN = 0,
311
+ G_FILE_TYPE_REGULAR,
312
+ G_FILE_TYPE_DIRECTORY,
313
+ G_FILE_TYPE_SYMBOLIC_LINK,
314
+ G_FILE_TYPE_SPECIAL, /* socket, fifo, blockdev, chardev */
315
+ G_FILE_TYPE_SHORTCUT,
316
+ G_FILE_TYPE_MOUNTABLE
317
+ } GFileType;
318
+ </pre>
319
+ <p>
320
+ Indicates the file's on-disk type.
321
+ </p>
322
+ <div class="variablelist"><table border="0">
323
+ <col align="left" valign="top">
324
+ <tbody>
325
+ <tr>
326
+ <td><p><a name="G-FILE-TYPE-UNKNOWN:CAPS"></a><span class="term"><code class="literal">G_FILE_TYPE_UNKNOWN</code></span></p></td>
327
+ <td>File's type is unknown.
328
+ </td>
329
+ </tr>
330
+ <tr>
331
+ <td><p><a name="G-FILE-TYPE-REGULAR:CAPS"></a><span class="term"><code class="literal">G_FILE_TYPE_REGULAR</code></span></p></td>
332
+ <td>File handle represents a regular file.
333
+ </td>
334
+ </tr>
335
+ <tr>
336
+ <td><p><a name="G-FILE-TYPE-DIRECTORY:CAPS"></a><span class="term"><code class="literal">G_FILE_TYPE_DIRECTORY</code></span></p></td>
337
+ <td>File handle represents a directory.
338
+ </td>
339
+ </tr>
340
+ <tr>
341
+ <td><p><a name="G-FILE-TYPE-SYMBOLIC-LINK:CAPS"></a><span class="term"><code class="literal">G_FILE_TYPE_SYMBOLIC_LINK</code></span></p></td>
342
+ <td>File handle represents a symbolic link
343
+ (Unix systems).
344
+ </td>
345
+ </tr>
346
+ <tr>
347
+ <td><p><a name="G-FILE-TYPE-SPECIAL:CAPS"></a><span class="term"><code class="literal">G_FILE_TYPE_SPECIAL</code></span></p></td>
348
+ <td>File is a "special" file, such as a socket, fifo,
349
+ block device, or character device.
350
+ </td>
351
+ </tr>
352
+ <tr>
353
+ <td><p><a name="G-FILE-TYPE-SHORTCUT:CAPS"></a><span class="term"><code class="literal">G_FILE_TYPE_SHORTCUT</code></span></p></td>
354
+ <td>File is a shortcut (Windows systems).
355
+ </td>
356
+ </tr>
357
+ <tr>
358
+ <td><p><a name="G-FILE-TYPE-MOUNTABLE:CAPS"></a><span class="term"><code class="literal">G_FILE_TYPE_MOUNTABLE</code></span></p></td>
359
+ <td>File is a mountable location.
360
+ </td>
361
+ </tr>
362
+ </tbody>
363
+ </table></div>
364
+ </div>
365
+ <hr>
366
+ <div class="refsect2" title="GFileInfo">
367
+ <a name="GFileInfo-struct"></a><h3>GFileInfo</h3>
368
+ <pre class="programlisting">typedef struct _GFileInfo GFileInfo;</pre>
369
+ <p>
370
+ Stores information about a file system object referenced by a <a class="link" href="GFile.html" title="GFile"><span class="type">GFile</span></a>.
371
+ </p>
372
+ </div>
373
+ <hr>
374
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_TYPE">
375
+ <a name="G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_TYPE</h3>
376
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_TYPE "standard::type" /* uint32 (GFileType) */
377
+ </pre>
378
+ <p>
379
+ A key in the "standard" namespace for storing file types.
380
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
381
+ The value for this key should contain a <a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="type">GFileType</span></a>.
382
+ </p>
383
+ </div>
384
+ <hr>
385
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN">
386
+ <a name="G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN</h3>
387
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN "standard::is-hidden" /* boolean */
388
+ </pre>
389
+ <p>
390
+ A key in the "standard" namespace for checking if a file is hidden.
391
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
392
+ </p>
393
+ </div>
394
+ <hr>
395
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP">
396
+ <a name="G-FILE-ATTRIBUTE-STANDARD-IS-BACKUP:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP</h3>
397
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP "standard::is-backup" /* boolean */
398
+ </pre>
399
+ <p>
400
+ A key in the "standard" namespace for checking if a file is a backup file.
401
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
402
+ </p>
403
+ </div>
404
+ <hr>
405
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK">
406
+ <a name="G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK</h3>
407
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK "standard::is-symlink" /* boolean */
408
+ </pre>
409
+ <p>
410
+ A key in the "standard" namespace for checking if the file is a symlink.
411
+ Typically the actual type is something else, if we followed the symlink
412
+ to get the type.
413
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
414
+ </p>
415
+ </div>
416
+ <hr>
417
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL">
418
+ <a name="G-FILE-ATTRIBUTE-STANDARD-IS-VIRTUAL:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL</h3>
419
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL "standard::is-virtual" /* boolean */
420
+ </pre>
421
+ <p>
422
+ A key in the "standard" namespace for checking if a file is virtual.
423
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
424
+ </p>
425
+ </div>
426
+ <hr>
427
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_NAME">
428
+ <a name="G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_NAME</h3>
429
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_NAME "standard::name" /* byte string */
430
+ </pre>
431
+ <p>
432
+ A key in the "standard" namespace for getting the name of the file.
433
+ The name is the on-disk filename which may not be in any known encoding,
434
+ and can thus not be generally displayed as is.
435
+ Use <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME"><span class="type">G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME</span></a> if you need to display the
436
+ name in a user interface.
437
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BYTE_STRING</code></a>.
438
+ </p>
439
+ </div>
440
+ <hr>
441
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME">
442
+ <a name="G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME</h3>
443
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME "standard::display-name" /* string */
444
+ </pre>
445
+ <p>
446
+ A key in the "standard" namespace for getting the display name of the file.
447
+ A display name is guaranteed to be in UTF8 and can thus be displayed in
448
+ the UI.
449
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
450
+ </p>
451
+ </div>
452
+ <hr>
453
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME">
454
+ <a name="G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME</h3>
455
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME "standard::edit-name" /* string */
456
+ </pre>
457
+ <p>
458
+ A key in the "standard" namespace for edit name of the file.
459
+ An edit name is similar to the display name, but it is meant to be
460
+ used when you want to rename the file in the UI. The display name
461
+ might contain information you don't want in the new filename (such as
462
+ "(invalid unicode)" if the filename was in an invalid encoding).
463
+ </p>
464
+ <p>
465
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
466
+ </p>
467
+ </div>
468
+ <hr>
469
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_COPY_NAME">
470
+ <a name="G-FILE-ATTRIBUTE-STANDARD-COPY-NAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_COPY_NAME</h3>
471
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_COPY_NAME "standard::copy-name" /* string */
472
+ </pre>
473
+ <p>
474
+ A key in the "standard" namespace for getting the copy name of the file.
475
+ The copy name is an optional version of the name. If available it's always
476
+ in UTF8, and corresponds directly to the original filename (only transcoded to
477
+ UTF8). This is useful if you want to copy the file to another filesystem that
478
+ might have a different encoding. If the filename is not a valid string in the
479
+ encoding selected for the filesystem it is in then the copy name will not be set.
480
+ </p>
481
+ <p>
482
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
483
+ </p>
484
+ </div>
485
+ <hr>
486
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_ICON">
487
+ <a name="G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_ICON</h3>
488
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_ICON "standard::icon" /* object (GIcon) */
489
+ </pre>
490
+ <p>
491
+ A key in the "standard" namespace for getting the icon for the file.
492
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-OBJECT:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_OBJECT</code></a>.
493
+ The value for this key should contain a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a>.
494
+ </p>
495
+ </div>
496
+ <hr>
497
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE">
498
+ <a name="G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE</h3>
499
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE "standard::content-type" /* string */
500
+ </pre>
501
+ <p>
502
+ A key in the "standard" namespace for getting the content type of the file.
503
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
504
+ The value for this key should contain a valid content type.
505
+ </p>
506
+ </div>
507
+ <hr>
508
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE">
509
+ <a name="G-FILE-ATTRIBUTE-STANDARD-FAST-CONTENT-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE</h3>
510
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE "standard::fast-content-type" /* string */
511
+ </pre>
512
+ <p>
513
+ A key in the "standard" namespace for getting the fast content type.
514
+ The fast content type isn't as reliable as the regular one, as it
515
+ only uses the filename to guess it, but it is faster to calculate than the
516
+ regular content type.
517
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
518
+ </p>
519
+ </div>
520
+ <hr>
521
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_SIZE">
522
+ <a name="G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_SIZE</h3>
523
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_SIZE "standard::size" /* uint64 */
524
+ </pre>
525
+ <p>
526
+ A key in the "standard" namespace for getting the file's size (in bytes).
527
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.
528
+ </p>
529
+ </div>
530
+ <hr>
531
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE">
532
+ <a name="G-FILE-ATTRIBUTE-STANDARD-ALLOCATED-SIZE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE</h3>
533
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE "standard::allocated-size" /* uint64 */
534
+ </pre>
535
+ <p>
536
+ A key in the "standard" namespace for getting the amount of disk space
537
+ that is consumed by the file (in bytes). This will generally be larger
538
+ than the file size (due to block size overhead) but can occasionally be
539
+ smaller (for example, for sparse files).
540
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.
541
+ </p>
542
+ <p class="since">Since 2.20</p>
543
+ </div>
544
+ <hr>
545
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET">
546
+ <a name="G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET</h3>
547
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET "standard::symlink-target" /* byte string */
548
+ </pre>
549
+ <p>
550
+ A key in the "standard" namespace for getting the symlink target, if the file
551
+ is a symlink. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
552
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BYTE_STRING</code></a>.
553
+ </p>
554
+ </div>
555
+ <hr>
556
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_TARGET_URI">
557
+ <a name="G-FILE-ATTRIBUTE-STANDARD-TARGET-URI:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_TARGET_URI</h3>
558
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_TARGET_URI "standard::target-uri" /* string */
559
+ </pre>
560
+ <p>
561
+ A key in the "standard" namespace for getting the target URI for the file, in
562
+ the case of <a class="link" href="GFileInfo.html#G-FILE-TYPE-SHORTCUT:CAPS"><code class="literal">G_FILE_TYPE_SHORTCUT</code></a> or <a class="link" href="GFileInfo.html#G-FILE-TYPE-MOUNTABLE:CAPS"><code class="literal">G_FILE_TYPE_MOUNTABLE</code></a> files.
563
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
564
+ </p>
565
+ </div>
566
+ <hr>
567
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER">
568
+ <a name="G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER</h3>
569
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER "standard::sort-order" /* int32 */
570
+ </pre>
571
+ <p>
572
+ A key in the "standard" namespace for setting the sort order of a file.
573
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_INT32</code></a>.
574
+ An example use would be in file managers, which would use this key
575
+ to set the order files are displayed. Files with smaller sort order
576
+ should be sorted first, and files without sort order as if sort order
577
+ was zero.
578
+ </p>
579
+ </div>
580
+ <hr>
581
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_ETAG_VALUE">
582
+ <a name="G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ETAG_VALUE</h3>
583
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_ETAG_VALUE "etag::value" /* string */
584
+ </pre>
585
+ <p>
586
+ A key in the "etag" namespace for getting the value of the file's
587
+ entity tag. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
588
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
589
+ </p>
590
+ </div>
591
+ <hr>
592
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_ID_FILE">
593
+ <a name="G-FILE-ATTRIBUTE-ID-FILE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ID_FILE</h3>
594
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_ID_FILE "id::file" /* string */
595
+ </pre>
596
+ <p>
597
+ A key in the "id" namespace for getting a file identifier.
598
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
599
+ An example use would be during listing files, to avoid recursive
600
+ directory scanning.
601
+ </p>
602
+ </div>
603
+ <hr>
604
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_ID_FILESYSTEM">
605
+ <a name="G-FILE-ATTRIBUTE-ID-FILESYSTEM:CAPS"></a><h3>G_FILE_ATTRIBUTE_ID_FILESYSTEM</h3>
606
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_ID_FILESYSTEM "id::filesystem" /* string */
607
+ </pre>
608
+ <p>
609
+ A key in the "id" namespace for getting the file system identifier.
610
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
611
+ An example use would be during drag and drop to see if the source
612
+ and target are on the same filesystem (default to move) or not (default
613
+ to copy).
614
+ </p>
615
+ </div>
616
+ <hr>
617
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_ACCESS_CAN_READ">
618
+ <a name="G-FILE-ATTRIBUTE-ACCESS-CAN-READ:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_READ</h3>
619
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_READ "access::can-read" /* boolean */
620
+ </pre>
621
+ <p>
622
+ A key in the "access" namespace for getting read privileges.
623
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
624
+ This attribute will be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to read the file.
625
+ </p>
626
+ </div>
627
+ <hr>
628
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE">
629
+ <a name="G-FILE-ATTRIBUTE-ACCESS-CAN-WRITE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE</h3>
630
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE "access::can-write" /* boolean */
631
+ </pre>
632
+ <p>
633
+ A key in the "access" namespace for getting write privileges.
634
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
635
+ This attribute will be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to write to the file.
636
+ </p>
637
+ </div>
638
+ <hr>
639
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE">
640
+ <a name="G-FILE-ATTRIBUTE-ACCESS-CAN-EXECUTE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE</h3>
641
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE "access::can-execute" /* boolean */
642
+ </pre>
643
+ <p>
644
+ A key in the "access" namespace for getting execution privileges.
645
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
646
+ This attribute will be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to execute the file.
647
+ </p>
648
+ </div>
649
+ <hr>
650
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE">
651
+ <a name="G-FILE-ATTRIBUTE-ACCESS-CAN-DELETE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE</h3>
652
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE "access::can-delete" /* boolean */
653
+ </pre>
654
+ <p>
655
+ A key in the "access" namespace for checking deletion privileges.
656
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
657
+ This attribute will be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to delete the file.
658
+ </p>
659
+ </div>
660
+ <hr>
661
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH">
662
+ <a name="G-FILE-ATTRIBUTE-ACCESS-CAN-TRASH:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH</h3>
663
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH "access::can-trash" /* boolean */
664
+ </pre>
665
+ <p>
666
+ A key in the "access" namespace for checking trashing privileges.
667
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
668
+ This attribute will be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to move the file to
669
+ the trash.
670
+ </p>
671
+ </div>
672
+ <hr>
673
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME">
674
+ <a name="G-FILE-ATTRIBUTE-ACCESS-CAN-RENAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME</h3>
675
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME "access::can-rename" /* boolean */
676
+ </pre>
677
+ <p>
678
+ A key in the "access" namespace for checking renaming privileges.
679
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
680
+ This attribute will be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to rename the file.
681
+ </p>
682
+ </div>
683
+ <hr>
684
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT">
685
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-MOUNT:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT</h3>
686
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT "mountable::can-mount" /* boolean */
687
+ </pre>
688
+ <p>
689
+ A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) is mountable.
690
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
691
+ </p>
692
+ </div>
693
+ <hr>
694
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT">
695
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-UNMOUNT:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT</h3>
696
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT "mountable::can-unmount" /* boolean */
697
+ </pre>
698
+ <p>
699
+ A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) is unmountable.
700
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
701
+ </p>
702
+ </div>
703
+ <hr>
704
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT">
705
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-EJECT:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT</h3>
706
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT "mountable::can-eject" /* boolean */
707
+ </pre>
708
+ <p>
709
+ A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be ejected.
710
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
711
+ </p>
712
+ </div>
713
+ <hr>
714
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE">
715
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE</h3>
716
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE "mountable::unix-device" /* uint32 */
717
+ </pre>
718
+ <p>
719
+ A key in the "mountable" namespace for getting the unix device.
720
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
721
+ </p>
722
+ </div>
723
+ <hr>
724
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE">
725
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE-FILE:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE</h3>
726
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE "mountable::unix-device-file" /* string */
727
+ </pre>
728
+ <p>
729
+ A key in the "mountable" namespace for getting the unix device file.
730
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
731
+ </p>
732
+ <p class="since">Since 2.22</p>
733
+ </div>
734
+ <hr>
735
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI">
736
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-HAL-UDI:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI</h3>
737
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI "mountable::hal-udi" /* string */
738
+ </pre>
739
+ <p>
740
+ A key in the "mountable" namespace for getting the HAL UDI for the mountable
741
+ file. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
742
+ </p>
743
+ </div>
744
+ <hr>
745
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL">
746
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-POLL:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL</h3>
747
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL "mountable::can-poll" /* boolean */
748
+ </pre>
749
+ <p>
750
+ A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be polled.
751
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
752
+ </p>
753
+ <p class="since">Since 2.22</p>
754
+ </div>
755
+ <hr>
756
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC">
757
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-IS-MEDIA-CHECK-AUTOMATIC:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC</h3>
758
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC "mountable::is-media-check-automatic" /* boolean */
759
+ </pre>
760
+ <p>
761
+ A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE)
762
+ is automatically polled for media.
763
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
764
+ </p>
765
+ <p class="since">Since 2.22</p>
766
+ </div>
767
+ <hr>
768
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START">
769
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START</h3>
770
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START "mountable::can-start" /* boolean */
771
+ </pre>
772
+ <p>
773
+ A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be started.
774
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
775
+ </p>
776
+ <p class="since">Since 2.22</p>
777
+ </div>
778
+ <hr>
779
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED">
780
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START-DEGRADED:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED</h3>
781
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED "mountable::can-start-degraded" /* boolean */
782
+ </pre>
783
+ <p>
784
+ A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be started
785
+ degraded.
786
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
787
+ </p>
788
+ <p class="since">Since 2.22</p>
789
+ </div>
790
+ <hr>
791
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP">
792
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-STOP:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP</h3>
793
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP "mountable::can-stop" /* boolean */
794
+ </pre>
795
+ <p>
796
+ A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be stopped.
797
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
798
+ </p>
799
+ <p class="since">Since 2.22</p>
800
+ </div>
801
+ <hr>
802
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE">
803
+ <a name="G-FILE-ATTRIBUTE-MOUNTABLE-START-STOP-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE</h3>
804
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE "mountable::start-stop-type" /* uint32 (GDriveStartStopType) */
805
+ </pre>
806
+ <p>
807
+ A key in the "mountable" namespace for getting the <a class="link" href="GDrive.html#GDriveStartStopType" title="enum GDriveStartStopType"><span class="type">GDriveStartStopType</span></a>.
808
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
809
+ </p>
810
+ <p class="since">Since 2.22</p>
811
+ </div>
812
+ <hr>
813
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_TIME_MODIFIED">
814
+ <a name="G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_MODIFIED</h3>
815
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_MODIFIED "time::modified" /* uint64 */
816
+ </pre>
817
+ <p>
818
+ A key in the "time" namespace for getting the time the file was last
819
+ modified. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
820
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>, and contains the UNIX time since the
821
+ file was modified.
822
+ </p>
823
+ </div>
824
+ <hr>
825
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC">
826
+ <a name="G-FILE-ATTRIBUTE-TIME-MODIFIED-USEC:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC</h3>
827
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC "time::modified-usec" /* uint32 */
828
+ </pre>
829
+ <p>
830
+ A key in the "time" namespace for getting the miliseconds of the time
831
+ the file was last modified. This should be used in conjunction with
832
+ <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS" title="G_FILE_ATTRIBUTE_TIME_MODIFIED"><span class="type">G_FILE_ATTRIBUTE_TIME_MODIFIED</span></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
833
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
834
+ </p>
835
+ </div>
836
+ <hr>
837
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_TIME_ACCESS">
838
+ <a name="G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_ACCESS</h3>
839
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_ACCESS "time::access" /* uint64 */
840
+ </pre>
841
+ <p>
842
+ A key in the "time" namespace for getting the time the file was last
843
+ accessed. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
844
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>, and contains the UNIX time since the
845
+ file was last accessed.
846
+ </p>
847
+ </div>
848
+ <hr>
849
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_TIME_ACCESS_USEC">
850
+ <a name="G-FILE-ATTRIBUTE-TIME-ACCESS-USEC:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_ACCESS_USEC</h3>
851
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_ACCESS_USEC "time::access-usec" /* uint32 */
852
+ </pre>
853
+ <p>
854
+ A key in the "time" namespace for getting the microseconds of the time
855
+ the file was last accessed. This should be used in conjunction with
856
+ <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS" title="G_FILE_ATTRIBUTE_TIME_ACCESS"><span class="type">G_FILE_ATTRIBUTE_TIME_ACCESS</span></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
857
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
858
+ </p>
859
+ </div>
860
+ <hr>
861
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_TIME_CHANGED">
862
+ <a name="G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_CHANGED</h3>
863
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_CHANGED "time::changed" /* uint64 */
864
+ </pre>
865
+ <p>
866
+ A key in the "time" namespace for getting the time the file was last
867
+ changed. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>,
868
+ and contains the UNIX time since the file was last changed.
869
+ </p>
870
+ <p>
871
+ This corresponds to the traditional UNIX ctime.
872
+ </p>
873
+ </div>
874
+ <hr>
875
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_TIME_CHANGED_USEC">
876
+ <a name="G-FILE-ATTRIBUTE-TIME-CHANGED-USEC:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_CHANGED_USEC</h3>
877
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_CHANGED_USEC "time::changed-usec" /* uint32 */
878
+ </pre>
879
+ <p>
880
+ A key in the "time" namespace for getting the microseconds of the time
881
+ the file was last changed. This should be used in conjunction with
882
+ <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS" title="G_FILE_ATTRIBUTE_TIME_CHANGED"><span class="type">G_FILE_ATTRIBUTE_TIME_CHANGED</span></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
883
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
884
+ </p>
885
+ </div>
886
+ <hr>
887
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_TIME_CREATED">
888
+ <a name="G-FILE-ATTRIBUTE-TIME-CREATED:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_CREATED</h3>
889
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_CREATED "time::created" /* uint64 */
890
+ </pre>
891
+ <p>
892
+ A key in the "time" namespace for getting the time the file was created.
893
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>,
894
+ and contains the UNIX time since the file was created.
895
+ </p>
896
+ <p>
897
+ This corresponds to the NTFS ctime.
898
+ </p>
899
+ </div>
900
+ <hr>
901
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_TIME_CREATED_USEC">
902
+ <a name="G-FILE-ATTRIBUTE-TIME-CREATED-USEC:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_CREATED_USEC</h3>
903
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_CREATED_USEC "time::created-usec" /* uint32 */
904
+ </pre>
905
+ <p>
906
+ A key in the "time" namespace for getting the microseconds of the time
907
+ the file was created. This should be used in conjunction with
908
+ <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED:CAPS" title="G_FILE_ATTRIBUTE_TIME_CREATED"><span class="type">G_FILE_ATTRIBUTE_TIME_CREATED</span></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
909
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
910
+ </p>
911
+ </div>
912
+ <hr>
913
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_DEVICE">
914
+ <a name="G-FILE-ATTRIBUTE-UNIX-DEVICE:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_DEVICE</h3>
915
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_DEVICE "unix::device" /* uint32 */
916
+ </pre>
917
+ <p>
918
+ A key in the "unix" namespace for getting the device id of the device the
919
+ file is located on (see <code class="function">stat()</code> documentation). This attribute is only
920
+ available for UNIX file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
921
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
922
+ </p>
923
+ </div>
924
+ <hr>
925
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_INODE">
926
+ <a name="G-FILE-ATTRIBUTE-UNIX-INODE:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_INODE</h3>
927
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_INODE "unix::inode" /* uint64 */
928
+ </pre>
929
+ <p>
930
+ A key in the "unix" namespace for getting the inode of the file.
931
+ This attribute is only available for UNIX file systems. Corresponding
932
+ <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.
933
+ </p>
934
+ </div>
935
+ <hr>
936
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_MODE">
937
+ <a name="G-FILE-ATTRIBUTE-UNIX-MODE:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_MODE</h3>
938
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_MODE "unix::mode" /* uint32 */
939
+ </pre>
940
+ <p>
941
+ A key in the "unix" namespace for getting the mode of the file
942
+ (e.g. whether the file is a regular file, symlink, etc). See <code class="function">lstat()</code>
943
+ documentation. This attribute is only available for UNIX file systems.
944
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
945
+ </p>
946
+ </div>
947
+ <hr>
948
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_NLINK">
949
+ <a name="G-FILE-ATTRIBUTE-UNIX-NLINK:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_NLINK</h3>
950
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_NLINK "unix::nlink" /* uint32 */
951
+ </pre>
952
+ <p>
953
+ A key in the "unix" namespace for getting the number of hard links
954
+ for a file. See <code class="function">lstat()</code> documentation. This attribute is only available
955
+ for UNIX file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
956
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
957
+ </p>
958
+ </div>
959
+ <hr>
960
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_UID">
961
+ <a name="G-FILE-ATTRIBUTE-UNIX-UID:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_UID</h3>
962
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_UID "unix::uid" /* uint32 */
963
+ </pre>
964
+ <p>
965
+ A key in the "unix" namespace for getting the user ID for the file.
966
+ This attribute is only available for UNIX file systems.
967
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
968
+ </p>
969
+ </div>
970
+ <hr>
971
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_GID">
972
+ <a name="G-FILE-ATTRIBUTE-UNIX-GID:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_GID</h3>
973
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_GID "unix::gid" /* uint32 */
974
+ </pre>
975
+ <p>
976
+ A key in the "unix" namespace for getting the group ID for the file.
977
+ This attribute is only available for UNIX file systems.
978
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
979
+ </p>
980
+ </div>
981
+ <hr>
982
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_RDEV">
983
+ <a name="G-FILE-ATTRIBUTE-UNIX-RDEV:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_RDEV</h3>
984
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_RDEV "unix::rdev" /* uint32 */
985
+ </pre>
986
+ <p>
987
+ A key in the "unix" namespace for getting the device ID for the file
988
+ (if it is a special file). See <code class="function">lstat()</code> documentation. This attribute
989
+ is only available for UNIX file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a>
990
+ is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
991
+ </p>
992
+ </div>
993
+ <hr>
994
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE">
995
+ <a name="G-FILE-ATTRIBUTE-UNIX-BLOCK-SIZE:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE</h3>
996
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE "unix::block-size" /* uint32 */
997
+ </pre>
998
+ <p>
999
+ A key in the "unix" namespace for getting the block size for the file
1000
+ system. This attribute is only available for UNIX file systems.
1001
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
1002
+ </p>
1003
+ </div>
1004
+ <hr>
1005
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_BLOCKS">
1006
+ <a name="G-FILE-ATTRIBUTE-UNIX-BLOCKS:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_BLOCKS</h3>
1007
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_BLOCKS "unix::blocks" /* uint64 */
1008
+ </pre>
1009
+ <p>
1010
+ A key in the "unix" namespace for getting the number of blocks allocated
1011
+ for the file. This attribute is only available for UNIX file systems.
1012
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.
1013
+ </p>
1014
+ </div>
1015
+ <hr>
1016
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT">
1017
+ <a name="G-FILE-ATTRIBUTE-UNIX-IS-MOUNTPOINT:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT</h3>
1018
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT "unix::is-mountpoint" /* boolean */
1019
+ </pre>
1020
+ <p>
1021
+ A key in the "unix" namespace for checking if the file represents a
1022
+ UNIX mount point. This attribute is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file is a UNIX mount
1023
+ point. This attribute is only available for UNIX file systems.
1024
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
1025
+ </p>
1026
+ </div>
1027
+ <hr>
1028
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE">
1029
+ <a name="G-FILE-ATTRIBUTE-DOS-IS-ARCHIVE:CAPS"></a><h3>G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE</h3>
1030
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE "dos::is-archive" /* boolean */
1031
+ </pre>
1032
+ <p>
1033
+ A key in the "dos" namespace for checking if the file's archive flag
1034
+ is set. This attribute is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the archive flag is set. This attribute
1035
+ is only available for DOS file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a>
1036
+ is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
1037
+ </p>
1038
+ </div>
1039
+ <hr>
1040
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_DOS_IS_SYSTEM">
1041
+ <a name="G-FILE-ATTRIBUTE-DOS-IS-SYSTEM:CAPS"></a><h3>G_FILE_ATTRIBUTE_DOS_IS_SYSTEM</h3>
1042
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_DOS_IS_SYSTEM "dos::is-system" /* boolean */
1043
+ </pre>
1044
+ <p>
1045
+ A key in the "dos" namespace for checking if the file's backup flag
1046
+ is set. This attribute is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the backup flag is set. This attribute
1047
+ is only available for DOS file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a>
1048
+ is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
1049
+ </p>
1050
+ </div>
1051
+ <hr>
1052
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_OWNER_USER">
1053
+ <a name="G-FILE-ATTRIBUTE-OWNER-USER:CAPS"></a><h3>G_FILE_ATTRIBUTE_OWNER_USER</h3>
1054
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_OWNER_USER "owner::user" /* string */
1055
+ </pre>
1056
+ <p>
1057
+ A key in the "owner" namespace for getting the user name of the
1058
+ file's owner. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
1059
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
1060
+ </p>
1061
+ </div>
1062
+ <hr>
1063
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_OWNER_USER_REAL">
1064
+ <a name="G-FILE-ATTRIBUTE-OWNER-USER-REAL:CAPS"></a><h3>G_FILE_ATTRIBUTE_OWNER_USER_REAL</h3>
1065
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_OWNER_USER_REAL "owner::user-real" /* string */
1066
+ </pre>
1067
+ <p>
1068
+ A key in the "owner" namespace for getting the real name of the
1069
+ user that owns the file. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
1070
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
1071
+ </p>
1072
+ </div>
1073
+ <hr>
1074
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_OWNER_GROUP">
1075
+ <a name="G-FILE-ATTRIBUTE-OWNER-GROUP:CAPS"></a><h3>G_FILE_ATTRIBUTE_OWNER_GROUP</h3>
1076
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_OWNER_GROUP "owner::group" /* string */
1077
+ </pre>
1078
+ <p>
1079
+ A key in the "owner" namespace for getting the file owner's group.
1080
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
1081
+ </p>
1082
+ </div>
1083
+ <hr>
1084
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_THUMBNAIL_PATH">
1085
+ <a name="G-FILE-ATTRIBUTE-THUMBNAIL-PATH:CAPS"></a><h3>G_FILE_ATTRIBUTE_THUMBNAIL_PATH</h3>
1086
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_THUMBNAIL_PATH "thumbnail::path" /* bytestring */
1087
+ </pre>
1088
+ <p>
1089
+ A key in the "thumbnail" namespace for getting the path to the thumbnail
1090
+ image. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
1091
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BYTE_STRING</code></a>.
1092
+ </p>
1093
+ </div>
1094
+ <hr>
1095
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_THUMBNAILING_FAILED">
1096
+ <a name="G-FILE-ATTRIBUTE-THUMBNAILING-FAILED:CAPS"></a><h3>G_FILE_ATTRIBUTE_THUMBNAILING_FAILED</h3>
1097
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_THUMBNAILING_FAILED "thumbnail::failed" /* boolean */
1098
+ </pre>
1099
+ <p>
1100
+ A key in the "thumbnail" namespace for checking if thumbnailing failed.
1101
+ This attribute is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if thumbnailing failed. Corresponding
1102
+ <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
1103
+ </p>
1104
+ </div>
1105
+ <hr>
1106
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_PREVIEW_ICON">
1107
+ <a name="G-FILE-ATTRIBUTE-PREVIEW-ICON:CAPS"></a><h3>G_FILE_ATTRIBUTE_PREVIEW_ICON</h3>
1108
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_PREVIEW_ICON "preview::icon" /* object (GIcon) */
1109
+ </pre>
1110
+ <p>
1111
+ A key in the "preview" namespace for getting a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a> that can be
1112
+ used to get preview of the file. For example, it may be a low
1113
+ resolution thumbnail without metadata. Corresponding
1114
+ <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-OBJECT:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_OBJECT</code></a>. The value
1115
+ for this key should contain a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a>.
1116
+ </p>
1117
+ <p class="since">Since 2.20</p>
1118
+ </div>
1119
+ <hr>
1120
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_FILESYSTEM_SIZE">
1121
+ <a name="G-FILE-ATTRIBUTE-FILESYSTEM-SIZE:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_SIZE</h3>
1122
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_SIZE "filesystem::size" /* uint64 */
1123
+ </pre>
1124
+ <p>
1125
+ A key in the "filesystem" namespace for getting the total size (in bytes) of the file system,
1126
+ used in <a class="link" href="GFile.html#g-file-query-filesystem-info" title="g_file_query_filesystem_info ()"><code class="function">g_file_query_filesystem_info()</code></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a>
1127
+ is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.
1128
+ </p>
1129
+ </div>
1130
+ <hr>
1131
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_FILESYSTEM_FREE">
1132
+ <a name="G-FILE-ATTRIBUTE-FILESYSTEM-FREE:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_FREE</h3>
1133
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_FREE "filesystem::free" /* uint64 */
1134
+ </pre>
1135
+ <p>
1136
+ A key in the "filesystem" namespace for getting the number of bytes of free space left on the
1137
+ file system. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
1138
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.
1139
+ </p>
1140
+ </div>
1141
+ <hr>
1142
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_FILESYSTEM_TYPE">
1143
+ <a name="G-FILE-ATTRIBUTE-FILESYSTEM-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_TYPE</h3>
1144
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_TYPE "filesystem::type" /* string */
1145
+ </pre>
1146
+ <p>
1147
+ A key in the "filesystem" namespace for getting the file system's type.
1148
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
1149
+ </p>
1150
+ </div>
1151
+ <hr>
1152
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_FILESYSTEM_READONLY">
1153
+ <a name="G-FILE-ATTRIBUTE-FILESYSTEM-READONLY:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_READONLY</h3>
1154
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_READONLY "filesystem::readonly" /* boolean */
1155
+ </pre>
1156
+ <p>
1157
+ A key in the "filesystem" namespace for checking if the file system
1158
+ is read only. Is set to <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file system is read only.
1159
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
1160
+ </p>
1161
+ </div>
1162
+ <hr>
1163
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_GVFS_BACKEND">
1164
+ <a name="G-FILE-ATTRIBUTE-GVFS-BACKEND:CAPS"></a><h3>G_FILE_ATTRIBUTE_GVFS_BACKEND</h3>
1165
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_GVFS_BACKEND "gvfs::backend" /* string */
1166
+ </pre>
1167
+ <p>
1168
+ A key in the "gvfs" namespace that gets the name of the current
1169
+ GVFS backend in use. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
1170
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
1171
+ </p>
1172
+ </div>
1173
+ <hr>
1174
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_SELINUX_CONTEXT">
1175
+ <a name="G-FILE-ATTRIBUTE-SELINUX-CONTEXT:CAPS"></a><h3>G_FILE_ATTRIBUTE_SELINUX_CONTEXT</h3>
1176
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_SELINUX_CONTEXT "selinux::context" /* string */
1177
+ </pre>
1178
+ <p>
1179
+ A key in the "selinux" namespace for getting the file's SELinux
1180
+ context. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
1181
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>. Note that this attribute is only
1182
+ available if GLib has been built with SELinux support.
1183
+ </p>
1184
+ </div>
1185
+ <hr>
1186
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT">
1187
+ <a name="G-FILE-ATTRIBUTE-TRASH-ITEM-COUNT:CAPS"></a><h3>G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT</h3>
1188
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT "trash::item-count" /* uint32 */
1189
+ </pre>
1190
+ <p>
1191
+ A key in the "trash" namespace. When requested against
1192
+ "trash:///" returns the number of (toplevel) items in the trash folder.
1193
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
1194
+ </p>
1195
+ </div>
1196
+ <hr>
1197
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW">
1198
+ <a name="G-FILE-ATTRIBUTE-FILESYSTEM-USE-PREVIEW:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW</h3>
1199
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW "filesystem::use-preview" /* uint32 (GFilesystemPreviewType) */
1200
+ </pre>
1201
+ <p>
1202
+ A key in the "filesystem" namespace for hinting a file manager
1203
+ application whether it should preview (e.g. thumbnail) files on the
1204
+ file system. The value for this key contain a
1205
+ <a class="link" href="GFile.html#GFilesystemPreviewType" title="enum GFilesystemPreviewType"><span class="type">GFilesystemPreviewType</span></a>.
1206
+ </p>
1207
+ </div>
1208
+ <hr>
1209
+ <div class="refsect2" title="G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION">
1210
+ <a name="G-FILE-ATTRIBUTE-STANDARD-DESCRIPTION:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION</h3>
1211
+ <pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION "standard::description" /* string */
1212
+ </pre>
1213
+ <p>
1214
+ A key in the "standard" namespace for getting the description of the file.
1215
+ The description is a utf8 string that describes the file, generally containing
1216
+ the filename, but can also contain furter information. Example descriptions
1217
+ could be "filename (on hostname)" for a remote file or "filename (in trash)"
1218
+ for a file in the trash. This is useful for instance as the window title
1219
+ when displaying a directory or for a bookmarks menu.
1220
+ </p>
1221
+ <p>
1222
+ Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
1223
+ </p>
1224
+ </div>
1225
+ <hr>
1226
+ <div class="refsect2" title="g_file_info_new ()">
1227
+ <a name="g-file-info-new"></a><h3>g_file_info_new ()</h3>
1228
+ <pre class="programlisting"><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="returnvalue">GFileInfo</span></a> * g_file_info_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1229
+ <p>
1230
+ Creates a new file info structure.
1231
+ </p>
1232
+ <div class="variablelist"><table border="0">
1233
+ <col align="left" valign="top">
1234
+ <tbody><tr>
1235
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1236
+ <td> a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1237
+ </td>
1238
+ </tr></tbody>
1239
+ </table></div>
1240
+ </div>
1241
+ <hr>
1242
+ <div class="refsect2" title="g_file_info_dup ()">
1243
+ <a name="g-file-info-dup"></a><h3>g_file_info_dup ()</h3>
1244
+ <pre class="programlisting"><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="returnvalue">GFileInfo</span></a> * g_file_info_dup (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *other</code></em>);</pre>
1245
+ <p>
1246
+ Duplicates a file info structure.
1247
+ </p>
1248
+ <div class="variablelist"><table border="0">
1249
+ <col align="left" valign="top">
1250
+ <tbody>
1251
+ <tr>
1252
+ <td><p><span class="term"><em class="parameter"><code>other</code></em> :</span></p></td>
1253
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1254
+ </td>
1255
+ </tr>
1256
+ <tr>
1257
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1258
+ <td> a duplicate <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> of <em class="parameter"><code>other</code></em>.
1259
+ </td>
1260
+ </tr>
1261
+ </tbody>
1262
+ </table></div>
1263
+ </div>
1264
+ <hr>
1265
+ <div class="refsect2" title="g_file_info_copy_into ()">
1266
+ <a name="g-file-info-copy-into"></a><h3>g_file_info_copy_into ()</h3>
1267
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_copy_into (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *src_info</code></em>,
1268
+ <em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *dest_info</code></em>);</pre>
1269
+ <p>
1270
+ Copies all of the <span class="type">GFileAttribute</span>s from <em class="parameter"><code>src_info</code></em> to <em class="parameter"><code>dest_info</code></em>.
1271
+ </p>
1272
+ <div class="variablelist"><table border="0">
1273
+ <col align="left" valign="top">
1274
+ <tbody>
1275
+ <tr>
1276
+ <td><p><span class="term"><em class="parameter"><code>src_info</code></em> :</span></p></td>
1277
+ <td>source to copy attributes from.
1278
+ </td>
1279
+ </tr>
1280
+ <tr>
1281
+ <td><p><span class="term"><em class="parameter"><code>dest_info</code></em> :</span></p></td>
1282
+ <td>destination to copy attributes to.
1283
+ </td>
1284
+ </tr>
1285
+ </tbody>
1286
+ </table></div>
1287
+ </div>
1288
+ <hr>
1289
+ <div class="refsect2" title="g_file_info_has_attribute ()">
1290
+ <a name="g-file-info-has-attribute"></a><h3>g_file_info_has_attribute ()</h3>
1291
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_info_has_attribute (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1292
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1293
+ <p>
1294
+ Checks if a file info structure has an attribute named <em class="parameter"><code>attribute</code></em>.
1295
+ </p>
1296
+ <div class="variablelist"><table border="0">
1297
+ <col align="left" valign="top">
1298
+ <tbody>
1299
+ <tr>
1300
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1301
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1302
+ </td>
1303
+ </tr>
1304
+ <tr>
1305
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1306
+ <td>a file attribute key.
1307
+ </td>
1308
+ </tr>
1309
+ <tr>
1310
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1311
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>Ginfo</code></em> has an attribute named <em class="parameter"><code>attribute</code></em>,
1312
+ <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1313
+ </td>
1314
+ </tr>
1315
+ </tbody>
1316
+ </table></div>
1317
+ </div>
1318
+ <hr>
1319
+ <div class="refsect2" title="g_file_info_has_namespace ()">
1320
+ <a name="g-file-info-has-namespace"></a><h3>g_file_info_has_namespace ()</h3>
1321
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_info_has_namespace (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1322
+ <em class="parameter"><code>const <span class="type">char</span> *name_space</code></em>);</pre>
1323
+ <p>
1324
+ Checks if a file info structure has an attribute in the
1325
+ specified <em class="parameter"><code>name_space</code></em>.
1326
+ </p>
1327
+ <div class="variablelist"><table border="0">
1328
+ <col align="left" valign="top">
1329
+ <tbody>
1330
+ <tr>
1331
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1332
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1333
+ </td>
1334
+ </tr>
1335
+ <tr>
1336
+ <td><p><span class="term"><em class="parameter"><code>name_space</code></em> :</span></p></td>
1337
+ <td>a file attribute namespace.
1338
+ </td>
1339
+ </tr>
1340
+ <tr>
1341
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1342
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>Ginfo</code></em> has an attribute in <em class="parameter"><code>name_space</code></em>,
1343
+ <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1344
+
1345
+ </td>
1346
+ </tr>
1347
+ </tbody>
1348
+ </table></div>
1349
+ <p class="since">Since 2.22</p>
1350
+ </div>
1351
+ <hr>
1352
+ <div class="refsect2" title="g_file_info_list_attributes ()">
1353
+ <a name="g-file-info-list-attributes"></a><h3>g_file_info_list_attributes ()</h3>
1354
+ <pre class="programlisting"><span class="returnvalue">char</span> ** g_file_info_list_attributes (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1355
+ <em class="parameter"><code>const <span class="type">char</span> *name_space</code></em>);</pre>
1356
+ <p>
1357
+ Lists the file info structure's attributes.
1358
+ </p>
1359
+ <div class="variablelist"><table border="0">
1360
+ <col align="left" valign="top">
1361
+ <tbody>
1362
+ <tr>
1363
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1364
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1365
+ </td>
1366
+ </tr>
1367
+ <tr>
1368
+ <td><p><span class="term"><em class="parameter"><code>name_space</code></em> :</span></p></td>
1369
+ <td>a file attribute key's namespace.
1370
+ </td>
1371
+ </tr>
1372
+ <tr>
1373
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1374
+ <td> a null-terminated array of strings of all of the
1375
+ possible attribute types for the given <em class="parameter"><code>name_space</code></em>, or
1376
+ <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> on error.
1377
+ </td>
1378
+ </tr>
1379
+ </tbody>
1380
+ </table></div>
1381
+ </div>
1382
+ <hr>
1383
+ <div class="refsect2" title="g_file_info_get_attribute_type ()">
1384
+ <a name="g-file-info-get-attribute-type"></a><h3>g_file_info_get_attribute_type ()</h3>
1385
+ <pre class="programlisting"><a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="returnvalue">GFileAttributeType</span></a> g_file_info_get_attribute_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1386
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1387
+ <p>
1388
+ Gets the attribute type for an attribute key.
1389
+ </p>
1390
+ <div class="variablelist"><table border="0">
1391
+ <col align="left" valign="top">
1392
+ <tbody>
1393
+ <tr>
1394
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1395
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1396
+ </td>
1397
+ </tr>
1398
+ <tr>
1399
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1400
+ <td>a file attribute key.
1401
+ </td>
1402
+ </tr>
1403
+ <tr>
1404
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1405
+ <td> a <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> for the given <em class="parameter"><code>attribute</code></em>, or
1406
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INVALID:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_INVALID</code></a> if the key is not set.
1407
+ </td>
1408
+ </tr>
1409
+ </tbody>
1410
+ </table></div>
1411
+ </div>
1412
+ <hr>
1413
+ <div class="refsect2" title="g_file_info_remove_attribute ()">
1414
+ <a name="g-file-info-remove-attribute"></a><h3>g_file_info_remove_attribute ()</h3>
1415
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_remove_attribute (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1416
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1417
+ <p>
1418
+ Removes all cases of <em class="parameter"><code>attribute</code></em> from <em class="parameter"><code>info</code></em> if it exists.
1419
+ </p>
1420
+ <div class="variablelist"><table border="0">
1421
+ <col align="left" valign="top">
1422
+ <tbody>
1423
+ <tr>
1424
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1425
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1426
+ </td>
1427
+ </tr>
1428
+ <tr>
1429
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1430
+ <td>a file attribute key.
1431
+ </td>
1432
+ </tr>
1433
+ </tbody>
1434
+ </table></div>
1435
+ </div>
1436
+ <hr>
1437
+ <div class="refsect2" title="g_file_info_get_attribute_as_string ()">
1438
+ <a name="g-file-info-get-attribute-as-string"></a><h3>g_file_info_get_attribute_as_string ()</h3>
1439
+ <pre class="programlisting"><span class="returnvalue">char</span> * g_file_info_get_attribute_as_string (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1440
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1441
+ <p>
1442
+ Gets the value of a attribute, formated as a string.
1443
+ This escapes things as needed to make the string valid
1444
+ utf8.
1445
+ </p>
1446
+ <div class="variablelist"><table border="0">
1447
+ <col align="left" valign="top">
1448
+ <tbody>
1449
+ <tr>
1450
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1451
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1452
+ </td>
1453
+ </tr>
1454
+ <tr>
1455
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1456
+ <td>a file attribute key.
1457
+ </td>
1458
+ </tr>
1459
+ <tr>
1460
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1461
+ <td> a UTF-8 string associated with the given <em class="parameter"><code>attribute</code></em>.
1462
+ When you're done with the string it must be freed with <a href="/usr/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
1463
+ </td>
1464
+ </tr>
1465
+ </tbody>
1466
+ </table></div>
1467
+ </div>
1468
+ <hr>
1469
+ <div class="refsect2" title="g_file_info_get_attribute_data ()">
1470
+ <a name="g-file-info-get-attribute-data"></a><h3>g_file_info_get_attribute_data ()</h3>
1471
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_info_get_attribute_data (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1472
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
1473
+ <em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> *type</code></em>,
1474
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> *value_pp</code></em>,
1475
+ <em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a> *status</code></em>);</pre>
1476
+ <p>
1477
+ Gets the attribute type, value and status for an attribute key.
1478
+ </p>
1479
+ <div class="variablelist"><table border="0">
1480
+ <col align="left" valign="top">
1481
+ <tbody>
1482
+ <tr>
1483
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1484
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>
1485
+ </td>
1486
+ </tr>
1487
+ <tr>
1488
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1489
+ <td>a file attribute key
1490
+ </td>
1491
+ </tr>
1492
+ <tr>
1493
+ <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
1494
+ <td>return location for the attribute type, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1495
+ </td>
1496
+ </tr>
1497
+ <tr>
1498
+ <td><p><span class="term"><em class="parameter"><code>value_pp</code></em> :</span></p></td>
1499
+ <td>return location for the attribute value, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1500
+ </td>
1501
+ </tr>
1502
+ <tr>
1503
+ <td><p><span class="term"><em class="parameter"><code>status</code></em> :</span></p></td>
1504
+ <td>return location for the attribute status, or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1505
+ </td>
1506
+ </tr>
1507
+ <tr>
1508
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1509
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>info</code></em> has an attribute named <em class="parameter"><code>attribute</code></em>,
1510
+ <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1511
+ </td>
1512
+ </tr>
1513
+ </tbody>
1514
+ </table></div>
1515
+ </div>
1516
+ <hr>
1517
+ <div class="refsect2" title="g_file_info_get_attribute_status ()">
1518
+ <a name="g-file-info-get-attribute-status"></a><h3>g_file_info_get_attribute_status ()</h3>
1519
+ <pre class="programlisting"><a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="returnvalue">GFileAttributeStatus</span></a> g_file_info_get_attribute_status (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1520
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1521
+ <p>
1522
+ Gets the attribute status for an attribute key.
1523
+ </p>
1524
+ <div class="variablelist"><table border="0">
1525
+ <col align="left" valign="top">
1526
+ <tbody>
1527
+ <tr>
1528
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1529
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>
1530
+ </td>
1531
+ </tr>
1532
+ <tr>
1533
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1534
+ <td>a file attribute key
1535
+ </td>
1536
+ </tr>
1537
+ <tr>
1538
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1539
+ <td> a <a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a> for the given <em class="parameter"><code>attribute</code></em>, or
1540
+ <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-STATUS-UNSET:CAPS"><code class="literal">G_FILE_ATTRIBUTE_STATUS_UNSET</code></a> if the key is invalid.
1541
+
1542
+ </td>
1543
+ </tr>
1544
+ </tbody>
1545
+ </table></div>
1546
+ </div>
1547
+ <hr>
1548
+ <div class="refsect2" title="g_file_info_get_attribute_string ()">
1549
+ <a name="g-file-info-get-attribute-string"></a><h3>g_file_info_get_attribute_string ()</h3>
1550
+ <pre class="programlisting">const <span class="returnvalue">char</span> * g_file_info_get_attribute_string (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1551
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1552
+ <p>
1553
+ Gets the value of a string attribute. If the attribute does
1554
+ not contain a string, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> will be returned.
1555
+ </p>
1556
+ <div class="variablelist"><table border="0">
1557
+ <col align="left" valign="top">
1558
+ <tbody>
1559
+ <tr>
1560
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1561
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1562
+ </td>
1563
+ </tr>
1564
+ <tr>
1565
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1566
+ <td>a file attribute key.
1567
+ </td>
1568
+ </tr>
1569
+ <tr>
1570
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1571
+ <td> the contents of the <em class="parameter"><code>attribute</code></em> value as a string, or
1572
+ <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise.
1573
+ </td>
1574
+ </tr>
1575
+ </tbody>
1576
+ </table></div>
1577
+ </div>
1578
+ <hr>
1579
+ <div class="refsect2" title="g_file_info_get_attribute_stringv ()">
1580
+ <a name="g-file-info-get-attribute-stringv"></a><h3>g_file_info_get_attribute_stringv ()</h3>
1581
+ <pre class="programlisting"><span class="returnvalue">char</span> ** g_file_info_get_attribute_stringv (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1582
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1583
+ <p>
1584
+ Gets the value of a stringv attribute. If the attribute does
1585
+ not contain a stringv, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> will be returned.
1586
+ </p>
1587
+ <div class="variablelist"><table border="0">
1588
+ <col align="left" valign="top">
1589
+ <tbody>
1590
+ <tr>
1591
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1592
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1593
+ </td>
1594
+ </tr>
1595
+ <tr>
1596
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1597
+ <td>a file attribute key.
1598
+ </td>
1599
+ </tr>
1600
+ <tr>
1601
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1602
+ <td> the contents of the <em class="parameter"><code>attribute</code></em> value as a stringv, or
1603
+ <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise. Do not free.
1604
+
1605
+ </td>
1606
+ </tr>
1607
+ </tbody>
1608
+ </table></div>
1609
+ <p class="since">Since 2.22</p>
1610
+ </div>
1611
+ <hr>
1612
+ <div class="refsect2" title="g_file_info_get_attribute_byte_string ()">
1613
+ <a name="g-file-info-get-attribute-byte-string"></a><h3>g_file_info_get_attribute_byte_string ()</h3>
1614
+ <pre class="programlisting">const <span class="returnvalue">char</span> * g_file_info_get_attribute_byte_string
1615
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1616
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1617
+ <p>
1618
+ Gets the value of a byte string attribute. If the attribute does
1619
+ not contain a byte string, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> will be returned.
1620
+ </p>
1621
+ <div class="variablelist"><table border="0">
1622
+ <col align="left" valign="top">
1623
+ <tbody>
1624
+ <tr>
1625
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1626
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1627
+ </td>
1628
+ </tr>
1629
+ <tr>
1630
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1631
+ <td>a file attribute key.
1632
+ </td>
1633
+ </tr>
1634
+ <tr>
1635
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1636
+ <td> the contents of the <em class="parameter"><code>attribute</code></em> value as a byte string, or
1637
+ <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise.
1638
+ </td>
1639
+ </tr>
1640
+ </tbody>
1641
+ </table></div>
1642
+ </div>
1643
+ <hr>
1644
+ <div class="refsect2" title="g_file_info_get_attribute_boolean ()">
1645
+ <a name="g-file-info-get-attribute-boolean"></a><h3>g_file_info_get_attribute_boolean ()</h3>
1646
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_info_get_attribute_boolean (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1647
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1648
+ <p>
1649
+ Gets the value of a boolean attribute. If the attribute does not
1650
+ contain a boolean value, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> will be returned.
1651
+ </p>
1652
+ <div class="variablelist"><table border="0">
1653
+ <col align="left" valign="top">
1654
+ <tbody>
1655
+ <tr>
1656
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1657
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1658
+ </td>
1659
+ </tr>
1660
+ <tr>
1661
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1662
+ <td>a file attribute key.
1663
+ </td>
1664
+ </tr>
1665
+ <tr>
1666
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1667
+ <td> the boolean value contained within the attribute.
1668
+ </td>
1669
+ </tr>
1670
+ </tbody>
1671
+ </table></div>
1672
+ </div>
1673
+ <hr>
1674
+ <div class="refsect2" title="g_file_info_get_attribute_uint32 ()">
1675
+ <a name="g-file-info-get-attribute-uint32"></a><h3>g_file_info_get_attribute_uint32 ()</h3>
1676
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a> g_file_info_get_attribute_uint32 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1677
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1678
+ <p>
1679
+ Gets an unsigned 32-bit integer contained within the attribute. If the
1680
+ attribute does not contain an unsigned 32-bit integer, or is invalid,
1681
+ 0 will be returned.
1682
+ </p>
1683
+ <div class="variablelist"><table border="0">
1684
+ <col align="left" valign="top">
1685
+ <tbody>
1686
+ <tr>
1687
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1688
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1689
+ </td>
1690
+ </tr>
1691
+ <tr>
1692
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1693
+ <td>a file attribute key.
1694
+ </td>
1695
+ </tr>
1696
+ <tr>
1697
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1698
+ <td> an unsigned 32-bit integer from the attribute.
1699
+ </td>
1700
+ </tr>
1701
+ </tbody>
1702
+ </table></div>
1703
+ </div>
1704
+ <hr>
1705
+ <div class="refsect2" title="g_file_info_get_attribute_int32 ()">
1706
+ <a name="g-file-info-get-attribute-int32"></a><h3>g_file_info_get_attribute_int32 ()</h3>
1707
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint32"><span class="returnvalue">gint32</span></a> g_file_info_get_attribute_int32 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1708
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1709
+ <p>
1710
+ Gets a signed 32-bit integer contained within the attribute. If the
1711
+ attribute does not contain a signed 32-bit integer, or is invalid,
1712
+ 0 will be returned.
1713
+ </p>
1714
+ <div class="variablelist"><table border="0">
1715
+ <col align="left" valign="top">
1716
+ <tbody>
1717
+ <tr>
1718
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1719
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1720
+ </td>
1721
+ </tr>
1722
+ <tr>
1723
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1724
+ <td>a file attribute key.
1725
+ </td>
1726
+ </tr>
1727
+ <tr>
1728
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1729
+ <td> a signed 32-bit integer from the attribute.
1730
+ </td>
1731
+ </tr>
1732
+ </tbody>
1733
+ </table></div>
1734
+ </div>
1735
+ <hr>
1736
+ <div class="refsect2" title="g_file_info_get_attribute_uint64 ()">
1737
+ <a name="g-file-info-get-attribute-uint64"></a><h3>g_file_info_get_attribute_uint64 ()</h3>
1738
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a> g_file_info_get_attribute_uint64 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1739
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1740
+ <p>
1741
+ Gets a unsigned 64-bit integer contained within the attribute. If the
1742
+ attribute does not contain an unsigned 64-bit integer, or is invalid,
1743
+ 0 will be returned.
1744
+ </p>
1745
+ <div class="variablelist"><table border="0">
1746
+ <col align="left" valign="top">
1747
+ <tbody>
1748
+ <tr>
1749
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1750
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1751
+ </td>
1752
+ </tr>
1753
+ <tr>
1754
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1755
+ <td>a file attribute key.
1756
+ </td>
1757
+ </tr>
1758
+ <tr>
1759
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1760
+ <td> a unsigned 64-bit integer from the attribute.
1761
+ </td>
1762
+ </tr>
1763
+ </tbody>
1764
+ </table></div>
1765
+ </div>
1766
+ <hr>
1767
+ <div class="refsect2" title="g_file_info_get_attribute_int64 ()">
1768
+ <a name="g-file-info-get-attribute-int64"></a><h3>g_file_info_get_attribute_int64 ()</h3>
1769
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="returnvalue">gint64</span></a> g_file_info_get_attribute_int64 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1770
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1771
+ <p>
1772
+ Gets a signed 64-bit integer contained within the attribute. If the
1773
+ attribute does not contain an signed 64-bit integer, or is invalid,
1774
+ 0 will be returned.
1775
+ </p>
1776
+ <div class="variablelist"><table border="0">
1777
+ <col align="left" valign="top">
1778
+ <tbody>
1779
+ <tr>
1780
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1781
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1782
+ </td>
1783
+ </tr>
1784
+ <tr>
1785
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1786
+ <td>a file attribute key.
1787
+ </td>
1788
+ </tr>
1789
+ <tr>
1790
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1791
+ <td> a signed 64-bit integer from the attribute.
1792
+ </td>
1793
+ </tr>
1794
+ </tbody>
1795
+ </table></div>
1796
+ </div>
1797
+ <hr>
1798
+ <div class="refsect2" title="g_file_info_get_attribute_object ()">
1799
+ <a name="g-file-info-get-attribute-object"></a><h3>g_file_info_get_attribute_object ()</h3>
1800
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a> * g_file_info_get_attribute_object (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1801
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
1802
+ <p>
1803
+ Gets the value of a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> attribute. If the attribute does
1804
+ not contain a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> will be returned.
1805
+ </p>
1806
+ <div class="variablelist"><table border="0">
1807
+ <col align="left" valign="top">
1808
+ <tbody>
1809
+ <tr>
1810
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1811
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1812
+ </td>
1813
+ </tr>
1814
+ <tr>
1815
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1816
+ <td>a file attribute key.
1817
+ </td>
1818
+ </tr>
1819
+ <tr>
1820
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1821
+ <td> a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> associated with the given <em class="parameter"><code>attribute</code></em>, or
1822
+ <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise.
1823
+ </td>
1824
+ </tr>
1825
+ </tbody>
1826
+ </table></div>
1827
+ </div>
1828
+ <hr>
1829
+ <div class="refsect2" title="g_file_info_set_attribute ()">
1830
+ <a name="g-file-info-set-attribute"></a><h3>g_file_info_set_attribute ()</h3>
1831
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1832
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
1833
+ <em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> type</code></em>,
1834
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> value_p</code></em>);</pre>
1835
+ <p>
1836
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given value, if possible.
1837
+ </p>
1838
+ <div class="variablelist"><table border="0">
1839
+ <col align="left" valign="top">
1840
+ <tbody>
1841
+ <tr>
1842
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1843
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1844
+ </td>
1845
+ </tr>
1846
+ <tr>
1847
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1848
+ <td>a file attribute key.
1849
+ </td>
1850
+ </tr>
1851
+ <tr>
1852
+ <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
1853
+ <td>a <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a>
1854
+ </td>
1855
+ </tr>
1856
+ <tr>
1857
+ <td><p><span class="term"><em class="parameter"><code>value_p</code></em> :</span></p></td>
1858
+ <td>pointer to the value
1859
+ </td>
1860
+ </tr>
1861
+ </tbody>
1862
+ </table></div>
1863
+ </div>
1864
+ <hr>
1865
+ <div class="refsect2" title="g_file_info_set_attribute_status ()">
1866
+ <a name="g-file-info-set-attribute-status"></a><h3>g_file_info_set_attribute_status ()</h3>
1867
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_info_set_attribute_status (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1868
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
1869
+ <em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a> status</code></em>);</pre>
1870
+ <p>
1871
+ Sets the attribute status for an attribute key. This is only
1872
+ needed by external code that implement <a class="link" href="GFile.html#g-file-set-attributes-from-info" title="g_file_set_attributes_from_info ()"><code class="function">g_file_set_attributes_from_info()</code></a>
1873
+ or similar functions.
1874
+ </p>
1875
+ <p>
1876
+ The attribute must exist in <em class="parameter"><code>info</code></em> for this to work. Otherwise <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
1877
+ is returned and <em class="parameter"><code>info</code></em> is unchanged.
1878
+ </p>
1879
+ <div class="variablelist"><table border="0">
1880
+ <col align="left" valign="top">
1881
+ <tbody>
1882
+ <tr>
1883
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1884
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>
1885
+ </td>
1886
+ </tr>
1887
+ <tr>
1888
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1889
+ <td>a file attribute key
1890
+ </td>
1891
+ </tr>
1892
+ <tr>
1893
+ <td><p><span class="term"><em class="parameter"><code>status</code></em> :</span></p></td>
1894
+ <td>a <a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a>
1895
+ </td>
1896
+ </tr>
1897
+ <tr>
1898
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1899
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the status was changed, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the key was not set.
1900
+
1901
+ </td>
1902
+ </tr>
1903
+ </tbody>
1904
+ </table></div>
1905
+ <p class="since">Since 2.22</p>
1906
+ </div>
1907
+ <hr>
1908
+ <div class="refsect2" title="g_file_info_set_attribute_string ()">
1909
+ <a name="g-file-info-set-attribute-string"></a><h3>g_file_info_set_attribute_string ()</h3>
1910
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_string (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1911
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
1912
+ <em class="parameter"><code>const <span class="type">char</span> *attr_value</code></em>);</pre>
1913
+ <p>
1914
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given <em class="parameter"><code>attr_value</code></em>,
1915
+ if possible.
1916
+ </p>
1917
+ <div class="variablelist"><table border="0">
1918
+ <col align="left" valign="top">
1919
+ <tbody>
1920
+ <tr>
1921
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1922
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1923
+ </td>
1924
+ </tr>
1925
+ <tr>
1926
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1927
+ <td>a file attribute key.
1928
+ </td>
1929
+ </tr>
1930
+ <tr>
1931
+ <td><p><span class="term"><em class="parameter"><code>attr_value</code></em> :</span></p></td>
1932
+ <td>a string.
1933
+ </td>
1934
+ </tr>
1935
+ </tbody>
1936
+ </table></div>
1937
+ </div>
1938
+ <hr>
1939
+ <div class="refsect2" title="g_file_info_set_attribute_stringv ()">
1940
+ <a name="g-file-info-set-attribute-stringv"></a><h3>g_file_info_set_attribute_stringv ()</h3>
1941
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_stringv (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1942
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
1943
+ <em class="parameter"><code><span class="type">char</span> **attr_value</code></em>);</pre>
1944
+ <p>
1945
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given <em class="parameter"><code>attr_value</code></em>,
1946
+ if possible.
1947
+ </p>
1948
+ <p>
1949
+ Sinze: 2.22
1950
+ </p>
1951
+ <div class="variablelist"><table border="0">
1952
+ <col align="left" valign="top">
1953
+ <tbody>
1954
+ <tr>
1955
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1956
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1957
+ </td>
1958
+ </tr>
1959
+ <tr>
1960
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1961
+ <td>a file attribute key.
1962
+ </td>
1963
+ </tr>
1964
+ <tr>
1965
+ <td><p><span class="term"><em class="parameter"><code>attr_value</code></em> :</span></p></td>
1966
+ <td>a <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> terminated string array
1967
+ </td>
1968
+ </tr>
1969
+ </tbody>
1970
+ </table></div>
1971
+ </div>
1972
+ <hr>
1973
+ <div class="refsect2" title="g_file_info_set_attribute_byte_string ()">
1974
+ <a name="g-file-info-set-attribute-byte-string"></a><h3>g_file_info_set_attribute_byte_string ()</h3>
1975
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_byte_string
1976
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
1977
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
1978
+ <em class="parameter"><code>const <span class="type">char</span> *attr_value</code></em>);</pre>
1979
+ <p>
1980
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given <em class="parameter"><code>attr_value</code></em>,
1981
+ if possible.
1982
+ </p>
1983
+ <div class="variablelist"><table border="0">
1984
+ <col align="left" valign="top">
1985
+ <tbody>
1986
+ <tr>
1987
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
1988
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
1989
+ </td>
1990
+ </tr>
1991
+ <tr>
1992
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
1993
+ <td>a file attribute key.
1994
+ </td>
1995
+ </tr>
1996
+ <tr>
1997
+ <td><p><span class="term"><em class="parameter"><code>attr_value</code></em> :</span></p></td>
1998
+ <td>a byte string.
1999
+ </td>
2000
+ </tr>
2001
+ </tbody>
2002
+ </table></div>
2003
+ </div>
2004
+ <hr>
2005
+ <div class="refsect2" title="g_file_info_set_attribute_boolean ()">
2006
+ <a name="g-file-info-set-attribute-boolean"></a><h3>g_file_info_set_attribute_boolean ()</h3>
2007
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_boolean (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2008
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
2009
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> attr_value</code></em>);</pre>
2010
+ <p>
2011
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given <em class="parameter"><code>attr_value</code></em>,
2012
+ if possible.
2013
+ </p>
2014
+ <div class="variablelist"><table border="0">
2015
+ <col align="left" valign="top">
2016
+ <tbody>
2017
+ <tr>
2018
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2019
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2020
+ </td>
2021
+ </tr>
2022
+ <tr>
2023
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
2024
+ <td>a file attribute key.
2025
+ </td>
2026
+ </tr>
2027
+ <tr>
2028
+ <td><p><span class="term"><em class="parameter"><code>attr_value</code></em> :</span></p></td>
2029
+ <td>a boolean value.
2030
+ </td>
2031
+ </tr>
2032
+ </tbody>
2033
+ </table></div>
2034
+ </div>
2035
+ <hr>
2036
+ <div class="refsect2" title="g_file_info_set_attribute_uint32 ()">
2037
+ <a name="g-file-info-set-attribute-uint32"></a><h3>g_file_info_set_attribute_uint32 ()</h3>
2038
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_uint32 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2039
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
2040
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> attr_value</code></em>);</pre>
2041
+ <p>
2042
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given <em class="parameter"><code>attr_value</code></em>,
2043
+ if possible.
2044
+ </p>
2045
+ <div class="variablelist"><table border="0">
2046
+ <col align="left" valign="top">
2047
+ <tbody>
2048
+ <tr>
2049
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2050
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2051
+ </td>
2052
+ </tr>
2053
+ <tr>
2054
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
2055
+ <td>a file attribute key.
2056
+ </td>
2057
+ </tr>
2058
+ <tr>
2059
+ <td><p><span class="term"><em class="parameter"><code>attr_value</code></em> :</span></p></td>
2060
+ <td>an unsigned 32-bit integer.
2061
+ </td>
2062
+ </tr>
2063
+ </tbody>
2064
+ </table></div>
2065
+ </div>
2066
+ <hr>
2067
+ <div class="refsect2" title="g_file_info_set_attribute_int32 ()">
2068
+ <a name="g-file-info-set-attribute-int32"></a><h3>g_file_info_set_attribute_int32 ()</h3>
2069
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_int32 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2070
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
2071
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint32"><span class="type">gint32</span></a> attr_value</code></em>);</pre>
2072
+ <p>
2073
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given <em class="parameter"><code>attr_value</code></em>,
2074
+ if possible.
2075
+ </p>
2076
+ <div class="variablelist"><table border="0">
2077
+ <col align="left" valign="top">
2078
+ <tbody>
2079
+ <tr>
2080
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2081
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2082
+ </td>
2083
+ </tr>
2084
+ <tr>
2085
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
2086
+ <td>a file attribute key.
2087
+ </td>
2088
+ </tr>
2089
+ <tr>
2090
+ <td><p><span class="term"><em class="parameter"><code>attr_value</code></em> :</span></p></td>
2091
+ <td>a signed 32-bit integer
2092
+ </td>
2093
+ </tr>
2094
+ </tbody>
2095
+ </table></div>
2096
+ </div>
2097
+ <hr>
2098
+ <div class="refsect2" title="g_file_info_set_attribute_uint64 ()">
2099
+ <a name="g-file-info-set-attribute-uint64"></a><h3>g_file_info_set_attribute_uint64 ()</h3>
2100
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_uint64 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2101
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
2102
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> attr_value</code></em>);</pre>
2103
+ <p>
2104
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given <em class="parameter"><code>attr_value</code></em>,
2105
+ if possible.
2106
+ </p>
2107
+ <div class="variablelist"><table border="0">
2108
+ <col align="left" valign="top">
2109
+ <tbody>
2110
+ <tr>
2111
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2112
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2113
+ </td>
2114
+ </tr>
2115
+ <tr>
2116
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
2117
+ <td>a file attribute key.
2118
+ </td>
2119
+ </tr>
2120
+ <tr>
2121
+ <td><p><span class="term"><em class="parameter"><code>attr_value</code></em> :</span></p></td>
2122
+ <td>an unsigned 64-bit integer.
2123
+ </td>
2124
+ </tr>
2125
+ </tbody>
2126
+ </table></div>
2127
+ </div>
2128
+ <hr>
2129
+ <div class="refsect2" title="g_file_info_set_attribute_int64 ()">
2130
+ <a name="g-file-info-set-attribute-int64"></a><h3>g_file_info_set_attribute_int64 ()</h3>
2131
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_int64 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2132
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
2133
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> attr_value</code></em>);</pre>
2134
+ <p>
2135
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given <em class="parameter"><code>attr_value</code></em>,
2136
+ if possible.
2137
+ </p>
2138
+ <div class="variablelist"><table border="0">
2139
+ <col align="left" valign="top">
2140
+ <tbody>
2141
+ <tr>
2142
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2143
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2144
+ </td>
2145
+ </tr>
2146
+ <tr>
2147
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
2148
+ <td>attribute name to set.
2149
+ </td>
2150
+ </tr>
2151
+ <tr>
2152
+ <td><p><span class="term"><em class="parameter"><code>attr_value</code></em> :</span></p></td>
2153
+ <td>int64 value to set attribute to.
2154
+ </td>
2155
+ </tr>
2156
+ </tbody>
2157
+ </table></div>
2158
+ </div>
2159
+ <hr>
2160
+ <div class="refsect2" title="g_file_info_set_attribute_object ()">
2161
+ <a name="g-file-info-set-attribute-object"></a><h3>g_file_info_set_attribute_object ()</h3>
2162
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_object (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2163
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
2164
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *attr_value</code></em>);</pre>
2165
+ <p>
2166
+ Sets the <em class="parameter"><code>attribute</code></em> to contain the given <em class="parameter"><code>attr_value</code></em>,
2167
+ if possible.
2168
+ </p>
2169
+ <div class="variablelist"><table border="0">
2170
+ <col align="left" valign="top">
2171
+ <tbody>
2172
+ <tr>
2173
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2174
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2175
+ </td>
2176
+ </tr>
2177
+ <tr>
2178
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
2179
+ <td>a file attribute key.
2180
+ </td>
2181
+ </tr>
2182
+ <tr>
2183
+ <td><p><span class="term"><em class="parameter"><code>attr_value</code></em> :</span></p></td>
2184
+ <td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.
2185
+ </td>
2186
+ </tr>
2187
+ </tbody>
2188
+ </table></div>
2189
+ </div>
2190
+ <hr>
2191
+ <div class="refsect2" title="g_file_info_clear_status ()">
2192
+ <a name="g-file-info-clear-status"></a><h3>g_file_info_clear_status ()</h3>
2193
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_clear_status (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2194
+ <p>
2195
+ Clears the status information from <em class="parameter"><code>info</code></em>.
2196
+ </p>
2197
+ <div class="variablelist"><table border="0">
2198
+ <col align="left" valign="top">
2199
+ <tbody><tr>
2200
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2201
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2202
+ </td>
2203
+ </tr></tbody>
2204
+ </table></div>
2205
+ </div>
2206
+ <hr>
2207
+ <div class="refsect2" title="g_file_info_get_file_type ()">
2208
+ <a name="g-file-info-get-file-type"></a><h3>g_file_info_get_file_type ()</h3>
2209
+ <pre class="programlisting"><a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="returnvalue">GFileType</span></a> g_file_info_get_file_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2210
+ <p>
2211
+ Gets a file's type (whether it is a regular file, symlink, etc).
2212
+ This is different from the file's content type, see <a class="link" href="GFileInfo.html#g-file-info-get-content-type" title="g_file_info_get_content_type ()"><code class="function">g_file_info_get_content_type()</code></a>.
2213
+ </p>
2214
+ <div class="variablelist"><table border="0">
2215
+ <col align="left" valign="top">
2216
+ <tbody>
2217
+ <tr>
2218
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2219
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2220
+ </td>
2221
+ </tr>
2222
+ <tr>
2223
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2224
+ <td> a <a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="type">GFileType</span></a> for the given file.
2225
+ </td>
2226
+ </tr>
2227
+ </tbody>
2228
+ </table></div>
2229
+ </div>
2230
+ <hr>
2231
+ <div class="refsect2" title="g_file_info_get_is_hidden ()">
2232
+ <a name="g-file-info-get-is-hidden"></a><h3>g_file_info_get_is_hidden ()</h3>
2233
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_info_get_is_hidden (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2234
+ <p>
2235
+ Checks if a file is hidden.
2236
+ </p>
2237
+ <div class="variablelist"><table border="0">
2238
+ <col align="left" valign="top">
2239
+ <tbody>
2240
+ <tr>
2241
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2242
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2243
+ </td>
2244
+ </tr>
2245
+ <tr>
2246
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2247
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file is a hidden file, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
2248
+ </td>
2249
+ </tr>
2250
+ </tbody>
2251
+ </table></div>
2252
+ </div>
2253
+ <hr>
2254
+ <div class="refsect2" title="g_file_info_get_is_backup ()">
2255
+ <a name="g-file-info-get-is-backup"></a><h3>g_file_info_get_is_backup ()</h3>
2256
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_info_get_is_backup (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2257
+ <p>
2258
+ Checks if a file is a backup file.
2259
+ </p>
2260
+ <div class="variablelist"><table border="0">
2261
+ <col align="left" valign="top">
2262
+ <tbody>
2263
+ <tr>
2264
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2265
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2266
+ </td>
2267
+ </tr>
2268
+ <tr>
2269
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2270
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if file is a backup file, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
2271
+ </td>
2272
+ </tr>
2273
+ </tbody>
2274
+ </table></div>
2275
+ </div>
2276
+ <hr>
2277
+ <div class="refsect2" title="g_file_info_get_is_symlink ()">
2278
+ <a name="g-file-info-get-is-symlink"></a><h3>g_file_info_get_is_symlink ()</h3>
2279
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_info_get_is_symlink (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2280
+ <p>
2281
+ Checks if a file is a symlink.
2282
+ </p>
2283
+ <div class="variablelist"><table border="0">
2284
+ <col align="left" valign="top">
2285
+ <tbody>
2286
+ <tr>
2287
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2288
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2289
+ </td>
2290
+ </tr>
2291
+ <tr>
2292
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2293
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given <em class="parameter"><code>info</code></em> is a symlink.
2294
+ </td>
2295
+ </tr>
2296
+ </tbody>
2297
+ </table></div>
2298
+ </div>
2299
+ <hr>
2300
+ <div class="refsect2" title="g_file_info_get_name ()">
2301
+ <a name="g-file-info-get-name"></a><h3>g_file_info_get_name ()</h3>
2302
+ <pre class="programlisting">const <span class="returnvalue">char</span> * g_file_info_get_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2303
+ <p>
2304
+ Gets the name for a file.
2305
+ </p>
2306
+ <div class="variablelist"><table border="0">
2307
+ <col align="left" valign="top">
2308
+ <tbody>
2309
+ <tr>
2310
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2311
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2312
+ </td>
2313
+ </tr>
2314
+ <tr>
2315
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2316
+ <td> a string containing the file name.
2317
+ </td>
2318
+ </tr>
2319
+ </tbody>
2320
+ </table></div>
2321
+ </div>
2322
+ <hr>
2323
+ <div class="refsect2" title="g_file_info_get_display_name ()">
2324
+ <a name="g-file-info-get-display-name"></a><h3>g_file_info_get_display_name ()</h3>
2325
+ <pre class="programlisting">const <span class="returnvalue">char</span> * g_file_info_get_display_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2326
+ <p>
2327
+ Gets a display name for a file.
2328
+ </p>
2329
+ <div class="variablelist"><table border="0">
2330
+ <col align="left" valign="top">
2331
+ <tbody>
2332
+ <tr>
2333
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2334
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2335
+ </td>
2336
+ </tr>
2337
+ <tr>
2338
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2339
+ <td> a string containing the display name.
2340
+ </td>
2341
+ </tr>
2342
+ </tbody>
2343
+ </table></div>
2344
+ </div>
2345
+ <hr>
2346
+ <div class="refsect2" title="g_file_info_get_edit_name ()">
2347
+ <a name="g-file-info-get-edit-name"></a><h3>g_file_info_get_edit_name ()</h3>
2348
+ <pre class="programlisting">const <span class="returnvalue">char</span> * g_file_info_get_edit_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2349
+ <p>
2350
+ Gets the edit name for a file.
2351
+ </p>
2352
+ <div class="variablelist"><table border="0">
2353
+ <col align="left" valign="top">
2354
+ <tbody>
2355
+ <tr>
2356
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2357
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2358
+ </td>
2359
+ </tr>
2360
+ <tr>
2361
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2362
+ <td> a string containing the edit name.
2363
+ </td>
2364
+ </tr>
2365
+ </tbody>
2366
+ </table></div>
2367
+ </div>
2368
+ <hr>
2369
+ <div class="refsect2" title="g_file_info_get_icon ()">
2370
+ <a name="g-file-info-get-icon"></a><h3>g_file_info_get_icon ()</h3>
2371
+ <pre class="programlisting"><a class="link" href="GIcon.html" title="GIcon"><span class="returnvalue">GIcon</span></a> * g_file_info_get_icon (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2372
+ <p>
2373
+ Gets the icon for a file.
2374
+ </p>
2375
+ <div class="variablelist"><table border="0">
2376
+ <col align="left" valign="top">
2377
+ <tbody>
2378
+ <tr>
2379
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2380
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2381
+ </td>
2382
+ </tr>
2383
+ <tr>
2384
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2385
+ <td> <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a> for the given <em class="parameter"><code>info</code></em>.
2386
+ </td>
2387
+ </tr>
2388
+ </tbody>
2389
+ </table></div>
2390
+ </div>
2391
+ <hr>
2392
+ <div class="refsect2" title="g_file_info_get_content_type ()">
2393
+ <a name="g-file-info-get-content-type"></a><h3>g_file_info_get_content_type ()</h3>
2394
+ <pre class="programlisting">const <span class="returnvalue">char</span> * g_file_info_get_content_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2395
+ <p>
2396
+ Gets the file's content type.
2397
+ </p>
2398
+ <div class="variablelist"><table border="0">
2399
+ <col align="left" valign="top">
2400
+ <tbody>
2401
+ <tr>
2402
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2403
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2404
+ </td>
2405
+ </tr>
2406
+ <tr>
2407
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2408
+ <td> a string containing the file's content type.
2409
+ </td>
2410
+ </tr>
2411
+ </tbody>
2412
+ </table></div>
2413
+ </div>
2414
+ <hr>
2415
+ <div class="refsect2" title="g_file_info_get_size ()">
2416
+ <a name="g-file-info-get-size"></a><h3>g_file_info_get_size ()</h3>
2417
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#goffset"><span class="returnvalue">goffset</span></a> g_file_info_get_size (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2418
+ <p>
2419
+ Gets the file's size.
2420
+ </p>
2421
+ <div class="variablelist"><table border="0">
2422
+ <col align="left" valign="top">
2423
+ <tbody>
2424
+ <tr>
2425
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2426
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2427
+ </td>
2428
+ </tr>
2429
+ <tr>
2430
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2431
+ <td> a <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#goffset"><span class="type">goffset</span></a> containing the file's size.
2432
+ </td>
2433
+ </tr>
2434
+ </tbody>
2435
+ </table></div>
2436
+ </div>
2437
+ <hr>
2438
+ <div class="refsect2" title="g_file_info_get_modification_time ()">
2439
+ <a name="g-file-info-get-modification-time"></a><h3>g_file_info_get_modification_time ()</h3>
2440
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_get_modification_time (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2441
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> *result</code></em>);</pre>
2442
+ <p>
2443
+ Gets the modification time of the current <em class="parameter"><code>info</code></em> and sets it
2444
+ in <em class="parameter"><code>result</code></em>.
2445
+ </p>
2446
+ <div class="variablelist"><table border="0">
2447
+ <col align="left" valign="top">
2448
+ <tbody>
2449
+ <tr>
2450
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2451
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2452
+ </td>
2453
+ </tr>
2454
+ <tr>
2455
+ <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
2456
+ <td>a <a href="/usr/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a>.
2457
+ </td>
2458
+ </tr>
2459
+ </tbody>
2460
+ </table></div>
2461
+ </div>
2462
+ <hr>
2463
+ <div class="refsect2" title="g_file_info_get_symlink_target ()">
2464
+ <a name="g-file-info-get-symlink-target"></a><h3>g_file_info_get_symlink_target ()</h3>
2465
+ <pre class="programlisting">const <span class="returnvalue">char</span> * g_file_info_get_symlink_target (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2466
+ <p>
2467
+ Gets the symlink target for a given <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2468
+ </p>
2469
+ <div class="variablelist"><table border="0">
2470
+ <col align="left" valign="top">
2471
+ <tbody>
2472
+ <tr>
2473
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2474
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2475
+ </td>
2476
+ </tr>
2477
+ <tr>
2478
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2479
+ <td> a string containing the symlink target.
2480
+ </td>
2481
+ </tr>
2482
+ </tbody>
2483
+ </table></div>
2484
+ </div>
2485
+ <hr>
2486
+ <div class="refsect2" title="g_file_info_get_etag ()">
2487
+ <a name="g-file-info-get-etag"></a><h3>g_file_info_get_etag ()</h3>
2488
+ <pre class="programlisting">const <span class="returnvalue">char</span> * g_file_info_get_etag (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2489
+ <p>
2490
+ Gets the <a class="link" href="GFile.html#gfile-etag">entity tag</a> for a given
2491
+ <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>. See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS" title="G_FILE_ATTRIBUTE_ETAG_VALUE"><code class="literal">G_FILE_ATTRIBUTE_ETAG_VALUE</code></a>.
2492
+ </p>
2493
+ <div class="variablelist"><table border="0">
2494
+ <col align="left" valign="top">
2495
+ <tbody>
2496
+ <tr>
2497
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2498
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2499
+ </td>
2500
+ </tr>
2501
+ <tr>
2502
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2503
+ <td> a string containing the value of the "etag:value" attribute.
2504
+ </td>
2505
+ </tr>
2506
+ </tbody>
2507
+ </table></div>
2508
+ </div>
2509
+ <hr>
2510
+ <div class="refsect2" title="g_file_info_get_sort_order ()">
2511
+ <a name="g-file-info-get-sort-order"></a><h3>g_file_info_get_sort_order ()</h3>
2512
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint32"><span class="returnvalue">gint32</span></a> g_file_info_get_sort_order (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2513
+ <p>
2514
+ Gets the value of the sort_order attribute from the <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2515
+ See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER</code></a>.
2516
+ </p>
2517
+ <div class="variablelist"><table border="0">
2518
+ <col align="left" valign="top">
2519
+ <tbody>
2520
+ <tr>
2521
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2522
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2523
+ </td>
2524
+ </tr>
2525
+ <tr>
2526
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2527
+ <td> a <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint32"><span class="type">gint32</span></a> containing the value of the "standard::sort_order" attribute.
2528
+ </td>
2529
+ </tr>
2530
+ </tbody>
2531
+ </table></div>
2532
+ </div>
2533
+ <hr>
2534
+ <div class="refsect2" title="g_file_info_set_attribute_mask ()">
2535
+ <a name="g-file-info-set-attribute-mask"></a><h3>g_file_info_set_attribute_mask ()</h3>
2536
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_attribute_mask (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2537
+ <em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *mask</code></em>);</pre>
2538
+ <p>
2539
+ Sets <em class="parameter"><code>mask</code></em> on <em class="parameter"><code>info</code></em> to match specific attribute types.
2540
+ </p>
2541
+ <div class="variablelist"><table border="0">
2542
+ <col align="left" valign="top">
2543
+ <tbody>
2544
+ <tr>
2545
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2546
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2547
+ </td>
2548
+ </tr>
2549
+ <tr>
2550
+ <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
2551
+ <td>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
2552
+ </td>
2553
+ </tr>
2554
+ </tbody>
2555
+ </table></div>
2556
+ </div>
2557
+ <hr>
2558
+ <div class="refsect2" title="g_file_info_unset_attribute_mask ()">
2559
+ <a name="g-file-info-unset-attribute-mask"></a><h3>g_file_info_unset_attribute_mask ()</h3>
2560
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_unset_attribute_mask (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
2561
+ <p>
2562
+ Unsets a mask set by <a class="link" href="GFileInfo.html#g-file-info-set-attribute-mask" title="g_file_info_set_attribute_mask ()"><code class="function">g_file_info_set_attribute_mask()</code></a>, if one
2563
+ is set.
2564
+ </p>
2565
+ <div class="variablelist"><table border="0">
2566
+ <col align="left" valign="top">
2567
+ <tbody><tr>
2568
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2569
+ <td>
2570
+ <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2571
+ </td>
2572
+ </tr></tbody>
2573
+ </table></div>
2574
+ </div>
2575
+ <hr>
2576
+ <div class="refsect2" title="g_file_info_set_file_type ()">
2577
+ <a name="g-file-info-set-file-type"></a><h3>g_file_info_set_file_type ()</h3>
2578
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_file_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2579
+ <em class="parameter"><code><a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="type">GFileType</span></a> type</code></em>);</pre>
2580
+ <p>
2581
+ Sets the file type in a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> to <em class="parameter"><code>type</code></em>.
2582
+ See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_TYPE"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_TYPE</code></a>.
2583
+ </p>
2584
+ <div class="variablelist"><table border="0">
2585
+ <col align="left" valign="top">
2586
+ <tbody>
2587
+ <tr>
2588
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2589
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2590
+ </td>
2591
+ </tr>
2592
+ <tr>
2593
+ <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
2594
+ <td>a <a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="type">GFileType</span></a>.
2595
+ </td>
2596
+ </tr>
2597
+ </tbody>
2598
+ </table></div>
2599
+ </div>
2600
+ <hr>
2601
+ <div class="refsect2" title="g_file_info_set_is_hidden ()">
2602
+ <a name="g-file-info-set-is-hidden"></a><h3>g_file_info_set_is_hidden ()</h3>
2603
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_is_hidden (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2604
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_hidden</code></em>);</pre>
2605
+ <p>
2606
+ Sets the "is_hidden" attribute in a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> according to <em class="parameter"><code>is_symlink</code></em>.
2607
+ See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN</code></a>.
2608
+ </p>
2609
+ <div class="variablelist"><table border="0">
2610
+ <col align="left" valign="top">
2611
+ <tbody>
2612
+ <tr>
2613
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2614
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2615
+ </td>
2616
+ </tr>
2617
+ <tr>
2618
+ <td><p><span class="term"><em class="parameter"><code>is_hidden</code></em> :</span></p></td>
2619
+ <td>a <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>.
2620
+ </td>
2621
+ </tr>
2622
+ </tbody>
2623
+ </table></div>
2624
+ </div>
2625
+ <hr>
2626
+ <div class="refsect2" title="g_file_info_set_is_symlink ()">
2627
+ <a name="g-file-info-set-is-symlink"></a><h3>g_file_info_set_is_symlink ()</h3>
2628
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_is_symlink (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2629
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_symlink</code></em>);</pre>
2630
+ <p>
2631
+ Sets the "is_symlink" attribute in a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> according to <em class="parameter"><code>is_symlink</code></em>.
2632
+ See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK</code></a>.
2633
+ </p>
2634
+ <div class="variablelist"><table border="0">
2635
+ <col align="left" valign="top">
2636
+ <tbody>
2637
+ <tr>
2638
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2639
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2640
+ </td>
2641
+ </tr>
2642
+ <tr>
2643
+ <td><p><span class="term"><em class="parameter"><code>is_symlink</code></em> :</span></p></td>
2644
+ <td>a <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>.
2645
+ </td>
2646
+ </tr>
2647
+ </tbody>
2648
+ </table></div>
2649
+ </div>
2650
+ <hr>
2651
+ <div class="refsect2" title="g_file_info_set_name ()">
2652
+ <a name="g-file-info-set-name"></a><h3>g_file_info_set_name ()</h3>
2653
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2654
+ <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
2655
+ <p>
2656
+ Sets the name attribute for the current <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2657
+ See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_NAME"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_NAME</code></a>.
2658
+ </p>
2659
+ <div class="variablelist"><table border="0">
2660
+ <col align="left" valign="top">
2661
+ <tbody>
2662
+ <tr>
2663
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2664
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2665
+ </td>
2666
+ </tr>
2667
+ <tr>
2668
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
2669
+ <td>a string containing a name.
2670
+ </td>
2671
+ </tr>
2672
+ </tbody>
2673
+ </table></div>
2674
+ </div>
2675
+ <hr>
2676
+ <div class="refsect2" title="g_file_info_set_display_name ()">
2677
+ <a name="g-file-info-set-display-name"></a><h3>g_file_info_set_display_name ()</h3>
2678
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_display_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2679
+ <em class="parameter"><code>const <span class="type">char</span> *display_name</code></em>);</pre>
2680
+ <p>
2681
+ Sets the display name for the current <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2682
+ See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME</code></a>.
2683
+ </p>
2684
+ <div class="variablelist"><table border="0">
2685
+ <col align="left" valign="top">
2686
+ <tbody>
2687
+ <tr>
2688
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2689
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2690
+ </td>
2691
+ </tr>
2692
+ <tr>
2693
+ <td><p><span class="term"><em class="parameter"><code>display_name</code></em> :</span></p></td>
2694
+ <td>a string containing a display name.
2695
+ </td>
2696
+ </tr>
2697
+ </tbody>
2698
+ </table></div>
2699
+ </div>
2700
+ <hr>
2701
+ <div class="refsect2" title="g_file_info_set_edit_name ()">
2702
+ <a name="g-file-info-set-edit-name"></a><h3>g_file_info_set_edit_name ()</h3>
2703
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_edit_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2704
+ <em class="parameter"><code>const <span class="type">char</span> *edit_name</code></em>);</pre>
2705
+ <p>
2706
+ Sets the edit name for the current file.
2707
+ See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME</code></a>.
2708
+ </p>
2709
+ <div class="variablelist"><table border="0">
2710
+ <col align="left" valign="top">
2711
+ <tbody>
2712
+ <tr>
2713
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2714
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2715
+ </td>
2716
+ </tr>
2717
+ <tr>
2718
+ <td><p><span class="term"><em class="parameter"><code>edit_name</code></em> :</span></p></td>
2719
+ <td>a string containing an edit name.
2720
+ </td>
2721
+ </tr>
2722
+ </tbody>
2723
+ </table></div>
2724
+ </div>
2725
+ <hr>
2726
+ <div class="refsect2" title="g_file_info_set_icon ()">
2727
+ <a name="g-file-info-set-icon"></a><h3>g_file_info_set_icon ()</h3>
2728
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_icon (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2729
+ <em class="parameter"><code><a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a> *icon</code></em>);</pre>
2730
+ <p>
2731
+ Sets the icon for a given <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2732
+ See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_ICON"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_ICON</code></a>.
2733
+ </p>
2734
+ <div class="variablelist"><table border="0">
2735
+ <col align="left" valign="top">
2736
+ <tbody>
2737
+ <tr>
2738
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2739
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2740
+ </td>
2741
+ </tr>
2742
+ <tr>
2743
+ <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
2744
+ <td>a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a>.
2745
+ </td>
2746
+ </tr>
2747
+ </tbody>
2748
+ </table></div>
2749
+ </div>
2750
+ <hr>
2751
+ <div class="refsect2" title="g_file_info_set_content_type ()">
2752
+ <a name="g-file-info-set-content-type"></a><h3>g_file_info_set_content_type ()</h3>
2753
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_content_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2754
+ <em class="parameter"><code>const <span class="type">char</span> *content_type</code></em>);</pre>
2755
+ <p>
2756
+ Sets the content type attribute for a given <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2757
+ See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE</code></a>.
2758
+ </p>
2759
+ <div class="variablelist"><table border="0">
2760
+ <col align="left" valign="top">
2761
+ <tbody>
2762
+ <tr>
2763
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2764
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2765
+ </td>
2766
+ </tr>
2767
+ <tr>
2768
+ <td><p><span class="term"><em class="parameter"><code>content_type</code></em> :</span></p></td>
2769
+ <td>a content type. See <span class="type">GContentType</span>.
2770
+ </td>
2771
+ </tr>
2772
+ </tbody>
2773
+ </table></div>
2774
+ </div>
2775
+ <hr>
2776
+ <div class="refsect2" title="g_file_info_set_size ()">
2777
+ <a name="g-file-info-set-size"></a><h3>g_file_info_set_size ()</h3>
2778
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_size (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2779
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#goffset"><span class="type">goffset</span></a> size</code></em>);</pre>
2780
+ <p>
2781
+ Sets the <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SIZE"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_SIZE</code></a> attribute in the file info
2782
+ to the given size.
2783
+ </p>
2784
+ <div class="variablelist"><table border="0">
2785
+ <col align="left" valign="top">
2786
+ <tbody>
2787
+ <tr>
2788
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2789
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2790
+ </td>
2791
+ </tr>
2792
+ <tr>
2793
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
2794
+ <td>a <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#goffset"><span class="type">goffset</span></a> containing the file's size.
2795
+ </td>
2796
+ </tr>
2797
+ </tbody>
2798
+ </table></div>
2799
+ </div>
2800
+ <hr>
2801
+ <div class="refsect2" title="g_file_info_set_modification_time ()">
2802
+ <a name="g-file-info-set-modification-time"></a><h3>g_file_info_set_modification_time ()</h3>
2803
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_modification_time (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2804
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> *mtime</code></em>);</pre>
2805
+ <p>
2806
+ Sets the <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS" title="G_FILE_ATTRIBUTE_TIME_MODIFIED"><code class="literal">G_FILE_ATTRIBUTE_TIME_MODIFIED</code></a> attribute in the file
2807
+ info to the given time value.
2808
+ </p>
2809
+ <div class="variablelist"><table border="0">
2810
+ <col align="left" valign="top">
2811
+ <tbody>
2812
+ <tr>
2813
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2814
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2815
+ </td>
2816
+ </tr>
2817
+ <tr>
2818
+ <td><p><span class="term"><em class="parameter"><code>mtime</code></em> :</span></p></td>
2819
+ <td>a <a href="/usr/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a>.
2820
+ </td>
2821
+ </tr>
2822
+ </tbody>
2823
+ </table></div>
2824
+ </div>
2825
+ <hr>
2826
+ <div class="refsect2" title="g_file_info_set_symlink_target ()">
2827
+ <a name="g-file-info-set-symlink-target"></a><h3>g_file_info_set_symlink_target ()</h3>
2828
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_symlink_target (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2829
+ <em class="parameter"><code>const <span class="type">char</span> *symlink_target</code></em>);</pre>
2830
+ <p>
2831
+ Sets the <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET</code></a> attribute in the file info
2832
+ to the given symlink target.
2833
+ </p>
2834
+ <div class="variablelist"><table border="0">
2835
+ <col align="left" valign="top">
2836
+ <tbody>
2837
+ <tr>
2838
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2839
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2840
+ </td>
2841
+ </tr>
2842
+ <tr>
2843
+ <td><p><span class="term"><em class="parameter"><code>symlink_target</code></em> :</span></p></td>
2844
+ <td>a static string containing a path to a symlink target.
2845
+ </td>
2846
+ </tr>
2847
+ </tbody>
2848
+ </table></div>
2849
+ </div>
2850
+ <hr>
2851
+ <div class="refsect2" title="g_file_info_set_sort_order ()">
2852
+ <a name="g-file-info-set-sort-order"></a><h3>g_file_info_set_sort_order ()</h3>
2853
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_info_set_sort_order (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
2854
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint32"><span class="type">gint32</span></a> sort_order</code></em>);</pre>
2855
+ <p>
2856
+ Sets the sort order attribute in the file info structure. See
2857
+ <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER</code></a>.
2858
+ </p>
2859
+ <div class="variablelist"><table border="0">
2860
+ <col align="left" valign="top">
2861
+ <tbody>
2862
+ <tr>
2863
+ <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
2864
+ <td>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
2865
+ </td>
2866
+ </tr>
2867
+ <tr>
2868
+ <td><p><span class="term"><em class="parameter"><code>sort_order</code></em> :</span></p></td>
2869
+ <td>a sort order integer.
2870
+ </td>
2871
+ </tr>
2872
+ </tbody>
2873
+ </table></div>
2874
+ </div>
2875
+ <hr>
2876
+ <div class="refsect2" title="g_file_attribute_matcher_new ()">
2877
+ <a name="g-file-attribute-matcher-new"></a><h3>g_file_attribute_matcher_new ()</h3>
2878
+ <pre class="programlisting"><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> * g_file_attribute_matcher_new (<em class="parameter"><code>const <span class="type">char</span> *attributes</code></em>);</pre>
2879
+ <p>
2880
+ Creates a new file attribute matcher, which matches attributes
2881
+ against a given string. <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>s are reference
2882
+ counted structures, and are created with a reference count of 1. If
2883
+ the number of references falls to 0, the <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> is
2884
+ automatically destroyed.
2885
+ </p>
2886
+ <p>
2887
+ The <em class="parameter"><code>attribute</code></em> string should be formatted with specific keys separated
2888
+ from namespaces with a double colon. Several "namespace::key" strings may be
2889
+ concatenated with a single comma (e.g. "standard::type,standard::is-hidden").
2890
+ The wildcard "*" may be used to match all keys and namespaces, or
2891
+ "namespace::*" will match all keys in a given namespace.
2892
+ </p>
2893
+ <p>
2894
+ Examples of strings to use:
2895
+ </p>
2896
+ <div class="table">
2897
+ <a name="id493352"></a><p class="title"><b>Table 3. File Attribute Matcher strings and results</b></p>
2898
+ <div class="table-contents"><table summary="File Attribute Matcher strings and results" border="1">
2899
+ <colgroup>
2900
+ <col>
2901
+ <col>
2902
+ </colgroup>
2903
+ <thead><tr>
2904
+ <th align="left"> Matcher String </th>
2905
+ <th align="left"> Matches </th>
2906
+ </tr></thead>
2907
+ <tbody>
2908
+ <tr>
2909
+ <td align="left">"*"</td>
2910
+ <td align="left">matches all attributes.</td>
2911
+ </tr>
2912
+ <tr>
2913
+ <td align="left">"standard::is-hidden"</td>
2914
+ <td align="left">matches only the key is-hidden in the standard namespace.</td>
2915
+ </tr>
2916
+ <tr>
2917
+ <td align="left">"standard::type,unix::*"</td>
2918
+ <td align="left">matches the type key in the standard namespace and
2919
+ all keys in the unix namespace.</td>
2920
+ </tr>
2921
+ </tbody>
2922
+ </table></div>
2923
+ </div>
2924
+ <p><br class="table-break">
2925
+ </p>
2926
+ <div class="variablelist"><table border="0">
2927
+ <col align="left" valign="top">
2928
+ <tbody>
2929
+ <tr>
2930
+ <td><p><span class="term"><em class="parameter"><code>attributes</code></em> :</span></p></td>
2931
+ <td>an attribute string to match.
2932
+ </td>
2933
+ </tr>
2934
+ <tr>
2935
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2936
+ <td> a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
2937
+ </td>
2938
+ </tr>
2939
+ </tbody>
2940
+ </table></div>
2941
+ </div>
2942
+ <hr>
2943
+ <div class="refsect2" title="g_file_attribute_matcher_ref ()">
2944
+ <a name="g-file-attribute-matcher-ref"></a><h3>g_file_attribute_matcher_ref ()</h3>
2945
+ <pre class="programlisting"><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> * g_file_attribute_matcher_ref (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);</pre>
2946
+ <p>
2947
+ References a file attribute matcher.
2948
+ </p>
2949
+ <div class="variablelist"><table border="0">
2950
+ <col align="left" valign="top">
2951
+ <tbody>
2952
+ <tr>
2953
+ <td><p><span class="term"><em class="parameter"><code>matcher</code></em> :</span></p></td>
2954
+ <td>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
2955
+ </td>
2956
+ </tr>
2957
+ <tr>
2958
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2959
+ <td> a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
2960
+ </td>
2961
+ </tr>
2962
+ </tbody>
2963
+ </table></div>
2964
+ </div>
2965
+ <hr>
2966
+ <div class="refsect2" title="g_file_attribute_matcher_unref ()">
2967
+ <a name="g-file-attribute-matcher-unref"></a><h3>g_file_attribute_matcher_unref ()</h3>
2968
+ <pre class="programlisting"><span class="returnvalue">void</span> g_file_attribute_matcher_unref (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);</pre>
2969
+ <p>
2970
+ Unreferences <em class="parameter"><code>matcher</code></em>. If the reference count falls below 1,
2971
+ the <em class="parameter"><code>matcher</code></em> is automatically freed.
2972
+ </p>
2973
+ <div class="variablelist"><table border="0">
2974
+ <col align="left" valign="top">
2975
+ <tbody><tr>
2976
+ <td><p><span class="term"><em class="parameter"><code>matcher</code></em> :</span></p></td>
2977
+ <td>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
2978
+ </td>
2979
+ </tr></tbody>
2980
+ </table></div>
2981
+ </div>
2982
+ <hr>
2983
+ <div class="refsect2" title="g_file_attribute_matcher_matches ()">
2984
+ <a name="g-file-attribute-matcher-matches"></a><h3>g_file_attribute_matcher_matches ()</h3>
2985
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_attribute_matcher_matches (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
2986
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
2987
+ <p>
2988
+ Checks if an attribute will be matched by an attribute matcher. If
2989
+ the matcher was created with the "*" matching string, this function
2990
+ will always return <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.
2991
+ </p>
2992
+ <div class="variablelist"><table border="0">
2993
+ <col align="left" valign="top">
2994
+ <tbody>
2995
+ <tr>
2996
+ <td><p><span class="term"><em class="parameter"><code>matcher</code></em> :</span></p></td>
2997
+ <td>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
2998
+ </td>
2999
+ </tr>
3000
+ <tr>
3001
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
3002
+ <td>a file attribute key.
3003
+ </td>
3004
+ </tr>
3005
+ <tr>
3006
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3007
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>attribute</code></em> matches <em class="parameter"><code>matcher</code></em>. <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
3008
+ </td>
3009
+ </tr>
3010
+ </tbody>
3011
+ </table></div>
3012
+ </div>
3013
+ <hr>
3014
+ <div class="refsect2" title="g_file_attribute_matcher_matches_only ()">
3015
+ <a name="g-file-attribute-matcher-matches-only"></a><h3>g_file_attribute_matcher_matches_only ()</h3>
3016
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_attribute_matcher_matches_only
3017
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
3018
+ <em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
3019
+ <p>
3020
+ Checks if a attribute matcher only matches a given attribute. Always
3021
+ returns <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if "*" was used when creating the matcher.
3022
+ </p>
3023
+ <div class="variablelist"><table border="0">
3024
+ <col align="left" valign="top">
3025
+ <tbody>
3026
+ <tr>
3027
+ <td><p><span class="term"><em class="parameter"><code>matcher</code></em> :</span></p></td>
3028
+ <td>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
3029
+ </td>
3030
+ </tr>
3031
+ <tr>
3032
+ <td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
3033
+ <td>a file attribute key.
3034
+ </td>
3035
+ </tr>
3036
+ <tr>
3037
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3038
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the matcher only matches <em class="parameter"><code>attribute</code></em>. <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
3039
+ </td>
3040
+ </tr>
3041
+ </tbody>
3042
+ </table></div>
3043
+ </div>
3044
+ <hr>
3045
+ <div class="refsect2" title="g_file_attribute_matcher_enumerate_namespace ()">
3046
+ <a name="g-file-attribute-matcher-enumerate-namespace"></a><h3>g_file_attribute_matcher_enumerate_namespace ()</h3>
3047
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> g_file_attribute_matcher_enumerate_namespace
3048
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
3049
+ <em class="parameter"><code>const <span class="type">char</span> *ns</code></em>);</pre>
3050
+ <p>
3051
+ Checks if the matcher will match all of the keys in a given namespace.
3052
+ This will always return <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a wildcard character is in use (e.g. if
3053
+ matcher was created with "standard::*" and <em class="parameter"><code>ns</code></em> is "standard", or if matcher was created
3054
+ using "*" and namespace is anything.)
3055
+ </p>
3056
+ <p>
3057
+ TODO: this is awkwardly worded.
3058
+ </p>
3059
+ <div class="variablelist"><table border="0">
3060
+ <col align="left" valign="top">
3061
+ <tbody>
3062
+ <tr>
3063
+ <td><p><span class="term"><em class="parameter"><code>matcher</code></em> :</span></p></td>
3064
+ <td>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
3065
+ </td>
3066
+ </tr>
3067
+ <tr>
3068
+ <td><p><span class="term"><em class="parameter"><code>ns</code></em> :</span></p></td>
3069
+ <td>a string containing a file attribute namespace.
3070
+ </td>
3071
+ </tr>
3072
+ <tr>
3073
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3074
+ <td> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the matcher matches all of the entries
3075
+ in the given <em class="parameter"><code>ns</code></em>, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
3076
+ </td>
3077
+ </tr>
3078
+ </tbody>
3079
+ </table></div>
3080
+ </div>
3081
+ <hr>
3082
+ <div class="refsect2" title="g_file_attribute_matcher_enumerate_next ()">
3083
+ <a name="g-file-attribute-matcher-enumerate-next"></a><h3>g_file_attribute_matcher_enumerate_next ()</h3>
3084
+ <pre class="programlisting">const <span class="returnvalue">char</span> * g_file_attribute_matcher_enumerate_next
3085
+ (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);</pre>
3086
+ <p>
3087
+ Gets the next matched attribute from a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
3088
+ </p>
3089
+ <div class="variablelist"><table border="0">
3090
+ <col align="left" valign="top">
3091
+ <tbody>
3092
+ <tr>
3093
+ <td><p><span class="term"><em class="parameter"><code>matcher</code></em> :</span></p></td>
3094
+ <td>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher" title="GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.
3095
+ </td>
3096
+ </tr>
3097
+ <tr>
3098
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3099
+ <td> a string containing the next attribute or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
3100
+ no more attribute exist.
3101
+ </td>
3102
+ </tr>
3103
+ </tbody>
3104
+ </table></div>
3105
+ </div>
3106
+ </div>
3107
+ <div class="refsect1" title="See Also">
3108
+ <a name="GFileInfo.see-also"></a><h2>See Also</h2>
3109
+ <a class="link" href="GFile.html" title="GFile"><span class="type">GFile</span></a>, <a class="link" href="gio-GFileAttribute.html" title="GFileAttribute">GFileAttribute</a>
3110
+ </div>
3111
+ </div>
3112
+ <div class="footer">
3113
+ <hr>
3114
+ Generated by GTK-Doc V1.14</div>
3115
+ </body>
3116
+ </html>