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="ch07.html" title="Search and Replace">
9
9
  <link rel="prev" href="ch07.html" title="Search and Replace">
10
10
  <link rel="next" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">
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">
@@ -75,7 +75,7 @@
75
75
  </tr>
76
76
  <tr>
77
77
  <td class="function_type">
78
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
78
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
79
79
  </td>
80
80
  <td class="function_name">
81
81
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-highlight" title="gtk_source_search_context_get_highlight ()">gtk_source_search_context_get_highlight</a> <span class="c_punctuation">()</span>
@@ -107,7 +107,7 @@
107
107
  </tr>
108
108
  <tr>
109
109
  <td class="function_type">
110
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
110
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
111
111
  </td>
112
112
  <td class="function_name">
113
113
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-occurrences-count" title="gtk_source_search_context_get_occurrences_count ()">gtk_source_search_context_get_occurrences_count</a> <span class="c_punctuation">()</span>
@@ -115,7 +115,7 @@
115
115
  </tr>
116
116
  <tr>
117
117
  <td class="function_type">
118
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
118
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
119
119
  </td>
120
120
  <td class="function_name">
121
121
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-occurrence-position" title="gtk_source_search_context_get_occurrence_position ()">gtk_source_search_context_get_occurrence_position</a> <span class="c_punctuation">()</span>
@@ -123,7 +123,7 @@
123
123
  </tr>
124
124
  <tr>
125
125
  <td class="function_type">
126
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
126
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
127
127
  </td>
128
128
  <td class="function_name">
129
129
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward" title="gtk_source_search_context_forward ()">gtk_source_search_context_forward</a> <span class="c_punctuation">()</span>
@@ -139,7 +139,7 @@
139
139
  </tr>
140
140
  <tr>
141
141
  <td class="function_type">
142
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
142
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
143
143
  </td>
144
144
  <td class="function_name">
145
145
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward-finish" title="gtk_source_search_context_forward_finish ()">gtk_source_search_context_forward_finish</a> <span class="c_punctuation">()</span>
@@ -147,7 +147,7 @@
147
147
  </tr>
148
148
  <tr>
149
149
  <td class="function_type">
150
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
150
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
151
151
  </td>
152
152
  <td class="function_name">
153
153
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward" title="gtk_source_search_context_backward ()">gtk_source_search_context_backward</a> <span class="c_punctuation">()</span>
@@ -163,7 +163,7 @@
163
163
  </tr>
164
164
  <tr>
165
165
  <td class="function_type">
166
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
166
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
167
167
  </td>
168
168
  <td class="function_name">
169
169
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward-finish" title="gtk_source_search_context_backward_finish ()">gtk_source_search_context_backward_finish</a> <span class="c_punctuation">()</span>
@@ -171,7 +171,7 @@
171
171
  </tr>
172
172
  <tr>
173
173
  <td class="function_type">
174
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
174
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
175
175
  </td>
176
176
  <td class="function_name">
177
177
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-replace" title="gtk_source_search_context_replace ()">gtk_source_search_context_replace</a> <span class="c_punctuation">()</span>
@@ -179,7 +179,7 @@
179
179
  </tr>
180
180
  <tr>
181
181
  <td class="function_type">
182
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
182
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
183
183
  </td>
184
184
  <td class="function_name">
185
185
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-replace-all" title="gtk_source_search_context_replace_all ()">gtk_source_search_context_replace_all</a> <span class="c_punctuation">()</span>
@@ -187,7 +187,7 @@
187
187
  </tr>
188
188
  <tr>
189
189
  <td class="function_type">
190
- <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
190
+ <a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
191
191
  </td>
192
192
  <td class="function_name">
193
193
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-regex-error" title="gtk_source_search_context_get_regex_error ()">gtk_source_search_context_get_regex_error</a> <span class="c_punctuation">()</span>
@@ -212,7 +212,7 @@
212
212
  <td class="property_flags">Read / Write / Construct Only</td>
213
213
  </tr>
214
214
  <tr>
215
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
215
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
216
216
  <td class="property_name"><a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--highlight" title="The “highlight” property">highlight</a></td>
217
217
  <td class="property_flags">Read / Write / Construct</td>
218
218
  </tr>
@@ -223,12 +223,12 @@
223
223
  <td class="property_flags">Read / Write / Construct</td>
224
224
  </tr>
225
225
  <tr>
226
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
226
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
227
227
  <td class="property_name"><a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--occurrences-count" title="The “occurrences-count” property">occurrences-count</a></td>
228
228
  <td class="property_flags">Read</td>
229
229
  </tr>
230
230
  <tr>
231
- <td class="property_type"><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></td>
231
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a></td>
232
232
  <td class="property_name"><a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--regex-error" title="The “regex-error” property">regex-error</a></td>
233
233
  <td class="property_flags">Read</td>
234
234
  </tr>
@@ -256,7 +256,7 @@
256
256
  </div>
257
257
  <div class="refsect1">
258
258
  <a name="GtkSourceSearchContext.object-hierarchy"></a><h2>Object Hierarchy</h2>
259
- <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>
259
+ <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
260
260
  <span class="lineart">╰──</span> GtkSourceSearchContext
261
261
  </pre>
262
262
  </div>
@@ -322,11 +322,11 @@ gtk_source_search_context_new (<em class="parameter"><code><a class="link" href=
322
322
  , and customized with
323
323
  <em class="parameter"><code>settings</code></em>
324
324
  . If <em class="parameter"><code>settings</code></em>
325
- is <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>, a new <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</span></a> object will
325
+ is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, a new <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</span></a> object will
326
326
  be created, that you can retrieve with
327
327
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-settings" title="gtk_source_search_context_get_settings ()"><code class="function">gtk_source_search_context_get_settings()</code></a>.</p>
328
328
  <div class="refsect3">
329
- <a name="id-1.2.8.2.9.2.5"></a><h4>Parameters</h4>
329
+ <a name="gtk-source-search-context-new.parameters"></a><h4>Parameters</h4>
330
330
  <div class="informaltable"><table width="100%" border="0">
331
331
  <colgroup>
332
332
  <col width="150px" class="parameters_name">
@@ -341,18 +341,17 @@ be created, that you can retrieve with
341
341
  </tr>
342
342
  <tr>
343
343
  <td class="parameter_name"><p>settings</p></td>
344
- <td class="parameter_description"><p> a <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</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>
344
+ <td class="parameter_description"><p> a <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
345
345
  <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
346
346
  </tr>
347
347
  </tbody>
348
348
  </table></div>
349
349
  </div>
350
350
  <div class="refsect3">
351
- <a name="id-1.2.8.2.9.2.6"></a><h4>Returns</h4>
351
+ <a name="gtk-source-search-context-new.returns"></a><h4>Returns</h4>
352
352
  <p> a new search context.</p>
353
- <p></p>
354
353
  </div>
355
- <p class="since">Since 3.10</p>
354
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
356
355
  </div>
357
356
  <hr>
358
357
  <div class="refsect2">
@@ -360,7 +359,7 @@ be created, that you can retrieve with
360
359
  <pre class="programlisting"><a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="returnvalue">GtkSourceBuffer</span></a> *
361
360
  gtk_source_search_context_get_buffer (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>);</pre>
362
361
  <div class="refsect3">
363
- <a name="id-1.2.8.2.9.3.4"></a><h4>Parameters</h4>
362
+ <a name="gtk-source-search-context-get-buffer.parameters"></a><h4>Parameters</h4>
364
363
  <div class="informaltable"><table width="100%" border="0">
365
364
  <colgroup>
366
365
  <col width="150px" class="parameters_name">
@@ -375,11 +374,11 @@ gtk_source_search_context_get_buffer (<em class="parameter"><code><a class="link
375
374
  </table></div>
376
375
  </div>
377
376
  <div class="refsect3">
378
- <a name="id-1.2.8.2.9.3.5"></a><h4>Returns</h4>
377
+ <a name="gtk-source-search-context-get-buffer.returns"></a><h4>Returns</h4>
379
378
  <p> the associated buffer. </p>
380
379
  <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
381
380
  </div>
382
- <p class="since">Since 3.10</p>
381
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
383
382
  </div>
384
383
  <hr>
385
384
  <div class="refsect2">
@@ -388,7 +387,7 @@ gtk_source_search_context_get_buffer (<em class="parameter"><code><a class="link
388
387
  gtk_source_search_context_get_settings
389
388
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>);</pre>
390
389
  <div class="refsect3">
391
- <a name="id-1.2.8.2.9.4.4"></a><h4>Parameters</h4>
390
+ <a name="gtk-source-search-context-get-settings.parameters"></a><h4>Parameters</h4>
392
391
  <div class="informaltable"><table width="100%" border="0">
393
392
  <colgroup>
394
393
  <col width="150px" class="parameters_name">
@@ -403,11 +402,11 @@ gtk_source_search_context_get_settings
403
402
  </table></div>
404
403
  </div>
405
404
  <div class="refsect3">
406
- <a name="id-1.2.8.2.9.4.5"></a><h4>Returns</h4>
405
+ <a name="gtk-source-search-context-get-settings.returns"></a><h4>Returns</h4>
407
406
  <p> the search settings. </p>
408
407
  <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
409
408
  </div>
410
- <p class="since">Since 3.10</p>
409
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
411
410
  </div>
412
411
  <hr>
413
412
  <div class="refsect2">
@@ -418,11 +417,11 @@ gtk_source_search_context_set_settings
418
417
  <em class="parameter"><code><a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</span></a> *settings</code></em>);</pre>
419
418
  <p>Associate a <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</span></a> with the search context. If <em class="parameter"><code>settings</code></em>
420
419
  is
421
- <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>, a new one will be created.</p>
420
+ <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, a new one will be created.</p>
422
421
  <p>The search context holds a reference to <em class="parameter"><code>settings</code></em>
423
422
  .</p>
424
423
  <div class="refsect3">
425
- <a name="id-1.2.8.2.9.5.6"></a><h4>Parameters</h4>
424
+ <a name="gtk-source-search-context-set-settings.parameters"></a><h4>Parameters</h4>
426
425
  <div class="informaltable"><table width="100%" border="0">
427
426
  <colgroup>
428
427
  <col width="150px" class="parameters_name">
@@ -437,22 +436,22 @@ gtk_source_search_context_set_settings
437
436
  </tr>
438
437
  <tr>
439
438
  <td class="parameter_name"><p>settings</p></td>
440
- <td class="parameter_description"><p> the new <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</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>
439
+ <td class="parameter_description"><p> the new <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
441
440
  <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
442
441
  </tr>
443
442
  </tbody>
444
443
  </table></div>
445
444
  </div>
446
- <p class="since">Since 3.10</p>
445
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
447
446
  </div>
448
447
  <hr>
449
448
  <div class="refsect2">
450
449
  <a name="gtk-source-search-context-get-highlight"></a><h3>gtk_source_search_context_get_highlight ()</h3>
451
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
450
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
452
451
  gtk_source_search_context_get_highlight
453
452
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>);</pre>
454
453
  <div class="refsect3">
455
- <a name="id-1.2.8.2.9.6.4"></a><h4>Parameters</h4>
454
+ <a name="gtk-source-search-context-get-highlight.parameters"></a><h4>Parameters</h4>
456
455
  <div class="informaltable"><table width="100%" border="0">
457
456
  <colgroup>
458
457
  <col width="150px" class="parameters_name">
@@ -467,11 +466,10 @@ gtk_source_search_context_get_highlight
467
466
  </table></div>
468
467
  </div>
469
468
  <div class="refsect3">
470
- <a name="id-1.2.8.2.9.6.5"></a><h4>Returns</h4>
469
+ <a name="gtk-source-search-context-get-highlight.returns"></a><h4>Returns</h4>
471
470
  <p> whether to highlight the search occurrences.</p>
472
- <p></p>
473
471
  </div>
474
- <p class="since">Since 3.10</p>
472
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
475
473
  </div>
476
474
  <hr>
477
475
  <div class="refsect2">
@@ -479,10 +477,10 @@ gtk_source_search_context_get_highlight
479
477
  <pre class="programlisting"><span class="returnvalue">void</span>
480
478
  gtk_source_search_context_set_highlight
481
479
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
482
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> highlight</code></em>);</pre>
480
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> highlight</code></em>);</pre>
483
481
  <p>Enables or disables the search occurrences highlighting.</p>
484
482
  <div class="refsect3">
485
- <a name="id-1.2.8.2.9.7.5"></a><h4>Parameters</h4>
483
+ <a name="gtk-source-search-context-set-highlight.parameters"></a><h4>Parameters</h4>
486
484
  <div class="informaltable"><table width="100%" border="0">
487
485
  <colgroup>
488
486
  <col width="150px" class="parameters_name">
@@ -503,7 +501,7 @@ gtk_source_search_context_set_highlight
503
501
  </tbody>
504
502
  </table></div>
505
503
  </div>
506
- <p class="since">Since 3.10</p>
504
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
507
505
  </div>
508
506
  <hr>
509
507
  <div class="refsect2">
@@ -512,7 +510,7 @@ gtk_source_search_context_set_highlight
512
510
  gtk_source_search_context_get_match_style
513
511
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>);</pre>
514
512
  <div class="refsect3">
515
- <a name="id-1.2.8.2.9.8.4"></a><h4>Parameters</h4>
513
+ <a name="gtk-source-search-context-get-match-style.parameters"></a><h4>Parameters</h4>
516
514
  <div class="informaltable"><table width="100%" border="0">
517
515
  <colgroup>
518
516
  <col width="150px" class="parameters_name">
@@ -527,11 +525,11 @@ gtk_source_search_context_get_match_style
527
525
  </table></div>
528
526
  </div>
529
527
  <div class="refsect3">
530
- <a name="id-1.2.8.2.9.8.5"></a><h4>Returns</h4>
528
+ <a name="gtk-source-search-context-get-match-style.returns"></a><h4>Returns</h4>
531
529
  <p> the <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle"><span class="type">GtkSourceStyle</span></a> to apply on search matches. </p>
532
530
  <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
533
531
  </div>
534
- <p class="since">Since 3.16</p>
532
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
535
533
  </div>
536
534
  <hr>
537
535
  <div class="refsect2">
@@ -541,12 +539,12 @@ gtk_source_search_context_set_match_style
541
539
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
542
540
  <em class="parameter"><code><a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle"><span class="type">GtkSourceStyle</span></a> *match_style</code></em>);</pre>
543
541
  <p>Set the style to apply on search matches. If <em class="parameter"><code>match_style</code></em>
544
- is <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>, default
542
+ is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, default
545
543
  theme's scheme 'match-style' will be used.
546
544
  To enable or disable the search highlighting, use
547
545
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-set-highlight" title="gtk_source_search_context_set_highlight ()"><code class="function">gtk_source_search_context_set_highlight()</code></a>.</p>
548
546
  <div class="refsect3">
549
- <a name="id-1.2.8.2.9.9.5"></a><h4>Parameters</h4>
547
+ <a name="gtk-source-search-context-set-match-style.parameters"></a><h4>Parameters</h4>
550
548
  <div class="informaltable"><table width="100%" border="0">
551
549
  <colgroup>
552
550
  <col width="150px" class="parameters_name">
@@ -567,19 +565,19 @@ To enable or disable the search highlighting, use
567
565
  </tbody>
568
566
  </table></div>
569
567
  </div>
570
- <p class="since">Since 3.16</p>
568
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
571
569
  </div>
572
570
  <hr>
573
571
  <div class="refsect2">
574
572
  <a name="gtk-source-search-context-get-occurrences-count"></a><h3>gtk_source_search_context_get_occurrences_count ()</h3>
575
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
573
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
576
574
  gtk_source_search_context_get_occurrences_count
577
575
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>);</pre>
578
576
  <p>Gets the total number of search occurrences. If the buffer is not already
579
577
  fully scanned, the total number of occurrences is unknown, and -1 is
580
578
  returned.</p>
581
579
  <div class="refsect3">
582
- <a name="id-1.2.8.2.9.10.5"></a><h4>Parameters</h4>
580
+ <a name="gtk-source-search-context-get-occurrences-count.parameters"></a><h4>Parameters</h4>
583
581
  <div class="informaltable"><table width="100%" border="0">
584
582
  <colgroup>
585
583
  <col width="150px" class="parameters_name">
@@ -594,20 +592,19 @@ returned.</p>
594
592
  </table></div>
595
593
  </div>
596
594
  <div class="refsect3">
597
- <a name="id-1.2.8.2.9.10.6"></a><h4>Returns</h4>
595
+ <a name="gtk-source-search-context-get-occurrences-count.returns"></a><h4>Returns</h4>
598
596
  <p> the total number of search occurrences, or -1 if unknown.</p>
599
- <p></p>
600
597
  </div>
601
- <p class="since">Since 3.10</p>
598
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
602
599
  </div>
603
600
  <hr>
604
601
  <div class="refsect2">
605
602
  <a name="gtk-source-search-context-get-occurrence-position"></a><h3>gtk_source_search_context_get_occurrence_position ()</h3>
606
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
603
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
607
604
  gtk_source_search_context_get_occurrence_position
608
605
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
609
- <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
610
- <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_end</code></em>);</pre>
606
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
607
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_end</code></em>);</pre>
611
608
  <p>Gets the position of a search occurrence. If the buffer is not already fully
612
609
  scanned, the position may be unknown, and -1 is returned. If 0 is returned,
613
610
  it means that this part of the buffer has already been scanned, and that
@@ -615,7 +612,7 @@ it means that this part of the buffer has already been scanned, and that
615
612
  and <em class="parameter"><code>match_end</code></em>
616
613
  don't delimit an occurrence.</p>
617
614
  <div class="refsect3">
618
- <a name="id-1.2.8.2.9.11.5"></a><h4>Parameters</h4>
615
+ <a name="gtk-source-search-context-get-occurrence-position.parameters"></a><h4>Parameters</h4>
619
616
  <div class="informaltable"><table width="100%" border="0">
620
617
  <colgroup>
621
618
  <col width="150px" class="parameters_name">
@@ -642,30 +639,29 @@ it means that this part of the buffer has already been scanned, and that
642
639
  </table></div>
643
640
  </div>
644
641
  <div class="refsect3">
645
- <a name="id-1.2.8.2.9.11.6"></a><h4>Returns</h4>
642
+ <a name="gtk-source-search-context-get-occurrence-position.returns"></a><h4>Returns</h4>
646
643
  <p> the position of the search occurrence. The first occurrence has the
647
644
  position 1 (not 0). Returns 0 if <em class="parameter"><code>match_start</code></em>
648
645
  and <em class="parameter"><code>match_end</code></em>
649
646
  don't delimit
650
647
  an occurrence. Returns -1 if the position is not yet known.</p>
651
- <p></p>
652
648
  </div>
653
- <p class="since">Since 3.10</p>
649
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
654
650
  </div>
655
651
  <hr>
656
652
  <div class="refsect2">
657
653
  <a name="gtk-source-search-context-forward"></a><h3>gtk_source_search_context_forward ()</h3>
658
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
654
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
659
655
  gtk_source_search_context_forward (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
660
- <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *iter</code></em>,
661
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
662
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_end</code></em>);</pre>
656
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *iter</code></em>,
657
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
658
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_end</code></em>);</pre>
663
659
  <p>Synchronous forward search. It is recommended to use the asynchronous
664
660
  functions instead, to not block the user interface. However, if you are sure
665
661
  that the <em class="parameter"><code>buffer</code></em>
666
662
  is small, this function is more convenient to use.</p>
667
663
  <div class="refsect3">
668
- <a name="id-1.2.8.2.9.12.5"></a><h4>Parameters</h4>
664
+ <a name="gtk-source-search-context-forward.parameters"></a><h4>Parameters</h4>
669
665
  <div class="informaltable"><table width="100%" border="0">
670
666
  <colgroup>
671
667
  <col width="150px" class="parameters_name">
@@ -685,23 +681,22 @@ that the <em class="parameter"><code>buffer</code></em>
685
681
  </tr>
686
682
  <tr>
687
683
  <td class="parameter_name"><p>match_start</p></td>
688
- <td class="parameter_description"><p> return location for start of match, 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>
684
+ <td class="parameter_description"><p> return location for start of match, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
689
685
  <td class="parameter_annotations"><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></td>
690
686
  </tr>
691
687
  <tr>
692
688
  <td class="parameter_name"><p>match_end</p></td>
693
- <td class="parameter_description"><p> return location for end of match, 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>
689
+ <td class="parameter_description"><p> return location for end of match, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
694
690
  <td class="parameter_annotations"><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></td>
695
691
  </tr>
696
692
  </tbody>
697
693
  </table></div>
698
694
  </div>
699
695
  <div class="refsect3">
700
- <a name="id-1.2.8.2.9.12.6"></a><h4>Returns</h4>
696
+ <a name="gtk-source-search-context-forward.returns"></a><h4>Returns</h4>
701
697
  <p> whether a match was found.</p>
702
- <p></p>
703
698
  </div>
704
- <p class="since">Since 3.10</p>
699
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
705
700
  </div>
706
701
  <hr>
707
702
  <div class="refsect2">
@@ -709,20 +704,20 @@ that the <em class="parameter"><code>buffer</code></em>
709
704
  <pre class="programlisting"><span class="returnvalue">void</span>
710
705
  gtk_source_search_context_forward_async
711
706
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
712
- <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *iter</code></em>,
713
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
714
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
715
- <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>);</pre>
716
- <p>Asynchronous forward search. See the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html"><span class="type">GAsyncResult</span></a> documentation to know
707
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *iter</code></em>,
708
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gioGCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
709
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
710
+ <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>);</pre>
711
+ <p>Asynchronous forward search. See the <a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> documentation to know
717
712
  how to use this function.</p>
718
713
  <p>If the operation is cancelled, the <em class="parameter"><code>callback</code></em>
719
714
  will only be called if
720
715
  <em class="parameter"><code>cancellable</code></em>
721
- was not <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>. <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward-async" title="gtk_source_search_context_forward_async ()"><code class="function">gtk_source_search_context_forward_async()</code></a> takes
716
+ was not <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward-async" title="gtk_source_search_context_forward_async ()"><code class="function">gtk_source_search_context_forward_async()</code></a> takes
722
717
  ownership of <em class="parameter"><code>cancellable</code></em>
723
718
  , so you can unref it after calling this function.</p>
724
719
  <div class="refsect3">
725
- <a name="id-1.2.8.2.9.13.6"></a><h4>Parameters</h4>
720
+ <a name="gtk-source-search-context-forward-async.parameters"></a><h4>Parameters</h4>
726
721
  <div class="informaltable"><table width="100%" border="0">
727
722
  <colgroup>
728
723
  <col width="150px" class="parameters_name">
@@ -742,12 +737,12 @@ ownership of <em class="parameter"><code>cancellable</code></em>
742
737
  </tr>
743
738
  <tr>
744
739
  <td class="parameter_name"><p>cancellable</p></td>
745
- <td class="parameter_description"><p> a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</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>
740
+ <td class="parameter_description"><p> a <a href="/usr/share/gtk-doc/html/gioGCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
746
741
  <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
747
742
  </tr>
748
743
  <tr>
749
744
  <td class="parameter_name"><p>callback</p></td>
750
- <td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> to call when the operation is finished.</p></td>
745
+ <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> to call when the operation is finished.</p></td>
751
746
  <td class="parameter_annotations"> </td>
752
747
  </tr>
753
748
  <tr>
@@ -759,22 +754,22 @@ function.</p></td>
759
754
  </tbody>
760
755
  </table></div>
761
756
  </div>
762
- <p class="since">Since 3.10</p>
757
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
763
758
  </div>
764
759
  <hr>
765
760
  <div class="refsect2">
766
761
  <a name="gtk-source-search-context-forward-finish"></a><h3>gtk_source_search_context_forward_finish ()</h3>
767
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
762
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
768
763
  gtk_source_search_context_forward_finish
769
764
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
770
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
771
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
772
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
773
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
765
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
766
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
767
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
768
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
774
769
  <p>Finishes a forward search started with
775
770
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward-async" title="gtk_source_search_context_forward_async ()"><code class="function">gtk_source_search_context_forward_async()</code></a>.</p>
776
771
  <div class="refsect3">
777
- <a name="id-1.2.8.2.9.14.5"></a><h4>Parameters</h4>
772
+ <a name="gtk-source-search-context-forward-finish.parameters"></a><h4>Parameters</h4>
778
773
  <div class="informaltable"><table width="100%" border="0">
779
774
  <colgroup>
780
775
  <col width="150px" class="parameters_name">
@@ -789,48 +784,47 @@ gtk_source_search_context_forward_finish
789
784
  </tr>
790
785
  <tr>
791
786
  <td class="parameter_name"><p>result</p></td>
792
- <td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html"><span class="type">GAsyncResult</span></a>.</p></td>
787
+ <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a>.</p></td>
793
788
  <td class="parameter_annotations"> </td>
794
789
  </tr>
795
790
  <tr>
796
791
  <td class="parameter_name"><p>match_start</p></td>
797
- <td class="parameter_description"><p> return location for start of match, 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>
792
+ <td class="parameter_description"><p> return location for start of match, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
798
793
  <td class="parameter_annotations"><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></td>
799
794
  </tr>
800
795
  <tr>
801
796
  <td class="parameter_name"><p>match_end</p></td>
802
- <td class="parameter_description"><p> return location for end of match, 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>
797
+ <td class="parameter_description"><p> return location for end of match, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
803
798
  <td class="parameter_annotations"><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></td>
804
799
  </tr>
805
800
  <tr>
806
801
  <td class="parameter_name"><p>error</p></td>
807
- <td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</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>
802
+ <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
808
803
  <td class="parameter_annotations"> </td>
809
804
  </tr>
810
805
  </tbody>
811
806
  </table></div>
812
807
  </div>
813
808
  <div class="refsect3">
814
- <a name="id-1.2.8.2.9.14.6"></a><h4>Returns</h4>
809
+ <a name="gtk-source-search-context-forward-finish.returns"></a><h4>Returns</h4>
815
810
  <p> whether a match was found.</p>
816
- <p></p>
817
811
  </div>
818
- <p class="since">Since 3.10</p>
812
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
819
813
  </div>
820
814
  <hr>
821
815
  <div class="refsect2">
822
816
  <a name="gtk-source-search-context-backward"></a><h3>gtk_source_search_context_backward ()</h3>
823
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
817
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
824
818
  gtk_source_search_context_backward (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
825
- <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *iter</code></em>,
826
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
827
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_end</code></em>);</pre>
819
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *iter</code></em>,
820
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
821
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_end</code></em>);</pre>
828
822
  <p>Synchronous backward search. It is recommended to use the asynchronous
829
823
  functions instead, to not block the user interface. However, if you are sure
830
824
  that the <em class="parameter"><code>buffer</code></em>
831
825
  is small, this function is more convenient to use.</p>
832
826
  <div class="refsect3">
833
- <a name="id-1.2.8.2.9.15.5"></a><h4>Parameters</h4>
827
+ <a name="gtk-source-search-context-backward.parameters"></a><h4>Parameters</h4>
834
828
  <div class="informaltable"><table width="100%" border="0">
835
829
  <colgroup>
836
830
  <col width="150px" class="parameters_name">
@@ -850,23 +844,22 @@ that the <em class="parameter"><code>buffer</code></em>
850
844
  </tr>
851
845
  <tr>
852
846
  <td class="parameter_name"><p>match_start</p></td>
853
- <td class="parameter_description"><p> return location for start of match, 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>
847
+ <td class="parameter_description"><p> return location for start of match, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
854
848
  <td class="parameter_annotations"><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></td>
855
849
  </tr>
856
850
  <tr>
857
851
  <td class="parameter_name"><p>match_end</p></td>
858
- <td class="parameter_description"><p> return location for end of match, 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>
852
+ <td class="parameter_description"><p> return location for end of match, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
859
853
  <td class="parameter_annotations"><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></td>
860
854
  </tr>
861
855
  </tbody>
862
856
  </table></div>
863
857
  </div>
864
858
  <div class="refsect3">
865
- <a name="id-1.2.8.2.9.15.6"></a><h4>Returns</h4>
859
+ <a name="gtk-source-search-context-backward.returns"></a><h4>Returns</h4>
866
860
  <p> whether a match was found.</p>
867
- <p></p>
868
861
  </div>
869
- <p class="since">Since 3.10</p>
862
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
870
863
  </div>
871
864
  <hr>
872
865
  <div class="refsect2">
@@ -874,20 +867,20 @@ that the <em class="parameter"><code>buffer</code></em>
874
867
  <pre class="programlisting"><span class="returnvalue">void</span>
875
868
  gtk_source_search_context_backward_async
876
869
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
877
- <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *iter</code></em>,
878
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
879
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
880
- <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>);</pre>
881
- <p>Asynchronous backward search. See the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html"><span class="type">GAsyncResult</span></a> documentation to know
870
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *iter</code></em>,
871
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gioGCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>,
872
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
873
+ <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>);</pre>
874
+ <p>Asynchronous backward search. See the <a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> documentation to know
882
875
  how to use this function.</p>
883
876
  <p>If the operation is cancelled, the <em class="parameter"><code>callback</code></em>
884
877
  will only be called if
885
878
  <em class="parameter"><code>cancellable</code></em>
886
- was not <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>. <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward-async" title="gtk_source_search_context_backward_async ()"><code class="function">gtk_source_search_context_backward_async()</code></a> takes
879
+ was not <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward-async" title="gtk_source_search_context_backward_async ()"><code class="function">gtk_source_search_context_backward_async()</code></a> takes
887
880
  ownership of <em class="parameter"><code>cancellable</code></em>
888
881
  , so you can unref it after calling this function.</p>
889
882
  <div class="refsect3">
890
- <a name="id-1.2.8.2.9.16.6"></a><h4>Parameters</h4>
883
+ <a name="gtk-source-search-context-backward-async.parameters"></a><h4>Parameters</h4>
891
884
  <div class="informaltable"><table width="100%" border="0">
892
885
  <colgroup>
893
886
  <col width="150px" class="parameters_name">
@@ -907,12 +900,12 @@ ownership of <em class="parameter"><code>cancellable</code></em>
907
900
  </tr>
908
901
  <tr>
909
902
  <td class="parameter_name"><p>cancellable</p></td>
910
- <td class="parameter_description"><p> a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</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>
903
+ <td class="parameter_description"><p> a <a href="/usr/share/gtk-doc/html/gioGCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
911
904
  <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
912
905
  </tr>
913
906
  <tr>
914
907
  <td class="parameter_name"><p>callback</p></td>
915
- <td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> to call when the operation is finished.</p></td>
908
+ <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> to call when the operation is finished.</p></td>
916
909
  <td class="parameter_annotations"> </td>
917
910
  </tr>
918
911
  <tr>
@@ -924,22 +917,22 @@ function.</p></td>
924
917
  </tbody>
925
918
  </table></div>
926
919
  </div>
927
- <p class="since">Since 3.10</p>
920
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
928
921
  </div>
929
922
  <hr>
930
923
  <div class="refsect2">
931
924
  <a name="gtk-source-search-context-backward-finish"></a><h3>gtk_source_search_context_backward_finish ()</h3>
932
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
925
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
933
926
  gtk_source_search_context_backward_finish
934
927
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
935
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
936
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
937
- <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
938
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
928
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *result</code></em>,
929
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
930
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
931
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
939
932
  <p>Finishes a backward search started with
940
933
  <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward-async" title="gtk_source_search_context_backward_async ()"><code class="function">gtk_source_search_context_backward_async()</code></a>.</p>
941
934
  <div class="refsect3">
942
- <a name="id-1.2.8.2.9.17.5"></a><h4>Parameters</h4>
935
+ <a name="gtk-source-search-context-backward-finish.parameters"></a><h4>Parameters</h4>
943
936
  <div class="informaltable"><table width="100%" border="0">
944
937
  <colgroup>
945
938
  <col width="150px" class="parameters_name">
@@ -954,55 +947,54 @@ gtk_source_search_context_backward_finish
954
947
  </tr>
955
948
  <tr>
956
949
  <td class="parameter_name"><p>result</p></td>
957
- <td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html"><span class="type">GAsyncResult</span></a>.</p></td>
950
+ <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/gioGAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a>.</p></td>
958
951
  <td class="parameter_annotations"> </td>
959
952
  </tr>
960
953
  <tr>
961
954
  <td class="parameter_name"><p>match_start</p></td>
962
- <td class="parameter_description"><p> return location for start of match, 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>
955
+ <td class="parameter_description"><p> return location for start of match, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
963
956
  <td class="parameter_annotations"><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></td>
964
957
  </tr>
965
958
  <tr>
966
959
  <td class="parameter_name"><p>match_end</p></td>
967
- <td class="parameter_description"><p> return location for end of match, 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>
960
+ <td class="parameter_description"><p> return location for end of match, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
968
961
  <td class="parameter_annotations"><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></td>
969
962
  </tr>
970
963
  <tr>
971
964
  <td class="parameter_name"><p>error</p></td>
972
- <td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</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>
965
+ <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
973
966
  <td class="parameter_annotations"> </td>
974
967
  </tr>
975
968
  </tbody>
976
969
  </table></div>
977
970
  </div>
978
971
  <div class="refsect3">
979
- <a name="id-1.2.8.2.9.17.6"></a><h4>Returns</h4>
972
+ <a name="gtk-source-search-context-backward-finish.returns"></a><h4>Returns</h4>
980
973
  <p> whether a match was found.</p>
981
- <p></p>
982
974
  </div>
983
- <p class="since">Since 3.10</p>
975
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
984
976
  </div>
985
977
  <hr>
986
978
  <div class="refsect2">
987
979
  <a name="gtk-source-search-context-replace"></a><h3>gtk_source_search_context_replace ()</h3>
988
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
980
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
989
981
  gtk_source_search_context_replace (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
990
- <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
991
- <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/GtkTextIter.html"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
992
- <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *replace</code></em>,
993
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> replace_length</code></em>,
994
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
982
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
983
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/gtk3GtkTextIter.html#GtkTextIter-struct"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
984
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *replace</code></em>,
985
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> replace_length</code></em>,
986
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
995
987
  <p>Replaces a search match by another text. If <em class="parameter"><code>match_start</code></em>
996
988
  and <em class="parameter"><code>match_end</code></em>
997
989
 
998
- doesn't correspond to a search match, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned.</p>
990
+ doesn't correspond to a search match, <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned.</p>
999
991
  <p>For a regular expression replacement, you can check if <em class="parameter"><code>replace</code></em>
1000
992
  is valid by
1001
- calling <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html#g-regex-check-replacement"><code class="function">g_regex_check_replacement()</code></a>. The <em class="parameter"><code>replace</code></em>
993
+ calling <a href="/usr/share/gtk-doc/html/glibglib-Perl-compatible-regular-expressions.html#g-regex-check-replacement"><code class="function">g_regex_check_replacement()</code></a>. The <em class="parameter"><code>replace</code></em>
1002
994
  text can contain
1003
- backreferences; read the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html#g-regex-replace"><code class="function">g_regex_replace()</code></a> documentation for more details.</p>
995
+ backreferences; read the <a href="/usr/share/gtk-doc/html/glibglib-Perl-compatible-regular-expressions.html#g-regex-replace"><code class="function">g_regex_replace()</code></a> documentation for more details.</p>
1004
996
  <div class="refsect3">
1005
- <a name="id-1.2.8.2.9.18.6"></a><h4>Parameters</h4>
997
+ <a name="gtk-source-search-context-replace.parameters"></a><h4>Parameters</h4>
1006
998
  <div class="informaltable"><table width="100%" border="0">
1007
999
  <colgroup>
1008
1000
  <col width="150px" class="parameters_name">
@@ -1038,36 +1030,35 @@ in bytes, or -1.</p></td>
1038
1030
  </tr>
1039
1031
  <tr>
1040
1032
  <td class="parameter_name"><p>error</p></td>
1041
- <td class="parameter_description"><p>location to a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</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> to ignore errors.</p></td>
1033
+ <td class="parameter_description"><p>location to a <a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore errors.</p></td>
1042
1034
  <td class="parameter_annotations"> </td>
1043
1035
  </tr>
1044
1036
  </tbody>
1045
1037
  </table></div>
1046
1038
  </div>
1047
1039
  <div class="refsect3">
1048
- <a name="id-1.2.8.2.9.18.7"></a><h4>Returns</h4>
1040
+ <a name="gtk-source-search-context-replace.returns"></a><h4>Returns</h4>
1049
1041
  <p> whether the match has been replaced.</p>
1050
- <p></p>
1051
1042
  </div>
1052
- <p class="since">Since 3.10</p>
1043
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
1053
1044
  </div>
1054
1045
  <hr>
1055
1046
  <div class="refsect2">
1056
1047
  <a name="gtk-source-search-context-replace-all"></a><h3>gtk_source_search_context_replace_all ()</h3>
1057
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
1048
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
1058
1049
  gtk_source_search_context_replace_all (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>,
1059
- <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *replace</code></em>,
1060
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> replace_length</code></em>,
1061
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1050
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *replace</code></em>,
1051
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a> replace_length</code></em>,
1052
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1062
1053
  <p>Replaces all search matches by another text. It is a synchronous function, so
1063
1054
  it can block the user interface.</p>
1064
1055
  <p>For a regular expression replacement, you can check if <em class="parameter"><code>replace</code></em>
1065
1056
  is valid by
1066
- calling <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html#g-regex-check-replacement"><code class="function">g_regex_check_replacement()</code></a>. The <em class="parameter"><code>replace</code></em>
1057
+ calling <a href="/usr/share/gtk-doc/html/glibglib-Perl-compatible-regular-expressions.html#g-regex-check-replacement"><code class="function">g_regex_check_replacement()</code></a>. The <em class="parameter"><code>replace</code></em>
1067
1058
  text can contain
1068
- backreferences; read the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html#g-regex-replace"><code class="function">g_regex_replace()</code></a> documentation for more details.</p>
1059
+ backreferences; read the <a href="/usr/share/gtk-doc/html/glibglib-Perl-compatible-regular-expressions.html#g-regex-replace"><code class="function">g_regex_replace()</code></a> documentation for more details.</p>
1069
1060
  <div class="refsect3">
1070
- <a name="id-1.2.8.2.9.19.6"></a><h4>Parameters</h4>
1061
+ <a name="gtk-source-search-context-replace-all.parameters"></a><h4>Parameters</h4>
1071
1062
  <div class="informaltable"><table width="100%" border="0">
1072
1063
  <colgroup>
1073
1064
  <col width="150px" class="parameters_name">
@@ -1093,31 +1084,30 @@ in bytes, or -1.</p></td>
1093
1084
  </tr>
1094
1085
  <tr>
1095
1086
  <td class="parameter_name"><p>error</p></td>
1096
- <td class="parameter_description"><p>location to a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</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> to ignore errors.</p></td>
1087
+ <td class="parameter_description"><p>location to a <a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore errors.</p></td>
1097
1088
  <td class="parameter_annotations"> </td>
1098
1089
  </tr>
1099
1090
  </tbody>
1100
1091
  </table></div>
1101
1092
  </div>
1102
1093
  <div class="refsect3">
1103
- <a name="id-1.2.8.2.9.19.7"></a><h4>Returns</h4>
1094
+ <a name="gtk-source-search-context-replace-all.returns"></a><h4>Returns</h4>
1104
1095
  <p> the number of replaced matches.</p>
1105
- <p></p>
1106
1096
  </div>
1107
- <p class="since">Since 3.10</p>
1097
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
1108
1098
  </div>
1109
1099
  <hr>
1110
1100
  <div class="refsect2">
1111
1101
  <a name="gtk-source-search-context-get-regex-error"></a><h3>gtk_source_search_context_get_regex_error ()</h3>
1112
- <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
1102
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
1113
1103
  gtk_source_search_context_get_regex_error
1114
1104
  (<em class="parameter"><code><a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext"><span class="type">GtkSourceSearchContext</span></a> *search</code></em>);</pre>
1115
1105
  <p>Regular expression patterns must follow certain rules. If
1116
1106
  <a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--search-text" title="The “search-text” property"><span class="type">“search-text”</span></a> breaks a rule, the error can be retrieved
1117
- with this function. The error domain is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR:CAPS"><span class="type">G_REGEX_ERROR</span></a>.</p>
1118
- <p>Free the return value with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#g-error-free"><code class="function">g_error_free()</code></a>.</p>
1107
+ with this function. The error domain is <a href="/usr/share/gtk-doc/html/glibglib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR:CAPS"><span class="type">G_REGEX_ERROR</span></a>.</p>
1108
+ <p>Free the return value with <a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#g-error-free"><code class="function">g_error_free()</code></a>.</p>
1119
1109
  <div class="refsect3">
1120
- <a name="id-1.2.8.2.9.20.6"></a><h4>Parameters</h4>
1110
+ <a name="gtk-source-search-context-get-regex-error.parameters"></a><h4>Parameters</h4>
1121
1111
  <div class="informaltable"><table width="100%" border="0">
1122
1112
  <colgroup>
1123
1113
  <col width="150px" class="parameters_name">
@@ -1132,11 +1122,11 @@ with this function. The error domain is <a href="/home/vagrant/ruby-gnome2.win64
1132
1122
  </table></div>
1133
1123
  </div>
1134
1124
  <div class="refsect3">
1135
- <a name="id-1.2.8.2.9.20.7"></a><h4>Returns</h4>
1136
- <p> the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</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> if the pattern is valid. </p>
1125
+ <a name="gtk-source-search-context-get-regex-error.returns"></a><h4>Returns</h4>
1126
+ <p> the <a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the pattern is valid. </p>
1137
1127
  <p><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></p>
1138
1128
  </div>
1139
- <p class="since">Since 3.10</p>
1129
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
1140
1130
  </div>
1141
1131
  </div>
1142
1132
  <div class="refsect1">
@@ -1153,46 +1143,46 @@ with this function. The error domain is <a href="/home/vagrant/ruby-gnome2.win64
1153
1143
  <pre class="programlisting"> “buffer” <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> *</pre>
1154
1144
  <p>The <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> associated to the search context.</p>
1155
1145
  <p>Flags: Read / Write / Construct Only</p>
1156
- <p class="since">Since 3.10</p>
1146
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
1157
1147
  </div>
1158
1148
  <hr>
1159
1149
  <div class="refsect2">
1160
1150
  <a name="GtkSourceSearchContext--highlight"></a><h3>The <code class="literal">“highlight”</code> property</h3>
1161
- <pre class="programlisting"> “highlight” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1151
+ <pre class="programlisting"> “highlight” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1162
1152
  <p>Highlight the search occurrences.</p>
1163
1153
  <p>Flags: Read / Write / Construct</p>
1164
1154
  <p>Default value: TRUE</p>
1165
- <p class="since">Since 3.10</p>
1155
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
1166
1156
  </div>
1167
1157
  <hr>
1168
1158
  <div class="refsect2">
1169
1159
  <a name="GtkSourceSearchContext--match-style"></a><h3>The <code class="literal">“match-style”</code> property</h3>
1170
1160
  <pre class="programlisting"> “match-style” <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle"><span class="type">GtkSourceStyle</span></a> *</pre>
1171
- <p>A <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle"><span class="type">GtkSourceStyle</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> for theme's scheme default style.</p>
1161
+ <p>A <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle"><span class="type">GtkSourceStyle</span></a>, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for theme's scheme default style.</p>
1172
1162
  <p>Flags: Read / Write / Construct</p>
1173
- <p class="since">Since 3.16</p>
1163
+ <p class="since">Since: <a class="link" href="api-index-3-16.html#api-index-3.16">3.16</a></p>
1174
1164
  </div>
1175
1165
  <hr>
1176
1166
  <div class="refsect2">
1177
1167
  <a name="GtkSourceSearchContext--occurrences-count"></a><h3>The <code class="literal">“occurrences-count”</code> property</h3>
1178
- <pre class="programlisting"> “occurrences-count” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
1168
+ <pre class="programlisting"> “occurrences-count” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
1179
1169
  <p>The total number of search occurrences. If the search is disabled,
1180
1170
  the value is 0. If the buffer is not already fully scanned, the value
1181
1171
  is -1.</p>
1182
1172
  <p>Flags: Read</p>
1183
1173
  <p>Allowed values: &gt;= -1</p>
1184
1174
  <p>Default value: 0</p>
1185
- <p class="since">Since 3.10</p>
1175
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
1186
1176
  </div>
1187
1177
  <hr>
1188
1178
  <div class="refsect2">
1189
1179
  <a name="GtkSourceSearchContext--regex-error"></a><h3>The <code class="literal">“regex-error”</code> property</h3>
1190
- <pre class="programlisting"> “regex-error” <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></pre>
1180
+ <pre class="programlisting"> “regex-error” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a></pre>
1191
1181
  <p>If the regex search pattern doesn't follow all the rules, this
1192
- property will be set. If the pattern is valid, the value is <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>
1193
- <p>Free with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#g-error-free"><code class="function">g_error_free()</code></a>.</p>
1182
+ property will be set. If the pattern is valid, the value is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
1183
+ <p>Free with <a href="/usr/share/gtk-doc/html/glibglib-Error-Reporting.html#g-error-free"><code class="function">g_error_free()</code></a>.</p>
1194
1184
  <p>Flags: Read</p>
1195
- <p class="since">Since 3.10</p>
1185
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
1196
1186
  </div>
1197
1187
  <hr>
1198
1188
  <div class="refsect2">
@@ -1200,7 +1190,7 @@ property will be set. If the pattern is valid, the value is <a href="/home/vagra
1200
1190
  <pre class="programlisting"> “settings” <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</span></a> *</pre>
1201
1191
  <p>The <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings"><span class="type">GtkSourceSearchSettings</span></a> associated to the search context.</p>
1202
1192
  <p>Flags: Read / Write / Construct</p>
1203
- <p class="since">Since 3.10</p>
1193
+ <p class="since">Since: <a class="link" href="api-index-3-10.html#api-index-3.10">3.10</a></p>
1204
1194
  </div>
1205
1195
  </div>
1206
1196
  <div class="refsect1">
@@ -1209,7 +1199,6 @@ property will be set. If the pattern is valid, the value is <a href="/home/vagra
1209
1199
  </div>
1210
1200
  </div>
1211
1201
  <div class="footer">
1212
- <hr>
1213
- Generated by GTK-Doc V1.21.1</div>
1202
+ <hr>Generated by GTK-Doc V1.25.1</div>
1214
1203
  </body>
1215
1204
  </html>