gtksourceview3 3.0.7-x86-mingw32 → 3.0.8-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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="ch02.html" title="Syntax Highlighting">
9
9
  <link rel="prev" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">
10
10
  <link rel="next" href="GtkSourceStyleSchemeChooser.html" title="GtkSourceStyleSchemeChooser">
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">
@@ -82,14 +82,14 @@
82
82
  </td>
83
83
  </tr>
84
84
  <tr>
85
- <td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
85
+ <td class="function_type">const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
86
86
  </td>
87
87
  <td class="function_name">
88
88
  <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-search-path" title="gtk_source_style_scheme_manager_get_search_path ()">gtk_source_style_scheme_manager_get_search_path</a> <span class="c_punctuation">()</span>
89
89
  </td>
90
90
  </tr>
91
91
  <tr>
92
- <td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
92
+ <td class="function_type">const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
93
93
  </td>
94
94
  <td class="function_name">
95
95
  <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-scheme-ids" title="gtk_source_style_scheme_manager_get_scheme_ids ()">gtk_source_style_scheme_manager_get_scheme_ids</a> <span class="c_punctuation">()</span>
@@ -124,12 +124,12 @@
124
124
  </colgroup>
125
125
  <tbody>
126
126
  <tr>
127
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></td>
127
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td>
128
128
  <td class="property_name"><a class="link" href="GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager--scheme-ids" title="The “scheme-ids” property">scheme-ids</a></td>
129
129
  <td class="property_flags">Read</td>
130
130
  </tr>
131
131
  <tr>
132
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></td>
132
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td>
133
133
  <td class="property_name"><a class="link" href="GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager--search-path" title="The “search-path” property">search-path</a></td>
134
134
  <td class="property_flags">Read / Write</td>
135
135
  </tr>
@@ -151,7 +151,7 @@
151
151
  </div>
152
152
  <div class="refsect1">
153
153
  <a name="GtkSourceStyleSchemeManager.object-hierarchy"></a><h2>Object Hierarchy</h2>
154
- <pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
154
+ <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
155
155
  <span class="lineart">╰──</span> GtkSourceStyleSchemeManager
156
156
  </pre>
157
157
  </div>
@@ -173,9 +173,8 @@ gtk_source_style_scheme_manager_new (<em class="parameter"><code><span class="ty
173
173
  <p>Creates a new style manager. If you do not need more than one style
174
174
  manager then use <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-default" title="gtk_source_style_scheme_manager_get_default ()"><code class="function">gtk_source_style_scheme_manager_get_default()</code></a> instead.</p>
175
175
  <div class="refsect3">
176
- <a name="id-1.2.3.6.9.2.5"></a><h4>Returns</h4>
176
+ <a name="gtk-source-style-scheme-manager-new.returns"></a><h4>Returns</h4>
177
177
  <p> a new <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager"><span class="type">GtkSourceStyleSchemeManager</span></a>.</p>
178
- <p></p>
179
178
  </div>
180
179
  </div>
181
180
  <hr>
@@ -186,7 +185,7 @@ gtk_source_style_scheme_manager_get_default
186
185
  (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
187
186
  <p>Returns the default <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager"><span class="type">GtkSourceStyleSchemeManager</span></a> instance.</p>
188
187
  <div class="refsect3">
189
- <a name="id-1.2.3.6.9.3.5"></a><h4>Returns</h4>
188
+ <a name="gtk-source-style-scheme-manager-get-default.returns"></a><h4>Returns</h4>
190
189
  <p> a <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager"><span class="type">GtkSourceStyleSchemeManager</span></a>. Return value
191
190
  is owned by GtkSourceView library and must not be unref'ed. </p>
192
191
  <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
@@ -198,14 +197,14 @@ is owned by GtkSourceView library and must not be unref'ed. </p>
198
197
  <pre class="programlisting"><span class="returnvalue">void</span>
199
198
  gtk_source_style_scheme_manager_set_search_path
200
199
  (<em class="parameter"><code><a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager"><span class="type">GtkSourceStyleSchemeManager</span></a> *manager</code></em>,
201
- <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **path</code></em>);</pre>
200
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **path</code></em>);</pre>
202
201
  <p>Sets the list of directories where the <em class="parameter"><code>manager</code></em>
203
202
  looks for
204
203
  style scheme files.
205
204
  If <em class="parameter"><code>path</code></em>
206
- is <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, the search path is reset to default.</p>
205
+ is <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, the search path is reset to default.</p>
207
206
  <div class="refsect3">
208
- <a name="id-1.2.3.6.9.4.5"></a><h4>Parameters</h4>
207
+ <a name="gtk-source-style-scheme-manager-set-search-path.parameters"></a><h4>Parameters</h4>
209
208
  <div class="informaltable"><table width="100%" border="0">
210
209
  <colgroup>
211
210
  <col width="150px" class="parameters_name">
@@ -220,7 +219,7 @@ If <em class="parameter"><code>path</code></em>
220
219
  </tr>
221
220
  <tr>
222
221
  <td class="parameter_name"><p>path</p></td>
223
- <td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of strings or <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
222
+ <td class="parameter_description"><p>a <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of strings or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
224
223
  <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
225
224
  </tr>
226
225
  </tbody>
@@ -233,14 +232,14 @@ If <em class="parameter"><code>path</code></em>
233
232
  <pre class="programlisting"><span class="returnvalue">void</span>
234
233
  gtk_source_style_scheme_manager_append_search_path
235
234
  (<em class="parameter"><code><a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager"><span class="type">GtkSourceStyleSchemeManager</span></a> *manager</code></em>,
236
- <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path</code></em>);</pre>
235
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path</code></em>);</pre>
237
236
  <p>Appends <em class="parameter"><code>path</code></em>
238
237
  to the list of directories where the <em class="parameter"><code>manager</code></em>
239
238
  looks for
240
239
  style scheme files.
241
240
  See <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-set-search-path" title="gtk_source_style_scheme_manager_set_search_path ()"><code class="function">gtk_source_style_scheme_manager_set_search_path()</code></a> for details.</p>
242
241
  <div class="refsect3">
243
- <a name="id-1.2.3.6.9.5.5"></a><h4>Parameters</h4>
242
+ <a name="gtk-source-style-scheme-manager-append-search-path.parameters"></a><h4>Parameters</h4>
244
243
  <div class="informaltable"><table width="100%" border="0">
245
244
  <colgroup>
246
245
  <col width="150px" class="parameters_name">
@@ -268,14 +267,14 @@ See <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-sche
268
267
  <pre class="programlisting"><span class="returnvalue">void</span>
269
268
  gtk_source_style_scheme_manager_prepend_search_path
270
269
  (<em class="parameter"><code><a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager"><span class="type">GtkSourceStyleSchemeManager</span></a> *manager</code></em>,
271
- <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path</code></em>);</pre>
270
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path</code></em>);</pre>
272
271
  <p>Prepends <em class="parameter"><code>path</code></em>
273
272
  to the list of directories where the <em class="parameter"><code>manager</code></em>
274
273
  looks
275
274
  for style scheme files.
276
275
  See <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-set-search-path" title="gtk_source_style_scheme_manager_set_search_path ()"><code class="function">gtk_source_style_scheme_manager_set_search_path()</code></a> for details.</p>
277
276
  <div class="refsect3">
278
- <a name="id-1.2.3.6.9.6.5"></a><h4>Parameters</h4>
277
+ <a name="gtk-source-style-scheme-manager-prepend-search-path.parameters"></a><h4>Parameters</h4>
279
278
  <div class="informaltable"><table width="100%" border="0">
280
279
  <colgroup>
281
280
  <col width="150px" class="parameters_name">
@@ -300,14 +299,14 @@ See <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-sche
300
299
  <hr>
301
300
  <div class="refsect2">
302
301
  <a name="gtk-source-style-scheme-manager-get-search-path"></a><h3>gtk_source_style_scheme_manager_get_search_path ()</h3>
303
- <pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
302
+ <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
304
303
  gtk_source_style_scheme_manager_get_search_path
305
304
  (<em class="parameter"><code><a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager"><span class="type">GtkSourceStyleSchemeManager</span></a> *manager</code></em>);</pre>
306
305
  <p>Returns the current search path for the <em class="parameter"><code>manager</code></em>
307
306
  .
308
307
  See <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-set-search-path" title="gtk_source_style_scheme_manager_set_search_path ()"><code class="function">gtk_source_style_scheme_manager_set_search_path()</code></a> for details.</p>
309
308
  <div class="refsect3">
310
- <a name="id-1.2.3.6.9.7.5"></a><h4>Parameters</h4>
309
+ <a name="gtk-source-style-scheme-manager-get-search-path.parameters"></a><h4>Parameters</h4>
311
310
  <div class="informaltable"><table width="100%" border="0">
312
311
  <colgroup>
313
312
  <col width="150px" class="parameters_name">
@@ -322,8 +321,8 @@ See <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-sche
322
321
  </table></div>
323
322
  </div>
324
323
  <div class="refsect3">
325
- <a name="id-1.2.3.6.9.7.6"></a><h4>Returns</h4>
326
- <p> a <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array
324
+ <a name="gtk-source-style-scheme-manager-get-search-path.returns"></a><h4>Returns</h4>
325
+ <p> a <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array
327
326
  of string containing the search path.
328
327
  The array is owned by the <em class="parameter"><code>manager</code></em>
329
328
  and must not be modified. </p>
@@ -333,12 +332,12 @@ and must not be modified. </p>
333
332
  <hr>
334
333
  <div class="refsect2">
335
334
  <a name="gtk-source-style-scheme-manager-get-scheme-ids"></a><h3>gtk_source_style_scheme_manager_get_scheme_ids ()</h3>
336
- <pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
335
+ <pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
337
336
  gtk_source_style_scheme_manager_get_scheme_ids
338
337
  (<em class="parameter"><code><a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager"><span class="type">GtkSourceStyleSchemeManager</span></a> *manager</code></em>);</pre>
339
338
  <p>Returns the ids of the available style schemes.</p>
340
339
  <div class="refsect3">
341
- <a name="id-1.2.3.6.9.8.5"></a><h4>Parameters</h4>
340
+ <a name="gtk-source-style-scheme-manager-get-scheme-ids.parameters"></a><h4>Parameters</h4>
342
341
  <div class="informaltable"><table width="100%" border="0">
343
342
  <colgroup>
344
343
  <col width="150px" class="parameters_name">
@@ -353,14 +352,13 @@ gtk_source_style_scheme_manager_get_scheme_ids
353
352
  </table></div>
354
353
  </div>
355
354
  <div class="refsect3">
356
- <a name="id-1.2.3.6.9.8.6"></a><h4>Returns</h4>
357
- <p> a <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array
358
- of string containing the ids of the available style schemes or <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no
359
- style scheme is available.
355
+ <a name="gtk-source-style-scheme-manager-get-scheme-ids.returns"></a><h4>Returns</h4>
356
+ <p>a <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of strings containing the ids of the available
357
+ style schemes or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no style scheme is available.
360
358
  The array is sorted alphabetically according to the scheme name.
361
359
  The array is owned by the <em class="parameter"><code>manager</code></em>
362
360
  and must not be modified. </p>
363
- <p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
361
+ <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>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
364
362
  </div>
365
363
  </div>
366
364
  <hr>
@@ -369,10 +367,10 @@ and must not be modified. </p>
369
367
  <pre class="programlisting"><a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme"><span class="returnvalue">GtkSourceStyleScheme</span></a> *
370
368
  gtk_source_style_scheme_manager_get_scheme
371
369
  (<em class="parameter"><code><a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager"><span class="type">GtkSourceStyleSchemeManager</span></a> *manager</code></em>,
372
- <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *scheme_id</code></em>);</pre>
370
+ <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *scheme_id</code></em>);</pre>
373
371
  <p>Looks up style scheme by id.</p>
374
372
  <div class="refsect3">
375
- <a name="id-1.2.3.6.9.9.5"></a><h4>Parameters</h4>
373
+ <a name="gtk-source-style-scheme-manager-get-scheme.parameters"></a><h4>Parameters</h4>
376
374
  <div class="informaltable"><table width="100%" border="0">
377
375
  <colgroup>
378
376
  <col width="150px" class="parameters_name">
@@ -394,7 +392,7 @@ gtk_source_style_scheme_manager_get_scheme
394
392
  </table></div>
395
393
  </div>
396
394
  <div class="refsect3">
397
- <a name="id-1.2.3.6.9.9.6"></a><h4>Returns</h4>
395
+ <a name="gtk-source-style-scheme-manager-get-scheme.returns"></a><h4>Returns</h4>
398
396
  <p> a <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme"><span class="type">GtkSourceStyleScheme</span></a> object. Returned value is owned by
399
397
  <em class="parameter"><code>manager</code></em>
400
398
  and must not be unref'ed. </p>
@@ -412,7 +410,7 @@ as invalid. All the available style schemes will be reloaded next time
412
410
  the <em class="parameter"><code>manager</code></em>
413
411
  is accessed.</p>
414
412
  <div class="refsect3">
415
- <a name="id-1.2.3.6.9.10.5"></a><h4>Parameters</h4>
413
+ <a name="gtk-source-style-scheme-manager-force-rescan.parameters"></a><h4>Parameters</h4>
416
414
  <div class="informaltable"><table width="100%" border="0">
417
415
  <colgroup>
418
416
  <col width="150px" class="parameters_name">
@@ -439,14 +437,14 @@ the <em class="parameter"><code>manager</code></em>
439
437
  <a name="GtkSourceStyleSchemeManager.property-details"></a><h2>Property Details</h2>
440
438
  <div class="refsect2">
441
439
  <a name="GtkSourceStyleSchemeManager--scheme-ids"></a><h3>The <code class="literal">“scheme-ids”</code> property</h3>
442
- <pre class="programlisting"> “scheme-ids” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></pre>
440
+ <pre class="programlisting"> “scheme-ids” <a href="/usr/share/gtk-doc/html/glibglib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre>
443
441
  <p>List of the ids of the available style schemes.</p>
444
442
  <p>Flags: Read</p>
445
443
  </div>
446
444
  <hr>
447
445
  <div class="refsect2">
448
446
  <a name="GtkSourceStyleSchemeManager--search-path"></a><h3>The <code class="literal">“search-path”</code> property</h3>
449
- <pre class="programlisting"> “search-path” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></pre>
447
+ <pre class="programlisting"> “search-path” <a href="/usr/share/gtk-doc/html/glibglib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre>
450
448
  <p>List of directories and files where the style schemes are located.</p>
451
449
  <p>Flags: Read / Write</p>
452
450
  </div>
@@ -457,7 +455,6 @@ the <em class="parameter"><code>manager</code></em>
457
455
  </div>
458
456
  </div>
459
457
  <div class="footer">
460
- <hr>
461
- Generated by GTK-Doc V1.21.1</div>
458
+ <hr>Generated by GTK-Doc V1.25.1</div>
462
459
  </body>
463
460
  </html>
@@ -0,0 +1,177 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkSourceTag: GtkSourceView 3 Reference Manual</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="ch08.html" title="Others">
9
+ <link rel="prev" href="GtkSourceMap.html" title="GtkSourceMap">
10
+ <link rel="next" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">
11
+ <meta name="generator" content="GTK-Doc V1.25.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#GtkSourceTag.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#GtkSourceTag.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
20
+ <a href="#GtkSourceTag.properties" class="shortcut">Properties</a></span>
21
+ </td>
22
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
23
+ <td><a accesskey="u" href="ch08.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
24
+ <td><a accesskey="p" href="GtkSourceMap.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25
+ <td><a accesskey="n" href="GtkSourceUndoManager.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
26
+ </tr></table>
27
+ <div class="refentry">
28
+ <a name="GtkSourceTag"></a><div class="titlepage"></div>
29
+ <div class="refnamediv"><table width="100%"><tr>
30
+ <td valign="top">
31
+ <h2><span class="refentrytitle"><a name="GtkSourceTag.top_of_page"></a>GtkSourceTag</span></h2>
32
+ <p>GtkSourceTag — A tag that can be applied to text in a GtkSourceBuffer</p>
33
+ </td>
34
+ <td class="gallery_image" valign="top" align="right"></td>
35
+ </tr></table></div>
36
+ <div class="refsect1">
37
+ <a name="GtkSourceTag.functions"></a><h2>Functions</h2>
38
+ <div class="informaltable"><table width="100%" border="0">
39
+ <colgroup>
40
+ <col width="150px" class="functions_return">
41
+ <col class="functions_name">
42
+ </colgroup>
43
+ <tbody><tr>
44
+ <td class="function_type">
45
+ <a href="/usr/share/gtk-doc/html/gtk3GtkTextTag.html#GtkTextTag-struct"><span class="returnvalue">GtkTextTag</span></a> *
46
+ </td>
47
+ <td class="function_name">
48
+ <a class="link" href="GtkSourceTag.html#gtk-source-tag-new" title="gtk_source_tag_new ()">gtk_source_tag_new</a> <span class="c_punctuation">()</span>
49
+ </td>
50
+ </tr></tbody>
51
+ </table></div>
52
+ </div>
53
+ <div class="refsect1">
54
+ <a name="GtkSourceTag.properties"></a><h2>Properties</h2>
55
+ <div class="informaltable"><table border="0">
56
+ <colgroup>
57
+ <col width="150px" class="properties_type">
58
+ <col width="300px" class="properties_name">
59
+ <col width="200px" class="properties_flags">
60
+ </colgroup>
61
+ <tbody>
62
+ <tr>
63
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
64
+ <td class="property_name"><a class="link" href="GtkSourceTag.html#GtkSourceTag--draw-spaces" title="The “draw-spaces” property">draw-spaces</a></td>
65
+ <td class="property_flags">Read / Write</td>
66
+ </tr>
67
+ <tr>
68
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
69
+ <td class="property_name"><a class="link" href="GtkSourceTag.html#GtkSourceTag--draw-spaces-set" title="The “draw-spaces-set” property">draw-spaces-set</a></td>
70
+ <td class="property_flags">Read / Write</td>
71
+ </tr>
72
+ </tbody>
73
+ </table></div>
74
+ </div>
75
+ <div class="refsect1">
76
+ <a name="GtkSourceTag.other"></a><h2>Types and Values</h2>
77
+ <div class="informaltable"><table width="100%" border="0">
78
+ <colgroup>
79
+ <col width="150px" class="name">
80
+ <col class="description">
81
+ </colgroup>
82
+ <tbody><tr>
83
+ <td class="datatype_keyword"> </td>
84
+ <td class="function_name"><a class="link" href="GtkSourceTag.html#GtkSourceTag-struct" title="GtkSourceTag">GtkSourceTag</a></td>
85
+ </tr></tbody>
86
+ </table></div>
87
+ </div>
88
+ <div class="refsect1">
89
+ <a name="GtkSourceTag.object-hierarchy"></a><h2>Object Hierarchy</h2>
90
+ <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
91
+ <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk3GtkTextTag.html#GtkTextTag-struct">GtkTextTag</a>
92
+ <span class="lineart">╰──</span> GtkSourceTag
93
+ </pre>
94
+ </div>
95
+ <div class="refsect1">
96
+ <a name="GtkSourceTag.includes"></a><h2>Includes</h2>
97
+ <pre class="synopsis">#include &lt;gtksourceview/gtksource.h&gt;
98
+ </pre>
99
+ </div>
100
+ <div class="refsect1">
101
+ <a name="GtkSourceTag.description"></a><h2>Description</h2>
102
+ <p><a class="link" href="GtkSourceTag.html" title="GtkSourceTag"><span class="type">GtkSourceTag</span></a> is a subclass of <a href="/usr/share/gtk-doc/html/gtk3GtkTextTag.html#GtkTextTag-struct"><span class="type">GtkTextTag</span></a> that adds properties useful for
103
+ the GtkSourceView library.</p>
104
+ </div>
105
+ <div class="refsect1">
106
+ <a name="GtkSourceTag.functions_details"></a><h2>Functions</h2>
107
+ <div class="refsect2">
108
+ <a name="gtk-source-tag-new"></a><h3>gtk_source_tag_new ()</h3>
109
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk3GtkTextTag.html#GtkTextTag-struct"><span class="returnvalue">GtkTextTag</span></a> *
110
+ gtk_source_tag_new (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
111
+ <p>Creates a <a class="link" href="GtkSourceTag.html" title="GtkSourceTag"><span class="type">GtkSourceTag</span></a>. Configure the tag using object arguments,
112
+ i.e. using <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#g-object-set"><code class="function">g_object_set()</code></a>.</p>
113
+ <p>For usual cases, <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-create-source-tag" title="gtk_source_buffer_create_source_tag ()"><code class="function">gtk_source_buffer_create_source_tag()</code></a> is more convenient to
114
+ use.</p>
115
+ <div class="refsect3">
116
+ <a name="gtk-source-tag-new.parameters"></a><h4>Parameters</h4>
117
+ <div class="informaltable"><table width="100%" border="0">
118
+ <colgroup>
119
+ <col width="150px" class="parameters_name">
120
+ <col class="parameters_description">
121
+ <col width="200px" class="parameters_annotations">
122
+ </colgroup>
123
+ <tbody><tr>
124
+ <td class="parameter_name"><p>name</p></td>
125
+ <td class="parameter_description"><p> tag name, or <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
126
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></td>
127
+ </tr></tbody>
128
+ </table></div>
129
+ </div>
130
+ <div class="refsect3">
131
+ <a name="gtk-source-tag-new.returns"></a><h4>Returns</h4>
132
+ <p> a new <a class="link" href="GtkSourceTag.html" title="GtkSourceTag"><span class="type">GtkSourceTag</span></a>.</p>
133
+ </div>
134
+ <p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
135
+ </div>
136
+ </div>
137
+ <div class="refsect1">
138
+ <a name="GtkSourceTag.other_details"></a><h2>Types and Values</h2>
139
+ <div class="refsect2">
140
+ <a name="GtkSourceTag-struct"></a><h3>GtkSourceTag</h3>
141
+ <pre class="programlisting">typedef struct _GtkSourceTag GtkSourceTag;</pre>
142
+ </div>
143
+ </div>
144
+ <div class="refsect1">
145
+ <a name="GtkSourceTag.property-details"></a><h2>Property Details</h2>
146
+ <div class="refsect2">
147
+ <a name="GtkSourceTag--draw-spaces"></a><h3>The <code class="literal">“draw-spaces”</code> property</h3>
148
+ <pre class="programlisting"> “draw-spaces” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
149
+ <p>Whether to draw spaces. This property takes precedence over the value
150
+ defined by the GtkSourceView's <a class="link" href="GtkSourceView.html#GtkSourceView--draw-spaces" title="The “draw-spaces” property"><span class="type">“draw-spaces”</span></a> property
151
+ (only where the tag is applied).</p>
152
+ <p>Setting this property also changes <a class="link" href="GtkSourceTag.html#GtkSourceTag--draw-spaces-set" title="The “draw-spaces-set” property"><span class="type">“draw-spaces-set”</span></a> to
153
+ <a href="/usr/share/gtk-doc/html/glibglib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.</p>
154
+ <p>Flags: Read / Write</p>
155
+ <p>Default value: FALSE</p>
156
+ <p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
157
+ </div>
158
+ <hr>
159
+ <div class="refsect2">
160
+ <a name="GtkSourceTag--draw-spaces-set"></a><h3>The <code class="literal">“draw-spaces-set”</code> property</h3>
161
+ <pre class="programlisting"> “draw-spaces-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
162
+ <p>Whether the <a class="link" href="GtkSourceTag.html#GtkSourceTag--draw-spaces" title="The “draw-spaces” property"><span class="type">“draw-spaces”</span></a> property is set and must be
163
+ taken into account.</p>
164
+ <p>Flags: Read / Write</p>
165
+ <p>Default value: FALSE</p>
166
+ <p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
167
+ </div>
168
+ </div>
169
+ <div class="refsect1">
170
+ <a name="GtkSourceTag.see-also"></a><h2>See Also</h2>
171
+ <p><a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a></p>
172
+ </div>
173
+ </div>
174
+ <div class="footer">
175
+ <hr>Generated by GTK-Doc V1.25.1</div>
176
+ </body>
177
+ </html>