gtksourceview3 2.2.4-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (334) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +59 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +67 -0
  5. data/ext/gtksourceview3/gtksourceview3.def +2 -0
  6. data/ext/gtksourceview3/rbgtksource.c +53 -0
  7. data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
  8. data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
  9. data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
  10. data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
  11. data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +40 -0
  12. data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
  13. data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
  14. data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
  15. data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
  16. data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
  17. data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
  18. data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
  19. data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
  20. data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
  21. data/ext/gtksourceview3/rbgtksourceview.c +94 -0
  22. data/ext/gtksourceview3/rbgtksourceview3conversions.h +50 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +53 -0
  24. data/extconf.rb +49 -0
  25. data/lib/2.0/gtksourceview3.so +0 -0
  26. data/lib/2.1/gtksourceview3.so +0 -0
  27. data/lib/2.2/gtksourceview3.so +0 -0
  28. data/lib/gtksourceview3.rb +20 -0
  29. data/lib/gtksourceview3/deprecated.rb +47 -0
  30. data/sample/sourcelanguagemanager.rb +21 -0
  31. data/sample/test.rb +32 -0
  32. data/test/run-test.rb +44 -0
  33. data/test/test_mark_attributes.rb +26 -0
  34. data/test/test_source_gutter_renderer.rb +33 -0
  35. data/test/test_source_language_manager.rb +46 -0
  36. data/test/test_source_view.rb +57 -0
  37. data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +65 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +54 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +213 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +142 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +95 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +78 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +70 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +97 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +137 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +54 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +115 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +122 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +147 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +229 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +87 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +85 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +84 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +100 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +175 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +133 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +85 -0
  62. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +45 -0
  63. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +109 -0
  64. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +86 -0
  65. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +101 -0
  66. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +75 -0
  67. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +34 -0
  68. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +88 -0
  69. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +213 -0
  70. data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
  71. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  72. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  73. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  74. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  75. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  76. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  77. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  78. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  79. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  80. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  81. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  82. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  83. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  84. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  85. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  86. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  87. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  88. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  89. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  90. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  91. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  92. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  93. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  94. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  95. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  96. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  97. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  98. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  99. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  100. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  101. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  102. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  103. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  104. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  105. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  106. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  107. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  108. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  109. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  110. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  111. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  112. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  113. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  114. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  154. data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +11360 -0
  155. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +2143 -0
  156. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +1129 -0
  157. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +397 -0
  158. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +348 -0
  159. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +367 -0
  160. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +572 -0
  161. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +750 -0
  162. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +345 -0
  163. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +366 -0
  164. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +563 -0
  165. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +769 -0
  166. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +962 -0
  167. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +490 -0
  168. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +1700 -0
  169. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +468 -0
  170. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +228 -0
  171. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +584 -0
  172. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +476 -0
  173. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +310 -0
  174. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +897 -0
  175. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +2149 -0
  176. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +1116 -0
  177. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +606 -0
  178. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +358 -0
  179. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +398 -0
  180. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +463 -0
  181. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +462 -0
  182. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1990 -0
  183. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +81 -0
  184. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +43 -0
  185. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +195 -0
  186. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +39 -0
  187. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +299 -0
  188. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +35 -0
  189. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +95 -0
  190. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +2187 -0
  191. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +119 -0
  192. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +47 -0
  193. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +154 -0
  194. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +601 -0
  195. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  196. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +146 -0
  197. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +882 -0
  198. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +873 -0
  199. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +654 -0
  200. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left-insensitive.png +0 -0
  201. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  202. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +71 -0
  203. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right-insensitive.png +0 -0
  204. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  205. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +283 -0
  206. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +476 -0
  207. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up-insensitive.png +0 -0
  208. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  209. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +2199 -0
  210. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  211. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  212. data/vendor/local/share/gtksourceview-3.0/language-specs/ansforth94.lang +729 -0
  213. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  214. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +330 -0
  215. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  216. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  217. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  218. data/vendor/local/share/gtksourceview-3.0/language-specs/bluespec.lang +188 -0
  219. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  220. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  221. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  222. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +93 -0
  223. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  224. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  225. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +647 -0
  226. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +120 -0
  227. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  228. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +542 -0
  229. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  230. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +318 -0
  231. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +262 -0
  232. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  233. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  234. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  235. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  236. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  237. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  238. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  239. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  240. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  241. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +113 -0
  242. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  243. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +591 -0
  244. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  245. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  246. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  247. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  248. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  249. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  250. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  251. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  252. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  253. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  254. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +281 -0
  255. data/vendor/local/share/gtksourceview-3.0/language-specs/idl-exelis.lang +620 -0
  256. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  257. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  258. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  259. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  260. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  261. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +339 -0
  262. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  263. data/vendor/local/share/gtksourceview-3.0/language-specs/julia.lang +378 -0
  264. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  265. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  266. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  267. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +600 -0
  268. data/vendor/local/share/gtksourceview-3.0/language-specs/lex.lang +209 -0
  269. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  270. data/vendor/local/share/gtksourceview-3.0/language-specs/llvm.lang +315 -0
  271. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  272. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  273. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  274. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  275. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  276. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  277. data/vendor/local/share/gtksourceview-3.0/language-specs/mediawiki.lang +327 -0
  278. data/vendor/local/share/gtksourceview-3.0/language-specs/modelica.lang +262 -0
  279. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  280. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  281. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  282. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  283. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  284. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  285. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  286. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  287. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  288. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  289. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  290. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  291. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  292. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1045 -0
  293. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +363 -0
  294. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  295. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  296. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  297. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +101 -0
  298. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  299. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +472 -0
  300. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  301. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +212 -0
  302. data/vendor/local/share/gtksourceview-3.0/language-specs/rst.lang +142 -0
  303. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +750 -0
  304. data/vendor/local/share/gtksourceview-3.0/language-specs/scala.lang +384 -0
  305. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  306. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  307. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  308. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  309. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  310. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  311. data/vendor/local/share/gtksourceview-3.0/language-specs/sweave.lang +67 -0
  312. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  313. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  314. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  315. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  316. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  317. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  318. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +476 -0
  319. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  320. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  321. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  322. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  323. data/vendor/local/share/gtksourceview-3.0/language-specs/yaml.lang +214 -0
  324. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +121 -0
  325. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +148 -0
  326. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +171 -0
  327. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +129 -0
  328. data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +101 -0
  329. data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +101 -0
  330. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +142 -0
  331. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +130 -0
  332. data/vendor/local/share/license/gtksourceview/AUTHORS +13 -0
  333. data/vendor/local/share/license/gtksourceview/COPYING +504 -0
  334. metadata +389 -0
@@ -0,0 +1,310 @@
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: GtkSourceMark</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="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">
10
+ <link rel="next" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">
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="#GtkSourceMark.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#GtkSourceMark.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
20
+ <a href="#GtkSourceMark.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="GtkSourceLanguageManager.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25
+ <td><a accesskey="n" href="GtkSourceMarkAttributes.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="GtkSourceMark"></a><div class="titlepage"></div>
29
+ <div class="refnamediv"><table width="100%"><tr>
30
+ <td valign="top">
31
+ <h2><span class="refentrytitle"><a name="GtkSourceMark.top_of_page"></a>GtkSourceMark</span></h2>
32
+ <p>GtkSourceMark — Mark object for GtkSourceBuffer</p>
33
+ </td>
34
+ <td class="gallery_image" valign="top" align="right"></td>
35
+ </tr></table></div>
36
+ <div class="refsect1">
37
+ <a name="GtkSourceMark.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="GtkSourceMark.html" title="GtkSourceMark"><span class="returnvalue">GtkSourceMark</span></a> *
47
+ </td>
48
+ <td class="function_name">
49
+ <a class="link" href="GtkSourceMark.html#gtk-source-mark-new" title="gtk_source_mark_new ()">gtk_source_mark_new</a> <span class="c_punctuation">()</span>
50
+ </td>
51
+ </tr>
52
+ <tr>
53
+ <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> *
54
+ </td>
55
+ <td class="function_name">
56
+ <a class="link" href="GtkSourceMark.html#gtk-source-mark-get-category" title="gtk_source_mark_get_category ()">gtk_source_mark_get_category</a> <span class="c_punctuation">()</span>
57
+ </td>
58
+ </tr>
59
+ <tr>
60
+ <td class="function_type">
61
+ <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="returnvalue">GtkSourceMark</span></a> *
62
+ </td>
63
+ <td class="function_name">
64
+ <a class="link" href="GtkSourceMark.html#gtk-source-mark-next" title="gtk_source_mark_next ()">gtk_source_mark_next</a> <span class="c_punctuation">()</span>
65
+ </td>
66
+ </tr>
67
+ <tr>
68
+ <td class="function_type">
69
+ <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="returnvalue">GtkSourceMark</span></a> *
70
+ </td>
71
+ <td class="function_name">
72
+ <a class="link" href="GtkSourceMark.html#gtk-source-mark-prev" title="gtk_source_mark_prev ()">gtk_source_mark_prev</a> <span class="c_punctuation">()</span>
73
+ </td>
74
+ </tr>
75
+ </tbody>
76
+ </table></div>
77
+ </div>
78
+ <div class="refsect1">
79
+ <a name="GtkSourceMark.properties"></a><h2>Properties</h2>
80
+ <div class="informaltable"><table border="0">
81
+ <colgroup>
82
+ <col width="150px" class="properties_type">
83
+ <col width="300px" class="properties_name">
84
+ <col width="200px" class="properties_flags">
85
+ </colgroup>
86
+ <tbody><tr>
87
+ <td class="property_type">
88
+ <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>
89
+ <td class="property_name"><a class="link" href="GtkSourceMark.html#GtkSourceMark--category" title="The “category” property">category</a></td>
90
+ <td class="property_flags">Read / Write / Construct Only</td>
91
+ </tr></tbody>
92
+ </table></div>
93
+ </div>
94
+ <div class="refsect1">
95
+ <a name="GtkSourceMark.other"></a><h2>Types and Values</h2>
96
+ <div class="informaltable"><table width="100%" border="0">
97
+ <colgroup>
98
+ <col width="150px" class="name">
99
+ <col class="description">
100
+ </colgroup>
101
+ <tbody><tr>
102
+ <td class="datatype_keyword"> </td>
103
+ <td class="function_name"><a class="link" href="GtkSourceMark.html#GtkSourceMark-struct" title="GtkSourceMark">GtkSourceMark</a></td>
104
+ </tr></tbody>
105
+ </table></div>
106
+ </div>
107
+ <div class="refsect1">
108
+ <a name="GtkSourceMark.object-hierarchy"></a><h2>Object Hierarchy</h2>
109
+ <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>
110
+ <span class="lineart">╰──</span> <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkTextMark.html">GtkTextMark</a>
111
+ <span class="lineart">╰──</span> GtkSourceMark
112
+ </pre>
113
+ </div>
114
+ <div class="refsect1">
115
+ <a name="GtkSourceMark.includes"></a><h2>Includes</h2>
116
+ <pre class="synopsis">#include &lt;gtksourceview/gtksource.h&gt;
117
+ </pre>
118
+ </div>
119
+ <div class="refsect1">
120
+ <a name="GtkSourceMark.description"></a><h2>Description</h2>
121
+ <p>A <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> marks a position in the text where you want to display
122
+ additional info. It is based on <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkTextMark.html"><span class="type">GtkTextMark</span></a> and thus is still valid after
123
+ the text has changed though its position may change.</p>
124
+ <p><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>s are organised in categories which you have to set
125
+ when you create the mark. Each category can have a priority, a pixbuf and
126
+ other associated attributes. See <a class="link" href="GtkSourceView.html#gtk-source-view-set-mark-attributes" title="gtk_source_view_set_mark_attributes ()"><code class="function">gtk_source_view_set_mark_attributes()</code></a>.
127
+ The pixbuf will be displayed in the margin at the line where the mark
128
+ residents if the <a class="link" href="GtkSourceView.html#GtkSourceView--show-line-marks" title="The “show-line-marks” property"><span class="type">“show-line-marks”</span></a> property is set to <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
129
+ there are multiple marks in the same line, the pixbufs will be drawn on top
130
+ of each other. The mark with the highest priority will be drawn on top.</p>
131
+ </div>
132
+ <div class="refsect1">
133
+ <a name="GtkSourceMark.functions_details"></a><h2>Functions</h2>
134
+ <div class="refsect2">
135
+ <a name="gtk-source-mark-new"></a><h3>gtk_source_mark_new ()</h3>
136
+ <pre class="programlisting"><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="returnvalue">GtkSourceMark</span></a> *
137
+ gtk_source_mark_new (<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>,
138
+ <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> *category</code></em>);</pre>
139
+ <p>Creates a text mark. Add it to a buffer using <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkTextBuffer.html#gtk-text-buffer-add-mark"><code class="function">gtk_text_buffer_add_mark()</code></a>.
140
+ If name is NULL, the mark is anonymous; otherwise, the mark can be retrieved
141
+ by name using <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkTextBuffer.html#gtk-text-buffer-get-mark"><code class="function">gtk_text_buffer_get_mark()</code></a>.
142
+ Normally marks are created using the utility function
143
+ <a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-create-source-mark" title="gtk_source_buffer_create_source_mark ()"><code class="function">gtk_source_buffer_create_source_mark()</code></a>.</p>
144
+ <div class="refsect3">
145
+ <a name="id-1.2.20.9.2.5"></a><h4>Parameters</h4>
146
+ <div class="informaltable"><table width="100%" border="0">
147
+ <colgroup>
148
+ <col width="150px" class="parameters_name">
149
+ <col class="parameters_description">
150
+ <col width="200px" class="parameters_annotations">
151
+ </colgroup>
152
+ <tbody>
153
+ <tr>
154
+ <td class="parameter_name"><p>name</p></td>
155
+ <td class="parameter_description"><p>Name of the <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>, can be NULL when not using a name</p></td>
156
+ <td class="parameter_annotations"> </td>
157
+ </tr>
158
+ <tr>
159
+ <td class="parameter_name"><p>category</p></td>
160
+ <td class="parameter_description"><p>is used to classify marks according to common characteristics
161
+ (e.g. all the marks representing a bookmark could belong to the "bookmark"
162
+ category, or all the marks representing a compilation error could belong to
163
+ "error" category).</p></td>
164
+ <td class="parameter_annotations"> </td>
165
+ </tr>
166
+ </tbody>
167
+ </table></div>
168
+ </div>
169
+ <div class="refsect3">
170
+ <a name="id-1.2.20.9.2.6"></a><h4>Returns</h4>
171
+ <p> a new <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> that can be added using <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkTextBuffer.html#gtk-text-buffer-add-mark"><code class="function">gtk_text_buffer_add_mark()</code></a>.</p>
172
+ <p></p>
173
+ </div>
174
+ <p class="since">Since 2.2</p>
175
+ </div>
176
+ <hr>
177
+ <div class="refsect2">
178
+ <a name="gtk-source-mark-get-category"></a><h3>gtk_source_mark_get_category ()</h3>
179
+ <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> *
180
+ gtk_source_mark_get_category (<em class="parameter"><code><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> *mark</code></em>);</pre>
181
+ <p>Returns the mark category.</p>
182
+ <div class="refsect3">
183
+ <a name="id-1.2.20.9.3.5"></a><h4>Parameters</h4>
184
+ <div class="informaltable"><table width="100%" border="0">
185
+ <colgroup>
186
+ <col width="150px" class="parameters_name">
187
+ <col class="parameters_description">
188
+ <col width="200px" class="parameters_annotations">
189
+ </colgroup>
190
+ <tbody><tr>
191
+ <td class="parameter_name"><p>mark</p></td>
192
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>.</p></td>
193
+ <td class="parameter_annotations"> </td>
194
+ </tr></tbody>
195
+ </table></div>
196
+ </div>
197
+ <div class="refsect3">
198
+ <a name="id-1.2.20.9.3.6"></a><h4>Returns</h4>
199
+ <p> the category of the <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>.</p>
200
+ <p></p>
201
+ </div>
202
+ <p class="since">Since 2.2</p>
203
+ </div>
204
+ <hr>
205
+ <div class="refsect2">
206
+ <a name="gtk-source-mark-next"></a><h3>gtk_source_mark_next ()</h3>
207
+ <pre class="programlisting"><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="returnvalue">GtkSourceMark</span></a> *
208
+ gtk_source_mark_next (<em class="parameter"><code><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> *mark</code></em>,
209
+ <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> *category</code></em>);</pre>
210
+ <p>Returns the next <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> in the buffer 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 mark
211
+ was not added to a buffer. If there is no next mark, <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> will be returned.</p>
212
+ <p>If <em class="parameter"><code>category</code></em>
213
+ is <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>, looks for marks of any category.</p>
214
+ <div class="refsect3">
215
+ <a name="id-1.2.20.9.4.6"></a><h4>Parameters</h4>
216
+ <div class="informaltable"><table width="100%" border="0">
217
+ <colgroup>
218
+ <col width="150px" class="parameters_name">
219
+ <col class="parameters_description">
220
+ <col width="200px" class="parameters_annotations">
221
+ </colgroup>
222
+ <tbody>
223
+ <tr>
224
+ <td class="parameter_name"><p>mark</p></td>
225
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>.</p></td>
226
+ <td class="parameter_annotations"> </td>
227
+ </tr>
228
+ <tr>
229
+ <td class="parameter_name"><p>category</p></td>
230
+ <td class="parameter_description"><p> a string specifying the mark category, 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>. </p></td>
231
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
232
+ </tr>
233
+ </tbody>
234
+ </table></div>
235
+ </div>
236
+ <div class="refsect3">
237
+ <a name="id-1.2.20.9.4.7"></a><h4>Returns</h4>
238
+ <p> the next <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>, 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>. </p>
239
+ <p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
240
+ </div>
241
+ <p class="since">Since 2.2</p>
242
+ </div>
243
+ <hr>
244
+ <div class="refsect2">
245
+ <a name="gtk-source-mark-prev"></a><h3>gtk_source_mark_prev ()</h3>
246
+ <pre class="programlisting"><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="returnvalue">GtkSourceMark</span></a> *
247
+ gtk_source_mark_prev (<em class="parameter"><code><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> *mark</code></em>,
248
+ <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> *category</code></em>);</pre>
249
+ <p>Returns the previous <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> in the buffer 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 mark
250
+ was not added to a buffer. If there is no previous mark, <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> is returned.</p>
251
+ <p>If <em class="parameter"><code>category</code></em>
252
+ is <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>, looks for marks of any category</p>
253
+ <div class="refsect3">
254
+ <a name="id-1.2.20.9.5.6"></a><h4>Parameters</h4>
255
+ <div class="informaltable"><table width="100%" border="0">
256
+ <colgroup>
257
+ <col width="150px" class="parameters_name">
258
+ <col class="parameters_description">
259
+ <col width="200px" class="parameters_annotations">
260
+ </colgroup>
261
+ <tbody>
262
+ <tr>
263
+ <td class="parameter_name"><p>mark</p></td>
264
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>.</p></td>
265
+ <td class="parameter_annotations"> </td>
266
+ </tr>
267
+ <tr>
268
+ <td class="parameter_name"><p>category</p></td>
269
+ <td class="parameter_description"><p>a string specifying the mark category, 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>.</p></td>
270
+ <td class="parameter_annotations"> </td>
271
+ </tr>
272
+ </tbody>
273
+ </table></div>
274
+ </div>
275
+ <div class="refsect3">
276
+ <a name="id-1.2.20.9.5.7"></a><h4>Returns</h4>
277
+ <p> the previous <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>, 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>. </p>
278
+ <p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
279
+ </div>
280
+ <p class="since">Since 2.2</p>
281
+ </div>
282
+ </div>
283
+ <div class="refsect1">
284
+ <a name="GtkSourceMark.other_details"></a><h2>Types and Values</h2>
285
+ <div class="refsect2">
286
+ <a name="GtkSourceMark-struct"></a><h3>GtkSourceMark</h3>
287
+ <pre class="programlisting">typedef struct _GtkSourceMark GtkSourceMark;</pre>
288
+ </div>
289
+ </div>
290
+ <div class="refsect1">
291
+ <a name="GtkSourceMark.property-details"></a><h2>Property Details</h2>
292
+ <div class="refsect2">
293
+ <a name="GtkSourceMark--category"></a><h3>The <code class="literal">“category”</code> property</h3>
294
+ <pre class="programlisting"> “category” <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>
295
+ <p>The category of the <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>, classifies the mark and controls
296
+ which pixbuf is used and with which priority it is drawn.</p>
297
+ <p>Flags: Read / Write / Construct Only</p>
298
+ <p>Default value: NULL</p>
299
+ </div>
300
+ </div>
301
+ <div class="refsect1">
302
+ <a name="GtkSourceMark.see-also"></a><h2>See Also</h2>
303
+ <p><a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a></p>
304
+ </div>
305
+ </div>
306
+ <div class="footer">
307
+ <hr>
308
+ Generated by GTK-Doc V1.21.1</div>
309
+ </body>
310
+ </html>
@@ -0,0 +1,897 @@
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: GtkSourceMarkAttributes</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="GtkSourceMark.html" title="GtkSourceMark">
10
+ <link rel="next" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">
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="#GtkSourceMarkAttributes.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#GtkSourceMarkAttributes.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
20
+ <a href="#GtkSourceMarkAttributes.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
21
+ <a href="#GtkSourceMarkAttributes.signals" class="shortcut">Signals</a></span>
22
+ </td>
23
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
24
+ <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
25
+ <td><a accesskey="p" href="GtkSourceMark.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
26
+ <td><a accesskey="n" href="GtkSourcePrintCompositor.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
27
+ </tr></table>
28
+ <div class="refentry">
29
+ <a name="GtkSourceMarkAttributes"></a><div class="titlepage"></div>
30
+ <div class="refnamediv"><table width="100%"><tr>
31
+ <td valign="top">
32
+ <h2><span class="refentrytitle"><a name="GtkSourceMarkAttributes.top_of_page"></a>GtkSourceMarkAttributes</span></h2>
33
+ <p>GtkSourceMarkAttributes — The source mark attributes object</p>
34
+ </td>
35
+ <td class="gallery_image" valign="top" align="right"></td>
36
+ </tr></table></div>
37
+ <div class="refsect1">
38
+ <a name="GtkSourceMarkAttributes.functions"></a><h2>Functions</h2>
39
+ <div class="informaltable"><table width="100%" border="0">
40
+ <colgroup>
41
+ <col width="150px" class="functions_return">
42
+ <col class="functions_name">
43
+ </colgroup>
44
+ <tbody>
45
+ <tr>
46
+ <td class="function_type">
47
+ <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="returnvalue">GtkSourceMarkAttributes</span></a> *
48
+ </td>
49
+ <td class="function_name">
50
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-new" title="gtk_source_mark_attributes_new ()">gtk_source_mark_attributes_new</a> <span class="c_punctuation">()</span>
51
+ </td>
52
+ </tr>
53
+ <tr>
54
+ <td class="function_type">
55
+ <span class="returnvalue">void</span>
56
+ </td>
57
+ <td class="function_name">
58
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-background" title="gtk_source_mark_attributes_set_background ()">gtk_source_mark_attributes_set_background</a> <span class="c_punctuation">()</span>
59
+ </td>
60
+ </tr>
61
+ <tr>
62
+ <td class="function_type">
63
+ <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>
64
+ </td>
65
+ <td class="function_name">
66
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-background" title="gtk_source_mark_attributes_get_background ()">gtk_source_mark_attributes_get_background</a> <span class="c_punctuation">()</span>
67
+ </td>
68
+ </tr>
69
+ <tr>
70
+ <td class="function_type">
71
+ <span class="returnvalue">void</span>
72
+ </td>
73
+ <td class="function_name">
74
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-stock-id" title="gtk_source_mark_attributes_set_stock_id ()">gtk_source_mark_attributes_set_stock_id</a> <span class="c_punctuation">()</span>
75
+ </td>
76
+ </tr>
77
+ <tr>
78
+ <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> *
79
+ </td>
80
+ <td class="function_name">
81
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-stock-id" title="gtk_source_mark_attributes_get_stock_id ()">gtk_source_mark_attributes_get_stock_id</a> <span class="c_punctuation">()</span>
82
+ </td>
83
+ </tr>
84
+ <tr>
85
+ <td class="function_type">
86
+ <span class="returnvalue">void</span>
87
+ </td>
88
+ <td class="function_name">
89
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-icon-name" title="gtk_source_mark_attributes_set_icon_name ()">gtk_source_mark_attributes_set_icon_name</a> <span class="c_punctuation">()</span>
90
+ </td>
91
+ </tr>
92
+ <tr>
93
+ <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> *
94
+ </td>
95
+ <td class="function_name">
96
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-icon-name" title="gtk_source_mark_attributes_get_icon_name ()">gtk_source_mark_attributes_get_icon_name</a> <span class="c_punctuation">()</span>
97
+ </td>
98
+ </tr>
99
+ <tr>
100
+ <td class="function_type">
101
+ <span class="returnvalue">void</span>
102
+ </td>
103
+ <td class="function_name">
104
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-gicon" title="gtk_source_mark_attributes_set_gicon ()">gtk_source_mark_attributes_set_gicon</a> <span class="c_punctuation">()</span>
105
+ </td>
106
+ </tr>
107
+ <tr>
108
+ <td class="function_type">
109
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="returnvalue">GIcon</span></a> *
110
+ </td>
111
+ <td class="function_name">
112
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-gicon" title="gtk_source_mark_attributes_get_gicon ()">gtk_source_mark_attributes_get_gicon</a> <span class="c_punctuation">()</span>
113
+ </td>
114
+ </tr>
115
+ <tr>
116
+ <td class="function_type">
117
+ <span class="returnvalue">void</span>
118
+ </td>
119
+ <td class="function_name">
120
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-pixbuf" title="gtk_source_mark_attributes_set_pixbuf ()">gtk_source_mark_attributes_set_pixbuf</a> <span class="c_punctuation">()</span>
121
+ </td>
122
+ </tr>
123
+ <tr>
124
+ <td class="function_type">const <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
125
+ </td>
126
+ <td class="function_name">
127
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-pixbuf" title="gtk_source_mark_attributes_get_pixbuf ()">gtk_source_mark_attributes_get_pixbuf</a> <span class="c_punctuation">()</span>
128
+ </td>
129
+ </tr>
130
+ <tr>
131
+ <td class="function_type">const <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
132
+ </td>
133
+ <td class="function_name">
134
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-render-icon" title="gtk_source_mark_attributes_render_icon ()">gtk_source_mark_attributes_render_icon</a> <span class="c_punctuation">()</span>
135
+ </td>
136
+ </tr>
137
+ <tr>
138
+ <td class="function_type">
139
+ <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> *
140
+ </td>
141
+ <td class="function_name">
142
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-tooltip-text" title="gtk_source_mark_attributes_get_tooltip_text ()">gtk_source_mark_attributes_get_tooltip_text</a> <span class="c_punctuation">()</span>
143
+ </td>
144
+ </tr>
145
+ <tr>
146
+ <td class="function_type">
147
+ <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> *
148
+ </td>
149
+ <td class="function_name">
150
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-tooltip-markup" title="gtk_source_mark_attributes_get_tooltip_markup ()">gtk_source_mark_attributes_get_tooltip_markup</a> <span class="c_punctuation">()</span>
151
+ </td>
152
+ </tr>
153
+ </tbody>
154
+ </table></div>
155
+ </div>
156
+ <div class="refsect1">
157
+ <a name="GtkSourceMarkAttributes.properties"></a><h2>Properties</h2>
158
+ <div class="informaltable"><table border="0">
159
+ <colgroup>
160
+ <col width="150px" class="properties_type">
161
+ <col width="300px" class="properties_name">
162
+ <col width="200px" class="properties_flags">
163
+ </colgroup>
164
+ <tbody>
165
+ <tr>
166
+ <td class="property_type">
167
+ <span class="type">GdkRGBA</span> *</td>
168
+ <td class="property_name"><a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--background" title="The “background” property">background</a></td>
169
+ <td class="property_flags">Read / Write</td>
170
+ </tr>
171
+ <tr>
172
+ <td class="property_type">
173
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="type">GIcon</span></a> *</td>
174
+ <td class="property_name"><a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--gicon" title="The “gicon” property">gicon</a></td>
175
+ <td class="property_flags">Read / Write</td>
176
+ </tr>
177
+ <tr>
178
+ <td class="property_type">
179
+ <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>
180
+ <td class="property_name"><a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--icon-name" title="The “icon-name” property">icon-name</a></td>
181
+ <td class="property_flags">Read / Write</td>
182
+ </tr>
183
+ <tr>
184
+ <td class="property_type">
185
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *</td>
186
+ <td class="property_name"><a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--pixbuf" title="The “pixbuf” property">pixbuf</a></td>
187
+ <td class="property_flags">Read / Write</td>
188
+ </tr>
189
+ <tr>
190
+ <td class="property_type">
191
+ <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>
192
+ <td class="property_name"><a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--stock-id" title="The “stock-id” property">stock-id</a></td>
193
+ <td class="property_flags">Read / Write</td>
194
+ </tr>
195
+ </tbody>
196
+ </table></div>
197
+ </div>
198
+ <div class="refsect1">
199
+ <a name="GtkSourceMarkAttributes.signals"></a><h2>Signals</h2>
200
+ <div class="informaltable"><table border="0">
201
+ <colgroup>
202
+ <col width="150px" class="signals_return">
203
+ <col width="300px" class="signals_name">
204
+ <col width="200px" class="signals_flags">
205
+ </colgroup>
206
+ <tbody>
207
+ <tr>
208
+ <td class="signal_type">
209
+ <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>*</td>
210
+ <td class="signal_name"><a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-markup" title="The “query-tooltip-markup” signal">query-tooltip-markup</a></td>
211
+ <td class="signal_flags">Run Last</td>
212
+ </tr>
213
+ <tr>
214
+ <td class="signal_type">
215
+ <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>*</td>
216
+ <td class="signal_name"><a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-text" title="The “query-tooltip-text” signal">query-tooltip-text</a></td>
217
+ <td class="signal_flags">Run Last</td>
218
+ </tr>
219
+ </tbody>
220
+ </table></div>
221
+ </div>
222
+ <div class="refsect1">
223
+ <a name="GtkSourceMarkAttributes.other"></a><h2>Types and Values</h2>
224
+ <div class="informaltable"><table width="100%" border="0">
225
+ <colgroup>
226
+ <col width="150px" class="name">
227
+ <col class="description">
228
+ </colgroup>
229
+ <tbody><tr>
230
+ <td class="datatype_keyword"> </td>
231
+ <td class="function_name"><a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-struct" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a></td>
232
+ </tr></tbody>
233
+ </table></div>
234
+ </div>
235
+ <div class="refsect1">
236
+ <a name="GtkSourceMarkAttributes.object-hierarchy"></a><h2>Object Hierarchy</h2>
237
+ <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>
238
+ <span class="lineart">╰──</span> GtkSourceMarkAttributes
239
+ </pre>
240
+ </div>
241
+ <div class="refsect1">
242
+ <a name="GtkSourceMarkAttributes.includes"></a><h2>Includes</h2>
243
+ <pre class="synopsis">#include &lt;gtksourceview/gtksource.h&gt;
244
+ </pre>
245
+ </div>
246
+ <div class="refsect1">
247
+ <a name="GtkSourceMarkAttributes.description"></a><h2>Description</h2>
248
+ <p><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> is an object specifying attributes used by
249
+ a <a class="link" href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> to visually show lines marked with <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>s
250
+ of a specific category. It allows you to define a background color of a line,
251
+ an icon shown in gutter and tooltips.</p>
252
+ <p>The background color is used as a background of a line where a mark is placed
253
+ and it can be set with <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-background" title="gtk_source_mark_attributes_set_background ()"><code class="function">gtk_source_mark_attributes_set_background()</code></a>. To check
254
+ if any custom background color was defined and what color it is, use
255
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-background" title="gtk_source_mark_attributes_get_background ()"><code class="function">gtk_source_mark_attributes_get_background()</code></a>.</p>
256
+ <p>An icon is a graphic element which is shown in the gutter of a view. An
257
+ example use is showing a red filled circle in a debugger to show that a
258
+ breakpoint was set in certain line. To get an icon that will be placed in
259
+ a gutter, first a base for it must be specified and then
260
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-render-icon" title="gtk_source_mark_attributes_render_icon ()"><code class="function">gtk_source_mark_attributes_render_icon()</code></a> must be called.
261
+ There are several ways to specify a base for an icon:</p>
262
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
263
+ <li class="listitem"><p>
264
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-icon-name" title="gtk_source_mark_attributes_set_icon_name ()"><code class="function">gtk_source_mark_attributes_set_icon_name()</code></a>
265
+ </p></li>
266
+ <li class="listitem"><p>
267
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-stock-id" title="gtk_source_mark_attributes_set_stock_id ()"><code class="function">gtk_source_mark_attributes_set_stock_id()</code></a>
268
+ </p></li>
269
+ <li class="listitem"><p>
270
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-gicon" title="gtk_source_mark_attributes_set_gicon ()"><code class="function">gtk_source_mark_attributes_set_gicon()</code></a>
271
+ </p></li>
272
+ <li class="listitem"><p>
273
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-pixbuf" title="gtk_source_mark_attributes_set_pixbuf ()"><code class="function">gtk_source_mark_attributes_set_pixbuf()</code></a>
274
+ </p></li>
275
+ </ul></div>
276
+ <p>Using any of the above functions overrides the one used earlier. But note
277
+ that a getter counterpart of earlier used function can still return some
278
+ value, but it is just not used when rendering the proper icon.</p>
279
+ <p>To provide meaningful tooltips for a given mark of a category, you should
280
+ connect to <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-text" title="The “query-tooltip-text” signal"><span class="type">“query-tooltip-text”</span></a> or
281
+ <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-markup" title="The “query-tooltip-markup” signal"><span class="type">“query-tooltip-markup”</span></a> where the latter
282
+ takes precedence.</p>
283
+ </div>
284
+ <div class="refsect1">
285
+ <a name="GtkSourceMarkAttributes.functions_details"></a><h2>Functions</h2>
286
+ <div class="refsect2">
287
+ <a name="gtk-source-mark-attributes-new"></a><h3>gtk_source_mark_attributes_new ()</h3>
288
+ <pre class="programlisting"><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="returnvalue">GtkSourceMarkAttributes</span></a> *
289
+ gtk_source_mark_attributes_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
290
+ <p>Creates a new source mark attributes.</p>
291
+ <div class="refsect3">
292
+ <a name="id-1.2.21.10.2.5"></a><h4>Returns</h4>
293
+ <p> a new source mark attributes. </p>
294
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
295
+ </div>
296
+ </div>
297
+ <hr>
298
+ <div class="refsect2">
299
+ <a name="gtk-source-mark-attributes-set-background"></a><h3>gtk_source_mark_attributes_set_background ()</h3>
300
+ <pre class="programlisting"><span class="returnvalue">void</span>
301
+ gtk_source_mark_attributes_set_background
302
+ (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
303
+ <em class="parameter"><code>const <span class="type">GdkRGBA</span> *background</code></em>);</pre>
304
+ <p>Sets background color to the one given in <em class="parameter"><code>background</code></em>
305
+ .</p>
306
+ <div class="refsect3">
307
+ <a name="id-1.2.21.10.3.5"></a><h4>Parameters</h4>
308
+ <div class="informaltable"><table width="100%" border="0">
309
+ <colgroup>
310
+ <col width="150px" class="parameters_name">
311
+ <col class="parameters_description">
312
+ <col width="200px" class="parameters_annotations">
313
+ </colgroup>
314
+ <tbody>
315
+ <tr>
316
+ <td class="parameter_name"><p>attributes</p></td>
317
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
318
+ <td class="parameter_annotations"> </td>
319
+ </tr>
320
+ <tr>
321
+ <td class="parameter_name"><p>background</p></td>
322
+ <td class="parameter_description"><p>a <span class="type">GdkRGBA</span>.</p></td>
323
+ <td class="parameter_annotations"> </td>
324
+ </tr>
325
+ </tbody>
326
+ </table></div>
327
+ </div>
328
+ </div>
329
+ <hr>
330
+ <div class="refsect2">
331
+ <a name="gtk-source-mark-attributes-get-background"></a><h3>gtk_source_mark_attributes_get_background ()</h3>
332
+ <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>
333
+ gtk_source_mark_attributes_get_background
334
+ (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
335
+ <em class="parameter"><code><span class="type">GdkRGBA</span> *background</code></em>);</pre>
336
+ <p>Stores background color in <em class="parameter"><code>background</code></em>
337
+ .</p>
338
+ <div class="refsect3">
339
+ <a name="id-1.2.21.10.4.5"></a><h4>Parameters</h4>
340
+ <div class="informaltable"><table width="100%" border="0">
341
+ <colgroup>
342
+ <col width="150px" class="parameters_name">
343
+ <col class="parameters_description">
344
+ <col width="200px" class="parameters_annotations">
345
+ </colgroup>
346
+ <tbody>
347
+ <tr>
348
+ <td class="parameter_name"><p>attributes</p></td>
349
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
350
+ <td class="parameter_annotations"> </td>
351
+ </tr>
352
+ <tr>
353
+ <td class="parameter_name"><p>background</p></td>
354
+ <td class="parameter_description"><p> a <span class="type">GdkRGBA</span>. </p></td>
355
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>]</span></td>
356
+ </tr>
357
+ </tbody>
358
+ </table></div>
359
+ </div>
360
+ <div class="refsect3">
361
+ <a name="id-1.2.21.10.4.6"></a><h4>Returns</h4>
362
+ <p> whether background color for <em class="parameter"><code>attributes</code></em>
363
+ was set.</p>
364
+ <p></p>
365
+ </div>
366
+ </div>
367
+ <hr>
368
+ <div class="refsect2">
369
+ <a name="gtk-source-mark-attributes-set-stock-id"></a><h3>gtk_source_mark_attributes_set_stock_id ()</h3>
370
+ <pre class="programlisting"><span class="returnvalue">void</span>
371
+ gtk_source_mark_attributes_set_stock_id
372
+ (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
373
+ <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> *stock_id</code></em>);</pre>
374
+ <div class="warning">
375
+ <p><code class="literal">gtk_source_mark_attributes_set_stock_id</code> has been deprecated since version 3.10 and should not be used in newly-written code.</p>
376
+ <p>Don't use this function.</p>
377
+ </div>
378
+ <p>Sets stock id to be used as a base for rendered icon.</p>
379
+ <div class="refsect3">
380
+ <a name="id-1.2.21.10.5.6"></a><h4>Parameters</h4>
381
+ <div class="informaltable"><table width="100%" border="0">
382
+ <colgroup>
383
+ <col width="150px" class="parameters_name">
384
+ <col class="parameters_description">
385
+ <col width="200px" class="parameters_annotations">
386
+ </colgroup>
387
+ <tbody>
388
+ <tr>
389
+ <td class="parameter_name"><p>attributes</p></td>
390
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
391
+ <td class="parameter_annotations"> </td>
392
+ </tr>
393
+ <tr>
394
+ <td class="parameter_name"><p>stock_id</p></td>
395
+ <td class="parameter_description"><p>a stock id.</p></td>
396
+ <td class="parameter_annotations"> </td>
397
+ </tr>
398
+ </tbody>
399
+ </table></div>
400
+ </div>
401
+ </div>
402
+ <hr>
403
+ <div class="refsect2">
404
+ <a name="gtk-source-mark-attributes-get-stock-id"></a><h3>gtk_source_mark_attributes_get_stock_id ()</h3>
405
+ <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> *
406
+ gtk_source_mark_attributes_get_stock_id
407
+ (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>);</pre>
408
+ <div class="warning">
409
+ <p><code class="literal">gtk_source_mark_attributes_get_stock_id</code> has been deprecated since version 3.10 and should not be used in newly-written code.</p>
410
+ <p>Don't use this function.</p>
411
+ </div>
412
+ <p>Gets a stock id of an icon used by this attributes. Note that the stock id can
413
+ be <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 it wasn't set earlier.</p>
414
+ <div class="refsect3">
415
+ <a name="id-1.2.21.10.6.6"></a><h4>Parameters</h4>
416
+ <div class="informaltable"><table width="100%" border="0">
417
+ <colgroup>
418
+ <col width="150px" class="parameters_name">
419
+ <col class="parameters_description">
420
+ <col width="200px" class="parameters_annotations">
421
+ </colgroup>
422
+ <tbody><tr>
423
+ <td class="parameter_name"><p>attributes</p></td>
424
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
425
+ <td class="parameter_annotations"> </td>
426
+ </tr></tbody>
427
+ </table></div>
428
+ </div>
429
+ <div class="refsect3">
430
+ <a name="id-1.2.21.10.6.7"></a><h4>Returns</h4>
431
+ <p> Stock id. Returned string is owned by <em class="parameter"><code>attributes</code></em>
432
+ and
433
+ shouldn't be freed. </p>
434
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
435
+ </div>
436
+ </div>
437
+ <hr>
438
+ <div class="refsect2">
439
+ <a name="gtk-source-mark-attributes-set-icon-name"></a><h3>gtk_source_mark_attributes_set_icon_name ()</h3>
440
+ <pre class="programlisting"><span class="returnvalue">void</span>
441
+ gtk_source_mark_attributes_set_icon_name
442
+ (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
443
+ <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> *icon_name</code></em>);</pre>
444
+ <p>Sets a name of an icon to be used as a base for rendered icon.</p>
445
+ <div class="refsect3">
446
+ <a name="id-1.2.21.10.7.5"></a><h4>Parameters</h4>
447
+ <div class="informaltable"><table width="100%" border="0">
448
+ <colgroup>
449
+ <col width="150px" class="parameters_name">
450
+ <col class="parameters_description">
451
+ <col width="200px" class="parameters_annotations">
452
+ </colgroup>
453
+ <tbody>
454
+ <tr>
455
+ <td class="parameter_name"><p>attributes</p></td>
456
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
457
+ <td class="parameter_annotations"> </td>
458
+ </tr>
459
+ <tr>
460
+ <td class="parameter_name"><p>icon_name</p></td>
461
+ <td class="parameter_description"><p>name of an icon to be used.</p></td>
462
+ <td class="parameter_annotations"> </td>
463
+ </tr>
464
+ </tbody>
465
+ </table></div>
466
+ </div>
467
+ </div>
468
+ <hr>
469
+ <div class="refsect2">
470
+ <a name="gtk-source-mark-attributes-get-icon-name"></a><h3>gtk_source_mark_attributes_get_icon_name ()</h3>
471
+ <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> *
472
+ gtk_source_mark_attributes_get_icon_name
473
+ (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>);</pre>
474
+ <p>Gets a name of an icon to be used as a base for rendered icon. Note that the
475
+ icon name can be <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 it wasn't set earlier.</p>
476
+ <div class="refsect3">
477
+ <a name="id-1.2.21.10.8.5"></a><h4>Parameters</h4>
478
+ <div class="informaltable"><table width="100%" border="0">
479
+ <colgroup>
480
+ <col width="150px" class="parameters_name">
481
+ <col class="parameters_description">
482
+ <col width="200px" class="parameters_annotations">
483
+ </colgroup>
484
+ <tbody><tr>
485
+ <td class="parameter_name"><p>attributes</p></td>
486
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
487
+ <td class="parameter_annotations"> </td>
488
+ </tr></tbody>
489
+ </table></div>
490
+ </div>
491
+ <div class="refsect3">
492
+ <a name="id-1.2.21.10.8.6"></a><h4>Returns</h4>
493
+ <p> An icon name. The string belongs to <em class="parameter"><code>attributes</code></em>
494
+ and
495
+ should not be freed. </p>
496
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
497
+ </div>
498
+ </div>
499
+ <hr>
500
+ <div class="refsect2">
501
+ <a name="gtk-source-mark-attributes-set-gicon"></a><h3>gtk_source_mark_attributes_set_gicon ()</h3>
502
+ <pre class="programlisting"><span class="returnvalue">void</span>
503
+ gtk_source_mark_attributes_set_gicon (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
504
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="type">GIcon</span></a> *gicon</code></em>);</pre>
505
+ <p>Sets an icon to be used as a base for rendered icon.</p>
506
+ <div class="refsect3">
507
+ <a name="id-1.2.21.10.9.5"></a><h4>Parameters</h4>
508
+ <div class="informaltable"><table width="100%" border="0">
509
+ <colgroup>
510
+ <col width="150px" class="parameters_name">
511
+ <col class="parameters_description">
512
+ <col width="200px" class="parameters_annotations">
513
+ </colgroup>
514
+ <tbody>
515
+ <tr>
516
+ <td class="parameter_name"><p>attributes</p></td>
517
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
518
+ <td class="parameter_annotations"> </td>
519
+ </tr>
520
+ <tr>
521
+ <td class="parameter_name"><p>gicon</p></td>
522
+ <td class="parameter_description"><p>a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="type">GIcon</span></a> to be used.</p></td>
523
+ <td class="parameter_annotations"> </td>
524
+ </tr>
525
+ </tbody>
526
+ </table></div>
527
+ </div>
528
+ </div>
529
+ <hr>
530
+ <div class="refsect2">
531
+ <a name="gtk-source-mark-attributes-get-gicon"></a><h3>gtk_source_mark_attributes_get_gicon ()</h3>
532
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="returnvalue">GIcon</span></a> *
533
+ gtk_source_mark_attributes_get_gicon (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>);</pre>
534
+ <p>Gets a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="type">GIcon</span></a> to be used as a base for rendered icon. Note that the icon can
535
+ be <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 it wasn't set earlier.</p>
536
+ <div class="refsect3">
537
+ <a name="id-1.2.21.10.10.5"></a><h4>Parameters</h4>
538
+ <div class="informaltable"><table width="100%" border="0">
539
+ <colgroup>
540
+ <col width="150px" class="parameters_name">
541
+ <col class="parameters_description">
542
+ <col width="200px" class="parameters_annotations">
543
+ </colgroup>
544
+ <tbody><tr>
545
+ <td class="parameter_name"><p>attributes</p></td>
546
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
547
+ <td class="parameter_annotations"> </td>
548
+ </tr></tbody>
549
+ </table></div>
550
+ </div>
551
+ <div class="refsect3">
552
+ <a name="id-1.2.21.10.10.6"></a><h4>Returns</h4>
553
+ <p> An icon. The icon belongs to <em class="parameter"><code>attributes</code></em>
554
+ and should
555
+ not be unreffed. </p>
556
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
557
+ </div>
558
+ </div>
559
+ <hr>
560
+ <div class="refsect2">
561
+ <a name="gtk-source-mark-attributes-set-pixbuf"></a><h3>gtk_source_mark_attributes_set_pixbuf ()</h3>
562
+ <pre class="programlisting"><span class="returnvalue">void</span>
563
+ gtk_source_mark_attributes_set_pixbuf (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
564
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
565
+ <p>Sets a pixbuf to be used as a base for rendered icon.</p>
566
+ <div class="refsect3">
567
+ <a name="id-1.2.21.10.11.5"></a><h4>Parameters</h4>
568
+ <div class="informaltable"><table width="100%" border="0">
569
+ <colgroup>
570
+ <col width="150px" class="parameters_name">
571
+ <col class="parameters_description">
572
+ <col width="200px" class="parameters_annotations">
573
+ </colgroup>
574
+ <tbody>
575
+ <tr>
576
+ <td class="parameter_name"><p>attributes</p></td>
577
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
578
+ <td class="parameter_annotations"> </td>
579
+ </tr>
580
+ <tr>
581
+ <td class="parameter_name"><p>pixbuf</p></td>
582
+ <td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> to be used.</p></td>
583
+ <td class="parameter_annotations"> </td>
584
+ </tr>
585
+ </tbody>
586
+ </table></div>
587
+ </div>
588
+ </div>
589
+ <hr>
590
+ <div class="refsect2">
591
+ <a name="gtk-source-mark-attributes-get-pixbuf"></a><h3>gtk_source_mark_attributes_get_pixbuf ()</h3>
592
+ <pre class="programlisting">const <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
593
+ gtk_source_mark_attributes_get_pixbuf (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>);</pre>
594
+ <p>Gets a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> to be used as a base for rendered icon. Note that the
595
+ pixbuf can be <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 it wasn't set earlier.</p>
596
+ <div class="refsect3">
597
+ <a name="id-1.2.21.10.12.5"></a><h4>Parameters</h4>
598
+ <div class="informaltable"><table width="100%" border="0">
599
+ <colgroup>
600
+ <col width="150px" class="parameters_name">
601
+ <col class="parameters_description">
602
+ <col width="200px" class="parameters_annotations">
603
+ </colgroup>
604
+ <tbody><tr>
605
+ <td class="parameter_name"><p>attributes</p></td>
606
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
607
+ <td class="parameter_annotations"> </td>
608
+ </tr></tbody>
609
+ </table></div>
610
+ </div>
611
+ <div class="refsect3">
612
+ <a name="id-1.2.21.10.12.6"></a><h4>Returns</h4>
613
+ <p> A pixbuf. The pixbuf belongs to <em class="parameter"><code>attributes</code></em>
614
+ and
615
+ should not be unreffed. </p>
616
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
617
+ </div>
618
+ </div>
619
+ <hr>
620
+ <div class="refsect2">
621
+ <a name="gtk-source-mark-attributes-render-icon"></a><h3>gtk_source_mark_attributes_render_icon ()</h3>
622
+ <pre class="programlisting">const <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
623
+ gtk_source_mark_attributes_render_icon
624
+ (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
625
+ <em class="parameter"><code><a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>,
626
+ <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> size</code></em>);</pre>
627
+ <p>Renders an icon of given size. The base of the icon is set by the last call
628
+ to one of: <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-pixbuf" title="gtk_source_mark_attributes_set_pixbuf ()"><code class="function">gtk_source_mark_attributes_set_pixbuf()</code></a>,
629
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-gicon" title="gtk_source_mark_attributes_set_gicon ()"><code class="function">gtk_source_mark_attributes_set_gicon()</code></a>,
630
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-icon-name" title="gtk_source_mark_attributes_set_icon_name ()"><code class="function">gtk_source_mark_attributes_set_icon_name()</code></a> or
631
+ <a class="link" href="GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-stock-id" title="gtk_source_mark_attributes_set_stock_id ()"><code class="function">gtk_source_mark_attributes_set_stock_id()</code></a>. <em class="parameter"><code>size</code></em>
632
+ cannot be lower than 1.</p>
633
+ <div class="refsect3">
634
+ <a name="id-1.2.21.10.13.5"></a><h4>Parameters</h4>
635
+ <div class="informaltable"><table width="100%" border="0">
636
+ <colgroup>
637
+ <col width="150px" class="parameters_name">
638
+ <col class="parameters_description">
639
+ <col width="200px" class="parameters_annotations">
640
+ </colgroup>
641
+ <tbody>
642
+ <tr>
643
+ <td class="parameter_name"><p>attributes</p></td>
644
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
645
+ <td class="parameter_annotations"> </td>
646
+ </tr>
647
+ <tr>
648
+ <td class="parameter_name"><p>widget</p></td>
649
+ <td class="parameter_description"><p>widget of which style settings may be used.</p></td>
650
+ <td class="parameter_annotations"> </td>
651
+ </tr>
652
+ <tr>
653
+ <td class="parameter_name"><p>size</p></td>
654
+ <td class="parameter_description"><p>size of the rendered icon.</p></td>
655
+ <td class="parameter_annotations"> </td>
656
+ </tr>
657
+ </tbody>
658
+ </table></div>
659
+ </div>
660
+ <div class="refsect3">
661
+ <a name="id-1.2.21.10.13.6"></a><h4>Returns</h4>
662
+ <p> A rendered pixbuf. The pixbuf belongs to <em class="parameter"><code>attributes</code></em>
663
+ and should not be unreffed. </p>
664
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
665
+ </div>
666
+ </div>
667
+ <hr>
668
+ <div class="refsect2">
669
+ <a name="gtk-source-mark-attributes-get-tooltip-text"></a><h3>gtk_source_mark_attributes_get_tooltip_text ()</h3>
670
+ <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> *
671
+ gtk_source_mark_attributes_get_tooltip_text
672
+ (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
673
+ <em class="parameter"><code><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> *mark</code></em>);</pre>
674
+ <p>Queries for a tooltip by emitting
675
+ a <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-text" title="The “query-tooltip-text” signal"><span class="type">“query-tooltip-text”</span></a> signal. The tooltip is a plain
676
+ text.</p>
677
+ <div class="refsect3">
678
+ <a name="id-1.2.21.10.14.5"></a><h4>Parameters</h4>
679
+ <div class="informaltable"><table width="100%" border="0">
680
+ <colgroup>
681
+ <col width="150px" class="parameters_name">
682
+ <col class="parameters_description">
683
+ <col width="200px" class="parameters_annotations">
684
+ </colgroup>
685
+ <tbody>
686
+ <tr>
687
+ <td class="parameter_name"><p>attributes</p></td>
688
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
689
+ <td class="parameter_annotations"> </td>
690
+ </tr>
691
+ <tr>
692
+ <td class="parameter_name"><p>mark</p></td>
693
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>.</p></td>
694
+ <td class="parameter_annotations"> </td>
695
+ </tr>
696
+ </tbody>
697
+ </table></div>
698
+ </div>
699
+ <div class="refsect3">
700
+ <a name="id-1.2.21.10.14.6"></a><h4>Returns</h4>
701
+ <p> A tooltip. The returned string should be freed by
702
+ using <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done with it. </p>
703
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
704
+ </div>
705
+ </div>
706
+ <hr>
707
+ <div class="refsect2">
708
+ <a name="gtk-source-mark-attributes-get-tooltip-markup"></a><h3>gtk_source_mark_attributes_get_tooltip_markup ()</h3>
709
+ <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> *
710
+ gtk_source_mark_attributes_get_tooltip_markup
711
+ (<em class="parameter"><code><a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes</code></em>,
712
+ <em class="parameter"><code><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> *mark</code></em>);</pre>
713
+ <p>Queries for a tooltip by emitting
714
+ a <a class="link" href="GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-markup" title="The “query-tooltip-markup” signal"><span class="type">“query-tooltip-markup”</span></a> signal. The tooltip may contain
715
+ a markup.</p>
716
+ <div class="refsect3">
717
+ <a name="id-1.2.21.10.15.5"></a><h4>Parameters</h4>
718
+ <div class="informaltable"><table width="100%" border="0">
719
+ <colgroup>
720
+ <col width="150px" class="parameters_name">
721
+ <col class="parameters_description">
722
+ <col width="200px" class="parameters_annotations">
723
+ </colgroup>
724
+ <tbody>
725
+ <tr>
726
+ <td class="parameter_name"><p>attributes</p></td>
727
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a>.</p></td>
728
+ <td class="parameter_annotations"> </td>
729
+ </tr>
730
+ <tr>
731
+ <td class="parameter_name"><p>mark</p></td>
732
+ <td class="parameter_description"><p>a <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>.</p></td>
733
+ <td class="parameter_annotations"> </td>
734
+ </tr>
735
+ </tbody>
736
+ </table></div>
737
+ </div>
738
+ <div class="refsect3">
739
+ <a name="id-1.2.21.10.15.6"></a><h4>Returns</h4>
740
+ <p> A tooltip. The returned string should be freed by
741
+ using <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done with it. </p>
742
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
743
+ </div>
744
+ </div>
745
+ </div>
746
+ <div class="refsect1">
747
+ <a name="GtkSourceMarkAttributes.other_details"></a><h2>Types and Values</h2>
748
+ <div class="refsect2">
749
+ <a name="GtkSourceMarkAttributes-struct"></a><h3>GtkSourceMarkAttributes</h3>
750
+ <pre class="programlisting">typedef struct _GtkSourceMarkAttributes GtkSourceMarkAttributes;</pre>
751
+ </div>
752
+ </div>
753
+ <div class="refsect1">
754
+ <a name="GtkSourceMarkAttributes.property-details"></a><h2>Property Details</h2>
755
+ <div class="refsect2">
756
+ <a name="GtkSourceMarkAttributes--background"></a><h3>The <code class="literal">“background”</code> property</h3>
757
+ <pre class="programlisting"> “background” <span class="type">GdkRGBA</span> *</pre>
758
+ <p>A color used for background of a line.</p>
759
+ <p>Flags: Read / Write</p>
760
+ </div>
761
+ <hr>
762
+ <div class="refsect2">
763
+ <a name="GtkSourceMarkAttributes--gicon"></a><h3>The <code class="literal">“gicon”</code> property</h3>
764
+ <pre class="programlisting"> “gicon” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="type">GIcon</span></a> *</pre>
765
+ <p>A <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="type">GIcon</span></a> that may be a base of a rendered icon.</p>
766
+ <p>Flags: Read / Write</p>
767
+ </div>
768
+ <hr>
769
+ <div class="refsect2">
770
+ <a name="GtkSourceMarkAttributes--icon-name"></a><h3>The <code class="literal">“icon-name”</code> property</h3>
771
+ <pre class="programlisting"> “icon-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>
772
+ <p>An icon name that may be a base of a rendered icon.</p>
773
+ <p>Flags: Read / Write</p>
774
+ <p>Default value: NULL</p>
775
+ </div>
776
+ <hr>
777
+ <div class="refsect2">
778
+ <a name="GtkSourceMarkAttributes--pixbuf"></a><h3>The <code class="literal">“pixbuf”</code> property</h3>
779
+ <pre class="programlisting"> “pixbuf” <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *</pre>
780
+ <p>A <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> that may be a base of a rendered icon.</p>
781
+ <p>Flags: Read / Write</p>
782
+ </div>
783
+ <hr>
784
+ <div class="refsect2">
785
+ <a name="GtkSourceMarkAttributes--stock-id"></a><h3>The <code class="literal">“stock-id”</code> property</h3>
786
+ <pre class="programlisting"> “stock-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>
787
+ <p>A stock id that may be a base of a rendered icon.</p>
788
+ <div class="warning">
789
+ <p><code class="literal">GtkSourceMarkAttributes:stock-id</code> has been deprecated since version 3.10 and should not be used in newly-written code.</p>
790
+ <p>Don't use this property.</p>
791
+ </div>
792
+ <p>Flags: Read / Write</p>
793
+ <p>Default value: NULL</p>
794
+ </div>
795
+ </div>
796
+ <div class="refsect1">
797
+ <a name="GtkSourceMarkAttributes.signal-details"></a><h2>Signal Details</h2>
798
+ <div class="refsect2">
799
+ <a name="GtkSourceMarkAttributes-query-tooltip-markup"></a><h3>The <code class="literal">“query-tooltip-markup”</code> signal</h3>
800
+ <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>*
801
+ user_function (<a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes,
802
+ <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> *mark,
803
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
804
+ <p>The code should connect to this signal to provide a tooltip for given
805
+ <em class="parameter"><code>mark</code></em>
806
+ . The tooltip can contain a markup.</p>
807
+ <div class="refsect3">
808
+ <a name="id-1.2.21.13.2.5"></a><h4>Parameters</h4>
809
+ <div class="informaltable"><table width="100%" border="0">
810
+ <colgroup>
811
+ <col width="150px" class="parameters_name">
812
+ <col class="parameters_description">
813
+ <col width="200px" class="parameters_annotations">
814
+ </colgroup>
815
+ <tbody>
816
+ <tr>
817
+ <td class="parameter_name"><p>attributes</p></td>
818
+ <td class="parameter_description"><p>The <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> which emits the signal.</p></td>
819
+ <td class="parameter_annotations"> </td>
820
+ </tr>
821
+ <tr>
822
+ <td class="parameter_name"><p>mark</p></td>
823
+ <td class="parameter_description"><p>The <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>.</p></td>
824
+ <td class="parameter_annotations"> </td>
825
+ </tr>
826
+ <tr>
827
+ <td class="parameter_name"><p>user_data</p></td>
828
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
829
+ <td class="parameter_annotations"> </td>
830
+ </tr>
831
+ </tbody>
832
+ </table></div>
833
+ </div>
834
+ <div class="refsect3">
835
+ <a name="id-1.2.21.13.2.6"></a><h4>Returns</h4>
836
+ <p> A tooltip. The string should be freed with
837
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done with it. </p>
838
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
839
+ </div>
840
+ <p>Flags: Run Last</p>
841
+ </div>
842
+ <hr>
843
+ <div class="refsect2">
844
+ <a name="GtkSourceMarkAttributes-query-tooltip-text"></a><h3>The <code class="literal">“query-tooltip-text”</code> signal</h3>
845
+ <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>*
846
+ user_function (<a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> *attributes,
847
+ <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a> *mark,
848
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
849
+ <p>The code should connect to this signal to provide a tooltip for given
850
+ <em class="parameter"><code>mark</code></em>
851
+ . The tooltip should be just a plain text.</p>
852
+ <div class="refsect3">
853
+ <a name="id-1.2.21.13.3.5"></a><h4>Parameters</h4>
854
+ <div class="informaltable"><table width="100%" border="0">
855
+ <colgroup>
856
+ <col width="150px" class="parameters_name">
857
+ <col class="parameters_description">
858
+ <col width="200px" class="parameters_annotations">
859
+ </colgroup>
860
+ <tbody>
861
+ <tr>
862
+ <td class="parameter_name"><p>attributes</p></td>
863
+ <td class="parameter_description"><p>The <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes"><span class="type">GtkSourceMarkAttributes</span></a> which emits the signal.</p></td>
864
+ <td class="parameter_annotations"> </td>
865
+ </tr>
866
+ <tr>
867
+ <td class="parameter_name"><p>mark</p></td>
868
+ <td class="parameter_description"><p>The <a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a>.</p></td>
869
+ <td class="parameter_annotations"> </td>
870
+ </tr>
871
+ <tr>
872
+ <td class="parameter_name"><p>user_data</p></td>
873
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
874
+ <td class="parameter_annotations"> </td>
875
+ </tr>
876
+ </tbody>
877
+ </table></div>
878
+ </div>
879
+ <div class="refsect3">
880
+ <a name="id-1.2.21.13.3.6"></a><h4>Returns</h4>
881
+ <p> A tooltip. The string should be freed with
882
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done with it. </p>
883
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
884
+ </div>
885
+ <p>Flags: Run Last</p>
886
+ </div>
887
+ </div>
888
+ <div class="refsect1">
889
+ <a name="GtkSourceMarkAttributes.see-also"></a><h2>See Also</h2>
890
+ <p><a class="link" href="GtkSourceMark.html" title="GtkSourceMark"><span class="type">GtkSourceMark</span></a></p>
891
+ </div>
892
+ </div>
893
+ <div class="footer">
894
+ <hr>
895
+ Generated by GTK-Doc V1.21.1</div>
896
+ </body>
897
+ </html>