gtksourceview3 2.2.4-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (334) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +59 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +67 -0
  5. data/ext/gtksourceview3/gtksourceview3.def +2 -0
  6. data/ext/gtksourceview3/rbgtksource.c +53 -0
  7. data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
  8. data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
  9. data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
  10. data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
  11. data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +40 -0
  12. data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
  13. data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
  14. data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
  15. data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
  16. data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
  17. data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
  18. data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
  19. data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
  20. data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
  21. data/ext/gtksourceview3/rbgtksourceview.c +94 -0
  22. data/ext/gtksourceview3/rbgtksourceview3conversions.h +50 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +53 -0
  24. data/extconf.rb +49 -0
  25. data/lib/2.0/gtksourceview3.so +0 -0
  26. data/lib/2.1/gtksourceview3.so +0 -0
  27. data/lib/2.2/gtksourceview3.so +0 -0
  28. data/lib/gtksourceview3.rb +20 -0
  29. data/lib/gtksourceview3/deprecated.rb +47 -0
  30. data/sample/sourcelanguagemanager.rb +21 -0
  31. data/sample/test.rb +32 -0
  32. data/test/run-test.rb +44 -0
  33. data/test/test_mark_attributes.rb +26 -0
  34. data/test/test_source_gutter_renderer.rb +33 -0
  35. data/test/test_source_language_manager.rb +46 -0
  36. data/test/test_source_view.rb +57 -0
  37. data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +65 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +54 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +213 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +142 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +95 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +78 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +70 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +97 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +137 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +54 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +115 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +122 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +147 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +229 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +87 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +85 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +84 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +100 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +175 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +133 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +85 -0
  62. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +45 -0
  63. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +109 -0
  64. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +86 -0
  65. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +101 -0
  66. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +75 -0
  67. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +34 -0
  68. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +88 -0
  69. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +213 -0
  70. data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
  71. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  72. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  73. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  74. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  75. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  76. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  77. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  78. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  79. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  80. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  81. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  82. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  83. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  84. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  85. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  86. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  87. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  88. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  89. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  90. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  91. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  92. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  93. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  94. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  95. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  96. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  97. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  98. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  99. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  100. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  101. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  102. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  103. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  104. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  105. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  106. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  107. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  108. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  109. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  110. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  111. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  112. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  113. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  114. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  154. data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +11360 -0
  155. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +2143 -0
  156. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +1129 -0
  157. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +397 -0
  158. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +348 -0
  159. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +367 -0
  160. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +572 -0
  161. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +750 -0
  162. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +345 -0
  163. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +366 -0
  164. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +563 -0
  165. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +769 -0
  166. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +962 -0
  167. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +490 -0
  168. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +1700 -0
  169. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +468 -0
  170. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +228 -0
  171. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +584 -0
  172. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +476 -0
  173. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +310 -0
  174. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +897 -0
  175. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +2149 -0
  176. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +1116 -0
  177. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +606 -0
  178. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +358 -0
  179. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +398 -0
  180. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +463 -0
  181. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +462 -0
  182. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1990 -0
  183. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +81 -0
  184. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +43 -0
  185. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +195 -0
  186. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +39 -0
  187. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +299 -0
  188. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +35 -0
  189. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +95 -0
  190. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +2187 -0
  191. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +119 -0
  192. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +47 -0
  193. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +154 -0
  194. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +601 -0
  195. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  196. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +146 -0
  197. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +882 -0
  198. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +873 -0
  199. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +654 -0
  200. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left-insensitive.png +0 -0
  201. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  202. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +71 -0
  203. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right-insensitive.png +0 -0
  204. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  205. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +283 -0
  206. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +476 -0
  207. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up-insensitive.png +0 -0
  208. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  209. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +2199 -0
  210. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  211. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  212. data/vendor/local/share/gtksourceview-3.0/language-specs/ansforth94.lang +729 -0
  213. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  214. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +330 -0
  215. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  216. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  217. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  218. data/vendor/local/share/gtksourceview-3.0/language-specs/bluespec.lang +188 -0
  219. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  220. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  221. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  222. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +93 -0
  223. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  224. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  225. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +647 -0
  226. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +120 -0
  227. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  228. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +542 -0
  229. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  230. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +318 -0
  231. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +262 -0
  232. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  233. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  234. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  235. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  236. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  237. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  238. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  239. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  240. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  241. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +113 -0
  242. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  243. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +591 -0
  244. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  245. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  246. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  247. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  248. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  249. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  250. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  251. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  252. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  253. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  254. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +281 -0
  255. data/vendor/local/share/gtksourceview-3.0/language-specs/idl-exelis.lang +620 -0
  256. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  257. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  258. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  259. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  260. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  261. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +339 -0
  262. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  263. data/vendor/local/share/gtksourceview-3.0/language-specs/julia.lang +378 -0
  264. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  265. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  266. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  267. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +600 -0
  268. data/vendor/local/share/gtksourceview-3.0/language-specs/lex.lang +209 -0
  269. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  270. data/vendor/local/share/gtksourceview-3.0/language-specs/llvm.lang +315 -0
  271. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  272. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  273. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  274. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  275. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  276. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  277. data/vendor/local/share/gtksourceview-3.0/language-specs/mediawiki.lang +327 -0
  278. data/vendor/local/share/gtksourceview-3.0/language-specs/modelica.lang +262 -0
  279. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  280. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  281. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  282. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  283. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  284. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  285. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  286. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  287. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  288. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  289. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  290. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  291. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  292. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1045 -0
  293. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +363 -0
  294. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  295. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  296. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  297. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +101 -0
  298. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  299. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +472 -0
  300. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  301. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +212 -0
  302. data/vendor/local/share/gtksourceview-3.0/language-specs/rst.lang +142 -0
  303. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +750 -0
  304. data/vendor/local/share/gtksourceview-3.0/language-specs/scala.lang +384 -0
  305. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  306. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  307. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  308. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  309. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  310. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  311. data/vendor/local/share/gtksourceview-3.0/language-specs/sweave.lang +67 -0
  312. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  313. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  314. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  315. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  316. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  317. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  318. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +476 -0
  319. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  320. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  321. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  322. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  323. data/vendor/local/share/gtksourceview-3.0/language-specs/yaml.lang +214 -0
  324. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +121 -0
  325. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +148 -0
  326. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +171 -0
  327. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +129 -0
  328. data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +101 -0
  329. data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +101 -0
  330. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +142 -0
  331. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +130 -0
  332. data/vendor/local/share/license/gtksourceview/AUTHORS +13 -0
  333. data/vendor/local/share/license/gtksourceview/COPYING +504 -0
  334. metadata +389 -0
@@ -0,0 +1,35 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkSourceView 3 Reference Manual: Index of new symbols in 3.4</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
9
+ <link rel="prev" href="api-index-3-0.html" title="Index of new symbols in 3.0">
10
+ <link rel="next" href="api-index-3-10.html" title="Index of new symbols in 3.10">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxS">S</a></span></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="api-index-3-0.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="api-index-3-10.html"><img src="right.png" width="16" height="16" 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-3-4"></a>Index of new symbols in 3.4</h1></div></div></div>
25
+ <a name="idx"></a><a name="idxS"></a><h3 class="title">S</h3>
26
+ <dt>
27
+ <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>
28
+ </dt>
29
+ <dd></dd>
30
+ </div>
31
+ <div class="footer">
32
+ <hr>
33
+ Generated by GTK-Doc V1.21.1</div>
34
+ </body>
35
+ </html>
@@ -0,0 +1,95 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkSourceView 3 Reference Manual: Index of deprecated symbols</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
9
+ <link rel="prev" href="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.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxS">S</a></span></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="api-index-3-0.html"><img src="right.png" width="16" height="16" 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><a name="idxS"></a><h3 class="title">S</h3>
26
+ <dt>
27
+ <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>
28
+ </dt>
29
+ <dd></dd>
30
+ <dt>
31
+ <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>
32
+ </dt>
33
+ <dd></dd>
34
+ <dt>
35
+ <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>
36
+ </dt>
37
+ <dd></dd>
38
+ <dt>
39
+ <a class="link" href="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--stock-id" title="The “stock-id” property">GtkSourceGutterRendererPixbuf:stock-id</a>, object property in <a class="link" href="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
40
+ </dt>
41
+ <dd></dd>
42
+ <dt>
43
+ <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>
44
+ </dt>
45
+ <dd></dd>
46
+ <dt>
47
+ <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>
48
+ </dt>
49
+ <dd></dd>
50
+ <dt>
51
+ <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>
52
+ </dt>
53
+ <dd></dd>
54
+ <dt>
55
+ <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>
56
+ </dt>
57
+ <dd></dd>
58
+ <dt>
59
+ <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>
60
+ </dt>
61
+ <dd></dd>
62
+ <dt>
63
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-get-padding" title="gtk_source_gutter_get_padding ()">gtk_source_gutter_get_padding</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
64
+ </dt>
65
+ <dd></dd>
66
+ <dt>
67
+ <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>
68
+ </dt>
69
+ <dd></dd>
70
+ <dt>
71
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
72
+ </dt>
73
+ <dd></dd>
74
+ <dt>
75
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
76
+ </dt>
77
+ <dd></dd>
78
+ <dt>
79
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-set-padding" title="gtk_source_gutter_set_padding ()">gtk_source_gutter_set_padding</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
80
+ </dt>
81
+ <dd></dd>
82
+ <dt>
83
+ <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>
84
+ </dt>
85
+ <dd></dd>
86
+ <dt>
87
+ <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>
88
+ </dt>
89
+ <dd></dd>
90
+ </div>
91
+ <div class="footer">
92
+ <hr>
93
+ Generated by GTK-Doc V1.21.1</div>
94
+ </body>
95
+ </html>
@@ -0,0 +1,2187 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkSourceView 3 Reference Manual: Index of all symbols</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
9
+ <link rel="prev" href="object-tree.html" title="Object Hierarchy">
10
+ <link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxS">S</a></span></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="object-tree.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="api-index-deprecated.html"><img src="right.png" width="16" height="16" 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-full"></a>Index of all symbols</h1></div></div></div>
25
+ <a name="idx"></a><a name="idxS"></a><h3 class="title">S</h3>
26
+ <dt>
27
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBracketMatchType" title="enum GtkSourceBracketMatchType">GtkSourceBracketMatchType</a>, enum in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
28
+ </dt>
29
+ <dd></dd>
30
+ <dt>
31
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer-struct" title="GtkSourceBuffer">GtkSourceBuffer</a>, struct in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
32
+ </dt>
33
+ <dd></dd>
34
+ <dt>
35
+ <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>
36
+ </dt>
37
+ <dd></dd>
38
+ <dt>
39
+ <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>
40
+ </dt>
41
+ <dd></dd>
42
+ <dt>
43
+ <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>
44
+ </dt>
45
+ <dd></dd>
46
+ <dt>
47
+ <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>
48
+ </dt>
49
+ <dd></dd>
50
+ <dt>
51
+ <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>
52
+ </dt>
53
+ <dd></dd>
54
+ <dt>
55
+ <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>
56
+ </dt>
57
+ <dd></dd>
58
+ <dt>
59
+ <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>
60
+ </dt>
61
+ <dd></dd>
62
+ <dt>
63
+ <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>
64
+ </dt>
65
+ <dd></dd>
66
+ <dt>
67
+ <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>
68
+ </dt>
69
+ <dd></dd>
70
+ <dt>
71
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--implicit-trailing-newline" title="The “implicit-trailing-newline” property">GtkSourceBuffer:implicit-trailing-newline</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
72
+ </dt>
73
+ <dd></dd>
74
+ <dt>
75
+ <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>
76
+ </dt>
77
+ <dd></dd>
78
+ <dt>
79
+ <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>
80
+ </dt>
81
+ <dd></dd>
82
+ <dt>
83
+ <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>
84
+ </dt>
85
+ <dd></dd>
86
+ <dt>
87
+ <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>
88
+ </dt>
89
+ <dd></dd>
90
+ <dt>
91
+ <a class="link" href="GtkSourceBuffer.html#GtkSourceChangeCaseType" title="enum GtkSourceChangeCaseType">GtkSourceChangeCaseType</a>, enum in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
92
+ </dt>
93
+ <dd></dd>
94
+ <dt>
95
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletion-struct" title="GtkSourceCompletion">GtkSourceCompletion</a>, struct in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
96
+ </dt>
97
+ <dd></dd>
98
+ <dt>
99
+ <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>
100
+ </dt>
101
+ <dd></dd>
102
+ <dt>
103
+ <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>
104
+ </dt>
105
+ <dd></dd>
106
+ <dt>
107
+ <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>
108
+ </dt>
109
+ <dd></dd>
110
+ <dt>
111
+ <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>
112
+ </dt>
113
+ <dd></dd>
114
+ <dt>
115
+ <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>
116
+ </dt>
117
+ <dd></dd>
118
+ <dt>
119
+ <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>
120
+ </dt>
121
+ <dd></dd>
122
+ <dt>
123
+ <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>
124
+ </dt>
125
+ <dd></dd>
126
+ <dt>
127
+ <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>
128
+ </dt>
129
+ <dd></dd>
130
+ <dt>
131
+ <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>
132
+ </dt>
133
+ <dd></dd>
134
+ <dt>
135
+ <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>
136
+ </dt>
137
+ <dd></dd>
138
+ <dt>
139
+ <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>
140
+ </dt>
141
+ <dd></dd>
142
+ <dt>
143
+ <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>
144
+ </dt>
145
+ <dd></dd>
146
+ <dt>
147
+ <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>
148
+ </dt>
149
+ <dd></dd>
150
+ <dt>
151
+ <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>
152
+ </dt>
153
+ <dd></dd>
154
+ <dt>
155
+ <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>
156
+ </dt>
157
+ <dd></dd>
158
+ <dt>
159
+ <a class="link" href="GtkSourceCompletionContext.html#GtkSourceCompletionActivation" title="enum GtkSourceCompletionActivation">GtkSourceCompletionActivation</a>, enum in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
160
+ </dt>
161
+ <dd></dd>
162
+ <dt>
163
+ <a class="link" href="GtkSourceCompletionContext.html#GtkSourceCompletionContext-struct" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>, struct in <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
164
+ </dt>
165
+ <dd></dd>
166
+ <dt>
167
+ <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>
168
+ </dt>
169
+ <dd></dd>
170
+ <dt>
171
+ <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>
172
+ </dt>
173
+ <dd></dd>
174
+ <dt>
175
+ <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>
176
+ </dt>
177
+ <dd></dd>
178
+ <dt>
179
+ <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>
180
+ </dt>
181
+ <dd></dd>
182
+ <dt>
183
+ <a class="link" href="GtkSourceCompletion.html#GtkSourceCompletionError" title="enum GtkSourceCompletionError">GtkSourceCompletionError</a>, enum in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
184
+ </dt>
185
+ <dd></dd>
186
+ <dt>
187
+ <a class="link" href="GtkSourceCompletionInfo.html#GtkSourceCompletionInfo-struct" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>, struct in <a class="link" href="GtkSourceCompletionInfo.html" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>
188
+ </dt>
189
+ <dd></dd>
190
+ <dt>
191
+ <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>
192
+ </dt>
193
+ <dd></dd>
194
+ <dt>
195
+ <a class="link" href="GtkSourceCompletionItem.html#GtkSourceCompletionItem-struct" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>, struct in <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
196
+ </dt>
197
+ <dd></dd>
198
+ <dt>
199
+ <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>
200
+ </dt>
201
+ <dd></dd>
202
+ <dt>
203
+ <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>
204
+ </dt>
205
+ <dd></dd>
206
+ <dt>
207
+ <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>
208
+ </dt>
209
+ <dd></dd>
210
+ <dt>
211
+ <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>
212
+ </dt>
213
+ <dd></dd>
214
+ <dt>
215
+ <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>
216
+ </dt>
217
+ <dd></dd>
218
+ <dt>
219
+ <a class="link" href="GtkSourceCompletionProposal.html#GtkSourceCompletionProposal-struct" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>, struct in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
220
+ </dt>
221
+ <dd></dd>
222
+ <dt>
223
+ <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>
224
+ </dt>
225
+ <dd></dd>
226
+ <dt>
227
+ <a class="link" href="GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface" title="struct GtkSourceCompletionProposalIface">GtkSourceCompletionProposalIface</a>, struct in <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
228
+ </dt>
229
+ <dd></dd>
230
+ <dt>
231
+ <a class="link" href="GtkSourceCompletionProvider.html#GtkSourceCompletionProvider-struct" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>, struct in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
232
+ </dt>
233
+ <dd></dd>
234
+ <dt>
235
+ <a class="link" href="GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface" title="struct GtkSourceCompletionProviderIface">GtkSourceCompletionProviderIface</a>, struct in <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
236
+ </dt>
237
+ <dd></dd>
238
+ <dt>
239
+ <a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords-struct" title="struct GtkSourceCompletionWords">GtkSourceCompletionWords</a>, struct in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
240
+ </dt>
241
+ <dd></dd>
242
+ <dt>
243
+ <a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords--activation" title="The “activation” property">GtkSourceCompletionWords:activation</a>, object property in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
244
+ </dt>
245
+ <dd></dd>
246
+ <dt>
247
+ <a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords--icon" title="The “icon” property">GtkSourceCompletionWords:icon</a>, object property in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
248
+ </dt>
249
+ <dd></dd>
250
+ <dt>
251
+ <a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords--interactive-delay" title="The “interactive-delay” property">GtkSourceCompletionWords:interactive-delay</a>, object property in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
252
+ </dt>
253
+ <dd></dd>
254
+ <dt>
255
+ <a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords--minimum-word-size" title="The “minimum-word-size” property">GtkSourceCompletionWords:minimum-word-size</a>, object property in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
256
+ </dt>
257
+ <dd></dd>
258
+ <dt>
259
+ <a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords--name" title="The “name” property">GtkSourceCompletionWords:name</a>, object property in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
260
+ </dt>
261
+ <dd></dd>
262
+ <dt>
263
+ <a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords--priority" title="The “priority” property">GtkSourceCompletionWords:priority</a>, object property in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
264
+ </dt>
265
+ <dd></dd>
266
+ <dt>
267
+ <a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords--proposals-batch-size" title="The “proposals-batch-size” property">GtkSourceCompletionWords:proposals-batch-size</a>, object property in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
268
+ </dt>
269
+ <dd></dd>
270
+ <dt>
271
+ <a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords--scan-batch-size" title="The “scan-batch-size” property">GtkSourceCompletionWords:scan-batch-size</a>, object property in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
272
+ </dt>
273
+ <dd></dd>
274
+ <dt>
275
+ <a class="link" href="GtkSourceFile.html#GtkSourceCompressionType" title="enum GtkSourceCompressionType">GtkSourceCompressionType</a>, enum in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
276
+ </dt>
277
+ <dd></dd>
278
+ <dt>
279
+ <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags">GtkSourceDrawSpacesFlags</a>, enum in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
280
+ </dt>
281
+ <dd></dd>
282
+ <dt>
283
+ <a class="link" href="GtkSourceEncoding.html#GtkSourceEncoding-struct" title="GtkSourceEncoding">GtkSourceEncoding</a>, struct in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
284
+ </dt>
285
+ <dd></dd>
286
+ <dt>
287
+ <a class="link" href="GtkSourceFile.html#GtkSourceFile-struct" title="GtkSourceFile">GtkSourceFile</a>, struct in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
288
+ </dt>
289
+ <dd></dd>
290
+ <dt>
291
+ <a class="link" href="GtkSourceFile.html#GtkSourceFile--compression-type" title="The “compression-type” property">GtkSourceFile:compression-type</a>, object property in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
292
+ </dt>
293
+ <dd></dd>
294
+ <dt>
295
+ <a class="link" href="GtkSourceFile.html#GtkSourceFile--encoding" title="The “encoding” property">GtkSourceFile:encoding</a>, object property in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
296
+ </dt>
297
+ <dd></dd>
298
+ <dt>
299
+ <a class="link" href="GtkSourceFile.html#GtkSourceFile--location" title="The “location” property">GtkSourceFile:location</a>, object property in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
300
+ </dt>
301
+ <dd></dd>
302
+ <dt>
303
+ <a class="link" href="GtkSourceFile.html#GtkSourceFile--newline-type" title="The “newline-type” property">GtkSourceFile:newline-type</a>, object property in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
304
+ </dt>
305
+ <dd></dd>
306
+ <dt>
307
+ <a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader-struct" title="GtkSourceFileLoader">GtkSourceFileLoader</a>, struct in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
308
+ </dt>
309
+ <dd></dd>
310
+ <dt>
311
+ <a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader--buffer" title="The “buffer” property">GtkSourceFileLoader:buffer</a>, object property in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
312
+ </dt>
313
+ <dd></dd>
314
+ <dt>
315
+ <a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader--file" title="The “file” property">GtkSourceFileLoader:file</a>, object property in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
316
+ </dt>
317
+ <dd></dd>
318
+ <dt>
319
+ <a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader--input-stream" title="The “input-stream” property">GtkSourceFileLoader:input-stream</a>, object property in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
320
+ </dt>
321
+ <dd></dd>
322
+ <dt>
323
+ <a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader--location" title="The “location” property">GtkSourceFileLoader:location</a>, object property in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
324
+ </dt>
325
+ <dd></dd>
326
+ <dt>
327
+ <a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoaderError" title="enum GtkSourceFileLoaderError">GtkSourceFileLoaderError</a>, enum in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
328
+ </dt>
329
+ <dd></dd>
330
+ <dt>
331
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver-struct" title="GtkSourceFileSaver">GtkSourceFileSaver</a>, struct in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
332
+ </dt>
333
+ <dd></dd>
334
+ <dt>
335
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--buffer" title="The “buffer” property">GtkSourceFileSaver:buffer</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
336
+ </dt>
337
+ <dd></dd>
338
+ <dt>
339
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--compression-type" title="The “compression-type” property">GtkSourceFileSaver:compression-type</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
340
+ </dt>
341
+ <dd></dd>
342
+ <dt>
343
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--encoding" title="The “encoding” property">GtkSourceFileSaver:encoding</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
344
+ </dt>
345
+ <dd></dd>
346
+ <dt>
347
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--file" title="The “file” property">GtkSourceFileSaver:file</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
348
+ </dt>
349
+ <dd></dd>
350
+ <dt>
351
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--flags" title="The “flags” property">GtkSourceFileSaver:flags</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
352
+ </dt>
353
+ <dd></dd>
354
+ <dt>
355
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--location" title="The “location” property">GtkSourceFileSaver:location</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
356
+ </dt>
357
+ <dd></dd>
358
+ <dt>
359
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--newline-type" title="The “newline-type” property">GtkSourceFileSaver:newline-type</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
360
+ </dt>
361
+ <dd></dd>
362
+ <dt>
363
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaverError" title="enum GtkSourceFileSaverError">GtkSourceFileSaverError</a>, enum in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
364
+ </dt>
365
+ <dd></dd>
366
+ <dt>
367
+ <a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaverFlags" title="enum GtkSourceFileSaverFlags">GtkSourceFileSaverFlags</a>, enum in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
368
+ </dt>
369
+ <dd></dd>
370
+ <dt>
371
+ <a class="link" href="GtkSourceGutter.html#GtkSourceGutter-struct" title="GtkSourceGutter">GtkSourceGutter</a>, struct in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
372
+ </dt>
373
+ <dd></dd>
374
+ <dt>
375
+ <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>
376
+ </dt>
377
+ <dd></dd>
378
+ <dt>
379
+ <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>
380
+ </dt>
381
+ <dd></dd>
382
+ <dt>
383
+ <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>
384
+ </dt>
385
+ <dd></dd>
386
+ <dt>
387
+ <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>
388
+ </dt>
389
+ <dd></dd>
390
+ <dt>
391
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-struct" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>, struct in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
392
+ </dt>
393
+ <dd></dd>
394
+ <dt>
395
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-activate" title="The “activate” signal">GtkSourceGutterRenderer::activate</a>, object signal in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
396
+ </dt>
397
+ <dd></dd>
398
+ <dt>
399
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-query-activatable" title="The “query-activatable” signal">GtkSourceGutterRenderer::query-activatable</a>, object signal in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
400
+ </dt>
401
+ <dd></dd>
402
+ <dt>
403
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-query-data" title="The “query-data” signal">GtkSourceGutterRenderer::query-data</a>, object signal in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
404
+ </dt>
405
+ <dd></dd>
406
+ <dt>
407
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-query-tooltip" title="The “query-tooltip” signal">GtkSourceGutterRenderer::query-tooltip</a>, object signal in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
408
+ </dt>
409
+ <dd></dd>
410
+ <dt>
411
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-queue-draw" title="The “queue-draw” signal">GtkSourceGutterRenderer::queue-draw</a>, object signal in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
412
+ </dt>
413
+ <dd></dd>
414
+ <dt>
415
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--alignment-mode" title="The “alignment-mode” property">GtkSourceGutterRenderer:alignment-mode</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
416
+ </dt>
417
+ <dd></dd>
418
+ <dt>
419
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--background-rgba" title="The “background-rgba” property">GtkSourceGutterRenderer:background-rgba</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
420
+ </dt>
421
+ <dd></dd>
422
+ <dt>
423
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--background-set" title="The “background-set” property">GtkSourceGutterRenderer:background-set</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
424
+ </dt>
425
+ <dd></dd>
426
+ <dt>
427
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--size" title="The “size” property">GtkSourceGutterRenderer:size</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
428
+ </dt>
429
+ <dd></dd>
430
+ <dt>
431
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--view" title="The “view” property">GtkSourceGutterRenderer:view</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
432
+ </dt>
433
+ <dd></dd>
434
+ <dt>
435
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--visible" title="The “visible” property">GtkSourceGutterRenderer:visible</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
436
+ </dt>
437
+ <dd></dd>
438
+ <dt>
439
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--window-type" title="The “window-type” property">GtkSourceGutterRenderer:window-type</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
440
+ </dt>
441
+ <dd></dd>
442
+ <dt>
443
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--xalign" title="The “xalign” property">GtkSourceGutterRenderer:xalign</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
444
+ </dt>
445
+ <dd></dd>
446
+ <dt>
447
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--xpad" title="The “xpad” property">GtkSourceGutterRenderer:xpad</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
448
+ </dt>
449
+ <dd></dd>
450
+ <dt>
451
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--yalign" title="The “yalign” property">GtkSourceGutterRenderer:yalign</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
452
+ </dt>
453
+ <dd></dd>
454
+ <dt>
455
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--ypad" title="The “ypad” property">GtkSourceGutterRenderer:ypad</a>, object property in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
456
+ </dt>
457
+ <dd></dd>
458
+ <dt>
459
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRendererAlignmentMode" title="enum GtkSourceGutterRendererAlignmentMode">GtkSourceGutterRendererAlignmentMode</a>, enum in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
460
+ </dt>
461
+ <dd></dd>
462
+ <dt>
463
+ <a class="link" href="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf-struct" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>, struct in <a class="link" href="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
464
+ </dt>
465
+ <dd></dd>
466
+ <dt>
467
+ <a class="link" href="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--gicon" title="The “gicon” property">GtkSourceGutterRendererPixbuf:gicon</a>, object property in <a class="link" href="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
468
+ </dt>
469
+ <dd></dd>
470
+ <dt>
471
+ <a class="link" href="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--icon-name" title="The “icon-name” property">GtkSourceGutterRendererPixbuf:icon-name</a>, object property in <a class="link" href="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
472
+ </dt>
473
+ <dd></dd>
474
+ <dt>
475
+ <a class="link" href="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--pixbuf" title="The “pixbuf” property">GtkSourceGutterRendererPixbuf:pixbuf</a>, object property in <a class="link" href="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
476
+ </dt>
477
+ <dd></dd>
478
+ <dt>
479
+ <a class="link" href="GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--stock-id" title="The “stock-id” property">GtkSourceGutterRendererPixbuf:stock-id</a>, object property in <a class="link" href="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
480
+ </dt>
481
+ <dd></dd>
482
+ <dt>
483
+ <a class="link" href="GtkSourceGutterRenderer.html#GtkSourceGutterRendererState" title="enum GtkSourceGutterRendererState">GtkSourceGutterRendererState</a>, enum in <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
484
+ </dt>
485
+ <dd></dd>
486
+ <dt>
487
+ <a class="link" href="GtkSourceGutterRendererText.html#GtkSourceGutterRendererText-struct" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>, struct in <a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
488
+ </dt>
489
+ <dd></dd>
490
+ <dt>
491
+ <a class="link" href="GtkSourceGutterRendererText.html#GtkSourceGutterRendererText--markup" title="The “markup” property">GtkSourceGutterRendererText:markup</a>, object property in <a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
492
+ </dt>
493
+ <dd></dd>
494
+ <dt>
495
+ <a class="link" href="GtkSourceGutterRendererText.html#GtkSourceGutterRendererText--text" title="The “text” property">GtkSourceGutterRendererText:text</a>, object property in <a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
496
+ </dt>
497
+ <dd></dd>
498
+ <dt>
499
+ <a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage-struct" title="GtkSourceLanguage">GtkSourceLanguage</a>, struct in <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
500
+ </dt>
501
+ <dd></dd>
502
+ <dt>
503
+ <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>
504
+ </dt>
505
+ <dd></dd>
506
+ <dt>
507
+ <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>
508
+ </dt>
509
+ <dd></dd>
510
+ <dt>
511
+ <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>
512
+ </dt>
513
+ <dd></dd>
514
+ <dt>
515
+ <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>
516
+ </dt>
517
+ <dd></dd>
518
+ <dt>
519
+ <a class="link" href="GtkSourceLanguageManager.html#GtkSourceLanguageManager-struct" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>, struct in <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
520
+ </dt>
521
+ <dd></dd>
522
+ <dt>
523
+ <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>
524
+ </dt>
525
+ <dd></dd>
526
+ <dt>
527
+ <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>
528
+ </dt>
529
+ <dd></dd>
530
+ <dt>
531
+ <a class="link" href="GtkSourceMark.html#GtkSourceMark-struct" title="GtkSourceMark">GtkSourceMark</a>, struct in <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
532
+ </dt>
533
+ <dd></dd>
534
+ <dt>
535
+ <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>
536
+ </dt>
537
+ <dd></dd>
538
+ <dt>
539
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-struct" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>, struct in <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
540
+ </dt>
541
+ <dd></dd>
542
+ <dt>
543
+ <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>
544
+ </dt>
545
+ <dd></dd>
546
+ <dt>
547
+ <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>
548
+ </dt>
549
+ <dd></dd>
550
+ <dt>
551
+ <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>
552
+ </dt>
553
+ <dd></dd>
554
+ <dt>
555
+ <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>
556
+ </dt>
557
+ <dd></dd>
558
+ <dt>
559
+ <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>
560
+ </dt>
561
+ <dd></dd>
562
+ <dt>
563
+ <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>
564
+ </dt>
565
+ <dd></dd>
566
+ <dt>
567
+ <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>
568
+ </dt>
569
+ <dd></dd>
570
+ <dt>
571
+ <a class="link" href="GtkSourceFile.html#GtkSourceMountOperationFactory" title="GtkSourceMountOperationFactory ()">GtkSourceMountOperationFactory</a>, user_function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
572
+ </dt>
573
+ <dd></dd>
574
+ <dt>
575
+ <a class="link" href="GtkSourceFile.html#GtkSourceNewlineType" title="enum GtkSourceNewlineType">GtkSourceNewlineType</a>, enum in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
576
+ </dt>
577
+ <dd></dd>
578
+ <dt>
579
+ <a class="link" href="GtkSourcePrintCompositor.html#GtkSourcePrintCompositor-struct" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>, struct in <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
580
+ </dt>
581
+ <dd></dd>
582
+ <dt>
583
+ <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>
584
+ </dt>
585
+ <dd></dd>
586
+ <dt>
587
+ <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>
588
+ </dt>
589
+ <dd></dd>
590
+ <dt>
591
+ <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>
592
+ </dt>
593
+ <dd></dd>
594
+ <dt>
595
+ <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>
596
+ </dt>
597
+ <dd></dd>
598
+ <dt>
599
+ <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>
600
+ </dt>
601
+ <dd></dd>
602
+ <dt>
603
+ <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>
604
+ </dt>
605
+ <dd></dd>
606
+ <dt>
607
+ <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>
608
+ </dt>
609
+ <dd></dd>
610
+ <dt>
611
+ <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>
612
+ </dt>
613
+ <dd></dd>
614
+ <dt>
615
+ <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>
616
+ </dt>
617
+ <dd></dd>
618
+ <dt>
619
+ <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>
620
+ </dt>
621
+ <dd></dd>
622
+ <dt>
623
+ <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>
624
+ </dt>
625
+ <dd></dd>
626
+ <dt>
627
+ <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>
628
+ </dt>
629
+ <dd></dd>
630
+ <dt>
631
+ <a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext-struct" title="GtkSourceSearchContext">GtkSourceSearchContext</a>, struct in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
632
+ </dt>
633
+ <dd></dd>
634
+ <dt>
635
+ <a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--buffer" title="The “buffer” property">GtkSourceSearchContext:buffer</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
636
+ </dt>
637
+ <dd></dd>
638
+ <dt>
639
+ <a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--highlight" title="The “highlight” property">GtkSourceSearchContext:highlight</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
640
+ </dt>
641
+ <dd></dd>
642
+ <dt>
643
+ <a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--occurrences-count" title="The “occurrences-count” property">GtkSourceSearchContext:occurrences-count</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
644
+ </dt>
645
+ <dd></dd>
646
+ <dt>
647
+ <a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--regex-error" title="The “regex-error” property">GtkSourceSearchContext:regex-error</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
648
+ </dt>
649
+ <dd></dd>
650
+ <dt>
651
+ <a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--settings" title="The “settings” property">GtkSourceSearchContext:settings</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
652
+ </dt>
653
+ <dd></dd>
654
+ <dt>
655
+ <a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings-struct" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>, struct in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
656
+ </dt>
657
+ <dd></dd>
658
+ <dt>
659
+ <a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--at-word-boundaries" title="The “at-word-boundaries” property">GtkSourceSearchSettings:at-word-boundaries</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
660
+ </dt>
661
+ <dd></dd>
662
+ <dt>
663
+ <a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--case-sensitive" title="The “case-sensitive” property">GtkSourceSearchSettings:case-sensitive</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
664
+ </dt>
665
+ <dd></dd>
666
+ <dt>
667
+ <a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--regex-enabled" title="The “regex-enabled” property">GtkSourceSearchSettings:regex-enabled</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
668
+ </dt>
669
+ <dd></dd>
670
+ <dt>
671
+ <a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--search-text" title="The “search-text” property">GtkSourceSearchSettings:search-text</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
672
+ </dt>
673
+ <dd></dd>
674
+ <dt>
675
+ <a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--wrap-around" title="The “wrap-around” property">GtkSourceSearchSettings:wrap-around</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
676
+ </dt>
677
+ <dd></dd>
678
+ <dt>
679
+ <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType">GtkSourceSmartHomeEndType</a>, enum in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
680
+ </dt>
681
+ <dd></dd>
682
+ <dt>
683
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle-struct" title="GtkSourceStyle">GtkSourceStyle</a>, struct in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
684
+ </dt>
685
+ <dd></dd>
686
+ <dt>
687
+ <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>
688
+ </dt>
689
+ <dd></dd>
690
+ <dt>
691
+ <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>
692
+ </dt>
693
+ <dd></dd>
694
+ <dt>
695
+ <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>
696
+ </dt>
697
+ <dd></dd>
698
+ <dt>
699
+ <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>
700
+ </dt>
701
+ <dd></dd>
702
+ <dt>
703
+ <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>
704
+ </dt>
705
+ <dd></dd>
706
+ <dt>
707
+ <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>
708
+ </dt>
709
+ <dd></dd>
710
+ <dt>
711
+ <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>
712
+ </dt>
713
+ <dd></dd>
714
+ <dt>
715
+ <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>
716
+ </dt>
717
+ <dd></dd>
718
+ <dt>
719
+ <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>
720
+ </dt>
721
+ <dd></dd>
722
+ <dt>
723
+ <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>
724
+ </dt>
725
+ <dd></dd>
726
+ <dt>
727
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--scale" title="The “scale” property">GtkSourceStyle:scale</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
728
+ </dt>
729
+ <dd></dd>
730
+ <dt>
731
+ <a class="link" href="GtkSourceStyle.html#GtkSourceStyle--scale-set" title="The “scale-set” property">GtkSourceStyle:scale-set</a>, object property in <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
732
+ </dt>
733
+ <dd></dd>
734
+ <dt>
735
+ <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>
736
+ </dt>
737
+ <dd></dd>
738
+ <dt>
739
+ <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>
740
+ </dt>
741
+ <dd></dd>
742
+ <dt>
743
+ <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>
744
+ </dt>
745
+ <dd></dd>
746
+ <dt>
747
+ <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>
748
+ </dt>
749
+ <dd></dd>
750
+ <dt>
751
+ <a class="link" href="GtkSourceStyleScheme.html#GtkSourceStyleScheme-struct" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>, struct in <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
752
+ </dt>
753
+ <dd></dd>
754
+ <dt>
755
+ <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>
756
+ </dt>
757
+ <dd></dd>
758
+ <dt>
759
+ <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>
760
+ </dt>
761
+ <dd></dd>
762
+ <dt>
763
+ <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>
764
+ </dt>
765
+ <dd></dd>
766
+ <dt>
767
+ <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>
768
+ </dt>
769
+ <dd></dd>
770
+ <dt>
771
+ <a class="link" href="GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager-struct" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>, struct in <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
772
+ </dt>
773
+ <dd></dd>
774
+ <dt>
775
+ <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>
776
+ </dt>
777
+ <dd></dd>
778
+ <dt>
779
+ <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>
780
+ </dt>
781
+ <dd></dd>
782
+ <dt>
783
+ <a class="link" href="GtkSourceUndoManager.html#GtkSourceUndoManager-struct" title="GtkSourceUndoManager">GtkSourceUndoManager</a>, struct in <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
784
+ </dt>
785
+ <dd></dd>
786
+ <dt>
787
+ <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>
788
+ </dt>
789
+ <dd></dd>
790
+ <dt>
791
+ <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>
792
+ </dt>
793
+ <dd></dd>
794
+ <dt>
795
+ <a class="link" href="GtkSourceView.html#GtkSourceView-struct" title="GtkSourceView">GtkSourceView</a>, struct in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
796
+ </dt>
797
+ <dd></dd>
798
+ <dt>
799
+ <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>
800
+ </dt>
801
+ <dd></dd>
802
+ <dt>
803
+ <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>
804
+ </dt>
805
+ <dd></dd>
806
+ <dt>
807
+ <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>
808
+ </dt>
809
+ <dd></dd>
810
+ <dt>
811
+ <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>
812
+ </dt>
813
+ <dd></dd>
814
+ <dt>
815
+ <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>
816
+ </dt>
817
+ <dd></dd>
818
+ <dt>
819
+ <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>
820
+ </dt>
821
+ <dd></dd>
822
+ <dt>
823
+ <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>
824
+ </dt>
825
+ <dd></dd>
826
+ <dt>
827
+ <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>
828
+ </dt>
829
+ <dd></dd>
830
+ <dt>
831
+ <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>
832
+ </dt>
833
+ <dd></dd>
834
+ <dt>
835
+ <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>
836
+ </dt>
837
+ <dd></dd>
838
+ <dt>
839
+ <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>
840
+ </dt>
841
+ <dd></dd>
842
+ <dt>
843
+ <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>
844
+ </dt>
845
+ <dd></dd>
846
+ <dt>
847
+ <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>
848
+ </dt>
849
+ <dd></dd>
850
+ <dt>
851
+ <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>
852
+ </dt>
853
+ <dd></dd>
854
+ <dt>
855
+ <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>
856
+ </dt>
857
+ <dd></dd>
858
+ <dt>
859
+ <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>
860
+ </dt>
861
+ <dd></dd>
862
+ <dt>
863
+ <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>
864
+ </dt>
865
+ <dd></dd>
866
+ <dt>
867
+ <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>
868
+ </dt>
869
+ <dd></dd>
870
+ <dt>
871
+ <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>
872
+ </dt>
873
+ <dd></dd>
874
+ <dt>
875
+ <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>
876
+ </dt>
877
+ <dd></dd>
878
+ <dt>
879
+ <a class="link" href="GtkSourceView.html#GtkSourceViewGutterPosition" title="enum GtkSourceViewGutterPosition">GtkSourceViewGutterPosition</a>, enum in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
880
+ </dt>
881
+ <dd></dd>
882
+ <dt>
883
+ <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>
884
+ </dt>
885
+ <dd></dd>
886
+ <dt>
887
+ <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>
888
+ </dt>
889
+ <dd></dd>
890
+ <dt>
891
+ <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>
892
+ </dt>
893
+ <dd></dd>
894
+ <dt>
895
+ <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>
896
+ </dt>
897
+ <dd></dd>
898
+ <dt>
899
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-change-case" title="gtk_source_buffer_change_case ()">gtk_source_buffer_change_case</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
900
+ </dt>
901
+ <dd></dd>
902
+ <dt>
903
+ <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>
904
+ </dt>
905
+ <dd></dd>
906
+ <dt>
907
+ <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>
908
+ </dt>
909
+ <dd></dd>
910
+ <dt>
911
+ <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>
912
+ </dt>
913
+ <dd></dd>
914
+ <dt>
915
+ <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>
916
+ </dt>
917
+ <dd></dd>
918
+ <dt>
919
+ <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>
920
+ </dt>
921
+ <dd></dd>
922
+ <dt>
923
+ <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>
924
+ </dt>
925
+ <dd></dd>
926
+ <dt>
927
+ <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>
928
+ </dt>
929
+ <dd></dd>
930
+ <dt>
931
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-implicit-trailing-newline" title="gtk_source_buffer_get_implicit_trailing_newline ()">gtk_source_buffer_get_implicit_trailing_newline</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
932
+ </dt>
933
+ <dd></dd>
934
+ <dt>
935
+ <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>
936
+ </dt>
937
+ <dd></dd>
938
+ <dt>
939
+ <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>
940
+ </dt>
941
+ <dd></dd>
942
+ <dt>
943
+ <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>
944
+ </dt>
945
+ <dd></dd>
946
+ <dt>
947
+ <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>
948
+ </dt>
949
+ <dd></dd>
950
+ <dt>
951
+ <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>
952
+ </dt>
953
+ <dd></dd>
954
+ <dt>
955
+ <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>
956
+ </dt>
957
+ <dd></dd>
958
+ <dt>
959
+ <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>
960
+ </dt>
961
+ <dd></dd>
962
+ <dt>
963
+ <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>
964
+ </dt>
965
+ <dd></dd>
966
+ <dt>
967
+ <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>
968
+ </dt>
969
+ <dd></dd>
970
+ <dt>
971
+ <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>
972
+ </dt>
973
+ <dd></dd>
974
+ <dt>
975
+ <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>
976
+ </dt>
977
+ <dd></dd>
978
+ <dt>
979
+ <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>
980
+ </dt>
981
+ <dd></dd>
982
+ <dt>
983
+ <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>
984
+ </dt>
985
+ <dd></dd>
986
+ <dt>
987
+ <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>
988
+ </dt>
989
+ <dd></dd>
990
+ <dt>
991
+ <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>
992
+ </dt>
993
+ <dd></dd>
994
+ <dt>
995
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-set-implicit-trailing-newline" title="gtk_source_buffer_set_implicit_trailing_newline ()">gtk_source_buffer_set_implicit_trailing_newline</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
996
+ </dt>
997
+ <dd></dd>
998
+ <dt>
999
+ <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>
1000
+ </dt>
1001
+ <dd></dd>
1002
+ <dt>
1003
+ <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>
1004
+ </dt>
1005
+ <dd></dd>
1006
+ <dt>
1007
+ <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>
1008
+ </dt>
1009
+ <dd></dd>
1010
+ <dt>
1011
+ <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>
1012
+ </dt>
1013
+ <dd></dd>
1014
+ <dt>
1015
+ <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>
1016
+ </dt>
1017
+ <dd></dd>
1018
+ <dt>
1019
+ <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>
1020
+ </dt>
1021
+ <dd></dd>
1022
+ <dt>
1023
+ <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>
1024
+ </dt>
1025
+ <dd></dd>
1026
+ <dt>
1027
+ <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>
1028
+ </dt>
1029
+ <dd></dd>
1030
+ <dt>
1031
+ <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>
1032
+ </dt>
1033
+ <dd></dd>
1034
+ <dt>
1035
+ <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>
1036
+ </dt>
1037
+ <dd></dd>
1038
+ <dt>
1039
+ <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>
1040
+ </dt>
1041
+ <dd></dd>
1042
+ <dt>
1043
+ <a class="link" href="GtkSourceCompletion.html#GTK-SOURCE-COMPLETION-ERROR:CAPS" title="GTK_SOURCE_COMPLETION_ERROR">GTK_SOURCE_COMPLETION_ERROR</a>, macro in <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
1044
+ </dt>
1045
+ <dd></dd>
1046
+ <dt>
1047
+ <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>
1048
+ </dt>
1049
+ <dd></dd>
1050
+ <dt>
1051
+ <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>
1052
+ </dt>
1053
+ <dd></dd>
1054
+ <dt>
1055
+ <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>
1056
+ </dt>
1057
+ <dd></dd>
1058
+ <dt>
1059
+ <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>
1060
+ </dt>
1061
+ <dd></dd>
1062
+ <dt>
1063
+ <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>
1064
+ </dt>
1065
+ <dd></dd>
1066
+ <dt>
1067
+ <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>
1068
+ </dt>
1069
+ <dd></dd>
1070
+ <dt>
1071
+ <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>
1072
+ </dt>
1073
+ <dd></dd>
1074
+ <dt>
1075
+ <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>
1076
+ </dt>
1077
+ <dd></dd>
1078
+ <dt>
1079
+ <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>
1080
+ </dt>
1081
+ <dd></dd>
1082
+ <dt>
1083
+ <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>
1084
+ </dt>
1085
+ <dd></dd>
1086
+ <dt>
1087
+ <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>
1088
+ </dt>
1089
+ <dd></dd>
1090
+ <dt>
1091
+ <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>
1092
+ </dt>
1093
+ <dd></dd>
1094
+ <dt>
1095
+ <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>
1096
+ </dt>
1097
+ <dd></dd>
1098
+ <dt>
1099
+ <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>
1100
+ </dt>
1101
+ <dd></dd>
1102
+ <dt>
1103
+ <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>
1104
+ </dt>
1105
+ <dd></dd>
1106
+ <dt>
1107
+ <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>
1108
+ </dt>
1109
+ <dd></dd>
1110
+ <dt>
1111
+ <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>
1112
+ </dt>
1113
+ <dd></dd>
1114
+ <dt>
1115
+ <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>
1116
+ </dt>
1117
+ <dd></dd>
1118
+ <dt>
1119
+ <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>
1120
+ </dt>
1121
+ <dd></dd>
1122
+ <dt>
1123
+ <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>
1124
+ </dt>
1125
+ <dd></dd>
1126
+ <dt>
1127
+ <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>
1128
+ </dt>
1129
+ <dd></dd>
1130
+ <dt>
1131
+ <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>
1132
+ </dt>
1133
+ <dd></dd>
1134
+ <dt>
1135
+ <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>
1136
+ </dt>
1137
+ <dd></dd>
1138
+ <dt>
1139
+ <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>
1140
+ </dt>
1141
+ <dd></dd>
1142
+ <dt>
1143
+ <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>
1144
+ </dt>
1145
+ <dd></dd>
1146
+ <dt>
1147
+ <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>
1148
+ </dt>
1149
+ <dd></dd>
1150
+ <dt>
1151
+ <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>
1152
+ </dt>
1153
+ <dd></dd>
1154
+ <dt>
1155
+ <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>
1156
+ </dt>
1157
+ <dd></dd>
1158
+ <dt>
1159
+ <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>
1160
+ </dt>
1161
+ <dd></dd>
1162
+ <dt>
1163
+ <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>
1164
+ </dt>
1165
+ <dd></dd>
1166
+ <dt>
1167
+ <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>
1168
+ </dt>
1169
+ <dd></dd>
1170
+ <dt>
1171
+ <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>
1172
+ </dt>
1173
+ <dd></dd>
1174
+ <dt>
1175
+ <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>
1176
+ </dt>
1177
+ <dd></dd>
1178
+ <dt>
1179
+ <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>
1180
+ </dt>
1181
+ <dd></dd>
1182
+ <dt>
1183
+ <a class="link" href="GtkSourceCompletionWords.html#gtk-source-completion-words-new" title="gtk_source_completion_words_new ()">gtk_source_completion_words_new</a>, function in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
1184
+ </dt>
1185
+ <dd></dd>
1186
+ <dt>
1187
+ <a class="link" href="GtkSourceCompletionWords.html#gtk-source-completion-words-register" title="gtk_source_completion_words_register ()">gtk_source_completion_words_register</a>, function in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
1188
+ </dt>
1189
+ <dd></dd>
1190
+ <dt>
1191
+ <a class="link" href="GtkSourceCompletionWords.html#gtk-source-completion-words-unregister" title="gtk_source_completion_words_unregister ()">gtk_source_completion_words_unregister</a>, function in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
1192
+ </dt>
1193
+ <dd></dd>
1194
+ <dt>
1195
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-copy" title="gtk_source_encoding_copy ()">gtk_source_encoding_copy</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1196
+ </dt>
1197
+ <dd></dd>
1198
+ <dt>
1199
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-free" title="gtk_source_encoding_free ()">gtk_source_encoding_free</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1200
+ </dt>
1201
+ <dd></dd>
1202
+ <dt>
1203
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-all" title="gtk_source_encoding_get_all ()">gtk_source_encoding_get_all</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1204
+ </dt>
1205
+ <dd></dd>
1206
+ <dt>
1207
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-charset" title="gtk_source_encoding_get_charset ()">gtk_source_encoding_get_charset</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1208
+ </dt>
1209
+ <dd></dd>
1210
+ <dt>
1211
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-current" title="gtk_source_encoding_get_current ()">gtk_source_encoding_get_current</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1212
+ </dt>
1213
+ <dd></dd>
1214
+ <dt>
1215
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-from-charset" title="gtk_source_encoding_get_from_charset ()">gtk_source_encoding_get_from_charset</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1216
+ </dt>
1217
+ <dd></dd>
1218
+ <dt>
1219
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-name" title="gtk_source_encoding_get_name ()">gtk_source_encoding_get_name</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1220
+ </dt>
1221
+ <dd></dd>
1222
+ <dt>
1223
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-utf8" title="gtk_source_encoding_get_utf8 ()">gtk_source_encoding_get_utf8</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1224
+ </dt>
1225
+ <dd></dd>
1226
+ <dt>
1227
+ <a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-to-string" title="gtk_source_encoding_to_string ()">gtk_source_encoding_to_string</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
1228
+ </dt>
1229
+ <dd></dd>
1230
+ <dt>
1231
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-get-compression-type" title="gtk_source_file_get_compression_type ()">gtk_source_file_get_compression_type</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1232
+ </dt>
1233
+ <dd></dd>
1234
+ <dt>
1235
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-get-encoding" title="gtk_source_file_get_encoding ()">gtk_source_file_get_encoding</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1236
+ </dt>
1237
+ <dd></dd>
1238
+ <dt>
1239
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-get-location" title="gtk_source_file_get_location ()">gtk_source_file_get_location</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1240
+ </dt>
1241
+ <dd></dd>
1242
+ <dt>
1243
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-get-newline-type" title="gtk_source_file_get_newline_type ()">gtk_source_file_get_newline_type</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1244
+ </dt>
1245
+ <dd></dd>
1246
+ <dt>
1247
+ <a class="link" href="GtkSourceFileLoader.html#GTK-SOURCE-FILE-LOADER-ERROR:CAPS" title="GTK_SOURCE_FILE_LOADER_ERROR">GTK_SOURCE_FILE_LOADER_ERROR</a>, macro in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1248
+ </dt>
1249
+ <dd></dd>
1250
+ <dt>
1251
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-buffer" title="gtk_source_file_loader_get_buffer ()">gtk_source_file_loader_get_buffer</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1252
+ </dt>
1253
+ <dd></dd>
1254
+ <dt>
1255
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-compression-type" title="gtk_source_file_loader_get_compression_type ()">gtk_source_file_loader_get_compression_type</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1256
+ </dt>
1257
+ <dd></dd>
1258
+ <dt>
1259
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-encoding" title="gtk_source_file_loader_get_encoding ()">gtk_source_file_loader_get_encoding</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1260
+ </dt>
1261
+ <dd></dd>
1262
+ <dt>
1263
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-file" title="gtk_source_file_loader_get_file ()">gtk_source_file_loader_get_file</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1264
+ </dt>
1265
+ <dd></dd>
1266
+ <dt>
1267
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-input-stream" title="gtk_source_file_loader_get_input_stream ()">gtk_source_file_loader_get_input_stream</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1268
+ </dt>
1269
+ <dd></dd>
1270
+ <dt>
1271
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-location" title="gtk_source_file_loader_get_location ()">gtk_source_file_loader_get_location</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1272
+ </dt>
1273
+ <dd></dd>
1274
+ <dt>
1275
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-newline-type" title="gtk_source_file_loader_get_newline_type ()">gtk_source_file_loader_get_newline_type</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1276
+ </dt>
1277
+ <dd></dd>
1278
+ <dt>
1279
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-load-async" title="gtk_source_file_loader_load_async ()">gtk_source_file_loader_load_async</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1280
+ </dt>
1281
+ <dd></dd>
1282
+ <dt>
1283
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-load-finish" title="gtk_source_file_loader_load_finish ()">gtk_source_file_loader_load_finish</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1284
+ </dt>
1285
+ <dd></dd>
1286
+ <dt>
1287
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-new" title="gtk_source_file_loader_new ()">gtk_source_file_loader_new</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1288
+ </dt>
1289
+ <dd></dd>
1290
+ <dt>
1291
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-new-from-stream" title="gtk_source_file_loader_new_from_stream ()">gtk_source_file_loader_new_from_stream</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1292
+ </dt>
1293
+ <dd></dd>
1294
+ <dt>
1295
+ <a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-set-candidate-encodings" title="gtk_source_file_loader_set_candidate_encodings ()">gtk_source_file_loader_set_candidate_encodings</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
1296
+ </dt>
1297
+ <dd></dd>
1298
+ <dt>
1299
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-new" title="gtk_source_file_new ()">gtk_source_file_new</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1300
+ </dt>
1301
+ <dd></dd>
1302
+ <dt>
1303
+ <a class="link" href="GtkSourceFileSaver.html#GTK-SOURCE-FILE-SAVER-ERROR:CAPS" title="GTK_SOURCE_FILE_SAVER_ERROR">GTK_SOURCE_FILE_SAVER_ERROR</a>, macro in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1304
+ </dt>
1305
+ <dd></dd>
1306
+ <dt>
1307
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-buffer" title="gtk_source_file_saver_get_buffer ()">gtk_source_file_saver_get_buffer</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1308
+ </dt>
1309
+ <dd></dd>
1310
+ <dt>
1311
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-compression-type" title="gtk_source_file_saver_get_compression_type ()">gtk_source_file_saver_get_compression_type</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1312
+ </dt>
1313
+ <dd></dd>
1314
+ <dt>
1315
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-encoding" title="gtk_source_file_saver_get_encoding ()">gtk_source_file_saver_get_encoding</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1316
+ </dt>
1317
+ <dd></dd>
1318
+ <dt>
1319
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-file" title="gtk_source_file_saver_get_file ()">gtk_source_file_saver_get_file</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1320
+ </dt>
1321
+ <dd></dd>
1322
+ <dt>
1323
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-flags" title="gtk_source_file_saver_get_flags ()">gtk_source_file_saver_get_flags</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1324
+ </dt>
1325
+ <dd></dd>
1326
+ <dt>
1327
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-location" title="gtk_source_file_saver_get_location ()">gtk_source_file_saver_get_location</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1328
+ </dt>
1329
+ <dd></dd>
1330
+ <dt>
1331
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-newline-type" title="gtk_source_file_saver_get_newline_type ()">gtk_source_file_saver_get_newline_type</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1332
+ </dt>
1333
+ <dd></dd>
1334
+ <dt>
1335
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-new" title="gtk_source_file_saver_new ()">gtk_source_file_saver_new</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1336
+ </dt>
1337
+ <dd></dd>
1338
+ <dt>
1339
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-new-with-target" title="gtk_source_file_saver_new_with_target ()">gtk_source_file_saver_new_with_target</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1340
+ </dt>
1341
+ <dd></dd>
1342
+ <dt>
1343
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-save-async" title="gtk_source_file_saver_save_async ()">gtk_source_file_saver_save_async</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1344
+ </dt>
1345
+ <dd></dd>
1346
+ <dt>
1347
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-save-finish" title="gtk_source_file_saver_save_finish ()">gtk_source_file_saver_save_finish</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1348
+ </dt>
1349
+ <dd></dd>
1350
+ <dt>
1351
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-set-compression-type" title="gtk_source_file_saver_set_compression_type ()">gtk_source_file_saver_set_compression_type</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1352
+ </dt>
1353
+ <dd></dd>
1354
+ <dt>
1355
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-set-encoding" title="gtk_source_file_saver_set_encoding ()">gtk_source_file_saver_set_encoding</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1356
+ </dt>
1357
+ <dd></dd>
1358
+ <dt>
1359
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-set-flags" title="gtk_source_file_saver_set_flags ()">gtk_source_file_saver_set_flags</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1360
+ </dt>
1361
+ <dd></dd>
1362
+ <dt>
1363
+ <a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-set-newline-type" title="gtk_source_file_saver_set_newline_type ()">gtk_source_file_saver_set_newline_type</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
1364
+ </dt>
1365
+ <dd></dd>
1366
+ <dt>
1367
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-set-location" title="gtk_source_file_set_location ()">gtk_source_file_set_location</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1368
+ </dt>
1369
+ <dd></dd>
1370
+ <dt>
1371
+ <a class="link" href="GtkSourceFile.html#gtk-source-file-set-mount-operation-factory" title="gtk_source_file_set_mount_operation_factory ()">gtk_source_file_set_mount_operation_factory</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1372
+ </dt>
1373
+ <dd></dd>
1374
+ <dt>
1375
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-get-padding" title="gtk_source_gutter_get_padding ()">gtk_source_gutter_get_padding</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
1376
+ </dt>
1377
+ <dd></dd>
1378
+ <dt>
1379
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-get-renderer-at-pos" title="gtk_source_gutter_get_renderer_at_pos ()">gtk_source_gutter_get_renderer_at_pos</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
1380
+ </dt>
1381
+ <dd></dd>
1382
+ <dt>
1383
+ <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>
1384
+ </dt>
1385
+ <dd></dd>
1386
+ <dt>
1387
+ <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>
1388
+ </dt>
1389
+ <dd></dd>
1390
+ <dt>
1391
+ <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>
1392
+ </dt>
1393
+ <dd></dd>
1394
+ <dt>
1395
+ <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>
1396
+ </dt>
1397
+ <dd></dd>
1398
+ <dt>
1399
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1400
+ </dt>
1401
+ <dd></dd>
1402
+ <dt>
1403
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1404
+ </dt>
1405
+ <dd></dd>
1406
+ <dt>
1407
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1408
+ </dt>
1409
+ <dd></dd>
1410
+ <dt>
1411
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1412
+ </dt>
1413
+ <dd></dd>
1414
+ <dt>
1415
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1416
+ </dt>
1417
+ <dd></dd>
1418
+ <dt>
1419
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1420
+ </dt>
1421
+ <dd></dd>
1422
+ <dt>
1423
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1424
+ </dt>
1425
+ <dd></dd>
1426
+ <dt>
1427
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1428
+ </dt>
1429
+ <dd></dd>
1430
+ <dt>
1431
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1432
+ </dt>
1433
+ <dd></dd>
1434
+ <dt>
1435
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1436
+ </dt>
1437
+ <dd></dd>
1438
+ <dt>
1439
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1440
+ </dt>
1441
+ <dd></dd>
1442
+ <dt>
1443
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1444
+ </dt>
1445
+ <dd></dd>
1446
+ <dt>
1447
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
1448
+ </dt>
1449
+ <dd></dd>
1450
+ <dt>
1451
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
1452
+ </dt>
1453
+ <dd></dd>
1454
+ <dt>
1455
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
1456
+ </dt>
1457
+ <dd></dd>
1458
+ <dt>
1459
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
1460
+ </dt>
1461
+ <dd></dd>
1462
+ <dt>
1463
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
1464
+ </dt>
1465
+ <dd></dd>
1466
+ <dt>
1467
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
1468
+ </dt>
1469
+ <dd></dd>
1470
+ <dt>
1471
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
1472
+ </dt>
1473
+ <dd></dd>
1474
+ <dt>
1475
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
1476
+ </dt>
1477
+ <dd></dd>
1478
+ <dt>
1479
+ <a class="link" href="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="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
1480
+ </dt>
1481
+ <dd></dd>
1482
+ <dt>
1483
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1484
+ </dt>
1485
+ <dd></dd>
1486
+ <dt>
1487
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1488
+ </dt>
1489
+ <dd></dd>
1490
+ <dt>
1491
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1492
+ </dt>
1493
+ <dd></dd>
1494
+ <dt>
1495
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1496
+ </dt>
1497
+ <dd></dd>
1498
+ <dt>
1499
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1500
+ </dt>
1501
+ <dd></dd>
1502
+ <dt>
1503
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1504
+ </dt>
1505
+ <dd></dd>
1506
+ <dt>
1507
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1508
+ </dt>
1509
+ <dd></dd>
1510
+ <dt>
1511
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1512
+ </dt>
1513
+ <dd></dd>
1514
+ <dt>
1515
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1516
+ </dt>
1517
+ <dd></dd>
1518
+ <dt>
1519
+ <a class="link" href="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="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
1520
+ </dt>
1521
+ <dd></dd>
1522
+ <dt>
1523
+ <a class="link" href="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="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1524
+ </dt>
1525
+ <dd></dd>
1526
+ <dt>
1527
+ <a class="link" href="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="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1528
+ </dt>
1529
+ <dd></dd>
1530
+ <dt>
1531
+ <a class="link" href="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="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1532
+ </dt>
1533
+ <dd></dd>
1534
+ <dt>
1535
+ <a class="link" href="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="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1536
+ </dt>
1537
+ <dd></dd>
1538
+ <dt>
1539
+ <a class="link" href="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="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
1540
+ </dt>
1541
+ <dd></dd>
1542
+ <dt>
1543
+ <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>
1544
+ </dt>
1545
+ <dd></dd>
1546
+ <dt>
1547
+ <a class="link" href="GtkSourceGutter.html#gtk-source-gutter-set-padding" title="gtk_source_gutter_set_padding ()">gtk_source_gutter_set_padding</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
1548
+ </dt>
1549
+ <dd></dd>
1550
+ <dt>
1551
+ <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>
1552
+ </dt>
1553
+ <dd></dd>
1554
+ <dt>
1555
+ <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>
1556
+ </dt>
1557
+ <dd></dd>
1558
+ <dt>
1559
+ <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>
1560
+ </dt>
1561
+ <dd></dd>
1562
+ <dt>
1563
+ <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>
1564
+ </dt>
1565
+ <dd></dd>
1566
+ <dt>
1567
+ <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>
1568
+ </dt>
1569
+ <dd></dd>
1570
+ <dt>
1571
+ <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>
1572
+ </dt>
1573
+ <dd></dd>
1574
+ <dt>
1575
+ <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>
1576
+ </dt>
1577
+ <dd></dd>
1578
+ <dt>
1579
+ <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>
1580
+ </dt>
1581
+ <dd></dd>
1582
+ <dt>
1583
+ <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>
1584
+ </dt>
1585
+ <dd></dd>
1586
+ <dt>
1587
+ <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>
1588
+ </dt>
1589
+ <dd></dd>
1590
+ <dt>
1591
+ <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>
1592
+ </dt>
1593
+ <dd></dd>
1594
+ <dt>
1595
+ <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>
1596
+ </dt>
1597
+ <dd></dd>
1598
+ <dt>
1599
+ <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>
1600
+ </dt>
1601
+ <dd></dd>
1602
+ <dt>
1603
+ <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>
1604
+ </dt>
1605
+ <dd></dd>
1606
+ <dt>
1607
+ <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>
1608
+ </dt>
1609
+ <dd></dd>
1610
+ <dt>
1611
+ <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>
1612
+ </dt>
1613
+ <dd></dd>
1614
+ <dt>
1615
+ <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>
1616
+ </dt>
1617
+ <dd></dd>
1618
+ <dt>
1619
+ <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>
1620
+ </dt>
1621
+ <dd></dd>
1622
+ <dt>
1623
+ <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>
1624
+ </dt>
1625
+ <dd></dd>
1626
+ <dt>
1627
+ <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>
1628
+ </dt>
1629
+ <dd></dd>
1630
+ <dt>
1631
+ <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>
1632
+ </dt>
1633
+ <dd></dd>
1634
+ <dt>
1635
+ <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>
1636
+ </dt>
1637
+ <dd></dd>
1638
+ <dt>
1639
+ <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>
1640
+ </dt>
1641
+ <dd></dd>
1642
+ <dt>
1643
+ <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>
1644
+ </dt>
1645
+ <dd></dd>
1646
+ <dt>
1647
+ <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>
1648
+ </dt>
1649
+ <dd></dd>
1650
+ <dt>
1651
+ <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>
1652
+ </dt>
1653
+ <dd></dd>
1654
+ <dt>
1655
+ <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>
1656
+ </dt>
1657
+ <dd></dd>
1658
+ <dt>
1659
+ <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>
1660
+ </dt>
1661
+ <dd></dd>
1662
+ <dt>
1663
+ <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>
1664
+ </dt>
1665
+ <dd></dd>
1666
+ <dt>
1667
+ <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>
1668
+ </dt>
1669
+ <dd></dd>
1670
+ <dt>
1671
+ <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>
1672
+ </dt>
1673
+ <dd></dd>
1674
+ <dt>
1675
+ <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>
1676
+ </dt>
1677
+ <dd></dd>
1678
+ <dt>
1679
+ <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>
1680
+ </dt>
1681
+ <dd></dd>
1682
+ <dt>
1683
+ <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>
1684
+ </dt>
1685
+ <dd></dd>
1686
+ <dt>
1687
+ <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>
1688
+ </dt>
1689
+ <dd></dd>
1690
+ <dt>
1691
+ <a class="link" href="GtkSourceFile.html#GTK-SOURCE-NEWLINE-TYPE-DEFAULT:CAPS" title="GTK_SOURCE_NEWLINE_TYPE_DEFAULT">GTK_SOURCE_NEWLINE_TYPE_DEFAULT</a>, macro in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
1692
+ </dt>
1693
+ <dd></dd>
1694
+ <dt>
1695
+ <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>
1696
+ </dt>
1697
+ <dd></dd>
1698
+ <dt>
1699
+ <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>
1700
+ </dt>
1701
+ <dd></dd>
1702
+ <dt>
1703
+ <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>
1704
+ </dt>
1705
+ <dd></dd>
1706
+ <dt>
1707
+ <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>
1708
+ </dt>
1709
+ <dd></dd>
1710
+ <dt>
1711
+ <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>
1712
+ </dt>
1713
+ <dd></dd>
1714
+ <dt>
1715
+ <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>
1716
+ </dt>
1717
+ <dd></dd>
1718
+ <dt>
1719
+ <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>
1720
+ </dt>
1721
+ <dd></dd>
1722
+ <dt>
1723
+ <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>
1724
+ </dt>
1725
+ <dd></dd>
1726
+ <dt>
1727
+ <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>
1728
+ </dt>
1729
+ <dd></dd>
1730
+ <dt>
1731
+ <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>
1732
+ </dt>
1733
+ <dd></dd>
1734
+ <dt>
1735
+ <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>
1736
+ </dt>
1737
+ <dd></dd>
1738
+ <dt>
1739
+ <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>
1740
+ </dt>
1741
+ <dd></dd>
1742
+ <dt>
1743
+ <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>
1744
+ </dt>
1745
+ <dd></dd>
1746
+ <dt>
1747
+ <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>
1748
+ </dt>
1749
+ <dd></dd>
1750
+ <dt>
1751
+ <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>
1752
+ </dt>
1753
+ <dd></dd>
1754
+ <dt>
1755
+ <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>
1756
+ </dt>
1757
+ <dd></dd>
1758
+ <dt>
1759
+ <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>
1760
+ </dt>
1761
+ <dd></dd>
1762
+ <dt>
1763
+ <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>
1764
+ </dt>
1765
+ <dd></dd>
1766
+ <dt>
1767
+ <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>
1768
+ </dt>
1769
+ <dd></dd>
1770
+ <dt>
1771
+ <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>
1772
+ </dt>
1773
+ <dd></dd>
1774
+ <dt>
1775
+ <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>
1776
+ </dt>
1777
+ <dd></dd>
1778
+ <dt>
1779
+ <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>
1780
+ </dt>
1781
+ <dd></dd>
1782
+ <dt>
1783
+ <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>
1784
+ </dt>
1785
+ <dd></dd>
1786
+ <dt>
1787
+ <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>
1788
+ </dt>
1789
+ <dd></dd>
1790
+ <dt>
1791
+ <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>
1792
+ </dt>
1793
+ <dd></dd>
1794
+ <dt>
1795
+ <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>
1796
+ </dt>
1797
+ <dd></dd>
1798
+ <dt>
1799
+ <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>
1800
+ </dt>
1801
+ <dd></dd>
1802
+ <dt>
1803
+ <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>
1804
+ </dt>
1805
+ <dd></dd>
1806
+ <dt>
1807
+ <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>
1808
+ </dt>
1809
+ <dd></dd>
1810
+ <dt>
1811
+ <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>
1812
+ </dt>
1813
+ <dd></dd>
1814
+ <dt>
1815
+ <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>
1816
+ </dt>
1817
+ <dd></dd>
1818
+ <dt>
1819
+ <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>
1820
+ </dt>
1821
+ <dd></dd>
1822
+ <dt>
1823
+ <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>
1824
+ </dt>
1825
+ <dd></dd>
1826
+ <dt>
1827
+ <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>
1828
+ </dt>
1829
+ <dd></dd>
1830
+ <dt>
1831
+ <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>
1832
+ </dt>
1833
+ <dd></dd>
1834
+ <dt>
1835
+ <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>
1836
+ </dt>
1837
+ <dd></dd>
1838
+ <dt>
1839
+ <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>
1840
+ </dt>
1841
+ <dd></dd>
1842
+ <dt>
1843
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward" title="gtk_source_search_context_backward ()">gtk_source_search_context_backward</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1844
+ </dt>
1845
+ <dd></dd>
1846
+ <dt>
1847
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward-async" title="gtk_source_search_context_backward_async ()">gtk_source_search_context_backward_async</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1848
+ </dt>
1849
+ <dd></dd>
1850
+ <dt>
1851
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward-finish" title="gtk_source_search_context_backward_finish ()">gtk_source_search_context_backward_finish</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1852
+ </dt>
1853
+ <dd></dd>
1854
+ <dt>
1855
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward" title="gtk_source_search_context_forward ()">gtk_source_search_context_forward</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1856
+ </dt>
1857
+ <dd></dd>
1858
+ <dt>
1859
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward-async" title="gtk_source_search_context_forward_async ()">gtk_source_search_context_forward_async</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1860
+ </dt>
1861
+ <dd></dd>
1862
+ <dt>
1863
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward-finish" title="gtk_source_search_context_forward_finish ()">gtk_source_search_context_forward_finish</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1864
+ </dt>
1865
+ <dd></dd>
1866
+ <dt>
1867
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-buffer" title="gtk_source_search_context_get_buffer ()">gtk_source_search_context_get_buffer</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1868
+ </dt>
1869
+ <dd></dd>
1870
+ <dt>
1871
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-highlight" title="gtk_source_search_context_get_highlight ()">gtk_source_search_context_get_highlight</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1872
+ </dt>
1873
+ <dd></dd>
1874
+ <dt>
1875
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-occurrences-count" title="gtk_source_search_context_get_occurrences_count ()">gtk_source_search_context_get_occurrences_count</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1876
+ </dt>
1877
+ <dd></dd>
1878
+ <dt>
1879
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-occurrence-position" title="gtk_source_search_context_get_occurrence_position ()">gtk_source_search_context_get_occurrence_position</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1880
+ </dt>
1881
+ <dd></dd>
1882
+ <dt>
1883
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-regex-error" title="gtk_source_search_context_get_regex_error ()">gtk_source_search_context_get_regex_error</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1884
+ </dt>
1885
+ <dd></dd>
1886
+ <dt>
1887
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-settings" title="gtk_source_search_context_get_settings ()">gtk_source_search_context_get_settings</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1888
+ </dt>
1889
+ <dd></dd>
1890
+ <dt>
1891
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-new" title="gtk_source_search_context_new ()">gtk_source_search_context_new</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1892
+ </dt>
1893
+ <dd></dd>
1894
+ <dt>
1895
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-replace" title="gtk_source_search_context_replace ()">gtk_source_search_context_replace</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1896
+ </dt>
1897
+ <dd></dd>
1898
+ <dt>
1899
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-replace-all" title="gtk_source_search_context_replace_all ()">gtk_source_search_context_replace_all</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1900
+ </dt>
1901
+ <dd></dd>
1902
+ <dt>
1903
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-set-highlight" title="gtk_source_search_context_set_highlight ()">gtk_source_search_context_set_highlight</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1904
+ </dt>
1905
+ <dd></dd>
1906
+ <dt>
1907
+ <a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-set-settings" title="gtk_source_search_context_set_settings ()">gtk_source_search_context_set_settings</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
1908
+ </dt>
1909
+ <dd></dd>
1910
+ <dt>
1911
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-at-word-boundaries" title="gtk_source_search_settings_get_at_word_boundaries ()">gtk_source_search_settings_get_at_word_boundaries</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1912
+ </dt>
1913
+ <dd></dd>
1914
+ <dt>
1915
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-case-sensitive" title="gtk_source_search_settings_get_case_sensitive ()">gtk_source_search_settings_get_case_sensitive</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1916
+ </dt>
1917
+ <dd></dd>
1918
+ <dt>
1919
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-regex-enabled" title="gtk_source_search_settings_get_regex_enabled ()">gtk_source_search_settings_get_regex_enabled</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1920
+ </dt>
1921
+ <dd></dd>
1922
+ <dt>
1923
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-search-text" title="gtk_source_search_settings_get_search_text ()">gtk_source_search_settings_get_search_text</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1924
+ </dt>
1925
+ <dd></dd>
1926
+ <dt>
1927
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-wrap-around" title="gtk_source_search_settings_get_wrap_around ()">gtk_source_search_settings_get_wrap_around</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1928
+ </dt>
1929
+ <dd></dd>
1930
+ <dt>
1931
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-new" title="gtk_source_search_settings_new ()">gtk_source_search_settings_new</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1932
+ </dt>
1933
+ <dd></dd>
1934
+ <dt>
1935
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-at-word-boundaries" title="gtk_source_search_settings_set_at_word_boundaries ()">gtk_source_search_settings_set_at_word_boundaries</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1936
+ </dt>
1937
+ <dd></dd>
1938
+ <dt>
1939
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-case-sensitive" title="gtk_source_search_settings_set_case_sensitive ()">gtk_source_search_settings_set_case_sensitive</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1940
+ </dt>
1941
+ <dd></dd>
1942
+ <dt>
1943
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-regex-enabled" title="gtk_source_search_settings_set_regex_enabled ()">gtk_source_search_settings_set_regex_enabled</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1944
+ </dt>
1945
+ <dd></dd>
1946
+ <dt>
1947
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-search-text" title="gtk_source_search_settings_set_search_text ()">gtk_source_search_settings_set_search_text</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1948
+ </dt>
1949
+ <dd></dd>
1950
+ <dt>
1951
+ <a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-wrap-around" title="gtk_source_search_settings_set_wrap_around ()">gtk_source_search_settings_set_wrap_around</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
1952
+ </dt>
1953
+ <dd></dd>
1954
+ <dt>
1955
+ <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>
1956
+ </dt>
1957
+ <dd></dd>
1958
+ <dt>
1959
+ <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>
1960
+ </dt>
1961
+ <dd></dd>
1962
+ <dt>
1963
+ <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>
1964
+ </dt>
1965
+ <dd></dd>
1966
+ <dt>
1967
+ <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>
1968
+ </dt>
1969
+ <dd></dd>
1970
+ <dt>
1971
+ <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>
1972
+ </dt>
1973
+ <dd></dd>
1974
+ <dt>
1975
+ <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>
1976
+ </dt>
1977
+ <dd></dd>
1978
+ <dt>
1979
+ <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>
1980
+ </dt>
1981
+ <dd></dd>
1982
+ <dt>
1983
+ <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>
1984
+ </dt>
1985
+ <dd></dd>
1986
+ <dt>
1987
+ <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>
1988
+ </dt>
1989
+ <dd></dd>
1990
+ <dt>
1991
+ <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>
1992
+ </dt>
1993
+ <dd></dd>
1994
+ <dt>
1995
+ <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>
1996
+ </dt>
1997
+ <dd></dd>
1998
+ <dt>
1999
+ <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>
2000
+ </dt>
2001
+ <dd></dd>
2002
+ <dt>
2003
+ <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>
2004
+ </dt>
2005
+ <dd></dd>
2006
+ <dt>
2007
+ <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>
2008
+ </dt>
2009
+ <dd></dd>
2010
+ <dt>
2011
+ <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>
2012
+ </dt>
2013
+ <dd></dd>
2014
+ <dt>
2015
+ <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>
2016
+ </dt>
2017
+ <dd></dd>
2018
+ <dt>
2019
+ <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>
2020
+ </dt>
2021
+ <dd></dd>
2022
+ <dt>
2023
+ <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>
2024
+ </dt>
2025
+ <dd></dd>
2026
+ <dt>
2027
+ <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>
2028
+ </dt>
2029
+ <dd></dd>
2030
+ <dt>
2031
+ <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>
2032
+ </dt>
2033
+ <dd></dd>
2034
+ <dt>
2035
+ <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>
2036
+ </dt>
2037
+ <dd></dd>
2038
+ <dt>
2039
+ <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>
2040
+ </dt>
2041
+ <dd></dd>
2042
+ <dt>
2043
+ <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>
2044
+ </dt>
2045
+ <dd></dd>
2046
+ <dt>
2047
+ <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>
2048
+ </dt>
2049
+ <dd></dd>
2050
+ <dt>
2051
+ <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-escape-search-text" title="gtk_source_utils_escape_search_text ()">gtk_source_utils_escape_search_text</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html" title="GtkSourceUtils">GtkSourceUtils</a>
2052
+ </dt>
2053
+ <dd></dd>
2054
+ <dt>
2055
+ <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-unescape-search-text" title="gtk_source_utils_unescape_search_text ()">gtk_source_utils_unescape_search_text</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html" title="GtkSourceUtils">GtkSourceUtils</a>
2056
+ </dt>
2057
+ <dd></dd>
2058
+ <dt>
2059
+ <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>
2060
+ </dt>
2061
+ <dd></dd>
2062
+ <dt>
2063
+ <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>
2064
+ </dt>
2065
+ <dd></dd>
2066
+ <dt>
2067
+ <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>
2068
+ </dt>
2069
+ <dd></dd>
2070
+ <dt>
2071
+ <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>
2072
+ </dt>
2073
+ <dd></dd>
2074
+ <dt>
2075
+ <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>
2076
+ </dt>
2077
+ <dd></dd>
2078
+ <dt>
2079
+ <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>
2080
+ </dt>
2081
+ <dd></dd>
2082
+ <dt>
2083
+ <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>
2084
+ </dt>
2085
+ <dd></dd>
2086
+ <dt>
2087
+ <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>
2088
+ </dt>
2089
+ <dd></dd>
2090
+ <dt>
2091
+ <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>
2092
+ </dt>
2093
+ <dd></dd>
2094
+ <dt>
2095
+ <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>
2096
+ </dt>
2097
+ <dd></dd>
2098
+ <dt>
2099
+ <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>
2100
+ </dt>
2101
+ <dd></dd>
2102
+ <dt>
2103
+ <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>
2104
+ </dt>
2105
+ <dd></dd>
2106
+ <dt>
2107
+ <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>
2108
+ </dt>
2109
+ <dd></dd>
2110
+ <dt>
2111
+ <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>
2112
+ </dt>
2113
+ <dd></dd>
2114
+ <dt>
2115
+ <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>
2116
+ </dt>
2117
+ <dd></dd>
2118
+ <dt>
2119
+ <a class="link" href="GtkSourceView.html#gtk-source-view-get-visual-column" title="gtk_source_view_get_visual_column ()">gtk_source_view_get_visual_column</a>, function in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
2120
+ </dt>
2121
+ <dd></dd>
2122
+ <dt>
2123
+ <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>
2124
+ </dt>
2125
+ <dd></dd>
2126
+ <dt>
2127
+ <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>
2128
+ </dt>
2129
+ <dd></dd>
2130
+ <dt>
2131
+ <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>
2132
+ </dt>
2133
+ <dd></dd>
2134
+ <dt>
2135
+ <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>
2136
+ </dt>
2137
+ <dd></dd>
2138
+ <dt>
2139
+ <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>
2140
+ </dt>
2141
+ <dd></dd>
2142
+ <dt>
2143
+ <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>
2144
+ </dt>
2145
+ <dd></dd>
2146
+ <dt>
2147
+ <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>
2148
+ </dt>
2149
+ <dd></dd>
2150
+ <dt>
2151
+ <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>
2152
+ </dt>
2153
+ <dd></dd>
2154
+ <dt>
2155
+ <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>
2156
+ </dt>
2157
+ <dd></dd>
2158
+ <dt>
2159
+ <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>
2160
+ </dt>
2161
+ <dd></dd>
2162
+ <dt>
2163
+ <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>
2164
+ </dt>
2165
+ <dd></dd>
2166
+ <dt>
2167
+ <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>
2168
+ </dt>
2169
+ <dd></dd>
2170
+ <dt>
2171
+ <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>
2172
+ </dt>
2173
+ <dd></dd>
2174
+ <dt>
2175
+ <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>
2176
+ </dt>
2177
+ <dd></dd>
2178
+ <dt>
2179
+ <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>
2180
+ </dt>
2181
+ <dd></dd>
2182
+ </div>
2183
+ <div class="footer">
2184
+ <hr>
2185
+ Generated by GTK-Doc V1.21.1</div>
2186
+ </body>
2187
+ </html>