gtksourceview3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (562) hide show
  1. data/README +29 -0
  2. data/Rakefile +29 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +76 -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 +64 -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 +43 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +54 -0
  24. data/extconf.rb +49 -0
  25. data/lib/1.8/gtksourceview3.so +0 -0
  26. data/lib/1.9/gtksourceview3.so +0 -0
  27. data/lib/gtksourceview3.rb +20 -0
  28. data/lib/gtksourceview3/deprecated.rb +47 -0
  29. data/sample/sourcelanguagemanager.rb +21 -0
  30. data/sample/test.rb +32 -0
  31. data/test/run-test.rb +33 -0
  32. data/test/test_source_view.rb +17 -0
  33. data/vendor/local/bin/libgtksourceview-3.0-0.dll +0 -0
  34. data/vendor/local/bin/libxml2-2.dll +0 -0
  35. data/vendor/local/bin/xmlcatalog.exe +0 -0
  36. data/vendor/local/bin/xmllint.exe +0 -0
  37. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +66 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +46 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +199 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +129 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +94 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +73 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +71 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +76 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +118 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +222 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +85 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +87 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +85 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +99 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +176 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +41 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +93 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +89 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +62 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +77 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +55 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +223 -0
  62. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  63. data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
  64. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  65. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  66. data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
  67. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  68. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  69. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  70. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  71. data/vendor/local/include/libxml2/libxml/dict.h +80 -0
  72. data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
  73. data/vendor/local/include/libxml2/libxml/entities.h +150 -0
  74. data/vendor/local/include/libxml2/libxml/globals.h +502 -0
  75. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  76. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  77. data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
  78. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  79. data/vendor/local/include/libxml2/libxml/parser.h +1240 -0
  80. data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
  81. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  82. data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
  83. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  84. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  85. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  86. data/vendor/local/include/libxml2/libxml/tree.h +1303 -0
  87. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  88. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  89. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  90. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  91. data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
  92. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  93. data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
  94. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  95. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  96. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  97. data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
  98. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  99. data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
  100. data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
  101. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  102. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  103. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  104. data/vendor/local/include/libxml2/libxml/xmlversion.h +480 -0
  105. data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
  106. data/vendor/local/include/libxml2/libxml/xpath.h +550 -0
  107. data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
  108. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  109. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  110. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  111. data/vendor/local/lib/libxml2.def +1659 -0
  112. data/vendor/local/lib/libxml2.dll.a +0 -0
  113. data/vendor/local/lib/libxml2.lib +0 -0
  114. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  154. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  155. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  156. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  157. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  158. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  159. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  160. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  161. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  162. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  163. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  164. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  165. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  166. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  167. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  168. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  169. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  170. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  171. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  172. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  173. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  174. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  175. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  176. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  177. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  178. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  179. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  180. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  181. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  182. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  183. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  184. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  185. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  186. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  187. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  188. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  189. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  190. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  191. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  192. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  193. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  194. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  195. data/vendor/local/manifest/libxml2-dev_2.9.0-1_win32.mft +268 -0
  196. data/vendor/local/manifest/libxml2_2.9.0-1_win32.mft +2 -0
  197. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  198. data/vendor/local/share/doc/libxml2-2.9.0/Copyright +27 -0
  199. data/vendor/local/share/doc/libxml2-2.9.0/examples/testHTML.c +880 -0
  200. data/vendor/local/share/doc/libxml2-2.9.0/examples/testSAX.c +1198 -0
  201. data/vendor/local/share/doc/libxml2-2.9.0/examples/testXPath.c +229 -0
  202. data/vendor/local/share/doc/libxml2-2.9.0/examples/xmllint.c +3770 -0
  203. data/vendor/local/share/doc/libxml2-2.9.0/html/DOM.gif +0 -0
  204. data/vendor/local/share/doc/libxml2-2.9.0/html/FAQ.html +282 -0
  205. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-180x168.gif +0 -0
  206. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-90x34.gif +0 -0
  207. data/vendor/local/share/doc/libxml2-2.9.0/html/encoding.html +207 -0
  208. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xml +751 -0
  209. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xsl +174 -0
  210. data/vendor/local/share/doc/libxml2-2.9.0/html/html/book1.html +13 -0
  211. data/vendor/local/share/doc/libxml2-2.9.0/html/html/home.png +0 -0
  212. data/vendor/local/share/doc/libxml2-2.9.0/html/html/index.html +13 -0
  213. data/vendor/local/share/doc/libxml2-2.9.0/html/html/left.png +0 -0
  214. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-DOCBparser.html +51 -0
  215. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLparser.html +184 -0
  216. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLtree.html +73 -0
  217. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX.html +125 -0
  218. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX2.html +128 -0
  219. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-c14n.html +38 -0
  220. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-catalog.html +142 -0
  221. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-chvalid.html +72 -0
  222. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-debugXML.html +120 -0
  223. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-dict.html +58 -0
  224. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-encoding.html +124 -0
  225. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-entities.html +79 -0
  226. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-globals.html +152 -0
  227. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-hash.html +116 -0
  228. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-lib.html +13 -0
  229. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-list.html +120 -0
  230. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanoftp.html +94 -0
  231. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanohttp.html +65 -0
  232. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parser.html +559 -0
  233. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parserInternals.html +322 -0
  234. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-pattern.html +76 -0
  235. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-relaxng.html +162 -0
  236. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schemasInternals.html +373 -0
  237. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schematron.html +81 -0
  238. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-threads.html +72 -0
  239. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-tree.html +989 -0
  240. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-uri.html +73 -0
  241. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-valid.html +289 -0
  242. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xinclude.html +59 -0
  243. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xlink.html +82 -0
  244. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlIO.html +212 -0
  245. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlautomata.html +85 -0
  246. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlerror.html +864 -0
  247. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlexports.html +20 -0
  248. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmemory.html +107 -0
  249. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmodule.html +38 -0
  250. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlreader.html +330 -0
  251. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlregexp.html +143 -0
  252. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlsave.html +60 -0
  253. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemas.html +185 -0
  254. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemastypes.html +123 -0
  255. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlstring.html +108 -0
  256. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlunicode.html +512 -0
  257. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlversion.html +62 -0
  258. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlwriter.html +261 -0
  259. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpath.html +310 -0
  260. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpathInternals.html +394 -0
  261. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpointer.html +83 -0
  262. data/vendor/local/share/doc/libxml2-2.9.0/html/html/right.png +0 -0
  263. data/vendor/local/share/doc/libxml2-2.9.0/html/html/up.png +0 -0
  264. data/vendor/local/share/doc/libxml2-2.9.0/html/index.html +14 -0
  265. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.c +166 -0
  266. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.res +5 -0
  267. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.c +58 -0
  268. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.res +2 -0
  269. data/vendor/local/share/doc/libxml2-2.9.0/html/libxml.gif +0 -0
  270. data/vendor/local/share/doc/libxml2-2.9.0/html/parse1.c +56 -0
  271. data/vendor/local/share/doc/libxml2-2.9.0/html/parse2.c +72 -0
  272. data/vendor/local/share/doc/libxml2-2.9.0/html/parse3.c +60 -0
  273. data/vendor/local/share/doc/libxml2-2.9.0/html/parse4.c +143 -0
  274. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.c +107 -0
  275. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.res +14 -0
  276. data/vendor/local/share/doc/libxml2-2.9.0/html/reader2.c +122 -0
  277. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.c +120 -0
  278. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.res +13 -0
  279. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.c +122 -0
  280. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.res +3 -0
  281. data/vendor/local/share/doc/libxml2-2.9.0/html/redhat.gif +0 -0
  282. data/vendor/local/share/doc/libxml2-2.9.0/html/smallfootonly.gif +0 -0
  283. data/vendor/local/share/doc/libxml2-2.9.0/html/structure.gif +0 -0
  284. data/vendor/local/share/doc/libxml2-2.9.0/html/test1.xml +1 -0
  285. data/vendor/local/share/doc/libxml2-2.9.0/html/test2.xml +13 -0
  286. data/vendor/local/share/doc/libxml2-2.9.0/html/test3.xml +39 -0
  287. data/vendor/local/share/doc/libxml2-2.9.0/html/testWriter.c +1198 -0
  288. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.c +94 -0
  289. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.res +4 -0
  290. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.c +118 -0
  291. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.res +18 -0
  292. data/vendor/local/share/doc/libxml2-2.9.0/html/tst.xml +7 -0
  293. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apa.html +8 -0
  294. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apb.html +14 -0
  295. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apc.html +82 -0
  296. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apd.html +76 -0
  297. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ape.html +78 -0
  298. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apf.html +67 -0
  299. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apg.html +75 -0
  300. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/aph.html +76 -0
  301. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/api.html +4 -0
  302. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s02.html +14 -0
  303. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s03.html +47 -0
  304. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s04.html +54 -0
  305. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s05.html +55 -0
  306. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s06.html +35 -0
  307. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s07.html +30 -0
  308. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s08.html +38 -0
  309. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s09.html +63 -0
  310. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/blank.png +0 -0
  311. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/1.png +0 -0
  312. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/10.png +0 -0
  313. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/2.png +0 -0
  314. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/3.png +0 -0
  315. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/4.png +0 -0
  316. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/5.png +0 -0
  317. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/6.png +0 -0
  318. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/7.png +0 -0
  319. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/8.png +0 -0
  320. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/9.png +0 -0
  321. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/caution.png +0 -0
  322. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/draft.png +0 -0
  323. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/home.png +0 -0
  324. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/important.png +0 -0
  325. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/next.png +0 -0
  326. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/note.png +0 -0
  327. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/prev.png +0 -0
  328. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/tip.png +0 -0
  329. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-blank.png +0 -0
  330. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-minus.png +0 -0
  331. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-plus.png +0 -0
  332. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/up.png +0 -0
  333. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/warning.png +0 -0
  334. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddattribute.c +64 -0
  335. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddkeyword.c +75 -0
  336. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeconvert.c +73 -0
  337. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includegetattribute.c +72 -0
  338. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includekeyword.c +79 -0
  339. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includexpath.c +74 -0
  340. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/index.html +14 -0
  341. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ix01.html +1 -0
  342. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/xmltutorial.pdf +1336 -0
  343. data/vendor/local/share/doc/libxml2-2.9.0/html/w3c.png +0 -0
  344. data/vendor/local/share/doc/libxml2-2.9.0/html/writer.xml +2 -0
  345. data/vendor/local/share/doc/libxml2-2.9.0/html/xml.html +5715 -0
  346. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.c +250 -0
  347. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.res +5 -0
  348. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.c +190 -0
  349. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.res +30 -0
  350. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +1346 -0
  351. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +756 -0
  352. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +300 -0
  353. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +243 -0
  354. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +282 -0
  355. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +364 -0
  356. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +474 -0
  357. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +288 -0
  358. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +425 -0
  359. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +414 -0
  360. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +250 -0
  361. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +699 -0
  362. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +1822 -0
  363. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +228 -0
  364. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +296 -0
  365. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +357 -0
  366. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +346 -0
  367. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1462 -0
  368. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +80 -0
  369. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +46 -0
  370. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +31 -0
  371. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +1538 -0
  372. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRenderer.html +956 -0
  373. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html +199 -0
  374. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererText.html +137 -0
  375. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +445 -0
  376. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  377. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +117 -0
  378. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +578 -0
  379. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +771 -0
  380. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +651 -0
  381. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  382. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  383. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn01.html +101 -0
  384. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn02.html +53 -0
  385. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +252 -0
  386. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +266 -0
  387. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  388. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  389. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  390. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  391. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  392. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  393. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
  394. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  395. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  396. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  397. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  398. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  399. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  400. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  401. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
  402. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
  403. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  404. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  405. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  406. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  407. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
  408. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  409. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
  410. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
  411. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  412. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  413. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  414. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  415. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  416. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1596 -0
  417. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  418. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  419. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  420. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  421. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
  422. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  423. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +952 -0
  424. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  425. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  426. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  427. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
  428. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  429. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
  430. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
  431. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  432. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  433. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  434. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +287 -0
  435. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
  436. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +532 -0
  437. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  438. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  439. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3569 -0
  440. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  441. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  442. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  443. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +130 -0
  444. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  445. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  446. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  447. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +329 -0
  448. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  449. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  450. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  451. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  452. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  453. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  454. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +92 -0
  455. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  456. data/vendor/local/share/gtksourceview-3.0/language-specs/check-language.sh +32 -0
  457. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  458. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +456 -0
  459. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +114 -0
  460. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  461. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +537 -0
  462. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  463. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +296 -0
  464. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +252 -0
  465. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  466. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  467. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  468. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  469. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  470. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  471. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  472. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  473. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  474. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +115 -0
  475. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  476. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +512 -0
  477. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  478. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  479. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  480. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  481. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  482. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  483. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  484. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  485. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  486. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  487. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +180 -0
  488. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  489. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  490. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  491. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  492. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  493. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +338 -0
  494. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  495. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  496. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  497. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  498. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +300 -0
  499. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  500. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  501. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  502. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  503. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  504. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  505. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  506. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  507. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  508. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  509. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  510. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  511. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  512. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  513. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  514. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  515. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  516. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  517. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  518. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  519. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1028 -0
  520. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +361 -0
  521. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  522. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  523. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  524. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +103 -0
  525. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  526. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +413 -0
  527. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  528. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +210 -0
  529. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +591 -0
  530. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  531. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  532. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  533. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  534. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  535. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  536. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  537. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  538. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  539. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  540. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  541. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  542. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +464 -0
  543. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  544. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  545. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  546. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  547. data/vendor/local/share/gtksourceview-3.0/styles/check-style.sh +20 -0
  548. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +107 -0
  549. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +135 -0
  550. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +161 -0
  551. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +117 -0
  552. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +139 -0
  553. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +117 -0
  554. data/vendor/local/share/license/gtksourceview/AUTHORS +12 -0
  555. data/vendor/local/share/license/gtksourceview/COPYING +340 -0
  556. data/vendor/local/share/man/man1/xml2-config.1 +30 -0
  557. data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
  558. data/vendor/local/share/man/man1/xmllint.1 +427 -0
  559. data/vendor/local/share/man/man3/libxml.3 +71 -0
  560. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.log +867 -0
  561. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.sh +68 -0
  562. metadata +642 -0
@@ -0,0 +1,80 @@
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>Annotation Glossary</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.77.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="api-index-3-0.html" title="Index of new symbols in 3.0">
10
+ <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
11
+ <link rel="stylesheet" href="style.css" type="text/css">
12
+ </head>
13
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15
+ <tr valign="middle">
16
+ <td><a accesskey="p" href="api-index-3-0.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17
+ <td> </td>
18
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19
+ <th width="100%" align="center">GtkSourceView 3 Reference Manual</th>
20
+ <td> </td>
21
+ </tr>
22
+ <tr><td colspan="5" class="shortcuts">
23
+ <a class="shortcut" href="#glsO">O</a>
24
+  | 
25
+ <a class="shortcut" href="#glsA">A</a>
26
+  | 
27
+ <a class="shortcut" href="#glsT">T</a>
28
+  | 
29
+ <a class="shortcut" href="#glsA">A</a>
30
+  | 
31
+ <a class="shortcut" href="#glsE">E</a>
32
+  | 
33
+ <a class="shortcut" href="#glsT">T</a>
34
+ </td></tr>
35
+ </table>
36
+ <div class="glossary">
37
+ <div class="titlepage"><div><div><h1 class="title">
38
+ <a name="annotation-glossary"></a>Annotation Glossary</h1></div></div></div>
39
+ <a name="glsO"></a><h3 class="title">O</h3>
40
+ <dt>
41
+ <a name="annotation-glossterm-out"></a>out</dt>
42
+ <dd><p>Parameter for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
43
+ <dt>
44
+ <a name="annotation-glossterm-out%20caller-allocates"></a>out caller-allocates</dt>
45
+ <dd><p>Out parameter, where caller must allocate storage.</p></dd>
46
+ <a name="glsA"></a><h3 class="title">A</h3>
47
+ <dt>
48
+ <a name="annotation-glossterm-allow-none"></a>allow-none</dt>
49
+ <dd><p>NULL is ok, both for passing and for returning.</p></dd>
50
+ <a name="glsT"></a><h3 class="title">T</h3>
51
+ <dt>
52
+ <a name="annotation-glossterm-transfer%20floating"></a>transfer floating</dt>
53
+ <dd><p>Alias for <acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>, used for objects with floating refs.</p></dd>
54
+ <dt>
55
+ <a name="annotation-glossterm-transfer%20none"></a>transfer none</dt>
56
+ <dd><p>Don't free data after the code is done.</p></dd>
57
+ <a name="glsA"></a><h3 class="title">A</h3>
58
+ <dt>
59
+ <a name="annotation-glossterm-array"></a>array</dt>
60
+ <dd><p>Parameter points to an array of items.</p></dd>
61
+ <a name="glsE"></a><h3 class="title">E</h3>
62
+ <dt>
63
+ <a name="annotation-glossterm-element-type"></a>element-type</dt>
64
+ <dd><p>Generics and defining elements of containers and arrays.</p></dd>
65
+ <a name="glsT"></a><h3 class="title">T</h3>
66
+ <dt>
67
+ <a name="annotation-glossterm-transfer%20container"></a>transfer container</dt>
68
+ <dd><p>Free data container after the code is done.</p></dd>
69
+ <dt>
70
+ <a name="annotation-glossterm-transfer%20full"></a>transfer full</dt>
71
+ <dd><p>Free data after the code is done.</p></dd>
72
+ <dt>
73
+ <a name="annotation-glossterm-type"></a>type</dt>
74
+ <dd><p>Override the parsed C type with given type.</p></dd>
75
+ </div>
76
+ <div class="footer">
77
+ <hr>
78
+ Generated by GTK-Doc V1.18.1</div>
79
+ </body>
80
+ </html>
@@ -0,0 +1,46 @@
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>Index of new symbols in 3.0</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.77.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="api-index-deprecated.html" title="Index of deprecated symbols">
10
+ <link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
11
+ <meta name="generator" content="GTK-Doc V1.18.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="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="api-index-deprecated.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td> </td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GtkSourceView 3 Reference Manual</th>
21
+ <td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts"><a class="shortcut" href="#idxS">S</a></td></tr>
24
+ </table>
25
+ <div class="index">
26
+ <div class="titlepage"><div><div><h1 class="title">
27
+ <a name="api-index-3-0"></a>Index of new symbols in 3.0</h1></div></div></div>
28
+ <a name="idx"></a><a name="idxS"></a><h3 class="title">S</h3>
29
+ <dt>
30
+ <a class="link" href="GtkSourceView.html#GtkSourceView-move-words" title='The "move-words" signal'>GtkSourceView::move-words</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
31
+ </dt>
32
+ <dd></dd>
33
+ <dt>
34
+ <a class="link" href="GtkSourceView.html#GtkSourceView-smart-home-end" title='The "smart-home-end" signal'>GtkSourceView::smart-home-end</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
35
+ </dt>
36
+ <dd></dd>
37
+ <dt>
38
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-insert" title="gtk_source_gutter_insert ()">gtk_source_gutter_insert</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
39
+ </dt>
40
+ <dd></dd>
41
+ </div>
42
+ <div class="footer">
43
+ <hr>
44
+ Generated by GTK-Doc V1.18.1</div>
45
+ </body>
46
+ </html>
@@ -0,0 +1,31 @@
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>Index of deprecated symbols</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.77.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="api-index-full.html" title="Index of all symbols">
10
+ <link rel="next" href="api-index-3-0.html" title="Index of new symbols in 3.0">
11
+ <meta name="generator" content="GTK-Doc V1.18.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="2"><tr valign="middle">
16
+ <td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17
+ <td> </td>
18
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19
+ <th width="100%" align="center">GtkSourceView 3 Reference Manual</th>
20
+ <td><a accesskey="n" href="api-index-3-0.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="index">
23
+ <div class="titlepage"><div><div><h1 class="title">
24
+ <a name="api-index-deprecated"></a>Index of deprecated symbols</h1></div></div></div>
25
+ <a name="idx"></a>
26
+ </div>
27
+ <div class="footer">
28
+ <hr>
29
+ Generated by GTK-Doc V1.18.1</div>
30
+ </body>
31
+ </html>
@@ -0,0 +1,1538 @@
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>Index of all symbols</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.77.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="style-reference.html" title="Style Scheme Definition Reference">
10
+ <link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">
11
+ <meta name="generator" content="GTK-Doc V1.18.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="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="style-reference.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td> </td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GtkSourceView 3 Reference Manual</th>
21
+ <td><a accesskey="n" href="api-index-deprecated.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts"><a class="shortcut" href="#idxS">S</a></td></tr>
24
+ </table>
25
+ <div class="index">
26
+ <div class="titlepage"><div><div><h1 class="title">
27
+ <a name="api-index-full"></a>Index of all symbols</h1></div></div></div>
28
+ <a name="idx"></a><a name="idxS"></a><h3 class="title">S</h3>
29
+ <dt>
30
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer-struct" title="GtkSourceBuffer">GtkSourceBuffer</a>, struct in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
31
+ </dt>
32
+ <dd></dd>
33
+ <dt>
34
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer-bracket-matched" title='The "bracket-matched" signal'>GtkSourceBuffer::bracket-matched</a>, object signal in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
35
+ </dt>
36
+ <dd></dd>
37
+ <dt>
38
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer-highlight-updated" title='The "highlight-updated" signal'>GtkSourceBuffer::highlight-updated</a>, object signal in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
39
+ </dt>
40
+ <dd></dd>
41
+ <dt>
42
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer-redo" title='The "redo" signal'>GtkSourceBuffer::redo</a>, object signal in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
43
+ </dt>
44
+ <dd></dd>
45
+ <dt>
46
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer-source-mark-updated" title='The "source-mark-updated" signal'>GtkSourceBuffer::source-mark-updated</a>, object signal in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
47
+ </dt>
48
+ <dd></dd>
49
+ <dt>
50
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer-undo" title='The "undo" signal'>GtkSourceBuffer::undo</a>, object signal in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
51
+ </dt>
52
+ <dd></dd>
53
+ <dt>
54
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--can-redo" title='The "can-redo" property'>GtkSourceBuffer:can-redo</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
55
+ </dt>
56
+ <dd></dd>
57
+ <dt>
58
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--can-undo" title='The "can-undo" property'>GtkSourceBuffer:can-undo</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
59
+ </dt>
60
+ <dd></dd>
61
+ <dt>
62
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--highlight-matching-brackets" title='The "highlight-matching-brackets" property'>GtkSourceBuffer:highlight-matching-brackets</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
63
+ </dt>
64
+ <dd></dd>
65
+ <dt>
66
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--highlight-syntax" title='The "highlight-syntax" property'>GtkSourceBuffer:highlight-syntax</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
67
+ </dt>
68
+ <dd></dd>
69
+ <dt>
70
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--language" title='The "language" property'>GtkSourceBuffer:language</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
71
+ </dt>
72
+ <dd></dd>
73
+ <dt>
74
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--max-undo-levels" title='The "max-undo-levels" property'>GtkSourceBuffer:max-undo-levels</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
75
+ </dt>
76
+ <dd></dd>
77
+ <dt>
78
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--style-scheme" title='The "style-scheme" property'>GtkSourceBuffer:style-scheme</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
79
+ </dt>
80
+ <dd></dd>
81
+ <dt>
82
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--undo-manager" title='The "undo-manager" property'>GtkSourceBuffer:undo-manager</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
83
+ </dt>
84
+ <dd></dd>
85
+ <dt>
86
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion-struct" title="GtkSourceCompletion">GtkSourceCompletion</a>, struct in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
87
+ </dt>
88
+ <dd></dd>
89
+ <dt>
90
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion-activate-proposal" title='The "activate-proposal" signal'>GtkSourceCompletion::activate-proposal</a>, object signal in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
91
+ </dt>
92
+ <dd></dd>
93
+ <dt>
94
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion-hide" title='The "hide" signal'>GtkSourceCompletion::hide</a>, object signal in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
95
+ </dt>
96
+ <dd></dd>
97
+ <dt>
98
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion-move-cursor" title='The "move-cursor" signal'>GtkSourceCompletion::move-cursor</a>, object signal in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
99
+ </dt>
100
+ <dd></dd>
101
+ <dt>
102
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion-move-page" title='The "move-page" signal'>GtkSourceCompletion::move-page</a>, object signal in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
103
+ </dt>
104
+ <dd></dd>
105
+ <dt>
106
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion-populate-context" title='The "populate-context" signal'>GtkSourceCompletion::populate-context</a>, object signal in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
107
+ </dt>
108
+ <dd></dd>
109
+ <dt>
110
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion-show" title='The "show" signal'>GtkSourceCompletion::show</a>, object signal in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
111
+ </dt>
112
+ <dd></dd>
113
+ <dt>
114
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion--accelerators" title='The "accelerators" property'>GtkSourceCompletion:accelerators</a>, object property in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
115
+ </dt>
116
+ <dd></dd>
117
+ <dt>
118
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion--auto-complete-delay" title='The "auto-complete-delay" property'>GtkSourceCompletion:auto-complete-delay</a>, object property in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
119
+ </dt>
120
+ <dd></dd>
121
+ <dt>
122
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion--proposal-page-size" title='The "proposal-page-size" property'>GtkSourceCompletion:proposal-page-size</a>, object property in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
123
+ </dt>
124
+ <dd></dd>
125
+ <dt>
126
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion--provider-page-size" title='The "provider-page-size" property'>GtkSourceCompletion:provider-page-size</a>, object property in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
127
+ </dt>
128
+ <dd></dd>
129
+ <dt>
130
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion--remember-info-visibility" title='The "remember-info-visibility" property'>GtkSourceCompletion:remember-info-visibility</a>, object property in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
131
+ </dt>
132
+ <dd></dd>
133
+ <dt>
134
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion--select-on-show" title='The "select-on-show" property'>GtkSourceCompletion:select-on-show</a>, object property in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
135
+ </dt>
136
+ <dd></dd>
137
+ <dt>
138
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion--show-headers" title='The "show-headers" property'>GtkSourceCompletion:show-headers</a>, object property in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
139
+ </dt>
140
+ <dd></dd>
141
+ <dt>
142
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion--show-icons" title='The "show-icons" property'>GtkSourceCompletion:show-icons</a>, object property in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
143
+ </dt>
144
+ <dd></dd>
145
+ <dt>
146
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion--view" title='The "view" property'>GtkSourceCompletion:view</a>, object property in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
147
+ </dt>
148
+ <dd></dd>
149
+ <dt>
150
+ <a class="link" href="GtkSourceCompletionContext.html#GtkSourceCompletionActivation" title="enum GtkSourceCompletionActivation">GtkSourceCompletionActivation</a>, enum in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
151
+ </dt>
152
+ <dd></dd>
153
+ <dt>
154
+ <a class="link" href="GtkSourceCompletionContext.html#GtkSourceCompletionContext-struct" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>, struct in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
155
+ </dt>
156
+ <dd></dd>
157
+ <dt>
158
+ <a class="link" href="GtkSourceCompletionContext.html#GtkSourceCompletionContext-cancelled" title='The "cancelled" signal'>GtkSourceCompletionContext::cancelled</a>, object signal in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
159
+ </dt>
160
+ <dd></dd>
161
+ <dt>
162
+ <a class="link" href="GtkSourceCompletionContext.html#GtkSourceCompletionContext--activation" title='The "activation" property'>GtkSourceCompletionContext:activation</a>, object property in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
163
+ </dt>
164
+ <dd></dd>
165
+ <dt>
166
+ <a class="link" href="GtkSourceCompletionContext.html#GtkSourceCompletionContext--completion" title='The "completion" property'>GtkSourceCompletionContext:completion</a>, object property in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
167
+ </dt>
168
+ <dd></dd>
169
+ <dt>
170
+ <a class="link" href="GtkSourceCompletionContext.html#GtkSourceCompletionContext--iter" title='The "iter" property'>GtkSourceCompletionContext:iter</a>, object property in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
171
+ </dt>
172
+ <dd></dd>
173
+ <dt>
174
+ <a class="link" href="GtkSourceCompletionInfo.html#GtkSourceCompletionInfo-struct" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>, struct in <a class="link" href="GtkSourceCompletionInfo.html" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>
175
+ </dt>
176
+ <dd></dd>
177
+ <dt>
178
+ <a class="link" href="GtkSourceCompletionInfo.html#GtkSourceCompletionInfo-before-show" title='The "before-show" signal'>GtkSourceCompletionInfo::before-show</a>, object signal in <a class="link" href="GtkSourceCompletionInfo.html" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>
179
+ </dt>
180
+ <dd></dd>
181
+ <dt>
182
+ <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem-struct" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>, struct in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
183
+ </dt>
184
+ <dd></dd>
185
+ <dt>
186
+ <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem--icon" title='The "icon" property'>GtkSourceCompletionItem:icon</a>, object property in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
187
+ </dt>
188
+ <dd></dd>
189
+ <dt>
190
+ <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem--info" title='The "info" property'>GtkSourceCompletionItem:info</a>, object property in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
191
+ </dt>
192
+ <dd></dd>
193
+ <dt>
194
+ <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem--label" title='The "label" property'>GtkSourceCompletionItem:label</a>, object property in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
195
+ </dt>
196
+ <dd></dd>
197
+ <dt>
198
+ <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem--markup" title='The "markup" property'>GtkSourceCompletionItem:markup</a>, object property in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
199
+ </dt>
200
+ <dd></dd>
201
+ <dt>
202
+ <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem--text" title='The "text" property'>GtkSourceCompletionItem:text</a>, object property in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
203
+ </dt>
204
+ <dd></dd>
205
+ <dt>
206
+ <a class="link" href="GtkSourceCompletionProposal.html#GtkSourceCompletionProposal-struct" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>, struct in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
207
+ </dt>
208
+ <dd></dd>
209
+ <dt>
210
+ <a class="link" href="GtkSourceCompletionProposal.html#GtkSourceCompletionProposal-changed" title='The "changed" signal'>GtkSourceCompletionProposal::changed</a>, object signal in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
211
+ </dt>
212
+ <dd></dd>
213
+ <dt>
214
+ <a class="link" href="GtkSourceCompletionProvider.html#GtkSourceCompletionProvider-struct" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>, struct in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
215
+ </dt>
216
+ <dd></dd>
217
+ <dt>
218
+ <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags">GtkSourceDrawSpacesFlags</a>, enum in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
219
+ </dt>
220
+ <dd></dd>
221
+ <dt>
222
+ <a class="link" href="GtkSourceGutter.html#GtkSourceGutter-struct" title="GtkSourceGutter">GtkSourceGutter</a>, struct in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
223
+ </dt>
224
+ <dd></dd>
225
+ <dt>
226
+ <a class="link" href="GtkSourceGutter.html#GtkSourceGutter--view" title='The "view" property'>GtkSourceGutter:view</a>, object property in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
227
+ </dt>
228
+ <dd></dd>
229
+ <dt>
230
+ <a class="link" href="GtkSourceGutter.html#GtkSourceGutter--window-type" title='The "window-type" property'>GtkSourceGutter:window-type</a>, object property in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
231
+ </dt>
232
+ <dd></dd>
233
+ <dt>
234
+ <a class="link" href="GtkSourceGutter.html#GtkSourceGutter--xpad" title='The "xpad" property'>GtkSourceGutter:xpad</a>, object property in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
235
+ </dt>
236
+ <dd></dd>
237
+ <dt>
238
+ <a class="link" href="GtkSourceGutter.html#GtkSourceGutter--ypad" title='The "ypad" property'>GtkSourceGutter:ypad</a>, object property in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
239
+ </dt>
240
+ <dd></dd>
241
+ <dt>
242
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#GtkSourceGutterRenderer" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>, struct in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
243
+ </dt>
244
+ <dd></dd>
245
+ <dt>
246
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#GtkSourceGutterRendererAlignmentMode" title="enum GtkSourceGutterRendererAlignmentMode">GtkSourceGutterRendererAlignmentMode</a>, enum in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
247
+ </dt>
248
+ <dd></dd>
249
+ <dt>
250
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>, struct in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
251
+ </dt>
252
+ <dd></dd>
253
+ <dt>
254
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#GtkSourceGutterRendererState" title="enum GtkSourceGutterRendererState">GtkSourceGutterRendererState</a>, enum in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
255
+ </dt>
256
+ <dd></dd>
257
+ <dt>
258
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html#GtkSourceGutterRendererText" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>, struct in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
259
+ </dt>
260
+ <dd></dd>
261
+ <dt>
262
+ <a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage-struct" title="GtkSourceLanguage">GtkSourceLanguage</a>, struct in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
263
+ </dt>
264
+ <dd></dd>
265
+ <dt>
266
+ <a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage--hidden" title='The "hidden" property'>GtkSourceLanguage:hidden</a>, object property in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
267
+ </dt>
268
+ <dd></dd>
269
+ <dt>
270
+ <a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage--id" title='The "id" property'>GtkSourceLanguage:id</a>, object property in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
271
+ </dt>
272
+ <dd></dd>
273
+ <dt>
274
+ <a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage--name" title='The "name" property'>GtkSourceLanguage:name</a>, object property in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
275
+ </dt>
276
+ <dd></dd>
277
+ <dt>
278
+ <a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage--section" title='The "section" property'>GtkSourceLanguage:section</a>, object property in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
279
+ </dt>
280
+ <dd></dd>
281
+ <dt>
282
+ <a class="link" href="GtkSourceLanguageManager.html#GtkSourceLanguageManager-struct" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>, struct in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
283
+ </dt>
284
+ <dd></dd>
285
+ <dt>
286
+ <a class="link" href="GtkSourceLanguageManager.html#GtkSourceLanguageManager--language-ids" title='The "language-ids" property'>GtkSourceLanguageManager:language-ids</a>, object property in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
287
+ </dt>
288
+ <dd></dd>
289
+ <dt>
290
+ <a class="link" href="GtkSourceLanguageManager.html#GtkSourceLanguageManager--search-path" title='The "search-path" property'>GtkSourceLanguageManager:search-path</a>, object property in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
291
+ </dt>
292
+ <dd></dd>
293
+ <dt>
294
+ <a class="link" href="GtkSourceMark.html#GtkSourceMark-struct" title="GtkSourceMark">GtkSourceMark</a>, struct in <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
295
+ </dt>
296
+ <dd></dd>
297
+ <dt>
298
+ <a class="link" href="GtkSourceMark.html#GtkSourceMark--category" title='The "category" property'>GtkSourceMark:category</a>, object property in <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
299
+ </dt>
300
+ <dd></dd>
301
+ <dt>
302
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-struct" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>, struct in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
303
+ </dt>
304
+ <dd></dd>
305
+ <dt>
306
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-markup" title='The "query-tooltip-markup" signal'>GtkSourceMarkAttributes::query-tooltip-markup</a>, object signal in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
307
+ </dt>
308
+ <dd></dd>
309
+ <dt>
310
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-text" title='The "query-tooltip-text" signal'>GtkSourceMarkAttributes::query-tooltip-text</a>, object signal in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
311
+ </dt>
312
+ <dd></dd>
313
+ <dt>
314
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--background" title='The "background" property'>GtkSourceMarkAttributes:background</a>, object property in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
315
+ </dt>
316
+ <dd></dd>
317
+ <dt>
318
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--gicon" title='The "gicon" property'>GtkSourceMarkAttributes:gicon</a>, object property in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
319
+ </dt>
320
+ <dd></dd>
321
+ <dt>
322
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--icon-name" title='The "icon-name" property'>GtkSourceMarkAttributes:icon-name</a>, object property in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
323
+ </dt>
324
+ <dd></dd>
325
+ <dt>
326
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--pixbuf" title='The "pixbuf" property'>GtkSourceMarkAttributes:pixbuf</a>, object property in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
327
+ </dt>
328
+ <dd></dd>
329
+ <dt>
330
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--stock-id" title='The "stock-id" property'>GtkSourceMarkAttributes:stock-id</a>, object property in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
331
+ </dt>
332
+ <dd></dd>
333
+ <dt>
334
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor-struct" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>, struct in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
335
+ </dt>
336
+ <dd></dd>
337
+ <dt>
338
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--body-font-name" title='The "body-font-name" property'>GtkSourcePrintCompositor:body-font-name</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
339
+ </dt>
340
+ <dd></dd>
341
+ <dt>
342
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--buffer" title='The "buffer" property'>GtkSourcePrintCompositor:buffer</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
343
+ </dt>
344
+ <dd></dd>
345
+ <dt>
346
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--footer-font-name" title='The "footer-font-name" property'>GtkSourcePrintCompositor:footer-font-name</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
347
+ </dt>
348
+ <dd></dd>
349
+ <dt>
350
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--header-font-name" title='The "header-font-name" property'>GtkSourcePrintCompositor:header-font-name</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
351
+ </dt>
352
+ <dd></dd>
353
+ <dt>
354
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--highlight-syntax" title='The "highlight-syntax" property'>GtkSourcePrintCompositor:highlight-syntax</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
355
+ </dt>
356
+ <dd></dd>
357
+ <dt>
358
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--line-numbers-font-name" title='The "line-numbers-font-name" property'>GtkSourcePrintCompositor:line-numbers-font-name</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
359
+ </dt>
360
+ <dd></dd>
361
+ <dt>
362
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--n-pages" title='The "n-pages" property'>GtkSourcePrintCompositor:n-pages</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
363
+ </dt>
364
+ <dd></dd>
365
+ <dt>
366
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--print-footer" title='The "print-footer" property'>GtkSourcePrintCompositor:print-footer</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
367
+ </dt>
368
+ <dd></dd>
369
+ <dt>
370
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--print-header" title='The "print-header" property'>GtkSourcePrintCompositor:print-header</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
371
+ </dt>
372
+ <dd></dd>
373
+ <dt>
374
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--print-line-numbers" title='The "print-line-numbers" property'>GtkSourcePrintCompositor:print-line-numbers</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
375
+ </dt>
376
+ <dd></dd>
377
+ <dt>
378
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--tab-width" title='The "tab-width" property'>GtkSourcePrintCompositor:tab-width</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
379
+ </dt>
380
+ <dd></dd>
381
+ <dt>
382
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--wrap-mode" title='The "wrap-mode" property'>GtkSourcePrintCompositor:wrap-mode</a>, object property in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
383
+ </dt>
384
+ <dd></dd>
385
+ <dt>
386
+ <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType">GtkSourceSmartHomeEndType</a>, enum in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
387
+ </dt>
388
+ <dd></dd>
389
+ <dt>
390
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle-struct" title="GtkSourceStyle">GtkSourceStyle</a>, struct in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
391
+ </dt>
392
+ <dd></dd>
393
+ <dt>
394
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--background" title='The "background" property'>GtkSourceStyle:background</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
395
+ </dt>
396
+ <dd></dd>
397
+ <dt>
398
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--background-set" title='The "background-set" property'>GtkSourceStyle:background-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
399
+ </dt>
400
+ <dd></dd>
401
+ <dt>
402
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--bold" title='The "bold" property'>GtkSourceStyle:bold</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
403
+ </dt>
404
+ <dd></dd>
405
+ <dt>
406
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--bold-set" title='The "bold-set" property'>GtkSourceStyle:bold-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
407
+ </dt>
408
+ <dd></dd>
409
+ <dt>
410
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--foreground" title='The "foreground" property'>GtkSourceStyle:foreground</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
411
+ </dt>
412
+ <dd></dd>
413
+ <dt>
414
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--foreground-set" title='The "foreground-set" property'>GtkSourceStyle:foreground-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
415
+ </dt>
416
+ <dd></dd>
417
+ <dt>
418
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--italic" title='The "italic" property'>GtkSourceStyle:italic</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
419
+ </dt>
420
+ <dd></dd>
421
+ <dt>
422
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--italic-set" title='The "italic-set" property'>GtkSourceStyle:italic-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
423
+ </dt>
424
+ <dd></dd>
425
+ <dt>
426
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--line-background" title='The "line-background" property'>GtkSourceStyle:line-background</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
427
+ </dt>
428
+ <dd></dd>
429
+ <dt>
430
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--line-background-set" title='The "line-background-set" property'>GtkSourceStyle:line-background-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
431
+ </dt>
432
+ <dd></dd>
433
+ <dt>
434
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--strikethrough" title='The "strikethrough" property'>GtkSourceStyle:strikethrough</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
435
+ </dt>
436
+ <dd></dd>
437
+ <dt>
438
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--strikethrough-set" title='The "strikethrough-set" property'>GtkSourceStyle:strikethrough-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
439
+ </dt>
440
+ <dd></dd>
441
+ <dt>
442
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--underline" title='The "underline" property'>GtkSourceStyle:underline</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
443
+ </dt>
444
+ <dd></dd>
445
+ <dt>
446
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--underline-set" title='The "underline-set" property'>GtkSourceStyle:underline-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
447
+ </dt>
448
+ <dd></dd>
449
+ <dt>
450
+ <a class="link" href="GtkSourceStyleScheme.html#GtkSourceStyleScheme-struct" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>, struct in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
451
+ </dt>
452
+ <dd></dd>
453
+ <dt>
454
+ <a class="link" href="GtkSourceStyleScheme.html#GtkSourceStyleScheme--description" title='The "description" property'>GtkSourceStyleScheme:description</a>, object property in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
455
+ </dt>
456
+ <dd></dd>
457
+ <dt>
458
+ <a class="link" href="GtkSourceStyleScheme.html#GtkSourceStyleScheme--filename" title='The "filename" property'>GtkSourceStyleScheme:filename</a>, object property in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
459
+ </dt>
460
+ <dd></dd>
461
+ <dt>
462
+ <a class="link" href="GtkSourceStyleScheme.html#GtkSourceStyleScheme--id" title='The "id" property'>GtkSourceStyleScheme:id</a>, object property in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
463
+ </dt>
464
+ <dd></dd>
465
+ <dt>
466
+ <a class="link" href="GtkSourceStyleScheme.html#GtkSourceStyleScheme--name" title='The "name" property'>GtkSourceStyleScheme:name</a>, object property in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
467
+ </dt>
468
+ <dd></dd>
469
+ <dt>
470
+ <a class="link" href="GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager-struct" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>, struct in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
471
+ </dt>
472
+ <dd></dd>
473
+ <dt>
474
+ <a class="link" href="GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager--scheme-ids" title='The "scheme-ids" property'>GtkSourceStyleSchemeManager:scheme-ids</a>, object property in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
475
+ </dt>
476
+ <dd></dd>
477
+ <dt>
478
+ <a class="link" href="GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager--search-path" title='The "search-path" property'>GtkSourceStyleSchemeManager:search-path</a>, object property in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
479
+ </dt>
480
+ <dd></dd>
481
+ <dt>
482
+ <a class="link" href="GtkSourceUndoManager.html#GtkSourceUndoManager-struct" title="GtkSourceUndoManager">GtkSourceUndoManager</a>, struct in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
483
+ </dt>
484
+ <dd></dd>
485
+ <dt>
486
+ <a class="link" href="GtkSourceUndoManager.html#GtkSourceUndoManager-can-redo-changed" title='The "can-redo-changed" signal'>GtkSourceUndoManager::can-redo-changed</a>, object signal in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
487
+ </dt>
488
+ <dd></dd>
489
+ <dt>
490
+ <a class="link" href="GtkSourceUndoManager.html#GtkSourceUndoManager-can-undo-changed" title='The "can-undo-changed" signal'>GtkSourceUndoManager::can-undo-changed</a>, object signal in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
491
+ </dt>
492
+ <dd></dd>
493
+ <dt>
494
+ <a class="link" href="GtkSourceView.html#GtkSourceView-struct" title="GtkSourceView">GtkSourceView</a>, struct in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
495
+ </dt>
496
+ <dd></dd>
497
+ <dt>
498
+ <a class="link" href="GtkSourceView.html#GtkSourceView-line-mark-activated" title='The "line-mark-activated" signal'>GtkSourceView::line-mark-activated</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
499
+ </dt>
500
+ <dd></dd>
501
+ <dt>
502
+ <a class="link" href="GtkSourceView.html#GtkSourceView-move-lines" title='The "move-lines" signal'>GtkSourceView::move-lines</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
503
+ </dt>
504
+ <dd></dd>
505
+ <dt>
506
+ <a class="link" href="GtkSourceView.html#GtkSourceView-move-words" title='The "move-words" signal'>GtkSourceView::move-words</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
507
+ </dt>
508
+ <dd></dd>
509
+ <dt>
510
+ <a class="link" href="GtkSourceView.html#GtkSourceView-redo" title='The "redo" signal'>GtkSourceView::redo</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
511
+ </dt>
512
+ <dd></dd>
513
+ <dt>
514
+ <a class="link" href="GtkSourceView.html#GtkSourceView-show-completion" title='The "show-completion" signal'>GtkSourceView::show-completion</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
515
+ </dt>
516
+ <dd></dd>
517
+ <dt>
518
+ <a class="link" href="GtkSourceView.html#GtkSourceView-smart-home-end" title='The "smart-home-end" signal'>GtkSourceView::smart-home-end</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
519
+ </dt>
520
+ <dd></dd>
521
+ <dt>
522
+ <a class="link" href="GtkSourceView.html#GtkSourceView-undo" title='The "undo" signal'>GtkSourceView::undo</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
523
+ </dt>
524
+ <dd></dd>
525
+ <dt>
526
+ <a class="link" href="GtkSourceView.html#GtkSourceView--auto-indent" title='The "auto-indent" property'>GtkSourceView:auto-indent</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
527
+ </dt>
528
+ <dd></dd>
529
+ <dt>
530
+ <a class="link" href="GtkSourceView.html#GtkSourceView--completion" title='The "completion" property'>GtkSourceView:completion</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
531
+ </dt>
532
+ <dd></dd>
533
+ <dt>
534
+ <a class="link" href="GtkSourceView.html#GtkSourceView--draw-spaces" title='The "draw-spaces" property'>GtkSourceView:draw-spaces</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
535
+ </dt>
536
+ <dd></dd>
537
+ <dt>
538
+ <a class="link" href="GtkSourceView.html#GtkSourceView--highlight-current-line" title='The "highlight-current-line" property'>GtkSourceView:highlight-current-line</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
539
+ </dt>
540
+ <dd></dd>
541
+ <dt>
542
+ <a class="link" href="GtkSourceView.html#GtkSourceView--indent-on-tab" title='The "indent-on-tab" property'>GtkSourceView:indent-on-tab</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
543
+ </dt>
544
+ <dd></dd>
545
+ <dt>
546
+ <a class="link" href="GtkSourceView.html#GtkSourceView--indent-width" title='The "indent-width" property'>GtkSourceView:indent-width</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
547
+ </dt>
548
+ <dd></dd>
549
+ <dt>
550
+ <a class="link" href="GtkSourceView.html#GtkSourceView--insert-spaces-instead-of-tabs" title='The "insert-spaces-instead-of-tabs" property'>GtkSourceView:insert-spaces-instead-of-tabs</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
551
+ </dt>
552
+ <dd></dd>
553
+ <dt>
554
+ <a class="link" href="GtkSourceView.html#GtkSourceView--right-margin-position" title='The "right-margin-position" property'>GtkSourceView:right-margin-position</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
555
+ </dt>
556
+ <dd></dd>
557
+ <dt>
558
+ <a class="link" href="GtkSourceView.html#GtkSourceView--show-line-marks" title='The "show-line-marks" property'>GtkSourceView:show-line-marks</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
559
+ </dt>
560
+ <dd></dd>
561
+ <dt>
562
+ <a class="link" href="GtkSourceView.html#GtkSourceView--show-line-numbers" title='The "show-line-numbers" property'>GtkSourceView:show-line-numbers</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
563
+ </dt>
564
+ <dd></dd>
565
+ <dt>
566
+ <a class="link" href="GtkSourceView.html#GtkSourceView--show-right-margin" title='The "show-right-margin" property'>GtkSourceView:show-right-margin</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
567
+ </dt>
568
+ <dd></dd>
569
+ <dt>
570
+ <a class="link" href="GtkSourceView.html#GtkSourceView--smart-home-end" title='The "smart-home-end" property'>GtkSourceView:smart-home-end</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
571
+ </dt>
572
+ <dd></dd>
573
+ <dt>
574
+ <a class="link" href="GtkSourceView.html#GtkSourceView--tab-width" title='The "tab-width" property'>GtkSourceView:tab-width</a>, object property in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
575
+ </dt>
576
+ <dd></dd>
577
+ <dt>
578
+ <a class="link" href="GtkSourceView.html#GtkSourceViewGutterPosition" title="enum GtkSourceViewGutterPosition">GtkSourceViewGutterPosition</a>, enum in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
579
+ </dt>
580
+ <dd></dd>
581
+ <dt>
582
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-backward-iter-to-source-mark" title="gtk_source_buffer_backward_iter_to_source_mark ()">gtk_source_buffer_backward_iter_to_source_mark</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
583
+ </dt>
584
+ <dd></dd>
585
+ <dt>
586
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-begin-not-undoable-action" title="gtk_source_buffer_begin_not_undoable_action ()">gtk_source_buffer_begin_not_undoable_action</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
587
+ </dt>
588
+ <dd></dd>
589
+ <dt>
590
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-can-redo" title="gtk_source_buffer_can_redo ()">gtk_source_buffer_can_redo</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
591
+ </dt>
592
+ <dd></dd>
593
+ <dt>
594
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-can-undo" title="gtk_source_buffer_can_undo ()">gtk_source_buffer_can_undo</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
595
+ </dt>
596
+ <dd></dd>
597
+ <dt>
598
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-create-source-mark" title="gtk_source_buffer_create_source_mark ()">gtk_source_buffer_create_source_mark</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
599
+ </dt>
600
+ <dd></dd>
601
+ <dt>
602
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-end-not-undoable-action" title="gtk_source_buffer_end_not_undoable_action ()">gtk_source_buffer_end_not_undoable_action</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
603
+ </dt>
604
+ <dd></dd>
605
+ <dt>
606
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-ensure-highlight" title="gtk_source_buffer_ensure_highlight ()">gtk_source_buffer_ensure_highlight</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
607
+ </dt>
608
+ <dd></dd>
609
+ <dt>
610
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-forward-iter-to-source-mark" title="gtk_source_buffer_forward_iter_to_source_mark ()">gtk_source_buffer_forward_iter_to_source_mark</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
611
+ </dt>
612
+ <dd></dd>
613
+ <dt>
614
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-context-classes-at-iter" title="gtk_source_buffer_get_context_classes_at_iter ()">gtk_source_buffer_get_context_classes_at_iter</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
615
+ </dt>
616
+ <dd></dd>
617
+ <dt>
618
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-highlight-matching-brackets" title="gtk_source_buffer_get_highlight_matching_brackets ()">gtk_source_buffer_get_highlight_matching_brackets</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
619
+ </dt>
620
+ <dd></dd>
621
+ <dt>
622
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-highlight-syntax" title="gtk_source_buffer_get_highlight_syntax ()">gtk_source_buffer_get_highlight_syntax</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
623
+ </dt>
624
+ <dd></dd>
625
+ <dt>
626
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-language" title="gtk_source_buffer_get_language ()">gtk_source_buffer_get_language</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
627
+ </dt>
628
+ <dd></dd>
629
+ <dt>
630
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-max-undo-levels" title="gtk_source_buffer_get_max_undo_levels ()">gtk_source_buffer_get_max_undo_levels</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
631
+ </dt>
632
+ <dd></dd>
633
+ <dt>
634
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-source-marks-at-iter" title="gtk_source_buffer_get_source_marks_at_iter ()">gtk_source_buffer_get_source_marks_at_iter</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
635
+ </dt>
636
+ <dd></dd>
637
+ <dt>
638
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-source-marks-at-line" title="gtk_source_buffer_get_source_marks_at_line ()">gtk_source_buffer_get_source_marks_at_line</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
639
+ </dt>
640
+ <dd></dd>
641
+ <dt>
642
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-style-scheme" title="gtk_source_buffer_get_style_scheme ()">gtk_source_buffer_get_style_scheme</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
643
+ </dt>
644
+ <dd></dd>
645
+ <dt>
646
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-undo-manager" title="gtk_source_buffer_get_undo_manager ()">gtk_source_buffer_get_undo_manager</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
647
+ </dt>
648
+ <dd></dd>
649
+ <dt>
650
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-iter-backward-to-context-class-toggle" title="gtk_source_buffer_iter_backward_to_context_class_toggle ()">gtk_source_buffer_iter_backward_to_context_class_toggle</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
651
+ </dt>
652
+ <dd></dd>
653
+ <dt>
654
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-iter-forward-to-context-class-toggle" title="gtk_source_buffer_iter_forward_to_context_class_toggle ()">gtk_source_buffer_iter_forward_to_context_class_toggle</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
655
+ </dt>
656
+ <dd></dd>
657
+ <dt>
658
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-iter-has-context-class" title="gtk_source_buffer_iter_has_context_class ()">gtk_source_buffer_iter_has_context_class</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
659
+ </dt>
660
+ <dd></dd>
661
+ <dt>
662
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-new" title="gtk_source_buffer_new ()">gtk_source_buffer_new</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
663
+ </dt>
664
+ <dd></dd>
665
+ <dt>
666
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-new-with-language" title="gtk_source_buffer_new_with_language ()">gtk_source_buffer_new_with_language</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
667
+ </dt>
668
+ <dd></dd>
669
+ <dt>
670
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-redo" title="gtk_source_buffer_redo ()">gtk_source_buffer_redo</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
671
+ </dt>
672
+ <dd></dd>
673
+ <dt>
674
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-remove-source-marks" title="gtk_source_buffer_remove_source_marks ()">gtk_source_buffer_remove_source_marks</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
675
+ </dt>
676
+ <dd></dd>
677
+ <dt>
678
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-set-highlight-matching-brackets" title="gtk_source_buffer_set_highlight_matching_brackets ()">gtk_source_buffer_set_highlight_matching_brackets</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
679
+ </dt>
680
+ <dd></dd>
681
+ <dt>
682
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-set-highlight-syntax" title="gtk_source_buffer_set_highlight_syntax ()">gtk_source_buffer_set_highlight_syntax</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
683
+ </dt>
684
+ <dd></dd>
685
+ <dt>
686
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-set-language" title="gtk_source_buffer_set_language ()">gtk_source_buffer_set_language</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
687
+ </dt>
688
+ <dd></dd>
689
+ <dt>
690
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-set-max-undo-levels" title="gtk_source_buffer_set_max_undo_levels ()">gtk_source_buffer_set_max_undo_levels</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
691
+ </dt>
692
+ <dd></dd>
693
+ <dt>
694
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-set-style-scheme" title="gtk_source_buffer_set_style_scheme ()">gtk_source_buffer_set_style_scheme</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
695
+ </dt>
696
+ <dd></dd>
697
+ <dt>
698
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-set-undo-manager" title="gtk_source_buffer_set_undo_manager ()">gtk_source_buffer_set_undo_manager</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
699
+ </dt>
700
+ <dd></dd>
701
+ <dt>
702
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-undo" title="gtk_source_buffer_undo ()">gtk_source_buffer_undo</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
703
+ </dt>
704
+ <dd></dd>
705
+ <dt>
706
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-add-provider" title="gtk_source_completion_add_provider ()">gtk_source_completion_add_provider</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
707
+ </dt>
708
+ <dd></dd>
709
+ <dt>
710
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-block-interactive" title="gtk_source_completion_block_interactive ()">gtk_source_completion_block_interactive</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
711
+ </dt>
712
+ <dd></dd>
713
+ <dt>
714
+ <a class="link" href="GtkSourceCompletionContext.html#gtk-source-completion-context-add-proposals" title="gtk_source_completion_context_add_proposals ()">gtk_source_completion_context_add_proposals</a>, function in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
715
+ </dt>
716
+ <dd></dd>
717
+ <dt>
718
+ <a class="link" href="GtkSourceCompletionContext.html#gtk-source-completion-context-get-activation" title="gtk_source_completion_context_get_activation ()">gtk_source_completion_context_get_activation</a>, function in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
719
+ </dt>
720
+ <dd></dd>
721
+ <dt>
722
+ <a class="link" href="GtkSourceCompletionContext.html#gtk-source-completion-context-get-iter" title="gtk_source_completion_context_get_iter ()">gtk_source_completion_context_get_iter</a>, function in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
723
+ </dt>
724
+ <dd></dd>
725
+ <dt>
726
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-create-context" title="gtk_source_completion_create_context ()">gtk_source_completion_create_context</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
727
+ </dt>
728
+ <dd></dd>
729
+ <dt>
730
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-get-info-window" title="gtk_source_completion_get_info_window ()">gtk_source_completion_get_info_window</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
731
+ </dt>
732
+ <dd></dd>
733
+ <dt>
734
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-get-providers" title="gtk_source_completion_get_providers ()">gtk_source_completion_get_providers</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
735
+ </dt>
736
+ <dd></dd>
737
+ <dt>
738
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-get-view" title="gtk_source_completion_get_view ()">gtk_source_completion_get_view</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
739
+ </dt>
740
+ <dd></dd>
741
+ <dt>
742
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-hide" title="gtk_source_completion_hide ()">gtk_source_completion_hide</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
743
+ </dt>
744
+ <dd></dd>
745
+ <dt>
746
+ <a class="link" href="GtkSourceCompletionInfo.html#gtk-source-completion-info-get-widget" title="gtk_source_completion_info_get_widget ()">gtk_source_completion_info_get_widget</a>, function in <a class="link" href="GtkSourceCompletionInfo.html" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>
747
+ </dt>
748
+ <dd></dd>
749
+ <dt>
750
+ <a class="link" href="GtkSourceCompletionInfo.html#gtk-source-completion-info-move-to-iter" title="gtk_source_completion_info_move_to_iter ()">gtk_source_completion_info_move_to_iter</a>, function in <a class="link" href="GtkSourceCompletionInfo.html" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>
751
+ </dt>
752
+ <dd></dd>
753
+ <dt>
754
+ <a class="link" href="GtkSourceCompletionInfo.html#gtk-source-completion-info-new" title="gtk_source_completion_info_new ()">gtk_source_completion_info_new</a>, function in <a class="link" href="GtkSourceCompletionInfo.html" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>
755
+ </dt>
756
+ <dd></dd>
757
+ <dt>
758
+ <a class="link" href="GtkSourceCompletionInfo.html#gtk-source-completion-info-set-widget" title="gtk_source_completion_info_set_widget ()">gtk_source_completion_info_set_widget</a>, function in <a class="link" href="GtkSourceCompletionInfo.html" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>
759
+ </dt>
760
+ <dd></dd>
761
+ <dt>
762
+ <a class="link" href="GtkSourceCompletionItem.html#gtk-source-completion-item-new" title="gtk_source_completion_item_new ()">gtk_source_completion_item_new</a>, function in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
763
+ </dt>
764
+ <dd></dd>
765
+ <dt>
766
+ <a class="link" href="GtkSourceCompletionItem.html#gtk-source-completion-item-new-from-stock" title="gtk_source_completion_item_new_from_stock ()">gtk_source_completion_item_new_from_stock</a>, function in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
767
+ </dt>
768
+ <dd></dd>
769
+ <dt>
770
+ <a class="link" href="GtkSourceCompletionItem.html#gtk-source-completion-item-new-with-markup" title="gtk_source_completion_item_new_with_markup ()">gtk_source_completion_item_new_with_markup</a>, function in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
771
+ </dt>
772
+ <dd></dd>
773
+ <dt>
774
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-move-window" title="gtk_source_completion_move_window ()">gtk_source_completion_move_window</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
775
+ </dt>
776
+ <dd></dd>
777
+ <dt>
778
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-changed" title="gtk_source_completion_proposal_changed ()">gtk_source_completion_proposal_changed</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
779
+ </dt>
780
+ <dd></dd>
781
+ <dt>
782
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-equal" title="gtk_source_completion_proposal_equal ()">gtk_source_completion_proposal_equal</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
783
+ </dt>
784
+ <dd></dd>
785
+ <dt>
786
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-icon" title="gtk_source_completion_proposal_get_icon ()">gtk_source_completion_proposal_get_icon</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
787
+ </dt>
788
+ <dd></dd>
789
+ <dt>
790
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-info" title="gtk_source_completion_proposal_get_info ()">gtk_source_completion_proposal_get_info</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
791
+ </dt>
792
+ <dd></dd>
793
+ <dt>
794
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-label" title="gtk_source_completion_proposal_get_label ()">gtk_source_completion_proposal_get_label</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
795
+ </dt>
796
+ <dd></dd>
797
+ <dt>
798
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-markup" title="gtk_source_completion_proposal_get_markup ()">gtk_source_completion_proposal_get_markup</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
799
+ </dt>
800
+ <dd></dd>
801
+ <dt>
802
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-text" title="gtk_source_completion_proposal_get_text ()">gtk_source_completion_proposal_get_text</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
803
+ </dt>
804
+ <dd></dd>
805
+ <dt>
806
+ <a class="link" href="GtkSourceCompletionProposal.html#gtk-source-completion-proposal-hash" title="gtk_source_completion_proposal_hash ()">gtk_source_completion_proposal_hash</a>, function in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
807
+ </dt>
808
+ <dd></dd>
809
+ <dt>
810
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-activate-proposal" title="gtk_source_completion_provider_activate_proposal ()">gtk_source_completion_provider_activate_proposal</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
811
+ </dt>
812
+ <dd></dd>
813
+ <dt>
814
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-activation" title="gtk_source_completion_provider_get_activation ()">gtk_source_completion_provider_get_activation</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
815
+ </dt>
816
+ <dd></dd>
817
+ <dt>
818
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-icon" title="gtk_source_completion_provider_get_icon ()">gtk_source_completion_provider_get_icon</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
819
+ </dt>
820
+ <dd></dd>
821
+ <dt>
822
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-info-widget" title="gtk_source_completion_provider_get_info_widget ()">gtk_source_completion_provider_get_info_widget</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
823
+ </dt>
824
+ <dd></dd>
825
+ <dt>
826
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-interactive-delay" title="gtk_source_completion_provider_get_interactive_delay ()">gtk_source_completion_provider_get_interactive_delay</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
827
+ </dt>
828
+ <dd></dd>
829
+ <dt>
830
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-name" title="gtk_source_completion_provider_get_name ()">gtk_source_completion_provider_get_name</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
831
+ </dt>
832
+ <dd></dd>
833
+ <dt>
834
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-priority" title="gtk_source_completion_provider_get_priority ()">gtk_source_completion_provider_get_priority</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
835
+ </dt>
836
+ <dd></dd>
837
+ <dt>
838
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-start-iter" title="gtk_source_completion_provider_get_start_iter ()">gtk_source_completion_provider_get_start_iter</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
839
+ </dt>
840
+ <dd></dd>
841
+ <dt>
842
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-match" title="gtk_source_completion_provider_match ()">gtk_source_completion_provider_match</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
843
+ </dt>
844
+ <dd></dd>
845
+ <dt>
846
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-populate" title="gtk_source_completion_provider_populate ()">gtk_source_completion_provider_populate</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
847
+ </dt>
848
+ <dd></dd>
849
+ <dt>
850
+ <a class="link" href="GtkSourceCompletionProvider.html#gtk-source-completion-provider-update-info" title="gtk_source_completion_provider_update_info ()">gtk_source_completion_provider_update_info</a>, function in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
851
+ </dt>
852
+ <dd></dd>
853
+ <dt>
854
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-remove-provider" title="gtk_source_completion_remove_provider ()">gtk_source_completion_remove_provider</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
855
+ </dt>
856
+ <dd></dd>
857
+ <dt>
858
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-show" title="gtk_source_completion_show ()">gtk_source_completion_show</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
859
+ </dt>
860
+ <dd></dd>
861
+ <dt>
862
+ <a class="link" href="GtkSourceCompletion.html#gtk-source-completion-unblock-interactive" title="gtk_source_completion_unblock_interactive ()">gtk_source_completion_unblock_interactive</a>, function in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
863
+ </dt>
864
+ <dd></dd>
865
+ <dt>
866
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-get-window" title="gtk_source_gutter_get_window ()">gtk_source_gutter_get_window</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
867
+ </dt>
868
+ <dd></dd>
869
+ <dt>
870
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-insert" title="gtk_source_gutter_insert ()">gtk_source_gutter_insert</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
871
+ </dt>
872
+ <dd></dd>
873
+ <dt>
874
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-queue-draw" title="gtk_source_gutter_queue_draw ()">gtk_source_gutter_queue_draw</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
875
+ </dt>
876
+ <dd></dd>
877
+ <dt>
878
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-remove" title="gtk_source_gutter_remove ()">gtk_source_gutter_remove</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
879
+ </dt>
880
+ <dd></dd>
881
+ <dt>
882
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-activate" title="gtk_source_gutter_renderer_activate ()">gtk_source_gutter_renderer_activate</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
883
+ </dt>
884
+ <dd></dd>
885
+ <dt>
886
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-begin" title="gtk_source_gutter_renderer_begin ()">gtk_source_gutter_renderer_begin</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
887
+ </dt>
888
+ <dd></dd>
889
+ <dt>
890
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-draw" title="gtk_source_gutter_renderer_draw ()">gtk_source_gutter_renderer_draw</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
891
+ </dt>
892
+ <dd></dd>
893
+ <dt>
894
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-end" title="gtk_source_gutter_renderer_end ()">gtk_source_gutter_renderer_end</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
895
+ </dt>
896
+ <dd></dd>
897
+ <dt>
898
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-alignment" title="gtk_source_gutter_renderer_get_alignment ()">gtk_source_gutter_renderer_get_alignment</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
899
+ </dt>
900
+ <dd></dd>
901
+ <dt>
902
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-alignment-mode" title="gtk_source_gutter_renderer_get_alignment_mode ()">gtk_source_gutter_renderer_get_alignment_mode</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
903
+ </dt>
904
+ <dd></dd>
905
+ <dt>
906
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-background" title="gtk_source_gutter_renderer_get_background ()">gtk_source_gutter_renderer_get_background</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
907
+ </dt>
908
+ <dd></dd>
909
+ <dt>
910
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-padding" title="gtk_source_gutter_renderer_get_padding ()">gtk_source_gutter_renderer_get_padding</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
911
+ </dt>
912
+ <dd></dd>
913
+ <dt>
914
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-size" title="gtk_source_gutter_renderer_get_size ()">gtk_source_gutter_renderer_get_size</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
915
+ </dt>
916
+ <dd></dd>
917
+ <dt>
918
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-view" title="gtk_source_gutter_renderer_get_view ()">gtk_source_gutter_renderer_get_view</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
919
+ </dt>
920
+ <dd></dd>
921
+ <dt>
922
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-visible" title="gtk_source_gutter_renderer_get_visible ()">gtk_source_gutter_renderer_get_visible</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
923
+ </dt>
924
+ <dd></dd>
925
+ <dt>
926
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-window-type" title="gtk_source_gutter_renderer_get_window_type ()">gtk_source_gutter_renderer_get_window_type</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
927
+ </dt>
928
+ <dd></dd>
929
+ <dt>
930
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-gicon" title="gtk_source_gutter_renderer_pixbuf_get_gicon ()">gtk_source_gutter_renderer_pixbuf_get_gicon</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
931
+ </dt>
932
+ <dd></dd>
933
+ <dt>
934
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-icon-name" title="gtk_source_gutter_renderer_pixbuf_get_icon_name ()">gtk_source_gutter_renderer_pixbuf_get_icon_name</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
935
+ </dt>
936
+ <dd></dd>
937
+ <dt>
938
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-pixbuf" title="gtk_source_gutter_renderer_pixbuf_get_pixbuf ()">gtk_source_gutter_renderer_pixbuf_get_pixbuf</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
939
+ </dt>
940
+ <dd></dd>
941
+ <dt>
942
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-stock-id" title="gtk_source_gutter_renderer_pixbuf_get_stock_id ()">gtk_source_gutter_renderer_pixbuf_get_stock_id</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
943
+ </dt>
944
+ <dd></dd>
945
+ <dt>
946
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-new" title="gtk_source_gutter_renderer_pixbuf_new ()">gtk_source_gutter_renderer_pixbuf_new</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
947
+ </dt>
948
+ <dd></dd>
949
+ <dt>
950
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-gicon" title="gtk_source_gutter_renderer_pixbuf_set_gicon ()">gtk_source_gutter_renderer_pixbuf_set_gicon</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
951
+ </dt>
952
+ <dd></dd>
953
+ <dt>
954
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-icon-name" title="gtk_source_gutter_renderer_pixbuf_set_icon_name ()">gtk_source_gutter_renderer_pixbuf_set_icon_name</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
955
+ </dt>
956
+ <dd></dd>
957
+ <dt>
958
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-pixbuf" title="gtk_source_gutter_renderer_pixbuf_set_pixbuf ()">gtk_source_gutter_renderer_pixbuf_set_pixbuf</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
959
+ </dt>
960
+ <dd></dd>
961
+ <dt>
962
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-stock-id" title="gtk_source_gutter_renderer_pixbuf_set_stock_id ()">gtk_source_gutter_renderer_pixbuf_set_stock_id</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
963
+ </dt>
964
+ <dd></dd>
965
+ <dt>
966
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-query-activatable" title="gtk_source_gutter_renderer_query_activatable ()">gtk_source_gutter_renderer_query_activatable</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
967
+ </dt>
968
+ <dd></dd>
969
+ <dt>
970
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-query-data" title="gtk_source_gutter_renderer_query_data ()">gtk_source_gutter_renderer_query_data</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
971
+ </dt>
972
+ <dd></dd>
973
+ <dt>
974
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-query-tooltip" title="gtk_source_gutter_renderer_query_tooltip ()">gtk_source_gutter_renderer_query_tooltip</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
975
+ </dt>
976
+ <dd></dd>
977
+ <dt>
978
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-queue-draw" title="gtk_source_gutter_renderer_queue_draw ()">gtk_source_gutter_renderer_queue_draw</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
979
+ </dt>
980
+ <dd></dd>
981
+ <dt>
982
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-alignment" title="gtk_source_gutter_renderer_set_alignment ()">gtk_source_gutter_renderer_set_alignment</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
983
+ </dt>
984
+ <dd></dd>
985
+ <dt>
986
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-alignment-mode" title="gtk_source_gutter_renderer_set_alignment_mode ()">gtk_source_gutter_renderer_set_alignment_mode</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
987
+ </dt>
988
+ <dd></dd>
989
+ <dt>
990
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-background" title="gtk_source_gutter_renderer_set_background ()">gtk_source_gutter_renderer_set_background</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
991
+ </dt>
992
+ <dd></dd>
993
+ <dt>
994
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-padding" title="gtk_source_gutter_renderer_set_padding ()">gtk_source_gutter_renderer_set_padding</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
995
+ </dt>
996
+ <dd></dd>
997
+ <dt>
998
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-size" title="gtk_source_gutter_renderer_set_size ()">gtk_source_gutter_renderer_set_size</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
999
+ </dt>
1000
+ <dd></dd>
1001
+ <dt>
1002
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-visible" title="gtk_source_gutter_renderer_set_visible ()">gtk_source_gutter_renderer_set_visible</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1003
+ </dt>
1004
+ <dd></dd>
1005
+ <dt>
1006
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-measure" title="gtk_source_gutter_renderer_text_measure ()">gtk_source_gutter_renderer_text_measure</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1007
+ </dt>
1008
+ <dd></dd>
1009
+ <dt>
1010
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-measure-markup" title="gtk_source_gutter_renderer_text_measure_markup ()">gtk_source_gutter_renderer_text_measure_markup</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1011
+ </dt>
1012
+ <dd></dd>
1013
+ <dt>
1014
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-new" title="gtk_source_gutter_renderer_text_new ()">gtk_source_gutter_renderer_text_new</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1015
+ </dt>
1016
+ <dd></dd>
1017
+ <dt>
1018
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-set-markup" title="gtk_source_gutter_renderer_text_set_markup ()">gtk_source_gutter_renderer_text_set_markup</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1019
+ </dt>
1020
+ <dd></dd>
1021
+ <dt>
1022
+ <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-set-text" title="gtk_source_gutter_renderer_text_set_text ()">gtk_source_gutter_renderer_text_set_text</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1023
+ </dt>
1024
+ <dd></dd>
1025
+ <dt>
1026
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-reorder" title="gtk_source_gutter_reorder ()">gtk_source_gutter_reorder</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
1027
+ </dt>
1028
+ <dd></dd>
1029
+ <dt>
1030
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-globs" title="gtk_source_language_get_globs ()">gtk_source_language_get_globs</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1031
+ </dt>
1032
+ <dd></dd>
1033
+ <dt>
1034
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-hidden" title="gtk_source_language_get_hidden ()">gtk_source_language_get_hidden</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1035
+ </dt>
1036
+ <dd></dd>
1037
+ <dt>
1038
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-id" title="gtk_source_language_get_id ()">gtk_source_language_get_id</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1039
+ </dt>
1040
+ <dd></dd>
1041
+ <dt>
1042
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-metadata" title="gtk_source_language_get_metadata ()">gtk_source_language_get_metadata</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1043
+ </dt>
1044
+ <dd></dd>
1045
+ <dt>
1046
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-mime-types" title="gtk_source_language_get_mime_types ()">gtk_source_language_get_mime_types</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1047
+ </dt>
1048
+ <dd></dd>
1049
+ <dt>
1050
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-name" title="gtk_source_language_get_name ()">gtk_source_language_get_name</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1051
+ </dt>
1052
+ <dd></dd>
1053
+ <dt>
1054
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-section" title="gtk_source_language_get_section ()">gtk_source_language_get_section</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1055
+ </dt>
1056
+ <dd></dd>
1057
+ <dt>
1058
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-style-fallback" title="gtk_source_language_get_style_fallback ()">gtk_source_language_get_style_fallback</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1059
+ </dt>
1060
+ <dd></dd>
1061
+ <dt>
1062
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-style-ids" title="gtk_source_language_get_style_ids ()">gtk_source_language_get_style_ids</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1063
+ </dt>
1064
+ <dd></dd>
1065
+ <dt>
1066
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-style-name" title="gtk_source_language_get_style_name ()">gtk_source_language_get_style_name</a>, function in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
1067
+ </dt>
1068
+ <dd></dd>
1069
+ <dt>
1070
+ <a class="link" href="GtkSourceLanguageManager.html#gtk-source-language-manager-get-default" title="gtk_source_language_manager_get_default ()">gtk_source_language_manager_get_default</a>, function in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
1071
+ </dt>
1072
+ <dd></dd>
1073
+ <dt>
1074
+ <a class="link" href="GtkSourceLanguageManager.html#gtk-source-language-manager-get-language" title="gtk_source_language_manager_get_language ()">gtk_source_language_manager_get_language</a>, function in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
1075
+ </dt>
1076
+ <dd></dd>
1077
+ <dt>
1078
+ <a class="link" href="GtkSourceLanguageManager.html#gtk-source-language-manager-get-language-ids" title="gtk_source_language_manager_get_language_ids ()">gtk_source_language_manager_get_language_ids</a>, function in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
1079
+ </dt>
1080
+ <dd></dd>
1081
+ <dt>
1082
+ <a class="link" href="GtkSourceLanguageManager.html#gtk-source-language-manager-get-search-path" title="gtk_source_language_manager_get_search_path ()">gtk_source_language_manager_get_search_path</a>, function in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
1083
+ </dt>
1084
+ <dd></dd>
1085
+ <dt>
1086
+ <a class="link" href="GtkSourceLanguageManager.html#gtk-source-language-manager-guess-language" title="gtk_source_language_manager_guess_language ()">gtk_source_language_manager_guess_language</a>, function in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
1087
+ </dt>
1088
+ <dd></dd>
1089
+ <dt>
1090
+ <a class="link" href="GtkSourceLanguageManager.html#gtk-source-language-manager-new" title="gtk_source_language_manager_new ()">gtk_source_language_manager_new</a>, function in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
1091
+ </dt>
1092
+ <dd></dd>
1093
+ <dt>
1094
+ <a class="link" href="GtkSourceLanguageManager.html#gtk-source-language-manager-set-search-path" title="gtk_source_language_manager_set_search_path ()">gtk_source_language_manager_set_search_path</a>, function in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
1095
+ </dt>
1096
+ <dd></dd>
1097
+ <dt>
1098
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-background" title="gtk_source_mark_attributes_get_background ()">gtk_source_mark_attributes_get_background</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1099
+ </dt>
1100
+ <dd></dd>
1101
+ <dt>
1102
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-gicon" title="gtk_source_mark_attributes_get_gicon ()">gtk_source_mark_attributes_get_gicon</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1103
+ </dt>
1104
+ <dd></dd>
1105
+ <dt>
1106
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-icon-name" title="gtk_source_mark_attributes_get_icon_name ()">gtk_source_mark_attributes_get_icon_name</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1107
+ </dt>
1108
+ <dd></dd>
1109
+ <dt>
1110
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-pixbuf" title="gtk_source_mark_attributes_get_pixbuf ()">gtk_source_mark_attributes_get_pixbuf</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1111
+ </dt>
1112
+ <dd></dd>
1113
+ <dt>
1114
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-stock-id" title="gtk_source_mark_attributes_get_stock_id ()">gtk_source_mark_attributes_get_stock_id</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1115
+ </dt>
1116
+ <dd></dd>
1117
+ <dt>
1118
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-tooltip-markup" title="gtk_source_mark_attributes_get_tooltip_markup ()">gtk_source_mark_attributes_get_tooltip_markup</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1119
+ </dt>
1120
+ <dd></dd>
1121
+ <dt>
1122
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-tooltip-text" title="gtk_source_mark_attributes_get_tooltip_text ()">gtk_source_mark_attributes_get_tooltip_text</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1123
+ </dt>
1124
+ <dd></dd>
1125
+ <dt>
1126
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-new" title="gtk_source_mark_attributes_new ()">gtk_source_mark_attributes_new</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1127
+ </dt>
1128
+ <dd></dd>
1129
+ <dt>
1130
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-render-icon" title="gtk_source_mark_attributes_render_icon ()">gtk_source_mark_attributes_render_icon</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1131
+ </dt>
1132
+ <dd></dd>
1133
+ <dt>
1134
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-background" title="gtk_source_mark_attributes_set_background ()">gtk_source_mark_attributes_set_background</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1135
+ </dt>
1136
+ <dd></dd>
1137
+ <dt>
1138
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-gicon" title="gtk_source_mark_attributes_set_gicon ()">gtk_source_mark_attributes_set_gicon</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1139
+ </dt>
1140
+ <dd></dd>
1141
+ <dt>
1142
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-icon-name" title="gtk_source_mark_attributes_set_icon_name ()">gtk_source_mark_attributes_set_icon_name</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1143
+ </dt>
1144
+ <dd></dd>
1145
+ <dt>
1146
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-pixbuf" title="gtk_source_mark_attributes_set_pixbuf ()">gtk_source_mark_attributes_set_pixbuf</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1147
+ </dt>
1148
+ <dd></dd>
1149
+ <dt>
1150
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-stock-id" title="gtk_source_mark_attributes_set_stock_id ()">gtk_source_mark_attributes_set_stock_id</a>, function in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
1151
+ </dt>
1152
+ <dd></dd>
1153
+ <dt>
1154
+ <a class="link" href="GtkSourceMark.html#gtk-source-mark-get-category" title="gtk_source_mark_get_category ()">gtk_source_mark_get_category</a>, function in <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
1155
+ </dt>
1156
+ <dd></dd>
1157
+ <dt>
1158
+ <a class="link" href="GtkSourceMark.html#gtk-source-mark-new" title="gtk_source_mark_new ()">gtk_source_mark_new</a>, function in <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
1159
+ </dt>
1160
+ <dd></dd>
1161
+ <dt>
1162
+ <a class="link" href="GtkSourceMark.html#gtk-source-mark-next" title="gtk_source_mark_next ()">gtk_source_mark_next</a>, function in <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
1163
+ </dt>
1164
+ <dd></dd>
1165
+ <dt>
1166
+ <a class="link" href="GtkSourceMark.html#gtk-source-mark-prev" title="gtk_source_mark_prev ()">gtk_source_mark_prev</a>, function in <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
1167
+ </dt>
1168
+ <dd></dd>
1169
+ <dt>
1170
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-draw-page" title="gtk_source_print_compositor_draw_page ()">gtk_source_print_compositor_draw_page</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1171
+ </dt>
1172
+ <dd></dd>
1173
+ <dt>
1174
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-body-font-name" title="gtk_source_print_compositor_get_body_font_name ()">gtk_source_print_compositor_get_body_font_name</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1175
+ </dt>
1176
+ <dd></dd>
1177
+ <dt>
1178
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-bottom-margin" title="gtk_source_print_compositor_get_bottom_margin ()">gtk_source_print_compositor_get_bottom_margin</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1179
+ </dt>
1180
+ <dd></dd>
1181
+ <dt>
1182
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-buffer" title="gtk_source_print_compositor_get_buffer ()">gtk_source_print_compositor_get_buffer</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1183
+ </dt>
1184
+ <dd></dd>
1185
+ <dt>
1186
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-footer-font-name" title="gtk_source_print_compositor_get_footer_font_name ()">gtk_source_print_compositor_get_footer_font_name</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1187
+ </dt>
1188
+ <dd></dd>
1189
+ <dt>
1190
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-header-font-name" title="gtk_source_print_compositor_get_header_font_name ()">gtk_source_print_compositor_get_header_font_name</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1191
+ </dt>
1192
+ <dd></dd>
1193
+ <dt>
1194
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-highlight-syntax" title="gtk_source_print_compositor_get_highlight_syntax ()">gtk_source_print_compositor_get_highlight_syntax</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1195
+ </dt>
1196
+ <dd></dd>
1197
+ <dt>
1198
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-left-margin" title="gtk_source_print_compositor_get_left_margin ()">gtk_source_print_compositor_get_left_margin</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1199
+ </dt>
1200
+ <dd></dd>
1201
+ <dt>
1202
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-line-numbers-font-name" title="gtk_source_print_compositor_get_line_numbers_font_name ()">gtk_source_print_compositor_get_line_numbers_font_name</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1203
+ </dt>
1204
+ <dd></dd>
1205
+ <dt>
1206
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-n-pages" title="gtk_source_print_compositor_get_n_pages ()">gtk_source_print_compositor_get_n_pages</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1207
+ </dt>
1208
+ <dd></dd>
1209
+ <dt>
1210
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-pagination-progress" title="gtk_source_print_compositor_get_pagination_progress ()">gtk_source_print_compositor_get_pagination_progress</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1211
+ </dt>
1212
+ <dd></dd>
1213
+ <dt>
1214
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-print-footer" title="gtk_source_print_compositor_get_print_footer ()">gtk_source_print_compositor_get_print_footer</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1215
+ </dt>
1216
+ <dd></dd>
1217
+ <dt>
1218
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-print-header" title="gtk_source_print_compositor_get_print_header ()">gtk_source_print_compositor_get_print_header</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1219
+ </dt>
1220
+ <dd></dd>
1221
+ <dt>
1222
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-print-line-numbers" title="gtk_source_print_compositor_get_print_line_numbers ()">gtk_source_print_compositor_get_print_line_numbers</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1223
+ </dt>
1224
+ <dd></dd>
1225
+ <dt>
1226
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-right-margin" title="gtk_source_print_compositor_get_right_margin ()">gtk_source_print_compositor_get_right_margin</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1227
+ </dt>
1228
+ <dd></dd>
1229
+ <dt>
1230
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-tab-width" title="gtk_source_print_compositor_get_tab_width ()">gtk_source_print_compositor_get_tab_width</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1231
+ </dt>
1232
+ <dd></dd>
1233
+ <dt>
1234
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-top-margin" title="gtk_source_print_compositor_get_top_margin ()">gtk_source_print_compositor_get_top_margin</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1235
+ </dt>
1236
+ <dd></dd>
1237
+ <dt>
1238
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-wrap-mode" title="gtk_source_print_compositor_get_wrap_mode ()">gtk_source_print_compositor_get_wrap_mode</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1239
+ </dt>
1240
+ <dd></dd>
1241
+ <dt>
1242
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-new" title="gtk_source_print_compositor_new ()">gtk_source_print_compositor_new</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1243
+ </dt>
1244
+ <dd></dd>
1245
+ <dt>
1246
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-new-from-view" title="gtk_source_print_compositor_new_from_view ()">gtk_source_print_compositor_new_from_view</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1247
+ </dt>
1248
+ <dd></dd>
1249
+ <dt>
1250
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-paginate" title="gtk_source_print_compositor_paginate ()">gtk_source_print_compositor_paginate</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1251
+ </dt>
1252
+ <dd></dd>
1253
+ <dt>
1254
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-body-font-name" title="gtk_source_print_compositor_set_body_font_name ()">gtk_source_print_compositor_set_body_font_name</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1255
+ </dt>
1256
+ <dd></dd>
1257
+ <dt>
1258
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-bottom-margin" title="gtk_source_print_compositor_set_bottom_margin ()">gtk_source_print_compositor_set_bottom_margin</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1259
+ </dt>
1260
+ <dd></dd>
1261
+ <dt>
1262
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-footer-font-name" title="gtk_source_print_compositor_set_footer_font_name ()">gtk_source_print_compositor_set_footer_font_name</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1263
+ </dt>
1264
+ <dd></dd>
1265
+ <dt>
1266
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-footer-format" title="gtk_source_print_compositor_set_footer_format ()">gtk_source_print_compositor_set_footer_format</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1267
+ </dt>
1268
+ <dd></dd>
1269
+ <dt>
1270
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-header-font-name" title="gtk_source_print_compositor_set_header_font_name ()">gtk_source_print_compositor_set_header_font_name</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1271
+ </dt>
1272
+ <dd></dd>
1273
+ <dt>
1274
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-header-format" title="gtk_source_print_compositor_set_header_format ()">gtk_source_print_compositor_set_header_format</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1275
+ </dt>
1276
+ <dd></dd>
1277
+ <dt>
1278
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-highlight-syntax" title="gtk_source_print_compositor_set_highlight_syntax ()">gtk_source_print_compositor_set_highlight_syntax</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1279
+ </dt>
1280
+ <dd></dd>
1281
+ <dt>
1282
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-left-margin" title="gtk_source_print_compositor_set_left_margin ()">gtk_source_print_compositor_set_left_margin</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1283
+ </dt>
1284
+ <dd></dd>
1285
+ <dt>
1286
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-line-numbers-font-name" title="gtk_source_print_compositor_set_line_numbers_font_name ()">gtk_source_print_compositor_set_line_numbers_font_name</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1287
+ </dt>
1288
+ <dd></dd>
1289
+ <dt>
1290
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-print-footer" title="gtk_source_print_compositor_set_print_footer ()">gtk_source_print_compositor_set_print_footer</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1291
+ </dt>
1292
+ <dd></dd>
1293
+ <dt>
1294
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-print-header" title="gtk_source_print_compositor_set_print_header ()">gtk_source_print_compositor_set_print_header</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1295
+ </dt>
1296
+ <dd></dd>
1297
+ <dt>
1298
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-print-line-numbers" title="gtk_source_print_compositor_set_print_line_numbers ()">gtk_source_print_compositor_set_print_line_numbers</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1299
+ </dt>
1300
+ <dd></dd>
1301
+ <dt>
1302
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-right-margin" title="gtk_source_print_compositor_set_right_margin ()">gtk_source_print_compositor_set_right_margin</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1303
+ </dt>
1304
+ <dd></dd>
1305
+ <dt>
1306
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-tab-width" title="gtk_source_print_compositor_set_tab_width ()">gtk_source_print_compositor_set_tab_width</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1307
+ </dt>
1308
+ <dd></dd>
1309
+ <dt>
1310
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-top-margin" title="gtk_source_print_compositor_set_top_margin ()">gtk_source_print_compositor_set_top_margin</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1311
+ </dt>
1312
+ <dd></dd>
1313
+ <dt>
1314
+ <a class="link" href="GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-wrap-mode" title="gtk_source_print_compositor_set_wrap_mode ()">gtk_source_print_compositor_set_wrap_mode</a>, function in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
1315
+ </dt>
1316
+ <dd></dd>
1317
+ <dt>
1318
+ <a class="link" href="GtkSourceStyle.html#gtk-source-style-copy" title="gtk_source_style_copy ()">gtk_source_style_copy</a>, function in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
1319
+ </dt>
1320
+ <dd></dd>
1321
+ <dt>
1322
+ <a class="link" href="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-authors" title="gtk_source_style_scheme_get_authors ()">gtk_source_style_scheme_get_authors</a>, function in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
1323
+ </dt>
1324
+ <dd></dd>
1325
+ <dt>
1326
+ <a class="link" href="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-description" title="gtk_source_style_scheme_get_description ()">gtk_source_style_scheme_get_description</a>, function in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
1327
+ </dt>
1328
+ <dd></dd>
1329
+ <dt>
1330
+ <a class="link" href="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-filename" title="gtk_source_style_scheme_get_filename ()">gtk_source_style_scheme_get_filename</a>, function in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
1331
+ </dt>
1332
+ <dd></dd>
1333
+ <dt>
1334
+ <a class="link" href="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-id" title="gtk_source_style_scheme_get_id ()">gtk_source_style_scheme_get_id</a>, function in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
1335
+ </dt>
1336
+ <dd></dd>
1337
+ <dt>
1338
+ <a class="link" href="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-name" title="gtk_source_style_scheme_get_name ()">gtk_source_style_scheme_get_name</a>, function in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
1339
+ </dt>
1340
+ <dd></dd>
1341
+ <dt>
1342
+ <a class="link" href="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-style" title="gtk_source_style_scheme_get_style ()">gtk_source_style_scheme_get_style</a>, function in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
1343
+ </dt>
1344
+ <dd></dd>
1345
+ <dt>
1346
+ <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-append-search-path" title="gtk_source_style_scheme_manager_append_search_path ()">gtk_source_style_scheme_manager_append_search_path</a>, function in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
1347
+ </dt>
1348
+ <dd></dd>
1349
+ <dt>
1350
+ <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-force-rescan" title="gtk_source_style_scheme_manager_force_rescan ()">gtk_source_style_scheme_manager_force_rescan</a>, function in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
1351
+ </dt>
1352
+ <dd></dd>
1353
+ <dt>
1354
+ <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-default" title="gtk_source_style_scheme_manager_get_default ()">gtk_source_style_scheme_manager_get_default</a>, function in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
1355
+ </dt>
1356
+ <dd></dd>
1357
+ <dt>
1358
+ <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-scheme" title="gtk_source_style_scheme_manager_get_scheme ()">gtk_source_style_scheme_manager_get_scheme</a>, function in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
1359
+ </dt>
1360
+ <dd></dd>
1361
+ <dt>
1362
+ <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-scheme-ids" title="gtk_source_style_scheme_manager_get_scheme_ids ()">gtk_source_style_scheme_manager_get_scheme_ids</a>, function in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
1363
+ </dt>
1364
+ <dd></dd>
1365
+ <dt>
1366
+ <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-search-path" title="gtk_source_style_scheme_manager_get_search_path ()">gtk_source_style_scheme_manager_get_search_path</a>, function in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
1367
+ </dt>
1368
+ <dd></dd>
1369
+ <dt>
1370
+ <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-new" title="gtk_source_style_scheme_manager_new ()">gtk_source_style_scheme_manager_new</a>, function in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
1371
+ </dt>
1372
+ <dd></dd>
1373
+ <dt>
1374
+ <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-prepend-search-path" title="gtk_source_style_scheme_manager_prepend_search_path ()">gtk_source_style_scheme_manager_prepend_search_path</a>, function in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
1375
+ </dt>
1376
+ <dd></dd>
1377
+ <dt>
1378
+ <a class="link" href="GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-set-search-path" title="gtk_source_style_scheme_manager_set_search_path ()">gtk_source_style_scheme_manager_set_search_path</a>, function in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
1379
+ </dt>
1380
+ <dd></dd>
1381
+ <dt>
1382
+ <a class="link" href="GtkSourceUndoManager.html#gtk-source-undo-manager-begin-not-undoable-action" title="gtk_source_undo_manager_begin_not_undoable_action ()">gtk_source_undo_manager_begin_not_undoable_action</a>, function in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
1383
+ </dt>
1384
+ <dd></dd>
1385
+ <dt>
1386
+ <a class="link" href="GtkSourceUndoManager.html#gtk-source-undo-manager-can-redo" title="gtk_source_undo_manager_can_redo ()">gtk_source_undo_manager_can_redo</a>, function in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
1387
+ </dt>
1388
+ <dd></dd>
1389
+ <dt>
1390
+ <a class="link" href="GtkSourceUndoManager.html#gtk-source-undo-manager-can-redo-changed" title="gtk_source_undo_manager_can_redo_changed ()">gtk_source_undo_manager_can_redo_changed</a>, function in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
1391
+ </dt>
1392
+ <dd></dd>
1393
+ <dt>
1394
+ <a class="link" href="GtkSourceUndoManager.html#gtk-source-undo-manager-can-undo" title="gtk_source_undo_manager_can_undo ()">gtk_source_undo_manager_can_undo</a>, function in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
1395
+ </dt>
1396
+ <dd></dd>
1397
+ <dt>
1398
+ <a class="link" href="GtkSourceUndoManager.html#gtk-source-undo-manager-can-undo-changed" title="gtk_source_undo_manager_can_undo_changed ()">gtk_source_undo_manager_can_undo_changed</a>, function in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
1399
+ </dt>
1400
+ <dd></dd>
1401
+ <dt>
1402
+ <a class="link" href="GtkSourceUndoManager.html#gtk-source-undo-manager-end-not-undoable-action" title="gtk_source_undo_manager_end_not_undoable_action ()">gtk_source_undo_manager_end_not_undoable_action</a>, function in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
1403
+ </dt>
1404
+ <dd></dd>
1405
+ <dt>
1406
+ <a class="link" href="GtkSourceUndoManager.html#gtk-source-undo-manager-redo" title="gtk_source_undo_manager_redo ()">gtk_source_undo_manager_redo</a>, function in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
1407
+ </dt>
1408
+ <dd></dd>
1409
+ <dt>
1410
+ <a class="link" href="GtkSourceUndoManager.html#gtk-source-undo-manager-undo" title="gtk_source_undo_manager_undo ()">gtk_source_undo_manager_undo</a>, function in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
1411
+ </dt>
1412
+ <dd></dd>
1413
+ <dt>
1414
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-auto-indent" title="gtk_source_view_get_auto_indent ()">gtk_source_view_get_auto_indent</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1415
+ </dt>
1416
+ <dd></dd>
1417
+ <dt>
1418
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-completion" title="gtk_source_view_get_completion ()">gtk_source_view_get_completion</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1419
+ </dt>
1420
+ <dd></dd>
1421
+ <dt>
1422
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-draw-spaces" title="gtk_source_view_get_draw_spaces ()">gtk_source_view_get_draw_spaces</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1423
+ </dt>
1424
+ <dd></dd>
1425
+ <dt>
1426
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-gutter" title="gtk_source_view_get_gutter ()">gtk_source_view_get_gutter</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1427
+ </dt>
1428
+ <dd></dd>
1429
+ <dt>
1430
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-highlight-current-line" title="gtk_source_view_get_highlight_current_line ()">gtk_source_view_get_highlight_current_line</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1431
+ </dt>
1432
+ <dd></dd>
1433
+ <dt>
1434
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-indent-on-tab" title="gtk_source_view_get_indent_on_tab ()">gtk_source_view_get_indent_on_tab</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1435
+ </dt>
1436
+ <dd></dd>
1437
+ <dt>
1438
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-indent-width" title="gtk_source_view_get_indent_width ()">gtk_source_view_get_indent_width</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1439
+ </dt>
1440
+ <dd></dd>
1441
+ <dt>
1442
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-insert-spaces-instead-of-tabs" title="gtk_source_view_get_insert_spaces_instead_of_tabs ()">gtk_source_view_get_insert_spaces_instead_of_tabs</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1443
+ </dt>
1444
+ <dd></dd>
1445
+ <dt>
1446
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-mark-attributes" title="gtk_source_view_get_mark_attributes ()">gtk_source_view_get_mark_attributes</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1447
+ </dt>
1448
+ <dd></dd>
1449
+ <dt>
1450
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-right-margin-position" title="gtk_source_view_get_right_margin_position ()">gtk_source_view_get_right_margin_position</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1451
+ </dt>
1452
+ <dd></dd>
1453
+ <dt>
1454
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-show-line-marks" title="gtk_source_view_get_show_line_marks ()">gtk_source_view_get_show_line_marks</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1455
+ </dt>
1456
+ <dd></dd>
1457
+ <dt>
1458
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-show-line-numbers" title="gtk_source_view_get_show_line_numbers ()">gtk_source_view_get_show_line_numbers</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1459
+ </dt>
1460
+ <dd></dd>
1461
+ <dt>
1462
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-show-right-margin" title="gtk_source_view_get_show_right_margin ()">gtk_source_view_get_show_right_margin</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1463
+ </dt>
1464
+ <dd></dd>
1465
+ <dt>
1466
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-smart-home-end" title="gtk_source_view_get_smart_home_end ()">gtk_source_view_get_smart_home_end</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1467
+ </dt>
1468
+ <dd></dd>
1469
+ <dt>
1470
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-tab-width" title="gtk_source_view_get_tab_width ()">gtk_source_view_get_tab_width</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1471
+ </dt>
1472
+ <dd></dd>
1473
+ <dt>
1474
+ <a class="link" href="GtkSourceView.html#gtk-source-view-new" title="gtk_source_view_new ()">gtk_source_view_new</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1475
+ </dt>
1476
+ <dd></dd>
1477
+ <dt>
1478
+ <a class="link" href="GtkSourceView.html#gtk-source-view-new-with-buffer" title="gtk_source_view_new_with_buffer ()">gtk_source_view_new_with_buffer</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1479
+ </dt>
1480
+ <dd></dd>
1481
+ <dt>
1482
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-auto-indent" title="gtk_source_view_set_auto_indent ()">gtk_source_view_set_auto_indent</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1483
+ </dt>
1484
+ <dd></dd>
1485
+ <dt>
1486
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-draw-spaces" title="gtk_source_view_set_draw_spaces ()">gtk_source_view_set_draw_spaces</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1487
+ </dt>
1488
+ <dd></dd>
1489
+ <dt>
1490
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-highlight-current-line" title="gtk_source_view_set_highlight_current_line ()">gtk_source_view_set_highlight_current_line</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1491
+ </dt>
1492
+ <dd></dd>
1493
+ <dt>
1494
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-indent-on-tab" title="gtk_source_view_set_indent_on_tab ()">gtk_source_view_set_indent_on_tab</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1495
+ </dt>
1496
+ <dd></dd>
1497
+ <dt>
1498
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-indent-width" title="gtk_source_view_set_indent_width ()">gtk_source_view_set_indent_width</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1499
+ </dt>
1500
+ <dd></dd>
1501
+ <dt>
1502
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-insert-spaces-instead-of-tabs" title="gtk_source_view_set_insert_spaces_instead_of_tabs ()">gtk_source_view_set_insert_spaces_instead_of_tabs</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1503
+ </dt>
1504
+ <dd></dd>
1505
+ <dt>
1506
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-mark-attributes" title="gtk_source_view_set_mark_attributes ()">gtk_source_view_set_mark_attributes</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1507
+ </dt>
1508
+ <dd></dd>
1509
+ <dt>
1510
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-right-margin-position" title="gtk_source_view_set_right_margin_position ()">gtk_source_view_set_right_margin_position</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1511
+ </dt>
1512
+ <dd></dd>
1513
+ <dt>
1514
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-show-line-marks" title="gtk_source_view_set_show_line_marks ()">gtk_source_view_set_show_line_marks</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1515
+ </dt>
1516
+ <dd></dd>
1517
+ <dt>
1518
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-show-line-numbers" title="gtk_source_view_set_show_line_numbers ()">gtk_source_view_set_show_line_numbers</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1519
+ </dt>
1520
+ <dd></dd>
1521
+ <dt>
1522
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-show-right-margin" title="gtk_source_view_set_show_right_margin ()">gtk_source_view_set_show_right_margin</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1523
+ </dt>
1524
+ <dd></dd>
1525
+ <dt>
1526
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-smart-home-end" title="gtk_source_view_set_smart_home_end ()">gtk_source_view_set_smart_home_end</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1527
+ </dt>
1528
+ <dd></dd>
1529
+ <dt>
1530
+ <a class="link" href="GtkSourceView.html#gtk-source-view-set-tab-width" title="gtk_source_view_set_tab_width ()">gtk_source_view_set_tab_width</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
1531
+ </dt>
1532
+ <dd></dd>
1533
+ </div>
1534
+ <div class="footer">
1535
+ <hr>
1536
+ Generated by GTK-Doc V1.18.1</div>
1537
+ </body>
1538
+ </html>