gtksourceview3 2.2.4-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (334) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +59 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +67 -0
  5. data/ext/gtksourceview3/gtksourceview3.def +2 -0
  6. data/ext/gtksourceview3/rbgtksource.c +53 -0
  7. data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
  8. data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
  9. data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
  10. data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
  11. data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +40 -0
  12. data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
  13. data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
  14. data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
  15. data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
  16. data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
  17. data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
  18. data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
  19. data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
  20. data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
  21. data/ext/gtksourceview3/rbgtksourceview.c +94 -0
  22. data/ext/gtksourceview3/rbgtksourceview3conversions.h +50 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +53 -0
  24. data/extconf.rb +49 -0
  25. data/lib/2.0/gtksourceview3.so +0 -0
  26. data/lib/2.1/gtksourceview3.so +0 -0
  27. data/lib/2.2/gtksourceview3.so +0 -0
  28. data/lib/gtksourceview3.rb +20 -0
  29. data/lib/gtksourceview3/deprecated.rb +47 -0
  30. data/sample/sourcelanguagemanager.rb +21 -0
  31. data/sample/test.rb +32 -0
  32. data/test/run-test.rb +44 -0
  33. data/test/test_mark_attributes.rb +26 -0
  34. data/test/test_source_gutter_renderer.rb +33 -0
  35. data/test/test_source_language_manager.rb +46 -0
  36. data/test/test_source_view.rb +57 -0
  37. data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +65 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +54 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +213 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +142 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +95 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +78 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +70 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +97 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +137 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +54 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +115 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +122 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +147 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +229 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +87 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +85 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +84 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +100 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +175 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +133 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +85 -0
  62. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +45 -0
  63. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +109 -0
  64. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +86 -0
  65. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +101 -0
  66. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +75 -0
  67. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +34 -0
  68. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +88 -0
  69. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +213 -0
  70. data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
  71. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  72. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  73. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  74. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  75. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  76. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  77. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  78. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  79. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  80. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  81. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  82. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  83. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  84. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  85. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  86. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  87. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  88. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  89. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  90. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  91. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  92. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  93. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  94. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  95. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  96. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  97. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  98. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  99. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  100. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  101. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  102. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  103. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  104. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  105. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  106. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  107. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  108. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  109. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  110. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  111. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  112. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  113. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  114. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  154. data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +11360 -0
  155. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +2143 -0
  156. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +1129 -0
  157. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +397 -0
  158. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +348 -0
  159. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +367 -0
  160. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +572 -0
  161. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +750 -0
  162. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +345 -0
  163. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +366 -0
  164. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +563 -0
  165. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +769 -0
  166. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +962 -0
  167. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +490 -0
  168. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +1700 -0
  169. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +468 -0
  170. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +228 -0
  171. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +584 -0
  172. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +476 -0
  173. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +310 -0
  174. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +897 -0
  175. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +2149 -0
  176. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +1116 -0
  177. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +606 -0
  178. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +358 -0
  179. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +398 -0
  180. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +463 -0
  181. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +462 -0
  182. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1990 -0
  183. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +81 -0
  184. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +43 -0
  185. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +195 -0
  186. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +39 -0
  187. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +299 -0
  188. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +35 -0
  189. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +95 -0
  190. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +2187 -0
  191. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +119 -0
  192. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +47 -0
  193. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +154 -0
  194. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +601 -0
  195. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  196. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +146 -0
  197. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +882 -0
  198. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +873 -0
  199. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +654 -0
  200. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left-insensitive.png +0 -0
  201. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  202. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +71 -0
  203. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right-insensitive.png +0 -0
  204. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  205. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +283 -0
  206. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +476 -0
  207. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up-insensitive.png +0 -0
  208. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  209. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +2199 -0
  210. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  211. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  212. data/vendor/local/share/gtksourceview-3.0/language-specs/ansforth94.lang +729 -0
  213. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  214. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +330 -0
  215. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  216. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  217. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  218. data/vendor/local/share/gtksourceview-3.0/language-specs/bluespec.lang +188 -0
  219. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  220. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  221. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  222. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +93 -0
  223. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  224. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  225. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +647 -0
  226. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +120 -0
  227. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  228. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +542 -0
  229. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  230. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +318 -0
  231. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +262 -0
  232. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  233. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  234. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  235. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  236. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  237. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  238. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  239. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  240. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  241. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +113 -0
  242. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  243. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +591 -0
  244. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  245. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  246. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  247. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  248. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  249. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  250. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  251. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  252. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  253. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  254. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +281 -0
  255. data/vendor/local/share/gtksourceview-3.0/language-specs/idl-exelis.lang +620 -0
  256. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  257. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  258. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  259. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  260. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  261. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +339 -0
  262. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  263. data/vendor/local/share/gtksourceview-3.0/language-specs/julia.lang +378 -0
  264. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  265. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  266. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  267. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +600 -0
  268. data/vendor/local/share/gtksourceview-3.0/language-specs/lex.lang +209 -0
  269. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  270. data/vendor/local/share/gtksourceview-3.0/language-specs/llvm.lang +315 -0
  271. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  272. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  273. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  274. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  275. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  276. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  277. data/vendor/local/share/gtksourceview-3.0/language-specs/mediawiki.lang +327 -0
  278. data/vendor/local/share/gtksourceview-3.0/language-specs/modelica.lang +262 -0
  279. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  280. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  281. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  282. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  283. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  284. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  285. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  286. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  287. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  288. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  289. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  290. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  291. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  292. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1045 -0
  293. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +363 -0
  294. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  295. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  296. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  297. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +101 -0
  298. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  299. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +472 -0
  300. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  301. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +212 -0
  302. data/vendor/local/share/gtksourceview-3.0/language-specs/rst.lang +142 -0
  303. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +750 -0
  304. data/vendor/local/share/gtksourceview-3.0/language-specs/scala.lang +384 -0
  305. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  306. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  307. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  308. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  309. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  310. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  311. data/vendor/local/share/gtksourceview-3.0/language-specs/sweave.lang +67 -0
  312. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  313. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  314. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  315. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  316. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  317. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  318. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +476 -0
  319. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  320. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  321. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  322. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  323. data/vendor/local/share/gtksourceview-3.0/language-specs/yaml.lang +214 -0
  324. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +121 -0
  325. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +148 -0
  326. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +171 -0
  327. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +129 -0
  328. data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +101 -0
  329. data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +101 -0
  330. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +142 -0
  331. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +130 -0
  332. data/vendor/local/share/license/gtksourceview/AUTHORS +13 -0
  333. data/vendor/local/share/license/gtksourceview/COPYING +504 -0
  334. metadata +389 -0
@@ -0,0 +1,119 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkSourceView 3 Reference Manual: API reference</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
9
+ <link rel="prev" href="index.html" title="GtkSourceView 3 Reference Manual">
10
+ <link rel="next" href="GtkSourceBuffer.html" title="GtkSourceBuffer">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="index.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="GtkSourceBuffer.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="chapter">
23
+ <div class="titlepage"><div><div><h1 class="title">
24
+ <a name="id-1.2"></a>API reference</h1></div></div></div>
25
+ <div class="toc"><dl class="toc">
26
+ <dt>
27
+ <span class="refentrytitle"><a href="GtkSourceBuffer.html">GtkSourceBuffer</a></span><span class="refpurpose"> — Buffer object for GtkSourceView</span>
28
+ </dt>
29
+ <dt>
30
+ <span class="refentrytitle"><a href="GtkSourceCompletion.html">GtkSourceCompletion</a></span><span class="refpurpose"> — Main Completion Object</span>
31
+ </dt>
32
+ <dt>
33
+ <span class="refentrytitle"><a href="GtkSourceCompletionContext.html">GtkSourceCompletionContext</a></span><span class="refpurpose"> — The context of a completion</span>
34
+ </dt>
35
+ <dt>
36
+ <span class="refentrytitle"><a href="GtkSourceCompletionInfo.html">GtkSourceCompletionInfo</a></span><span class="refpurpose"> — Calltips object</span>
37
+ </dt>
38
+ <dt>
39
+ <span class="refentrytitle"><a href="GtkSourceCompletionItem.html">GtkSourceCompletionItem</a></span><span class="refpurpose"> — Simple implementation of GtkSourceCompletionProposal</span>
40
+ </dt>
41
+ <dt>
42
+ <span class="refentrytitle"><a href="GtkSourceCompletionProposal.html">GtkSourceCompletionProposal</a></span><span class="refpurpose"> — Completion proposal interface</span>
43
+ </dt>
44
+ <dt>
45
+ <span class="refentrytitle"><a href="GtkSourceCompletionProvider.html">GtkSourceCompletionProvider</a></span><span class="refpurpose"> — Completion provider interface</span>
46
+ </dt>
47
+ <dt>
48
+ <span class="refentrytitle"><a href="GtkSourceCompletionWords.html">GtkSourceCompletionWords</a></span><span class="refpurpose"> — A GtkSourceCompletionProvider for the completion of words</span>
49
+ </dt>
50
+ <dt>
51
+ <span class="refentrytitle"><a href="GtkSourceEncoding.html">GtkSourceEncoding</a></span><span class="refpurpose"> — Character encoding</span>
52
+ </dt>
53
+ <dt>
54
+ <span class="refentrytitle"><a href="GtkSourceFile.html">GtkSourceFile</a></span><span class="refpurpose"> — On-disk representation of a GtkSourceBuffer</span>
55
+ </dt>
56
+ <dt>
57
+ <span class="refentrytitle"><a href="GtkSourceFileLoader.html">GtkSourceFileLoader</a></span><span class="refpurpose"> — Load a file into a GtkSourceBuffer</span>
58
+ </dt>
59
+ <dt>
60
+ <span class="refentrytitle"><a href="GtkSourceFileSaver.html">GtkSourceFileSaver</a></span><span class="refpurpose"> — Save a GtkSourceBuffer into a file</span>
61
+ </dt>
62
+ <dt>
63
+ <span class="refentrytitle"><a href="GtkSourceGutter.html">GtkSourceGutter</a></span><span class="refpurpose"> — Gutter object for GtkSourceView</span>
64
+ </dt>
65
+ <dt>
66
+ <span class="refentrytitle"><a href="GtkSourceGutterRenderer.html">GtkSourceGutterRenderer</a></span><span class="refpurpose"> — Gutter cell renderer</span>
67
+ </dt>
68
+ <dt>
69
+ <span class="refentrytitle"><a href="GtkSourceGutterRendererPixbuf.html">GtkSourceGutterRendererPixbuf</a></span><span class="refpurpose"> — Renders a pixbuf in the gutter</span>
70
+ </dt>
71
+ <dt>
72
+ <span class="refentrytitle"><a href="GtkSourceGutterRendererText.html">GtkSourceGutterRendererText</a></span><span class="refpurpose"> — Renders text in the gutter</span>
73
+ </dt>
74
+ <dt>
75
+ <span class="refentrytitle"><a href="GtkSourceLanguage.html">GtkSourceLanguage</a></span><span class="refpurpose"> — Object representing a syntax highlighted language</span>
76
+ </dt>
77
+ <dt>
78
+ <span class="refentrytitle"><a href="GtkSourceLanguageManager.html">GtkSourceLanguageManager</a></span><span class="refpurpose"> — Object which provides access to GtkSourceLanguages</span>
79
+ </dt>
80
+ <dt>
81
+ <span class="refentrytitle"><a href="GtkSourceMark.html">GtkSourceMark</a></span><span class="refpurpose"> — Mark object for GtkSourceBuffer</span>
82
+ </dt>
83
+ <dt>
84
+ <span class="refentrytitle"><a href="GtkSourceMarkAttributes.html">GtkSourceMarkAttributes</a></span><span class="refpurpose"> — The source mark attributes object</span>
85
+ </dt>
86
+ <dt>
87
+ <span class="refentrytitle"><a href="GtkSourcePrintCompositor.html">GtkSourcePrintCompositor</a></span><span class="refpurpose"> — Compose a GtkSourceBuffer for printing</span>
88
+ </dt>
89
+ <dt>
90
+ <span class="refentrytitle"><a href="GtkSourceSearchContext.html">GtkSourceSearchContext</a></span><span class="refpurpose"> — Search context</span>
91
+ </dt>
92
+ <dt>
93
+ <span class="refentrytitle"><a href="GtkSourceSearchSettings.html">GtkSourceSearchSettings</a></span><span class="refpurpose"> — Search settings</span>
94
+ </dt>
95
+ <dt>
96
+ <span class="refentrytitle"><a href="GtkSourceStyle.html">GtkSourceStyle</a></span><span class="refpurpose"> — Object representyng a style</span>
97
+ </dt>
98
+ <dt>
99
+ <span class="refentrytitle"><a href="GtkSourceStyleScheme.html">GtkSourceStyleScheme</a></span><span class="refpurpose"> — Object controlling the appearance of GtkSourceView</span>
100
+ </dt>
101
+ <dt>
102
+ <span class="refentrytitle"><a href="GtkSourceStyleSchemeManager.html">GtkSourceStyleSchemeManager</a></span><span class="refpurpose"> — Object which provides access to GtkSourceStyleSchemes</span>
103
+ </dt>
104
+ <dt>
105
+ <span class="refentrytitle"><a href="GtkSourceUndoManager.html">GtkSourceUndoManager</a></span><span class="refpurpose"> — Undo manager interface for GtkSourceView</span>
106
+ </dt>
107
+ <dt>
108
+ <span class="refentrytitle"><a href="gtksourceview-3.0-GtkSourceUtils.html">GtkSourceUtils</a></span><span class="refpurpose"> — Utilities functions</span>
109
+ </dt>
110
+ <dt>
111
+ <span class="refentrytitle"><a href="GtkSourceView.html">GtkSourceView</a></span><span class="refpurpose"> — The view object</span>
112
+ </dt>
113
+ </dl></div>
114
+ </div>
115
+ <div class="footer">
116
+ <hr>
117
+ Generated by GTK-Doc V1.21.1</div>
118
+ </body>
119
+ </html>
@@ -0,0 +1,47 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkSourceView 3 Reference Manual: Syntax highlighting reference</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
9
+ <link rel="prev" href="GtkSourceView.html" title="GtkSourceView">
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)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="GtkSourceView.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="lang-tutorial.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="chapter">
23
+ <div class="titlepage"><div><div><h1 class="title">
24
+ <a name="id-1.3"></a>Syntax highlighting reference</h1></div></div></div>
25
+ <div class="toc"><dl class="toc">
26
+ <dt>
27
+ <span class="refentrytitle"><a href="lang-tutorial.html">Language Definition v2.0 Tutorial</a></span><span class="refpurpose"> —
28
+ Guide to the GtkSourceView language definition file format
29
+ </span>
30
+ </dt>
31
+ <dt>
32
+ <span class="refentrytitle"><a href="lang-reference.html">Language Definition v2.0 Reference</a></span><span class="refpurpose"> —
33
+ Reference to the GtkSourceView language definition file format
34
+ </span>
35
+ </dt>
36
+ <dt>
37
+ <span class="refentrytitle"><a href="style-reference.html">Style Scheme Definition Reference</a></span><span class="refpurpose"> —
38
+ Reference to the GtkSourceView style scheme definition file format
39
+ </span>
40
+ </dt>
41
+ </dl></div>
42
+ </div>
43
+ <div class="footer">
44
+ <hr>
45
+ Generated by GTK-Doc V1.21.1</div>
46
+ </body>
47
+ </html>
@@ -0,0 +1,154 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkSourceView 3 Reference Manual: GtkSourceUtils</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="ch01.html" title="API reference">
9
+ <link rel="prev" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">
10
+ <link rel="next" href="GtkSourceView.html" title="GtkSourceView">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#gtksourceview-3.0-GtkSourceUtils.description" class="shortcut">Description</a></span>
19
+ </td>
20
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21
+ <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22
+ <td><a accesskey="p" href="GtkSourceUndoManager.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23
+ <td><a accesskey="n" href="GtkSourceView.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24
+ </tr></table>
25
+ <div class="refentry">
26
+ <a name="gtksourceview-3.0-GtkSourceUtils"></a><div class="titlepage"></div>
27
+ <div class="refnamediv"><table width="100%"><tr>
28
+ <td valign="top">
29
+ <h2><span class="refentrytitle"><a name="gtksourceview-3.0-GtkSourceUtils.top_of_page"></a>GtkSourceUtils</span></h2>
30
+ <p>GtkSourceUtils — Utilities functions</p>
31
+ </td>
32
+ <td class="gallery_image" valign="top" align="right"></td>
33
+ </tr></table></div>
34
+ <div class="refsect1">
35
+ <a name="gtksourceview-3.0-GtkSourceUtils.functions"></a><h2>Functions</h2>
36
+ <div class="informaltable"><table width="100%" border="0">
37
+ <colgroup>
38
+ <col width="150px" class="functions_return">
39
+ <col class="functions_name">
40
+ </colgroup>
41
+ <tbody>
42
+ <tr>
43
+ <td class="function_type">
44
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45
+ </td>
46
+ <td class="function_name">
47
+ <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-unescape-search-text" title="gtk_source_utils_unescape_search_text ()">gtk_source_utils_unescape_search_text</a> <span class="c_punctuation">()</span>
48
+ </td>
49
+ </tr>
50
+ <tr>
51
+ <td class="function_type">
52
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
53
+ </td>
54
+ <td class="function_name">
55
+ <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-escape-search-text" title="gtk_source_utils_escape_search_text ()">gtk_source_utils_escape_search_text</a> <span class="c_punctuation">()</span>
56
+ </td>
57
+ </tr>
58
+ </tbody>
59
+ </table></div>
60
+ </div>
61
+ <div class="refsect1">
62
+ <a name="gtksourceview-3.0-GtkSourceUtils.includes"></a><h2>Includes</h2>
63
+ <pre class="synopsis">#include &lt;gtksourceview/gtksource.h&gt;
64
+ </pre>
65
+ </div>
66
+ <div class="refsect1">
67
+ <a name="gtksourceview-3.0-GtkSourceUtils.description"></a><h2>Description</h2>
68
+ <p>Utilities functions.</p>
69
+ </div>
70
+ <div class="refsect1">
71
+ <a name="gtksourceview-3.0-GtkSourceUtils.functions_details"></a><h2>Functions</h2>
72
+ <div class="refsect2">
73
+ <a name="gtk-source-utils-unescape-search-text"></a><h3>gtk_source_utils_unescape_search_text ()</h3>
74
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
75
+ gtk_source_utils_unescape_search_text (<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
76
+ <p>Use this function before <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-search-text" title="gtk_source_search_settings_set_search_text ()"><code class="function">gtk_source_search_settings_set_search_text()</code></a>, to
77
+ unescape the following sequences of characters: \n, \r, \t and \.
78
+ The purpose is to easily write those characters in a search entry.</p>
79
+ <p>Note that unescaping the search text is not needed for regular expression
80
+ searches.</p>
81
+ <p>See also: <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-escape-search-text" title="gtk_source_utils_escape_search_text ()"><code class="function">gtk_source_utils_escape_search_text()</code></a>.</p>
82
+ <div class="refsect3">
83
+ <a name="id-1.2.29.6.2.7"></a><h4>Parameters</h4>
84
+ <div class="informaltable"><table width="100%" border="0">
85
+ <colgroup>
86
+ <col width="150px" class="parameters_name">
87
+ <col class="parameters_description">
88
+ <col width="200px" class="parameters_annotations">
89
+ </colgroup>
90
+ <tbody><tr>
91
+ <td class="parameter_name"><p>text</p></td>
92
+ <td class="parameter_description"><p>the text to unescape.</p></td>
93
+ <td class="parameter_annotations"> </td>
94
+ </tr></tbody>
95
+ </table></div>
96
+ </div>
97
+ <div class="refsect3">
98
+ <a name="id-1.2.29.6.2.8"></a><h4>Returns</h4>
99
+ <p> the unescaped <em class="parameter"><code>text</code></em>
100
+ .</p>
101
+ <p></p>
102
+ </div>
103
+ <p class="since">Since 3.10</p>
104
+ </div>
105
+ <hr>
106
+ <div class="refsect2">
107
+ <a name="gtk-source-utils-escape-search-text"></a><h3>gtk_source_utils_escape_search_text ()</h3>
108
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
109
+ gtk_source_utils_escape_search_text (<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
110
+ <p>Use this function to escape the following characters: \n, \r, \t and .</p>
111
+ <p>For a regular expression search, use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html#g-regex-escape-string"><code class="function">g_regex_escape_string()</code></a> instead.</p>
112
+ <p>One possible use case is to take the <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkTextBuffer.html"><span class="type">GtkTextBuffer</span></a>'s selection and put it in a
113
+ search entry. The selection can contain tabulations, newlines, etc. So it's
114
+ better to escape those special characters to better fit in the search entry.</p>
115
+ <p>See also: <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-unescape-search-text" title="gtk_source_utils_unescape_search_text ()"><code class="function">gtk_source_utils_unescape_search_text()</code></a>.</p>
116
+ <div class="warning">
117
+ The escape and unescape functions are not reciprocal! For example,
118
+ escape (unescape (\)) = \\. So avoid cycles such as: search entry -&gt; unescape
119
+ -&gt; search settings -&gt; escape -&gt; search entry. The original search entry text
120
+ may be modified.
121
+ </div>
122
+ <div class="refsect3">
123
+ <a name="id-1.2.29.6.3.9"></a><h4>Parameters</h4>
124
+ <div class="informaltable"><table width="100%" border="0">
125
+ <colgroup>
126
+ <col width="150px" class="parameters_name">
127
+ <col class="parameters_description">
128
+ <col width="200px" class="parameters_annotations">
129
+ </colgroup>
130
+ <tbody><tr>
131
+ <td class="parameter_name"><p>text</p></td>
132
+ <td class="parameter_description"><p>the text to escape.</p></td>
133
+ <td class="parameter_annotations"> </td>
134
+ </tr></tbody>
135
+ </table></div>
136
+ </div>
137
+ <div class="refsect3">
138
+ <a name="id-1.2.29.6.3.10"></a><h4>Returns</h4>
139
+ <p> the escaped <em class="parameter"><code>text</code></em>
140
+ .</p>
141
+ <p></p>
142
+ </div>
143
+ <p class="since">Since 3.10</p>
144
+ </div>
145
+ </div>
146
+ <div class="refsect1">
147
+ <a name="gtksourceview-3.0-GtkSourceUtils.other_details"></a><h2>Types and Values</h2>
148
+ </div>
149
+ </div>
150
+ <div class="footer">
151
+ <hr>
152
+ Generated by GTK-Doc V1.21.1</div>
153
+ </body>
154
+ </html>
@@ -0,0 +1,601 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
3
+ <book xmlns="http://www.devhelp.net/book" title="GtkSourceView 3 Reference Manual" link="index.html" author="" name="gtksourceview-3.0" version="2" language="c">
4
+ <chapters>
5
+ <sub name="API reference" link="ch01.html">
6
+ <sub name="GtkSourceBuffer" link="GtkSourceBuffer.html"/>
7
+ <sub name="GtkSourceCompletion" link="GtkSourceCompletion.html"/>
8
+ <sub name="GtkSourceCompletionContext" link="GtkSourceCompletionContext.html"/>
9
+ <sub name="GtkSourceCompletionInfo" link="GtkSourceCompletionInfo.html"/>
10
+ <sub name="GtkSourceCompletionItem" link="GtkSourceCompletionItem.html"/>
11
+ <sub name="GtkSourceCompletionProposal" link="GtkSourceCompletionProposal.html"/>
12
+ <sub name="GtkSourceCompletionProvider" link="GtkSourceCompletionProvider.html"/>
13
+ <sub name="GtkSourceCompletionWords" link="GtkSourceCompletionWords.html"/>
14
+ <sub name="GtkSourceEncoding" link="GtkSourceEncoding.html"/>
15
+ <sub name="GtkSourceFile" link="GtkSourceFile.html"/>
16
+ <sub name="GtkSourceFileLoader" link="GtkSourceFileLoader.html"/>
17
+ <sub name="GtkSourceFileSaver" link="GtkSourceFileSaver.html"/>
18
+ <sub name="GtkSourceGutter" link="GtkSourceGutter.html"/>
19
+ <sub name="GtkSourceGutterRenderer" link="GtkSourceGutterRenderer.html"/>
20
+ <sub name="GtkSourceGutterRendererPixbuf" link="GtkSourceGutterRendererPixbuf.html"/>
21
+ <sub name="GtkSourceGutterRendererText" link="GtkSourceGutterRendererText.html"/>
22
+ <sub name="GtkSourceLanguage" link="GtkSourceLanguage.html"/>
23
+ <sub name="GtkSourceLanguageManager" link="GtkSourceLanguageManager.html"/>
24
+ <sub name="GtkSourceMark" link="GtkSourceMark.html"/>
25
+ <sub name="GtkSourceMarkAttributes" link="GtkSourceMarkAttributes.html"/>
26
+ <sub name="GtkSourcePrintCompositor" link="GtkSourcePrintCompositor.html"/>
27
+ <sub name="GtkSourceSearchContext" link="GtkSourceSearchContext.html"/>
28
+ <sub name="GtkSourceSearchSettings" link="GtkSourceSearchSettings.html"/>
29
+ <sub name="GtkSourceStyle" link="GtkSourceStyle.html"/>
30
+ <sub name="GtkSourceStyleScheme" link="GtkSourceStyleScheme.html"/>
31
+ <sub name="GtkSourceStyleSchemeManager" link="GtkSourceStyleSchemeManager.html"/>
32
+ <sub name="GtkSourceUndoManager" link="GtkSourceUndoManager.html"/>
33
+ <sub name="GtkSourceUtils" link="gtksourceview-3.0-GtkSourceUtils.html"/>
34
+ <sub name="GtkSourceView" link="GtkSourceView.html"/>
35
+ </sub>
36
+ <sub name="Syntax highlighting reference" link="ch02.html">
37
+ <sub name="Language Definition v2.0 Tutorial" link="lang-tutorial.html"/>
38
+ <sub name="Language Definition v2.0 Reference" link="lang-reference.html"/>
39
+ <sub name="Style Scheme Definition Reference" link="style-reference.html"/>
40
+ </sub>
41
+ <sub name="Object Hierarchy" link="object-tree.html"/>
42
+ <sub name="Index of all symbols" link="api-index-full.html"/>
43
+ <sub name="Index of deprecated symbols" link="api-index-deprecated.html"/>
44
+ <sub name="Index of new symbols in 3.0" link="api-index-3-0.html"/>
45
+ <sub name="Index of new symbols in 3.4" link="api-index-3-4.html"/>
46
+ <sub name="Index of new symbols in 3.10" link="api-index-3-10.html"/>
47
+ <sub name="Index of new symbols in 3.12" link="api-index-3-12.html"/>
48
+ <sub name="Index of new symbols in 3.14" link="api-index-3-14.html"/>
49
+ <sub name="Annotation Glossary" link="annotation-glossary.html"/>
50
+ </chapters>
51
+ <functions>
52
+ <keyword type="" name="Undo and Redo" link="GtkSourceBuffer.html#id-1.2.2.9.5"/>
53
+ <keyword type="" name="Context Classes" link="GtkSourceBuffer.html#id-1.2.2.9.6"/>
54
+ <keyword type="function" name="gtk_source_buffer_new ()" link="GtkSourceBuffer.html#gtk-source-buffer-new"/>
55
+ <keyword type="function" name="gtk_source_buffer_new_with_language ()" link="GtkSourceBuffer.html#gtk-source-buffer-new-with-language"/>
56
+ <keyword type="function" name="gtk_source_buffer_set_highlight_syntax ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-highlight-syntax"/>
57
+ <keyword type="function" name="gtk_source_buffer_get_highlight_syntax ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-highlight-syntax"/>
58
+ <keyword type="function" name="gtk_source_buffer_set_language ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-language"/>
59
+ <keyword type="function" name="gtk_source_buffer_get_language ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-language"/>
60
+ <keyword type="function" name="gtk_source_buffer_set_highlight_matching_brackets ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-highlight-matching-brackets"/>
61
+ <keyword type="function" name="gtk_source_buffer_get_highlight_matching_brackets ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-highlight-matching-brackets"/>
62
+ <keyword type="function" name="gtk_source_buffer_set_style_scheme ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-style-scheme"/>
63
+ <keyword type="function" name="gtk_source_buffer_get_style_scheme ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-style-scheme"/>
64
+ <keyword type="function" name="gtk_source_buffer_ensure_highlight ()" link="GtkSourceBuffer.html#gtk-source-buffer-ensure-highlight"/>
65
+ <keyword type="function" name="gtk_source_buffer_undo ()" link="GtkSourceBuffer.html#gtk-source-buffer-undo"/>
66
+ <keyword type="function" name="gtk_source_buffer_redo ()" link="GtkSourceBuffer.html#gtk-source-buffer-redo"/>
67
+ <keyword type="function" name="gtk_source_buffer_can_undo ()" link="GtkSourceBuffer.html#gtk-source-buffer-can-undo"/>
68
+ <keyword type="function" name="gtk_source_buffer_can_redo ()" link="GtkSourceBuffer.html#gtk-source-buffer-can-redo"/>
69
+ <keyword type="function" name="gtk_source_buffer_begin_not_undoable_action ()" link="GtkSourceBuffer.html#gtk-source-buffer-begin-not-undoable-action"/>
70
+ <keyword type="function" name="gtk_source_buffer_end_not_undoable_action ()" link="GtkSourceBuffer.html#gtk-source-buffer-end-not-undoable-action"/>
71
+ <keyword type="function" name="gtk_source_buffer_get_max_undo_levels ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-max-undo-levels"/>
72
+ <keyword type="function" name="gtk_source_buffer_set_max_undo_levels ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-max-undo-levels"/>
73
+ <keyword type="function" name="gtk_source_buffer_get_undo_manager ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-undo-manager"/>
74
+ <keyword type="function" name="gtk_source_buffer_set_undo_manager ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-undo-manager"/>
75
+ <keyword type="function" name="gtk_source_buffer_iter_has_context_class ()" link="GtkSourceBuffer.html#gtk-source-buffer-iter-has-context-class" since="2.10"/>
76
+ <keyword type="function" name="gtk_source_buffer_get_context_classes_at_iter ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-context-classes-at-iter" since="2.10"/>
77
+ <keyword type="function" name="gtk_source_buffer_iter_forward_to_context_class_toggle ()" link="GtkSourceBuffer.html#gtk-source-buffer-iter-forward-to-context-class-toggle" since="2.10"/>
78
+ <keyword type="function" name="gtk_source_buffer_iter_backward_to_context_class_toggle ()" link="GtkSourceBuffer.html#gtk-source-buffer-iter-backward-to-context-class-toggle" since="2.10"/>
79
+ <keyword type="function" name="gtk_source_buffer_create_source_mark ()" link="GtkSourceBuffer.html#gtk-source-buffer-create-source-mark" since="2.2"/>
80
+ <keyword type="function" name="gtk_source_buffer_forward_iter_to_source_mark ()" link="GtkSourceBuffer.html#gtk-source-buffer-forward-iter-to-source-mark" since="2.2"/>
81
+ <keyword type="function" name="gtk_source_buffer_backward_iter_to_source_mark ()" link="GtkSourceBuffer.html#gtk-source-buffer-backward-iter-to-source-mark" since="2.2"/>
82
+ <keyword type="function" name="gtk_source_buffer_get_source_marks_at_line ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-source-marks-at-line" since="2.2"/>
83
+ <keyword type="function" name="gtk_source_buffer_get_source_marks_at_iter ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-source-marks-at-iter" since="2.2"/>
84
+ <keyword type="function" name="gtk_source_buffer_remove_source_marks ()" link="GtkSourceBuffer.html#gtk-source-buffer-remove-source-marks" since="2.2"/>
85
+ <keyword type="function" name="gtk_source_buffer_change_case ()" link="GtkSourceBuffer.html#gtk-source-buffer-change-case" since="3.12"/>
86
+ <keyword type="function" name="gtk_source_buffer_set_implicit_trailing_newline ()" link="GtkSourceBuffer.html#gtk-source-buffer-set-implicit-trailing-newline" since="3.14"/>
87
+ <keyword type="function" name="gtk_source_buffer_get_implicit_trailing_newline ()" link="GtkSourceBuffer.html#gtk-source-buffer-get-implicit-trailing-newline" since="3.14"/>
88
+ <keyword type="struct" name="GtkSourceBuffer" link="GtkSourceBuffer.html#GtkSourceBuffer-struct"/>
89
+ <keyword type="enum" name="enum GtkSourceBracketMatchType" link="GtkSourceBuffer.html#GtkSourceBracketMatchType"/>
90
+ <keyword type="enum" name="enum GtkSourceChangeCaseType" link="GtkSourceBuffer.html#GtkSourceChangeCaseType" since="3.12"/>
91
+ <keyword type="property" name="The “can-redo” property" link="GtkSourceBuffer.html#GtkSourceBuffer--can-redo"/>
92
+ <keyword type="property" name="The “can-undo” property" link="GtkSourceBuffer.html#GtkSourceBuffer--can-undo"/>
93
+ <keyword type="property" name="The “highlight-matching-brackets” property" link="GtkSourceBuffer.html#GtkSourceBuffer--highlight-matching-brackets"/>
94
+ <keyword type="property" name="The “highlight-syntax” property" link="GtkSourceBuffer.html#GtkSourceBuffer--highlight-syntax"/>
95
+ <keyword type="property" name="The “implicit-trailing-newline” property" link="GtkSourceBuffer.html#GtkSourceBuffer--implicit-trailing-newline"/>
96
+ <keyword type="property" name="The “language” property" link="GtkSourceBuffer.html#GtkSourceBuffer--language"/>
97
+ <keyword type="property" name="The “max-undo-levels” property" link="GtkSourceBuffer.html#GtkSourceBuffer--max-undo-levels"/>
98
+ <keyword type="property" name="The “style-scheme” property" link="GtkSourceBuffer.html#GtkSourceBuffer--style-scheme"/>
99
+ <keyword type="property" name="The “undo-manager” property" link="GtkSourceBuffer.html#GtkSourceBuffer--undo-manager"/>
100
+ <keyword type="signal" name="The “bracket-matched” signal" link="GtkSourceBuffer.html#GtkSourceBuffer-bracket-matched"/>
101
+ <keyword type="signal" name="The “highlight-updated” signal" link="GtkSourceBuffer.html#GtkSourceBuffer-highlight-updated"/>
102
+ <keyword type="signal" name="The “redo” signal" link="GtkSourceBuffer.html#GtkSourceBuffer-redo"/>
103
+ <keyword type="signal" name="The “source-mark-updated” signal" link="GtkSourceBuffer.html#GtkSourceBuffer-source-mark-updated"/>
104
+ <keyword type="signal" name="The “undo” signal" link="GtkSourceBuffer.html#GtkSourceBuffer-undo"/>
105
+ <keyword type="" name="GtkSourceCompletion as GtkBuildable" link="GtkSourceCompletion.html#id-1.2.3.10.11"/>
106
+ <keyword type="function" name="gtk_source_completion_add_provider ()" link="GtkSourceCompletion.html#gtk-source-completion-add-provider"/>
107
+ <keyword type="function" name="gtk_source_completion_remove_provider ()" link="GtkSourceCompletion.html#gtk-source-completion-remove-provider"/>
108
+ <keyword type="function" name="gtk_source_completion_get_providers ()" link="GtkSourceCompletion.html#gtk-source-completion-get-providers"/>
109
+ <keyword type="function" name="gtk_source_completion_show ()" link="GtkSourceCompletion.html#gtk-source-completion-show"/>
110
+ <keyword type="function" name="gtk_source_completion_hide ()" link="GtkSourceCompletion.html#gtk-source-completion-hide"/>
111
+ <keyword type="function" name="gtk_source_completion_get_info_window ()" link="GtkSourceCompletion.html#gtk-source-completion-get-info-window"/>
112
+ <keyword type="function" name="gtk_source_completion_get_view ()" link="GtkSourceCompletion.html#gtk-source-completion-get-view"/>
113
+ <keyword type="function" name="gtk_source_completion_create_context ()" link="GtkSourceCompletion.html#gtk-source-completion-create-context"/>
114
+ <keyword type="function" name="gtk_source_completion_move_window ()" link="GtkSourceCompletion.html#gtk-source-completion-move-window" deprecated="3.8: Use gtk_source_completion_provider_get_start_iter() instead."/>
115
+ <keyword type="function" name="gtk_source_completion_block_interactive ()" link="GtkSourceCompletion.html#gtk-source-completion-block-interactive"/>
116
+ <keyword type="function" name="gtk_source_completion_unblock_interactive ()" link="GtkSourceCompletion.html#gtk-source-completion-unblock-interactive"/>
117
+ <keyword type="struct" name="GtkSourceCompletion" link="GtkSourceCompletion.html#GtkSourceCompletion-struct"/>
118
+ <keyword type="macro" name="GTK_SOURCE_COMPLETION_ERROR" link="GtkSourceCompletion.html#GTK-SOURCE-COMPLETION-ERROR:CAPS"/>
119
+ <keyword type="enum" name="enum GtkSourceCompletionError" link="GtkSourceCompletion.html#GtkSourceCompletionError"/>
120
+ <keyword type="property" name="The “accelerators” property" link="GtkSourceCompletion.html#GtkSourceCompletion--accelerators"/>
121
+ <keyword type="property" name="The “auto-complete-delay” property" link="GtkSourceCompletion.html#GtkSourceCompletion--auto-complete-delay"/>
122
+ <keyword type="property" name="The “proposal-page-size” property" link="GtkSourceCompletion.html#GtkSourceCompletion--proposal-page-size"/>
123
+ <keyword type="property" name="The “provider-page-size” property" link="GtkSourceCompletion.html#GtkSourceCompletion--provider-page-size"/>
124
+ <keyword type="property" name="The “remember-info-visibility” property" link="GtkSourceCompletion.html#GtkSourceCompletion--remember-info-visibility"/>
125
+ <keyword type="property" name="The “select-on-show” property" link="GtkSourceCompletion.html#GtkSourceCompletion--select-on-show"/>
126
+ <keyword type="property" name="The “show-headers” property" link="GtkSourceCompletion.html#GtkSourceCompletion--show-headers"/>
127
+ <keyword type="property" name="The “show-icons” property" link="GtkSourceCompletion.html#GtkSourceCompletion--show-icons"/>
128
+ <keyword type="property" name="The “view” property" link="GtkSourceCompletion.html#GtkSourceCompletion--view"/>
129
+ <keyword type="signal" name="The “activate-proposal” signal" link="GtkSourceCompletion.html#GtkSourceCompletion-activate-proposal"/>
130
+ <keyword type="signal" name="The “hide” signal" link="GtkSourceCompletion.html#GtkSourceCompletion-hide"/>
131
+ <keyword type="signal" name="The “move-cursor” signal" link="GtkSourceCompletion.html#GtkSourceCompletion-move-cursor"/>
132
+ <keyword type="signal" name="The “move-page” signal" link="GtkSourceCompletion.html#GtkSourceCompletion-move-page"/>
133
+ <keyword type="signal" name="The “populate-context” signal" link="GtkSourceCompletion.html#GtkSourceCompletion-populate-context"/>
134
+ <keyword type="signal" name="The “show” signal" link="GtkSourceCompletion.html#GtkSourceCompletion-show"/>
135
+ <keyword type="function" name="gtk_source_completion_context_add_proposals ()" link="GtkSourceCompletionContext.html#gtk-source-completion-context-add-proposals"/>
136
+ <keyword type="function" name="gtk_source_completion_context_get_iter ()" link="GtkSourceCompletionContext.html#gtk-source-completion-context-get-iter"/>
137
+ <keyword type="function" name="gtk_source_completion_context_get_activation ()" link="GtkSourceCompletionContext.html#gtk-source-completion-context-get-activation"/>
138
+ <keyword type="enum" name="enum GtkSourceCompletionActivation" link="GtkSourceCompletionContext.html#GtkSourceCompletionActivation"/>
139
+ <keyword type="struct" name="GtkSourceCompletionContext" link="GtkSourceCompletionContext.html#GtkSourceCompletionContext-struct"/>
140
+ <keyword type="property" name="The “activation” property" link="GtkSourceCompletionContext.html#GtkSourceCompletionContext--activation"/>
141
+ <keyword type="property" name="The “completion” property" link="GtkSourceCompletionContext.html#GtkSourceCompletionContext--completion"/>
142
+ <keyword type="property" name="The “iter” property" link="GtkSourceCompletionContext.html#GtkSourceCompletionContext--iter"/>
143
+ <keyword type="signal" name="The “cancelled” signal" link="GtkSourceCompletionContext.html#GtkSourceCompletionContext-cancelled"/>
144
+ <keyword type="function" name="gtk_source_completion_info_new ()" link="GtkSourceCompletionInfo.html#gtk-source-completion-info-new"/>
145
+ <keyword type="function" name="gtk_source_completion_info_move_to_iter ()" link="GtkSourceCompletionInfo.html#gtk-source-completion-info-move-to-iter"/>
146
+ <keyword type="function" name="gtk_source_completion_info_set_widget ()" link="GtkSourceCompletionInfo.html#gtk-source-completion-info-set-widget" deprecated=""/>
147
+ <keyword type="function" name="gtk_source_completion_info_get_widget ()" link="GtkSourceCompletionInfo.html#gtk-source-completion-info-get-widget" deprecated="3.8: Use gtk_bin_get_child() instead."/>
148
+ <keyword type="struct" name="GtkSourceCompletionInfo" link="GtkSourceCompletionInfo.html#GtkSourceCompletionInfo-struct"/>
149
+ <keyword type="signal" name="The “before-show” signal" link="GtkSourceCompletionInfo.html#GtkSourceCompletionInfo-before-show"/>
150
+ <keyword type="function" name="gtk_source_completion_item_new ()" link="GtkSourceCompletionItem.html#gtk-source-completion-item-new"/>
151
+ <keyword type="function" name="gtk_source_completion_item_new_with_markup ()" link="GtkSourceCompletionItem.html#gtk-source-completion-item-new-with-markup"/>
152
+ <keyword type="function" name="gtk_source_completion_item_new_from_stock ()" link="GtkSourceCompletionItem.html#gtk-source-completion-item-new-from-stock" deprecated="3.10: Use gtk_source_completion_item_new() instead."/>
153
+ <keyword type="struct" name="GtkSourceCompletionItem" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem-struct"/>
154
+ <keyword type="property" name="The “icon” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--icon"/>
155
+ <keyword type="property" name="The “info” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--info"/>
156
+ <keyword type="property" name="The “label” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--label"/>
157
+ <keyword type="property" name="The “markup” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--markup"/>
158
+ <keyword type="property" name="The “text” property" link="GtkSourceCompletionItem.html#GtkSourceCompletionItem--text"/>
159
+ <keyword type="function" name="gtk_source_completion_proposal_get_label ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-label"/>
160
+ <keyword type="function" name="gtk_source_completion_proposal_get_markup ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-markup"/>
161
+ <keyword type="function" name="gtk_source_completion_proposal_get_text ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-text"/>
162
+ <keyword type="function" name="gtk_source_completion_proposal_get_icon ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-icon"/>
163
+ <keyword type="function" name="gtk_source_completion_proposal_get_info ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-info"/>
164
+ <keyword type="function" name="gtk_source_completion_proposal_changed ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-changed"/>
165
+ <keyword type="function" name="gtk_source_completion_proposal_hash ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-hash"/>
166
+ <keyword type="function" name="gtk_source_completion_proposal_equal ()" link="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-equal"/>
167
+ <keyword type="struct" name="GtkSourceCompletionProposal" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposal-struct"/>
168
+ <keyword type="struct" name="struct GtkSourceCompletionProposalIface" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface"/>
169
+ <keyword type="signal" name="The “changed” signal" link="GtkSourceCompletionProposal.html#GtkSourceCompletionProposal-changed"/>
170
+ <keyword type="function" name="gtk_source_completion_provider_get_name ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-name"/>
171
+ <keyword type="function" name="gtk_source_completion_provider_get_icon ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-icon"/>
172
+ <keyword type="function" name="gtk_source_completion_provider_populate ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-populate"/>
173
+ <keyword type="function" name="gtk_source_completion_provider_get_activation ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-activation"/>
174
+ <keyword type="function" name="gtk_source_completion_provider_match ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-match"/>
175
+ <keyword type="function" name="gtk_source_completion_provider_get_info_widget ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-info-widget"/>
176
+ <keyword type="function" name="gtk_source_completion_provider_update_info ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-update-info"/>
177
+ <keyword type="function" name="gtk_source_completion_provider_get_start_iter ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-start-iter"/>
178
+ <keyword type="function" name="gtk_source_completion_provider_activate_proposal ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-activate-proposal"/>
179
+ <keyword type="function" name="gtk_source_completion_provider_get_interactive_delay ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-interactive-delay"/>
180
+ <keyword type="function" name="gtk_source_completion_provider_get_priority ()" link="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-priority"/>
181
+ <keyword type="struct" name="GtkSourceCompletionProvider" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProvider-struct"/>
182
+ <keyword type="struct" name="struct GtkSourceCompletionProviderIface" link="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface"/>
183
+ <keyword type="function" name="gtk_source_completion_words_new ()" link="GtkSourceCompletionWords.html#gtk-source-completion-words-new"/>
184
+ <keyword type="function" name="gtk_source_completion_words_register ()" link="GtkSourceCompletionWords.html#gtk-source-completion-words-register"/>
185
+ <keyword type="function" name="gtk_source_completion_words_unregister ()" link="GtkSourceCompletionWords.html#gtk-source-completion-words-unregister"/>
186
+ <keyword type="struct" name="struct GtkSourceCompletionWords" link="GtkSourceCompletionWords.html#GtkSourceCompletionWords-struct"/>
187
+ <keyword type="property" name="The “activation” property" link="GtkSourceCompletionWords.html#GtkSourceCompletionWords--activation"/>
188
+ <keyword type="property" name="The “icon” property" link="GtkSourceCompletionWords.html#GtkSourceCompletionWords--icon"/>
189
+ <keyword type="property" name="The “interactive-delay” property" link="GtkSourceCompletionWords.html#GtkSourceCompletionWords--interactive-delay"/>
190
+ <keyword type="property" name="The “minimum-word-size” property" link="GtkSourceCompletionWords.html#GtkSourceCompletionWords--minimum-word-size"/>
191
+ <keyword type="property" name="The “name” property" link="GtkSourceCompletionWords.html#GtkSourceCompletionWords--name"/>
192
+ <keyword type="property" name="The “priority” property" link="GtkSourceCompletionWords.html#GtkSourceCompletionWords--priority"/>
193
+ <keyword type="property" name="The “proposals-batch-size” property" link="GtkSourceCompletionWords.html#GtkSourceCompletionWords--proposals-batch-size"/>
194
+ <keyword type="property" name="The “scan-batch-size” property" link="GtkSourceCompletionWords.html#GtkSourceCompletionWords--scan-batch-size"/>
195
+ <keyword type="function" name="gtk_source_encoding_get_utf8 ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-utf8" since="3.14"/>
196
+ <keyword type="function" name="gtk_source_encoding_get_current ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-current" since="3.14"/>
197
+ <keyword type="function" name="gtk_source_encoding_get_from_charset ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-from-charset" since="3.14"/>
198
+ <keyword type="function" name="gtk_source_encoding_to_string ()" link="GtkSourceEncoding.html#gtk-source-encoding-to-string" since="3.14"/>
199
+ <keyword type="function" name="gtk_source_encoding_get_name ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-name" since="3.14"/>
200
+ <keyword type="function" name="gtk_source_encoding_get_charset ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-charset" since="3.14"/>
201
+ <keyword type="function" name="gtk_source_encoding_get_all ()" link="GtkSourceEncoding.html#gtk-source-encoding-get-all" since="3.14"/>
202
+ <keyword type="function" name="gtk_source_encoding_copy ()" link="GtkSourceEncoding.html#gtk-source-encoding-copy" since="3.14"/>
203
+ <keyword type="function" name="gtk_source_encoding_free ()" link="GtkSourceEncoding.html#gtk-source-encoding-free" since="3.14"/>
204
+ <keyword type="struct" name="GtkSourceEncoding" link="GtkSourceEncoding.html#GtkSourceEncoding-struct"/>
205
+ <keyword type="function" name="GtkSourceMountOperationFactory ()" link="GtkSourceFile.html#GtkSourceMountOperationFactory" since="3.14"/>
206
+ <keyword type="function" name="gtk_source_file_new ()" link="GtkSourceFile.html#gtk-source-file-new" since="3.14"/>
207
+ <keyword type="function" name="gtk_source_file_get_location ()" link="GtkSourceFile.html#gtk-source-file-get-location" since="3.14"/>
208
+ <keyword type="function" name="gtk_source_file_set_location ()" link="GtkSourceFile.html#gtk-source-file-set-location" since="3.14"/>
209
+ <keyword type="function" name="gtk_source_file_get_encoding ()" link="GtkSourceFile.html#gtk-source-file-get-encoding" since="3.14"/>
210
+ <keyword type="function" name="gtk_source_file_get_newline_type ()" link="GtkSourceFile.html#gtk-source-file-get-newline-type" since="3.14"/>
211
+ <keyword type="function" name="gtk_source_file_get_compression_type ()" link="GtkSourceFile.html#gtk-source-file-get-compression-type" since="3.14"/>
212
+ <keyword type="function" name="gtk_source_file_set_mount_operation_factory ()" link="GtkSourceFile.html#gtk-source-file-set-mount-operation-factory" since="3.14"/>
213
+ <keyword type="struct" name="GtkSourceFile" link="GtkSourceFile.html#GtkSourceFile-struct"/>
214
+ <keyword type="enum" name="enum GtkSourceNewlineType" link="GtkSourceFile.html#GtkSourceNewlineType" since="3.14"/>
215
+ <keyword type="macro" name="GTK_SOURCE_NEWLINE_TYPE_DEFAULT" link="GtkSourceFile.html#GTK-SOURCE-NEWLINE-TYPE-DEFAULT:CAPS" since="3.14"/>
216
+ <keyword type="enum" name="enum GtkSourceCompressionType" link="GtkSourceFile.html#GtkSourceCompressionType" since="3.14"/>
217
+ <keyword type="property" name="The “compression-type” property" link="GtkSourceFile.html#GtkSourceFile--compression-type"/>
218
+ <keyword type="property" name="The “encoding” property" link="GtkSourceFile.html#GtkSourceFile--encoding"/>
219
+ <keyword type="property" name="The “location” property" link="GtkSourceFile.html#GtkSourceFile--location"/>
220
+ <keyword type="property" name="The “newline-type” property" link="GtkSourceFile.html#GtkSourceFile--newline-type"/>
221
+ <keyword type="function" name="gtk_source_file_loader_new ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-new" since="3.14"/>
222
+ <keyword type="function" name="gtk_source_file_loader_new_from_stream ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-new-from-stream" since="3.14"/>
223
+ <keyword type="function" name="gtk_source_file_loader_set_candidate_encodings ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-set-candidate-encodings" since="3.14"/>
224
+ <keyword type="function" name="gtk_source_file_loader_get_buffer ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-get-buffer" since="3.14"/>
225
+ <keyword type="function" name="gtk_source_file_loader_get_file ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-get-file" since="3.14"/>
226
+ <keyword type="function" name="gtk_source_file_loader_get_location ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-get-location" since="3.14"/>
227
+ <keyword type="function" name="gtk_source_file_loader_get_input_stream ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-get-input-stream" since="3.14"/>
228
+ <keyword type="function" name="gtk_source_file_loader_load_async ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-load-async" since="3.14"/>
229
+ <keyword type="function" name="gtk_source_file_loader_load_finish ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-load-finish" since="3.14"/>
230
+ <keyword type="function" name="gtk_source_file_loader_get_encoding ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-get-encoding" since="3.14"/>
231
+ <keyword type="function" name="gtk_source_file_loader_get_newline_type ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-get-newline-type" since="3.14"/>
232
+ <keyword type="function" name="gtk_source_file_loader_get_compression_type ()" link="GtkSourceFileLoader.html#gtk-source-file-loader-get-compression-type" since="3.14"/>
233
+ <keyword type="struct" name="GtkSourceFileLoader" link="GtkSourceFileLoader.html#GtkSourceFileLoader-struct"/>
234
+ <keyword type="macro" name="GTK_SOURCE_FILE_LOADER_ERROR" link="GtkSourceFileLoader.html#GTK-SOURCE-FILE-LOADER-ERROR:CAPS"/>
235
+ <keyword type="enum" name="enum GtkSourceFileLoaderError" link="GtkSourceFileLoader.html#GtkSourceFileLoaderError"/>
236
+ <keyword type="property" name="The “buffer” property" link="GtkSourceFileLoader.html#GtkSourceFileLoader--buffer"/>
237
+ <keyword type="property" name="The “file” property" link="GtkSourceFileLoader.html#GtkSourceFileLoader--file"/>
238
+ <keyword type="property" name="The “input-stream” property" link="GtkSourceFileLoader.html#GtkSourceFileLoader--input-stream"/>
239
+ <keyword type="property" name="The “location” property" link="GtkSourceFileLoader.html#GtkSourceFileLoader--location"/>
240
+ <keyword type="function" name="gtk_source_file_saver_new ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-new" since="3.14"/>
241
+ <keyword type="function" name="gtk_source_file_saver_new_with_target ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-new-with-target" since="3.14"/>
242
+ <keyword type="function" name="gtk_source_file_saver_get_buffer ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-get-buffer" since="3.14"/>
243
+ <keyword type="function" name="gtk_source_file_saver_get_file ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-get-file" since="3.14"/>
244
+ <keyword type="function" name="gtk_source_file_saver_get_location ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-get-location" since="3.14"/>
245
+ <keyword type="function" name="gtk_source_file_saver_set_encoding ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-set-encoding" since="3.14"/>
246
+ <keyword type="function" name="gtk_source_file_saver_get_encoding ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-get-encoding" since="3.14"/>
247
+ <keyword type="function" name="gtk_source_file_saver_set_newline_type ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-set-newline-type" since="3.14"/>
248
+ <keyword type="function" name="gtk_source_file_saver_get_newline_type ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-get-newline-type" since="3.14"/>
249
+ <keyword type="function" name="gtk_source_file_saver_set_compression_type ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-set-compression-type" since="3.14"/>
250
+ <keyword type="function" name="gtk_source_file_saver_get_compression_type ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-get-compression-type" since="3.14"/>
251
+ <keyword type="function" name="gtk_source_file_saver_set_flags ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-set-flags" since="3.14"/>
252
+ <keyword type="function" name="gtk_source_file_saver_get_flags ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-get-flags" since="3.14"/>
253
+ <keyword type="function" name="gtk_source_file_saver_save_async ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-save-async" since="3.14"/>
254
+ <keyword type="function" name="gtk_source_file_saver_save_finish ()" link="GtkSourceFileSaver.html#gtk-source-file-saver-save-finish" since="3.14"/>
255
+ <keyword type="struct" name="GtkSourceFileSaver" link="GtkSourceFileSaver.html#GtkSourceFileSaver-struct"/>
256
+ <keyword type="macro" name="GTK_SOURCE_FILE_SAVER_ERROR" link="GtkSourceFileSaver.html#GTK-SOURCE-FILE-SAVER-ERROR:CAPS"/>
257
+ <keyword type="enum" name="enum GtkSourceFileSaverError" link="GtkSourceFileSaver.html#GtkSourceFileSaverError" since="3.14"/>
258
+ <keyword type="enum" name="enum GtkSourceFileSaverFlags" link="GtkSourceFileSaver.html#GtkSourceFileSaverFlags" since="3.14"/>
259
+ <keyword type="property" name="The “buffer” property" link="GtkSourceFileSaver.html#GtkSourceFileSaver--buffer"/>
260
+ <keyword type="property" name="The “compression-type” property" link="GtkSourceFileSaver.html#GtkSourceFileSaver--compression-type"/>
261
+ <keyword type="property" name="The “encoding” property" link="GtkSourceFileSaver.html#GtkSourceFileSaver--encoding"/>
262
+ <keyword type="property" name="The “file” property" link="GtkSourceFileSaver.html#GtkSourceFileSaver--file"/>
263
+ <keyword type="property" name="The “flags” property" link="GtkSourceFileSaver.html#GtkSourceFileSaver--flags"/>
264
+ <keyword type="property" name="The “location” property" link="GtkSourceFileSaver.html#GtkSourceFileSaver--location"/>
265
+ <keyword type="property" name="The “newline-type” property" link="GtkSourceFileSaver.html#GtkSourceFileSaver--newline-type"/>
266
+ <keyword type="function" name="gtk_source_gutter_get_window ()" link="GtkSourceGutter.html#gtk-source-gutter-get-window" deprecated="3.12: Use gtk_text_view_get_window() instead." since="2.8"/>
267
+ <keyword type="function" name="gtk_source_gutter_insert ()" link="GtkSourceGutter.html#gtk-source-gutter-insert" since="3.0"/>
268
+ <keyword type="function" name="gtk_source_gutter_reorder ()" link="GtkSourceGutter.html#gtk-source-gutter-reorder" since="2.8"/>
269
+ <keyword type="function" name="gtk_source_gutter_remove ()" link="GtkSourceGutter.html#gtk-source-gutter-remove" since="2.8"/>
270
+ <keyword type="function" name="gtk_source_gutter_queue_draw ()" link="GtkSourceGutter.html#gtk-source-gutter-queue-draw" since="2.8"/>
271
+ <keyword type="function" name="gtk_source_gutter_get_padding ()" link="GtkSourceGutter.html#gtk-source-gutter-get-padding" deprecated="3.12: Use gtk_source_gutter_renderer_get_padding() instead."/>
272
+ <keyword type="function" name="gtk_source_gutter_set_padding ()" link="GtkSourceGutter.html#gtk-source-gutter-set-padding" deprecated="3.12: Use gtk_source_gutter_renderer_set_padding() instead."/>
273
+ <keyword type="function" name="gtk_source_gutter_get_renderer_at_pos ()" link="GtkSourceGutter.html#gtk-source-gutter-get-renderer-at-pos"/>
274
+ <keyword type="struct" name="GtkSourceGutter" link="GtkSourceGutter.html#GtkSourceGutter-struct"/>
275
+ <keyword type="property" name="The “view” property" link="GtkSourceGutter.html#GtkSourceGutter--view"/>
276
+ <keyword type="property" name="The “window-type” property" link="GtkSourceGutter.html#GtkSourceGutter--window-type"/>
277
+ <keyword type="property" name="The “xpad” property" link="GtkSourceGutter.html#GtkSourceGutter--xpad"/>
278
+ <keyword type="property" name="The “ypad” property" link="GtkSourceGutter.html#GtkSourceGutter--ypad"/>
279
+ <keyword type="function" name="gtk_source_gutter_renderer_begin ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-begin"/>
280
+ <keyword type="function" name="gtk_source_gutter_renderer_draw ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-draw"/>
281
+ <keyword type="function" name="gtk_source_gutter_renderer_end ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-end"/>
282
+ <keyword type="function" name="gtk_source_gutter_renderer_get_size ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-size"/>
283
+ <keyword type="function" name="gtk_source_gutter_renderer_set_size ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-size"/>
284
+ <keyword type="function" name="gtk_source_gutter_renderer_set_visible ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-visible"/>
285
+ <keyword type="function" name="gtk_source_gutter_renderer_get_visible ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-visible"/>
286
+ <keyword type="function" name="gtk_source_gutter_renderer_get_padding ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-padding"/>
287
+ <keyword type="function" name="gtk_source_gutter_renderer_set_padding ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-padding"/>
288
+ <keyword type="function" name="gtk_source_gutter_renderer_get_alignment ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-alignment"/>
289
+ <keyword type="function" name="gtk_source_gutter_renderer_set_alignment ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-alignment"/>
290
+ <keyword type="function" name="gtk_source_gutter_renderer_set_alignment_mode ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-alignment-mode"/>
291
+ <keyword type="function" name="gtk_source_gutter_renderer_get_window_type ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-window-type"/>
292
+ <keyword type="function" name="gtk_source_gutter_renderer_get_view ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-view"/>
293
+ <keyword type="function" name="gtk_source_gutter_renderer_get_alignment_mode ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-alignment-mode"/>
294
+ <keyword type="function" name="gtk_source_gutter_renderer_get_background ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-background"/>
295
+ <keyword type="function" name="gtk_source_gutter_renderer_set_background ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-background"/>
296
+ <keyword type="function" name="gtk_source_gutter_renderer_activate ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-activate"/>
297
+ <keyword type="function" name="gtk_source_gutter_renderer_query_activatable ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-query-activatable"/>
298
+ <keyword type="function" name="gtk_source_gutter_renderer_queue_draw ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-queue-draw"/>
299
+ <keyword type="function" name="gtk_source_gutter_renderer_query_tooltip ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-query-tooltip"/>
300
+ <keyword type="function" name="gtk_source_gutter_renderer_query_data ()" link="GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-query-data"/>
301
+ <keyword type="struct" name="GtkSourceGutterRenderer" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-struct"/>
302
+ <keyword type="enum" name="enum GtkSourceGutterRendererState" link="GtkSourceGutterRenderer.html#GtkSourceGutterRendererState"/>
303
+ <keyword type="enum" name="enum GtkSourceGutterRendererAlignmentMode" link="GtkSourceGutterRenderer.html#GtkSourceGutterRendererAlignmentMode"/>
304
+ <keyword type="property" name="The “alignment-mode” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--alignment-mode"/>
305
+ <keyword type="property" name="The “background-rgba” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--background-rgba"/>
306
+ <keyword type="property" name="The “background-set” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--background-set"/>
307
+ <keyword type="property" name="The “size” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--size"/>
308
+ <keyword type="property" name="The “view” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--view"/>
309
+ <keyword type="property" name="The “visible” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--visible"/>
310
+ <keyword type="property" name="The “window-type” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--window-type"/>
311
+ <keyword type="property" name="The “xalign” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--xalign"/>
312
+ <keyword type="property" name="The “xpad” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--xpad"/>
313
+ <keyword type="property" name="The “yalign” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--yalign"/>
314
+ <keyword type="property" name="The “ypad” property" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--ypad"/>
315
+ <keyword type="signal" name="The “activate” signal" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-activate"/>
316
+ <keyword type="signal" name="The “query-activatable” signal" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-query-activatable"/>
317
+ <keyword type="signal" name="The “query-data” signal" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-query-data"/>
318
+ <keyword type="signal" name="The “query-tooltip” signal" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-query-tooltip"/>
319
+ <keyword type="signal" name="The “queue-draw” signal" link="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-queue-draw"/>
320
+ <keyword type="function" name="gtk_source_gutter_renderer_pixbuf_new ()" link="GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-new"/>
321
+ <keyword type="function" name="gtk_source_gutter_renderer_pixbuf_set_pixbuf ()" link="GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-pixbuf"/>
322
+ <keyword type="function" name="gtk_source_gutter_renderer_pixbuf_get_pixbuf ()" link="GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-pixbuf"/>
323
+ <keyword type="function" name="gtk_source_gutter_renderer_pixbuf_set_stock_id ()" link="GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-stock-id" deprecated="3.10: Don't use this function."/>
324
+ <keyword type="function" name="gtk_source_gutter_renderer_pixbuf_get_stock_id ()" link="GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-stock-id" deprecated="3.10: Don't use this function."/>
325
+ <keyword type="function" name="gtk_source_gutter_renderer_pixbuf_set_gicon ()" link="GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-gicon"/>
326
+ <keyword type="function" name="gtk_source_gutter_renderer_pixbuf_get_gicon ()" link="GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-gicon"/>
327
+ <keyword type="function" name="gtk_source_gutter_renderer_pixbuf_set_icon_name ()" link="GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-icon-name"/>
328
+ <keyword type="function" name="gtk_source_gutter_renderer_pixbuf_get_icon_name ()" link="GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-icon-name"/>
329
+ <keyword type="struct" name="GtkSourceGutterRendererPixbuf" link="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf-struct"/>
330
+ <keyword type="property" name="The “gicon” property" link="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--gicon"/>
331
+ <keyword type="property" name="The “icon-name” property" link="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--icon-name"/>
332
+ <keyword type="property" name="The “pixbuf” property" link="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--pixbuf"/>
333
+ <keyword type="property" name="The “stock-id” property" link="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--stock-id"/>
334
+ <keyword type="function" name="gtk_source_gutter_renderer_text_new ()" link="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-new"/>
335
+ <keyword type="function" name="gtk_source_gutter_renderer_text_set_markup ()" link="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-set-markup"/>
336
+ <keyword type="function" name="gtk_source_gutter_renderer_text_set_text ()" link="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-set-text"/>
337
+ <keyword type="function" name="gtk_source_gutter_renderer_text_measure ()" link="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-measure"/>
338
+ <keyword type="function" name="gtk_source_gutter_renderer_text_measure_markup ()" link="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-measure-markup"/>
339
+ <keyword type="struct" name="GtkSourceGutterRendererText" link="GtkSourceGutterRendererText.html#GtkSourceGutterRendererText-struct"/>
340
+ <keyword type="property" name="The “markup” property" link="GtkSourceGutterRendererText.html#GtkSourceGutterRendererText--markup"/>
341
+ <keyword type="property" name="The “text” property" link="GtkSourceGutterRendererText.html#GtkSourceGutterRendererText--text"/>
342
+ <keyword type="function" name="gtk_source_language_get_id ()" link="GtkSourceLanguage.html#gtk-source-language-get-id"/>
343
+ <keyword type="function" name="gtk_source_language_get_name ()" link="GtkSourceLanguage.html#gtk-source-language-get-name"/>
344
+ <keyword type="function" name="gtk_source_language_get_section ()" link="GtkSourceLanguage.html#gtk-source-language-get-section"/>
345
+ <keyword type="function" name="gtk_source_language_get_hidden ()" link="GtkSourceLanguage.html#gtk-source-language-get-hidden"/>
346
+ <keyword type="function" name="gtk_source_language_get_metadata ()" link="GtkSourceLanguage.html#gtk-source-language-get-metadata"/>
347
+ <keyword type="function" name="gtk_source_language_get_mime_types ()" link="GtkSourceLanguage.html#gtk-source-language-get-mime-types"/>
348
+ <keyword type="function" name="gtk_source_language_get_globs ()" link="GtkSourceLanguage.html#gtk-source-language-get-globs"/>
349
+ <keyword type="function" name="gtk_source_language_get_style_name ()" link="GtkSourceLanguage.html#gtk-source-language-get-style-name"/>
350
+ <keyword type="function" name="gtk_source_language_get_style_ids ()" link="GtkSourceLanguage.html#gtk-source-language-get-style-ids"/>
351
+ <keyword type="function" name="gtk_source_language_get_style_fallback ()" link="GtkSourceLanguage.html#gtk-source-language-get-style-fallback" since="3.4"/>
352
+ <keyword type="struct" name="GtkSourceLanguage" link="GtkSourceLanguage.html#GtkSourceLanguage-struct"/>
353
+ <keyword type="property" name="The “hidden” property" link="GtkSourceLanguage.html#GtkSourceLanguage--hidden"/>
354
+ <keyword type="property" name="The “id” property" link="GtkSourceLanguage.html#GtkSourceLanguage--id"/>
355
+ <keyword type="property" name="The “name” property" link="GtkSourceLanguage.html#GtkSourceLanguage--name"/>
356
+ <keyword type="property" name="The “section” property" link="GtkSourceLanguage.html#GtkSourceLanguage--section"/>
357
+ <keyword type="function" name="gtk_source_language_manager_new ()" link="GtkSourceLanguageManager.html#gtk-source-language-manager-new"/>
358
+ <keyword type="function" name="gtk_source_language_manager_get_default ()" link="GtkSourceLanguageManager.html#gtk-source-language-manager-get-default"/>
359
+ <keyword type="function" name="gtk_source_language_manager_set_search_path ()" link="GtkSourceLanguageManager.html#gtk-source-language-manager-set-search-path"/>
360
+ <keyword type="function" name="gtk_source_language_manager_get_search_path ()" link="GtkSourceLanguageManager.html#gtk-source-language-manager-get-search-path"/>
361
+ <keyword type="function" name="gtk_source_language_manager_get_language_ids ()" link="GtkSourceLanguageManager.html#gtk-source-language-manager-get-language-ids"/>
362
+ <keyword type="function" name="gtk_source_language_manager_get_language ()" link="GtkSourceLanguageManager.html#gtk-source-language-manager-get-language"/>
363
+ <keyword type="function" name="gtk_source_language_manager_guess_language ()" link="GtkSourceLanguageManager.html#gtk-source-language-manager-guess-language" since="2.4"/>
364
+ <keyword type="struct" name="GtkSourceLanguageManager" link="GtkSourceLanguageManager.html#GtkSourceLanguageManager-struct"/>
365
+ <keyword type="property" name="The “language-ids” property" link="GtkSourceLanguageManager.html#GtkSourceLanguageManager--language-ids"/>
366
+ <keyword type="property" name="The “search-path” property" link="GtkSourceLanguageManager.html#GtkSourceLanguageManager--search-path"/>
367
+ <keyword type="function" name="gtk_source_mark_new ()" link="GtkSourceMark.html#gtk-source-mark-new" since="2.2"/>
368
+ <keyword type="function" name="gtk_source_mark_get_category ()" link="GtkSourceMark.html#gtk-source-mark-get-category" since="2.2"/>
369
+ <keyword type="function" name="gtk_source_mark_next ()" link="GtkSourceMark.html#gtk-source-mark-next" since="2.2"/>
370
+ <keyword type="function" name="gtk_source_mark_prev ()" link="GtkSourceMark.html#gtk-source-mark-prev" since="2.2"/>
371
+ <keyword type="struct" name="GtkSourceMark" link="GtkSourceMark.html#GtkSourceMark-struct"/>
372
+ <keyword type="property" name="The “category” property" link="GtkSourceMark.html#GtkSourceMark--category"/>
373
+ <keyword type="function" name="gtk_source_mark_attributes_new ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-new"/>
374
+ <keyword type="function" name="gtk_source_mark_attributes_set_background ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-background"/>
375
+ <keyword type="function" name="gtk_source_mark_attributes_get_background ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-background"/>
376
+ <keyword type="function" name="gtk_source_mark_attributes_set_stock_id ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-stock-id" deprecated="3.10: Don't use this function."/>
377
+ <keyword type="function" name="gtk_source_mark_attributes_get_stock_id ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-stock-id" deprecated="3.10: Don't use this function."/>
378
+ <keyword type="function" name="gtk_source_mark_attributes_set_icon_name ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-icon-name"/>
379
+ <keyword type="function" name="gtk_source_mark_attributes_get_icon_name ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-icon-name"/>
380
+ <keyword type="function" name="gtk_source_mark_attributes_set_gicon ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-gicon"/>
381
+ <keyword type="function" name="gtk_source_mark_attributes_get_gicon ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-gicon"/>
382
+ <keyword type="function" name="gtk_source_mark_attributes_set_pixbuf ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-pixbuf"/>
383
+ <keyword type="function" name="gtk_source_mark_attributes_get_pixbuf ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-pixbuf"/>
384
+ <keyword type="function" name="gtk_source_mark_attributes_render_icon ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-render-icon"/>
385
+ <keyword type="function" name="gtk_source_mark_attributes_get_tooltip_text ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-tooltip-text"/>
386
+ <keyword type="function" name="gtk_source_mark_attributes_get_tooltip_markup ()" link="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-tooltip-markup"/>
387
+ <keyword type="struct" name="GtkSourceMarkAttributes" link="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-struct"/>
388
+ <keyword type="property" name="The “background” property" link="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--background"/>
389
+ <keyword type="property" name="The “gicon” property" link="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--gicon"/>
390
+ <keyword type="property" name="The “icon-name” property" link="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--icon-name"/>
391
+ <keyword type="property" name="The “pixbuf” property" link="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--pixbuf"/>
392
+ <keyword type="property" name="The “stock-id” property" link="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--stock-id"/>
393
+ <keyword type="signal" name="The “query-tooltip-markup” signal" link="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-markup"/>
394
+ <keyword type="signal" name="The “query-tooltip-text” signal" link="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-text"/>
395
+ <keyword type="function" name="gtk_source_print_compositor_new ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-new" since="2.2"/>
396
+ <keyword type="function" name="gtk_source_print_compositor_new_from_view ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-new-from-view" since="2.2"/>
397
+ <keyword type="function" name="gtk_source_print_compositor_get_buffer ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-buffer" since="2.2"/>
398
+ <keyword type="function" name="gtk_source_print_compositor_set_tab_width ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-tab-width" since="2.2"/>
399
+ <keyword type="function" name="gtk_source_print_compositor_get_tab_width ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-tab-width" since="2.2"/>
400
+ <keyword type="function" name="gtk_source_print_compositor_set_wrap_mode ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-wrap-mode" since="2.2"/>
401
+ <keyword type="function" name="gtk_source_print_compositor_get_wrap_mode ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-wrap-mode" since="2.2"/>
402
+ <keyword type="function" name="gtk_source_print_compositor_set_highlight_syntax ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-highlight-syntax" since="2.2"/>
403
+ <keyword type="function" name="gtk_source_print_compositor_get_highlight_syntax ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-highlight-syntax" since="2.2"/>
404
+ <keyword type="function" name="gtk_source_print_compositor_set_print_line_numbers ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-print-line-numbers" since="2.2"/>
405
+ <keyword type="function" name="gtk_source_print_compositor_get_print_line_numbers ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-print-line-numbers" since="2.2"/>
406
+ <keyword type="function" name="gtk_source_print_compositor_set_body_font_name ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-body-font-name" since="2.2"/>
407
+ <keyword type="function" name="gtk_source_print_compositor_get_body_font_name ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-body-font-name" since="2.2"/>
408
+ <keyword type="function" name="gtk_source_print_compositor_set_line_numbers_font_name ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-line-numbers-font-name" since="2.2"/>
409
+ <keyword type="function" name="gtk_source_print_compositor_get_line_numbers_font_name ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-line-numbers-font-name" since="2.2"/>
410
+ <keyword type="function" name="gtk_source_print_compositor_set_header_font_name ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-header-font-name" since="2.2"/>
411
+ <keyword type="function" name="gtk_source_print_compositor_get_header_font_name ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-header-font-name" since="2.2"/>
412
+ <keyword type="function" name="gtk_source_print_compositor_set_footer_font_name ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-footer-font-name" since="2.2"/>
413
+ <keyword type="function" name="gtk_source_print_compositor_get_footer_font_name ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-footer-font-name" since="2.2"/>
414
+ <keyword type="function" name="gtk_source_print_compositor_get_top_margin ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-top-margin" since="2.2"/>
415
+ <keyword type="function" name="gtk_source_print_compositor_set_top_margin ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-top-margin" since="2.2"/>
416
+ <keyword type="function" name="gtk_source_print_compositor_get_bottom_margin ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-bottom-margin" since="2.2"/>
417
+ <keyword type="function" name="gtk_source_print_compositor_set_bottom_margin ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-bottom-margin" since="2.2"/>
418
+ <keyword type="function" name="gtk_source_print_compositor_get_left_margin ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-left-margin" since="2.2"/>
419
+ <keyword type="function" name="gtk_source_print_compositor_set_left_margin ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-left-margin" since="2.2"/>
420
+ <keyword type="function" name="gtk_source_print_compositor_get_right_margin ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-right-margin" since="2.2"/>
421
+ <keyword type="function" name="gtk_source_print_compositor_set_right_margin ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-right-margin" since="2.2"/>
422
+ <keyword type="function" name="gtk_source_print_compositor_set_print_header ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-print-header" since="2.2"/>
423
+ <keyword type="function" name="gtk_source_print_compositor_get_print_header ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-print-header" since="2.2"/>
424
+ <keyword type="function" name="gtk_source_print_compositor_set_print_footer ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-print-footer" since="2.2"/>
425
+ <keyword type="function" name="gtk_source_print_compositor_get_print_footer ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-print-footer" since="2.2"/>
426
+ <keyword type="function" name="gtk_source_print_compositor_set_header_format ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-header-format" since="2.2"/>
427
+ <keyword type="function" name="gtk_source_print_compositor_set_footer_format ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-footer-format" since="2.2"/>
428
+ <keyword type="function" name="gtk_source_print_compositor_get_n_pages ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-n-pages" since="2.2"/>
429
+ <keyword type="function" name="gtk_source_print_compositor_paginate ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-paginate" since="2.2"/>
430
+ <keyword type="function" name="gtk_source_print_compositor_get_pagination_progress ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-pagination-progress" since="2.2"/>
431
+ <keyword type="function" name="gtk_source_print_compositor_draw_page ()" link="GtkSourcePrintCompositor.html#gtk-source-print-compositor-draw-page"/>
432
+ <keyword type="struct" name="GtkSourcePrintCompositor" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor-struct"/>
433
+ <keyword type="property" name="The “body-font-name” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--body-font-name"/>
434
+ <keyword type="property" name="The “buffer” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--buffer"/>
435
+ <keyword type="property" name="The “footer-font-name” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--footer-font-name"/>
436
+ <keyword type="property" name="The “header-font-name” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--header-font-name"/>
437
+ <keyword type="property" name="The “highlight-syntax” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--highlight-syntax"/>
438
+ <keyword type="property" name="The “line-numbers-font-name” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--line-numbers-font-name"/>
439
+ <keyword type="property" name="The “n-pages” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--n-pages"/>
440
+ <keyword type="property" name="The “print-footer” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--print-footer"/>
441
+ <keyword type="property" name="The “print-header” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--print-header"/>
442
+ <keyword type="property" name="The “print-line-numbers” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--print-line-numbers"/>
443
+ <keyword type="property" name="The “tab-width” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--tab-width"/>
444
+ <keyword type="property" name="The “wrap-mode” property" link="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--wrap-mode"/>
445
+ <keyword type="function" name="gtk_source_search_context_new ()" link="GtkSourceSearchContext.html#gtk-source-search-context-new" since="3.10"/>
446
+ <keyword type="function" name="gtk_source_search_context_get_buffer ()" link="GtkSourceSearchContext.html#gtk-source-search-context-get-buffer" since="3.10"/>
447
+ <keyword type="function" name="gtk_source_search_context_get_settings ()" link="GtkSourceSearchContext.html#gtk-source-search-context-get-settings" since="3.10"/>
448
+ <keyword type="function" name="gtk_source_search_context_set_settings ()" link="GtkSourceSearchContext.html#gtk-source-search-context-set-settings" since="3.10"/>
449
+ <keyword type="function" name="gtk_source_search_context_get_highlight ()" link="GtkSourceSearchContext.html#gtk-source-search-context-get-highlight" since="3.10"/>
450
+ <keyword type="function" name="gtk_source_search_context_set_highlight ()" link="GtkSourceSearchContext.html#gtk-source-search-context-set-highlight" since="3.10"/>
451
+ <keyword type="function" name="gtk_source_search_context_get_occurrences_count ()" link="GtkSourceSearchContext.html#gtk-source-search-context-get-occurrences-count" since="3.10"/>
452
+ <keyword type="function" name="gtk_source_search_context_get_occurrence_position ()" link="GtkSourceSearchContext.html#gtk-source-search-context-get-occurrence-position" since="3.10"/>
453
+ <keyword type="function" name="gtk_source_search_context_forward ()" link="GtkSourceSearchContext.html#gtk-source-search-context-forward" since="3.10"/>
454
+ <keyword type="function" name="gtk_source_search_context_forward_async ()" link="GtkSourceSearchContext.html#gtk-source-search-context-forward-async" since="3.10"/>
455
+ <keyword type="function" name="gtk_source_search_context_forward_finish ()" link="GtkSourceSearchContext.html#gtk-source-search-context-forward-finish" since="3.10"/>
456
+ <keyword type="function" name="gtk_source_search_context_backward ()" link="GtkSourceSearchContext.html#gtk-source-search-context-backward" since="3.10"/>
457
+ <keyword type="function" name="gtk_source_search_context_backward_async ()" link="GtkSourceSearchContext.html#gtk-source-search-context-backward-async" since="3.10"/>
458
+ <keyword type="function" name="gtk_source_search_context_backward_finish ()" link="GtkSourceSearchContext.html#gtk-source-search-context-backward-finish" since="3.10"/>
459
+ <keyword type="function" name="gtk_source_search_context_replace ()" link="GtkSourceSearchContext.html#gtk-source-search-context-replace" since="3.10"/>
460
+ <keyword type="function" name="gtk_source_search_context_replace_all ()" link="GtkSourceSearchContext.html#gtk-source-search-context-replace-all" since="3.10"/>
461
+ <keyword type="function" name="gtk_source_search_context_get_regex_error ()" link="GtkSourceSearchContext.html#gtk-source-search-context-get-regex-error" since="3.10"/>
462
+ <keyword type="struct" name="GtkSourceSearchContext" link="GtkSourceSearchContext.html#GtkSourceSearchContext-struct"/>
463
+ <keyword type="property" name="The “buffer” property" link="GtkSourceSearchContext.html#GtkSourceSearchContext--buffer"/>
464
+ <keyword type="property" name="The “highlight” property" link="GtkSourceSearchContext.html#GtkSourceSearchContext--highlight"/>
465
+ <keyword type="property" name="The “occurrences-count” property" link="GtkSourceSearchContext.html#GtkSourceSearchContext--occurrences-count"/>
466
+ <keyword type="property" name="The “regex-error” property" link="GtkSourceSearchContext.html#GtkSourceSearchContext--regex-error"/>
467
+ <keyword type="property" name="The “settings” property" link="GtkSourceSearchContext.html#GtkSourceSearchContext--settings"/>
468
+ <keyword type="function" name="gtk_source_search_settings_new ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-new" since="3.10"/>
469
+ <keyword type="function" name="gtk_source_search_settings_get_search_text ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-get-search-text" since="3.10"/>
470
+ <keyword type="function" name="gtk_source_search_settings_set_search_text ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-set-search-text" since="3.10"/>
471
+ <keyword type="function" name="gtk_source_search_settings_get_case_sensitive ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-get-case-sensitive" since="3.10"/>
472
+ <keyword type="function" name="gtk_source_search_settings_set_case_sensitive ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-set-case-sensitive" since="3.10"/>
473
+ <keyword type="function" name="gtk_source_search_settings_get_at_word_boundaries ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-get-at-word-boundaries" since="3.10"/>
474
+ <keyword type="function" name="gtk_source_search_settings_set_at_word_boundaries ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-set-at-word-boundaries" since="3.10"/>
475
+ <keyword type="function" name="gtk_source_search_settings_get_wrap_around ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-get-wrap-around" since="3.10"/>
476
+ <keyword type="function" name="gtk_source_search_settings_set_wrap_around ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-set-wrap-around" since="3.10"/>
477
+ <keyword type="function" name="gtk_source_search_settings_get_regex_enabled ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-get-regex-enabled" since="3.10"/>
478
+ <keyword type="function" name="gtk_source_search_settings_set_regex_enabled ()" link="GtkSourceSearchSettings.html#gtk-source-search-settings-set-regex-enabled" since="3.10"/>
479
+ <keyword type="struct" name="GtkSourceSearchSettings" link="GtkSourceSearchSettings.html#GtkSourceSearchSettings-struct"/>
480
+ <keyword type="property" name="The “at-word-boundaries” property" link="GtkSourceSearchSettings.html#GtkSourceSearchSettings--at-word-boundaries"/>
481
+ <keyword type="property" name="The “case-sensitive” property" link="GtkSourceSearchSettings.html#GtkSourceSearchSettings--case-sensitive"/>
482
+ <keyword type="property" name="The “regex-enabled” property" link="GtkSourceSearchSettings.html#GtkSourceSearchSettings--regex-enabled"/>
483
+ <keyword type="property" name="The “search-text” property" link="GtkSourceSearchSettings.html#GtkSourceSearchSettings--search-text"/>
484
+ <keyword type="property" name="The “wrap-around” property" link="GtkSourceSearchSettings.html#GtkSourceSearchSettings--wrap-around"/>
485
+ <keyword type="function" name="gtk_source_style_copy ()" link="GtkSourceStyle.html#gtk-source-style-copy" since="2.0"/>
486
+ <keyword type="struct" name="GtkSourceStyle" link="GtkSourceStyle.html#GtkSourceStyle-struct"/>
487
+ <keyword type="property" name="The “background” property" link="GtkSourceStyle.html#GtkSourceStyle--background"/>
488
+ <keyword type="property" name="The “background-set” property" link="GtkSourceStyle.html#GtkSourceStyle--background-set"/>
489
+ <keyword type="property" name="The “bold” property" link="GtkSourceStyle.html#GtkSourceStyle--bold"/>
490
+ <keyword type="property" name="The “bold-set” property" link="GtkSourceStyle.html#GtkSourceStyle--bold-set"/>
491
+ <keyword type="property" name="The “foreground” property" link="GtkSourceStyle.html#GtkSourceStyle--foreground"/>
492
+ <keyword type="property" name="The “foreground-set” property" link="GtkSourceStyle.html#GtkSourceStyle--foreground-set"/>
493
+ <keyword type="property" name="The “italic” property" link="GtkSourceStyle.html#GtkSourceStyle--italic"/>
494
+ <keyword type="property" name="The “italic-set” property" link="GtkSourceStyle.html#GtkSourceStyle--italic-set"/>
495
+ <keyword type="property" name="The “line-background” property" link="GtkSourceStyle.html#GtkSourceStyle--line-background"/>
496
+ <keyword type="property" name="The “line-background-set” property" link="GtkSourceStyle.html#GtkSourceStyle--line-background-set"/>
497
+ <keyword type="property" name="The “scale” property" link="GtkSourceStyle.html#GtkSourceStyle--scale"/>
498
+ <keyword type="property" name="The “scale-set” property" link="GtkSourceStyle.html#GtkSourceStyle--scale-set"/>
499
+ <keyword type="property" name="The “strikethrough” property" link="GtkSourceStyle.html#GtkSourceStyle--strikethrough"/>
500
+ <keyword type="property" name="The “strikethrough-set” property" link="GtkSourceStyle.html#GtkSourceStyle--strikethrough-set"/>
501
+ <keyword type="property" name="The “underline” property" link="GtkSourceStyle.html#GtkSourceStyle--underline"/>
502
+ <keyword type="property" name="The “underline-set” property" link="GtkSourceStyle.html#GtkSourceStyle--underline-set"/>
503
+ <keyword type="function" name="gtk_source_style_scheme_get_id ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-id" since="2.0"/>
504
+ <keyword type="function" name="gtk_source_style_scheme_get_name ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-name" since="2.0"/>
505
+ <keyword type="function" name="gtk_source_style_scheme_get_description ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-description" since="2.0"/>
506
+ <keyword type="function" name="gtk_source_style_scheme_get_authors ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-authors" since="2.0"/>
507
+ <keyword type="function" name="gtk_source_style_scheme_get_filename ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-filename" since="2.0"/>
508
+ <keyword type="function" name="gtk_source_style_scheme_get_style ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-style" since="2.0"/>
509
+ <keyword type="struct" name="GtkSourceStyleScheme" link="GtkSourceStyleScheme.html#GtkSourceStyleScheme-struct"/>
510
+ <keyword type="property" name="The “description” property" link="GtkSourceStyleScheme.html#GtkSourceStyleScheme--description"/>
511
+ <keyword type="property" name="The “filename” property" link="GtkSourceStyleScheme.html#GtkSourceStyleScheme--filename"/>
512
+ <keyword type="property" name="The “id” property" link="GtkSourceStyleScheme.html#GtkSourceStyleScheme--id"/>
513
+ <keyword type="property" name="The “name” property" link="GtkSourceStyleScheme.html#GtkSourceStyleScheme--name"/>
514
+ <keyword type="function" name="gtk_source_style_scheme_manager_new ()" link="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-new"/>
515
+ <keyword type="function" name="gtk_source_style_scheme_manager_get_default ()" link="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-default"/>
516
+ <keyword type="function" name="gtk_source_style_scheme_manager_set_search_path ()" link="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-set-search-path"/>
517
+ <keyword type="function" name="gtk_source_style_scheme_manager_append_search_path ()" link="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-append-search-path"/>
518
+ <keyword type="function" name="gtk_source_style_scheme_manager_prepend_search_path ()" link="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-prepend-search-path"/>
519
+ <keyword type="function" name="gtk_source_style_scheme_manager_get_search_path ()" link="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-search-path"/>
520
+ <keyword type="function" name="gtk_source_style_scheme_manager_get_scheme_ids ()" link="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-scheme-ids"/>
521
+ <keyword type="function" name="gtk_source_style_scheme_manager_get_scheme ()" link="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-scheme"/>
522
+ <keyword type="function" name="gtk_source_style_scheme_manager_force_rescan ()" link="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-force-rescan"/>
523
+ <keyword type="struct" name="GtkSourceStyleSchemeManager" link="GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager-struct"/>
524
+ <keyword type="property" name="The “scheme-ids” property" link="GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager--scheme-ids"/>
525
+ <keyword type="property" name="The “search-path” property" link="GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager--search-path"/>
526
+ <keyword type="function" name="gtk_source_undo_manager_can_undo ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-can-undo" since="2.10"/>
527
+ <keyword type="function" name="gtk_source_undo_manager_can_redo ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-can-redo" since="2.10"/>
528
+ <keyword type="function" name="gtk_source_undo_manager_undo ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-undo" since="2.10"/>
529
+ <keyword type="function" name="gtk_source_undo_manager_redo ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-redo" since="2.10"/>
530
+ <keyword type="function" name="gtk_source_undo_manager_begin_not_undoable_action ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-begin-not-undoable-action" since="2.10"/>
531
+ <keyword type="function" name="gtk_source_undo_manager_end_not_undoable_action ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-end-not-undoable-action" since="2.10"/>
532
+ <keyword type="function" name="gtk_source_undo_manager_can_undo_changed ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-can-undo-changed" since="2.10"/>
533
+ <keyword type="function" name="gtk_source_undo_manager_can_redo_changed ()" link="GtkSourceUndoManager.html#gtk-source-undo-manager-can-redo-changed" since="2.10"/>
534
+ <keyword type="struct" name="GtkSourceUndoManager" link="GtkSourceUndoManager.html#GtkSourceUndoManager-struct"/>
535
+ <keyword type="signal" name="The “can-redo-changed” signal" link="GtkSourceUndoManager.html#GtkSourceUndoManager-can-redo-changed"/>
536
+ <keyword type="signal" name="The “can-undo-changed” signal" link="GtkSourceUndoManager.html#GtkSourceUndoManager-can-undo-changed"/>
537
+ <keyword type="function" name="gtk_source_utils_unescape_search_text ()" link="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-unescape-search-text" since="3.10"/>
538
+ <keyword type="function" name="gtk_source_utils_escape_search_text ()" link="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-escape-search-text" since="3.10"/>
539
+ <keyword type="" name="GtkSourceView as GtkBuildable" link="GtkSourceView.html#id-1.2.30.10.3"/>
540
+ <keyword type="function" name="gtk_source_view_new ()" link="GtkSourceView.html#gtk-source-view-new"/>
541
+ <keyword type="function" name="gtk_source_view_new_with_buffer ()" link="GtkSourceView.html#gtk-source-view-new-with-buffer"/>
542
+ <keyword type="function" name="gtk_source_view_set_auto_indent ()" link="GtkSourceView.html#gtk-source-view-set-auto-indent"/>
543
+ <keyword type="function" name="gtk_source_view_get_auto_indent ()" link="GtkSourceView.html#gtk-source-view-get-auto-indent"/>
544
+ <keyword type="function" name="gtk_source_view_set_indent_on_tab ()" link="GtkSourceView.html#gtk-source-view-set-indent-on-tab" since="1.8"/>
545
+ <keyword type="function" name="gtk_source_view_get_indent_on_tab ()" link="GtkSourceView.html#gtk-source-view-get-indent-on-tab" since="1.8"/>
546
+ <keyword type="function" name="gtk_source_view_set_indent_width ()" link="GtkSourceView.html#gtk-source-view-set-indent-width"/>
547
+ <keyword type="function" name="gtk_source_view_get_indent_width ()" link="GtkSourceView.html#gtk-source-view-get-indent-width"/>
548
+ <keyword type="function" name="gtk_source_view_set_insert_spaces_instead_of_tabs ()" link="GtkSourceView.html#gtk-source-view-set-insert-spaces-instead-of-tabs"/>
549
+ <keyword type="function" name="gtk_source_view_get_insert_spaces_instead_of_tabs ()" link="GtkSourceView.html#gtk-source-view-get-insert-spaces-instead-of-tabs"/>
550
+ <keyword type="function" name="gtk_source_view_set_smart_home_end ()" link="GtkSourceView.html#gtk-source-view-set-smart-home-end"/>
551
+ <keyword type="function" name="gtk_source_view_get_smart_home_end ()" link="GtkSourceView.html#gtk-source-view-get-smart-home-end"/>
552
+ <keyword type="function" name="gtk_source_view_set_mark_attributes ()" link="GtkSourceView.html#gtk-source-view-set-mark-attributes"/>
553
+ <keyword type="function" name="gtk_source_view_get_mark_attributes ()" link="GtkSourceView.html#gtk-source-view-get-mark-attributes"/>
554
+ <keyword type="function" name="gtk_source_view_set_highlight_current_line ()" link="GtkSourceView.html#gtk-source-view-set-highlight-current-line"/>
555
+ <keyword type="function" name="gtk_source_view_get_highlight_current_line ()" link="GtkSourceView.html#gtk-source-view-get-highlight-current-line"/>
556
+ <keyword type="function" name="gtk_source_view_set_show_line_marks ()" link="GtkSourceView.html#gtk-source-view-set-show-line-marks" since="2.2"/>
557
+ <keyword type="function" name="gtk_source_view_get_show_line_marks ()" link="GtkSourceView.html#gtk-source-view-get-show-line-marks" since="2.2"/>
558
+ <keyword type="function" name="gtk_source_view_set_show_line_numbers ()" link="GtkSourceView.html#gtk-source-view-set-show-line-numbers"/>
559
+ <keyword type="function" name="gtk_source_view_get_show_line_numbers ()" link="GtkSourceView.html#gtk-source-view-get-show-line-numbers"/>
560
+ <keyword type="function" name="gtk_source_view_set_show_right_margin ()" link="GtkSourceView.html#gtk-source-view-set-show-right-margin"/>
561
+ <keyword type="function" name="gtk_source_view_get_show_right_margin ()" link="GtkSourceView.html#gtk-source-view-get-show-right-margin"/>
562
+ <keyword type="function" name="gtk_source_view_set_right_margin_position ()" link="GtkSourceView.html#gtk-source-view-set-right-margin-position"/>
563
+ <keyword type="function" name="gtk_source_view_get_right_margin_position ()" link="GtkSourceView.html#gtk-source-view-get-right-margin-position"/>
564
+ <keyword type="function" name="gtk_source_view_set_tab_width ()" link="GtkSourceView.html#gtk-source-view-set-tab-width"/>
565
+ <keyword type="function" name="gtk_source_view_get_tab_width ()" link="GtkSourceView.html#gtk-source-view-get-tab-width"/>
566
+ <keyword type="function" name="gtk_source_view_set_draw_spaces ()" link="GtkSourceView.html#gtk-source-view-set-draw-spaces"/>
567
+ <keyword type="function" name="gtk_source_view_get_draw_spaces ()" link="GtkSourceView.html#gtk-source-view-get-draw-spaces"/>
568
+ <keyword type="function" name="gtk_source_view_get_completion ()" link="GtkSourceView.html#gtk-source-view-get-completion"/>
569
+ <keyword type="function" name="gtk_source_view_get_gutter ()" link="GtkSourceView.html#gtk-source-view-get-gutter" since="2.8"/>
570
+ <keyword type="function" name="gtk_source_view_get_visual_column ()" link="GtkSourceView.html#gtk-source-view-get-visual-column"/>
571
+ <keyword type="struct" name="GtkSourceView" link="GtkSourceView.html#GtkSourceView-struct"/>
572
+ <keyword type="enum" name="enum GtkSourceSmartHomeEndType" link="GtkSourceView.html#GtkSourceSmartHomeEndType"/>
573
+ <keyword type="enum" name="enum GtkSourceDrawSpacesFlags" link="GtkSourceView.html#GtkSourceDrawSpacesFlags"/>
574
+ <keyword type="enum" name="enum GtkSourceViewGutterPosition" link="GtkSourceView.html#GtkSourceViewGutterPosition"/>
575
+ <keyword type="property" name="The “auto-indent” property" link="GtkSourceView.html#GtkSourceView--auto-indent"/>
576
+ <keyword type="property" name="The “completion” property" link="GtkSourceView.html#GtkSourceView--completion"/>
577
+ <keyword type="property" name="The “draw-spaces” property" link="GtkSourceView.html#GtkSourceView--draw-spaces"/>
578
+ <keyword type="property" name="The “highlight-current-line” property" link="GtkSourceView.html#GtkSourceView--highlight-current-line"/>
579
+ <keyword type="property" name="The “indent-on-tab” property" link="GtkSourceView.html#GtkSourceView--indent-on-tab"/>
580
+ <keyword type="property" name="The “indent-width” property" link="GtkSourceView.html#GtkSourceView--indent-width"/>
581
+ <keyword type="property" name="The “insert-spaces-instead-of-tabs” property" link="GtkSourceView.html#GtkSourceView--insert-spaces-instead-of-tabs"/>
582
+ <keyword type="property" name="The “right-margin-position” property" link="GtkSourceView.html#GtkSourceView--right-margin-position"/>
583
+ <keyword type="property" name="The “show-line-marks” property" link="GtkSourceView.html#GtkSourceView--show-line-marks"/>
584
+ <keyword type="property" name="The “show-line-numbers” property" link="GtkSourceView.html#GtkSourceView--show-line-numbers"/>
585
+ <keyword type="property" name="The “show-right-margin” property" link="GtkSourceView.html#GtkSourceView--show-right-margin"/>
586
+ <keyword type="property" name="The “smart-home-end” property" link="GtkSourceView.html#GtkSourceView--smart-home-end"/>
587
+ <keyword type="property" name="The “tab-width” property" link="GtkSourceView.html#GtkSourceView--tab-width"/>
588
+ <keyword type="signal" name="The “line-mark-activated” signal" link="GtkSourceView.html#GtkSourceView-line-mark-activated"/>
589
+ <keyword type="signal" name="The “move-lines” signal" link="GtkSourceView.html#GtkSourceView-move-lines"/>
590
+ <keyword type="signal" name="The “move-words” signal" link="GtkSourceView.html#GtkSourceView-move-words"/>
591
+ <keyword type="signal" name="The “redo” signal" link="GtkSourceView.html#GtkSourceView-redo"/>
592
+ <keyword type="signal" name="The “show-completion” signal" link="GtkSourceView.html#GtkSourceView-show-completion"/>
593
+ <keyword type="signal" name="The “smart-home-end” signal" link="GtkSourceView.html#GtkSourceView-smart-home-end"/>
594
+ <keyword type="signal" name="The “undo” signal" link="GtkSourceView.html#GtkSourceView-undo"/>
595
+ <keyword type="" name="Simple contexts" link="lang-reference.html#id-1.3.3.13.5"/>
596
+ <keyword type="" name="Container contexts" link="lang-reference.html#id-1.3.3.13.6"/>
597
+ <keyword type="" name="Sub-pattern contexts" link="lang-reference.html#id-1.3.3.13.7"/>
598
+ <keyword type="" name="Reference contexts" link="lang-reference.html#id-1.3.3.13.8"/>
599
+ <keyword type="" name="Keyword contexts" link="lang-reference.html#id-1.3.3.13.9"/>
600
+ </functions>
601
+ </book>