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="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">
10
10
  <link rel="next" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">
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">
@@ -61,85 +61,101 @@
61
61
  <tbody>
62
62
  <tr>
63
63
  <td class="property_type">
64
- <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> *</td>
64
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
65
65
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--background" title="The “background” property">background</a></td>
66
66
  <td class="property_flags">Read / Write / Construct Only</td>
67
67
  </tr>
68
68
  <tr>
69
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
69
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
70
70
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--background-set" title="The “background-set” property">background-set</a></td>
71
71
  <td class="property_flags">Read / Write / Construct Only</td>
72
72
  </tr>
73
73
  <tr>
74
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
74
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
75
75
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--bold" title="The “bold” property">bold</a></td>
76
76
  <td class="property_flags">Read / Write / Construct Only</td>
77
77
  </tr>
78
78
  <tr>
79
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
79
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
80
80
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--bold-set" title="The “bold-set” property">bold-set</a></td>
81
81
  <td class="property_flags">Read / Write / Construct Only</td>
82
82
  </tr>
83
83
  <tr>
84
84
  <td class="property_type">
85
- <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> *</td>
85
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
86
86
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--foreground" title="The “foreground” property">foreground</a></td>
87
87
  <td class="property_flags">Read / Write / Construct Only</td>
88
88
  </tr>
89
89
  <tr>
90
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
90
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
91
91
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--foreground-set" title="The “foreground-set” property">foreground-set</a></td>
92
92
  <td class="property_flags">Read / Write / Construct Only</td>
93
93
  </tr>
94
94
  <tr>
95
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
95
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
96
96
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--italic" title="The “italic” property">italic</a></td>
97
97
  <td class="property_flags">Read / Write / Construct Only</td>
98
98
  </tr>
99
99
  <tr>
100
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
100
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
101
101
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--italic-set" title="The “italic-set” property">italic-set</a></td>
102
102
  <td class="property_flags">Read / Write / Construct Only</td>
103
103
  </tr>
104
104
  <tr>
105
105
  <td class="property_type">
106
- <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> *</td>
106
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
107
107
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--line-background" title="The “line-background” property">line-background</a></td>
108
108
  <td class="property_flags">Read / Write / Construct Only</td>
109
109
  </tr>
110
110
  <tr>
111
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
111
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
112
112
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--line-background-set" title="The “line-background-set” property">line-background-set</a></td>
113
113
  <td class="property_flags">Read / Write / Construct Only</td>
114
114
  </tr>
115
115
  <tr>
116
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/pangopango-Text-Attributes.html#PangoUnderline"><span class="type">PangoUnderline</span></a></td>
117
+ <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--pango-underline" title="The “pango-underline” property">pango-underline</a></td>
118
+ <td class="property_flags">Read / Write / Construct Only</td>
119
+ </tr>
120
+ <tr>
116
121
  <td class="property_type">
117
- <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> *</td>
122
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
118
123
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--scale" title="The “scale” property">scale</a></td>
119
124
  <td class="property_flags">Read / Write / Construct Only</td>
120
125
  </tr>
121
126
  <tr>
122
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
127
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
123
128
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--scale-set" title="The “scale-set” property">scale-set</a></td>
124
129
  <td class="property_flags">Read / Write / Construct Only</td>
125
130
  </tr>
126
131
  <tr>
127
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
132
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
128
133
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--strikethrough" title="The “strikethrough” property">strikethrough</a></td>
129
134
  <td class="property_flags">Read / Write / Construct Only</td>
130
135
  </tr>
131
136
  <tr>
132
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
137
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
133
138
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--strikethrough-set" title="The “strikethrough-set” property">strikethrough-set</a></td>
134
139
  <td class="property_flags">Read / Write / Construct Only</td>
135
140
  </tr>
136
141
  <tr>
137
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
142
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
138
143
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--underline" title="The “underline” property">underline</a></td>
139
144
  <td class="property_flags">Read / Write / Construct Only</td>
140
145
  </tr>
141
146
  <tr>
142
- <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
147
+ <td class="property_type">
148
+ <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
149
+ <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--underline-color" title="The “underline-color” property">underline-color</a></td>
150
+ <td class="property_flags">Read / Write / Construct Only</td>
151
+ </tr>
152
+ <tr>
153
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
154
+ <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--underline-color-set" title="The “underline-color-set” property">underline-color-set</a></td>
155
+ <td class="property_flags">Read / Write / Construct Only</td>
156
+ </tr>
157
+ <tr>
158
+ <td class="property_type"><a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
143
159
  <td class="property_name"><a class="link" href="GtkSourceStyle.html#GtkSourceStyle--underline-set" title="The “underline-set” property">underline-set</a></td>
144
160
  <td class="property_flags">Read / Write / Construct Only</td>
145
161
  </tr>
@@ -161,7 +177,7 @@
161
177
  </div>
162
178
  <div class="refsect1">
163
179
  <a name="GtkSourceStyle.object-hierarchy"></a><h2>Object Hierarchy</h2>
164
- <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>
180
+ <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
165
181
  <span class="lineart">╰──</span> GtkSourceStyle
166
182
  </pre>
167
183
  </div>
@@ -185,7 +201,7 @@ gtk_source_style_copy (<em class="parameter"><code>const <a class="link" href="G
185
201
  , that is a new <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle"><span class="type">GtkSourceStyle</span></a> instance which
186
202
  has the same attributes set.</p>
187
203
  <div class="refsect3">
188
- <a name="id-1.2.3.4.9.2.5"></a><h4>Parameters</h4>
204
+ <a name="gtk-source-style-copy.parameters"></a><h4>Parameters</h4>
189
205
  <div class="informaltable"><table width="100%" border="0">
190
206
  <colgroup>
191
207
  <col width="150px" class="parameters_name">
@@ -200,13 +216,13 @@ has the same attributes set.</p>
200
216
  </table></div>
201
217
  </div>
202
218
  <div class="refsect3">
203
- <a name="id-1.2.3.4.9.2.6"></a><h4>Returns</h4>
219
+ <a name="gtk-source-style-copy.returns"></a><h4>Returns</h4>
204
220
  <p> copy of <em class="parameter"><code>style</code></em>
205
- , call <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>
221
+ , call <a href="/usr/share/gtk-doc/html/gobjectgobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>
206
222
  when you are done with it. </p>
207
223
  <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
208
224
  </div>
209
- <p class="since">Since 2.0</p>
225
+ <p class="since">Since: <a class="link" href="api-index-2-0.html#api-index-2.0">2.0</a></p>
210
226
  </div>
211
227
  </div>
212
228
  <div class="refsect1">
@@ -220,7 +236,7 @@ when you are done with it. </p>
220
236
  <a name="GtkSourceStyle.property-details"></a><h2>Property Details</h2>
221
237
  <div class="refsect2">
222
238
  <a name="GtkSourceStyle--background"></a><h3>The <code class="literal">“background”</code> property</h3>
223
- <pre class="programlisting"> “background” <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> *</pre>
239
+ <pre class="programlisting"> “background” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
224
240
  <p>Background color.</p>
225
241
  <p>Flags: Read / Write / Construct Only</p>
226
242
  <p>Default value: NULL</p>
@@ -228,7 +244,7 @@ when you are done with it. </p>
228
244
  <hr>
229
245
  <div class="refsect2">
230
246
  <a name="GtkSourceStyle--background-set"></a><h3>The <code class="literal">“background-set”</code> property</h3>
231
- <pre class="programlisting"> “background-set” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
247
+ <pre class="programlisting"> “background-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
232
248
  <p>Whether background color is set.</p>
233
249
  <p>Flags: Read / Write / Construct Only</p>
234
250
  <p>Default value: FALSE</p>
@@ -236,7 +252,7 @@ when you are done with it. </p>
236
252
  <hr>
237
253
  <div class="refsect2">
238
254
  <a name="GtkSourceStyle--bold"></a><h3>The <code class="literal">“bold”</code> property</h3>
239
- <pre class="programlisting"> “bold” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
255
+ <pre class="programlisting"> “bold” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
240
256
  <p>Bold.</p>
241
257
  <p>Flags: Read / Write / Construct Only</p>
242
258
  <p>Default value: FALSE</p>
@@ -244,7 +260,7 @@ when you are done with it. </p>
244
260
  <hr>
245
261
  <div class="refsect2">
246
262
  <a name="GtkSourceStyle--bold-set"></a><h3>The <code class="literal">“bold-set”</code> property</h3>
247
- <pre class="programlisting"> “bold-set” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
263
+ <pre class="programlisting"> “bold-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
248
264
  <p>Whether bold attribute is set.</p>
249
265
  <p>Flags: Read / Write / Construct Only</p>
250
266
  <p>Default value: FALSE</p>
@@ -252,7 +268,7 @@ when you are done with it. </p>
252
268
  <hr>
253
269
  <div class="refsect2">
254
270
  <a name="GtkSourceStyle--foreground"></a><h3>The <code class="literal">“foreground”</code> property</h3>
255
- <pre class="programlisting"> “foreground” <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> *</pre>
271
+ <pre class="programlisting"> “foreground” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
256
272
  <p>Foreground color.</p>
257
273
  <p>Flags: Read / Write / Construct Only</p>
258
274
  <p>Default value: NULL</p>
@@ -260,7 +276,7 @@ when you are done with it. </p>
260
276
  <hr>
261
277
  <div class="refsect2">
262
278
  <a name="GtkSourceStyle--foreground-set"></a><h3>The <code class="literal">“foreground-set”</code> property</h3>
263
- <pre class="programlisting"> “foreground-set” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
279
+ <pre class="programlisting"> “foreground-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
264
280
  <p>Whether foreground color is set.</p>
265
281
  <p>Flags: Read / Write / Construct Only</p>
266
282
  <p>Default value: FALSE</p>
@@ -268,7 +284,7 @@ when you are done with it. </p>
268
284
  <hr>
269
285
  <div class="refsect2">
270
286
  <a name="GtkSourceStyle--italic"></a><h3>The <code class="literal">“italic”</code> property</h3>
271
- <pre class="programlisting"> “italic” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
287
+ <pre class="programlisting"> “italic” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
272
288
  <p>Italic.</p>
273
289
  <p>Flags: Read / Write / Construct Only</p>
274
290
  <p>Default value: FALSE</p>
@@ -276,7 +292,7 @@ when you are done with it. </p>
276
292
  <hr>
277
293
  <div class="refsect2">
278
294
  <a name="GtkSourceStyle--italic-set"></a><h3>The <code class="literal">“italic-set”</code> property</h3>
279
- <pre class="programlisting"> “italic-set” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
295
+ <pre class="programlisting"> “italic-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
280
296
  <p>Whether italic attribute is set.</p>
281
297
  <p>Flags: Read / Write / Construct Only</p>
282
298
  <p>Default value: FALSE</p>
@@ -284,7 +300,7 @@ when you are done with it. </p>
284
300
  <hr>
285
301
  <div class="refsect2">
286
302
  <a name="GtkSourceStyle--line-background"></a><h3>The <code class="literal">“line-background”</code> property</h3>
287
- <pre class="programlisting"> “line-background” <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> *</pre>
303
+ <pre class="programlisting"> “line-background” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
288
304
  <p>Line background color.</p>
289
305
  <p>Flags: Read / Write / Construct Only</p>
290
306
  <p>Default value: NULL</p>
@@ -292,15 +308,23 @@ when you are done with it. </p>
292
308
  <hr>
293
309
  <div class="refsect2">
294
310
  <a name="GtkSourceStyle--line-background-set"></a><h3>The <code class="literal">“line-background-set”</code> property</h3>
295
- <pre class="programlisting"> “line-background-set” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
311
+ <pre class="programlisting"> “line-background-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
296
312
  <p>Whether line background color is set.</p>
297
313
  <p>Flags: Read / Write / Construct Only</p>
298
314
  <p>Default value: FALSE</p>
299
315
  </div>
300
316
  <hr>
301
317
  <div class="refsect2">
318
+ <a name="GtkSourceStyle--pango-underline"></a><h3>The <code class="literal">“pango-underline”</code> property</h3>
319
+ <pre class="programlisting"> “pango-underline” <a href="/usr/share/gtk-doc/html/pangopango-Text-Attributes.html#PangoUnderline"><span class="type">PangoUnderline</span></a></pre>
320
+ <p>Pango Underline.</p>
321
+ <p>Flags: Read / Write / Construct Only</p>
322
+ <p>Default value: PANGO_UNDERLINE_NONE</p>
323
+ </div>
324
+ <hr>
325
+ <div class="refsect2">
302
326
  <a name="GtkSourceStyle--scale"></a><h3>The <code class="literal">“scale”</code> property</h3>
303
- <pre class="programlisting"> “scale” <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> *</pre>
327
+ <pre class="programlisting"> “scale” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
304
328
  <p>Text scale factor.</p>
305
329
  <p>Flags: Read / Write / Construct Only</p>
306
330
  <p>Default value: NULL</p>
@@ -308,7 +332,7 @@ when you are done with it. </p>
308
332
  <hr>
309
333
  <div class="refsect2">
310
334
  <a name="GtkSourceStyle--scale-set"></a><h3>The <code class="literal">“scale-set”</code> property</h3>
311
- <pre class="programlisting"> “scale-set” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
335
+ <pre class="programlisting"> “scale-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
312
336
  <p>Whether scale attribute is set.</p>
313
337
  <p>Flags: Read / Write / Construct Only</p>
314
338
  <p>Default value: FALSE</p>
@@ -316,7 +340,7 @@ when you are done with it. </p>
316
340
  <hr>
317
341
  <div class="refsect2">
318
342
  <a name="GtkSourceStyle--strikethrough"></a><h3>The <code class="literal">“strikethrough”</code> property</h3>
319
- <pre class="programlisting"> “strikethrough” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
343
+ <pre class="programlisting"> “strikethrough” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
320
344
  <p>Strikethrough.</p>
321
345
  <p>Flags: Read / Write / Construct Only</p>
322
346
  <p>Default value: FALSE</p>
@@ -324,7 +348,7 @@ when you are done with it. </p>
324
348
  <hr>
325
349
  <div class="refsect2">
326
350
  <a name="GtkSourceStyle--strikethrough-set"></a><h3>The <code class="literal">“strikethrough-set”</code> property</h3>
327
- <pre class="programlisting"> “strikethrough-set” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
351
+ <pre class="programlisting"> “strikethrough-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
328
352
  <p>Whether strikethrough attribute is set.</p>
329
353
  <p>Flags: Read / Write / Construct Only</p>
330
354
  <p>Default value: FALSE</p>
@@ -332,15 +356,35 @@ when you are done with it. </p>
332
356
  <hr>
333
357
  <div class="refsect2">
334
358
  <a name="GtkSourceStyle--underline"></a><h3>The <code class="literal">“underline”</code> property</h3>
335
- <pre class="programlisting"> “underline” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
359
+ <pre class="programlisting"> “underline” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
336
360
  <p>Underline.</p>
361
+ <div class="warning">
362
+ <p><code class="literal">GtkSourceStyle:underline</code> has been deprecated since version 3.18 and should not be used in newly-written code.</p>
363
+ <p>Use pango-underline.</p>
364
+ </div>
365
+ <p>Flags: Read / Write / Construct Only</p>
366
+ <p>Default value: FALSE</p>
367
+ </div>
368
+ <hr>
369
+ <div class="refsect2">
370
+ <a name="GtkSourceStyle--underline-color"></a><h3>The <code class="literal">“underline-color”</code> property</h3>
371
+ <pre class="programlisting"> “underline-color” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
372
+ <p>Underline color.</p>
373
+ <p>Flags: Read / Write / Construct Only</p>
374
+ <p>Default value: NULL</p>
375
+ </div>
376
+ <hr>
377
+ <div class="refsect2">
378
+ <a name="GtkSourceStyle--underline-color-set"></a><h3>The <code class="literal">“underline-color-set”</code> property</h3>
379
+ <pre class="programlisting"> “underline-color-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
380
+ <p>Whether underline color attribute is set.</p>
337
381
  <p>Flags: Read / Write / Construct Only</p>
338
382
  <p>Default value: FALSE</p>
339
383
  </div>
340
384
  <hr>
341
385
  <div class="refsect2">
342
386
  <a name="GtkSourceStyle--underline-set"></a><h3>The <code class="literal">“underline-set”</code> property</h3>
343
- <pre class="programlisting"> “underline-set” <a href="/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
387
+ <pre class="programlisting"> “underline-set” <a href="/usr/share/gtk-doc/html/glibglib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
344
388
  <p>Whether underline attribute is set.</p>
345
389
  <p>Flags: Read / Write / Construct Only</p>
346
390
  <p>Default value: FALSE</p>
@@ -352,7 +396,6 @@ when you are done with it. </p>
352
396
  </div>
353
397
  </div>
354
398
  <div class="footer">
355
- <hr>
356
- Generated by GTK-Doc V1.21.1</div>
399
+ <hr>Generated by GTK-Doc V1.25.1</div>
357
400
  </body>
358
401
  </html>