gtksourceview3 1.2.0-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (562) hide show
  1. data/README +29 -0
  2. data/Rakefile +29 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +76 -0
  5. data/ext/gtksourceview3/gtksourceview3.def +2 -0
  6. data/ext/gtksourceview3/rbgtksource.c +53 -0
  7. data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
  8. data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
  9. data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
  10. data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
  11. data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +64 -0
  12. data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
  13. data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
  14. data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
  15. data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
  16. data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
  17. data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
  18. data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
  19. data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
  20. data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
  21. data/ext/gtksourceview3/rbgtksourceview.c +94 -0
  22. data/ext/gtksourceview3/rbgtksourceview3conversions.h +43 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +54 -0
  24. data/extconf.rb +49 -0
  25. data/lib/1.8/gtksourceview3.so +0 -0
  26. data/lib/1.9/gtksourceview3.so +0 -0
  27. data/lib/gtksourceview3.rb +20 -0
  28. data/lib/gtksourceview3/deprecated.rb +47 -0
  29. data/sample/sourcelanguagemanager.rb +21 -0
  30. data/sample/test.rb +32 -0
  31. data/test/run-test.rb +33 -0
  32. data/test/test_source_view.rb +17 -0
  33. data/vendor/local/bin/libgtksourceview-3.0-0.dll +0 -0
  34. data/vendor/local/bin/libxml2-2.dll +0 -0
  35. data/vendor/local/bin/xmlcatalog.exe +0 -0
  36. data/vendor/local/bin/xmllint.exe +0 -0
  37. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +66 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +46 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +199 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +129 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +94 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +73 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +71 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +76 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +118 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +222 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +85 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +87 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +85 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +99 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +176 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +41 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +93 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +89 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +62 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +77 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +55 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +223 -0
  62. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  63. data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
  64. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  65. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  66. data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
  67. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  68. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  69. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  70. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  71. data/vendor/local/include/libxml2/libxml/dict.h +80 -0
  72. data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
  73. data/vendor/local/include/libxml2/libxml/entities.h +150 -0
  74. data/vendor/local/include/libxml2/libxml/globals.h +502 -0
  75. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  76. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  77. data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
  78. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  79. data/vendor/local/include/libxml2/libxml/parser.h +1240 -0
  80. data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
  81. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  82. data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
  83. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  84. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  85. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  86. data/vendor/local/include/libxml2/libxml/tree.h +1303 -0
  87. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  88. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  89. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  90. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  91. data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
  92. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  93. data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
  94. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  95. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  96. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  97. data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
  98. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  99. data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
  100. data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
  101. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  102. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  103. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  104. data/vendor/local/include/libxml2/libxml/xmlversion.h +480 -0
  105. data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
  106. data/vendor/local/include/libxml2/libxml/xpath.h +550 -0
  107. data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
  108. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  109. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  110. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  111. data/vendor/local/lib/libxml2.def +1659 -0
  112. data/vendor/local/lib/libxml2.dll.a +0 -0
  113. data/vendor/local/lib/libxml2.lib +0 -0
  114. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  154. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  155. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  156. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  157. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  158. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  159. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  160. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  161. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  162. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  163. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  164. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  165. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  166. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  167. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  168. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  169. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  170. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  171. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  172. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  173. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  174. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  175. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  176. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  177. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  178. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  179. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  180. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  181. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  182. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  183. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  184. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  185. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  186. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  187. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  188. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  189. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  190. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  191. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  192. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  193. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  194. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  195. data/vendor/local/manifest/libxml2-dev_2.9.0-1_win32.mft +268 -0
  196. data/vendor/local/manifest/libxml2_2.9.0-1_win32.mft +2 -0
  197. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  198. data/vendor/local/share/doc/libxml2-2.9.0/Copyright +27 -0
  199. data/vendor/local/share/doc/libxml2-2.9.0/examples/testHTML.c +880 -0
  200. data/vendor/local/share/doc/libxml2-2.9.0/examples/testSAX.c +1198 -0
  201. data/vendor/local/share/doc/libxml2-2.9.0/examples/testXPath.c +229 -0
  202. data/vendor/local/share/doc/libxml2-2.9.0/examples/xmllint.c +3770 -0
  203. data/vendor/local/share/doc/libxml2-2.9.0/html/DOM.gif +0 -0
  204. data/vendor/local/share/doc/libxml2-2.9.0/html/FAQ.html +282 -0
  205. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-180x168.gif +0 -0
  206. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-90x34.gif +0 -0
  207. data/vendor/local/share/doc/libxml2-2.9.0/html/encoding.html +207 -0
  208. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xml +751 -0
  209. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xsl +174 -0
  210. data/vendor/local/share/doc/libxml2-2.9.0/html/html/book1.html +13 -0
  211. data/vendor/local/share/doc/libxml2-2.9.0/html/html/home.png +0 -0
  212. data/vendor/local/share/doc/libxml2-2.9.0/html/html/index.html +13 -0
  213. data/vendor/local/share/doc/libxml2-2.9.0/html/html/left.png +0 -0
  214. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-DOCBparser.html +51 -0
  215. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLparser.html +184 -0
  216. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLtree.html +73 -0
  217. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX.html +125 -0
  218. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX2.html +128 -0
  219. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-c14n.html +38 -0
  220. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-catalog.html +142 -0
  221. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-chvalid.html +72 -0
  222. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-debugXML.html +120 -0
  223. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-dict.html +58 -0
  224. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-encoding.html +124 -0
  225. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-entities.html +79 -0
  226. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-globals.html +152 -0
  227. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-hash.html +116 -0
  228. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-lib.html +13 -0
  229. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-list.html +120 -0
  230. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanoftp.html +94 -0
  231. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanohttp.html +65 -0
  232. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parser.html +559 -0
  233. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parserInternals.html +322 -0
  234. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-pattern.html +76 -0
  235. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-relaxng.html +162 -0
  236. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schemasInternals.html +373 -0
  237. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schematron.html +81 -0
  238. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-threads.html +72 -0
  239. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-tree.html +989 -0
  240. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-uri.html +73 -0
  241. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-valid.html +289 -0
  242. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xinclude.html +59 -0
  243. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xlink.html +82 -0
  244. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlIO.html +212 -0
  245. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlautomata.html +85 -0
  246. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlerror.html +864 -0
  247. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlexports.html +20 -0
  248. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmemory.html +107 -0
  249. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmodule.html +38 -0
  250. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlreader.html +330 -0
  251. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlregexp.html +143 -0
  252. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlsave.html +60 -0
  253. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemas.html +185 -0
  254. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemastypes.html +123 -0
  255. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlstring.html +108 -0
  256. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlunicode.html +512 -0
  257. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlversion.html +62 -0
  258. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlwriter.html +261 -0
  259. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpath.html +310 -0
  260. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpathInternals.html +394 -0
  261. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpointer.html +83 -0
  262. data/vendor/local/share/doc/libxml2-2.9.0/html/html/right.png +0 -0
  263. data/vendor/local/share/doc/libxml2-2.9.0/html/html/up.png +0 -0
  264. data/vendor/local/share/doc/libxml2-2.9.0/html/index.html +14 -0
  265. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.c +166 -0
  266. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.res +5 -0
  267. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.c +58 -0
  268. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.res +2 -0
  269. data/vendor/local/share/doc/libxml2-2.9.0/html/libxml.gif +0 -0
  270. data/vendor/local/share/doc/libxml2-2.9.0/html/parse1.c +56 -0
  271. data/vendor/local/share/doc/libxml2-2.9.0/html/parse2.c +72 -0
  272. data/vendor/local/share/doc/libxml2-2.9.0/html/parse3.c +60 -0
  273. data/vendor/local/share/doc/libxml2-2.9.0/html/parse4.c +143 -0
  274. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.c +107 -0
  275. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.res +14 -0
  276. data/vendor/local/share/doc/libxml2-2.9.0/html/reader2.c +122 -0
  277. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.c +120 -0
  278. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.res +13 -0
  279. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.c +122 -0
  280. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.res +3 -0
  281. data/vendor/local/share/doc/libxml2-2.9.0/html/redhat.gif +0 -0
  282. data/vendor/local/share/doc/libxml2-2.9.0/html/smallfootonly.gif +0 -0
  283. data/vendor/local/share/doc/libxml2-2.9.0/html/structure.gif +0 -0
  284. data/vendor/local/share/doc/libxml2-2.9.0/html/test1.xml +1 -0
  285. data/vendor/local/share/doc/libxml2-2.9.0/html/test2.xml +13 -0
  286. data/vendor/local/share/doc/libxml2-2.9.0/html/test3.xml +39 -0
  287. data/vendor/local/share/doc/libxml2-2.9.0/html/testWriter.c +1198 -0
  288. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.c +94 -0
  289. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.res +4 -0
  290. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.c +118 -0
  291. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.res +18 -0
  292. data/vendor/local/share/doc/libxml2-2.9.0/html/tst.xml +7 -0
  293. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apa.html +8 -0
  294. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apb.html +14 -0
  295. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apc.html +82 -0
  296. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apd.html +76 -0
  297. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ape.html +78 -0
  298. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apf.html +67 -0
  299. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apg.html +75 -0
  300. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/aph.html +76 -0
  301. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/api.html +4 -0
  302. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s02.html +14 -0
  303. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s03.html +47 -0
  304. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s04.html +54 -0
  305. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s05.html +55 -0
  306. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s06.html +35 -0
  307. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s07.html +30 -0
  308. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s08.html +38 -0
  309. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s09.html +63 -0
  310. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/blank.png +0 -0
  311. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/1.png +0 -0
  312. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/10.png +0 -0
  313. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/2.png +0 -0
  314. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/3.png +0 -0
  315. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/4.png +0 -0
  316. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/5.png +0 -0
  317. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/6.png +0 -0
  318. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/7.png +0 -0
  319. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/8.png +0 -0
  320. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/9.png +0 -0
  321. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/caution.png +0 -0
  322. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/draft.png +0 -0
  323. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/home.png +0 -0
  324. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/important.png +0 -0
  325. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/next.png +0 -0
  326. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/note.png +0 -0
  327. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/prev.png +0 -0
  328. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/tip.png +0 -0
  329. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-blank.png +0 -0
  330. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-minus.png +0 -0
  331. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-plus.png +0 -0
  332. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/up.png +0 -0
  333. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/warning.png +0 -0
  334. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddattribute.c +64 -0
  335. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddkeyword.c +75 -0
  336. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeconvert.c +73 -0
  337. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includegetattribute.c +72 -0
  338. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includekeyword.c +79 -0
  339. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includexpath.c +74 -0
  340. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/index.html +14 -0
  341. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ix01.html +1 -0
  342. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/xmltutorial.pdf +1336 -0
  343. data/vendor/local/share/doc/libxml2-2.9.0/html/w3c.png +0 -0
  344. data/vendor/local/share/doc/libxml2-2.9.0/html/writer.xml +2 -0
  345. data/vendor/local/share/doc/libxml2-2.9.0/html/xml.html +5715 -0
  346. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.c +250 -0
  347. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.res +5 -0
  348. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.c +190 -0
  349. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.res +30 -0
  350. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +1346 -0
  351. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +756 -0
  352. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +300 -0
  353. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +243 -0
  354. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +282 -0
  355. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +364 -0
  356. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +474 -0
  357. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +288 -0
  358. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +425 -0
  359. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +414 -0
  360. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +250 -0
  361. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +699 -0
  362. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +1822 -0
  363. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +228 -0
  364. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +296 -0
  365. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +357 -0
  366. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +346 -0
  367. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1462 -0
  368. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +80 -0
  369. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +46 -0
  370. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +31 -0
  371. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +1538 -0
  372. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRenderer.html +956 -0
  373. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html +199 -0
  374. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererText.html +137 -0
  375. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +445 -0
  376. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  377. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +117 -0
  378. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +578 -0
  379. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +771 -0
  380. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +651 -0
  381. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  382. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  383. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn01.html +101 -0
  384. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn02.html +53 -0
  385. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +252 -0
  386. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +266 -0
  387. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  388. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  389. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  390. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  391. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  392. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  393. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
  394. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  395. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  396. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  397. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  398. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  399. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  400. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  401. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
  402. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
  403. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  404. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  405. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  406. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  407. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
  408. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  409. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
  410. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
  411. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  412. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  413. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  414. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  415. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  416. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1596 -0
  417. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  418. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  419. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  420. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  421. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
  422. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  423. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +952 -0
  424. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  425. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  426. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  427. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
  428. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  429. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
  430. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
  431. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  432. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  433. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  434. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +287 -0
  435. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
  436. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +532 -0
  437. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  438. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  439. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3569 -0
  440. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  441. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  442. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  443. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +130 -0
  444. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  445. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  446. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  447. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +329 -0
  448. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  449. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  450. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  451. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  452. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  453. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  454. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +92 -0
  455. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  456. data/vendor/local/share/gtksourceview-3.0/language-specs/check-language.sh +32 -0
  457. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  458. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +456 -0
  459. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +114 -0
  460. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  461. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +537 -0
  462. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  463. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +296 -0
  464. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +252 -0
  465. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  466. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  467. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  468. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  469. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  470. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  471. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  472. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  473. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  474. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +115 -0
  475. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  476. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +512 -0
  477. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  478. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  479. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  480. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  481. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  482. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  483. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  484. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  485. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  486. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  487. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +180 -0
  488. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  489. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  490. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  491. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  492. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  493. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +338 -0
  494. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  495. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  496. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  497. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  498. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +300 -0
  499. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  500. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  501. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  502. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  503. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  504. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  505. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  506. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  507. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  508. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  509. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  510. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  511. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  512. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  513. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  514. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  515. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  516. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  517. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  518. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  519. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1028 -0
  520. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +361 -0
  521. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  522. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  523. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  524. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +103 -0
  525. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  526. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +413 -0
  527. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  528. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +210 -0
  529. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +591 -0
  530. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  531. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  532. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  533. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  534. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  535. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  536. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  537. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  538. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  539. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  540. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  541. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  542. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +464 -0
  543. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  544. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  545. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  546. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  547. data/vendor/local/share/gtksourceview-3.0/styles/check-style.sh +20 -0
  548. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +107 -0
  549. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +135 -0
  550. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +161 -0
  551. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +117 -0
  552. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +139 -0
  553. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +117 -0
  554. data/vendor/local/share/license/gtksourceview/AUTHORS +12 -0
  555. data/vendor/local/share/license/gtksourceview/COPYING +340 -0
  556. data/vendor/local/share/man/man1/xml2-config.1 +30 -0
  557. data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
  558. data/vendor/local/share/man/man1/xmllint.1 +427 -0
  559. data/vendor/local/share/man/man3/libxml.3 +71 -0
  560. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.log +867 -0
  561. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.sh +68 -0
  562. metadata +642 -0
@@ -0,0 +1,1462 @@
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</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="rn01.html" title="API reference">
9
+ <link rel="prev" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">
10
+ <link rel="next" href="GtkSourceLanguage.html" title="GtkSourceLanguage">
11
+ <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="GtkSourceMarkAttributes.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="rn01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GtkSourceView 3 Reference Manual</th>
21
+ <td><a accesskey="n" href="GtkSourceLanguage.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#GtkSourceView.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkSourceView.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkSourceView.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkSourceView.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkSourceView.properties" class="shortcut">Properties</a>
33
+  | 
34
+ <a href="#GtkSourceView.signals" class="shortcut">Signals</a>
35
+ </td></tr>
36
+ </table>
37
+ <div class="refentry">
38
+ <a name="GtkSourceView"></a><div class="titlepage"></div>
39
+ <div class="refnamediv"><table width="100%"><tr>
40
+ <td valign="top">
41
+ <h2><span class="refentrytitle"><a name="GtkSourceView.top_of_page"></a>GtkSourceView</span></h2>
42
+ <p>GtkSourceView — The view object</p>
43
+ </td>
44
+ <td valign="top" align="right"></td>
45
+ </tr></table></div>
46
+ <div class="refsynopsisdiv">
47
+ <a name="GtkSourceView.synopsis"></a><h2>Synopsis</h2>
48
+ <pre class="synopsis">
49
+ #include &lt;gtksourceview/gtksourceview.h&gt;
50
+
51
+ <a class="link" href="GtkSourceView.html#GtkSourceView-struct" title="GtkSourceView">GtkSourceView</a>;
52
+ enum <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType">GtkSourceSmartHomeEndType</a>;
53
+ enum <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags">GtkSourceDrawSpacesFlags</a>;
54
+ enum <a class="link" href="GtkSourceView.html#GtkSourceViewGutterPosition" title="enum GtkSourceViewGutterPosition">GtkSourceViewGutterPosition</a>;
55
+ <span class="returnvalue">GtkWidget</span> * <a class="link" href="GtkSourceView.html#gtk-source-view-new" title="gtk_source_view_new ()">gtk_source_view_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
56
+ <span class="returnvalue">GtkWidget</span> * <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> (<em class="parameter"><code><a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> *buffer</code></em>);
57
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
58
+ <em class="parameter"><code><span class="type">gboolean</span> enable</code></em>);
59
+ <span class="returnvalue">gboolean</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
60
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
61
+ <em class="parameter"><code><span class="type">gboolean</span> enable</code></em>);
62
+ <span class="returnvalue">gboolean</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
63
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
64
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>);
65
+ <span class="returnvalue">gint</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
66
+ <span class="returnvalue">void</span> <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>
67
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
68
+ <em class="parameter"><code><span class="type">gboolean</span> enable</code></em>);
69
+ <span class="returnvalue">gboolean</span> <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>
70
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
71
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
72
+ <em class="parameter"><code><a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a> smart_he</code></em>);
73
+ <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="returnvalue">GtkSourceSmartHomeEndType</span></a> <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>
74
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
75
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
76
+ <em class="parameter"><code>const <span class="type">gchar</span> *category</code></em>,
77
+ <em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
78
+ <em class="parameter"><code><span class="type">gint</span> priority</code></em>);
79
+ <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="returnvalue">GtkSourceMarkAttributes</span></a> * <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>
80
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
81
+ <em class="parameter"><code>const <span class="type">gchar</span> *category</code></em>,
82
+ <em class="parameter"><code><span class="type">gint</span> *priority</code></em>);
83
+ <span class="returnvalue">void</span> <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>
84
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
85
+ <em class="parameter"><code><span class="type">gboolean</span> hl</code></em>);
86
+ <span class="returnvalue">gboolean</span> <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>
87
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
88
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
89
+ <em class="parameter"><code><span class="type">gboolean</span> show</code></em>);
90
+ <span class="returnvalue">gboolean</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
91
+ <span class="returnvalue">void</span> <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>
92
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
93
+ <em class="parameter"><code><span class="type">gboolean</span> show</code></em>);
94
+ <span class="returnvalue">gboolean</span> <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>
95
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
96
+ <span class="returnvalue">void</span> <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>
97
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
98
+ <em class="parameter"><code><span class="type">gboolean</span> show</code></em>);
99
+ <span class="returnvalue">gboolean</span> <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>
100
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
101
+ <span class="returnvalue">void</span> <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>
102
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
103
+ <em class="parameter"><code><span class="type">guint</span> pos</code></em>);
104
+ <span class="returnvalue">guint</span> <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>
105
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
106
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
107
+ <em class="parameter"><code><span class="type">guint</span> width</code></em>);
108
+ <span class="returnvalue">guint</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
109
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
110
+ <em class="parameter"><code><a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="type">GtkSourceDrawSpacesFlags</span></a> flags</code></em>);
111
+ <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="returnvalue">GtkSourceDrawSpacesFlags</span></a> <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>
112
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
113
+ <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion"><span class="returnvalue">GtkSourceCompletion</span></a> * <a class="link" href="GtkSourceView.html#gtk-source-view-get-completion" title="gtk_source_view_get_completion ()">gtk_source_view_get_completion</a> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);
114
+ <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter"><span class="returnvalue">GtkSourceGutter</span></a> * <a class="link" href="GtkSourceView.html#gtk-source-view-get-gutter" title="gtk_source_view_get_gutter ()">gtk_source_view_get_gutter</a> (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
115
+ <em class="parameter"><code><span class="type">GtkTextWindowType</span> window_type</code></em>);
116
+ </pre>
117
+ </div>
118
+ <div class="refsect1">
119
+ <a name="GtkSourceView.object-hierarchy"></a><h2>Object Hierarchy</h2>
120
+ <pre class="synopsis">
121
+ GObject
122
+ +----GInitiallyUnowned
123
+ +----GtkWidget
124
+ +----GtkContainer
125
+ +----GtkTextView
126
+ +----GtkSourceView
127
+ </pre>
128
+ </div>
129
+ <div class="refsect1">
130
+ <a name="GtkSourceView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
131
+ <p>
132
+ GtkSourceView implements
133
+ AtkImplementorIface, GtkBuildable and GtkScrollable.</p>
134
+ </div>
135
+ <div class="refsect1">
136
+ <a name="GtkSourceView.properties"></a><h2>Properties</h2>
137
+ <pre class="synopsis">
138
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--auto-indent" title='The "auto-indent" property'>auto-indent</a>" <span class="type">gboolean</span> : Read / Write
139
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--completion" title='The "completion" property'>completion</a>" <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion"><span class="type">GtkSourceCompletion</span></a>* : Read
140
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--draw-spaces" title='The "draw-spaces" property'>draw-spaces</a>" <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="type">GtkSourceDrawSpacesFlags</span></a> : Read / Write
141
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--highlight-current-line" title='The "highlight-current-line" property'>highlight-current-line</a>" <span class="type">gboolean</span> : Read / Write
142
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--indent-on-tab" title='The "indent-on-tab" property'>indent-on-tab</a>" <span class="type">gboolean</span> : Read / Write
143
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--indent-width" title='The "indent-width" property'>indent-width</a>" <span class="type">gint</span> : Read / Write
144
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--insert-spaces-instead-of-tabs" title='The "insert-spaces-instead-of-tabs" property'>insert-spaces-instead-of-tabs</a>" <span class="type">gboolean</span> : Read / Write
145
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--right-margin-position" title='The "right-margin-position" property'>right-margin-position</a>" <span class="type">guint</span> : Read / Write
146
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--show-line-marks" title='The "show-line-marks" property'>show-line-marks</a>" <span class="type">gboolean</span> : Read / Write
147
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--show-line-numbers" title='The "show-line-numbers" property'>show-line-numbers</a>" <span class="type">gboolean</span> : Read / Write
148
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--show-right-margin" title='The "show-right-margin" property'>show-right-margin</a>" <span class="type">gboolean</span> : Read / Write
149
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--smart-home-end" title='The "smart-home-end" property'>smart-home-end</a>" <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a> : Read / Write
150
+ "<a class="link" href="GtkSourceView.html#GtkSourceView--tab-width" title='The "tab-width" property'>tab-width</a>" <span class="type">guint</span> : Read / Write
151
+ </pre>
152
+ </div>
153
+ <div class="refsect1">
154
+ <a name="GtkSourceView.signals"></a><h2>Signals</h2>
155
+ <pre class="synopsis">
156
+ "<a class="link" href="GtkSourceView.html#GtkSourceView-line-mark-activated" title='The "line-mark-activated" signal'>line-mark-activated</a>" : <code class="literal">Run Last</code>
157
+ "<a class="link" href="GtkSourceView.html#GtkSourceView-move-lines" title='The "move-lines" signal'>move-lines</a>" : <code class="literal">Action</code>
158
+ "<a class="link" href="GtkSourceView.html#GtkSourceView-move-words" title='The "move-words" signal'>move-words</a>" : <code class="literal">Action</code>
159
+ "<a class="link" href="GtkSourceView.html#GtkSourceView-redo" title='The "redo" signal'>redo</a>" : <code class="literal">Action</code>
160
+ "<a class="link" href="GtkSourceView.html#GtkSourceView-show-completion" title='The "show-completion" signal'>show-completion</a>" : <code class="literal">Action</code>
161
+ "<a class="link" href="GtkSourceView.html#GtkSourceView-smart-home-end" title='The "smart-home-end" signal'>smart-home-end</a>" : <code class="literal">Run Last</code>
162
+ "<a class="link" href="GtkSourceView.html#GtkSourceView-undo" title='The "undo" signal'>undo</a>" : <code class="literal">Action</code>
163
+ </pre>
164
+ </div>
165
+ <div class="refsect1">
166
+ <a name="GtkSourceView.description"></a><h2>Description</h2>
167
+ <p>
168
+ GtkSourceView is the main object of the GtkSourceView library. It provides
169
+ a text view which syntax highlighting, undo/redo and text marks. Use a
170
+ <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> to display text with a GtkSourceView.
171
+ </p>
172
+ </div>
173
+ <div class="refsect1">
174
+ <a name="GtkSourceView.details"></a><h2>Details</h2>
175
+ <div class="refsect2">
176
+ <a name="GtkSourceView-struct"></a><h3>GtkSourceView</h3>
177
+ <pre class="programlisting">typedef struct _GtkSourceView GtkSourceView;</pre>
178
+ </div>
179
+ <hr>
180
+ <div class="refsect2">
181
+ <a name="GtkSourceSmartHomeEndType"></a><h3>enum GtkSourceSmartHomeEndType</h3>
182
+ <pre class="programlisting">typedef enum {
183
+ GTK_SOURCE_SMART_HOME_END_DISABLED,
184
+ GTK_SOURCE_SMART_HOME_END_BEFORE,
185
+ GTK_SOURCE_SMART_HOME_END_AFTER,
186
+ GTK_SOURCE_SMART_HOME_END_ALWAYS
187
+ } GtkSourceSmartHomeEndType;
188
+ </pre>
189
+ <div class="variablelist"><table border="0" class="variablelist">
190
+ <colgroup>
191
+ <col align="left" valign="top">
192
+ <col>
193
+ </colgroup>
194
+ <tbody>
195
+ <tr>
196
+ <td><p><a name="GTK-SOURCE-SMART-HOME-END-DISABLED:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_SMART_HOME_END_DISABLED</code></span></p></td>
197
+ <td>smart-home-end disabled.
198
+ </td>
199
+ </tr>
200
+ <tr>
201
+ <td><p><a name="GTK-SOURCE-SMART-HOME-END-BEFORE:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_SMART_HOME_END_BEFORE</code></span></p></td>
202
+ <td>move to the first/last
203
+ non-whitespace character on the first press of the HOME/END keys and
204
+ to the beginning/end of the line on the second press.
205
+ </td>
206
+ </tr>
207
+ <tr>
208
+ <td><p><a name="GTK-SOURCE-SMART-HOME-END-AFTER:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_SMART_HOME_END_AFTER</code></span></p></td>
209
+ <td>move to the beginning/end of the
210
+ line on the first press of the HOME/END keys and to the first/last
211
+ non-whitespace character on the second press.
212
+ </td>
213
+ </tr>
214
+ <tr>
215
+ <td><p><a name="GTK-SOURCE-SMART-HOME-END-ALWAYS:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_SMART_HOME_END_ALWAYS</code></span></p></td>
216
+ <td>always move to the first/last
217
+ non-whitespace character when the HOME/END keys are pressed.
218
+ </td>
219
+ </tr>
220
+ </tbody>
221
+ </table></div>
222
+ </div>
223
+ <hr>
224
+ <div class="refsect2">
225
+ <a name="GtkSourceDrawSpacesFlags"></a><h3>enum GtkSourceDrawSpacesFlags</h3>
226
+ <pre class="programlisting">typedef enum {
227
+ GTK_SOURCE_DRAW_SPACES_SPACE = 1 &lt;&lt; 0,
228
+ GTK_SOURCE_DRAW_SPACES_TAB = 1 &lt;&lt; 1,
229
+ GTK_SOURCE_DRAW_SPACES_NEWLINE = 1 &lt;&lt; 2,
230
+ GTK_SOURCE_DRAW_SPACES_NBSP = 1 &lt;&lt; 3,
231
+ GTK_SOURCE_DRAW_SPACES_LEADING = 1 &lt;&lt; 4,
232
+ GTK_SOURCE_DRAW_SPACES_TEXT = 1 &lt;&lt; 5,
233
+ GTK_SOURCE_DRAW_SPACES_TRAILING = 1 &lt;&lt; 6,
234
+ GTK_SOURCE_DRAW_SPACES_ALL = (GTK_SOURCE_DRAW_SPACES_SPACE | \
235
+ GTK_SOURCE_DRAW_SPACES_TAB | \
236
+ GTK_SOURCE_DRAW_SPACES_NEWLINE | \
237
+ GTK_SOURCE_DRAW_SPACES_NBSP | \
238
+ GTK_SOURCE_DRAW_SPACES_LEADING | \
239
+ GTK_SOURCE_DRAW_SPACES_TEXT | \
240
+ GTK_SOURCE_DRAW_SPACES_TRAILING)
241
+ } GtkSourceDrawSpacesFlags;
242
+ </pre>
243
+ <p>
244
+ GtkSourceDrawSpacesFlags determine what kind of spaces whould be drawn. If none
245
+ of GTK_SOURCE_DRAW_SPACES_LEADING, GTK_SOURCE_DRAW_SPACES_TEXT or
246
+ GTK_SOURCE_DRAW_SPACES_TRAILING is specified, whitespaces at any position in
247
+ the line will be drawn (i.e. it has the same effect as specifying all of them).
248
+ </p>
249
+ <div class="variablelist"><table border="0" class="variablelist">
250
+ <colgroup>
251
+ <col align="left" valign="top">
252
+ <col>
253
+ </colgroup>
254
+ <tbody>
255
+ <tr>
256
+ <td><p><a name="GTK-SOURCE-DRAW-SPACES-SPACE:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_DRAW_SPACES_SPACE</code></span></p></td>
257
+ <td>whether the space character should be drawn.
258
+ </td>
259
+ </tr>
260
+ <tr>
261
+ <td><p><a name="GTK-SOURCE-DRAW-SPACES-TAB:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_DRAW_SPACES_TAB</code></span></p></td>
262
+ <td>whether the tab character should be drawn.
263
+ </td>
264
+ </tr>
265
+ <tr>
266
+ <td><p><a name="GTK-SOURCE-DRAW-SPACES-NEWLINE:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_DRAW_SPACES_NEWLINE</code></span></p></td>
267
+ <td>whether the line breaks should be drawn.
268
+ </td>
269
+ </tr>
270
+ <tr>
271
+ <td><p><a name="GTK-SOURCE-DRAW-SPACES-NBSP:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_DRAW_SPACES_NBSP</code></span></p></td>
272
+ <td>whether the non-breaking whitespaces should be drawn.
273
+ </td>
274
+ </tr>
275
+ <tr>
276
+ <td><p><a name="GTK-SOURCE-DRAW-SPACES-LEADING:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_DRAW_SPACES_LEADING</code></span></p></td>
277
+ <td>whether leading whitespaces should be drawn.
278
+ </td>
279
+ </tr>
280
+ <tr>
281
+ <td><p><a name="GTK-SOURCE-DRAW-SPACES-TEXT:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_DRAW_SPACES_TEXT</code></span></p></td>
282
+ <td>whether whitespaces inside text should be drawn.
283
+ </td>
284
+ </tr>
285
+ <tr>
286
+ <td><p><a name="GTK-SOURCE-DRAW-SPACES-TRAILING:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_DRAW_SPACES_TRAILING</code></span></p></td>
287
+ <td>whether trailing whitespaces should be drawn.
288
+ </td>
289
+ </tr>
290
+ <tr>
291
+ <td><p><a name="GTK-SOURCE-DRAW-SPACES-ALL:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_DRAW_SPACES_ALL</code></span></p></td>
292
+ <td>wheter all kind of spaces should be drawn.
293
+ </td>
294
+ </tr>
295
+ </tbody>
296
+ </table></div>
297
+ </div>
298
+ <hr>
299
+ <div class="refsect2">
300
+ <a name="GtkSourceViewGutterPosition"></a><h3>enum GtkSourceViewGutterPosition</h3>
301
+ <pre class="programlisting">typedef enum {
302
+ GTK_SOURCE_VIEW_GUTTER_POSITION_LINES = -30,
303
+ GTK_SOURCE_VIEW_GUTTER_POSITION_MARKS = -20
304
+ } GtkSourceViewGutterPosition;
305
+ </pre>
306
+ <div class="variablelist"><table border="0" class="variablelist">
307
+ <colgroup>
308
+ <col align="left" valign="top">
309
+ <col>
310
+ </colgroup>
311
+ <tbody>
312
+ <tr>
313
+ <td><p><a name="GTK-SOURCE-VIEW-GUTTER-POSITION-LINES:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_VIEW_GUTTER_POSITION_LINES</code></span></p></td>
314
+ <td>the gutter position of the lines
315
+ renderer
316
+ </td>
317
+ </tr>
318
+ <tr>
319
+ <td><p><a name="GTK-SOURCE-VIEW-GUTTER-POSITION-MARKS:CAPS"></a><span class="term"><code class="literal">GTK_SOURCE_VIEW_GUTTER_POSITION_MARKS</code></span></p></td>
320
+ <td>the gutter position of the marks
321
+ renderer
322
+ </td>
323
+ </tr>
324
+ </tbody>
325
+ </table></div>
326
+ </div>
327
+ <hr>
328
+ <div class="refsect2">
329
+ <a name="gtk-source-view-new"></a><h3>gtk_source_view_new ()</h3>
330
+ <pre class="programlisting"><span class="returnvalue">GtkWidget</span> * gtk_source_view_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
331
+ <p>
332
+ Creates a new <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>. An empty default buffer will be
333
+ created for you. If you want to specify your own buffer, consider
334
+ <a class="link" href="GtkSourceView.html#gtk-source-view-new-with-buffer" title="gtk_source_view_new_with_buffer ()"><code class="function">gtk_source_view_new_with_buffer()</code></a>.
335
+ </p>
336
+ <div class="variablelist"><table border="0" class="variablelist">
337
+ <colgroup>
338
+ <col align="left" valign="top">
339
+ <col>
340
+ </colgroup>
341
+ <tbody><tr>
342
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
343
+ <td>a new <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
344
+ </tr></tbody>
345
+ </table></div>
346
+ </div>
347
+ <hr>
348
+ <div class="refsect2">
349
+ <a name="gtk-source-view-new-with-buffer"></a><h3>gtk_source_view_new_with_buffer ()</h3>
350
+ <pre class="programlisting"><span class="returnvalue">GtkWidget</span> * gtk_source_view_new_with_buffer (<em class="parameter"><code><a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> *buffer</code></em>);</pre>
351
+ <p>
352
+ Creates a new <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> widget displaying the buffer
353
+ <em class="parameter"><code>buffer</code></em>. One buffer can be shared among many widgets.
354
+ </p>
355
+ <div class="variablelist"><table border="0" class="variablelist">
356
+ <colgroup>
357
+ <col align="left" valign="top">
358
+ <col>
359
+ </colgroup>
360
+ <tbody>
361
+ <tr>
362
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
363
+ <td>a <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a>.</td>
364
+ </tr>
365
+ <tr>
366
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
367
+ <td>a new <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
368
+ </tr>
369
+ </tbody>
370
+ </table></div>
371
+ </div>
372
+ <hr>
373
+ <div class="refsect2">
374
+ <a name="gtk-source-view-set-auto-indent"></a><h3>gtk_source_view_set_auto_indent ()</h3>
375
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_auto_indent (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
376
+ <em class="parameter"><code><span class="type">gboolean</span> enable</code></em>);</pre>
377
+ <p>
378
+ If <code class="literal">TRUE</code> auto indentation of text is enabled.
379
+ </p>
380
+ <div class="variablelist"><table border="0" class="variablelist">
381
+ <colgroup>
382
+ <col align="left" valign="top">
383
+ <col>
384
+ </colgroup>
385
+ <tbody>
386
+ <tr>
387
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
388
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
389
+ </tr>
390
+ <tr>
391
+ <td><p><span class="term"><em class="parameter"><code>enable</code></em> :</span></p></td>
392
+ <td>whether to enable auto indentation.</td>
393
+ </tr>
394
+ </tbody>
395
+ </table></div>
396
+ </div>
397
+ <hr>
398
+ <div class="refsect2">
399
+ <a name="gtk-source-view-get-auto-indent"></a><h3>gtk_source_view_get_auto_indent ()</h3>
400
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_source_view_get_auto_indent (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
401
+ <p>
402
+ Returns whether auto indentation of text is enabled.
403
+ </p>
404
+ <div class="variablelist"><table border="0" class="variablelist">
405
+ <colgroup>
406
+ <col align="left" valign="top">
407
+ <col>
408
+ </colgroup>
409
+ <tbody>
410
+ <tr>
411
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
412
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
413
+ </tr>
414
+ <tr>
415
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
416
+ <td>
417
+ <code class="literal">TRUE</code> if auto indentation is enabled.</td>
418
+ </tr>
419
+ </tbody>
420
+ </table></div>
421
+ </div>
422
+ <hr>
423
+ <div class="refsect2">
424
+ <a name="gtk-source-view-set-indent-on-tab"></a><h3>gtk_source_view_set_indent_on_tab ()</h3>
425
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_indent_on_tab (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
426
+ <em class="parameter"><code><span class="type">gboolean</span> enable</code></em>);</pre>
427
+ <p>
428
+ If <code class="literal">TRUE</code>, when the tab key is pressed and there is a selection, the
429
+ selected text is indented of one level instead of being replaced with
430
+ the \t characters. Shift+Tab unindents the selection.
431
+ </p>
432
+ <div class="variablelist"><table border="0" class="variablelist">
433
+ <colgroup>
434
+ <col align="left" valign="top">
435
+ <col>
436
+ </colgroup>
437
+ <tbody>
438
+ <tr>
439
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
440
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
441
+ </tr>
442
+ <tr>
443
+ <td><p><span class="term"><em class="parameter"><code>enable</code></em> :</span></p></td>
444
+ <td>whether to indent a block when tab is pressed.</td>
445
+ </tr>
446
+ </tbody>
447
+ </table></div>
448
+ <p class="since">Since 1.8</p>
449
+ </div>
450
+ <hr>
451
+ <div class="refsect2">
452
+ <a name="gtk-source-view-get-indent-on-tab"></a><h3>gtk_source_view_get_indent_on_tab ()</h3>
453
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_source_view_get_indent_on_tab (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
454
+ <p>
455
+ Returns whether when the tab key is pressed the current selection
456
+ should get indented instead of replaced with the \t character.
457
+ </p>
458
+ <div class="variablelist"><table border="0" class="variablelist">
459
+ <colgroup>
460
+ <col align="left" valign="top">
461
+ <col>
462
+ </colgroup>
463
+ <tbody>
464
+ <tr>
465
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
466
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
467
+ </tr>
468
+ <tr>
469
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
470
+ <td>
471
+ <code class="literal">TRUE</code> if the selection is indented when tab is pressed.</td>
472
+ </tr>
473
+ </tbody>
474
+ </table></div>
475
+ <p class="since">Since 1.8</p>
476
+ </div>
477
+ <hr>
478
+ <div class="refsect2">
479
+ <a name="gtk-source-view-set-indent-width"></a><h3>gtk_source_view_set_indent_width ()</h3>
480
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_indent_width (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
481
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>);</pre>
482
+ <p>
483
+ Sets the number of spaces to use for each step of indent.
484
+ If <em class="parameter"><code>width</code></em> is -1, the value of the GtkSourceView::tab-width property
485
+ will be used.
486
+ </p>
487
+ <div class="variablelist"><table border="0" class="variablelist">
488
+ <colgroup>
489
+ <col align="left" valign="top">
490
+ <col>
491
+ </colgroup>
492
+ <tbody>
493
+ <tr>
494
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
495
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
496
+ </tr>
497
+ <tr>
498
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
499
+ <td>indent width in characters.</td>
500
+ </tr>
501
+ </tbody>
502
+ </table></div>
503
+ </div>
504
+ <hr>
505
+ <div class="refsect2">
506
+ <a name="gtk-source-view-get-indent-width"></a><h3>gtk_source_view_get_indent_width ()</h3>
507
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_source_view_get_indent_width (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
508
+ <p>
509
+ Returns the number of spaces to use for each step of indent.
510
+ See <a class="link" href="GtkSourceView.html#gtk-source-view-set-indent-width" title="gtk_source_view_set_indent_width ()"><code class="function">gtk_source_view_set_indent_width()</code></a> for details.
511
+ </p>
512
+ <div class="variablelist"><table border="0" class="variablelist">
513
+ <colgroup>
514
+ <col align="left" valign="top">
515
+ <col>
516
+ </colgroup>
517
+ <tbody>
518
+ <tr>
519
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
520
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
521
+ </tr>
522
+ <tr>
523
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
524
+ <td>indent width.</td>
525
+ </tr>
526
+ </tbody>
527
+ </table></div>
528
+ </div>
529
+ <hr>
530
+ <div class="refsect2">
531
+ <a name="gtk-source-view-set-insert-spaces-instead-of-tabs"></a><h3>gtk_source_view_set_insert_spaces_instead_of_tabs ()</h3>
532
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_insert_spaces_instead_of_tabs
533
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
534
+ <em class="parameter"><code><span class="type">gboolean</span> enable</code></em>);</pre>
535
+ <p>
536
+ If <code class="literal">TRUE</code> any tabulator character inserted is replaced by a group
537
+ of space characters.
538
+ </p>
539
+ <div class="variablelist"><table border="0" class="variablelist">
540
+ <colgroup>
541
+ <col align="left" valign="top">
542
+ <col>
543
+ </colgroup>
544
+ <tbody>
545
+ <tr>
546
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
547
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
548
+ </tr>
549
+ <tr>
550
+ <td><p><span class="term"><em class="parameter"><code>enable</code></em> :</span></p></td>
551
+ <td>whether to insert spaces instead of tabs.</td>
552
+ </tr>
553
+ </tbody>
554
+ </table></div>
555
+ </div>
556
+ <hr>
557
+ <div class="refsect2">
558
+ <a name="gtk-source-view-get-insert-spaces-instead-of-tabs"></a><h3>gtk_source_view_get_insert_spaces_instead_of_tabs ()</h3>
559
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_source_view_get_insert_spaces_instead_of_tabs
560
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
561
+ <p>
562
+ Returns whether when inserting a tabulator character it should
563
+ be replaced by a group of space characters.
564
+ </p>
565
+ <div class="variablelist"><table border="0" class="variablelist">
566
+ <colgroup>
567
+ <col align="left" valign="top">
568
+ <col>
569
+ </colgroup>
570
+ <tbody>
571
+ <tr>
572
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
573
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
574
+ </tr>
575
+ <tr>
576
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
577
+ <td>
578
+ <code class="literal">TRUE</code> if spaces are inserted instead of tabs.</td>
579
+ </tr>
580
+ </tbody>
581
+ </table></div>
582
+ </div>
583
+ <hr>
584
+ <div class="refsect2">
585
+ <a name="gtk-source-view-set-smart-home-end"></a><h3>gtk_source_view_set_smart_home_end ()</h3>
586
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_smart_home_end (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
587
+ <em class="parameter"><code><a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a> smart_he</code></em>);</pre>
588
+ <p>
589
+ Set the desired movement of the cursor when HOME and END keys
590
+ are pressed.
591
+ </p>
592
+ <div class="variablelist"><table border="0" class="variablelist">
593
+ <colgroup>
594
+ <col align="left" valign="top">
595
+ <col>
596
+ </colgroup>
597
+ <tbody>
598
+ <tr>
599
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
600
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
601
+ </tr>
602
+ <tr>
603
+ <td><p><span class="term"><em class="parameter"><code>smart_he</code></em> :</span></p></td>
604
+ <td>the desired behavior among <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a>.</td>
605
+ </tr>
606
+ </tbody>
607
+ </table></div>
608
+ </div>
609
+ <hr>
610
+ <div class="refsect2">
611
+ <a name="gtk-source-view-get-smart-home-end"></a><h3>gtk_source_view_get_smart_home_end ()</h3>
612
+ <pre class="programlisting"><a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="returnvalue">GtkSourceSmartHomeEndType</span></a> gtk_source_view_get_smart_home_end
613
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
614
+ <p>
615
+ Returns a <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a> end value specifying
616
+ how the cursor will move when HOME and END keys are pressed.
617
+ </p>
618
+ <div class="variablelist"><table border="0" class="variablelist">
619
+ <colgroup>
620
+ <col align="left" valign="top">
621
+ <col>
622
+ </colgroup>
623
+ <tbody>
624
+ <tr>
625
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
626
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
627
+ </tr>
628
+ <tr>
629
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
630
+ <td>a <span class="type">GtkSourceSmartHomeEndTypeend</span> value.</td>
631
+ </tr>
632
+ </tbody>
633
+ </table></div>
634
+ </div>
635
+ <hr>
636
+ <div class="refsect2">
637
+ <a name="gtk-source-view-set-mark-attributes"></a><h3>gtk_source_view_set_mark_attributes ()</h3>
638
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_mark_attributes (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
639
+ <em class="parameter"><code>const <span class="type">gchar</span> *category</code></em>,
640
+ <em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
641
+ <em class="parameter"><code><span class="type">gint</span> priority</code></em>);</pre>
642
+ <p>
643
+ Sets attributes and priority for the <em class="parameter"><code>category</code></em>.
644
+ </p>
645
+ <div class="variablelist"><table border="0" class="variablelist">
646
+ <colgroup>
647
+ <col align="left" valign="top">
648
+ <col>
649
+ </colgroup>
650
+ <tbody>
651
+ <tr>
652
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
653
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
654
+ </tr>
655
+ <tr>
656
+ <td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
657
+ <td>the category.</td>
658
+ </tr>
659
+ <tr>
660
+ <td><p><span class="term"><em class="parameter"><code>attributes</code></em> :</span></p></td>
661
+ <td>mark attributes.</td>
662
+ </tr>
663
+ <tr>
664
+ <td><p><span class="term"><em class="parameter"><code>priority</code></em> :</span></p></td>
665
+ <td>priority of the category.</td>
666
+ </tr>
667
+ </tbody>
668
+ </table></div>
669
+ </div>
670
+ <hr>
671
+ <div class="refsect2">
672
+ <a name="gtk-source-view-get-mark-attributes"></a><h3>gtk_source_view_get_mark_attributes ()</h3>
673
+ <pre class="programlisting"><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="returnvalue">GtkSourceMarkAttributes</span></a> * gtk_source_view_get_mark_attributes
674
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
675
+ <em class="parameter"><code>const <span class="type">gchar</span> *category</code></em>,
676
+ <em class="parameter"><code><span class="type">gint</span> *priority</code></em>);</pre>
677
+ <p>
678
+ Gets attributes and priority for the <em class="parameter"><code>category</code></em>.
679
+ </p>
680
+ <div class="variablelist"><table border="0" class="variablelist">
681
+ <colgroup>
682
+ <col align="left" valign="top">
683
+ <col>
684
+ </colgroup>
685
+ <tbody>
686
+ <tr>
687
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
688
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
689
+ </tr>
690
+ <tr>
691
+ <td><p><span class="term"><em class="parameter"><code>category</code></em> :</span></p></td>
692
+ <td>the category.</td>
693
+ </tr>
694
+ <tr>
695
+ <td><p><span class="term"><em class="parameter"><code>priority</code></em> :</span></p></td>
696
+ <td>place where priority of the category will be stored.</td>
697
+ </tr>
698
+ <tr>
699
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
700
+ <td>
701
+ <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> for the <em class="parameter"><code>category</code></em>.
702
+ The object belongs to <em class="parameter"><code>view</code></em>, so it must not be unreffed. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
703
+ </td>
704
+ </tr>
705
+ </tbody>
706
+ </table></div>
707
+ </div>
708
+ <hr>
709
+ <div class="refsect2">
710
+ <a name="gtk-source-view-set-highlight-current-line"></a><h3>gtk_source_view_set_highlight_current_line ()</h3>
711
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_highlight_current_line
712
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
713
+ <em class="parameter"><code><span class="type">gboolean</span> hl</code></em>);</pre>
714
+ <p>
715
+ If <em class="parameter"><code>hl</code></em> is <code class="literal">TRUE</code> the current line is highlighted.
716
+ </p>
717
+ <div class="variablelist"><table border="0" class="variablelist">
718
+ <colgroup>
719
+ <col align="left" valign="top">
720
+ <col>
721
+ </colgroup>
722
+ <tbody>
723
+ <tr>
724
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
725
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
726
+ </tr>
727
+ <tr>
728
+ <td><p><span class="term"><em class="parameter"><code>hl</code></em> :</span></p></td>
729
+ <td>whether to highlight the current line.</td>
730
+ </tr>
731
+ </tbody>
732
+ </table></div>
733
+ </div>
734
+ <hr>
735
+ <div class="refsect2">
736
+ <a name="gtk-source-view-get-highlight-current-line"></a><h3>gtk_source_view_get_highlight_current_line ()</h3>
737
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_source_view_get_highlight_current_line
738
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
739
+ <p>
740
+ Returns whether the current line is highlighted.
741
+ </p>
742
+ <div class="variablelist"><table border="0" class="variablelist">
743
+ <colgroup>
744
+ <col align="left" valign="top">
745
+ <col>
746
+ </colgroup>
747
+ <tbody>
748
+ <tr>
749
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
750
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
751
+ </tr>
752
+ <tr>
753
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
754
+ <td>
755
+ <code class="literal">TRUE</code> if the current line is highlighted.</td>
756
+ </tr>
757
+ </tbody>
758
+ </table></div>
759
+ </div>
760
+ <hr>
761
+ <div class="refsect2">
762
+ <a name="gtk-source-view-set-show-line-marks"></a><h3>gtk_source_view_set_show_line_marks ()</h3>
763
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_show_line_marks (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
764
+ <em class="parameter"><code><span class="type">gboolean</span> show</code></em>);</pre>
765
+ <p>
766
+ If <code class="literal">TRUE</code> line marks will be displayed beside the text.
767
+ </p>
768
+ <div class="variablelist"><table border="0" class="variablelist">
769
+ <colgroup>
770
+ <col align="left" valign="top">
771
+ <col>
772
+ </colgroup>
773
+ <tbody>
774
+ <tr>
775
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
776
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
777
+ </tr>
778
+ <tr>
779
+ <td><p><span class="term"><em class="parameter"><code>show</code></em> :</span></p></td>
780
+ <td>whether line marks should be displayed.</td>
781
+ </tr>
782
+ </tbody>
783
+ </table></div>
784
+ <p class="since">Since 2.2</p>
785
+ </div>
786
+ <hr>
787
+ <div class="refsect2">
788
+ <a name="gtk-source-view-get-show-line-marks"></a><h3>gtk_source_view_get_show_line_marks ()</h3>
789
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_source_view_get_show_line_marks (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
790
+ <p>
791
+ Returns whether line marks are displayed beside the text.
792
+ </p>
793
+ <div class="variablelist"><table border="0" class="variablelist">
794
+ <colgroup>
795
+ <col align="left" valign="top">
796
+ <col>
797
+ </colgroup>
798
+ <tbody>
799
+ <tr>
800
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
801
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
802
+ </tr>
803
+ <tr>
804
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
805
+ <td>
806
+ <code class="literal">TRUE</code> if the line marks are displayed.</td>
807
+ </tr>
808
+ </tbody>
809
+ </table></div>
810
+ <p class="since">Since 2.2</p>
811
+ </div>
812
+ <hr>
813
+ <div class="refsect2">
814
+ <a name="gtk-source-view-set-show-line-numbers"></a><h3>gtk_source_view_set_show_line_numbers ()</h3>
815
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_show_line_numbers
816
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
817
+ <em class="parameter"><code><span class="type">gboolean</span> show</code></em>);</pre>
818
+ <p>
819
+ If <code class="literal">TRUE</code> line numbers will be displayed beside the text.
820
+ </p>
821
+ <div class="variablelist"><table border="0" class="variablelist">
822
+ <colgroup>
823
+ <col align="left" valign="top">
824
+ <col>
825
+ </colgroup>
826
+ <tbody>
827
+ <tr>
828
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
829
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
830
+ </tr>
831
+ <tr>
832
+ <td><p><span class="term"><em class="parameter"><code>show</code></em> :</span></p></td>
833
+ <td>whether line numbers should be displayed.</td>
834
+ </tr>
835
+ </tbody>
836
+ </table></div>
837
+ </div>
838
+ <hr>
839
+ <div class="refsect2">
840
+ <a name="gtk-source-view-get-show-line-numbers"></a><h3>gtk_source_view_get_show_line_numbers ()</h3>
841
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_source_view_get_show_line_numbers
842
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
843
+ <p>
844
+ Returns whether line numbers are displayed beside the text.
845
+ </p>
846
+ <div class="variablelist"><table border="0" class="variablelist">
847
+ <colgroup>
848
+ <col align="left" valign="top">
849
+ <col>
850
+ </colgroup>
851
+ <tbody>
852
+ <tr>
853
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
854
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
855
+ </tr>
856
+ <tr>
857
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
858
+ <td>
859
+ <code class="literal">TRUE</code> if the line numbers are displayed.</td>
860
+ </tr>
861
+ </tbody>
862
+ </table></div>
863
+ </div>
864
+ <hr>
865
+ <div class="refsect2">
866
+ <a name="gtk-source-view-set-show-right-margin"></a><h3>gtk_source_view_set_show_right_margin ()</h3>
867
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_show_right_margin
868
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
869
+ <em class="parameter"><code><span class="type">gboolean</span> show</code></em>);</pre>
870
+ <p>
871
+ If <code class="literal">TRUE</code> a right margin is displayed.
872
+ </p>
873
+ <div class="variablelist"><table border="0" class="variablelist">
874
+ <colgroup>
875
+ <col align="left" valign="top">
876
+ <col>
877
+ </colgroup>
878
+ <tbody>
879
+ <tr>
880
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
881
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
882
+ </tr>
883
+ <tr>
884
+ <td><p><span class="term"><em class="parameter"><code>show</code></em> :</span></p></td>
885
+ <td>whether to show a right margin.</td>
886
+ </tr>
887
+ </tbody>
888
+ </table></div>
889
+ </div>
890
+ <hr>
891
+ <div class="refsect2">
892
+ <a name="gtk-source-view-get-show-right-margin"></a><h3>gtk_source_view_get_show_right_margin ()</h3>
893
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_source_view_get_show_right_margin
894
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
895
+ <p>
896
+ Returns whether a right margin is displayed.
897
+ </p>
898
+ <div class="variablelist"><table border="0" class="variablelist">
899
+ <colgroup>
900
+ <col align="left" valign="top">
901
+ <col>
902
+ </colgroup>
903
+ <tbody>
904
+ <tr>
905
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
906
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
907
+ </tr>
908
+ <tr>
909
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
910
+ <td>
911
+ <code class="literal">TRUE</code> if the right margin is shown.</td>
912
+ </tr>
913
+ </tbody>
914
+ </table></div>
915
+ </div>
916
+ <hr>
917
+ <div class="refsect2">
918
+ <a name="gtk-source-view-set-right-margin-position"></a><h3>gtk_source_view_set_right_margin_position ()</h3>
919
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_right_margin_position
920
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
921
+ <em class="parameter"><code><span class="type">guint</span> pos</code></em>);</pre>
922
+ <p>
923
+ Sets the position of the right margin in the given <em class="parameter"><code>view</code></em>.
924
+ </p>
925
+ <div class="variablelist"><table border="0" class="variablelist">
926
+ <colgroup>
927
+ <col align="left" valign="top">
928
+ <col>
929
+ </colgroup>
930
+ <tbody>
931
+ <tr>
932
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
933
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
934
+ </tr>
935
+ <tr>
936
+ <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
937
+ <td>the width in characters where to position the right margin.</td>
938
+ </tr>
939
+ </tbody>
940
+ </table></div>
941
+ </div>
942
+ <hr>
943
+ <div class="refsect2">
944
+ <a name="gtk-source-view-get-right-margin-position"></a><h3>gtk_source_view_get_right_margin_position ()</h3>
945
+ <pre class="programlisting"><span class="returnvalue">guint</span> gtk_source_view_get_right_margin_position
946
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
947
+ <p>
948
+ Gets the position of the right margin in the given <em class="parameter"><code>view</code></em>.
949
+ </p>
950
+ <div class="variablelist"><table border="0" class="variablelist">
951
+ <colgroup>
952
+ <col align="left" valign="top">
953
+ <col>
954
+ </colgroup>
955
+ <tbody>
956
+ <tr>
957
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
958
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
959
+ </tr>
960
+ <tr>
961
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
962
+ <td>the position of the right margin.</td>
963
+ </tr>
964
+ </tbody>
965
+ </table></div>
966
+ </div>
967
+ <hr>
968
+ <div class="refsect2">
969
+ <a name="gtk-source-view-set-tab-width"></a><h3>gtk_source_view_set_tab_width ()</h3>
970
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_tab_width (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
971
+ <em class="parameter"><code><span class="type">guint</span> width</code></em>);</pre>
972
+ <p>
973
+ Sets the width of tabulation in characters.
974
+ </p>
975
+ <div class="variablelist"><table border="0" class="variablelist">
976
+ <colgroup>
977
+ <col align="left" valign="top">
978
+ <col>
979
+ </colgroup>
980
+ <tbody>
981
+ <tr>
982
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
983
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
984
+ </tr>
985
+ <tr>
986
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
987
+ <td>width of tab in characters.</td>
988
+ </tr>
989
+ </tbody>
990
+ </table></div>
991
+ </div>
992
+ <hr>
993
+ <div class="refsect2">
994
+ <a name="gtk-source-view-get-tab-width"></a><h3>gtk_source_view_get_tab_width ()</h3>
995
+ <pre class="programlisting"><span class="returnvalue">guint</span> gtk_source_view_get_tab_width (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
996
+ <p>
997
+ Returns the width of tabulation in characters.
998
+ </p>
999
+ <div class="variablelist"><table border="0" class="variablelist">
1000
+ <colgroup>
1001
+ <col align="left" valign="top">
1002
+ <col>
1003
+ </colgroup>
1004
+ <tbody>
1005
+ <tr>
1006
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1007
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
1008
+ </tr>
1009
+ <tr>
1010
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1011
+ <td>width of tab.</td>
1012
+ </tr>
1013
+ </tbody>
1014
+ </table></div>
1015
+ </div>
1016
+ <hr>
1017
+ <div class="refsect2">
1018
+ <a name="gtk-source-view-set-draw-spaces"></a><h3>gtk_source_view_set_draw_spaces ()</h3>
1019
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_source_view_set_draw_spaces (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1020
+ <em class="parameter"><code><a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="type">GtkSourceDrawSpacesFlags</span></a> flags</code></em>);</pre>
1021
+ <p>
1022
+ Set if and how the spaces should be visualized. Specifying <em class="parameter"><code>flags</code></em> as 0 will
1023
+ disable display of spaces.
1024
+ </p>
1025
+ <div class="variablelist"><table border="0" class="variablelist">
1026
+ <colgroup>
1027
+ <col align="left" valign="top">
1028
+ <col>
1029
+ </colgroup>
1030
+ <tbody>
1031
+ <tr>
1032
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1033
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
1034
+ </tr>
1035
+ <tr>
1036
+ <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1037
+ <td>
1038
+ <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="type">GtkSourceDrawSpacesFlags</span></a> specifing how white spaces should
1039
+ be displayed</td>
1040
+ </tr>
1041
+ </tbody>
1042
+ </table></div>
1043
+ </div>
1044
+ <hr>
1045
+ <div class="refsect2">
1046
+ <a name="gtk-source-view-get-draw-spaces"></a><h3>gtk_source_view_get_draw_spaces ()</h3>
1047
+ <pre class="programlisting"><a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="returnvalue">GtkSourceDrawSpacesFlags</span></a> gtk_source_view_get_draw_spaces
1048
+ (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
1049
+ <p>
1050
+ Returns the <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="type">GtkSourceDrawSpacesFlags</span></a> specifying if and how spaces
1051
+ should be displayed for this <em class="parameter"><code>view</code></em>.
1052
+ </p>
1053
+ <div class="variablelist"><table border="0" class="variablelist">
1054
+ <colgroup>
1055
+ <col align="left" valign="top">
1056
+ <col>
1057
+ </colgroup>
1058
+ <tbody>
1059
+ <tr>
1060
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1061
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>
1062
+ </td>
1063
+ </tr>
1064
+ <tr>
1065
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1066
+ <td>the <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="type">GtkSourceDrawSpacesFlags</span></a>, 0 if no spaces should be drawn.</td>
1067
+ </tr>
1068
+ </tbody>
1069
+ </table></div>
1070
+ </div>
1071
+ <hr>
1072
+ <div class="refsect2">
1073
+ <a name="gtk-source-view-get-completion"></a><h3>gtk_source_view_get_completion ()</h3>
1074
+ <pre class="programlisting"><a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion"><span class="returnvalue">GtkSourceCompletion</span></a> * gtk_source_view_get_completion (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>);</pre>
1075
+ <p>
1076
+ Gets the <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion"><span class="type">GtkSourceCompletion</span></a> associated with <em class="parameter"><code>view</code></em>.
1077
+ </p>
1078
+ <div class="variablelist"><table border="0" class="variablelist">
1079
+ <colgroup>
1080
+ <col align="left" valign="top">
1081
+ <col>
1082
+ </colgroup>
1083
+ <tbody>
1084
+ <tr>
1085
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1086
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
1087
+ </tr>
1088
+ <tr>
1089
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1090
+ <td>the <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion"><span class="type">GtkSourceCompletion</span></a> associated with <em class="parameter"><code>view</code></em>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GtkSource.Completion][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1091
+ </td>
1092
+ </tr>
1093
+ </tbody>
1094
+ </table></div>
1095
+ </div>
1096
+ <hr>
1097
+ <div class="refsect2">
1098
+ <a name="gtk-source-view-get-gutter"></a><h3>gtk_source_view_get_gutter ()</h3>
1099
+ <pre class="programlisting"><a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter"><span class="returnvalue">GtkSourceGutter</span></a> * gtk_source_view_get_gutter (<em class="parameter"><code><a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view</code></em>,
1100
+ <em class="parameter"><code><span class="type">GtkTextWindowType</span> window_type</code></em>);</pre>
1101
+ <p>
1102
+ Returns the <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter"><span class="type">GtkSourceGutter</span></a> object associated with <em class="parameter"><code>window_type</code></em> for <em class="parameter"><code>view</code></em>.
1103
+ Only GTK_TEXT_WINDOW_LEFT and GTK_TEXT_WINDOW_RIGHT are supported,
1104
+ respectively corresponding to the left and right gutter. The line numbers
1105
+ and mark category icons are rendered in the gutter corresponding to
1106
+ GTK_TEXT_WINDOW_LEFT.
1107
+ </p>
1108
+ <div class="variablelist"><table border="0" class="variablelist">
1109
+ <colgroup>
1110
+ <col align="left" valign="top">
1111
+ <col>
1112
+ </colgroup>
1113
+ <tbody>
1114
+ <tr>
1115
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1116
+ <td>a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>.</td>
1117
+ </tr>
1118
+ <tr>
1119
+ <td><p><span class="term"><em class="parameter"><code>window_type</code></em> :</span></p></td>
1120
+ <td>the gutter window type.</td>
1121
+ </tr>
1122
+ <tr>
1123
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1124
+ <td>the <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter"><span class="type">GtkSourceGutter</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1125
+ </td>
1126
+ </tr>
1127
+ </tbody>
1128
+ </table></div>
1129
+ <p class="since">Since 2.8</p>
1130
+ </div>
1131
+ </div>
1132
+ <div class="refsect1">
1133
+ <a name="GtkSourceView.property-details"></a><h2>Property Details</h2>
1134
+ <div class="refsect2">
1135
+ <a name="GtkSourceView--auto-indent"></a><h3>The <code class="literal">"auto-indent"</code> property</h3>
1136
+ <pre class="programlisting"> "auto-indent" <span class="type">gboolean</span> : Read / Write</pre>
1137
+ <p>Whether to enable auto indentation.</p>
1138
+ <p>Default value: FALSE</p>
1139
+ </div>
1140
+ <hr>
1141
+ <div class="refsect2">
1142
+ <a name="GtkSourceView--completion"></a><h3>The <code class="literal">"completion"</code> property</h3>
1143
+ <pre class="programlisting"> "completion" <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion"><span class="type">GtkSourceCompletion</span></a>* : Read</pre>
1144
+ <p>
1145
+ The completion object associated with the view
1146
+ </p>
1147
+ </div>
1148
+ <hr>
1149
+ <div class="refsect2">
1150
+ <a name="GtkSourceView--draw-spaces"></a><h3>The <code class="literal">"draw-spaces"</code> property</h3>
1151
+ <pre class="programlisting"> "draw-spaces" <a class="link" href="GtkSourceView.html#GtkSourceDrawSpacesFlags" title="enum GtkSourceDrawSpacesFlags"><span class="type">GtkSourceDrawSpacesFlags</span></a> : Read / Write</pre>
1152
+ <p>
1153
+ Set if and how the spaces should be visualized.
1154
+ </p>
1155
+ <p class="since">Since 2.4</p>
1156
+ </div>
1157
+ <hr>
1158
+ <div class="refsect2">
1159
+ <a name="GtkSourceView--highlight-current-line"></a><h3>The <code class="literal">"highlight-current-line"</code> property</h3>
1160
+ <pre class="programlisting"> "highlight-current-line" <span class="type">gboolean</span> : Read / Write</pre>
1161
+ <p>Whether to highlight the current line.</p>
1162
+ <p>Default value: FALSE</p>
1163
+ </div>
1164
+ <hr>
1165
+ <div class="refsect2">
1166
+ <a name="GtkSourceView--indent-on-tab"></a><h3>The <code class="literal">"indent-on-tab"</code> property</h3>
1167
+ <pre class="programlisting"> "indent-on-tab" <span class="type">gboolean</span> : Read / Write</pre>
1168
+ <p>Whether to indent the selected text when the tab key is pressed.</p>
1169
+ <p>Default value: TRUE</p>
1170
+ </div>
1171
+ <hr>
1172
+ <div class="refsect2">
1173
+ <a name="GtkSourceView--indent-width"></a><h3>The <code class="literal">"indent-width"</code> property</h3>
1174
+ <pre class="programlisting"> "indent-width" <span class="type">gint</span> : Read / Write</pre>
1175
+ <p>
1176
+ Width of an indentation step expressed in number of spaces.
1177
+ </p>
1178
+ <p>Allowed values: [G_MAXULONG,32]</p>
1179
+ <p>Default value: -1</p>
1180
+ </div>
1181
+ <hr>
1182
+ <div class="refsect2">
1183
+ <a name="GtkSourceView--insert-spaces-instead-of-tabs"></a><h3>The <code class="literal">"insert-spaces-instead-of-tabs"</code> property</h3>
1184
+ <pre class="programlisting"> "insert-spaces-instead-of-tabs" <span class="type">gboolean</span> : Read / Write</pre>
1185
+ <p>Whether to insert spaces instead of tabs.</p>
1186
+ <p>Default value: FALSE</p>
1187
+ </div>
1188
+ <hr>
1189
+ <div class="refsect2">
1190
+ <a name="GtkSourceView--right-margin-position"></a><h3>The <code class="literal">"right-margin-position"</code> property</h3>
1191
+ <pre class="programlisting"> "right-margin-position" <span class="type">guint</span> : Read / Write</pre>
1192
+ <p>
1193
+ Position of the right margin.
1194
+ </p>
1195
+ <p>Allowed values: [1,1000]</p>
1196
+ <p>Default value: 80</p>
1197
+ </div>
1198
+ <hr>
1199
+ <div class="refsect2">
1200
+ <a name="GtkSourceView--show-line-marks"></a><h3>The <code class="literal">"show-line-marks"</code> property</h3>
1201
+ <pre class="programlisting"> "show-line-marks" <span class="type">gboolean</span> : Read / Write</pre>
1202
+ <p>
1203
+ Whether to display line mark pixbufs
1204
+ </p>
1205
+ <p>Default value: FALSE</p>
1206
+ </div>
1207
+ <hr>
1208
+ <div class="refsect2">
1209
+ <a name="GtkSourceView--show-line-numbers"></a><h3>The <code class="literal">"show-line-numbers"</code> property</h3>
1210
+ <pre class="programlisting"> "show-line-numbers" <span class="type">gboolean</span> : Read / Write</pre>
1211
+ <p>
1212
+ Whether to display line numbers
1213
+ </p>
1214
+ <p>Default value: FALSE</p>
1215
+ </div>
1216
+ <hr>
1217
+ <div class="refsect2">
1218
+ <a name="GtkSourceView--show-right-margin"></a><h3>The <code class="literal">"show-right-margin"</code> property</h3>
1219
+ <pre class="programlisting"> "show-right-margin" <span class="type">gboolean</span> : Read / Write</pre>
1220
+ <p>
1221
+ Whether to display the right margin.
1222
+ </p>
1223
+ <p>Default value: FALSE</p>
1224
+ </div>
1225
+ <hr>
1226
+ <div class="refsect2">
1227
+ <a name="GtkSourceView--smart-home-end"></a><h3>The <code class="literal">"smart-home-end"</code> property</h3>
1228
+ <pre class="programlisting"> "smart-home-end" <a class="link" href="GtkSourceView.html#GtkSourceSmartHomeEndType" title="enum GtkSourceSmartHomeEndType"><span class="type">GtkSourceSmartHomeEndType</span></a> : Read / Write</pre>
1229
+ <p>
1230
+ Set the behavior of the HOME and END keys.
1231
+ </p>
1232
+ <p>Default value: GTK_SOURCE_SMART_HOME_END_DISABLED</p>
1233
+ <p class="since">Since 2.0</p>
1234
+ </div>
1235
+ <hr>
1236
+ <div class="refsect2">
1237
+ <a name="GtkSourceView--tab-width"></a><h3>The <code class="literal">"tab-width"</code> property</h3>
1238
+ <pre class="programlisting"> "tab-width" <span class="type">guint</span> : Read / Write</pre>
1239
+ <p>
1240
+ Width of an tab character expressed in number of spaces.
1241
+ </p>
1242
+ <p>Allowed values: [1,32]</p>
1243
+ <p>Default value: 8</p>
1244
+ </div>
1245
+ </div>
1246
+ <div class="refsect1">
1247
+ <a name="GtkSourceView.signal-details"></a><h2>Signal Details</h2>
1248
+ <div class="refsect2">
1249
+ <a name="GtkSourceView-line-mark-activated"></a><h3>The <code class="literal">"line-mark-activated"</code> signal</h3>
1250
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
1251
+ <span class="type">GtkTextIter</span> *iter,
1252
+ <span class="type">GdkEvent</span> *event,
1253
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
1254
+ <p>
1255
+ Emitted when a line mark has been activated (for instance when there
1256
+ was a button press in the line marks gutter). You can use <em class="parameter"><code>iter</code></em> to
1257
+ determine on which line the activation took place.
1258
+ </p>
1259
+ <div class="variablelist"><table border="0" class="variablelist">
1260
+ <colgroup>
1261
+ <col align="left" valign="top">
1262
+ <col>
1263
+ </colgroup>
1264
+ <tbody>
1265
+ <tr>
1266
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1267
+ <td>the <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>
1268
+ </td>
1269
+ </tr>
1270
+ <tr>
1271
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1272
+ <td>a <span class="type">GtkTextIter</span>
1273
+ </td>
1274
+ </tr>
1275
+ <tr>
1276
+ <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
1277
+ <td>the <span class="type">GdkEvent</span> that activated the event</td>
1278
+ </tr>
1279
+ <tr>
1280
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1281
+ <td>user data set when the signal handler was connected.</td>
1282
+ </tr>
1283
+ </tbody>
1284
+ </table></div>
1285
+ </div>
1286
+ <hr>
1287
+ <div class="refsect2">
1288
+ <a name="GtkSourceView-move-lines"></a><h3>The <code class="literal">"move-lines"</code> signal</h3>
1289
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
1290
+ <span class="type">gboolean</span> copy,
1291
+ <span class="type">gint</span> count,
1292
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
1293
+ <p>
1294
+ The ::move-lines signal is a keybinding which gets emitted
1295
+ when the user initiates moving a line. The default binding key
1296
+ is Alt+Up/Down arrow. And moves the currently selected lines,
1297
+ or the current line by <em class="parameter"><code>count</code></em>. For the moment, only
1298
+ <em class="parameter"><code>count</code></em> of -1 or 1 is valid.
1299
+ </p>
1300
+ <div class="variablelist"><table border="0" class="variablelist">
1301
+ <colgroup>
1302
+ <col align="left" valign="top">
1303
+ <col>
1304
+ </colgroup>
1305
+ <tbody>
1306
+ <tr>
1307
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1308
+ <td>the <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> which received the signal</td>
1309
+ </tr>
1310
+ <tr>
1311
+ <td><p><span class="term"><em class="parameter"><code>copy</code></em> :</span></p></td>
1312
+ <td>
1313
+ <code class="literal">TRUE</code> if the line should be copied,
1314
+ <code class="literal">FALSE</code> if it should be moved</td>
1315
+ </tr>
1316
+ <tr>
1317
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1318
+ <td>the number of lines to move over.</td>
1319
+ </tr>
1320
+ <tr>
1321
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1322
+ <td>user data set when the signal handler was connected.</td>
1323
+ </tr>
1324
+ </tbody>
1325
+ </table></div>
1326
+ <p class="since">Since 2.10</p>
1327
+ </div>
1328
+ <hr>
1329
+ <div class="refsect2">
1330
+ <a name="GtkSourceView-move-words"></a><h3>The <code class="literal">"move-words"</code> signal</h3>
1331
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
1332
+ <span class="type">gint</span> count,
1333
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
1334
+ <p>
1335
+ The ::move-words signal is a keybinding which gets emitted
1336
+ when the user initiates moving a word. The default binding key
1337
+ is Alt+Left/Right Arrow and moves the current selection, or the current
1338
+ word by one word.
1339
+ </p>
1340
+ <div class="variablelist"><table border="0" class="variablelist">
1341
+ <colgroup>
1342
+ <col align="left" valign="top">
1343
+ <col>
1344
+ </colgroup>
1345
+ <tbody>
1346
+ <tr>
1347
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1348
+ <td>the <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> which received the signal</td>
1349
+ </tr>
1350
+ <tr>
1351
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1352
+ <td>the number of words to move over</td>
1353
+ </tr>
1354
+ <tr>
1355
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1356
+ <td>user data set when the signal handler was connected.</td>
1357
+ </tr>
1358
+ </tbody>
1359
+ </table></div>
1360
+ <p class="since">Since 3.0</p>
1361
+ </div>
1362
+ <hr>
1363
+ <div class="refsect2">
1364
+ <a name="GtkSourceView-redo"></a><h3>The <code class="literal">"redo"</code> signal</h3>
1365
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *sourceview,
1366
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
1367
+ </div>
1368
+ <hr>
1369
+ <div class="refsect2">
1370
+ <a name="GtkSourceView-show-completion"></a><h3>The <code class="literal">"show-completion"</code> signal</h3>
1371
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
1372
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
1373
+ <p>
1374
+ The ::show-completion signal is a key binding signal which gets
1375
+ emitted when the user requests a completion, by pressing
1376
+ <span class="keycap"><strong>Control</strong></span>+<span class="keycap"><strong>space</strong></span>.
1377
+ </p>
1378
+ <p>
1379
+ This will create a <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext"><span class="type">GtkSourceCompletionContext</span></a> with the activation
1380
+ type as <a class="link" href="GtkSourceCompletionContext.html#GTK-SOURCE-COMPLETION-ACTIVATION-USER-REQUESTED:CAPS"><code class="literal">GTK_SOURCE_COMPLETION_ACTIVATION_USER_REQUESTED</code></a>.
1381
+ </p>
1382
+ <p>
1383
+ Applications should not connect to it, but may emit it with
1384
+ <code class="function">g_signal_emit_by_name()</code> if they need to activate the completion by
1385
+ another means, for example with another key binding or a menu entry.
1386
+ </p>
1387
+ <div class="variablelist"><table border="0" class="variablelist">
1388
+ <colgroup>
1389
+ <col align="left" valign="top">
1390
+ <col>
1391
+ </colgroup>
1392
+ <tbody>
1393
+ <tr>
1394
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1395
+ <td>The <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> who emits the signal</td>
1396
+ </tr>
1397
+ <tr>
1398
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1399
+ <td>user data set when the signal handler was connected.</td>
1400
+ </tr>
1401
+ </tbody>
1402
+ </table></div>
1403
+ </div>
1404
+ <hr>
1405
+ <div class="refsect2">
1406
+ <a name="GtkSourceView-smart-home-end"></a><h3>The <code class="literal">"smart-home-end"</code> signal</h3>
1407
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *view,
1408
+ <span class="type">GtkTextIter</span> *iter,
1409
+ <span class="type">gint</span> count,
1410
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
1411
+ <p>
1412
+ Emitted when a the cursor was moved according to the smart home
1413
+ end setting. The signal is emitted after the cursor is moved, but
1414
+ during the GtkTextView::move-cursor action. This can be used to find
1415
+ out whether the cursor was moved by a normal home/end or by a smart
1416
+ home/end.
1417
+ </p>
1418
+ <div class="variablelist"><table border="0" class="variablelist">
1419
+ <colgroup>
1420
+ <col align="left" valign="top">
1421
+ <col>
1422
+ </colgroup>
1423
+ <tbody>
1424
+ <tr>
1425
+ <td><p><span class="term"><em class="parameter"><code>view</code></em> :</span></p></td>
1426
+ <td>the <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>
1427
+ </td>
1428
+ </tr>
1429
+ <tr>
1430
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1431
+ <td>a <span class="type">GtkTextIter</span>
1432
+ </td>
1433
+ </tr>
1434
+ <tr>
1435
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1436
+ <td>the count</td>
1437
+ </tr>
1438
+ <tr>
1439
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1440
+ <td>user data set when the signal handler was connected.</td>
1441
+ </tr>
1442
+ </tbody>
1443
+ </table></div>
1444
+ <p class="since">Since 3.0</p>
1445
+ </div>
1446
+ <hr>
1447
+ <div class="refsect2">
1448
+ <a name="GtkSourceView-undo"></a><h3>The <code class="literal">"undo"</code> signal</h3>
1449
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> *sourceview,
1450
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
1451
+ </div>
1452
+ </div>
1453
+ <div class="refsect1">
1454
+ <a name="GtkSourceView.see-also"></a><h2>See Also</h2>
1455
+ <span class="type">GtkTextView</span>,<a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a>
1456
+ </div>
1457
+ </div>
1458
+ <div class="footer">
1459
+ <hr>
1460
+ Generated by GTK-Doc V1.18.1</div>
1461
+ </body>
1462
+ </html>