gio2 0.90.3-x86-mingw32

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