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,71 @@
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: Object Hierarchy</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
8
+ <link rel="up" href="index.html" title="GtkSourceView 3 Reference Manual">
9
+ <link rel="prev" href="style-reference.html" title="Style Scheme Definition Reference">
10
+ <link rel="next" href="api-index-full.html" title="Index of all symbols">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="style-reference.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="chapter">
23
+ <div class="titlepage"><div><div><h1 class="title">
24
+ <a name="object-tree"></a>Object Hierarchy</h1></div></div></div>
25
+ <pre class="screen">
26
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
27
+ <span class="lineart">├──</span> <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkTextBuffer.html">GtkTextBuffer</a>
28
+ <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
29
+ <span class="lineart">├──</span> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
30
+ <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GtkSourceCompletionContext.html" title="GtkSourceCompletionContext">GtkSourceCompletionContext</a>
31
+ <span class="lineart">│</span> <span class="lineart">├──</span> <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkWidget.html">GtkWidget</a>
32
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkContainer.html">GtkContainer</a>
33
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkBin.html">GtkBin</a>
34
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkWindow.html">GtkWindow</a>
35
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceCompletionInfo.html" title="GtkSourceCompletionInfo">GtkSourceCompletionInfo</a>
36
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkTextView.html">GtkTextView</a>
37
+ <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
38
+ <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceGutterRenderer.html" title="GtkSourceGutterRenderer">GtkSourceGutterRenderer</a>
39
+ <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GtkSourceGutterRendererPixbuf.html" title="GtkSourceGutterRendererPixbuf">GtkSourceGutterRendererPixbuf</a>
40
+ <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceGutterRendererText.html" title="GtkSourceGutterRendererText">GtkSourceGutterRendererText</a>
41
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceCompletion.html" title="GtkSourceCompletion">GtkSourceCompletion</a>
42
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceCompletionItem.html" title="GtkSourceCompletionItem">GtkSourceCompletionItem</a>
43
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
44
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
45
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
46
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
47
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
48
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>
49
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceLanguageManager.html" title="GtkSourceLanguageManager">GtkSourceLanguageManager</a>
50
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceMarkAttributes.html" title="GtkSourceMarkAttributes">GtkSourceMarkAttributes</a>
51
+ <span class="lineart">├──</span> <a href="/opt/gnome/share/gtk-doc/html/gtk3/GtkTextMark.html">GtkTextMark</a>
52
+ <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkSourceMark.html" title="GtkSourceMark">GtkSourceMark</a>
53
+ <span class="lineart">├──</span> <a class="link" href="GtkSourcePrintCompositor.html" title="GtkSourcePrintCompositor">GtkSourcePrintCompositor</a>
54
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
55
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
56
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceStyle.html" title="GtkSourceStyle">GtkSourceStyle</a>
57
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>
58
+ <span class="lineart">╰──</span> <a class="link" href="GtkSourceStyleSchemeManager.html" title="GtkSourceStyleSchemeManager">GtkSourceStyleSchemeManager</a>
59
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html">GInterface</a>
60
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceCompletionProposal.html" title="GtkSourceCompletionProposal">GtkSourceCompletionProposal</a>
61
+ <span class="lineart">├──</span> <a class="link" href="GtkSourceCompletionProvider.html" title="GtkSourceCompletionProvider">GtkSourceCompletionProvider</a>
62
+ <span class="lineart">╰──</span> <a class="link" href="GtkSourceUndoManager.html" title="GtkSourceUndoManager">GtkSourceUndoManager</a>
63
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html">GBoxed</a>
64
+ <span class="lineart">╰──</span> <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
65
+ </pre>
66
+ </div>
67
+ <div class="footer">
68
+ <hr>
69
+ Generated by GTK-Doc V1.21.1</div>
70
+ </body>
71
+ </html>
@@ -0,0 +1,283 @@
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: Style Scheme Definition Reference</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="ch02.html" title="Syntax highlighting reference">
9
+ <link rel="prev" href="lang-reference.html" title="Language Definition v2.0 Reference">
10
+ <link rel="next" href="object-tree.html" title="Object Hierarchy">
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"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><a accesskey="u" href="ch02.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="p" href="lang-reference.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="refentry">
23
+ <a name="style-reference"></a><div class="titlepage"></div>
24
+ <div class="refnamediv"><table width="100%"><tr>
25
+ <td valign="top">
26
+ <h2><span class="refentrytitle">Style Scheme Definition Reference</span></h2>
27
+ <p>Style Scheme Definition Reference —
28
+ Reference to the GtkSourceView style scheme definition file format
29
+ </p>
30
+ </td>
31
+ <td class="gallery_image" valign="top" align="right"></td>
32
+ </tr></table></div>
33
+ <div class="refsect1">
34
+ <a name="id-1.3.4.3"></a><h2>Overview</h2>
35
+ <p>
36
+ This is an overview of the Style Scheme Definition XML format, describing the
37
+ meaning and usage of every element and attribute. The formal definition is
38
+ stored in the RelaxNG schema file <code class="filename">style.rng</code> which
39
+ should be installed on your system in the directory
40
+ <code class="filename">${PREFIX}/share/gtksourceview-3.0/</code> (where
41
+ <code class="filename">${PREFIX}</code> can be <code class="filename">/usr/</code> or
42
+ <code class="filename">/usr/local/</code> if you have installed from source).
43
+ </p>
44
+ </div>
45
+ <p>
46
+ The toplevel tag in a style scheme file is <code class="code">&lt;style-scheme&gt;</code>.
47
+ It has the following attributes:
48
+ </p>
49
+ <div class="variablelist"><table border="0" class="variablelist">
50
+ <colgroup>
51
+ <col align="left" valign="top">
52
+ <col>
53
+ </colgroup>
54
+ <tbody>
55
+ <tr>
56
+ <td><p><span class="term"><code class="code">id</code> (mandatory)</span></p></td>
57
+ <td><p>
58
+ Identifier for the style scheme. This is must be unique among style schemes.
59
+ </p></td>
60
+ </tr>
61
+ <tr>
62
+ <td><p><span class="term"><code class="code">name</code> (mandatory)</span></p></td>
63
+ <td><p>
64
+ Name of the style scheme. This is the name of the scheme to display to user, e.g.
65
+ in a preferences dialog.
66
+ </p></td>
67
+ </tr>
68
+ <tr>
69
+ <td><p><span class="term"><code class="code">_name</code></span></p></td>
70
+ <td><p>
71
+ This is the same as <code class="code">name</code> attribute, except it will be translated.
72
+ <code class="code">name</code> and <code class="code">_name</code> may not be used simultaneously.
73
+ </p></td>
74
+ </tr>
75
+ <tr>
76
+ <td><p><span class="term"><code class="code">parent-scheme</code> (optional)</span></p></td>
77
+ <td><p>
78
+ Style schemes may have <span class="emphasis"><em>parent</em></span> schemes: all styles but those specified
79
+ in the scheme will be taken from the parent scheme. In this way a scheme may
80
+ be customized without copying all its content.
81
+ </p></td>
82
+ </tr>
83
+ <tr>
84
+ <td><p><span class="term"><code class="code">version</code> (mandatory)</span></p></td>
85
+ <td><p>
86
+ Style scheme format identifier. At the moment it must be "1.0".
87
+ </p></td>
88
+ </tr>
89
+ </tbody>
90
+ </table></div>
91
+ <p>
92
+ </p>
93
+ <p>
94
+ <code class="code">style-scheme</code> tag may contain the following tags:
95
+ </p>
96
+ <div class="variablelist"><table border="0" class="variablelist">
97
+ <colgroup>
98
+ <col align="left" valign="top">
99
+ <col>
100
+ </colgroup>
101
+ <tbody>
102
+ <tr>
103
+ <td><p><span class="term"><code class="code">author</code></span></p></td>
104
+ <td><p>
105
+ Name of the style scheme author.
106
+ </p></td>
107
+ </tr>
108
+ <tr>
109
+ <td><p><span class="term"><code class="code">description</code></span></p></td>
110
+ <td><p>
111
+ Description of the style scheme.
112
+ </p></td>
113
+ </tr>
114
+ <tr>
115
+ <td><p><span class="term"><code class="code">_description</code></span></p></td>
116
+ <td><p>
117
+ Same as <code class="code">description</code> except it will be localized.
118
+ </p></td>
119
+ </tr>
120
+ <tr>
121
+ <td><p><span class="term"><code class="code">color</code> tags</span></p></td>
122
+ <td><p>
123
+ These define color names to be used in <code class="code">style</code> tags.
124
+ It has two attributes: <code class="code">name</code> and <code class="code">value</code>.
125
+ <code class="code">value</code> is the hexadecimal color specification like
126
+ "#000000" or named color understood by Gdk prefixed with "#",
127
+ e.g. "#beige".
128
+ </p></td>
129
+ </tr>
130
+ <tr>
131
+ <td><p><span class="term"><code class="code">style</code> tags</span></p></td>
132
+ <td><p>
133
+ See below for their format description.
134
+ </p></td>
135
+ </tr>
136
+ </tbody>
137
+ </table></div>
138
+ <p>
139
+ </p>
140
+ <p>
141
+ Each <code class="code">style</code> tag describes a single element of style scheme (it corresponds
142
+ to #GtkSourceStyle object). It has the following attributes:
143
+ </p>
144
+ <div class="variablelist"><table border="0" class="variablelist">
145
+ <colgroup>
146
+ <col align="left" valign="top">
147
+ <col>
148
+ </colgroup>
149
+ <tbody>
150
+ <tr>
151
+ <td><p><span class="term"><code class="code">name</code> (mandatory)</span></p></td>
152
+ <td><p>
153
+ Name of the style. It can be anything, syntax highlighting uses <span class="emphasis"><em>lang-id:style-id</em></span>,
154
+ and there are few special styles which are used to control general appearance
155
+ of the text. Style scheme may contain other names to be used in an application. For instance,
156
+ it may define color to highlight compilation errors in a build log or a color for
157
+ bookmarks.
158
+ </p></td>
159
+ </tr>
160
+ <tr>
161
+ <td><p><span class="term"><code class="code">foreground</code></span></p></td>
162
+ <td><p>
163
+ Foreground color. It may be name defined in one of <code class="code">color</code> tags, or value in
164
+ hexadecimal format, e.g. "#000000", or symbolic name understood
165
+ by Gdk, prefixed with "#", e.g. "#magenta" or "#darkred".
166
+ </p></td>
167
+ </tr>
168
+ <tr>
169
+ <td><p><span class="term"><code class="code">background</code></span></p></td>
170
+ <td><p>
171
+ Background color.
172
+ </p></td>
173
+ </tr>
174
+ <tr>
175
+ <td><p><span class="term"><code class="code">italic</code></span></p></td>
176
+ <td><p>"true" or "false"</p></td>
177
+ </tr>
178
+ <tr>
179
+ <td><p><span class="term"><code class="code">bold</code></span></p></td>
180
+ <td><p>"true" or "false"</p></td>
181
+ </tr>
182
+ <tr>
183
+ <td><p><span class="term"><code class="code">underline</code></span></p></td>
184
+ <td><p>"true" or "false"</p></td>
185
+ </tr>
186
+ <tr>
187
+ <td><p><span class="term"><code class="code">strikethrough</code></span></p></td>
188
+ <td><p>"true" or "false"</p></td>
189
+ </tr>
190
+ <tr>
191
+ <td><p><span class="term"><code class="code">scale</code></span></p></td>
192
+ <td><p>
193
+ Scale the matched text block. Possible values are a float number as factor
194
+ (e.g. <code class="code">"1.75"</code>) or one of the values <code class="code">"xx-small"</code>,
195
+ <code class="code">"x-small"</code>, <code class="code">"small"</code>, <code class="code">"medium"</code>,
196
+ <code class="code">"large"</code>,<code class="code">"x-large"</code>,<code class="code">"xx-large"</code>.
197
+ </p></td>
198
+ </tr>
199
+ </tbody>
200
+ </table></div>
201
+ <p>
202
+ </p>
203
+ <p>
204
+ The following are names of styles which control #GtkSourceView appearance:
205
+ </p>
206
+ <div class="variablelist"><table border="0" class="variablelist">
207
+ <colgroup>
208
+ <col align="left" valign="top">
209
+ <col>
210
+ </colgroup>
211
+ <tbody>
212
+ <tr>
213
+ <td><p><span class="term"><code class="code">text</code></span></p></td>
214
+ <td><p>Default style of text.</p></td>
215
+ </tr>
216
+ <tr>
217
+ <td><p><span class="term"><code class="code">selection</code></span></p></td>
218
+ <td><p>Style of selected text.</p></td>
219
+ </tr>
220
+ <tr>
221
+ <td><p><span class="term"><code class="code">selection-unfocused</code></span></p></td>
222
+ <td><p>Style of selected text when the widget doesn't have input focus.</p></td>
223
+ </tr>
224
+ <tr>
225
+ <td><p><span class="term"><code class="code">cursor</code></span></p></td>
226
+ <td><p>Text cursor style. Only <code class="code">foreground</code> attribute is used
227
+ for this style</p></td>
228
+ </tr>
229
+ <tr>
230
+ <td><p><span class="term"><code class="code">secondary-cursor</code></span></p></td>
231
+ <td><p>Secondary cursor style (used in bidi text). Only <code class="code">foreground</code> attribute
232
+ is used for this style. If this is not set while "cursor" is, then a color between text background
233
+ and cursor colors is chosen, so it is enough to use "cursor" style only.</p></td>
234
+ </tr>
235
+ <tr>
236
+ <td><p><span class="term"><code class="code">current-line</code></span></p></td>
237
+ <td><p>Current line style. Only <code class="code">background</code> attribute is used</p></td>
238
+ </tr>
239
+ <tr>
240
+ <td><p><span class="term"><code class="code">line-numbers</code></span></p></td>
241
+ <td><p>Text and background colors for the left margin, on which line numbers are
242
+ drawn</p></td>
243
+ </tr>
244
+ <tr>
245
+ <td><p><span class="term"><code class="code">bracket-match</code></span></p></td>
246
+ <td><p>Style to use for matching brackets.</p></td>
247
+ </tr>
248
+ <tr>
249
+ <td><p><span class="term"><code class="code">bracket-mismatch</code></span></p></td>
250
+ <td><p>Style to use for mismatching brackets.</p></td>
251
+ </tr>
252
+ <tr>
253
+ <td><p><span class="term"><code class="code">right-margin</code></span></p></td>
254
+ <td><p>Style to use for the right margin. The <code class="code">foreground</code> attribute is used for
255
+ drawing the vertical line. And the <code class="code">background</code> attribute is used for the background on
256
+ the right side of the margin. An alpha channel is applied to the two colors. For a light style
257
+ scheme, a good color for both attributes is black. For a dark style scheme, white is a good
258
+ choice.</p></td>
259
+ </tr>
260
+ <tr>
261
+ <td><p><span class="term"><code class="code">draw-spaces</code></span></p></td>
262
+ <td><p>Style to use for drawing spaces (special symbols for a space, a tabulation, etc).
263
+ Only the <code class="code">foreground</code> attribute is used.</p></td>
264
+ </tr>
265
+ </tbody>
266
+ </table></div>
267
+ <p>
268
+ </p>
269
+ <div class="refsect1">
270
+ <a name="id-1.3.4.8"></a><h2>Default style schemes</h2>
271
+ <p>
272
+ The GtkSourceView team prefers to just keep a small number of style schemes
273
+ distributed with the library. To add a new style scheme in GtkSourceView
274
+ itself, the style scheme must be very popular, and ideally a
275
+ GtkSourceView-based application must use it by default.
276
+ </p>
277
+ </div>
278
+ </div>
279
+ <div class="footer">
280
+ <hr>
281
+ Generated by GTK-Doc V1.21.1</div>
282
+ </body>
283
+ </html>
@@ -0,0 +1,476 @@
1
+ body
2
+ {
3
+ font-family: cantarell, sans-serif;
4
+ }
5
+ .synopsis, .classsynopsis
6
+ {
7
+ /* tango:aluminium 1/2 */
8
+ background: #eeeeec;
9
+ background: rgba(238, 238, 236, 0.5);
10
+ border: solid 1px rgb(238, 238, 236);
11
+ padding: 0.5em;
12
+ }
13
+ .programlisting
14
+ {
15
+ /* tango:sky blue 0/1 */
16
+ /* fallback for no rgba support */
17
+ background: #e6f3ff;
18
+ border: solid 1px #729fcf;
19
+ background: rgba(114, 159, 207, 0.1);
20
+ border: solid 1px rgba(114, 159, 207, 0.2);
21
+ padding: 0.5em;
22
+ }
23
+ .variablelist
24
+ {
25
+ padding: 4px;
26
+ margin-left: 3em;
27
+ }
28
+ .variablelist td:first-child
29
+ {
30
+ vertical-align: top;
31
+ }
32
+
33
+ div.gallery-float
34
+ {
35
+ float: left;
36
+ padding: 10px;
37
+ }
38
+ div.gallery-float img
39
+ {
40
+ border-style: none;
41
+ }
42
+ div.gallery-spacer
43
+ {
44
+ clear: both;
45
+ }
46
+
47
+ a, a:visited
48
+ {
49
+ text-decoration: none;
50
+ /* tango:sky blue 2 */
51
+ color: #3465a4;
52
+ }
53
+ a:hover
54
+ {
55
+ text-decoration: underline;
56
+ /* tango:sky blue 1 */
57
+ color: #729fcf;
58
+ }
59
+
60
+ div.informaltable table
61
+ {
62
+ border-collapse: separate;
63
+ border-spacing: 1em 0.5em;
64
+ border: none;
65
+ }
66
+
67
+ div.informaltable table td, div.informaltable table th
68
+ {
69
+ vertical-align: top;
70
+ }
71
+
72
+ .function_type,
73
+ .variable_type,
74
+ .property_type,
75
+ .signal_type,
76
+ .parameter_name,
77
+ .struct_member_name,
78
+ .union_member_name,
79
+ .define_keyword,
80
+ .datatype_keyword,
81
+ .typedef_keyword
82
+ {
83
+ text-align: right;
84
+ }
85
+
86
+ /* dim non-primary columns */
87
+ .c_punctuation,
88
+ .function_type,
89
+ .variable_type,
90
+ .property_type,
91
+ .signal_type,
92
+ .define_keyword,
93
+ .datatype_keyword,
94
+ .typedef_keyword,
95
+ .property_flags,
96
+ .signal_flags,
97
+ .parameter_annotations,
98
+ .enum_member_annotations,
99
+ .struct_member_annotations,
100
+ .union_member_annotations
101
+ {
102
+ color: #888a85;
103
+ }
104
+
105
+ .function_type a,
106
+ .function_type a:visited,
107
+ .function_type a:hover,
108
+ .property_type a,
109
+ .property_type a:visited,
110
+ .property_type a:hover,
111
+ .signal_type a,
112
+ .signal_type a:visited,
113
+ .signal_type a:hover,
114
+ .signal_flags a,
115
+ .signal_flags a:visited,
116
+ .signal_flags a:hover
117
+ {
118
+ color: #729fcf;
119
+ }
120
+
121
+ td p
122
+ {
123
+ margin: 0.25em;
124
+ }
125
+
126
+ div.table table
127
+ {
128
+ border-collapse: collapse;
129
+ border-spacing: 0px;
130
+ /* tango:aluminium 3 */
131
+ border: solid 1px #babdb6;
132
+ }
133
+
134
+ div.table table td, div.table table th
135
+ {
136
+ /* tango:aluminium 3 */
137
+ border: solid 1px #babdb6;
138
+ padding: 3px;
139
+ vertical-align: top;
140
+ }
141
+
142
+ div.table table th
143
+ {
144
+ /* tango:aluminium 2 */
145
+ background-color: #d3d7cf;
146
+ }
147
+
148
+ h4
149
+ {
150
+ color: #555753;
151
+ }
152
+
153
+ hr
154
+ {
155
+ /* tango:aluminium 1 */
156
+ color: #d3d7cf;
157
+ background: #d3d7cf;
158
+ border: none 0px;
159
+ height: 1px;
160
+ clear: both;
161
+ margin: 2.0em 0em 2.0em 0em;
162
+ }
163
+
164
+ dl.toc dt
165
+ {
166
+ padding-bottom: 0.25em;
167
+ }
168
+
169
+ dl.toc > dd > dl > dt
170
+ {
171
+ padding-top: 0.25em;
172
+ padding-bottom: 0.25em;
173
+ }
174
+
175
+ dl.toc > dt
176
+ {
177
+ padding-top: 1em;
178
+ padding-bottom: 0.5em;
179
+ font-weight: bold;
180
+ }
181
+
182
+ .parameter
183
+ {
184
+ font-style: normal;
185
+ }
186
+
187
+ .footer
188
+ {
189
+ padding-top: 3.5em;
190
+ /* tango:aluminium 3 */
191
+ color: #babdb6;
192
+ text-align: center;
193
+ font-size: 80%;
194
+ }
195
+
196
+ .informalfigure,
197
+ .figure
198
+ {
199
+ margin: 1em;
200
+ }
201
+
202
+ .informalexample,
203
+ .example
204
+ {
205
+ margin-top: 1em;
206
+ margin-bottom: 1em;
207
+ }
208
+
209
+ .warning
210
+ {
211
+ /* tango:orange 0/1 */
212
+ background: #ffeed9;
213
+ background: rgba(252, 175, 62, 0.1);
214
+ border-color: #ffb04f;
215
+ border-color: rgba(252, 175, 62, 0.2);
216
+ }
217
+ .note
218
+ {
219
+ /* tango:chameleon 0/0.5 */
220
+ background: #d8ffb2;
221
+ background: rgba(138, 226, 52, 0.1);
222
+ border-color: #abf562;
223
+ border-color: rgba(138, 226, 52, 0.2);
224
+ }
225
+ div.blockquote
226
+ {
227
+ border-color: #eeeeec;
228
+ }
229
+ .note, .warning, div.blockquote
230
+ {
231
+ padding: 0.5em;
232
+ border-width: 1px;
233
+ border-style: solid;
234
+ margin: 2em;
235
+ }
236
+ .note p, .warning p
237
+ {
238
+ margin: 0;
239
+ }
240
+
241
+ div.warning h3.title,
242
+ div.note h3.title
243
+ {
244
+ display: none;
245
+ }
246
+
247
+ p + div.section
248
+ {
249
+ margin-top: 1em;
250
+ }
251
+
252
+ div.refnamediv,
253
+ div.refsynopsisdiv,
254
+ div.refsect1,
255
+ div.refsect2,
256
+ div.toc,
257
+ div.section
258
+ {
259
+ margin-bottom: 1em;
260
+ }
261
+
262
+ /* blob links */
263
+ h2 .extralinks, h3 .extralinks
264
+ {
265
+ float: right;
266
+ /* tango:aluminium 3 */
267
+ color: #babdb6;
268
+ font-size: 80%;
269
+ font-weight: normal;
270
+ }
271
+
272
+ .lineart
273
+ {
274
+ color: #d3d7cf;
275
+ font-weight: normal;
276
+ }
277
+
278
+ .annotation
279
+ {
280
+ /* tango:aluminium 5 */
281
+ color: #555753;
282
+ font-weight: normal;
283
+ }
284
+
285
+ .structfield
286
+ {
287
+ font-style: normal;
288
+ font-weight: normal;
289
+ }
290
+
291
+ acronym,abbr
292
+ {
293
+ border-bottom: 1px dotted gray;
294
+ }
295
+
296
+ /* code listings */
297
+
298
+ .listing_code .programlisting .normal,
299
+ .listing_code .programlisting .normal a,
300
+ .listing_code .programlisting .number,
301
+ .listing_code .programlisting .cbracket,
302
+ .listing_code .programlisting .symbol { color: #555753; }
303
+ .listing_code .programlisting .comment,
304
+ .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
305
+ .listing_code .programlisting .function,
306
+ .listing_code .programlisting .function a,
307
+ .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
308
+ .listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */
309
+ .listing_code .programlisting .keyword,
310
+ .listing_code .programlisting .usertype,
311
+ .listing_code .programlisting .type,
312
+ .listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */
313
+
314
+ .listing_frame {
315
+ /* tango:sky blue 1 */
316
+ border: solid 1px #729fcf;
317
+ border: solid 1px rgba(114, 159, 207, 0.2);
318
+ padding: 0px;
319
+ }
320
+
321
+ .listing_lines, .listing_code {
322
+ margin-top: 0px;
323
+ margin-bottom: 0px;
324
+ padding: 0.5em;
325
+ }
326
+ .listing_lines {
327
+ /* tango:sky blue 0.5 */
328
+ background: #a6c5e3;
329
+ background: rgba(114, 159, 207, 0.2);
330
+ /* tango:aluminium 6 */
331
+ color: #2e3436;
332
+ }
333
+ .listing_code {
334
+ /* tango:sky blue 0 */
335
+ background: #e6f3ff;
336
+ background: rgba(114, 159, 207, 0.1);
337
+ }
338
+ .listing_code .programlisting {
339
+ /* override from previous */
340
+ border: none 0px;
341
+ padding: 0px;
342
+ background: none;
343
+ }
344
+ .listing_lines pre, .listing_code pre {
345
+ margin: 0px;
346
+ }
347
+
348
+ @media screen {
349
+ sup a.footnote
350
+ {
351
+ position: relative;
352
+ top: 0em ! important;
353
+ }
354
+ /* this is needed so that the local anchors are displayed below the naviagtion */
355
+ div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
356
+ {
357
+ display: inline-block;
358
+ position: relative;
359
+ top:-5em;
360
+ }
361
+ /* this seems to be a bug in the xsl style sheets when generating indexes */
362
+ div.index div.index
363
+ {
364
+ top: 0em;
365
+ }
366
+ /* make space for the fixed navigation bar and add space at the bottom so that
367
+ * link targets appear somewhat close to top
368
+ */
369
+ body
370
+ {
371
+ padding-top: 2.5em;
372
+ padding-bottom: 500px;
373
+ max-width: 60em;
374
+ }
375
+ p
376
+ {
377
+ max-width: 60em;
378
+ }
379
+ /* style and size the navigation bar */
380
+ table.navigation#top
381
+ {
382
+ position: fixed;
383
+ background: #e2e2e2;
384
+ border-bottom: solid 1px #babdb6;
385
+ border-spacing: 5px;
386
+ margin-top: 0;
387
+ margin-bottom: 0;
388
+ top: 0;
389
+ left: 0;
390
+ z-index: 10;
391
+ }
392
+ table.navigation#top td
393
+ {
394
+ padding-left: 6px;
395
+ padding-right: 6px;
396
+ }
397
+ .navigation a, .navigation a:visited
398
+ {
399
+ /* tango:sky blue 3 */
400
+ color: #204a87;
401
+ }
402
+ .navigation a:hover
403
+ {
404
+ /* tango:sky blue 2 */
405
+ color: #3465a4;
406
+ }
407
+ td.shortcuts
408
+ {
409
+ /* tango:sky blue 2 */
410
+ color: #3465a4;
411
+ font-size: 80%;
412
+ white-space: nowrap;
413
+ }
414
+ td.shortcuts .dim
415
+ {
416
+ color: #babdb6;
417
+ }
418
+ .navigation .title
419
+ {
420
+ font-size: 80%;
421
+ max-width: none;
422
+ margin: 0px;
423
+ font-weight: normal;
424
+ }
425
+ }
426
+ @media screen and (min-width: 60em) {
427
+ /* screen larger than 60em */
428
+ body { margin: auto; }
429
+ }
430
+ @media screen and (max-width: 60em) {
431
+ /* screen less than 60em */
432
+ #nav_hierarchy { display: none; }
433
+ #nav_interfaces { display: none; }
434
+ #nav_prerequisites { display: none; }
435
+ #nav_derived_interfaces { display: none; }
436
+ #nav_implementations { display: none; }
437
+ #nav_child_properties { display: none; }
438
+ #nav_style_properties { display: none; }
439
+ #nav_index { display: none; }
440
+ #nav_glossary { display: none; }
441
+ .gallery_image { display: none; }
442
+ .property_flags { display: none; }
443
+ .signal_flags { display: none; }
444
+ .parameter_annotations { display: none; }
445
+ .enum_member_annotations { display: none; }
446
+ .struct_member_annotations { display: none; }
447
+ .union_member_annotations { display: none; }
448
+ /* now that a column is hidden, optimize space */
449
+ col.parameters_name { width: auto; }
450
+ col.parameters_description { width: auto; }
451
+ col.struct_members_name { width: auto; }
452
+ col.struct_members_description { width: auto; }
453
+ col.enum_members_name { width: auto; }
454
+ col.enum_members_description { width: auto; }
455
+ col.union_members_name { width: auto; }
456
+ col.union_members_description { width: auto; }
457
+ .listing_lines { display: none; }
458
+ }
459
+ @media print {
460
+ table.navigation {
461
+ visibility: collapse;
462
+ display: none;
463
+ }
464
+ div.titlepage table.navigation {
465
+ visibility: visible;
466
+ display: table;
467
+ background: #e2e2e2;
468
+ border: solid 1px #babdb6;
469
+ margin-top: 0;
470
+ margin-bottom: 0;
471
+ top: 0;
472
+ left: 0;
473
+ height: 3em;
474
+ }
475
+ }
476
+