gtksourceview3 2.2.4-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (334) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +59 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +67 -0
  5. data/ext/gtksourceview3/gtksourceview3.def +2 -0
  6. data/ext/gtksourceview3/rbgtksource.c +53 -0
  7. data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
  8. data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
  9. data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
  10. data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
  11. data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +40 -0
  12. data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
  13. data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
  14. data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
  15. data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
  16. data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
  17. data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
  18. data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
  19. data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
  20. data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
  21. data/ext/gtksourceview3/rbgtksourceview.c +94 -0
  22. data/ext/gtksourceview3/rbgtksourceview3conversions.h +50 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +53 -0
  24. data/extconf.rb +49 -0
  25. data/lib/2.0/gtksourceview3.so +0 -0
  26. data/lib/2.1/gtksourceview3.so +0 -0
  27. data/lib/2.2/gtksourceview3.so +0 -0
  28. data/lib/gtksourceview3.rb +20 -0
  29. data/lib/gtksourceview3/deprecated.rb +47 -0
  30. data/sample/sourcelanguagemanager.rb +21 -0
  31. data/sample/test.rb +32 -0
  32. data/test/run-test.rb +44 -0
  33. data/test/test_mark_attributes.rb +26 -0
  34. data/test/test_source_gutter_renderer.rb +33 -0
  35. data/test/test_source_language_manager.rb +46 -0
  36. data/test/test_source_view.rb +57 -0
  37. data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +65 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +54 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +213 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +142 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +95 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +78 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +70 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +97 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +137 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +54 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +115 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +122 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +147 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +229 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +87 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +85 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +84 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +100 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +175 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +133 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +85 -0
  62. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +45 -0
  63. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +109 -0
  64. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +86 -0
  65. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +101 -0
  66. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +75 -0
  67. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +34 -0
  68. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +88 -0
  69. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +213 -0
  70. data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
  71. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  72. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  73. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  74. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  75. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  76. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  77. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  78. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  79. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  80. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  81. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  82. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  83. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  84. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  85. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  86. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  87. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  88. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  89. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  90. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  91. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  92. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  93. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  94. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  95. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  96. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  97. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  98. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  99. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  100. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  101. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  102. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  103. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  104. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  105. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  106. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  107. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  108. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  109. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  110. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  111. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  112. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  113. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  114. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  154. data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +11360 -0
  155. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +2143 -0
  156. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +1129 -0
  157. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +397 -0
  158. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +348 -0
  159. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +367 -0
  160. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +572 -0
  161. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +750 -0
  162. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +345 -0
  163. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +366 -0
  164. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +563 -0
  165. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +769 -0
  166. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +962 -0
  167. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +490 -0
  168. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +1700 -0
  169. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +468 -0
  170. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +228 -0
  171. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +584 -0
  172. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +476 -0
  173. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +310 -0
  174. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +897 -0
  175. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +2149 -0
  176. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +1116 -0
  177. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +606 -0
  178. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +358 -0
  179. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +398 -0
  180. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +463 -0
  181. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +462 -0
  182. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1990 -0
  183. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +81 -0
  184. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +43 -0
  185. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +195 -0
  186. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +39 -0
  187. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +299 -0
  188. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +35 -0
  189. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +95 -0
  190. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +2187 -0
  191. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +119 -0
  192. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +47 -0
  193. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +154 -0
  194. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +601 -0
  195. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  196. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +146 -0
  197. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +882 -0
  198. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +873 -0
  199. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +654 -0
  200. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left-insensitive.png +0 -0
  201. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  202. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +71 -0
  203. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right-insensitive.png +0 -0
  204. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  205. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +283 -0
  206. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +476 -0
  207. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up-insensitive.png +0 -0
  208. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  209. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +2199 -0
  210. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  211. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  212. data/vendor/local/share/gtksourceview-3.0/language-specs/ansforth94.lang +729 -0
  213. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  214. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +330 -0
  215. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  216. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  217. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  218. data/vendor/local/share/gtksourceview-3.0/language-specs/bluespec.lang +188 -0
  219. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  220. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  221. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  222. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +93 -0
  223. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  224. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  225. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +647 -0
  226. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +120 -0
  227. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  228. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +542 -0
  229. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  230. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +318 -0
  231. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +262 -0
  232. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  233. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  234. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  235. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  236. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  237. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  238. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  239. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  240. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  241. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +113 -0
  242. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  243. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +591 -0
  244. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  245. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  246. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  247. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  248. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  249. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  250. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  251. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  252. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  253. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  254. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +281 -0
  255. data/vendor/local/share/gtksourceview-3.0/language-specs/idl-exelis.lang +620 -0
  256. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  257. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  258. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  259. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  260. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  261. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +339 -0
  262. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  263. data/vendor/local/share/gtksourceview-3.0/language-specs/julia.lang +378 -0
  264. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  265. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  266. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  267. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +600 -0
  268. data/vendor/local/share/gtksourceview-3.0/language-specs/lex.lang +209 -0
  269. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  270. data/vendor/local/share/gtksourceview-3.0/language-specs/llvm.lang +315 -0
  271. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  272. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  273. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  274. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  275. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  276. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  277. data/vendor/local/share/gtksourceview-3.0/language-specs/mediawiki.lang +327 -0
  278. data/vendor/local/share/gtksourceview-3.0/language-specs/modelica.lang +262 -0
  279. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  280. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  281. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  282. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  283. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  284. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  285. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  286. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  287. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  288. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  289. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  290. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  291. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  292. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1045 -0
  293. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +363 -0
  294. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  295. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  296. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  297. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +101 -0
  298. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  299. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +472 -0
  300. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  301. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +212 -0
  302. data/vendor/local/share/gtksourceview-3.0/language-specs/rst.lang +142 -0
  303. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +750 -0
  304. data/vendor/local/share/gtksourceview-3.0/language-specs/scala.lang +384 -0
  305. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  306. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  307. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  308. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  309. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  310. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  311. data/vendor/local/share/gtksourceview-3.0/language-specs/sweave.lang +67 -0
  312. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  313. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  314. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  315. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  316. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  317. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  318. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +476 -0
  319. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  320. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  321. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  322. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  323. data/vendor/local/share/gtksourceview-3.0/language-specs/yaml.lang +214 -0
  324. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +121 -0
  325. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +148 -0
  326. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +171 -0
  327. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +129 -0
  328. data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +101 -0
  329. data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +101 -0
  330. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +142 -0
  331. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +130 -0
  332. data/vendor/local/share/license/gtksourceview/AUTHORS +13 -0
  333. data/vendor/local/share/license/gtksourceview/COPYING +504 -0
  334. metadata +389 -0
@@ -0,0 +1,228 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkSourceView 3 Reference Manual: GtkSourceGutterRendererText</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="ch01.html" title="API reference">
9
+ <link rel="prev" href="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">
10
+ <link rel="next" href="GtkSourceLanguage.html" title="GtkSourceLanguage">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#GtkSourceGutterRendererText.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#GtkSourceGutterRendererText.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
20
+ <a href="#GtkSourceGutterRendererText.properties" class="shortcut">Properties</a></span>
21
+ </td>
22
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
23
+ <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
24
+ <td><a accesskey="p" href="GtkSourceGutterRendererPixbuf.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25
+ <td><a accesskey="n" href="GtkSourceLanguage.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
26
+ </tr></table>
27
+ <div class="refentry">
28
+ <a name="GtkSourceGutterRendererText"></a><div class="titlepage"></div>
29
+ <div class="refnamediv"><table width="100%"><tr>
30
+ <td valign="top">
31
+ <h2><span class="refentrytitle"><a name="GtkSourceGutterRendererText.top_of_page"></a>GtkSourceGutterRendererText</span></h2>
32
+ <p>GtkSourceGutterRendererText — Renders text in the gutter</p>
33
+ </td>
34
+ <td class="gallery_image" valign="top" align="right"></td>
35
+ </tr></table></div>
36
+ <div class="refsect1">
37
+ <a name="GtkSourceGutterRendererText.functions"></a><h2>Functions</h2>
38
+ <div class="informaltable"><table width="100%" border="0">
39
+ <colgroup>
40
+ <col width="150px" class="functions_return">
41
+ <col class="functions_name">
42
+ </colgroup>
43
+ <tbody>
44
+ <tr>
45
+ <td class="function_type">
46
+ <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer"><span class="returnvalue">GtkSourceGutterRenderer</span></a> *
47
+ </td>
48
+ <td class="function_name">
49
+ <a class="link" href="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-new" title="gtk_source_gutter_renderer_text_new ()">gtk_source_gutter_renderer_text_new</a> <span class="c_punctuation">()</span>
50
+ </td>
51
+ </tr>
52
+ <tr>
53
+ <td class="function_type">
54
+ <span class="returnvalue">void</span>
55
+ </td>
56
+ <td class="function_name">
57
+ <a class="link" href="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-set-markup" title="gtk_source_gutter_renderer_text_set_markup ()">gtk_source_gutter_renderer_text_set_markup</a> <span class="c_punctuation">()</span>
58
+ </td>
59
+ </tr>
60
+ <tr>
61
+ <td class="function_type">
62
+ <span class="returnvalue">void</span>
63
+ </td>
64
+ <td class="function_name">
65
+ <a class="link" href="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-set-text" title="gtk_source_gutter_renderer_text_set_text ()">gtk_source_gutter_renderer_text_set_text</a> <span class="c_punctuation">()</span>
66
+ </td>
67
+ </tr>
68
+ <tr>
69
+ <td class="function_type">
70
+ <span class="returnvalue">void</span>
71
+ </td>
72
+ <td class="function_name">
73
+ <a class="link" href="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-measure" title="gtk_source_gutter_renderer_text_measure ()">gtk_source_gutter_renderer_text_measure</a> <span class="c_punctuation">()</span>
74
+ </td>
75
+ </tr>
76
+ <tr>
77
+ <td class="function_type">
78
+ <span class="returnvalue">void</span>
79
+ </td>
80
+ <td class="function_name">
81
+ <a class="link" href="GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-measure-markup" title="gtk_source_gutter_renderer_text_measure_markup ()">gtk_source_gutter_renderer_text_measure_markup</a> <span class="c_punctuation">()</span>
82
+ </td>
83
+ </tr>
84
+ </tbody>
85
+ </table></div>
86
+ </div>
87
+ <div class="refsect1">
88
+ <a name="GtkSourceGutterRendererText.properties"></a><h2>Properties</h2>
89
+ <div class="informaltable"><table border="0">
90
+ <colgroup>
91
+ <col width="150px" class="properties_type">
92
+ <col width="300px" class="properties_name">
93
+ <col width="200px" class="properties_flags">
94
+ </colgroup>
95
+ <tbody>
96
+ <tr>
97
+ <td class="property_type">
98
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
99
+ <td class="property_name"><a class="link" href="GtkSourceGutterRendererText.html#GtkSourceGutterRendererText--markup" title="The “markup” property">markup</a></td>
100
+ <td class="property_flags">Read / Write / Construct</td>
101
+ </tr>
102
+ <tr>
103
+ <td class="property_type">
104
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
105
+ <td class="property_name"><a class="link" href="GtkSourceGutterRendererText.html#GtkSourceGutterRendererText--text" title="The “text” property">text</a></td>
106
+ <td class="property_flags">Read / Write / Construct</td>
107
+ </tr>
108
+ </tbody>
109
+ </table></div>
110
+ </div>
111
+ <div class="refsect1">
112
+ <a name="GtkSourceGutterRendererText.other"></a><h2>Types and Values</h2>
113
+ <div class="informaltable"><table width="100%" border="0">
114
+ <colgroup>
115
+ <col width="150px" class="name">
116
+ <col class="description">
117
+ </colgroup>
118
+ <tbody><tr>
119
+ <td class="datatype_keyword"> </td>
120
+ <td class="function_name"><a class="link" href="GtkSourceGutterRendererText.html#GtkSourceGutterRendererText-struct" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a></td>
121
+ </tr></tbody>
122
+ </table></div>
123
+ </div>
124
+ <div class="refsect1">
125
+ <a name="GtkSourceGutterRendererText.object-hierarchy"></a><h2>Object Hierarchy</h2>
126
+ <pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
127
+ <span class="lineart">╰──</span> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
128
+ <span class="lineart">╰──</span> <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
129
+ <span class="lineart">╰──</span> GtkSourceGutterRendererText
130
+ </pre>
131
+ </div>
132
+ <div class="refsect1">
133
+ <a name="GtkSourceGutterRendererText.includes"></a><h2>Includes</h2>
134
+ <pre class="synopsis">#include &lt;gtksourceview/gtksource.h&gt;
135
+ </pre>
136
+ </div>
137
+ <div class="refsect1">
138
+ <a name="GtkSourceGutterRendererText.description"></a><h2>Description</h2>
139
+ <p>A <a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText"><span class="type">GtkSourceGutterRendererText</span></a> can be used to render text in a cell of
140
+ <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter"><span class="type">GtkSourceGutter</span></a>.</p>
141
+ </div>
142
+ <div class="refsect1">
143
+ <a name="GtkSourceGutterRendererText.functions_details"></a><h2>Functions</h2>
144
+ <div class="refsect2">
145
+ <a name="gtk-source-gutter-renderer-text-new"></a><h3>gtk_source_gutter_renderer_text_new ()</h3>
146
+ <pre class="programlisting"><a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer"><span class="returnvalue">GtkSourceGutterRenderer</span></a> *
147
+ gtk_source_gutter_renderer_text_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
148
+ <p>Create a new <a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText"><span class="type">GtkSourceGutterRendererText</span></a>.</p>
149
+ <div class="refsect3">
150
+ <a name="id-1.2.17.9.2.5"></a><h4>Returns</h4>
151
+ <p> A <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer"><span class="type">GtkSourceGutterRenderer</span></a>. </p>
152
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
153
+ </div>
154
+ </div>
155
+ <hr>
156
+ <div class="refsect2">
157
+ <a name="gtk-source-gutter-renderer-text-set-markup"></a><h3>gtk_source_gutter_renderer_text_set_markup ()</h3>
158
+ <pre class="programlisting"><span class="returnvalue">void</span>
159
+ gtk_source_gutter_renderer_text_set_markup
160
+ (<em class="parameter"><code><a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText"><span class="type">GtkSourceGutterRendererText</span></a> *renderer</code></em>,
161
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *markup</code></em>,
162
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> length</code></em>);</pre>
163
+ </div>
164
+ <hr>
165
+ <div class="refsect2">
166
+ <a name="gtk-source-gutter-renderer-text-set-text"></a><h3>gtk_source_gutter_renderer_text_set_text ()</h3>
167
+ <pre class="programlisting"><span class="returnvalue">void</span>
168
+ gtk_source_gutter_renderer_text_set_text
169
+ (<em class="parameter"><code><a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText"><span class="type">GtkSourceGutterRendererText</span></a> *renderer</code></em>,
170
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
171
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> length</code></em>);</pre>
172
+ </div>
173
+ <hr>
174
+ <div class="refsect2">
175
+ <a name="gtk-source-gutter-renderer-text-measure"></a><h3>gtk_source_gutter_renderer_text_measure ()</h3>
176
+ <pre class="programlisting"><span class="returnvalue">void</span>
177
+ gtk_source_gutter_renderer_text_measure
178
+ (<em class="parameter"><code><a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText"><span class="type">GtkSourceGutterRendererText</span></a> *renderer</code></em>,
179
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
180
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *width</code></em>,
181
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *height</code></em>);</pre>
182
+ </div>
183
+ <hr>
184
+ <div class="refsect2">
185
+ <a name="gtk-source-gutter-renderer-text-measure-markup"></a><h3>gtk_source_gutter_renderer_text_measure_markup ()</h3>
186
+ <pre class="programlisting"><span class="returnvalue">void</span>
187
+ gtk_source_gutter_renderer_text_measure_markup
188
+ (<em class="parameter"><code><a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText"><span class="type">GtkSourceGutterRendererText</span></a> *renderer</code></em>,
189
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *markup</code></em>,
190
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *width</code></em>,
191
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *height</code></em>);</pre>
192
+ </div>
193
+ </div>
194
+ <div class="refsect1">
195
+ <a name="GtkSourceGutterRendererText.other_details"></a><h2>Types and Values</h2>
196
+ <div class="refsect2">
197
+ <a name="GtkSourceGutterRendererText-struct"></a><h3>GtkSourceGutterRendererText</h3>
198
+ <pre class="programlisting">typedef struct _GtkSourceGutterRendererText GtkSourceGutterRendererText;</pre>
199
+ </div>
200
+ </div>
201
+ <div class="refsect1">
202
+ <a name="GtkSourceGutterRendererText.property-details"></a><h2>Property Details</h2>
203
+ <div class="refsect2">
204
+ <a name="GtkSourceGutterRendererText--markup"></a><h3>The <code class="literal">“markup”</code> property</h3>
205
+ <pre class="programlisting"> “markup” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
206
+ <p>The markup.</p>
207
+ <p>Flags: Read / Write / Construct</p>
208
+ <p>Default value: NULL</p>
209
+ </div>
210
+ <hr>
211
+ <div class="refsect2">
212
+ <a name="GtkSourceGutterRendererText--text"></a><h3>The <code class="literal">“text”</code> property</h3>
213
+ <pre class="programlisting"> “text” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
214
+ <p>The text.</p>
215
+ <p>Flags: Read / Write / Construct</p>
216
+ <p>Default value: NULL</p>
217
+ </div>
218
+ </div>
219
+ <div class="refsect1">
220
+ <a name="GtkSourceGutterRendererText.see-also"></a><h2>See Also</h2>
221
+ <p><a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer"><span class="type">GtkSourceGutterRenderer</span></a>, <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter"><span class="type">GtkSourceGutter</span></a></p>
222
+ </div>
223
+ </div>
224
+ <div class="footer">
225
+ <hr>
226
+ Generated by GTK-Doc V1.21.1</div>
227
+ </body>
228
+ </html>
@@ -0,0 +1,584 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkSourceView 3 Reference Manual: GtkSourceLanguage</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="ch01.html" title="API reference">
9
+ <link rel="prev" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">
10
+ <link rel="next" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#GtkSourceLanguage.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#GtkSourceLanguage.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
20
+ <a href="#GtkSourceLanguage.properties" class="shortcut">Properties</a></span>
21
+ </td>
22
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
23
+ <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
24
+ <td><a accesskey="p" href="GtkSourceGutterRendererText.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25
+ <td><a accesskey="n" href="GtkSourceLanguageManager.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
26
+ </tr></table>
27
+ <div class="refentry">
28
+ <a name="GtkSourceLanguage"></a><div class="titlepage"></div>
29
+ <div class="refnamediv"><table width="100%"><tr>
30
+ <td valign="top">
31
+ <h2><span class="refentrytitle"><a name="GtkSourceLanguage.top_of_page"></a>GtkSourceLanguage</span></h2>
32
+ <p>GtkSourceLanguage — Object representing a syntax highlighted language</p>
33
+ </td>
34
+ <td class="gallery_image" valign="top" align="right"></td>
35
+ </tr></table></div>
36
+ <div class="refsect1">
37
+ <a name="GtkSourceLanguage.functions"></a><h2>Functions</h2>
38
+ <div class="informaltable"><table width="100%" border="0">
39
+ <colgroup>
40
+ <col width="150px" class="functions_return">
41
+ <col class="functions_name">
42
+ </colgroup>
43
+ <tbody>
44
+ <tr>
45
+ <td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
46
+ </td>
47
+ <td class="function_name">
48
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-id" title="gtk_source_language_get_id ()">gtk_source_language_get_id</a> <span class="c_punctuation">()</span>
49
+ </td>
50
+ </tr>
51
+ <tr>
52
+ <td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
53
+ </td>
54
+ <td class="function_name">
55
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-name" title="gtk_source_language_get_name ()">gtk_source_language_get_name</a> <span class="c_punctuation">()</span>
56
+ </td>
57
+ </tr>
58
+ <tr>
59
+ <td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
60
+ </td>
61
+ <td class="function_name">
62
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-section" title="gtk_source_language_get_section ()">gtk_source_language_get_section</a> <span class="c_punctuation">()</span>
63
+ </td>
64
+ </tr>
65
+ <tr>
66
+ <td class="function_type">
67
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
68
+ </td>
69
+ <td class="function_name">
70
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-hidden" title="gtk_source_language_get_hidden ()">gtk_source_language_get_hidden</a> <span class="c_punctuation">()</span>
71
+ </td>
72
+ </tr>
73
+ <tr>
74
+ <td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
75
+ </td>
76
+ <td class="function_name">
77
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-metadata" title="gtk_source_language_get_metadata ()">gtk_source_language_get_metadata</a> <span class="c_punctuation">()</span>
78
+ </td>
79
+ </tr>
80
+ <tr>
81
+ <td class="function_type">
82
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> **
83
+ </td>
84
+ <td class="function_name">
85
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-mime-types" title="gtk_source_language_get_mime_types ()">gtk_source_language_get_mime_types</a> <span class="c_punctuation">()</span>
86
+ </td>
87
+ </tr>
88
+ <tr>
89
+ <td class="function_type">
90
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> **
91
+ </td>
92
+ <td class="function_name">
93
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-globs" title="gtk_source_language_get_globs ()">gtk_source_language_get_globs</a> <span class="c_punctuation">()</span>
94
+ </td>
95
+ </tr>
96
+ <tr>
97
+ <td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
98
+ </td>
99
+ <td class="function_name">
100
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-style-name" title="gtk_source_language_get_style_name ()">gtk_source_language_get_style_name</a> <span class="c_punctuation">()</span>
101
+ </td>
102
+ </tr>
103
+ <tr>
104
+ <td class="function_type">
105
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> **
106
+ </td>
107
+ <td class="function_name">
108
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-style-ids" title="gtk_source_language_get_style_ids ()">gtk_source_language_get_style_ids</a> <span class="c_punctuation">()</span>
109
+ </td>
110
+ </tr>
111
+ <tr>
112
+ <td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
113
+ </td>
114
+ <td class="function_name">
115
+ <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-style-fallback" title="gtk_source_language_get_style_fallback ()">gtk_source_language_get_style_fallback</a> <span class="c_punctuation">()</span>
116
+ </td>
117
+ </tr>
118
+ </tbody>
119
+ </table></div>
120
+ </div>
121
+ <div class="refsect1">
122
+ <a name="GtkSourceLanguage.properties"></a><h2>Properties</h2>
123
+ <div class="informaltable"><table border="0">
124
+ <colgroup>
125
+ <col width="150px" class="properties_type">
126
+ <col width="300px" class="properties_name">
127
+ <col width="200px" class="properties_flags">
128
+ </colgroup>
129
+ <tbody>
130
+ <tr>
131
+ <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
132
+ <td class="property_name"><a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage--hidden" title="The “hidden” property">hidden</a></td>
133
+ <td class="property_flags">Read</td>
134
+ </tr>
135
+ <tr>
136
+ <td class="property_type">
137
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
138
+ <td class="property_name"><a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage--id" title="The “id” property">id</a></td>
139
+ <td class="property_flags">Read</td>
140
+ </tr>
141
+ <tr>
142
+ <td class="property_type">
143
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
144
+ <td class="property_name"><a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage--name" title="The “name” property">name</a></td>
145
+ <td class="property_flags">Read</td>
146
+ </tr>
147
+ <tr>
148
+ <td class="property_type">
149
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
150
+ <td class="property_name"><a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage--section" title="The “section” property">section</a></td>
151
+ <td class="property_flags">Read</td>
152
+ </tr>
153
+ </tbody>
154
+ </table></div>
155
+ </div>
156
+ <div class="refsect1">
157
+ <a name="GtkSourceLanguage.other"></a><h2>Types and Values</h2>
158
+ <div class="informaltable"><table width="100%" border="0">
159
+ <colgroup>
160
+ <col width="150px" class="name">
161
+ <col class="description">
162
+ </colgroup>
163
+ <tbody><tr>
164
+ <td class="datatype_keyword"> </td>
165
+ <td class="function_name"><a class="link" href="GtkSourceLanguage.html#GtkSourceLanguage-struct" title="GtkSourceLanguage">GtkSourceLanguage</a></td>
166
+ </tr></tbody>
167
+ </table></div>
168
+ </div>
169
+ <div class="refsect1">
170
+ <a name="GtkSourceLanguage.object-hierarchy"></a><h2>Object Hierarchy</h2>
171
+ <pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
172
+ <span class="lineart">╰──</span> GtkSourceLanguage
173
+ </pre>
174
+ </div>
175
+ <div class="refsect1">
176
+ <a name="GtkSourceLanguage.includes"></a><h2>Includes</h2>
177
+ <pre class="synopsis">#include &lt;gtksourceview/gtksource.h&gt;
178
+ </pre>
179
+ </div>
180
+ <div class="refsect1">
181
+ <a name="GtkSourceLanguage.description"></a><h2>Description</h2>
182
+ <p><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> encapsulates syntax and highlighting styles for a
183
+ particular language. Use <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager"><span class="type">GtkSourceLanguageManager</span></a> to obtain a
184
+ <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> instance, and <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-set-language" title="gtk_source_buffer_set_language ()"><code class="function">gtk_source_buffer_set_language()</code></a> to apply it
185
+ to a <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a>.</p>
186
+ </div>
187
+ <div class="refsect1">
188
+ <a name="GtkSourceLanguage.functions_details"></a><h2>Functions</h2>
189
+ <div class="refsect2">
190
+ <a name="gtk-source-language-get-id"></a><h3>gtk_source_language_get_id ()</h3>
191
+ <pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
192
+ gtk_source_language_get_id (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>);</pre>
193
+ <p>Returns the ID of the language. The ID is not locale-dependent.
194
+ The returned string is owned by <em class="parameter"><code>language</code></em>
195
+ and should not be freed
196
+ or modified.</p>
197
+ <div class="refsect3">
198
+ <a name="id-1.2.18.9.2.5"></a><h4>Parameters</h4>
199
+ <div class="informaltable"><table width="100%" border="0">
200
+ <colgroup>
201
+ <col width="150px" class="parameters_name">
202
+ <col class="parameters_description">
203
+ <col width="200px" class="parameters_annotations">
204
+ </colgroup>
205
+ <tbody><tr>
206
+ <td class="parameter_name"><p>language</p></td>
207
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a>.</p></td>
208
+ <td class="parameter_annotations"> </td>
209
+ </tr></tbody>
210
+ </table></div>
211
+ </div>
212
+ <div class="refsect3">
213
+ <a name="id-1.2.18.9.2.6"></a><h4>Returns</h4>
214
+ <p> the ID of <em class="parameter"><code>language</code></em>
215
+ .</p>
216
+ <p></p>
217
+ </div>
218
+ </div>
219
+ <hr>
220
+ <div class="refsect2">
221
+ <a name="gtk-source-language-get-name"></a><h3>gtk_source_language_get_name ()</h3>
222
+ <pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
223
+ gtk_source_language_get_name (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>);</pre>
224
+ <p>Returns the localized name of the language.
225
+ The returned string is owned by <em class="parameter"><code>language</code></em>
226
+ and should not be freed
227
+ or modified.</p>
228
+ <div class="refsect3">
229
+ <a name="id-1.2.18.9.3.5"></a><h4>Parameters</h4>
230
+ <div class="informaltable"><table width="100%" border="0">
231
+ <colgroup>
232
+ <col width="150px" class="parameters_name">
233
+ <col class="parameters_description">
234
+ <col width="200px" class="parameters_annotations">
235
+ </colgroup>
236
+ <tbody><tr>
237
+ <td class="parameter_name"><p>language</p></td>
238
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a>.</p></td>
239
+ <td class="parameter_annotations"> </td>
240
+ </tr></tbody>
241
+ </table></div>
242
+ </div>
243
+ <div class="refsect3">
244
+ <a name="id-1.2.18.9.3.6"></a><h4>Returns</h4>
245
+ <p> the name of <em class="parameter"><code>language</code></em>
246
+ .</p>
247
+ <p></p>
248
+ </div>
249
+ </div>
250
+ <hr>
251
+ <div class="refsect2">
252
+ <a name="gtk-source-language-get-section"></a><h3>gtk_source_language_get_section ()</h3>
253
+ <pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
254
+ gtk_source_language_get_section (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>);</pre>
255
+ <p>Returns the localized section of the language.
256
+ Each language belong to a section (ex. HTML belogs to the
257
+ Markup section).
258
+ The returned string is owned by <em class="parameter"><code>language</code></em>
259
+ and should not be freed
260
+ or modified.</p>
261
+ <div class="refsect3">
262
+ <a name="id-1.2.18.9.4.5"></a><h4>Parameters</h4>
263
+ <div class="informaltable"><table width="100%" border="0">
264
+ <colgroup>
265
+ <col width="150px" class="parameters_name">
266
+ <col class="parameters_description">
267
+ <col width="200px" class="parameters_annotations">
268
+ </colgroup>
269
+ <tbody><tr>
270
+ <td class="parameter_name"><p>language</p></td>
271
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a>.</p></td>
272
+ <td class="parameter_annotations"> </td>
273
+ </tr></tbody>
274
+ </table></div>
275
+ </div>
276
+ <div class="refsect3">
277
+ <a name="id-1.2.18.9.4.6"></a><h4>Returns</h4>
278
+ <p> the section of <em class="parameter"><code>language</code></em>
279
+ .</p>
280
+ <p></p>
281
+ </div>
282
+ </div>
283
+ <hr>
284
+ <div class="refsect2">
285
+ <a name="gtk-source-language-get-hidden"></a><h3>gtk_source_language_get_hidden ()</h3>
286
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
287
+ gtk_source_language_get_hidden (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>);</pre>
288
+ <p>Returns whether the language should be hidden from the user.</p>
289
+ <div class="refsect3">
290
+ <a name="id-1.2.18.9.5.5"></a><h4>Parameters</h4>
291
+ <div class="informaltable"><table width="100%" border="0">
292
+ <colgroup>
293
+ <col width="150px" class="parameters_name">
294
+ <col class="parameters_description">
295
+ <col width="200px" class="parameters_annotations">
296
+ </colgroup>
297
+ <tbody><tr>
298
+ <td class="parameter_name"><p>language</p></td>
299
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a></p></td>
300
+ <td class="parameter_annotations"> </td>
301
+ </tr></tbody>
302
+ </table></div>
303
+ </div>
304
+ <div class="refsect3">
305
+ <a name="id-1.2.18.9.5.6"></a><h4>Returns</h4>
306
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the language should be hidden, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
307
+ <p></p>
308
+ </div>
309
+ </div>
310
+ <hr>
311
+ <div class="refsect2">
312
+ <a name="gtk-source-language-get-metadata"></a><h3>gtk_source_language_get_metadata ()</h3>
313
+ <pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
314
+ gtk_source_language_get_metadata (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>,
315
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
316
+ <div class="refsect3">
317
+ <a name="id-1.2.18.9.6.4"></a><h4>Parameters</h4>
318
+ <div class="informaltable"><table width="100%" border="0">
319
+ <colgroup>
320
+ <col width="150px" class="parameters_name">
321
+ <col class="parameters_description">
322
+ <col width="200px" class="parameters_annotations">
323
+ </colgroup>
324
+ <tbody>
325
+ <tr>
326
+ <td class="parameter_name"><p>language</p></td>
327
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a>.</p></td>
328
+ <td class="parameter_annotations"> </td>
329
+ </tr>
330
+ <tr>
331
+ <td class="parameter_name"><p>name</p></td>
332
+ <td class="parameter_description"><p>metadata property name.</p></td>
333
+ <td class="parameter_annotations"> </td>
334
+ </tr>
335
+ </tbody>
336
+ </table></div>
337
+ </div>
338
+ <div class="refsect3">
339
+ <a name="id-1.2.18.9.6.5"></a><h4>Returns</h4>
340
+ <p> value of property <em class="parameter"><code>name</code></em>
341
+ stored in the metadata of <em class="parameter"><code>language</code></em>
342
+ or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if language doesn't contain that metadata property.
343
+ The returned string is owned by <em class="parameter"><code>language</code></em>
344
+ and should not be freed
345
+ or modified.</p>
346
+ <p></p>
347
+ </div>
348
+ </div>
349
+ <hr>
350
+ <div class="refsect2">
351
+ <a name="gtk-source-language-get-mime-types"></a><h3>gtk_source_language_get_mime_types ()</h3>
352
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> **
353
+ gtk_source_language_get_mime_types (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>);</pre>
354
+ <p>Returns the mime types associated to this language. This is just
355
+ an utility wrapper around <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-metadata" title="gtk_source_language_get_metadata ()"><code class="function">gtk_source_language_get_metadata()</code></a> to
356
+ retrieve the "mimetypes" metadata property and split it into an
357
+ array.</p>
358
+ <div class="refsect3">
359
+ <a name="id-1.2.18.9.7.5"></a><h4>Parameters</h4>
360
+ <div class="informaltable"><table width="100%" border="0">
361
+ <colgroup>
362
+ <col width="150px" class="parameters_name">
363
+ <col class="parameters_description">
364
+ <col width="200px" class="parameters_annotations">
365
+ </colgroup>
366
+ <tbody><tr>
367
+ <td class="parameter_name"><p>language</p></td>
368
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a>.</p></td>
369
+ <td class="parameter_annotations"> </td>
370
+ </tr></tbody>
371
+ </table></div>
372
+ </div>
373
+ <div class="refsect3">
374
+ <a name="id-1.2.18.9.7.6"></a><h4>Returns</h4>
375
+ <p> a newly-allocated
376
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> terminated array containing the mime types or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no
377
+ mime types are found.
378
+ The returned array must be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>. </p>
379
+ <p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
380
+ </div>
381
+ </div>
382
+ <hr>
383
+ <div class="refsect2">
384
+ <a name="gtk-source-language-get-globs"></a><h3>gtk_source_language_get_globs ()</h3>
385
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> **
386
+ gtk_source_language_get_globs (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>);</pre>
387
+ <p>Returns the globs associated to this language. This is just
388
+ an utility wrapper around <a class="link" href="GtkSourceLanguage.html#gtk-source-language-get-metadata" title="gtk_source_language_get_metadata ()"><code class="function">gtk_source_language_get_metadata()</code></a> to
389
+ retrieve the "globs" metadata property and split it into an array.</p>
390
+ <div class="refsect3">
391
+ <a name="id-1.2.18.9.8.5"></a><h4>Parameters</h4>
392
+ <div class="informaltable"><table width="100%" border="0">
393
+ <colgroup>
394
+ <col width="150px" class="parameters_name">
395
+ <col class="parameters_description">
396
+ <col width="200px" class="parameters_annotations">
397
+ </colgroup>
398
+ <tbody><tr>
399
+ <td class="parameter_name"><p>language</p></td>
400
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a>.</p></td>
401
+ <td class="parameter_annotations"> </td>
402
+ </tr></tbody>
403
+ </table></div>
404
+ </div>
405
+ <div class="refsect3">
406
+ <a name="id-1.2.18.9.8.6"></a><h4>Returns</h4>
407
+ <p> a newly-allocated
408
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> terminated array containing the globs or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no globs are found.
409
+ The returned array must be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>. </p>
410
+ <p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
411
+ </div>
412
+ </div>
413
+ <hr>
414
+ <div class="refsect2">
415
+ <a name="gtk-source-language-get-style-name"></a><h3>gtk_source_language_get_style_name ()</h3>
416
+ <pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
417
+ gtk_source_language_get_style_name (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>,
418
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *style_id</code></em>);</pre>
419
+ <p>Returns the name of the style with ID <em class="parameter"><code>style_id</code></em>
420
+ defined by this <em class="parameter"><code>language</code></em>
421
+ .</p>
422
+ <div class="refsect3">
423
+ <a name="id-1.2.18.9.9.5"></a><h4>Parameters</h4>
424
+ <div class="informaltable"><table width="100%" border="0">
425
+ <colgroup>
426
+ <col width="150px" class="parameters_name">
427
+ <col class="parameters_description">
428
+ <col width="200px" class="parameters_annotations">
429
+ </colgroup>
430
+ <tbody>
431
+ <tr>
432
+ <td class="parameter_name"><p>language</p></td>
433
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a>.</p></td>
434
+ <td class="parameter_annotations"> </td>
435
+ </tr>
436
+ <tr>
437
+ <td class="parameter_name"><p>style_id</p></td>
438
+ <td class="parameter_description"><p>a style ID.</p></td>
439
+ <td class="parameter_annotations"> </td>
440
+ </tr>
441
+ </tbody>
442
+ </table></div>
443
+ </div>
444
+ <div class="refsect3">
445
+ <a name="id-1.2.18.9.9.6"></a><h4>Returns</h4>
446
+ <p> the name of the style with ID <em class="parameter"><code>style_id</code></em>
447
+ defined by this <em class="parameter"><code>language</code></em>
448
+ or
449
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the style has no name or there is no style with ID <em class="parameter"><code>style_id</code></em>
450
+ defined
451
+ by this <em class="parameter"><code>language</code></em>
452
+ . The returned string is owned by the <em class="parameter"><code>language</code></em>
453
+ and must
454
+ not be modified.</p>
455
+ <p></p>
456
+ </div>
457
+ </div>
458
+ <hr>
459
+ <div class="refsect2">
460
+ <a name="gtk-source-language-get-style-ids"></a><h3>gtk_source_language_get_style_ids ()</h3>
461
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> **
462
+ gtk_source_language_get_style_ids (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>);</pre>
463
+ <p>Returns the ids of the styles defined by this <em class="parameter"><code>language</code></em>
464
+ .</p>
465
+ <div class="refsect3">
466
+ <a name="id-1.2.18.9.10.5"></a><h4>Parameters</h4>
467
+ <div class="informaltable"><table width="100%" border="0">
468
+ <colgroup>
469
+ <col width="150px" class="parameters_name">
470
+ <col class="parameters_description">
471
+ <col width="200px" class="parameters_annotations">
472
+ </colgroup>
473
+ <tbody><tr>
474
+ <td class="parameter_name"><p>language</p></td>
475
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a>.</p></td>
476
+ <td class="parameter_annotations"> </td>
477
+ </tr></tbody>
478
+ </table></div>
479
+ </div>
480
+ <div class="refsect3">
481
+ <a name="id-1.2.18.9.10.6"></a><h4>Returns</h4>
482
+ <p> a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> terminated
483
+ array containing ids of the styles defined by this <em class="parameter"><code>language</code></em>
484
+ or
485
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no style is defined.
486
+ The returned array must be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>. </p>
487
+ <p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
488
+ </div>
489
+ </div>
490
+ <hr>
491
+ <div class="refsect2">
492
+ <a name="gtk-source-language-get-style-fallback"></a><h3>gtk_source_language_get_style_fallback ()</h3>
493
+ <pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
494
+ gtk_source_language_get_style_fallback
495
+ (<em class="parameter"><code><a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> *language</code></em>,
496
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *style_id</code></em>);</pre>
497
+ <p>Returns the ID of the style to use if the specified <em class="parameter"><code>style_id</code></em>
498
+
499
+ is not present in the current style scheme.</p>
500
+ <div class="refsect3">
501
+ <a name="id-1.2.18.9.11.5"></a><h4>Parameters</h4>
502
+ <div class="informaltable"><table width="100%" border="0">
503
+ <colgroup>
504
+ <col width="150px" class="parameters_name">
505
+ <col class="parameters_description">
506
+ <col width="200px" class="parameters_annotations">
507
+ </colgroup>
508
+ <tbody>
509
+ <tr>
510
+ <td class="parameter_name"><p>language</p></td>
511
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a>.</p></td>
512
+ <td class="parameter_annotations"> </td>
513
+ </tr>
514
+ <tr>
515
+ <td class="parameter_name"><p>style_id</p></td>
516
+ <td class="parameter_description"><p>a style ID.</p></td>
517
+ <td class="parameter_annotations"> </td>
518
+ </tr>
519
+ </tbody>
520
+ </table></div>
521
+ </div>
522
+ <div class="refsect3">
523
+ <a name="id-1.2.18.9.11.6"></a><h4>Returns</h4>
524
+ <p> the ID of the style to use if the specified <em class="parameter"><code>style_id</code></em>
525
+ is not present in the current style scheme or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the style has
526
+ no fallback defined.
527
+ The returned string is owned by the <em class="parameter"><code>language</code></em>
528
+ and must not be modified.</p>
529
+ <p></p>
530
+ </div>
531
+ <p class="since">Since 3.4</p>
532
+ </div>
533
+ </div>
534
+ <div class="refsect1">
535
+ <a name="GtkSourceLanguage.other_details"></a><h2>Types and Values</h2>
536
+ <div class="refsect2">
537
+ <a name="GtkSourceLanguage-struct"></a><h3>GtkSourceLanguage</h3>
538
+ <pre class="programlisting">typedef struct _GtkSourceLanguage GtkSourceLanguage;</pre>
539
+ </div>
540
+ </div>
541
+ <div class="refsect1">
542
+ <a name="GtkSourceLanguage.property-details"></a><h2>Property Details</h2>
543
+ <div class="refsect2">
544
+ <a name="GtkSourceLanguage--hidden"></a><h3>The <code class="literal">“hidden”</code> property</h3>
545
+ <pre class="programlisting"> “hidden” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
546
+ <p>Whether the language should be hidden from the user.</p>
547
+ <p>Flags: Read</p>
548
+ <p>Default value: FALSE</p>
549
+ </div>
550
+ <hr>
551
+ <div class="refsect2">
552
+ <a name="GtkSourceLanguage--id"></a><h3>The <code class="literal">“id”</code> property</h3>
553
+ <pre class="programlisting"> “id” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
554
+ <p>Language id.</p>
555
+ <p>Flags: Read</p>
556
+ <p>Default value: NULL</p>
557
+ </div>
558
+ <hr>
559
+ <div class="refsect2">
560
+ <a name="GtkSourceLanguage--name"></a><h3>The <code class="literal">“name”</code> property</h3>
561
+ <pre class="programlisting"> “name” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
562
+ <p>Language name.</p>
563
+ <p>Flags: Read</p>
564
+ <p>Default value: NULL</p>
565
+ </div>
566
+ <hr>
567
+ <div class="refsect2">
568
+ <a name="GtkSourceLanguage--section"></a><h3>The <code class="literal">“section”</code> property</h3>
569
+ <pre class="programlisting"> “section” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
570
+ <p>Language section.</p>
571
+ <p>Flags: Read</p>
572
+ <p>Default value: NULL</p>
573
+ </div>
574
+ </div>
575
+ <div class="refsect1">
576
+ <a name="GtkSourceLanguage.see-also"></a><h2>See Also</h2>
577
+ <p><a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager"><span class="type">GtkSourceLanguageManager</span></a></p>
578
+ </div>
579
+ </div>
580
+ <div class="footer">
581
+ <hr>
582
+ Generated by GTK-Doc V1.21.1</div>
583
+ </body>
584
+ </html>