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="index.html" title="GtkSourceView 3 Reference Manual">
9
9
  <link rel="prev" href="object-tree.html" title="Object Hierarchy">
10
10
  <link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">
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">
@@ -200,10 +200,18 @@
200
200
  </dt>
201
201
  <dd></dd>
202
202
  <dt>
203
+ <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem--gicon" title="The “gicon” property">GtkSourceCompletionItem:gicon</a>, object property in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
204
+ </dt>
205
+ <dd></dd>
206
+ <dt>
203
207
  <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem--icon" title="The “icon” property">GtkSourceCompletionItem:icon</a>, object property in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
204
208
  </dt>
205
209
  <dd></dd>
206
210
  <dt>
211
+ <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem--icon-name" title="The “icon-name” property">GtkSourceCompletionItem:icon-name</a>, object property in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
212
+ </dt>
213
+ <dd></dd>
214
+ <dt>
207
215
  <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem--info" title="The “info” property">GtkSourceCompletionItem:info</a>, object property in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
208
216
  </dt>
209
217
  <dd></dd>
@@ -308,6 +316,10 @@
308
316
  </dt>
309
317
  <dd></dd>
310
318
  <dt>
319
+ <a class="link" href="GtkSourceFile.html#GtkSourceFile--read-only" title="The “read-only” property">GtkSourceFile:read-only</a>, object property in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
320
+ </dt>
321
+ <dd></dd>
322
+ <dt>
311
323
  <a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader-struct" title="GtkSourceFileLoader">GtkSourceFileLoader</a>, struct in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
312
324
  </dt>
313
325
  <dd></dd>
@@ -532,6 +544,18 @@
532
544
  </dt>
533
545
  <dd></dd>
534
546
  <dt>
547
+ <a class="link" href="GtkSourceMap.html#GtkSourceMap-struct" title="struct GtkSourceMap">GtkSourceMap</a>, struct in <a class="link" href="GtkSourceMap.html" title="GtkSourceMap">GtkSourceMap</a>
548
+ </dt>
549
+ <dd></dd>
550
+ <dt>
551
+ <a class="link" href="GtkSourceMap.html#GtkSourceMap--font-desc" title="The “font-desc” property">GtkSourceMap:font-desc</a>, object property in <a class="link" href="GtkSourceMap.html" title="GtkSourceMap">GtkSourceMap</a>
552
+ </dt>
553
+ <dd></dd>
554
+ <dt>
555
+ <a class="link" href="GtkSourceMap.html#GtkSourceMap--view" title="The “view” property">GtkSourceMap:view</a>, object property in <a class="link" href="GtkSourceMap.html" title="GtkSourceMap">GtkSourceMap</a>
556
+ </dt>
557
+ <dd></dd>
558
+ <dt>
535
559
  <a class="link" href="GtkSourceMark.html#GtkSourceMark-struct" title="GtkSourceMark">GtkSourceMark</a>, struct in <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
536
560
  </dt>
537
561
  <dd></dd>
@@ -688,6 +712,10 @@
688
712
  </dt>
689
713
  <dd></dd>
690
714
  <dt>
715
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceSortFlags" title="enum GtkSourceSortFlags">GtkSourceSortFlags</a>, enum in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
716
+ </dt>
717
+ <dd></dd>
718
+ <dt>
691
719
  <a class="link" href="GtkSourceStyle.html#GtkSourceStyle-struct" title="GtkSourceStyle">GtkSourceStyle</a>, struct in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
692
720
  </dt>
693
721
  <dd></dd>
@@ -732,6 +760,10 @@
732
760
  </dt>
733
761
  <dd></dd>
734
762
  <dt>
763
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--pango-underline" title="The “pango-underline” property">GtkSourceStyle:pango-underline</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
764
+ </dt>
765
+ <dd></dd>
766
+ <dt>
735
767
  <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--scale" title="The “scale” property">GtkSourceStyle:scale</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
736
768
  </dt>
737
769
  <dd></dd>
@@ -752,6 +784,14 @@
752
784
  </dt>
753
785
  <dd></dd>
754
786
  <dt>
787
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--underline-color" title="The “underline-color” property">GtkSourceStyle:underline-color</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
788
+ </dt>
789
+ <dd></dd>
790
+ <dt>
791
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--underline-color-set" title="The “underline-color-set” property">GtkSourceStyle:underline-color-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
792
+ </dt>
793
+ <dd></dd>
794
+ <dt>
755
795
  <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--underline-set" title="The “underline-set” property">GtkSourceStyle:underline-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
756
796
  </dt>
757
797
  <dd></dd>
@@ -804,6 +844,18 @@
804
844
  </dt>
805
845
  <dd></dd>
806
846
  <dt>
847
+ <a class="link" href="GtkSourceTag.html#GtkSourceTag-struct" title="GtkSourceTag">GtkSourceTag</a>, struct in <a class="link" href="GtkSourceTag.html" title="GtkSourceTag">GtkSourceTag</a>
848
+ </dt>
849
+ <dd></dd>
850
+ <dt>
851
+ <a class="link" href="GtkSourceTag.html#GtkSourceTag--draw-spaces" title="The “draw-spaces” property">GtkSourceTag:draw-spaces</a>, object property in <a class="link" href="GtkSourceTag.html" title="GtkSourceTag">GtkSourceTag</a>
852
+ </dt>
853
+ <dd></dd>
854
+ <dt>
855
+ <a class="link" href="GtkSourceTag.html#GtkSourceTag--draw-spaces-set" title="The “draw-spaces-set” property">GtkSourceTag:draw-spaces-set</a>, object property in <a class="link" href="GtkSourceTag.html" title="GtkSourceTag">GtkSourceTag</a>
856
+ </dt>
857
+ <dd></dd>
858
+ <dt>
807
859
  <a class="link" href="GtkSourceUndoManager.html#GtkSourceUndoManager-struct" title="GtkSourceUndoManager">GtkSourceUndoManager</a>, struct in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
808
860
  </dt>
809
861
  <dd></dd>
@@ -912,6 +964,10 @@
912
964
  </dt>
913
965
  <dd></dd>
914
966
  <dt>
967
+ <a class="link" href="GtkSourceView.html#GtkSourceView--smart-backspace" title="The “smart-backspace” property">GtkSourceView:smart-backspace</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
968
+ </dt>
969
+ <dd></dd>
970
+ <dt>
915
971
  <a class="link" href="GtkSourceView.html#GtkSourceView--smart-home-end" title="The “smart-home-end” property">GtkSourceView:smart-home-end</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
916
972
  </dt>
917
973
  <dd></dd>
@@ -948,6 +1004,10 @@
948
1004
  </dt>
949
1005
  <dd></dd>
950
1006
  <dt>
1007
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-create-source-tag" title="gtk_source_buffer_create_source_tag ()">gtk_source_buffer_create_source_tag</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
1008
+ </dt>
1009
+ <dd></dd>
1010
+ <dt>
951
1011
  <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-end-not-undoable-action" title="gtk_source_buffer_end_not_undoable_action ()">gtk_source_buffer_end_not_undoable_action</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
952
1012
  </dt>
953
1013
  <dd></dd>
@@ -1060,10 +1120,22 @@
1060
1120
  </dt>
1061
1121
  <dd></dd>
1062
1122
  <dt>
1123
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-sort-lines" title="gtk_source_buffer_sort_lines ()">gtk_source_buffer_sort_lines</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
1124
+ </dt>
1125
+ <dd></dd>
1126
+ <dt>
1063
1127
  <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-undo" title="gtk_source_buffer_undo ()">gtk_source_buffer_undo</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
1064
1128
  </dt>
1065
1129
  <dd></dd>
1066
1130
  <dt>
1131
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-CHECK-VERSION:CAPS" title="GTK_SOURCE_CHECK_VERSION()">GTK_SOURCE_CHECK_VERSION</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
1132
+ </dt>
1133
+ <dd></dd>
1134
+ <dt>
1135
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#gtk-source-check-version" title="gtk_source_check_version ()">gtk_source_check_version</a>, function in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
1136
+ </dt>
1137
+ <dd></dd>
1138
+ <dt>
1067
1139
  <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-add-provider" title="gtk_source_completion_add_provider ()">gtk_source_completion_add_provider</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
1068
1140
  </dt>
1069
1141
  <dd></dd>
@@ -1148,10 +1220,18 @@
1148
1220
  </dt>
1149
1221
  <dd></dd>
1150
1222
  <dt>
1223
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-gicon" title="gtk_source_completion_proposal_get_gicon ()">gtk_source_completion_proposal_get_gicon</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
1224
+ </dt>
1225
+ <dd></dd>
1226
+ <dt>
1151
1227
  <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-icon" title="gtk_source_completion_proposal_get_icon ()">gtk_source_completion_proposal_get_icon</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
1152
1228
  </dt>
1153
1229
  <dd></dd>
1154
1230
  <dt>
1231
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-icon-name" title="gtk_source_completion_proposal_get_icon_name ()">gtk_source_completion_proposal_get_icon_name</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
1232
+ </dt>
1233
+ <dd></dd>
1234
+ <dt>
1155
1235
  <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-info" title="gtk_source_completion_proposal_get_info ()">gtk_source_completion_proposal_get_info</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
1156
1236
  </dt>
1157
1237
  <dd></dd>
@@ -1180,10 +1260,18 @@
1180
1260
  </dt>
1181
1261
  <dd></dd>
1182
1262
  <dt>
1263
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-gicon" title="gtk_source_completion_provider_get_gicon ()">gtk_source_completion_provider_get_gicon</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
1264
+ </dt>
1265
+ <dd></dd>
1266
+ <dt>
1183
1267
  <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-icon" title="gtk_source_completion_provider_get_icon ()">gtk_source_completion_provider_get_icon</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
1184
1268
  </dt>
1185
1269
  <dd></dd>
1186
1270
  <dt>
1271
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-icon-name" title="gtk_source_completion_provider_get_icon_name ()">gtk_source_completion_provider_get_icon_name</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
1272
+ </dt>
1273
+ <dd></dd>
1274
+ <dt>
1187
1275
  <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-info-widget" title="gtk_source_completion_provider_get_info_widget ()">gtk_source_completion_provider_get_info_widget</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
1188
1276
  </dt>
1189
1277
  <dd></dd>
@@ -1260,6 +1348,10 @@
1260
1348
  </dt>
1261
1349
  <dd></dd>
1262
1350
  <dt>
1351
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-default-candidates" title="gtk_source_encoding_get_default_candidates ()">gtk_source_encoding_get_default_candidates</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1352
+ </dt>
1353
+ <dd></dd>
1354
+ <dt>
1263
1355
  <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-from-charset" title="gtk_source_encoding_get_from_charset ()">gtk_source_encoding_get_from_charset</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1264
1356
  </dt>
1265
1357
  <dd></dd>
@@ -1276,6 +1368,10 @@
1276
1368
  </dt>
1277
1369
  <dd></dd>
1278
1370
  <dt>
1371
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-check-file-on-disk" title="gtk_source_file_check_file_on_disk ()">gtk_source_file_check_file_on_disk</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1372
+ </dt>
1373
+ <dd></dd>
1374
+ <dt>
1279
1375
  <a class="link" href="GtkSourceFile.html#gtk-source-file-get-compression-type" title="gtk_source_file_get_compression_type ()">gtk_source_file_get_compression_type</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1280
1376
  </dt>
1281
1377
  <dd></dd>
@@ -1292,6 +1388,22 @@
1292
1388
  </dt>
1293
1389
  <dd></dd>
1294
1390
  <dt>
1391
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-is-deleted" title="gtk_source_file_is_deleted ()">gtk_source_file_is_deleted</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1392
+ </dt>
1393
+ <dd></dd>
1394
+ <dt>
1395
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-is-externally-modified" title="gtk_source_file_is_externally_modified ()">gtk_source_file_is_externally_modified</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1396
+ </dt>
1397
+ <dd></dd>
1398
+ <dt>
1399
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-is-local" title="gtk_source_file_is_local ()">gtk_source_file_is_local</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1400
+ </dt>
1401
+ <dd></dd>
1402
+ <dt>
1403
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-is-readonly" title="gtk_source_file_is_readonly ()">gtk_source_file_is_readonly</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1404
+ </dt>
1405
+ <dd></dd>
1406
+ <dt>
1295
1407
  <a class="link" href="GtkSourceFileLoader.html#GTK-SOURCE-FILE-LOADER-ERROR:CAPS" title="GTK_SOURCE_FILE_LOADER_ERROR">GTK_SOURCE_FILE_LOADER_ERROR</a>, macro in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1296
1408
  </dt>
1297
1409
  <dd></dd>
@@ -1420,6 +1532,18 @@
1420
1532
  </dt>
1421
1533
  <dd></dd>
1422
1534
  <dt>
1535
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#gtk-source-get-major-version" title="gtk_source_get_major_version ()">gtk_source_get_major_version</a>, function in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
1536
+ </dt>
1537
+ <dd></dd>
1538
+ <dt>
1539
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#gtk-source-get-micro-version" title="gtk_source_get_micro_version ()">gtk_source_get_micro_version</a>, function in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
1540
+ </dt>
1541
+ <dd></dd>
1542
+ <dt>
1543
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#gtk-source-get-minor-version" title="gtk_source_get_minor_version ()">gtk_source_get_minor_version</a>, function in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
1544
+ </dt>
1545
+ <dd></dd>
1546
+ <dt>
1423
1547
  <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-get-padding" title="gtk_source_gutter_get_padding ()">gtk_source_gutter_get_padding</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
1424
1548
  </dt>
1425
1549
  <dd></dd>
@@ -1664,6 +1788,22 @@
1664
1788
  </dt>
1665
1789
  <dd></dd>
1666
1790
  <dt>
1791
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-MAJOR-VERSION:CAPS" title="GTK_SOURCE_MAJOR_VERSION">GTK_SOURCE_MAJOR_VERSION</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
1792
+ </dt>
1793
+ <dd></dd>
1794
+ <dt>
1795
+ <a class="link" href="GtkSourceMap.html#gtk-source-map-get-view" title="gtk_source_map_get_view ()">gtk_source_map_get_view</a>, function in <a class="link" href="GtkSourceMap.html" title="GtkSourceMap">GtkSourceMap</a>
1796
+ </dt>
1797
+ <dd></dd>
1798
+ <dt>
1799
+ <a class="link" href="GtkSourceMap.html#gtk-source-map-new" title="gtk_source_map_new ()">gtk_source_map_new</a>, function in <a class="link" href="GtkSourceMap.html" title="GtkSourceMap">GtkSourceMap</a>
1800
+ </dt>
1801
+ <dd></dd>
1802
+ <dt>
1803
+ <a class="link" href="GtkSourceMap.html#gtk-source-map-set-view" title="gtk_source_map_set_view ()">gtk_source_map_set_view</a>, function in <a class="link" href="GtkSourceMap.html" title="GtkSourceMap">GtkSourceMap</a>
1804
+ </dt>
1805
+ <dd></dd>
1806
+ <dt>
1667
1807
  <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-background" title="gtk_source_mark_attributes_get_background ()">gtk_source_mark_attributes_get_background</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1668
1808
  </dt>
1669
1809
  <dd></dd>
@@ -1736,6 +1876,14 @@
1736
1876
  </dt>
1737
1877
  <dd></dd>
1738
1878
  <dt>
1879
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-MICRO-VERSION:CAPS" title="GTK_SOURCE_MICRO_VERSION">GTK_SOURCE_MICRO_VERSION</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
1880
+ </dt>
1881
+ <dd></dd>
1882
+ <dt>
1883
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-MINOR-VERSION:CAPS" title="GTK_SOURCE_MINOR_VERSION">GTK_SOURCE_MINOR_VERSION</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
1884
+ </dt>
1885
+ <dd></dd>
1886
+ <dt>
1739
1887
  <a class="link" href="GtkSourceFile.html#GTK-SOURCE-NEWLINE-TYPE-DEFAULT:CAPS" title="GTK_SOURCE_NEWLINE_TYPE_DEFAULT">GTK_SOURCE_NEWLINE_TYPE_DEFAULT</a>, macro in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1740
1888
  </dt>
1741
1889
  <dd></dd>
@@ -2088,6 +2236,10 @@
2088
2236
  </dt>
2089
2237
  <dd></dd>
2090
2238
  <dt>
2239
+ <a class="link" href="GtkSourceTag.html#gtk-source-tag-new" title="gtk_source_tag_new ()">gtk_source_tag_new</a>, function in <a class="link" href="GtkSourceTag.html" title="GtkSourceTag">GtkSourceTag</a>
2240
+ </dt>
2241
+ <dd></dd>
2242
+ <dt>
2091
2243
  <a class="link" href="GtkSourceUndoManager.html#gtk-source-undo-manager-begin-not-undoable-action" title="gtk_source_undo_manager_begin_not_undoable_action ()">gtk_source_undo_manager_begin_not_undoable_action</a>, function in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
2092
2244
  </dt>
2093
2245
  <dd></dd>
@@ -2128,6 +2280,58 @@
2128
2280
  </dt>
2129
2281
  <dd></dd>
2130
2282
  <dt>
2283
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-0:CAPS" title="GTK_SOURCE_VERSION_3_0">GTK_SOURCE_VERSION_3_0</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2284
+ </dt>
2285
+ <dd></dd>
2286
+ <dt>
2287
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-10:CAPS" title="GTK_SOURCE_VERSION_3_10">GTK_SOURCE_VERSION_3_10</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2288
+ </dt>
2289
+ <dd></dd>
2290
+ <dt>
2291
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-12:CAPS" title="GTK_SOURCE_VERSION_3_12">GTK_SOURCE_VERSION_3_12</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2292
+ </dt>
2293
+ <dd></dd>
2294
+ <dt>
2295
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-14:CAPS" title="GTK_SOURCE_VERSION_3_14">GTK_SOURCE_VERSION_3_14</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2296
+ </dt>
2297
+ <dd></dd>
2298
+ <dt>
2299
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-16:CAPS" title="GTK_SOURCE_VERSION_3_16">GTK_SOURCE_VERSION_3_16</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2300
+ </dt>
2301
+ <dd></dd>
2302
+ <dt>
2303
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-18:CAPS" title="GTK_SOURCE_VERSION_3_18">GTK_SOURCE_VERSION_3_18</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2304
+ </dt>
2305
+ <dd></dd>
2306
+ <dt>
2307
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-2:CAPS" title="GTK_SOURCE_VERSION_3_2">GTK_SOURCE_VERSION_3_2</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2308
+ </dt>
2309
+ <dd></dd>
2310
+ <dt>
2311
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-20:CAPS" title="GTK_SOURCE_VERSION_3_20">GTK_SOURCE_VERSION_3_20</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2312
+ </dt>
2313
+ <dd></dd>
2314
+ <dt>
2315
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-4:CAPS" title="GTK_SOURCE_VERSION_3_4">GTK_SOURCE_VERSION_3_4</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2316
+ </dt>
2317
+ <dd></dd>
2318
+ <dt>
2319
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-6:CAPS" title="GTK_SOURCE_VERSION_3_6">GTK_SOURCE_VERSION_3_6</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2320
+ </dt>
2321
+ <dd></dd>
2322
+ <dt>
2323
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-3-8:CAPS" title="GTK_SOURCE_VERSION_3_8">GTK_SOURCE_VERSION_3_8</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2324
+ </dt>
2325
+ <dd></dd>
2326
+ <dt>
2327
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-MAX-ALLOWED:CAPS" title="GTK_SOURCE_VERSION_MAX_ALLOWED">GTK_SOURCE_VERSION_MAX_ALLOWED</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2328
+ </dt>
2329
+ <dd></dd>
2330
+ <dt>
2331
+ <a class="link" href="gtksourceview-3.0-Version-Information.html#GTK-SOURCE-VERSION-MIN-REQUIRED:CAPS" title="GTK_SOURCE_VERSION_MIN_REQUIRED">GTK_SOURCE_VERSION_MIN_REQUIRED</a>, macro in <a class="link" href="gtksourceview-3.0-Version-Information.html" title="Version Information">Version Information</a>
2332
+ </dt>
2333
+ <dd></dd>
2334
+ <dt>
2131
2335
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-auto-indent" title="gtk_source_view_get_auto_indent ()">gtk_source_view_get_auto_indent</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
2132
2336
  </dt>
2133
2337
  <dd></dd>
@@ -2184,6 +2388,10 @@
2184
2388
  </dt>
2185
2389
  <dd></dd>
2186
2390
  <dt>
2391
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-smart-backspace" title="gtk_source_view_get_smart_backspace ()">gtk_source_view_get_smart_backspace</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
2392
+ </dt>
2393
+ <dd></dd>
2394
+ <dt>
2187
2395
  <a class="link" href="GtkSourceView.html#gtk-source-view-get-smart-home-end" title="gtk_source_view_get_smart_home_end ()">gtk_source_view_get_smart_home_end</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
2188
2396
  </dt>
2189
2397
  <dd></dd>
@@ -2256,6 +2464,10 @@
2256
2464
  </dt>
2257
2465
  <dd></dd>
2258
2466
  <dt>
2467
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-smart-backspace" title="gtk_source_view_set_smart_backspace ()">gtk_source_view_set_smart_backspace</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
2468
+ </dt>
2469
+ <dd></dd>
2470
+ <dt>
2259
2471
  <a class="link" href="GtkSourceView.html#gtk-source-view-set-smart-home-end" title="gtk_source_view_set_smart_home_end ()">gtk_source_view_set_smart_home_end</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
2260
2472
  </dt>
2261
2473
  <dd></dd>
@@ -2269,7 +2481,6 @@
2269
2481
  <dd></dd>
2270
2482
  </div>
2271
2483
  <div class="footer">
2272
- <hr>
2273
- Generated by GTK-Doc V1.21.1</div>
2484
+ <hr>Generated by GTK-Doc V1.25.1</div>
2274
2485
  </body>
2275
2486
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pt01.html" title="Part I. API reference">
9
9
  <link rel="prev" href="pt01.html" title="Part I. API reference">
10
10
  <link rel="next" href="GtkSourceBuffer.html" title="GtkSourceBuffer">
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">
@@ -32,7 +32,6 @@
32
32
  </dl></div>
33
33
  </div>
34
34
  <div class="footer">
35
- <hr>
36
- Generated by GTK-Doc V1.21.1</div>
35
+ <hr>Generated by GTK-Doc V1.25.1</div>
37
36
  </body>
38
37
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pt01.html" title="Part I. API reference">
9
9
  <link rel="prev" href="GtkSourceView.html" title="GtkSourceView">
10
10
  <link rel="next" href="GtkSourceLanguage.html" title="GtkSourceLanguage">
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">
@@ -50,7 +50,6 @@
50
50
  </dl></div>
51
51
  </div>
52
52
  <div class="footer">
53
- <hr>
54
- Generated by GTK-Doc V1.21.1</div>
53
+ <hr>Generated by GTK-Doc V1.25.1</div>
55
54
  </body>
56
55
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pt01.html" title="Part I. API reference">
9
9
  <link rel="prev" href="GtkSourceStyleSchemeChooserWidget.html" title="GtkSourceStyleSchemeChooserWidget">
10
10
  <link rel="next" href="GtkSourceCompletion.html" title="GtkSourceCompletion">
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">
@@ -47,7 +47,6 @@
47
47
  </dl></div>
48
48
  </div>
49
49
  <div class="footer">
50
- <hr>
51
- Generated by GTK-Doc V1.21.1</div>
50
+ <hr>Generated by GTK-Doc V1.25.1</div>
52
51
  </body>
53
52
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pt01.html" title="Part I. API reference">
9
9
  <link rel="prev" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">
10
10
  <link rel="next" href="GtkSourceEncoding.html" title="GtkSourceEncoding">
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">
@@ -38,7 +38,6 @@
38
38
  </dl></div>
39
39
  </div>
40
40
  <div class="footer">
41
- <hr>
42
- Generated by GTK-Doc V1.21.1</div>
41
+ <hr>Generated by GTK-Doc V1.25.1</div>
43
42
  </body>
44
43
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pt01.html" title="Part I. API reference">
9
9
  <link rel="prev" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">
10
10
  <link rel="next" href="GtkSourceGutter.html" title="GtkSourceGutter">
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">
@@ -44,7 +44,6 @@
44
44
  </dl></div>
45
45
  </div>
46
46
  <div class="footer">
47
- <hr>
48
- Generated by GTK-Doc V1.21.1</div>
47
+ <hr>Generated by GTK-Doc V1.25.1</div>
49
48
  </body>
50
49
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pt01.html" title="Part I. API reference">
9
9
  <link rel="prev" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">
10
10
  <link rel="next" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">
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">
@@ -27,7 +27,6 @@
27
27
  </dt></dl></div>
28
28
  </div>
29
29
  <div class="footer">
30
- <hr>
31
- Generated by GTK-Doc V1.21.1</div>
30
+ <hr>Generated by GTK-Doc V1.25.1</div>
32
31
  </body>
33
32
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="pt01.html" title="Part I. API reference">
9
9
  <link rel="prev" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">
10
10
  <link rel="next" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">
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">
@@ -32,7 +32,6 @@
32
32
  </dl></div>
33
33
  </div>
34
34
  <div class="footer">
35
- <hr>
36
- Generated by GTK-Doc V1.21.1</div>
35
+ <hr>Generated by GTK-Doc V1.25.1</div>
37
36
  </body>
38
37
  </html>
@@ -7,8 +7,8 @@
7
7
  <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
8
  <link rel="up" href="pt01.html" title="Part I. API reference">
9
9
  <link rel="prev" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">
10
- <link rel="next" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">
11
- <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
10
+ <link rel="next" href="GtkSourceMap.html" title="GtkSourceMap">
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">
@@ -17,22 +17,30 @@
17
17
  <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
18
  <td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
19
19
  <td><a accesskey="p" href="GtkSourceSearchSettings.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
- <td><a accesskey="n" href="GtkSourceUndoManager.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
20
+ <td><a accesskey="n" href="GtkSourceMap.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
21
  </tr></table>
22
22
  <div class="chapter">
23
23
  <div class="titlepage"><div><div><h2 class="title">
24
24
  <a name="id-1.2.9"></a>Others</h2></div></div></div>
25
25
  <div class="toc"><dl class="toc">
26
26
  <dt>
27
+ <span class="refentrytitle"><a href="GtkSourceMap.html">GtkSourceMap</a></span><span class="refpurpose"> — Widget that displays a map for a specific <span class="type">GtkSourceView</span></span>
28
+ </dt>
29
+ <dt>
30
+ <span class="refentrytitle"><a href="GtkSourceTag.html">GtkSourceTag</a></span><span class="refpurpose"> — A tag that can be applied to text in a GtkSourceBuffer</span>
31
+ </dt>
32
+ <dt>
27
33
  <span class="refentrytitle"><a href="GtkSourceUndoManager.html">GtkSourceUndoManager</a></span><span class="refpurpose"> — Undo manager interface for GtkSourceView</span>
28
34
  </dt>
29
35
  <dt>
30
36
  <span class="refentrytitle"><a href="gtksourceview-3.0-GtkSourceUtils.html">GtkSourceUtils</a></span><span class="refpurpose"> — Utilities functions</span>
31
37
  </dt>
38
+ <dt>
39
+ <span class="refentrytitle"><a href="gtksourceview-3.0-Version-Information.html">Version Information</a></span><span class="refpurpose"> — Macros and functions to check the GtkSourceView version</span>
40
+ </dt>
32
41
  </dl></div>
33
42
  </div>
34
43
  <div class="footer">
35
- <hr>
36
- Generated by GTK-Doc V1.21.1</div>
44
+ <hr>Generated by GTK-Doc V1.25.1</div>
37
45
  </body>
38
46
  </html>
@@ -2,13 +2,13 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Part II. Syntax highlighting reference: GtkSourceView 3 Reference Manual</title>
5
+ <title>Syntax highlighting reference: GtkSourceView 3 Reference Manual</title>
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
7
  <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
8
  <link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
9
- <link rel="prev" href="gtksourceview-3.0-GtkSourceUtils.html" title="GtkSourceUtils">
9
+ <link rel="prev" href="gtksourceview-3.0-Version-Information.html" title="Version Information">
10
10
  <link rel="next" href="lang-tutorial.html" title="Language Definition v2.0 Tutorial">
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">
@@ -16,15 +16,13 @@
16
16
  <td width="100%" align="left" class="shortcuts"></td>
17
17
  <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
18
  <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
- <td><a accesskey="p" href="gtksourceview-3.0-GtkSourceUtils.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
19
+ <td><a accesskey="p" href="gtksourceview-3.0-Version-Information.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
20
  <td><a accesskey="n" href="lang-tutorial.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
21
  </tr></table>
22
- <div class="part">
22
+ <div class="chapter">
23
23
  <div class="titlepage"><div><div><h1 class="title">
24
- <a name="id-1.3"></a>Part II. Syntax highlighting reference</h1></div></div></div>
25
- <div class="toc">
26
- <p><b>Table of Contents</b></p>
27
- <dl class="toc">
24
+ <a name="id-1.3"></a>Syntax highlighting reference</h1></div></div></div>
25
+ <div class="toc"><dl class="toc">
28
26
  <dt>
29
27
  <span class="refentrytitle"><a href="lang-tutorial.html">Language Definition v2.0 Tutorial</a></span><span class="refpurpose"> —
30
28
  Guide to the GtkSourceView language definition file format
@@ -40,11 +38,9 @@ Reference to the GtkSourceView language definition file format
40
38
  Reference to the GtkSourceView style scheme definition file format
41
39
  </span>
42
40
  </dt>
43
- </dl>
44
- </div>
41
+ </dl></div>
45
42
  </div>
46
43
  <div class="footer">
47
- <hr>
48
- Generated by GTK-Doc V1.21.1</div>
44
+ <hr>Generated by GTK-Doc V1.25.1</div>
49
45
  </body>
50
46
  </html>