gtksourceview3 3.0.7-x64-mingw32 → 3.0.8-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (318) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
  4. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +4 -0
  5. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +4 -0
  6. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceautocleanups.h +52 -0
  7. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +68 -1
  8. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +18 -5
  9. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +8 -2
  10. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +9 -6
  11. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +4 -1
  12. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +36 -10
  13. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +27 -1
  14. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +28 -11
  15. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +36 -1
  16. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +15 -1
  17. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +18 -1
  18. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +9 -3
  19. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +39 -1
  20. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +10 -2
  21. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +6 -0
  22. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +11 -0
  23. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +8 -4
  24. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemap.h +67 -0
  25. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +6 -0
  26. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +18 -2
  27. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +54 -8
  28. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +20 -0
  29. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +12 -0
  30. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +2 -0
  31. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +9 -2
  32. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooser.h +8 -6
  33. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooserbutton.h +9 -6
  34. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooserwidget.h +9 -6
  35. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +10 -0
  36. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetag.h +51 -0
  37. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +2 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +13 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +4 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceversion.h +493 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +21 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +47 -5
  43. data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
  44. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  45. data/vendor/local/lib/libgtksourceview-3.0.la +5 -5
  46. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +4 -4
  47. data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +880 -151
  48. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +475 -261
  49. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +104 -108
  50. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +31 -34
  51. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +42 -44
  52. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +64 -39
  53. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +171 -75
  54. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +164 -77
  55. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +29 -31
  56. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +65 -45
  57. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +259 -61
  58. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +99 -96
  59. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +88 -94
  60. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +44 -46
  61. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +187 -195
  62. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +37 -39
  63. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +91 -20
  64. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +88 -93
  65. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +47 -50
  66. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMap.html +254 -0
  67. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +39 -42
  68. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +89 -91
  69. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +249 -277
  70. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +158 -169
  71. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +69 -75
  72. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +83 -40
  73. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +46 -49
  74. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeChooser.html +9 -10
  75. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeChooserButton.html +13 -15
  76. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeChooserWidget.html +12 -14
  77. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +33 -36
  78. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceTag.html +177 -0
  79. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +40 -43
  80. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +328 -252
  81. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +6 -10
  82. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-0.html +62 -0
  83. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-10.html +90 -0
  84. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-12.html +34 -0
  85. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-2.html +270 -0
  86. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-4.html +38 -0
  87. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-2-8.html +50 -0
  88. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +4 -5
  89. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +2 -3
  90. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +2 -3
  91. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +2 -3
  92. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-16.html +4 -5
  93. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-18.html +114 -0
  94. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-20.html +130 -0
  95. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +2 -3
  96. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +8 -5
  97. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +214 -3
  98. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +2 -3
  99. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +2 -3
  100. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch03.html +2 -3
  101. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch04.html +2 -3
  102. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch05.html +2 -3
  103. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch06.html +2 -3
  104. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch07.html +2 -3
  105. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch08.html +13 -5
  106. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/{pt02.html → ch09.html} +9 -13
  107. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +19 -22
  108. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-Version-Information.html +472 -0
  109. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +95 -13
  110. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +21 -6
  111. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +10 -8
  112. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +6 -7
  113. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +16 -14
  114. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/pt01.html +11 -3
  115. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +37 -15
  116. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +9 -6
  117. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +9 -0
  118. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +14 -2
  119. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +11 -3
  120. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +18 -12
  121. data/vendor/local/share/gtksourceview-3.0/language-specs/cpphdr.lang +42 -0
  122. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +5 -0
  123. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +418 -14
  124. data/vendor/local/share/gtksourceview-3.0/language-specs/csv.lang +74 -0
  125. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +6 -6
  126. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +2 -2
  127. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +1 -0
  128. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +1 -1
  129. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +6 -0
  130. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +1 -1
  131. data/vendor/local/share/gtksourceview-3.0/language-specs/jade.lang +250 -0
  132. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +14 -1
  133. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +1 -1
  134. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +15 -15
  135. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +8 -30
  136. data/vendor/local/share/gtksourceview-3.0/language-specs/meson.lang +103 -0
  137. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +1 -1
  138. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +208 -145
  139. data/vendor/local/share/gtksourceview-3.0/language-specs/pig.lang +12 -2
  140. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +52 -20
  141. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +2 -0
  142. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +2 -0
  143. data/vendor/local/share/gtksourceview-3.0/language-specs/rust.lang +292 -0
  144. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +20 -2
  145. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +37 -0
  146. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +3 -0
  147. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +3 -3
  148. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +2 -2
  149. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +3 -3
  150. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +5 -3
  151. data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +2 -1
  152. data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +1 -1
  153. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +1 -3
  154. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +3 -4
  155. data/vendor/local/share/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  156. data/vendor/local/share/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  157. data/vendor/local/share/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  158. data/vendor/local/share/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  159. data/vendor/local/share/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  160. data/vendor/local/share/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  161. data/vendor/local/share/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  162. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  163. data/vendor/local/share/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  164. data/vendor/local/share/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  165. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  166. data/vendor/local/share/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  167. data/vendor/local/share/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  168. data/vendor/local/share/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  169. data/vendor/local/share/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  170. data/vendor/local/share/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  171. data/vendor/local/share/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  172. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  173. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  174. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  175. data/vendor/local/share/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  176. data/vendor/local/share/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  177. data/vendor/local/share/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  178. data/vendor/local/share/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  179. data/vendor/local/share/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  180. data/vendor/local/share/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  181. data/vendor/local/share/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  182. data/vendor/local/share/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  183. data/vendor/local/share/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  184. data/vendor/local/share/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  185. data/vendor/local/share/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  186. data/vendor/local/share/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  187. data/vendor/local/share/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  188. data/vendor/local/share/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  189. data/vendor/local/share/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  190. data/vendor/local/share/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  191. data/vendor/local/share/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  192. data/vendor/local/share/locale/kk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  193. data/vendor/local/share/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  194. data/vendor/local/share/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  195. data/vendor/local/share/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  196. data/vendor/local/share/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  197. data/vendor/local/share/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  198. data/vendor/local/share/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  199. data/vendor/local/share/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  200. data/vendor/local/share/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  201. data/vendor/local/share/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  202. data/vendor/local/share/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  203. data/vendor/local/share/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  204. data/vendor/local/share/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  205. data/vendor/local/share/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  206. data/vendor/local/share/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  207. data/vendor/local/share/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  208. data/vendor/local/share/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  209. data/vendor/local/share/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  210. data/vendor/local/share/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  211. data/vendor/local/share/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  212. data/vendor/local/share/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  213. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  214. data/vendor/local/share/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  215. data/vendor/local/share/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  216. data/vendor/local/share/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  217. data/vendor/local/share/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  218. data/vendor/local/share/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  219. data/vendor/local/share/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  220. data/vendor/local/share/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  221. data/vendor/local/share/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  222. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  223. data/vendor/local/share/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  224. data/vendor/local/share/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  225. data/vendor/local/share/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  226. data/vendor/local/share/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  227. data/vendor/local/share/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  228. data/vendor/local/share/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  229. data/vendor/local/share/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  230. data/vendor/local/share/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  231. data/vendor/local/share/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  232. data/vendor/local/share/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  233. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  234. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  235. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  236. metadata +109 -90
  237. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  238. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  239. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  240. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  241. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  242. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  243. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  244. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  245. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  246. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  247. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  248. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  249. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  250. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  251. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  252. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  253. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  254. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  255. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  256. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  257. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  258. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  259. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  260. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  261. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  262. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  263. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  264. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  265. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  266. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  267. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  268. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  269. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  270. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  271. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  272. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  273. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  274. data/vendor/local/lib/locale/kk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  275. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  276. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  277. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  278. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  279. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  280. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  281. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  282. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  283. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  284. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  285. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  286. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  287. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  288. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  289. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  290. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  291. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  292. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  293. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  294. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  295. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  296. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  297. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  298. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  299. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  300. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  301. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  302. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  303. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  304. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  305. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  306. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  307. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  308. data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  309. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  310. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  311. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  312. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  313. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  314. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  315. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  316. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  317. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  318. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +0 -987
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="ch04.html" title="File Loading and Saving">
9
9
  <link rel="prev" href="GtkSourceEncoding.html" title="GtkSourceEncoding">
10
10
  <link rel="next" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">
11
- <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.25.1 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -43,7 +43,7 @@
43
43
  <tbody>
44
44
  <tr>
45
45
  <td class="function_type">
46
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GMountOperation.html"><span class="returnvalue">GMountOperation</span></a> *
46
+ <a href="/usr/share/gtk-doc/html/gioGMountOperation.html#GMountOperation-struct"><span class="returnvalue">GMountOperation</span></a> *
47
47
  </td>
48
48
  <td class="function_name">
49
49
  <span class="c_punctuation">(</span><a class="link" href="GtkSourceFile.html#GtkSourceMountOperationFactory" title="GtkSourceMountOperationFactory ()">*GtkSourceMountOperationFactory</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
@@ -59,7 +59,7 @@
59
59
  </tr>
60
60
  <tr>
61
61
  <td class="function_type">
62
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GFile.html"><span class="returnvalue">GFile</span></a> *
62
+ <a href="/usr/share/gtk-doc/html/gioGFile.html#GFile-struct"><span class="returnvalue">GFile</span></a> *
63
63
  </td>
64
64
  <td class="function_name">
65
65
  <a class="link" href="GtkSourceFile.html#gtk-source-file-get-location" title="gtk_source_file_get_location ()">gtk_source_file_get_location</a> <span class="c_punctuation">()</span>
@@ -101,6 +101,46 @@
101
101
  <span class="returnvalue">void</span>
102
102
  </td>
103
103
  <td class="function_name">
104
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-check-file-on-disk" title="gtk_source_file_check_file_on_disk ()">gtk_source_file_check_file_on_disk</a> <span class="c_punctuation">()</span>
105
+ </td>
106
+ </tr>
107
+ <tr>
108
+ <td class="function_type">
109
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
110
+ </td>
111
+ <td class="function_name">
112
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-is-local" title="gtk_source_file_is_local ()">gtk_source_file_is_local</a> <span class="c_punctuation">()</span>
113
+ </td>
114
+ </tr>
115
+ <tr>
116
+ <td class="function_type">
117
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
118
+ </td>
119
+ <td class="function_name">
120
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-is-externally-modified" title="gtk_source_file_is_externally_modified ()">gtk_source_file_is_externally_modified</a> <span class="c_punctuation">()</span>
121
+ </td>
122
+ </tr>
123
+ <tr>
124
+ <td class="function_type">
125
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
126
+ </td>
127
+ <td class="function_name">
128
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-is-deleted" title="gtk_source_file_is_deleted ()">gtk_source_file_is_deleted</a> <span class="c_punctuation">()</span>
129
+ </td>
130
+ </tr>
131
+ <tr>
132
+ <td class="function_type">
133
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
134
+ </td>
135
+ <td class="function_name">
136
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-is-readonly" title="gtk_source_file_is_readonly ()">gtk_source_file_is_readonly</a> <span class="c_punctuation">()</span>
137
+ </td>
138
+ </tr>
139
+ <tr>
140
+ <td class="function_type">
141
+ <span class="returnvalue">void</span>
142
+ </td>
143
+ <td class="function_name">
104
144
  <a class="link" href="GtkSourceFile.html#gtk-source-file-set-mount-operation-factory" title="gtk_source_file_set_mount_operation_factory ()">gtk_source_file_set_mount_operation_factory</a> <span class="c_punctuation">()</span>
105
145
  </td>
106
146
  </tr>
@@ -129,15 +169,20 @@
129
169
  </tr>
130
170
  <tr>
131
171
  <td class="property_type">
132
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GFile.html"><span class="type">GFile</span></a> *</td>
172
+ <a href="/usr/share/gtk-doc/html/gioGFile.html#GFile-struct"><span class="type">GFile</span></a> *</td>
133
173
  <td class="property_name"><a class="link" href="GtkSourceFile.html#GtkSourceFile--location" title="The “location” property">location</a></td>
134
- <td class="property_flags">Read / Write</td>
174
+ <td class="property_flags">Read / Write / Construct</td>
135
175
  </tr>
136
176
  <tr>
137
177
  <td class="property_type"><a class="link" href="GtkSourceFile.html#GtkSourceNewlineType" title="enum GtkSourceNewlineType"><span class="type">GtkSourceNewlineType</span></a></td>
138
178
  <td class="property_name"><a class="link" href="GtkSourceFile.html#GtkSourceFile--newline-type" title="The “newline-type” property">newline-type</a></td>
139
179
  <td class="property_flags">Read</td>
140
180
  </tr>
181
+ <tr>
182
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
183
+ <td class="property_name"><a class="link" href="GtkSourceFile.html#GtkSourceFile--read-only" title="The “read-only” property">read-only</a></td>
184
+ <td class="property_flags">Read</td>
185
+ </tr>
141
186
  </tbody>
142
187
  </table></div>
143
188
  </div>
@@ -170,7 +215,7 @@
170
215
  </div>
171
216
  <div class="refsect1">
172
217
  <a name="GtkSourceFile.object-hierarchy"></a><h2>Object Hierarchy</h2>
173
- <pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
218
+ <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
174
219
  <span class="lineart">╰──</span> GtkSourceFile
175
220
  </pre>
176
221
  </div>
@@ -193,13 +238,13 @@ have still the previous valid values.</p>
193
238
  <a name="GtkSourceFile.functions_details"></a><h2>Functions</h2>
194
239
  <div class="refsect2">
195
240
  <a name="GtkSourceMountOperationFactory"></a><h3>GtkSourceMountOperationFactory ()</h3>
196
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GMountOperation.html"><span class="returnvalue">GMountOperation</span></a> *
241
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/gioGMountOperation.html#GMountOperation-struct"><span class="returnvalue">GMountOperation</span></a> *
197
242
  <span class="c_punctuation">(</span>*GtkSourceMountOperationFactory<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>,
198
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> userdata</code></em>);</pre>
243
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> userdata</code></em>);</pre>
199
244
  <p>Type definition for a function that will be called to create a
200
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GMountOperation.html"><span class="type">GMountOperation</span></a>. This is useful for creating a <a href="http://developer.gnome.org/gtk2/gtk3-Filesystem-utilities.html#GtkMountOperation"><span class="type">GtkMountOperation</span></a>.</p>
245
+ <a href="/usr/share/gtk-doc/html/gioGMountOperation.html#GMountOperation-struct"><span class="type">GMountOperation</span></a>. This is useful for creating a <a href="/usr/share/gtk-doc/html/gtk3gtk3-Filesystem-utilities.html#GtkMountOperation-struct"><span class="type">GtkMountOperation</span></a>.</p>
201
246
  <div class="refsect3">
202
- <a name="id-1.2.5.3.9.2.5"></a><h4>Parameters</h4>
247
+ <a name="GtkSourceMountOperationFactory.parameters"></a><h4>Parameters</h4>
203
248
  <div class="informaltable"><table width="100%" border="0">
204
249
  <colgroup>
205
250
  <col width="150px" class="parameters_name">
@@ -220,7 +265,7 @@ have still the previous valid values.</p>
220
265
  </tbody>
221
266
  </table></div>
222
267
  </div>
223
- <p class="since">Since 3.14</p>
268
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
224
269
  </div>
225
270
  <hr>
226
271
  <div class="refsect2">
@@ -228,19 +273,18 @@ have still the previous valid values.</p>
228
273
  <pre class="programlisting"><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="returnvalue">GtkSourceFile</span></a> *
229
274
  gtk_source_file_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
230
275
  <div class="refsect3">
231
- <a name="id-1.2.5.3.9.3.4"></a><h4>Returns</h4>
276
+ <a name="gtk-source-file-new.returns"></a><h4>Returns</h4>
232
277
  <p> a new <a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> object.</p>
233
- <p></p>
234
278
  </div>
235
- <p class="since">Since 3.14</p>
279
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
236
280
  </div>
237
281
  <hr>
238
282
  <div class="refsect2">
239
283
  <a name="gtk-source-file-get-location"></a><h3>gtk_source_file_get_location ()</h3>
240
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GFile.html"><span class="returnvalue">GFile</span></a> *
284
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/gioGFile.html#GFile-struct"><span class="returnvalue">GFile</span></a> *
241
285
  gtk_source_file_get_location (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>);</pre>
242
286
  <div class="refsect3">
243
- <a name="id-1.2.5.3.9.4.4"></a><h4>Parameters</h4>
287
+ <a name="gtk-source-file-get-location.parameters"></a><h4>Parameters</h4>
244
288
  <div class="informaltable"><table width="100%" border="0">
245
289
  <colgroup>
246
290
  <col width="150px" class="parameters_name">
@@ -255,21 +299,21 @@ gtk_source_file_get_location (<em class="parameter"><code><a class="link" href="
255
299
  </table></div>
256
300
  </div>
257
301
  <div class="refsect3">
258
- <a name="id-1.2.5.3.9.4.5"></a><h4>Returns</h4>
259
- <p> the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GFile.html"><span class="type">GFile</span></a>. </p>
302
+ <a name="gtk-source-file-get-location.returns"></a><h4>Returns</h4>
303
+ <p> the <a href="/usr/share/gtk-doc/html/gioGFile.html#GFile-struct"><span class="type">GFile</span></a>. </p>
260
304
  <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
261
305
  </div>
262
- <p class="since">Since 3.14</p>
306
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
263
307
  </div>
264
308
  <hr>
265
309
  <div class="refsect2">
266
310
  <a name="gtk-source-file-set-location"></a><h3>gtk_source_file_set_location ()</h3>
267
311
  <pre class="programlisting"><span class="returnvalue">void</span>
268
312
  gtk_source_file_set_location (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>,
269
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GFile.html"><span class="type">GFile</span></a> *location</code></em>);</pre>
313
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gioGFile.html#GFile-struct"><span class="type">GFile</span></a> *location</code></em>);</pre>
270
314
  <p>Sets the location.</p>
271
315
  <div class="refsect3">
272
- <a name="id-1.2.5.3.9.5.5"></a><h4>Parameters</h4>
316
+ <a name="gtk-source-file-set-location.parameters"></a><h4>Parameters</h4>
273
317
  <div class="informaltable"><table width="100%" border="0">
274
318
  <colgroup>
275
319
  <col width="150px" class="parameters_name">
@@ -284,23 +328,23 @@ gtk_source_file_set_location (<em class="parameter"><code><a class="link" href="
284
328
  </tr>
285
329
  <tr>
286
330
  <td class="parameter_name"><p>location</p></td>
287
- <td class="parameter_description"><p> the new <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GFile.html"><span class="type">GFile</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
331
+ <td class="parameter_description"><p> the new <a href="/usr/share/gtk-doc/html/gioGFile.html#GFile-struct"><span class="type">GFile</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
288
332
  <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></td>
289
333
  </tr>
290
334
  </tbody>
291
335
  </table></div>
292
336
  </div>
293
- <p class="since">Since 3.14</p>
337
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
294
338
  </div>
295
339
  <hr>
296
340
  <div class="refsect2">
297
341
  <a name="gtk-source-file-get-encoding"></a><h3>gtk_source_file_get_encoding ()</h3>
298
342
  <pre class="programlisting">const <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding"><span class="returnvalue">GtkSourceEncoding</span></a> *
299
343
  gtk_source_file_get_encoding (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>);</pre>
300
- <p>The encoding is initially <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. After a successful file loading or saving
301
- operation, the encoding is non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
344
+ <p>The encoding is initially <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. After a successful file loading or saving
345
+ operation, the encoding is non-<a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
302
346
  <div class="refsect3">
303
- <a name="id-1.2.5.3.9.6.5"></a><h4>Parameters</h4>
347
+ <a name="gtk-source-file-get-encoding.parameters"></a><h4>Parameters</h4>
304
348
  <div class="informaltable"><table width="100%" border="0">
305
349
  <colgroup>
306
350
  <col width="150px" class="parameters_name">
@@ -315,11 +359,10 @@ operation, the encoding is non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/ve
315
359
  </table></div>
316
360
  </div>
317
361
  <div class="refsect3">
318
- <a name="id-1.2.5.3.9.6.6"></a><h4>Returns</h4>
362
+ <a name="gtk-source-file-get-encoding.returns"></a><h4>Returns</h4>
319
363
  <p> the character encoding.</p>
320
- <p></p>
321
364
  </div>
322
- <p class="since">Since 3.14</p>
365
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
323
366
  </div>
324
367
  <hr>
325
368
  <div class="refsect2">
@@ -327,7 +370,7 @@ operation, the encoding is non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/ve
327
370
  <pre class="programlisting"><a class="link" href="GtkSourceFile.html#GtkSourceNewlineType" title="enum GtkSourceNewlineType"><span class="returnvalue">GtkSourceNewlineType</span></a>
328
371
  gtk_source_file_get_newline_type (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>);</pre>
329
372
  <div class="refsect3">
330
- <a name="id-1.2.5.3.9.7.4"></a><h4>Parameters</h4>
373
+ <a name="gtk-source-file-get-newline-type.parameters"></a><h4>Parameters</h4>
331
374
  <div class="informaltable"><table width="100%" border="0">
332
375
  <colgroup>
333
376
  <col width="150px" class="parameters_name">
@@ -342,11 +385,10 @@ gtk_source_file_get_newline_type (<em class="parameter"><code><a class="link" hr
342
385
  </table></div>
343
386
  </div>
344
387
  <div class="refsect3">
345
- <a name="id-1.2.5.3.9.7.5"></a><h4>Returns</h4>
388
+ <a name="gtk-source-file-get-newline-type.returns"></a><h4>Returns</h4>
346
389
  <p> the newline type.</p>
347
- <p></p>
348
390
  </div>
349
- <p class="since">Since 3.14</p>
391
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
350
392
  </div>
351
393
  <hr>
352
394
  <div class="refsect2">
@@ -354,7 +396,7 @@ gtk_source_file_get_newline_type (<em class="parameter"><code><a class="link" hr
354
396
  <pre class="programlisting"><a class="link" href="GtkSourceFile.html#GtkSourceCompressionType" title="enum GtkSourceCompressionType"><span class="returnvalue">GtkSourceCompressionType</span></a>
355
397
  gtk_source_file_get_compression_type (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>);</pre>
356
398
  <div class="refsect3">
357
- <a name="id-1.2.5.3.9.8.4"></a><h4>Parameters</h4>
399
+ <a name="gtk-source-file-get-compression-type.parameters"></a><h4>Parameters</h4>
358
400
  <div class="informaltable"><table width="100%" border="0">
359
401
  <colgroup>
360
402
  <col width="150px" class="parameters_name">
@@ -369,11 +411,158 @@ gtk_source_file_get_compression_type (<em class="parameter"><code><a class="link
369
411
  </table></div>
370
412
  </div>
371
413
  <div class="refsect3">
372
- <a name="id-1.2.5.3.9.8.5"></a><h4>Returns</h4>
414
+ <a name="gtk-source-file-get-compression-type.returns"></a><h4>Returns</h4>
373
415
  <p> the compression type.</p>
374
- <p></p>
375
416
  </div>
376
- <p class="since">Since 3.14</p>
417
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
418
+ </div>
419
+ <hr>
420
+ <div class="refsect2">
421
+ <a name="gtk-source-file-check-file-on-disk"></a><h3>gtk_source_file_check_file_on_disk ()</h3>
422
+ <pre class="programlisting"><span class="returnvalue">void</span>
423
+ gtk_source_file_check_file_on_disk (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>);</pre>
424
+ <p>Checks synchronously the file on disk, to know whether the file is externally
425
+ modified, or has been deleted, and whether the file is read-only.</p>
426
+ <p><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> doesn't create a <a href="/usr/share/gtk-doc/html/gioGFileMonitor.html#GFileMonitor-struct"><span class="type">GFileMonitor</span></a> to track those properties, so
427
+ this function needs to be called instead. Creating lots of <a href="/usr/share/gtk-doc/html/gioGFileMonitor.html#GFileMonitor-struct"><span class="type">GFileMonitor</span></a>'s
428
+ would take lots of resources.</p>
429
+ <p>Since this function is synchronous, it is advised to call it only on local
430
+ files. See <a class="link" href="GtkSourceFile.html#gtk-source-file-is-local" title="gtk_source_file_is_local ()"><code class="function">gtk_source_file_is_local()</code></a>.</p>
431
+ <div class="refsect3">
432
+ <a name="gtk-source-file-check-file-on-disk.parameters"></a><h4>Parameters</h4>
433
+ <div class="informaltable"><table width="100%" border="0">
434
+ <colgroup>
435
+ <col width="150px" class="parameters_name">
436
+ <col class="parameters_description">
437
+ <col width="200px" class="parameters_annotations">
438
+ </colgroup>
439
+ <tbody><tr>
440
+ <td class="parameter_name"><p>file</p></td>
441
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a>.</p></td>
442
+ <td class="parameter_annotations"> </td>
443
+ </tr></tbody>
444
+ </table></div>
445
+ </div>
446
+ <p class="since">Since: <a class="link" href="api-index-3-18.html#api-index-3.18">3.18</a></p>
447
+ </div>
448
+ <hr>
449
+ <div class="refsect2">
450
+ <a name="gtk-source-file-is-local"></a><h3>gtk_source_file_is_local ()</h3>
451
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
452
+ gtk_source_file_is_local (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>);</pre>
453
+ <p>Returns whether the file is local. If the <a class="link" href="GtkSourceFile.html#GtkSourceFile--location" title="The “location” property"><span class="type">“location”</span></a> is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>,
454
+ returns <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
455
+ <div class="refsect3">
456
+ <a name="gtk-source-file-is-local.parameters"></a><h4>Parameters</h4>
457
+ <div class="informaltable"><table width="100%" border="0">
458
+ <colgroup>
459
+ <col width="150px" class="parameters_name">
460
+ <col class="parameters_description">
461
+ <col width="200px" class="parameters_annotations">
462
+ </colgroup>
463
+ <tbody><tr>
464
+ <td class="parameter_name"><p>file</p></td>
465
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a>.</p></td>
466
+ <td class="parameter_annotations"> </td>
467
+ </tr></tbody>
468
+ </table></div>
469
+ </div>
470
+ <div class="refsect3">
471
+ <a name="gtk-source-file-is-local.returns"></a><h4>Returns</h4>
472
+ <p> whether the file is local.</p>
473
+ </div>
474
+ <p class="since">Since: <a class="link" href="api-index-3-18.html#api-index-3.18">3.18</a></p>
475
+ </div>
476
+ <hr>
477
+ <div class="refsect2">
478
+ <a name="gtk-source-file-is-externally-modified"></a><h3>gtk_source_file_is_externally_modified ()</h3>
479
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
480
+ gtk_source_file_is_externally_modified
481
+ (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>);</pre>
482
+ <p>Returns whether the file is externally modified. If the
483
+ <a class="link" href="GtkSourceFile.html#GtkSourceFile--location" title="The “location” property"><span class="type">“location”</span></a> is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, returns <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
484
+ <p>To have an up-to-date value, you must first call
485
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-check-file-on-disk" title="gtk_source_file_check_file_on_disk ()"><code class="function">gtk_source_file_check_file_on_disk()</code></a>.</p>
486
+ <div class="refsect3">
487
+ <a name="gtk-source-file-is-externally-modified.parameters"></a><h4>Parameters</h4>
488
+ <div class="informaltable"><table width="100%" border="0">
489
+ <colgroup>
490
+ <col width="150px" class="parameters_name">
491
+ <col class="parameters_description">
492
+ <col width="200px" class="parameters_annotations">
493
+ </colgroup>
494
+ <tbody><tr>
495
+ <td class="parameter_name"><p>file</p></td>
496
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a>.</p></td>
497
+ <td class="parameter_annotations"> </td>
498
+ </tr></tbody>
499
+ </table></div>
500
+ </div>
501
+ <div class="refsect3">
502
+ <a name="gtk-source-file-is-externally-modified.returns"></a><h4>Returns</h4>
503
+ <p> whether the file is externally modified.</p>
504
+ </div>
505
+ <p class="since">Since: <a class="link" href="api-index-3-18.html#api-index-3.18">3.18</a></p>
506
+ </div>
507
+ <hr>
508
+ <div class="refsect2">
509
+ <a name="gtk-source-file-is-deleted"></a><h3>gtk_source_file_is_deleted ()</h3>
510
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
511
+ gtk_source_file_is_deleted (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>);</pre>
512
+ <p>Returns whether the file has been deleted. If the
513
+ <a class="link" href="GtkSourceFile.html#GtkSourceFile--location" title="The “location” property"><span class="type">“location”</span></a> is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, returns <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
514
+ <p>To have an up-to-date value, you must first call
515
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-check-file-on-disk" title="gtk_source_file_check_file_on_disk ()"><code class="function">gtk_source_file_check_file_on_disk()</code></a>.</p>
516
+ <div class="refsect3">
517
+ <a name="gtk-source-file-is-deleted.parameters"></a><h4>Parameters</h4>
518
+ <div class="informaltable"><table width="100%" border="0">
519
+ <colgroup>
520
+ <col width="150px" class="parameters_name">
521
+ <col class="parameters_description">
522
+ <col width="200px" class="parameters_annotations">
523
+ </colgroup>
524
+ <tbody><tr>
525
+ <td class="parameter_name"><p>file</p></td>
526
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a>.</p></td>
527
+ <td class="parameter_annotations"> </td>
528
+ </tr></tbody>
529
+ </table></div>
530
+ </div>
531
+ <div class="refsect3">
532
+ <a name="gtk-source-file-is-deleted.returns"></a><h4>Returns</h4>
533
+ <p> whether the file has been deleted.</p>
534
+ </div>
535
+ <p class="since">Since: <a class="link" href="api-index-3-18.html#api-index-3.18">3.18</a></p>
536
+ </div>
537
+ <hr>
538
+ <div class="refsect2">
539
+ <a name="gtk-source-file-is-readonly"></a><h3>gtk_source_file_is_readonly ()</h3>
540
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
541
+ gtk_source_file_is_readonly (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>);</pre>
542
+ <p>Returns whether the file is read-only. If the
543
+ <a class="link" href="GtkSourceFile.html#GtkSourceFile--location" title="The “location” property"><span class="type">“location”</span></a> is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, returns <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
544
+ <p>To have an up-to-date value, you must first call
545
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-check-file-on-disk" title="gtk_source_file_check_file_on_disk ()"><code class="function">gtk_source_file_check_file_on_disk()</code></a>.</p>
546
+ <div class="refsect3">
547
+ <a name="gtk-source-file-is-readonly.parameters"></a><h4>Parameters</h4>
548
+ <div class="informaltable"><table width="100%" border="0">
549
+ <colgroup>
550
+ <col width="150px" class="parameters_name">
551
+ <col class="parameters_description">
552
+ <col width="200px" class="parameters_annotations">
553
+ </colgroup>
554
+ <tbody><tr>
555
+ <td class="parameter_name"><p>file</p></td>
556
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a>.</p></td>
557
+ <td class="parameter_annotations"> </td>
558
+ </tr></tbody>
559
+ </table></div>
560
+ </div>
561
+ <div class="refsect3">
562
+ <a name="gtk-source-file-is-readonly.returns"></a><h4>Returns</h4>
563
+ <p> whether the file is read-only.</p>
564
+ </div>
565
+ <p class="since">Since: <a class="link" href="api-index-3-18.html#api-index-3.18">3.18</a></p>
377
566
  </div>
378
567
  <hr>
379
568
  <div class="refsect2">
@@ -382,15 +571,15 @@ gtk_source_file_get_compression_type (<em class="parameter"><code><a class="link
382
571
  gtk_source_file_set_mount_operation_factory
383
572
  (<em class="parameter"><code><a class="link" href="GtkSourceFile.html" title="GtkSourceFile"><span class="type">GtkSourceFile</span></a> *file</code></em>,
384
573
  <em class="parameter"><code><a class="link" href="GtkSourceFile.html#GtkSourceMountOperationFactory" title="GtkSourceMountOperationFactory ()"><span class="type">GtkSourceMountOperationFactory</span></a> callback</code></em>,
385
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
386
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> notify</code></em>);</pre>
574
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
575
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> notify</code></em>);</pre>
387
576
  <p>Sets a <a class="link" href="GtkSourceFile.html#GtkSourceMountOperationFactory" title="GtkSourceMountOperationFactory ()"><span class="type">GtkSourceMountOperationFactory</span></a> function that will be called when a
388
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GMountOperation.html"><span class="type">GMountOperation</span></a> must be created. This is useful for creating a
389
- <a href="http://developer.gnome.org/gtk2/gtk3-Filesystem-utilities.html#GtkMountOperation"><span class="type">GtkMountOperation</span></a> with the parent <a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="type">GtkWindow</span></a>.</p>
390
- <p>If a mount operation factory isn't set, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GMountOperation.html#g-mount-operation-new"><code class="function">g_mount_operation_new()</code></a> will be
577
+ <a href="/usr/share/gtk-doc/html/gioGMountOperation.html#GMountOperation-struct"><span class="type">GMountOperation</span></a> must be created. This is useful for creating a
578
+ <a href="/usr/share/gtk-doc/html/gtk3gtk3-Filesystem-utilities.html#GtkMountOperation-struct"><span class="type">GtkMountOperation</span></a> with the parent <a href="/usr/share/gtk-doc/html/gtk3GtkWindow.html#GtkWindow-struct"><span class="type">GtkWindow</span></a>.</p>
579
+ <p>If a mount operation factory isn't set, <a href="/usr/share/gtk-doc/html/gioGMountOperation.html#g-mount-operation-new"><code class="function">g_mount_operation_new()</code></a> will be
391
580
  called.</p>
392
581
  <div class="refsect3">
393
- <a name="id-1.2.5.3.9.9.6"></a><h4>Parameters</h4>
582
+ <a name="gtk-source-file-set-mount-operation-factory.parameters"></a><h4>Parameters</h4>
394
583
  <div class="informaltable"><table width="100%" border="0">
395
584
  <colgroup>
396
585
  <col width="150px" class="parameters_name">
@@ -406,7 +595,7 @@ called.</p>
406
595
  <tr>
407
596
  <td class="parameter_name"><p>callback</p></td>
408
597
  <td class="parameter_description"><p> a <a class="link" href="GtkSourceFile.html#GtkSourceMountOperationFactory" title="GtkSourceMountOperationFactory ()"><span class="type">GtkSourceMountOperationFactory</span></a> to call when a
409
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GMountOperation.html"><span class="type">GMountOperation</span></a> is needed. </p></td>
598
+ <a href="/usr/share/gtk-doc/html/gioGMountOperation.html#GMountOperation-struct"><span class="type">GMountOperation</span></a> is needed. </p></td>
410
599
  <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span></td>
411
600
  </tr>
412
601
  <tr>
@@ -420,13 +609,13 @@ function. </p></td>
420
609
  <td class="parameter_description"><p> function to call on <em class="parameter"><code>user_data</code></em>
421
610
  when the <em class="parameter"><code>callback</code></em>
422
611
  is no
423
- longer needed, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
612
+ longer needed, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
424
613
  <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></td>
425
614
  </tr>
426
615
  </tbody>
427
616
  </table></div>
428
617
  </div>
429
- <p class="since">Since 3.14</p>
618
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
430
619
  </div>
431
620
  </div>
432
621
  <div class="refsect1">
@@ -439,7 +628,7 @@ longer needed, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/sh
439
628
  <div class="refsect2">
440
629
  <a name="GtkSourceNewlineType"></a><h3>enum GtkSourceNewlineType</h3>
441
630
  <div class="refsect3">
442
- <a name="id-1.2.5.3.10.3.3"></a><h4>Members</h4>
631
+ <a name="GtkSourceNewlineType.members"></a><h4>Members</h4>
443
632
  <div class="informaltable"><table width="100%" border="0">
444
633
  <colgroup>
445
634
  <col width="300px" class="enum_members_name">
@@ -472,7 +661,7 @@ longer needed, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/sh
472
661
  </tbody>
473
662
  </table></div>
474
663
  </div>
475
- <p class="since">Since 3.14</p>
664
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
476
665
  </div>
477
666
  <hr>
478
667
  <div class="refsect2">
@@ -480,13 +669,13 @@ longer needed, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/sh
480
669
  <pre class="programlisting">#define GTK_SOURCE_NEWLINE_TYPE_DEFAULT GTK_SOURCE_NEWLINE_TYPE_CR_LF
481
670
  </pre>
482
671
  <p>The default newline type on the current OS.</p>
483
- <p class="since">Since 3.14</p>
672
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
484
673
  </div>
485
674
  <hr>
486
675
  <div class="refsect2">
487
676
  <a name="GtkSourceCompressionType"></a><h3>enum GtkSourceCompressionType</h3>
488
677
  <div class="refsect3">
489
- <a name="id-1.2.5.3.10.5.3"></a><h4>Members</h4>
678
+ <a name="GtkSourceCompressionType.members"></a><h4>Members</h4>
490
679
  <div class="informaltable"><table width="100%" border="0">
491
680
  <colgroup>
492
681
  <col width="300px" class="enum_members_name">
@@ -511,7 +700,7 @@ longer needed, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/sh
511
700
  </tbody>
512
701
  </table></div>
513
702
  </div>
514
- <p class="since">Since 3.14</p>
703
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
515
704
  </div>
516
705
  </div>
517
706
  <div class="refsect1">
@@ -522,24 +711,24 @@ longer needed, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/sh
522
711
  <p>The compression type.</p>
523
712
  <p>Flags: Read</p>
524
713
  <p>Default value: GTK_SOURCE_COMPRESSION_TYPE_NONE</p>
525
- <p class="since">Since 3.14</p>
714
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
526
715
  </div>
527
716
  <hr>
528
717
  <div class="refsect2">
529
718
  <a name="GtkSourceFile--encoding"></a><h3>The <code class="literal">“encoding”</code> property</h3>
530
719
  <pre class="programlisting"> “encoding” <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding"><span class="type">GtkSourceEncoding</span></a> *</pre>
531
- <p>The character encoding, initially <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. After a successful file
532
- loading or saving operation, the encoding is non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
720
+ <p>The character encoding, initially <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. After a successful file
721
+ loading or saving operation, the encoding is non-<a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
533
722
  <p>Flags: Read</p>
534
- <p class="since">Since 3.14</p>
723
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
535
724
  </div>
536
725
  <hr>
537
726
  <div class="refsect2">
538
727
  <a name="GtkSourceFile--location"></a><h3>The <code class="literal">“location”</code> property</h3>
539
- <pre class="programlisting"> “location” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GFile.html"><span class="type">GFile</span></a> *</pre>
728
+ <pre class="programlisting"> “location” <a href="/usr/share/gtk-doc/html/gioGFile.html#GFile-struct"><span class="type">GFile</span></a> *</pre>
540
729
  <p>The location.</p>
541
- <p>Flags: Read / Write</p>
542
- <p class="since">Since 3.14</p>
730
+ <p>Flags: Read / Write / Construct</p>
731
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
543
732
  </div>
544
733
  <hr>
545
734
  <div class="refsect2">
@@ -548,7 +737,17 @@ loading or saving operation, the encoding is non-<a href="/home/vagrant/ruby-gno
548
737
  <p>The line ending type.</p>
549
738
  <p>Flags: Read</p>
550
739
  <p>Default value: GTK_SOURCE_NEWLINE_TYPE_LF</p>
551
- <p class="since">Since 3.14</p>
740
+ <p class="since">Since: <a class="link" href="api-index-3-14.html#api-index-3.14">3.14</a></p>
741
+ </div>
742
+ <hr>
743
+ <div class="refsect2">
744
+ <a name="GtkSourceFile--read-only"></a><h3>The <code class="literal">“read-only”</code> property</h3>
745
+ <pre class="programlisting"> “read-only” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
746
+ <p>Whether the file is read-only or not. The value of this property is
747
+ not updated automatically (there is no file monitors).</p>
748
+ <p>Flags: Read</p>
749
+ <p>Default value: FALSE</p>
750
+ <p class="since">Since: <a class="link" href="api-index-3-18.html#api-index-3.18">3.18</a></p>
552
751
  </div>
553
752
  </div>
554
753
  <div class="refsect1">
@@ -557,7 +756,6 @@ loading or saving operation, the encoding is non-<a href="/home/vagrant/ruby-gno
557
756
  </div>
558
757
  </div>
559
758
  <div class="footer">
560
- <hr>
561
- Generated by GTK-Doc V1.21.1</div>
759
+ <hr>Generated by GTK-Doc V1.25.1</div>
562
760
  </body>
563
761
  </html>