gdk3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1337) hide show
  1. data/Rakefile +53 -0
  2. data/ext/gdk3/depend +11 -0
  3. data/ext/gdk3/extconf.rb +127 -0
  4. data/ext/gdk3/gdk3.def +12 -0
  5. data/ext/gdk3/init.c +35 -0
  6. data/ext/gdk3/rbgdk.c +540 -0
  7. data/ext/gdk3/rbgdk3.h +71 -0
  8. data/ext/gdk3/rbgdk3conversions.h +118 -0
  9. data/ext/gdk3/rbgdk3private.h +93 -0
  10. data/ext/gdk3/rbgdkatom.c +122 -0
  11. data/ext/gdk3/rbgdkcairo.c +95 -0
  12. data/ext/gdk3/rbgdkcolor.c +137 -0
  13. data/ext/gdk3/rbgdkconst.c +33 -0
  14. data/ext/gdk3/rbgdkcursor.c +99 -0
  15. data/ext/gdk3/rbgdkdevice.c +197 -0
  16. data/ext/gdk3/rbgdkdisplay.c +482 -0
  17. data/ext/gdk3/rbgdkdisplaymanager.c +55 -0
  18. data/ext/gdk3/rbgdkdragcontext.c +191 -0
  19. data/ext/gdk3/rbgdkdraw.c +520 -0
  20. data/ext/gdk3/rbgdkevent.c +926 -0
  21. data/ext/gdk3/rbgdkgeometry.c +252 -0
  22. data/ext/gdk3/rbgdkkeymap.c +151 -0
  23. data/ext/gdk3/rbgdkkeyval.c +108 -0
  24. data/ext/gdk3/rbgdkpango.c +197 -0
  25. data/ext/gdk3/rbgdkpangorenderer.c +144 -0
  26. data/ext/gdk3/rbgdkpixbuf.c +176 -0
  27. data/ext/gdk3/rbgdkproperty.c +305 -0
  28. data/ext/gdk3/rbgdkrectangle.c +140 -0
  29. data/ext/gdk3/rbgdkrgb.c +199 -0
  30. data/ext/gdk3/rbgdkrgba.c +142 -0
  31. data/ext/gdk3/rbgdkscreen.c +443 -0
  32. data/ext/gdk3/rbgdkselection.c +146 -0
  33. data/ext/gdk3/rbgdkthreads.c +77 -0
  34. data/ext/gdk3/rbgdktimecoord.c +133 -0
  35. data/ext/gdk3/rbgdkvisual.c +251 -0
  36. data/ext/gdk3/rbgdkwindow.c +1044 -0
  37. data/ext/gdk3/rbgdkwindowattr.c +191 -0
  38. data/ext/gdk3/rbgdkx11.c +102 -0
  39. data/ext/gdk3/rbgdkx11x11window.c +66 -0
  40. data/extconf.rb +49 -0
  41. data/lib/1.8/gdk3.so +0 -0
  42. data/lib/1.9/gdk3.so +0 -0
  43. data/lib/gdk3.rb +3 -0
  44. data/lib/gdk3/base.rb +50 -0
  45. data/lib/gdk3/deprecated.rb +152 -0
  46. data/vendor/local/bin/gtk-launch.exe +0 -0
  47. data/vendor/local/bin/gtk-query-immodules-3.0.exe +0 -0
  48. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  49. data/vendor/local/bin/gtk-update-icon-cache.exe.manifest +17 -0
  50. data/vendor/local/bin/gtk3-demo-application.exe +0 -0
  51. data/vendor/local/bin/gtk3-demo.exe +0 -0
  52. data/vendor/local/bin/gtk3-widget-factory.exe +0 -0
  53. data/vendor/local/bin/libgailutil-3-0.dll +0 -0
  54. data/vendor/local/bin/libgdk-3-0.dll +0 -0
  55. data/vendor/local/bin/libgtk-3-0.dll +0 -0
  56. data/vendor/local/etc/gtk-3.0/im-multipress.conf +22 -0
  57. data/vendor/local/etc/gtk-3.0/settings.ini +2 -0
  58. data/vendor/local/include/gail-3.0/libgail-util/gail-util.h +2 -0
  59. data/vendor/local/include/gail-3.0/libgail-util/gailmisc.h +76 -0
  60. data/vendor/local/include/gail-3.0/libgail-util/gailtextutil.h +85 -0
  61. data/vendor/local/include/gtk-3.0/gdk/gdk.h +61 -0
  62. data/vendor/local/include/gtk-3.0/gdk/gdkapplaunchcontext.h +60 -0
  63. data/vendor/local/include/gtk-3.0/gdk/gdkcairo.h +63 -0
  64. data/vendor/local/include/gtk-3.0/gdk/gdkcolor.h +77 -0
  65. data/vendor/local/include/gtk-3.0/gdk/gdkconfig.h +22 -0
  66. data/vendor/local/include/gtk-3.0/gdk/gdkcursor.h +240 -0
  67. data/vendor/local/include/gtk-3.0/gdk/gdkdevice.h +237 -0
  68. data/vendor/local/include/gtk-3.0/gdk/gdkdevicemanager.h +44 -0
  69. data/vendor/local/include/gtk-3.0/gdk/gdkdisplay.h +141 -0
  70. data/vendor/local/include/gtk-3.0/gdk/gdkdisplaymanager.h +55 -0
  71. data/vendor/local/include/gtk-3.0/gdk/gdkdnd.h +153 -0
  72. data/vendor/local/include/gtk-3.0/gdk/gdkenumtypes.h +105 -0
  73. data/vendor/local/include/gtk-3.0/gdk/gdkevents.h +1277 -0
  74. data/vendor/local/include/gtk-3.0/gdk/gdkkeys.h +142 -0
  75. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms-compat.h +2300 -0
  76. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms.h +2309 -0
  77. data/vendor/local/include/gtk-3.0/gdk/gdkmain.h +122 -0
  78. data/vendor/local/include/gtk-3.0/gdk/gdkpango.h +56 -0
  79. data/vendor/local/include/gtk-3.0/gdk/gdkpixbuf.h +52 -0
  80. data/vendor/local/include/gtk-3.0/gdk/gdkprivate.h +40 -0
  81. data/vendor/local/include/gtk-3.0/gdk/gdkproperty.h +91 -0
  82. data/vendor/local/include/gtk-3.0/gdk/gdkrectangle.h +51 -0
  83. data/vendor/local/include/gtk-3.0/gdk/gdkrgba.h +62 -0
  84. data/vendor/local/include/gtk-3.0/gdk/gdkscreen.h +100 -0
  85. data/vendor/local/include/gtk-3.0/gdk/gdkselection.h +208 -0
  86. data/vendor/local/include/gtk-3.0/gdk/gdktestutils.h +58 -0
  87. data/vendor/local/include/gtk-3.0/gdk/gdkthreads.h +105 -0
  88. data/vendor/local/include/gtk-3.0/gdk/gdktypes.h +421 -0
  89. data/vendor/local/include/gtk-3.0/gdk/gdkversionmacros.h +220 -0
  90. data/vendor/local/include/gtk-3.0/gdk/gdkvisual.h +123 -0
  91. data/vendor/local/include/gtk-3.0/gdk/gdkwin32.h +105 -0
  92. data/vendor/local/include/gtk-3.0/gdk/gdkwindow.h +884 -0
  93. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32cursor.h +54 -0
  94. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32display.h +54 -0
  95. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32displaymanager.h +47 -0
  96. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32dnd.h +47 -0
  97. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32keys.h +47 -0
  98. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32screen.h +54 -0
  99. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32window.h +54 -0
  100. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h +157 -0
  101. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h +80 -0
  102. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkfontsel.h +165 -0
  103. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h +100 -0
  104. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbbox.h +65 -0
  105. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbox.h +67 -0
  106. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhpaned.h +64 -0
  107. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscale.h +68 -0
  108. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h +64 -0
  109. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhseparator.h +64 -0
  110. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhsv.h +106 -0
  111. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkrc.h +322 -0
  112. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkstyle.h +703 -0
  113. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktable.h +162 -0
  114. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h +74 -0
  115. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbbox.h +64 -0
  116. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbox.h +65 -0
  117. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvpaned.h +64 -0
  118. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscale.h +74 -0
  119. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h +70 -0
  120. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvseparator.h +70 -0
  121. data/vendor/local/include/gtk-3.0/gtk/gtk.h +253 -0
  122. data/vendor/local/include/gtk-3.0/gtk/gtkaboutdialog.h +169 -0
  123. data/vendor/local/include/gtk-3.0/gtk/gtkaccelgroup.h +209 -0
  124. data/vendor/local/include/gtk-3.0/gtk/gtkaccellabel.h +105 -0
  125. data/vendor/local/include/gtk-3.0/gtk/gtkaccelmap.h +93 -0
  126. data/vendor/local/include/gtk-3.0/gtk/gtkaccessible.h +75 -0
  127. data/vendor/local/include/gtk-3.0/gtk/gtkaction.h +166 -0
  128. data/vendor/local/include/gtk-3.0/gtk/gtkactionable.h +77 -0
  129. data/vendor/local/include/gtk-3.0/gtk/gtkactiongroup.h +238 -0
  130. data/vendor/local/include/gtk-3.0/gtk/gtkactivatable.h +85 -0
  131. data/vendor/local/include/gtk-3.0/gtk/gtkadjustment.h +121 -0
  132. data/vendor/local/include/gtk-3.0/gtk/gtkalignment.h +96 -0
  133. data/vendor/local/include/gtk-3.0/gtk/gtkappchooser.h +49 -0
  134. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserbutton.h +89 -0
  135. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserdialog.h +78 -0
  136. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserwidget.h +103 -0
  137. data/vendor/local/include/gtk-3.0/gtk/gtkapplication.h +128 -0
  138. data/vendor/local/include/gtk-3.0/gtk/gtkapplicationwindow.h +75 -0
  139. data/vendor/local/include/gtk-3.0/gtk/gtkarrow.h +81 -0
  140. data/vendor/local/include/gtk-3.0/gtk/gtkaspectframe.h +84 -0
  141. data/vendor/local/include/gtk-3.0/gtk/gtkassistant.h +188 -0
  142. data/vendor/local/include/gtk-3.0/gtk/gtkbbox.h +90 -0
  143. data/vendor/local/include/gtk-3.0/gtk/gtkbin.h +79 -0
  144. data/vendor/local/include/gtk-3.0/gtk/gtkbindings.h +189 -0
  145. data/vendor/local/include/gtk-3.0/gtk/gtkborder.h +66 -0
  146. data/vendor/local/include/gtk-3.0/gtk/gtkbox.h +112 -0
  147. data/vendor/local/include/gtk-3.0/gtk/gtkbuildable.h +173 -0
  148. data/vendor/local/include/gtk-3.0/gtk/gtkbuilder.h +179 -0
  149. data/vendor/local/include/gtk-3.0/gtk/gtkbutton.h +130 -0
  150. data/vendor/local/include/gtk-3.0/gtk/gtkcalendar.h +169 -0
  151. data/vendor/local/include/gtk-3.0/gtk/gtkcellarea.h +482 -0
  152. data/vendor/local/include/gtk-3.0/gtk/gtkcellareabox.h +87 -0
  153. data/vendor/local/include/gtk-3.0/gtk/gtkcellareacontext.h +135 -0
  154. data/vendor/local/include/gtk-3.0/gtk/gtkcelleditable.h +62 -0
  155. data/vendor/local/include/gtk-3.0/gtk/gtkcelllayout.h +135 -0
  156. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderer.h +280 -0
  157. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendereraccel.h +84 -0
  158. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderercombo.h +65 -0
  159. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h +68 -0
  160. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererprogress.h +72 -0
  161. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspin.h +64 -0
  162. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspinner.h +67 -0
  163. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertext.h +75 -0
  164. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertoggle.h +82 -0
  165. data/vendor/local/include/gtk-3.0/gtk/gtkcellview.h +95 -0
  166. data/vendor/local/include/gtk-3.0/gtk/gtkcheckbutton.h +80 -0
  167. data/vendor/local/include/gtk-3.0/gtk/gtkcheckmenuitem.h +98 -0
  168. data/vendor/local/include/gtk-3.0/gtk/gtkclipboard.h +237 -0
  169. data/vendor/local/include/gtk-3.0/gtk/gtkcolorbutton.h +108 -0
  170. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooser.h +87 -0
  171. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserdialog.h +68 -0
  172. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserwidget.h +71 -0
  173. data/vendor/local/include/gtk-3.0/gtk/gtkcolorutils.h +48 -0
  174. data/vendor/local/include/gtk-3.0/gtk/gtkcombobox.h +147 -0
  175. data/vendor/local/include/gtk-3.0/gtk/gtkcomboboxtext.h +88 -0
  176. data/vendor/local/include/gtk-3.0/gtk/gtkcontainer.h +227 -0
  177. data/vendor/local/include/gtk-3.0/gtk/gtkcssprovider.h +96 -0
  178. data/vendor/local/include/gtk-3.0/gtk/gtkcsssection.h +97 -0
  179. data/vendor/local/include/gtk-3.0/gtk/gtkdebug.h +70 -0
  180. data/vendor/local/include/gtk-3.0/gtk/gtkdialog.h +181 -0
  181. data/vendor/local/include/gtk-3.0/gtk/gtkdnd.h +212 -0
  182. data/vendor/local/include/gtk-3.0/gtk/gtkdrawingarea.h +74 -0
  183. data/vendor/local/include/gtk-3.0/gtk/gtkeditable.h +113 -0
  184. data/vendor/local/include/gtk-3.0/gtk/gtkentry.h +304 -0
  185. data/vendor/local/include/gtk-3.0/gtk/gtkentrybuffer.h +133 -0
  186. data/vendor/local/include/gtk-3.0/gtk/gtkentrycompletion.h +154 -0
  187. data/vendor/local/include/gtk-3.0/gtk/gtkenums.h +1041 -0
  188. data/vendor/local/include/gtk-3.0/gtk/gtkeventbox.h +79 -0
  189. data/vendor/local/include/gtk-3.0/gtk/gtkexpander.h +107 -0
  190. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooser.h +247 -0
  191. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserbutton.h +81 -0
  192. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserdialog.h +69 -0
  193. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserwidget.h +65 -0
  194. data/vendor/local/include/gtk-3.0/gtk/gtkfilefilter.h +116 -0
  195. data/vendor/local/include/gtk-3.0/gtk/gtkfixed.h +91 -0
  196. data/vendor/local/include/gtk-3.0/gtk/gtkfontbutton.h +99 -0
  197. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooser.h +118 -0
  198. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserdialog.h +67 -0
  199. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserwidget.h +71 -0
  200. data/vendor/local/include/gtk-3.0/gtk/gtkframe.h +96 -0
  201. data/vendor/local/include/gtk-3.0/gtk/gtkgradient.h +66 -0
  202. data/vendor/local/include/gtk-3.0/gtk/gtkgrid.h +110 -0
  203. data/vendor/local/include/gtk-3.0/gtk/gtkiconfactory.h +183 -0
  204. data/vendor/local/include/gtk-3.0/gtk/gtkicontheme.h +233 -0
  205. data/vendor/local/include/gtk-3.0/gtk/gtkiconview.h +266 -0
  206. data/vendor/local/include/gtk-3.0/gtk/gtkimage.h +168 -0
  207. data/vendor/local/include/gtk-3.0/gtk/gtkimagemenuitem.h +90 -0
  208. data/vendor/local/include/gtk-3.0/gtk/gtkimcontext.h +126 -0
  209. data/vendor/local/include/gtk-3.0/gtk/gtkimcontextinfo.h +44 -0
  210. data/vendor/local/include/gtk-3.0/gtk/gtkimcontextsimple.h +74 -0
  211. data/vendor/local/include/gtk-3.0/gtk/gtkimmodule.h +34 -0
  212. data/vendor/local/include/gtk-3.0/gtk/gtkimmulticontext.h +73 -0
  213. data/vendor/local/include/gtk-3.0/gtk/gtkinfobar.h +116 -0
  214. data/vendor/local/include/gtk-3.0/gtk/gtkinvisible.h +77 -0
  215. data/vendor/local/include/gtk-3.0/gtk/gtklabel.h +176 -0
  216. data/vendor/local/include/gtk-3.0/gtk/gtklayout.h +108 -0
  217. data/vendor/local/include/gtk-3.0/gtk/gtklevelbar.h +127 -0
  218. data/vendor/local/include/gtk-3.0/gtk/gtklinkbutton.h +100 -0
  219. data/vendor/local/include/gtk-3.0/gtk/gtkliststore.h +133 -0
  220. data/vendor/local/include/gtk-3.0/gtk/gtklockbutton.h +72 -0
  221. data/vendor/local/include/gtk-3.0/gtk/gtkmain.h +172 -0
  222. data/vendor/local/include/gtk-3.0/gtk/gtkmenu.h +215 -0
  223. data/vendor/local/include/gtk-3.0/gtk/gtkmenubar.h +90 -0
  224. data/vendor/local/include/gtk-3.0/gtk/gtkmenubutton.h +94 -0
  225. data/vendor/local/include/gtk-3.0/gtk/gtkmenuitem.h +128 -0
  226. data/vendor/local/include/gtk-3.0/gtk/gtkmenushell.h +123 -0
  227. data/vendor/local/include/gtk-3.0/gtk/gtkmenutoolbutton.h +79 -0
  228. data/vendor/local/include/gtk-3.0/gtk/gtkmessagedialog.h +132 -0
  229. data/vendor/local/include/gtk-3.0/gtk/gtkmisc.h +89 -0
  230. data/vendor/local/include/gtk-3.0/gtk/gtkmodules.h +58 -0
  231. data/vendor/local/include/gtk-3.0/gtk/gtkmountoperation.h +81 -0
  232. data/vendor/local/include/gtk-3.0/gtk/gtknotebook.h +250 -0
  233. data/vendor/local/include/gtk-3.0/gtk/gtknumerableicon.h +87 -0
  234. data/vendor/local/include/gtk-3.0/gtk/gtkoffscreenwindow.h +64 -0
  235. data/vendor/local/include/gtk-3.0/gtk/gtkorientable.h +58 -0
  236. data/vendor/local/include/gtk-3.0/gtk/gtkoverlay.h +79 -0
  237. data/vendor/local/include/gtk-3.0/gtk/gtkpagesetup.h +106 -0
  238. data/vendor/local/include/gtk-3.0/gtk/gtkpaned.h +105 -0
  239. data/vendor/local/include/gtk-3.0/gtk/gtkpapersize.h +140 -0
  240. data/vendor/local/include/gtk-3.0/gtk/gtkplug.h +97 -0
  241. data/vendor/local/include/gtk-3.0/gtk/gtkprintcontext.h +69 -0
  242. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperation.h +280 -0
  243. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperationpreview.h +79 -0
  244. data/vendor/local/include/gtk-3.0/gtk/gtkprintsettings.h +248 -0
  245. data/vendor/local/include/gtk-3.0/gtk/gtkprogressbar.h +97 -0
  246. data/vendor/local/include/gtk-3.0/gtk/gtkradioaction.h +89 -0
  247. data/vendor/local/include/gtk-3.0/gtk/gtkradiobutton.h +92 -0
  248. data/vendor/local/include/gtk-3.0/gtk/gtkradiomenuitem.h +91 -0
  249. data/vendor/local/include/gtk-3.0/gtk/gtkradiotoolbutton.h +72 -0
  250. data/vendor/local/include/gtk-3.0/gtk/gtkrange.h +167 -0
  251. data/vendor/local/include/gtk-3.0/gtk/gtkrecentaction.h +78 -0
  252. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooser.h +203 -0
  253. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserdialog.h +78 -0
  254. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchoosermenu.h +72 -0
  255. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserwidget.h +68 -0
  256. data/vendor/local/include/gtk-3.0/gtk/gtkrecentfilter.h +125 -0
  257. data/vendor/local/include/gtk-3.0/gtk/gtkrecentmanager.h +234 -0
  258. data/vendor/local/include/gtk-3.0/gtk/gtkscale.h +114 -0
  259. data/vendor/local/include/gtk-3.0/gtk/gtkscalebutton.h +99 -0
  260. data/vendor/local/include/gtk-3.0/gtk/gtkscrollable.h +60 -0
  261. data/vendor/local/include/gtk-3.0/gtk/gtkscrollbar.h +72 -0
  262. data/vendor/local/include/gtk-3.0/gtk/gtkscrolledwindow.h +136 -0
  263. data/vendor/local/include/gtk-3.0/gtk/gtksearchentry.h +73 -0
  264. data/vendor/local/include/gtk-3.0/gtk/gtkselection.h +192 -0
  265. data/vendor/local/include/gtk-3.0/gtk/gtkseparator.h +75 -0
  266. data/vendor/local/include/gtk-3.0/gtk/gtkseparatormenuitem.h +72 -0
  267. data/vendor/local/include/gtk-3.0/gtk/gtkseparatortoolitem.h +70 -0
  268. data/vendor/local/include/gtk-3.0/gtk/gtksettings.h +127 -0
  269. data/vendor/local/include/gtk-3.0/gtk/gtkshow.h +37 -0
  270. data/vendor/local/include/gtk-3.0/gtk/gtksizegroup.h +95 -0
  271. data/vendor/local/include/gtk-3.0/gtk/gtksizerequest.h +57 -0
  272. data/vendor/local/include/gtk-3.0/gtk/gtksocket.h +84 -0
  273. data/vendor/local/include/gtk-3.0/gtk/gtkspinbutton.h +213 -0
  274. data/vendor/local/include/gtk-3.0/gtk/gtkspinner.h +71 -0
  275. data/vendor/local/include/gtk-3.0/gtk/gtkstatusbar.h +101 -0
  276. data/vendor/local/include/gtk-3.0/gtk/gtkstatusicon.h +147 -0
  277. data/vendor/local/include/gtk-3.0/gtk/gtkstock.h +1029 -0
  278. data/vendor/local/include/gtk-3.0/gtk/gtkstylecontext.h +1014 -0
  279. data/vendor/local/include/gtk-3.0/gtk/gtkstyleproperties.h +117 -0
  280. data/vendor/local/include/gtk-3.0/gtk/gtkstyleprovider.h +126 -0
  281. data/vendor/local/include/gtk-3.0/gtk/gtkswitch.h +93 -0
  282. data/vendor/local/include/gtk-3.0/gtk/gtksymboliccolor.h +57 -0
  283. data/vendor/local/include/gtk-3.0/gtk/gtktestutils.h +72 -0
  284. data/vendor/local/include/gtk-3.0/gtk/gtktextattributes.h +180 -0
  285. data/vendor/local/include/gtk-3.0/gtk/gtktextbuffer.h +408 -0
  286. data/vendor/local/include/gtk-3.0/gtk/gtktextbufferrichtext.h +126 -0
  287. data/vendor/local/include/gtk-3.0/gtk/gtktextchild.h +83 -0
  288. data/vendor/local/include/gtk-3.0/gtk/gtktextdisplay.h +101 -0
  289. data/vendor/local/include/gtk-3.0/gtk/gtktextiter.h +306 -0
  290. data/vendor/local/include/gtk-3.0/gtk/gtktextlayout.h +433 -0
  291. data/vendor/local/include/gtk-3.0/gtk/gtktextmark.h +103 -0
  292. data/vendor/local/include/gtk-3.0/gtk/gtktexttag.h +115 -0
  293. data/vendor/local/include/gtk-3.0/gtk/gtktexttagtable.h +96 -0
  294. data/vendor/local/include/gtk-3.0/gtk/gtktextview.h +298 -0
  295. data/vendor/local/include/gtk-3.0/gtk/gtkthemingengine.h +260 -0
  296. data/vendor/local/include/gtk-3.0/gtk/gtktoggleaction.h +92 -0
  297. data/vendor/local/include/gtk-3.0/gtk/gtktogglebutton.h +93 -0
  298. data/vendor/local/include/gtk-3.0/gtk/gtktoggletoolbutton.h +75 -0
  299. data/vendor/local/include/gtk-3.0/gtk/gtktoolbar.h +135 -0
  300. data/vendor/local/include/gtk-3.0/gtk/gtktoolbutton.h +97 -0
  301. data/vendor/local/include/gtk-3.0/gtk/gtktoolitem.h +124 -0
  302. data/vendor/local/include/gtk-3.0/gtk/gtktoolitemgroup.h +104 -0
  303. data/vendor/local/include/gtk-3.0/gtk/gtktoolpalette.h +140 -0
  304. data/vendor/local/include/gtk-3.0/gtk/gtktoolshell.h +89 -0
  305. data/vendor/local/include/gtk-3.0/gtk/gtktooltip.h +75 -0
  306. data/vendor/local/include/gtk-3.0/gtk/gtktreednd.h +123 -0
  307. data/vendor/local/include/gtk-3.0/gtk/gtktreemodel.h +305 -0
  308. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelfilter.h +144 -0
  309. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelsort.h +84 -0
  310. data/vendor/local/include/gtk-3.0/gtk/gtktreeselection.h +146 -0
  311. data/vendor/local/include/gtk-3.0/gtk/gtktreesortable.h +123 -0
  312. data/vendor/local/include/gtk-3.0/gtk/gtktreestore.h +147 -0
  313. data/vendor/local/include/gtk-3.0/gtk/gtktreeview.h +501 -0
  314. data/vendor/local/include/gtk-3.0/gtk/gtktreeviewcolumn.h +224 -0
  315. data/vendor/local/include/gtk-3.0/gtk/gtktypebuiltins.h +307 -0
  316. data/vendor/local/include/gtk-3.0/gtk/gtktypes.h +56 -0
  317. data/vendor/local/include/gtk-3.0/gtk/gtkuimanager.h +171 -0
  318. data/vendor/local/include/gtk-3.0/gtk/gtkversion.h +102 -0
  319. data/vendor/local/include/gtk-3.0/gtk/gtkviewport.h +96 -0
  320. data/vendor/local/include/gtk-3.0/gtk/gtkvolumebutton.h +70 -0
  321. data/vendor/local/include/gtk-3.0/gtk/gtkwidget.h +896 -0
  322. data/vendor/local/include/gtk-3.0/gtk/gtkwidgetpath.h +132 -0
  323. data/vendor/local/include/gtk-3.0/gtk/gtkwindow.h +351 -0
  324. data/vendor/local/include/gtk-3.0/gtk/gtkx.h +28 -0
  325. data/vendor/local/lib/gailutil.def +14 -0
  326. data/vendor/local/lib/gdk-win32-3.0.def +514 -0
  327. data/vendor/local/lib/gtk-3.0/3.0.0/immodules.cache +40 -0
  328. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll +0 -0
  329. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll.a +0 -0
  330. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.la +41 -0
  331. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll +0 -0
  332. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll.a +0 -0
  333. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.la +41 -0
  334. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll +0 -0
  335. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll.a +0 -0
  336. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.la +41 -0
  337. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll +0 -0
  338. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll.a +0 -0
  339. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.la +41 -0
  340. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll +0 -0
  341. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll.a +0 -0
  342. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.la +41 -0
  343. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll +0 -0
  344. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll.a +0 -0
  345. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.la +41 -0
  346. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll +0 -0
  347. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll.a +0 -0
  348. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.la +41 -0
  349. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll +0 -0
  350. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll.a +0 -0
  351. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.la +41 -0
  352. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll +0 -0
  353. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll.a +0 -0
  354. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.la +41 -0
  355. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll +0 -0
  356. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll.a +0 -0
  357. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.la +41 -0
  358. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll +0 -0
  359. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll.a +0 -0
  360. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.la +41 -0
  361. data/vendor/local/lib/gtk-win32-3.0.def +3790 -0
  362. data/vendor/local/lib/libgailutil-3.dll.a +0 -0
  363. data/vendor/local/lib/libgailutil-3.la +41 -0
  364. data/vendor/local/lib/libgdk-3.dll.a +0 -0
  365. data/vendor/local/lib/libgdk-3.la +41 -0
  366. data/vendor/local/lib/libgtk-3.dll.a +0 -0
  367. data/vendor/local/lib/libgtk-3.la +41 -0
  368. data/vendor/local/lib/pkgconfig/gail-3.0.pc +11 -0
  369. data/vendor/local/lib/pkgconfig/gdk-3.0.pc +13 -0
  370. data/vendor/local/lib/pkgconfig/gdk-win32-3.0.pc +13 -0
  371. data/vendor/local/lib/pkgconfig/gtk+-3.0.pc +16 -0
  372. data/vendor/local/lib/pkgconfig/gtk+-win32-3.0.pc +16 -0
  373. data/vendor/local/share/aclocal/gtk-3.0.m4 +219 -0
  374. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  375. data/vendor/local/share/glib-2.0/schemas/org.gtk.Demo.gschema.xml +17 -0
  376. data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml +13 -0
  377. data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml +66 -0
  378. data/vendor/local/share/gtk-3.0/demo/alphatest.png +0 -0
  379. data/vendor/local/share/gtk-3.0/demo/apple-red.png +0 -0
  380. data/vendor/local/share/gtk-3.0/demo/application.c +485 -0
  381. data/vendor/local/share/gtk-3.0/demo/application.ui +104 -0
  382. data/vendor/local/share/gtk-3.0/demo/appwindow.c +570 -0
  383. data/vendor/local/share/gtk-3.0/demo/assistant.c +201 -0
  384. data/vendor/local/share/gtk-3.0/demo/background.jpg +0 -0
  385. data/vendor/local/share/gtk-3.0/demo/builder.c +74 -0
  386. data/vendor/local/share/gtk-3.0/demo/button_box.c +127 -0
  387. data/vendor/local/share/gtk-3.0/demo/changedisplay.c +654 -0
  388. data/vendor/local/share/gtk-3.0/demo/clipboard.c +326 -0
  389. data/vendor/local/share/gtk-3.0/demo/colorsel.c +133 -0
  390. data/vendor/local/share/gtk-3.0/demo/combobox.c +473 -0
  391. data/vendor/local/share/gtk-3.0/demo/css_accordion.c +78 -0
  392. data/vendor/local/share/gtk-3.0/demo/css_accordion.css +52 -0
  393. data/vendor/local/share/gtk-3.0/demo/css_basics.c +122 -0
  394. data/vendor/local/share/gtk-3.0/demo/css_basics.css +22 -0
  395. data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.c +171 -0
  396. data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.css +136 -0
  397. data/vendor/local/share/gtk-3.0/demo/css_pixbufs.c +127 -0
  398. data/vendor/local/share/gtk-3.0/demo/css_pixbufs.css +76 -0
  399. data/vendor/local/share/gtk-3.0/demo/css_shadows.c +147 -0
  400. data/vendor/local/share/gtk-3.0/demo/css_shadows.css +44 -0
  401. data/vendor/local/share/gtk-3.0/demo/cssview.css +41 -0
  402. data/vendor/local/share/gtk-3.0/demo/demo.ui +266 -0
  403. data/vendor/local/share/gtk-3.0/demo/dialog.c +175 -0
  404. data/vendor/local/share/gtk-3.0/demo/drawingarea.c +296 -0
  405. data/vendor/local/share/gtk-3.0/demo/editable_cells.c +392 -0
  406. data/vendor/local/share/gtk-3.0/demo/entry_buffer.c +66 -0
  407. data/vendor/local/share/gtk-3.0/demo/entry_completion.c +98 -0
  408. data/vendor/local/share/gtk-3.0/demo/expander.c +59 -0
  409. data/vendor/local/share/gtk-3.0/demo/fancy.css +65 -0
  410. data/vendor/local/share/gtk-3.0/demo/floppybuddy.gif +0 -0
  411. data/vendor/local/share/gtk-3.0/demo/gnome-applets.png +0 -0
  412. data/vendor/local/share/gtk-3.0/demo/gnome-calendar.png +0 -0
  413. data/vendor/local/share/gtk-3.0/demo/gnome-foot.png +0 -0
  414. data/vendor/local/share/gtk-3.0/demo/gnome-fs-directory.png +0 -0
  415. data/vendor/local/share/gtk-3.0/demo/gnome-fs-regular.png +0 -0
  416. data/vendor/local/share/gtk-3.0/demo/gnome-gimp.png +0 -0
  417. data/vendor/local/share/gtk-3.0/demo/gnome-gmush.png +0 -0
  418. data/vendor/local/share/gtk-3.0/demo/gnome-gsame.png +0 -0
  419. data/vendor/local/share/gtk-3.0/demo/gnu-keys.png +0 -0
  420. data/vendor/local/share/gtk-3.0/demo/gtk-logo-24.png +0 -0
  421. data/vendor/local/share/gtk-3.0/demo/gtk-logo-48.png +0 -0
  422. data/vendor/local/share/gtk-3.0/demo/gtk-logo-rgb.gif +0 -0
  423. data/vendor/local/share/gtk-3.0/demo/hypertext.c +291 -0
  424. data/vendor/local/share/gtk-3.0/demo/iconview.c +371 -0
  425. data/vendor/local/share/gtk-3.0/demo/iconview_edit.c +158 -0
  426. data/vendor/local/share/gtk-3.0/demo/images.c +472 -0
  427. data/vendor/local/share/gtk-3.0/demo/infobar.c +109 -0
  428. data/vendor/local/share/gtk-3.0/demo/links.c +90 -0
  429. data/vendor/local/share/gtk-3.0/demo/list_store.c +325 -0
  430. data/vendor/local/share/gtk-3.0/demo/menus.c +171 -0
  431. data/vendor/local/share/gtk-3.0/demo/menus.ui +107 -0
  432. data/vendor/local/share/gtk-3.0/demo/offscreen_window.c +615 -0
  433. data/vendor/local/share/gtk-3.0/demo/offscreen_window2.c +526 -0
  434. data/vendor/local/share/gtk-3.0/demo/overlay.c +181 -0
  435. data/vendor/local/share/gtk-3.0/demo/panes.c +205 -0
  436. data/vendor/local/share/gtk-3.0/demo/pickers.c +89 -0
  437. data/vendor/local/share/gtk-3.0/demo/pixbufs.c +261 -0
  438. data/vendor/local/share/gtk-3.0/demo/printing.c +199 -0
  439. data/vendor/local/share/gtk-3.0/demo/reset.css +68 -0
  440. data/vendor/local/share/gtk-3.0/demo/rotated_text.c +236 -0
  441. data/vendor/local/share/gtk-3.0/demo/search_entry.c +322 -0
  442. data/vendor/local/share/gtk-3.0/demo/sizegroup.c +164 -0
  443. data/vendor/local/share/gtk-3.0/demo/spinner.c +95 -0
  444. data/vendor/local/share/gtk-3.0/demo/stock_browser.c +535 -0
  445. data/vendor/local/share/gtk-3.0/demo/textscroll.c +201 -0
  446. data/vendor/local/share/gtk-3.0/demo/textview.c +634 -0
  447. data/vendor/local/share/gtk-3.0/demo/theming.ui +319 -0
  448. data/vendor/local/share/gtk-3.0/demo/theming_custom_css.c +66 -0
  449. data/vendor/local/share/gtk-3.0/demo/theming_style_classes.c +58 -0
  450. data/vendor/local/share/gtk-3.0/demo/toolpalette.c +794 -0
  451. data/vendor/local/share/gtk-3.0/demo/transparent.c +248 -0
  452. data/vendor/local/share/gtk-3.0/demo/tree_store.c +450 -0
  453. data/vendor/local/share/gtk-3.0/demo/ui_manager.c +235 -0
  454. data/vendor/local/share/gtk-3.0/gtkbuilder.rng +305 -0
  455. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailMisc.html +434 -0
  456. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailTextUtil.html +291 -0
  457. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3.devhelp2 +29 -0
  458. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/home.png +0 -0
  459. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.html +45 -0
  460. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.sgml +26 -0
  461. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/left.png +0 -0
  462. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/libgail-util-main.html +41 -0
  463. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/right.png +0 -0
  464. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/style.css +266 -0
  465. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/up.png +0 -0
  466. data/vendor/local/share/gtk-doc/html/gdk3/GdkDevice.html +1532 -0
  467. data/vendor/local/share/gtk-doc/html/gdk3/GdkDeviceManager.html +445 -0
  468. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplay.html +1482 -0
  469. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplayManager.html +354 -0
  470. data/vendor/local/share/gtk-doc/html/gdk3/GdkScreen.html +1213 -0
  471. data/vendor/local/share/gtk-doc/html/gdk3/X_cursor.png +0 -0
  472. data/vendor/local/share/gtk-doc/html/gdk3/annotation-glossary.html +98 -0
  473. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-0.html +298 -0
  474. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-2.html +71 -0
  475. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-4.html +130 -0
  476. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-6.html +42 -0
  477. data/vendor/local/share/gtk-doc/html/gdk3/api-index-deprecated.html +158 -0
  478. data/vendor/local/share/gtk-doc/html/gdk3/api-index-full.html +2711 -0
  479. data/vendor/local/share/gtk-doc/html/gdk3/arrow.png +0 -0
  480. data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_down.png +0 -0
  481. data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_up.png +0 -0
  482. data/vendor/local/share/gtk-doc/html/gdk3/boat.png +0 -0
  483. data/vendor/local/share/gtk-doc/html/gdk3/bogosity.png +0 -0
  484. data/vendor/local/share/gtk-doc/html/gdk3/bottom_left_corner.png +0 -0
  485. data/vendor/local/share/gtk-doc/html/gdk3/bottom_right_corner.png +0 -0
  486. data/vendor/local/share/gtk-doc/html/gdk3/bottom_side.png +0 -0
  487. data/vendor/local/share/gtk-doc/html/gdk3/bottom_tee.png +0 -0
  488. data/vendor/local/share/gtk-doc/html/gdk3/box_spiral.png +0 -0
  489. data/vendor/local/share/gtk-doc/html/gdk3/center_ptr.png +0 -0
  490. data/vendor/local/share/gtk-doc/html/gdk3/circle.png +0 -0
  491. data/vendor/local/share/gtk-doc/html/gdk3/clock.png +0 -0
  492. data/vendor/local/share/gtk-doc/html/gdk3/coffee_mug.png +0 -0
  493. data/vendor/local/share/gtk-doc/html/gdk3/cross.png +0 -0
  494. data/vendor/local/share/gtk-doc/html/gdk3/cross_reverse.png +0 -0
  495. data/vendor/local/share/gtk-doc/html/gdk3/crosshair.png +0 -0
  496. data/vendor/local/share/gtk-doc/html/gdk3/diamond_cross.png +0 -0
  497. data/vendor/local/share/gtk-doc/html/gdk3/dot.png +0 -0
  498. data/vendor/local/share/gtk-doc/html/gdk3/dotbox.png +0 -0
  499. data/vendor/local/share/gtk-doc/html/gdk3/double_arrow.png +0 -0
  500. data/vendor/local/share/gtk-doc/html/gdk3/draft_large.png +0 -0
  501. data/vendor/local/share/gtk-doc/html/gdk3/draft_small.png +0 -0
  502. data/vendor/local/share/gtk-doc/html/gdk3/draped_box.png +0 -0
  503. data/vendor/local/share/gtk-doc/html/gdk3/exchange.png +0 -0
  504. data/vendor/local/share/gtk-doc/html/gdk3/fleur.png +0 -0
  505. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Application-launching.html +379 -0
  506. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cairo-Interaction.html +453 -0
  507. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Colors.html +296 -0
  508. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cursors.html +1055 -0
  509. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Drag-and-Drop.html +949 -0
  510. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Event-Structures.html +1873 -0
  511. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Events.html +1839 -0
  512. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-General.html +952 -0
  513. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Keyboard-Handling.html +1180 -0
  514. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pango-Interaction.html +427 -0
  515. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pixbufs.html +206 -0
  516. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Points-Rectangles-and-Regions.html +199 -0
  517. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Properties-and-Atoms.html +598 -0
  518. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-RGBA-Colors.html +326 -0
  519. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Selections.html +622 -0
  520. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Testing.html +230 -0
  521. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Threads.html +1050 -0
  522. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Visuals.html +777 -0
  523. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Windows.html +6690 -0
  524. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-X-Window-System-Interaction.html +2083 -0
  525. data/vendor/local/share/gtk-doc/html/gdk3/gdk3.devhelp2 +1042 -0
  526. data/vendor/local/share/gtk-doc/html/gdk3/gobbler.png +0 -0
  527. data/vendor/local/share/gtk-doc/html/gdk3/gumby.png +0 -0
  528. data/vendor/local/share/gtk-doc/html/gdk3/hand1.png +0 -0
  529. data/vendor/local/share/gtk-doc/html/gdk3/hand2.png +0 -0
  530. data/vendor/local/share/gtk-doc/html/gdk3/heart.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/gdk3/home.png +0 -0
  532. data/vendor/local/share/gtk-doc/html/gdk3/icon.png +0 -0
  533. data/vendor/local/share/gtk-doc/html/gdk3/index.html +120 -0
  534. data/vendor/local/share/gtk-doc/html/gdk3/index.sgml +1162 -0
  535. data/vendor/local/share/gtk-doc/html/gdk3/iron_cross.png +0 -0
  536. data/vendor/local/share/gtk-doc/html/gdk3/left.png +0 -0
  537. data/vendor/local/share/gtk-doc/html/gdk3/left_ptr.png +0 -0
  538. data/vendor/local/share/gtk-doc/html/gdk3/left_side.png +0 -0
  539. data/vendor/local/share/gtk-doc/html/gdk3/left_tee.png +0 -0
  540. data/vendor/local/share/gtk-doc/html/gdk3/leftbutton.png +0 -0
  541. data/vendor/local/share/gtk-doc/html/gdk3/ll_angle.png +0 -0
  542. data/vendor/local/share/gtk-doc/html/gdk3/lr_angle.png +0 -0
  543. data/vendor/local/share/gtk-doc/html/gdk3/man.png +0 -0
  544. data/vendor/local/share/gtk-doc/html/gdk3/middlebutton.png +0 -0
  545. data/vendor/local/share/gtk-doc/html/gdk3/mouse.png +0 -0
  546. data/vendor/local/share/gtk-doc/html/gdk3/pencil.png +0 -0
  547. data/vendor/local/share/gtk-doc/html/gdk3/pirate.png +0 -0
  548. data/vendor/local/share/gtk-doc/html/gdk3/plus.png +0 -0
  549. data/vendor/local/share/gtk-doc/html/gdk3/question_arrow.png +0 -0
  550. data/vendor/local/share/gtk-doc/html/gdk3/reference.html +113 -0
  551. data/vendor/local/share/gtk-doc/html/gdk3/right.png +0 -0
  552. data/vendor/local/share/gtk-doc/html/gdk3/right_ptr.png +0 -0
  553. data/vendor/local/share/gtk-doc/html/gdk3/right_side.png +0 -0
  554. data/vendor/local/share/gtk-doc/html/gdk3/right_tee.png +0 -0
  555. data/vendor/local/share/gtk-doc/html/gdk3/rightbutton.png +0 -0
  556. data/vendor/local/share/gtk-doc/html/gdk3/rotated-text.png +0 -0
  557. data/vendor/local/share/gtk-doc/html/gdk3/rtl_logo.png +0 -0
  558. data/vendor/local/share/gtk-doc/html/gdk3/sailboat.png +0 -0
  559. data/vendor/local/share/gtk-doc/html/gdk3/sb_down_arrow.png +0 -0
  560. data/vendor/local/share/gtk-doc/html/gdk3/sb_h_double_arrow.png +0 -0
  561. data/vendor/local/share/gtk-doc/html/gdk3/sb_left_arrow.png +0 -0
  562. data/vendor/local/share/gtk-doc/html/gdk3/sb_right_arrow.png +0 -0
  563. data/vendor/local/share/gtk-doc/html/gdk3/sb_up_arrow.png +0 -0
  564. data/vendor/local/share/gtk-doc/html/gdk3/sb_v_double_arrow.png +0 -0
  565. data/vendor/local/share/gtk-doc/html/gdk3/shuttle.png +0 -0
  566. data/vendor/local/share/gtk-doc/html/gdk3/sizing.png +0 -0
  567. data/vendor/local/share/gtk-doc/html/gdk3/spider.png +0 -0
  568. data/vendor/local/share/gtk-doc/html/gdk3/spraycan.png +0 -0
  569. data/vendor/local/share/gtk-doc/html/gdk3/star.png +0 -0
  570. data/vendor/local/share/gtk-doc/html/gdk3/style.css +266 -0
  571. data/vendor/local/share/gtk-doc/html/gdk3/target.png +0 -0
  572. data/vendor/local/share/gtk-doc/html/gdk3/tcross.png +0 -0
  573. data/vendor/local/share/gtk-doc/html/gdk3/top_left_arrow.png +0 -0
  574. data/vendor/local/share/gtk-doc/html/gdk3/top_left_corner.png +0 -0
  575. data/vendor/local/share/gtk-doc/html/gdk3/top_right_corner.png +0 -0
  576. data/vendor/local/share/gtk-doc/html/gdk3/top_side.png +0 -0
  577. data/vendor/local/share/gtk-doc/html/gdk3/top_tee.png +0 -0
  578. data/vendor/local/share/gtk-doc/html/gdk3/trek.png +0 -0
  579. data/vendor/local/share/gtk-doc/html/gdk3/ul_angle.png +0 -0
  580. data/vendor/local/share/gtk-doc/html/gdk3/umbrella.png +0 -0
  581. data/vendor/local/share/gtk-doc/html/gdk3/up.png +0 -0
  582. data/vendor/local/share/gtk-doc/html/gdk3/ur_angle.png +0 -0
  583. data/vendor/local/share/gtk-doc/html/gdk3/watch.png +0 -0
  584. data/vendor/local/share/gtk-doc/html/gdk3/xterm.png +0 -0
  585. data/vendor/local/share/gtk-doc/html/gtk3/AbstractObjects.html +53 -0
  586. data/vendor/local/share/gtk-doc/html/gtk3/Actions.html +53 -0
  587. data/vendor/local/share/gtk-doc/html/gtk3/Application.html +42 -0
  588. data/vendor/local/share/gtk-doc/html/gtk3/ApplicationChoosing.html +44 -0
  589. data/vendor/local/share/gtk-doc/html/gtk3/Builder.html +38 -0
  590. data/vendor/local/share/gtk-doc/html/gtk3/ButtonWidgets.html +62 -0
  591. data/vendor/local/share/gtk-doc/html/gtk3/DisplayWidgets.html +59 -0
  592. data/vendor/local/share/gtk-doc/html/gtk3/GtkAboutDialog.html +1501 -0
  593. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccelLabel.html +400 -0
  594. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccessible.html +200 -0
  595. data/vendor/local/share/gtk-doc/html/gtk3/GtkAction.html +1580 -0
  596. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionGroup.html +1389 -0
  597. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionable.html +425 -0
  598. data/vendor/local/share/gtk-doc/html/gtk3/GtkActivatable.html +876 -0
  599. data/vendor/local/share/gtk-doc/html/gtk3/GtkAdjustment.html +845 -0
  600. data/vendor/local/share/gtk-doc/html/gtk3/GtkAlignment.html +411 -0
  601. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooser.html +212 -0
  602. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserButton.html +518 -0
  603. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserDialog.html +297 -0
  604. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserWidget.html +712 -0
  605. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplication.html +1877 -0
  606. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplicationWindow.html +788 -0
  607. data/vendor/local/share/gtk-doc/html/gtk3/GtkArrow.html +208 -0
  608. data/vendor/local/share/gtk-doc/html/gtk3/GtkAspectFrame.html +241 -0
  609. data/vendor/local/share/gtk-doc/html/gtk3/GtkAssistant.html +1389 -0
  610. data/vendor/local/share/gtk-doc/html/gtk3/GtkBin.html +132 -0
  611. data/vendor/local/share/gtk-doc/html/gtk3/GtkBox.html +683 -0
  612. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuildable.html +677 -0
  613. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuilder.html +1354 -0
  614. data/vendor/local/share/gtk-doc/html/gtk3/GtkButton.html +1292 -0
  615. data/vendor/local/share/gtk-doc/html/gtk3/GtkButtonBox.html +432 -0
  616. data/vendor/local/share/gtk-doc/html/gtk3/GtkCalendar.html +1031 -0
  617. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellArea.html +3227 -0
  618. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaBox.html +369 -0
  619. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaContext.html +675 -0
  620. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellEditable.html +286 -0
  621. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellLayout.html +750 -0
  622. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRenderer.html +1596 -0
  623. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererAccel.html +275 -0
  624. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererCombo.html +228 -0
  625. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererPixbuf.html +203 -0
  626. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererProgress.html +202 -0
  627. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpin.html +159 -0
  628. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpinner.html +155 -0
  629. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererText.html +653 -0
  630. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererToggle.html +372 -0
  631. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellView.html +729 -0
  632. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckButton.html +198 -0
  633. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckMenuItem.html +462 -0
  634. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorButton.html +607 -0
  635. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooser.html +370 -0
  636. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserDialog.html +144 -0
  637. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserWidget.html +150 -0
  638. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelection.html +889 -0
  639. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelectionDialog.html +200 -0
  640. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBox.html +1893 -0
  641. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBoxText.html +519 -0
  642. data/vendor/local/share/gtk-doc/html/gtk3/GtkContainer.html +1692 -0
  643. data/vendor/local/share/gtk-doc/html/gtk3/GtkCssProvider.html +2108 -0
  644. data/vendor/local/share/gtk-doc/html/gtk3/GtkDialog.html +1288 -0
  645. data/vendor/local/share/gtk-doc/html/gtk3/GtkDrawingArea.html +234 -0
  646. data/vendor/local/share/gtk-doc/html/gtk3/GtkEditable.html +723 -0
  647. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntry.html +3957 -0
  648. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryBuffer.html +627 -0
  649. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryCompletion.html +1331 -0
  650. data/vendor/local/share/gtk-doc/html/gtk3/GtkEventBox.html +305 -0
  651. data/vendor/local/share/gtk-doc/html/gtk3/GtkExpander.html +851 -0
  652. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooser.html +3403 -0
  653. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserButton.html +486 -0
  654. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserDialog.html +396 -0
  655. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserWidget.html +127 -0
  656. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileFilter.html +595 -0
  657. data/vendor/local/share/gtk-doc/html/gtk3/GtkFixed.html +253 -0
  658. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontButton.html +609 -0
  659. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooser.html +605 -0
  660. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserDialog.html +137 -0
  661. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserWidget.html +125 -0
  662. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelection.html +571 -0
  663. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelectionDialog.html +400 -0
  664. data/vendor/local/share/gtk-doc/html/gtk3/GtkFrame.html +464 -0
  665. data/vendor/local/share/gtk-doc/html/gtk3/GtkGrid.html +701 -0
  666. data/vendor/local/share/gtk-doc/html/gtk3/GtkHBox.html +147 -0
  667. data/vendor/local/share/gtk-doc/html/gtk3/GtkHButtonBox.html +134 -0
  668. data/vendor/local/share/gtk-doc/html/gtk3/GtkHPaned.html +115 -0
  669. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSV.html +445 -0
  670. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScale.html +172 -0
  671. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScrollbar.html +128 -0
  672. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSeparator.html +127 -0
  673. data/vendor/local/share/gtk-doc/html/gtk3/GtkHandleBox.html +514 -0
  674. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContext.html +1027 -0
  675. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContextSimple.html +150 -0
  676. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMMulticontext.html +183 -0
  677. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconTheme.html +1755 -0
  678. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconView.html +2896 -0
  679. data/vendor/local/share/gtk-doc/html/gtk3/GtkImage.html +1349 -0
  680. data/vendor/local/share/gtk-doc/html/gtk3/GtkImageMenuItem.html +486 -0
  681. data/vendor/local/share/gtk-doc/html/gtk3/GtkInfoBar.html +764 -0
  682. data/vendor/local/share/gtk-doc/html/gtk3/GtkInvisible.html +205 -0
  683. data/vendor/local/share/gtk-doc/html/gtk3/GtkLabel.html +2208 -0
  684. data/vendor/local/share/gtk-doc/html/gtk3/GtkLayout.html +518 -0
  685. data/vendor/local/share/gtk-doc/html/gtk3/GtkLevelBar.html +782 -0
  686. data/vendor/local/share/gtk-doc/html/gtk3/GtkLinkButton.html +369 -0
  687. data/vendor/local/share/gtk-doc/html/gtk3/GtkListStore.html +1159 -0
  688. data/vendor/local/share/gtk-doc/html/gtk3/GtkLockButton.html +259 -0
  689. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenu.html +1527 -0
  690. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuBar.html +369 -0
  691. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuButton.html +535 -0
  692. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuItem.html +940 -0
  693. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuShell.html +904 -0
  694. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuToolButton.html +387 -0
  695. data/vendor/local/share/gtk-doc/html/gtk3/GtkMessageDialog.html +814 -0
  696. data/vendor/local/share/gtk-doc/html/gtk3/GtkMisc.html +296 -0
  697. data/vendor/local/share/gtk-doc/html/gtk3/GtkNotebook.html +2219 -0
  698. data/vendor/local/share/gtk-doc/html/gtk3/GtkNumerableIcon.html +557 -0
  699. data/vendor/local/share/gtk-doc/html/gtk3/GtkOffscreenWindow.html +187 -0
  700. data/vendor/local/share/gtk-doc/html/gtk3/GtkOverlay.html +229 -0
  701. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetup.html +1031 -0
  702. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetupUnixDialog.html +254 -0
  703. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaned.html +783 -0
  704. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaperSize.html +905 -0
  705. data/vendor/local/share/gtk-doc/html/gtk3/GtkPlug.html +388 -0
  706. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintContext.html +571 -0
  707. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintJob.html +1133 -0
  708. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintSettings.html +2948 -0
  709. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintUnixDialog.html +919 -0
  710. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrinter.html +1003 -0
  711. data/vendor/local/share/gtk-doc/html/gtk3/GtkProgressBar.html +668 -0
  712. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioAction.html +451 -0
  713. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioButton.html +586 -0
  714. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioMenuItem.html +436 -0
  715. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioToolButton.html +316 -0
  716. data/vendor/local/share/gtk-doc/html/gtk3/GtkRange.html +1365 -0
  717. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentAction.html +279 -0
  718. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooser.html +1415 -0
  719. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserDialog.html +247 -0
  720. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserMenu.html +266 -0
  721. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserWidget.html +155 -0
  722. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentFilter.html +685 -0
  723. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentManager.html +1641 -0
  724. data/vendor/local/share/gtk-doc/html/gtk3/GtkScale.html +726 -0
  725. data/vendor/local/share/gtk-doc/html/gtk3/GtkScaleButton.html +546 -0
  726. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollable.html +452 -0
  727. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollbar.html +194 -0
  728. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrolledWindow.html +1106 -0
  729. data/vendor/local/share/gtk-doc/html/gtk3/GtkSearchEntry.html +118 -0
  730. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparator.html +114 -0
  731. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorMenuItem.html +107 -0
  732. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorToolItem.html +199 -0
  733. data/vendor/local/share/gtk-doc/html/gtk3/GtkSettings.html +1357 -0
  734. data/vendor/local/share/gtk-doc/html/gtk3/GtkSizeGroup.html +487 -0
  735. data/vendor/local/share/gtk-doc/html/gtk3/GtkSocket.html +360 -0
  736. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinButton.html +1380 -0
  737. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinner.html +173 -0
  738. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusIcon.html +1743 -0
  739. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusbar.html +441 -0
  740. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyle.html +2534 -0
  741. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleContext.html +4505 -0
  742. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleProvider.html +324 -0
  743. data/vendor/local/share/gtk-doc/html/gtk3/GtkSwitch.html +248 -0
  744. data/vendor/local/share/gtk-doc/html/gtk3/GtkTable.html +897 -0
  745. data/vendor/local/share/gtk-doc/html/gtk3/GtkTearoffMenuItem.html +135 -0
  746. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextBuffer.html +3895 -0
  747. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextIter.html +3183 -0
  748. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextMark.html +342 -0
  749. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTag.html +1124 -0
  750. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTagTable.html +410 -0
  751. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextView.html +3390 -0
  752. data/vendor/local/share/gtk-doc/html/gtk3/GtkThemingEngine.html +1197 -0
  753. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleAction.html +335 -0
  754. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleButton.html +518 -0
  755. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleToolButton.html +268 -0
  756. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolButton.html +677 -0
  757. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItem.html +1139 -0
  758. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItemGroup.html +755 -0
  759. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolPalette.html +1037 -0
  760. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolShell.html +425 -0
  761. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolbar.html +946 -0
  762. data/vendor/local/share/gtk-doc/html/gtk3/GtkTooltip.html +432 -0
  763. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModel.html +2814 -0
  764. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelFilter.html +742 -0
  765. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelSort.html +591 -0
  766. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSelection.html +891 -0
  767. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSortable.html +481 -0
  768. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeStore.html +1108 -0
  769. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeView.html +4864 -0
  770. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeViewColumn.html +2067 -0
  771. data/vendor/local/share/gtk-doc/html/gtk3/GtkUIManager.html +1467 -0
  772. data/vendor/local/share/gtk-doc/html/gtk3/GtkVBox.html +162 -0
  773. data/vendor/local/share/gtk-doc/html/gtk3/GtkVButtonBox.html +134 -0
  774. data/vendor/local/share/gtk-doc/html/gtk3/GtkVPaned.html +115 -0
  775. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScale.html +176 -0
  776. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScrollbar.html +132 -0
  777. data/vendor/local/share/gtk-doc/html/gtk3/GtkVSeparator.html +120 -0
  778. data/vendor/local/share/gtk-doc/html/gtk3/GtkViewport.html +387 -0
  779. data/vendor/local/share/gtk-doc/html/gtk3/GtkVolumeButton.html +135 -0
  780. data/vendor/local/share/gtk-doc/html/gtk3/GtkWidget.html +12811 -0
  781. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindow.html +4647 -0
  782. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindowGroup.html +250 -0
  783. data/vendor/local/share/gtk-doc/html/gtk3/LayoutContainers.html +91 -0
  784. data/vendor/local/share/gtk-doc/html/gtk3/MenusAndCombos.html +93 -0
  785. data/vendor/local/share/gtk-doc/html/gtk3/MiscObjects.html +69 -0
  786. data/vendor/local/share/gtk-doc/html/gtk3/NumericEntry.html +60 -0
  787. data/vendor/local/share/gtk-doc/html/gtk3/Ornaments.html +44 -0
  788. data/vendor/local/share/gtk-doc/html/gtk3/PlugSocket.html +38 -0
  789. data/vendor/local/share/gtk-doc/html/gtk3/Printing.html +59 -0
  790. data/vendor/local/share/gtk-doc/html/gtk3/RecentDocuments.html +51 -0
  791. data/vendor/local/share/gtk-doc/html/gtk3/ScrollingWidgets.html +47 -0
  792. data/vendor/local/share/gtk-doc/html/gtk3/SelectorWidgets.html +86 -0
  793. data/vendor/local/share/gtk-doc/html/gtk3/TextWidget.html +266 -0
  794. data/vendor/local/share/gtk-doc/html/gtk3/TextWidgetObjects.html +53 -0
  795. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidget.html +556 -0
  796. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidgetObjects.html +115 -0
  797. data/vendor/local/share/gtk-doc/html/gtk3/WindowWidgets.html +56 -0
  798. data/vendor/local/share/gtk-doc/html/gtk3/aboutdialog.png +0 -0
  799. data/vendor/local/share/gtk-doc/html/gtk3/accel-label.png +0 -0
  800. data/vendor/local/share/gtk-doc/html/gtk3/annotation-glossary.html +110 -0
  801. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-0.html +1901 -0
  802. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-2.html +378 -0
  803. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-4.html +322 -0
  804. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-6.html +332 -0
  805. data/vendor/local/share/gtk-doc/html/gtk3/api-index-deprecated.html +1006 -0
  806. data/vendor/local/share/gtk-doc/html/gtk3/api-index-full.html +22583 -0
  807. data/vendor/local/share/gtk-doc/html/gtk3/appchooserbutton.png +0 -0
  808. data/vendor/local/share/gtk-doc/html/gtk3/appchooserdialog.png +0 -0
  809. data/vendor/local/share/gtk-doc/html/gtk3/application-exit.png +0 -0
  810. data/vendor/local/share/gtk-doc/html/gtk3/arrows.png +0 -0
  811. data/vendor/local/share/gtk-doc/html/gtk3/assistant.png +0 -0
  812. data/vendor/local/share/gtk-doc/html/gtk3/background.png +0 -0
  813. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-gnome.png +0 -0
  814. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-osx.png +0 -0
  815. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-xfce.png +0 -0
  816. data/vendor/local/share/gtk-doc/html/gtk3/border1.png +0 -0
  817. data/vendor/local/share/gtk-doc/html/gtk3/border2.png +0 -0
  818. data/vendor/local/share/gtk-doc/html/gtk3/border3.png +0 -0
  819. data/vendor/local/share/gtk-doc/html/gtk3/box-expand.png +0 -0
  820. data/vendor/local/share/gtk-doc/html/gtk3/box-packing.png +0 -0
  821. data/vendor/local/share/gtk-doc/html/gtk3/button.png +0 -0
  822. data/vendor/local/share/gtk-doc/html/gtk3/ch02.html +252 -0
  823. data/vendor/local/share/gtk-doc/html/gtk3/ch03.html +178 -0
  824. data/vendor/local/share/gtk-doc/html/gtk3/ch24s02.html +1407 -0
  825. data/vendor/local/share/gtk-doc/html/gtk3/ch26s02.html +53 -0
  826. data/vendor/local/share/gtk-doc/html/gtk3/ch28s02.html +117 -0
  827. data/vendor/local/share/gtk-doc/html/gtk3/ch28s03.html +70 -0
  828. data/vendor/local/share/gtk-doc/html/gtk3/chap-drawing-model.html +461 -0
  829. data/vendor/local/share/gtk-doc/html/gtk3/check-button.png +0 -0
  830. data/vendor/local/share/gtk-doc/html/gtk3/checklist-gdkeventexpose-region.html +82 -0
  831. data/vendor/local/share/gtk-doc/html/gtk3/checklist-modifiers.html +89 -0
  832. data/vendor/local/share/gtk-doc/html/gtk3/checklist-named-icons.html +40 -0
  833. data/vendor/local/share/gtk-doc/html/gtk3/checks.png +0 -0
  834. data/vendor/local/share/gtk-doc/html/gtk3/color-button.png +0 -0
  835. data/vendor/local/share/gtk-doc/html/gtk3/colorchooser.png +0 -0
  836. data/vendor/local/share/gtk-doc/html/gtk3/colorsel.png +0 -0
  837. data/vendor/local/share/gtk-doc/html/gtk3/combo-box-entry.png +0 -0
  838. data/vendor/local/share/gtk-doc/html/gtk3/combo-box.png +0 -0
  839. data/vendor/local/share/gtk-doc/html/gtk3/dialog-error.png +0 -0
  840. data/vendor/local/share/gtk-doc/html/gtk3/dialog-information.png +0 -0
  841. data/vendor/local/share/gtk-doc/html/gtk3/dialog-password.png +0 -0
  842. data/vendor/local/share/gtk-doc/html/gtk3/dialog-question.png +0 -0
  843. data/vendor/local/share/gtk-doc/html/gtk3/dialog-warning.png +0 -0
  844. data/vendor/local/share/gtk-doc/html/gtk3/document-new.png +0 -0
  845. data/vendor/local/share/gtk-doc/html/gtk3/document-open.png +0 -0
  846. data/vendor/local/share/gtk-doc/html/gtk3/document-print-preview.png +0 -0
  847. data/vendor/local/share/gtk-doc/html/gtk3/document-print.png +0 -0
  848. data/vendor/local/share/gtk-doc/html/gtk3/document-properties.png +0 -0
  849. data/vendor/local/share/gtk-doc/html/gtk3/document-revert-ltr.png +0 -0
  850. data/vendor/local/share/gtk-doc/html/gtk3/document-revert-rtl.png +0 -0
  851. data/vendor/local/share/gtk-doc/html/gtk3/document-save-as.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gtk3/document-save.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gtk3/down-center.png +0 -0
  854. data/vendor/local/share/gtk-doc/html/gtk3/down-end.png +0 -0
  855. data/vendor/local/share/gtk-doc/html/gtk3/down-start.png +0 -0
  856. data/vendor/local/share/gtk-doc/html/gtk3/drawing.png +0 -0
  857. data/vendor/local/share/gtk-doc/html/gtk3/drive-harddisk.png +0 -0
  858. data/vendor/local/share/gtk-doc/html/gtk3/ease-in-out.png +0 -0
  859. data/vendor/local/share/gtk-doc/html/gtk3/ease-in.png +0 -0
  860. data/vendor/local/share/gtk-doc/html/gtk3/ease-out.png +0 -0
  861. data/vendor/local/share/gtk-doc/html/gtk3/ease.png +0 -0
  862. data/vendor/local/share/gtk-doc/html/gtk3/edit-clear.png +0 -0
  863. data/vendor/local/share/gtk-doc/html/gtk3/edit-copy.png +0 -0
  864. data/vendor/local/share/gtk-doc/html/gtk3/edit-cut.png +0 -0
  865. data/vendor/local/share/gtk-doc/html/gtk3/edit-delete.png +0 -0
  866. data/vendor/local/share/gtk-doc/html/gtk3/edit-find-replace.png +0 -0
  867. data/vendor/local/share/gtk-doc/html/gtk3/edit-find.png +0 -0
  868. data/vendor/local/share/gtk-doc/html/gtk3/edit-paste.png +0 -0
  869. data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-ltr.png +0 -0
  870. data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-rtl.png +0 -0
  871. data/vendor/local/share/gtk-doc/html/gtk3/edit-select-all.png +0 -0
  872. data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-ltr.png +0 -0
  873. data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-rtl.png +0 -0
  874. data/vendor/local/share/gtk-doc/html/gtk3/entry.png +0 -0
  875. data/vendor/local/share/gtk-doc/html/gtk3/expanders.png +0 -0
  876. data/vendor/local/share/gtk-doc/html/gtk3/extensions.png +0 -0
  877. data/vendor/local/share/gtk-doc/html/gtk3/figure-hierarchical-drawing.png +0 -0
  878. data/vendor/local/share/gtk-doc/html/gtk3/figure-windowed-label.png +0 -0
  879. data/vendor/local/share/gtk-doc/html/gtk3/file-button.png +0 -0
  880. data/vendor/local/share/gtk-doc/html/gtk3/filechooser.png +0 -0
  881. data/vendor/local/share/gtk-doc/html/gtk3/focus.png +0 -0
  882. data/vendor/local/share/gtk-doc/html/gtk3/folder.png +0 -0
  883. data/vendor/local/share/gtk-doc/html/gtk3/font-button.png +0 -0
  884. data/vendor/local/share/gtk-doc/html/gtk3/fontchooser.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/gtk3/fontsel.png +0 -0
  886. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-ltr.png +0 -0
  887. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-rtl.png +0 -0
  888. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-ltr.png +0 -0
  889. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-rtl.png +0 -0
  890. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-center.png +0 -0
  891. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-fill.png +0 -0
  892. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-left.png +0 -0
  893. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-right.png +0 -0
  894. data/vendor/local/share/gtk-doc/html/gtk3/format-text-bold.png +0 -0
  895. data/vendor/local/share/gtk-doc/html/gtk3/format-text-italic.png +0 -0
  896. data/vendor/local/share/gtk-doc/html/gtk3/format-text-strikethrough.png +0 -0
  897. data/vendor/local/share/gtk-doc/html/gtk3/format-text-underline.png +0 -0
  898. data/vendor/local/share/gtk-doc/html/gtk3/frame-gap.png +0 -0
  899. data/vendor/local/share/gtk-doc/html/gtk3/frame.png +0 -0
  900. data/vendor/local/share/gtk-doc/html/gtk3/frames.png +0 -0
  901. data/vendor/local/share/gtk-doc/html/gtk3/glossary.html +312 -0
  902. data/vendor/local/share/gtk-doc/html/gtk3/go-bottom.png +0 -0
  903. data/vendor/local/share/gtk-doc/html/gtk3/go-down.png +0 -0
  904. data/vendor/local/share/gtk-doc/html/gtk3/go-first-ltr.png +0 -0
  905. data/vendor/local/share/gtk-doc/html/gtk3/go-first-rtl.png +0 -0
  906. data/vendor/local/share/gtk-doc/html/gtk3/go-home.png +0 -0
  907. data/vendor/local/share/gtk-doc/html/gtk3/go-jump-ltr.png +0 -0
  908. data/vendor/local/share/gtk-doc/html/gtk3/go-jump-rtl.png +0 -0
  909. data/vendor/local/share/gtk-doc/html/gtk3/go-last-ltr.png +0 -0
  910. data/vendor/local/share/gtk-doc/html/gtk3/go-last-rtl.png +0 -0
  911. data/vendor/local/share/gtk-doc/html/gtk3/go-next-ltr.png +0 -0
  912. data/vendor/local/share/gtk-doc/html/gtk3/go-next-rtl.png +0 -0
  913. data/vendor/local/share/gtk-doc/html/gtk3/go-previous-ltr.png +0 -0
  914. data/vendor/local/share/gtk-doc/html/gtk3/go-previous-rtl.png +0 -0
  915. data/vendor/local/share/gtk-doc/html/gtk3/go-top.png +0 -0
  916. data/vendor/local/share/gtk-doc/html/gtk3/go-up.png +0 -0
  917. data/vendor/local/share/gtk-doc/html/gtk3/gradient1.png +0 -0
  918. data/vendor/local/share/gtk-doc/html/gtk3/gradient2.png +0 -0
  919. data/vendor/local/share/gtk-doc/html/gtk3/gradient3.png +0 -0
  920. data/vendor/local/share/gtk-doc/html/gtk3/gradient4.png +0 -0
  921. data/vendor/local/share/gtk-doc/html/gtk3/grid-packing.png +0 -0
  922. data/vendor/local/share/gtk-doc/html/gtk3/gtk-apply.png +0 -0
  923. data/vendor/local/share/gtk-doc/html/gtk3/gtk-broadway.html +55 -0
  924. data/vendor/local/share/gtk-doc/html/gtk3/gtk-building.html +459 -0
  925. data/vendor/local/share/gtk-doc/html/gtk3/gtk-cancel.png +0 -0
  926. data/vendor/local/share/gtk-doc/html/gtk3/gtk-caps-lock-warning.png +0 -0
  927. data/vendor/local/share/gtk-doc/html/gtk3/gtk-color-picker.png +0 -0
  928. data/vendor/local/share/gtk-doc/html/gtk3/gtk-compiling.html +161 -0
  929. data/vendor/local/share/gtk-doc/html/gtk3/gtk-connect.png +0 -0
  930. data/vendor/local/share/gtk-doc/html/gtk3/gtk-convert.png +0 -0
  931. data/vendor/local/share/gtk-doc/html/gtk3/gtk-disconnect.png +0 -0
  932. data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd-multiple.png +0 -0
  933. data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd.png +0 -0
  934. data/vendor/local/share/gtk-doc/html/gtk3/gtk-edit.png +0 -0
  935. data/vendor/local/share/gtk-doc/html/gtk3/gtk-font.png +0 -0
  936. data/vendor/local/share/gtk-doc/html/gtk3/gtk-getting-started.html +1095 -0
  937. data/vendor/local/share/gtk-doc/html/gtk3/gtk-index.png +0 -0
  938. data/vendor/local/share/gtk-doc/html/gtk3/gtk-launch.html +72 -0
  939. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-2-to-3.html +688 -0
  940. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkGrid.html +102 -0
  941. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-bonus-points.html +136 -0
  942. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-checklist.html +221 -0
  943. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-css.html +437 -0
  944. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parser-extensions.html +69 -0
  945. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parsing.html +82 -0
  946. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html +74 -0
  947. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-checklist.html +164 -0
  948. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-smclient-GtkApplication.html +89 -0
  949. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-theme-GtkStyleContext-engines.html +133 -0
  950. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-unique-GtkApplication.html +228 -0
  951. data/vendor/local/share/gtk-doc/html/gtk3/gtk-no.png +0 -0
  952. data/vendor/local/share/gtk-doc/html/gtk3/gtk-ok.png +0 -0
  953. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-landscape.png +0 -0
  954. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-portrait.png +0 -0
  955. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-landscape.png +0 -0
  956. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-portrait.png +0 -0
  957. data/vendor/local/share/gtk-doc/html/gtk3/gtk-osx.html +54 -0
  958. data/vendor/local/share/gtk-doc/html/gtk3/gtk-page-setup.png +0 -0
  959. data/vendor/local/share/gtk-doc/html/gtk3/gtk-preferences.png +0 -0
  960. data/vendor/local/share/gtk-doc/html/gtk3/gtk-query-immodules-3.0.html +110 -0
  961. data/vendor/local/share/gtk-doc/html/gtk3/gtk-question-index.html +1395 -0
  962. data/vendor/local/share/gtk-doc/html/gtk3/gtk-resources.html +146 -0
  963. data/vendor/local/share/gtk-doc/html/gtk3/gtk-running.html +427 -0
  964. data/vendor/local/share/gtk-doc/html/gtk3/gtk-select-color.png +0 -0
  965. data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-ltr.png +0 -0
  966. data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-rtl.png +0 -0
  967. data/vendor/local/share/gtk-doc/html/gtk3/gtk-update-icon-cache.html +106 -0
  968. data/vendor/local/share/gtk-doc/html/gtk3/gtk-windows.html +93 -0
  969. data/vendor/local/share/gtk-doc/html/gtk3/gtk-x11.html +122 -0
  970. data/vendor/local/share/gtk-doc/html/gtk3/gtk-yes.png +0 -0
  971. data/vendor/local/share/gtk-doc/html/gtk3/gtk.html +187 -0
  972. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Accelerator-Maps.html +674 -0
  973. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Bindings.html +920 -0
  974. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Clipboards.html +1622 -0
  975. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Drag-and-Drop.html +1483 -0
  976. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Feature-Test-Macros.html +346 -0
  977. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Filesystem-utilities.html +368 -0
  978. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-General.html +1325 -0
  979. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkGradient.html +346 -0
  980. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkStyleProperties.html +590 -0
  981. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkSymbolicColor.html +420 -0
  982. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkTreeView-drag-and-drop.html +452 -0
  983. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkWidgetPath.html +1361 -0
  984. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-High-level-Printing-API.html +2748 -0
  985. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Keyboard-Accelerators.html +1143 -0
  986. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Orientable.html +173 -0
  987. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Resource-Files.html +2004 -0
  988. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Selections.html +1844 -0
  989. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Standard-Enumerations.html +1753 -0
  990. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Stock-Items.html +1587 -0
  991. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Testing.html +646 -0
  992. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Themeable-Stock-Images.html +1730 -0
  993. data/vendor/local/share/gtk-doc/html/gtk3/gtk3.devhelp2 +6619 -0
  994. data/vendor/local/share/gtk-doc/html/gtk3/gtkbase.html +76 -0
  995. data/vendor/local/share/gtk-doc/html/gtk3/gtkobjects.html +670 -0
  996. data/vendor/local/share/gtk-doc/html/gtk3/handles.png +0 -0
  997. data/vendor/local/share/gtk-doc/html/gtk3/hello-world.png +0 -0
  998. data/vendor/local/share/gtk-doc/html/gtk3/help-about.png +0 -0
  999. data/vendor/local/share/gtk-doc/html/gtk3/help-contents.png +0 -0
  1000. data/vendor/local/share/gtk-doc/html/gtk3/home.png +0 -0
  1001. data/vendor/local/share/gtk-doc/html/gtk3/icon-view.png +0 -0
  1002. data/vendor/local/share/gtk-doc/html/gtk3/image-missing.png +0 -0
  1003. data/vendor/local/share/gtk-doc/html/gtk3/image.png +0 -0
  1004. data/vendor/local/share/gtk-doc/html/gtk3/index.html +903 -0
  1005. data/vendor/local/share/gtk-doc/html/gtk3/index.sgml +8183 -0
  1006. data/vendor/local/share/gtk-doc/html/gtk3/label.png +0 -0
  1007. data/vendor/local/share/gtk-doc/html/gtk3/layout-btlr.png +0 -0
  1008. data/vendor/local/share/gtk-doc/html/gtk3/layout-btrl.png +0 -0
  1009. data/vendor/local/share/gtk-doc/html/gtk3/layout-lrbt.png +0 -0
  1010. data/vendor/local/share/gtk-doc/html/gtk3/layout-lrtb.png +0 -0
  1011. data/vendor/local/share/gtk-doc/html/gtk3/layout-rlbt.png +0 -0
  1012. data/vendor/local/share/gtk-doc/html/gtk3/layout-rltb.png +0 -0
  1013. data/vendor/local/share/gtk-doc/html/gtk3/layout-tblr.png +0 -0
  1014. data/vendor/local/share/gtk-doc/html/gtk3/layout-tbrl.png +0 -0
  1015. data/vendor/local/share/gtk-doc/html/gtk3/left-center.png +0 -0
  1016. data/vendor/local/share/gtk-doc/html/gtk3/left-end.png +0 -0
  1017. data/vendor/local/share/gtk-doc/html/gtk3/left-start.png +0 -0
  1018. data/vendor/local/share/gtk-doc/html/gtk3/left.png +0 -0
  1019. data/vendor/local/share/gtk-doc/html/gtk3/levelbar.png +0 -0
  1020. data/vendor/local/share/gtk-doc/html/gtk3/linear.png +0 -0
  1021. data/vendor/local/share/gtk-doc/html/gtk3/link-button.png +0 -0
  1022. data/vendor/local/share/gtk-doc/html/gtk3/list-add.png +0 -0
  1023. data/vendor/local/share/gtk-doc/html/gtk3/list-and-tree.png +0 -0
  1024. data/vendor/local/share/gtk-doc/html/gtk3/list-remove.png +0 -0
  1025. data/vendor/local/share/gtk-doc/html/gtk3/lock-button.png +0 -0
  1026. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-locked.png +0 -0
  1027. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-sorry.png +0 -0
  1028. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-unlocked.png +0 -0
  1029. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton.png +0 -0
  1030. data/vendor/local/share/gtk-doc/html/gtk3/media-floppy.png +0 -0
  1031. data/vendor/local/share/gtk-doc/html/gtk3/media-optical.png +0 -0
  1032. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-pause.png +0 -0
  1033. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-ltr.png +0 -0
  1034. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-rtl.png +0 -0
  1035. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-stop.png +0 -0
  1036. data/vendor/local/share/gtk-doc/html/gtk3/media-record.png +0 -0
  1037. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-ltr.png +0 -0
  1038. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-rtl.png +0 -0
  1039. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-ltr.png +0 -0
  1040. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-rtl.png +0 -0
  1041. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-ltr.png +0 -0
  1042. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-rtl.png +0 -0
  1043. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-ltr.png +0 -0
  1044. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-rtl.png +0 -0
  1045. data/vendor/local/share/gtk-doc/html/gtk3/menu-button.png +0 -0
  1046. data/vendor/local/share/gtk-doc/html/gtk3/menubar.png +0 -0
  1047. data/vendor/local/share/gtk-doc/html/gtk3/messagedialog.png +0 -0
  1048. data/vendor/local/share/gtk-doc/html/gtk3/migrating.html +106 -0
  1049. data/vendor/local/share/gtk-doc/html/gtk3/multiline-text.png +0 -0
  1050. data/vendor/local/share/gtk-doc/html/gtk3/network-idle.png +0 -0
  1051. data/vendor/local/share/gtk-doc/html/gtk3/notebook.png +0 -0
  1052. data/vendor/local/share/gtk-doc/html/gtk3/numerableicon.png +0 -0
  1053. data/vendor/local/share/gtk-doc/html/gtk3/numerableicon2.png +0 -0
  1054. data/vendor/local/share/gtk-doc/html/gtk3/options.png +0 -0
  1055. data/vendor/local/share/gtk-doc/html/gtk3/pagesetupdialog.png +0 -0
  1056. data/vendor/local/share/gtk-doc/html/gtk3/panes.png +0 -0
  1057. data/vendor/local/share/gtk-doc/html/gtk3/printdialog.png +0 -0
  1058. data/vendor/local/share/gtk-doc/html/gtk3/printer-error.png +0 -0
  1059. data/vendor/local/share/gtk-doc/html/gtk3/printer-info.png +0 -0
  1060. data/vendor/local/share/gtk-doc/html/gtk3/printer-paused.png +0 -0
  1061. data/vendor/local/share/gtk-doc/html/gtk3/printer-warning.png +0 -0
  1062. data/vendor/local/share/gtk-doc/html/gtk3/process-stop.png +0 -0
  1063. data/vendor/local/share/gtk-doc/html/gtk3/progressbar.png +0 -0
  1064. data/vendor/local/share/gtk-doc/html/gtk3/pt06.html +44 -0
  1065. data/vendor/local/share/gtk-doc/html/gtk3/radio-group.png +0 -0
  1066. data/vendor/local/share/gtk-doc/html/gtk3/recentchooserdialog.png +0 -0
  1067. data/vendor/local/share/gtk-doc/html/gtk3/right-center.png +0 -0
  1068. data/vendor/local/share/gtk-doc/html/gtk3/right-end.png +0 -0
  1069. data/vendor/local/share/gtk-doc/html/gtk3/right-start.png +0 -0
  1070. data/vendor/local/share/gtk-doc/html/gtk3/right.png +0 -0
  1071. data/vendor/local/share/gtk-doc/html/gtk3/scales.png +0 -0
  1072. data/vendor/local/share/gtk-doc/html/gtk3/scrolledwindow.png +0 -0
  1073. data/vendor/local/share/gtk-doc/html/gtk3/search-entry.png +0 -0
  1074. data/vendor/local/share/gtk-doc/html/gtk3/separator.png +0 -0
  1075. data/vendor/local/share/gtk-doc/html/gtk3/slices.png +0 -0
  1076. data/vendor/local/share/gtk-doc/html/gtk3/sliders.png +0 -0
  1077. data/vendor/local/share/gtk-doc/html/gtk3/spinbutton.png +0 -0
  1078. data/vendor/local/share/gtk-doc/html/gtk3/spinner.png +0 -0
  1079. data/vendor/local/share/gtk-doc/html/gtk3/statusbar.png +0 -0
  1080. data/vendor/local/share/gtk-doc/html/gtk3/style.css +266 -0
  1081. data/vendor/local/share/gtk-doc/html/gtk3/switch.png +0 -0
  1082. data/vendor/local/share/gtk-doc/html/gtk3/system-run.png +0 -0
  1083. data/vendor/local/share/gtk-doc/html/gtk3/text-x-generic.png +0 -0
  1084. data/vendor/local/share/gtk-doc/html/gtk3/theming.html +75 -0
  1085. data/vendor/local/share/gtk-doc/html/gtk3/toggle-button.png +0 -0
  1086. data/vendor/local/share/gtk-doc/html/gtk3/toolbar.png +0 -0
  1087. data/vendor/local/share/gtk-doc/html/gtk3/toolpalette.png +0 -0
  1088. data/vendor/local/share/gtk-doc/html/gtk3/tools-check-spelling.png +0 -0
  1089. data/vendor/local/share/gtk-doc/html/gtk3/tree-view-coordinates.png +0 -0
  1090. data/vendor/local/share/gtk-doc/html/gtk3/up-center.png +0 -0
  1091. data/vendor/local/share/gtk-doc/html/gtk3/up-end.png +0 -0
  1092. data/vendor/local/share/gtk-doc/html/gtk3/up-start.png +0 -0
  1093. data/vendor/local/share/gtk-doc/html/gtk3/up.png +0 -0
  1094. data/vendor/local/share/gtk-doc/html/gtk3/view-fullscreen.png +0 -0
  1095. data/vendor/local/share/gtk-doc/html/gtk3/view-refresh.png +0 -0
  1096. data/vendor/local/share/gtk-doc/html/gtk3/view-restore.png +0 -0
  1097. data/vendor/local/share/gtk-doc/html/gtk3/view-sort-ascending.png +0 -0
  1098. data/vendor/local/share/gtk-doc/html/gtk3/view-sort-descending.png +0 -0
  1099. data/vendor/local/share/gtk-doc/html/gtk3/volumebutton.png +0 -0
  1100. data/vendor/local/share/gtk-doc/html/gtk3/widget-hvalign.png +0 -0
  1101. data/vendor/local/share/gtk-doc/html/gtk3/window-close.png +0 -0
  1102. data/vendor/local/share/gtk-doc/html/gtk3/window-default.png +0 -0
  1103. data/vendor/local/share/gtk-doc/html/gtk3/window.png +0 -0
  1104. data/vendor/local/share/gtk-doc/html/gtk3/zoom-fit-best.png +0 -0
  1105. data/vendor/local/share/gtk-doc/html/gtk3/zoom-in.png +0 -0
  1106. data/vendor/local/share/gtk-doc/html/gtk3/zoom-original.png +0 -0
  1107. data/vendor/local/share/gtk-doc/html/gtk3/zoom-out.png +0 -0
  1108. data/vendor/local/share/license/gtk+/AUTHORS +65 -0
  1109. data/vendor/local/share/license/gtk+/COPYING +481 -0
  1110. data/vendor/local/share/locale/af/LC_MESSAGES/gtk30-properties.mo +0 -0
  1111. data/vendor/local/share/locale/af/LC_MESSAGES/gtk30.mo +0 -0
  1112. data/vendor/local/share/locale/am/LC_MESSAGES/gtk30-properties.mo +0 -0
  1113. data/vendor/local/share/locale/am/LC_MESSAGES/gtk30.mo +0 -0
  1114. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30-properties.mo +0 -0
  1115. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30.mo +0 -0
  1116. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30-properties.mo +0 -0
  1117. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30.mo +0 -0
  1118. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30-properties.mo +0 -0
  1119. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30.mo +0 -0
  1120. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30-properties.mo +0 -0
  1121. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30.mo +0 -0
  1122. data/vendor/local/share/locale/az/LC_MESSAGES/gtk30-properties.mo +0 -0
  1123. data/vendor/local/share/locale/az/LC_MESSAGES/gtk30.mo +0 -0
  1124. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo +0 -0
  1125. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30.mo +0 -0
  1126. data/vendor/local/share/locale/be/LC_MESSAGES/gtk30-properties.mo +0 -0
  1127. data/vendor/local/share/locale/be/LC_MESSAGES/gtk30.mo +0 -0
  1128. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
  1129. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30.mo +0 -0
  1130. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1131. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30.mo +0 -0
  1132. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1133. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30.mo +0 -0
  1134. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo +0 -0
  1135. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30.mo +0 -0
  1136. data/vendor/local/share/locale/br/LC_MESSAGES/gtk30-properties.mo +0 -0
  1137. data/vendor/local/share/locale/br/LC_MESSAGES/gtk30.mo +0 -0
  1138. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30-properties.mo +0 -0
  1139. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30.mo +0 -0
  1140. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30-properties.mo +0 -0
  1141. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30.mo +0 -0
  1142. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo +0 -0
  1143. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo +0 -0
  1144. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30-properties.mo +0 -0
  1145. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30.mo +0 -0
  1146. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30-properties.mo +0 -0
  1147. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30.mo +0 -0
  1148. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30-properties.mo +0 -0
  1149. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30.mo +0 -0
  1150. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30-properties.mo +0 -0
  1151. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30.mo +0 -0
  1152. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30-properties.mo +0 -0
  1153. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30.mo +0 -0
  1154. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30-properties.mo +0 -0
  1155. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30.mo +0 -0
  1156. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30-properties.mo +0 -0
  1157. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30.mo +0 -0
  1158. data/vendor/local/share/locale/en/LC_MESSAGES/gtk30-properties.mo +0 -0
  1159. data/vendor/local/share/locale/en/LC_MESSAGES/gtk30.mo +0 -0
  1160. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo +0 -0
  1161. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30.mo +0 -0
  1162. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo +0 -0
  1163. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30.mo +0 -0
  1164. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo +0 -0
  1165. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30.mo +0 -0
  1166. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30-properties.mo +0 -0
  1167. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30.mo +0 -0
  1168. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30-properties.mo +0 -0
  1169. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30.mo +0 -0
  1170. data/vendor/local/share/locale/et/LC_MESSAGES/gtk30-properties.mo +0 -0
  1171. data/vendor/local/share/locale/et/LC_MESSAGES/gtk30.mo +0 -0
  1172. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1173. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30.mo +0 -0
  1174. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1175. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30.mo +0 -0
  1176. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1177. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30.mo +0 -0
  1178. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1179. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30.mo +0 -0
  1180. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30-properties.mo +0 -0
  1181. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30.mo +0 -0
  1182. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1183. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30.mo +0 -0
  1184. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1185. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30.mo +0 -0
  1186. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30-properties.mo +0 -0
  1187. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30.mo +0 -0
  1188. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1189. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30.mo +0 -0
  1190. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1191. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30.mo +0 -0
  1192. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1193. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30.mo +0 -0
  1194. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30-properties.mo +0 -0
  1195. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30.mo +0 -0
  1196. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30-properties.mo +0 -0
  1197. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30.mo +0 -0
  1198. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30-properties.mo +0 -0
  1199. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30.mo +0 -0
  1200. data/vendor/local/share/locale/io/LC_MESSAGES/gtk30-properties.mo +0 -0
  1201. data/vendor/local/share/locale/io/LC_MESSAGES/gtk30.mo +0 -0
  1202. data/vendor/local/share/locale/is/LC_MESSAGES/gtk30-properties.mo +0 -0
  1203. data/vendor/local/share/locale/is/LC_MESSAGES/gtk30.mo +0 -0
  1204. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30-properties.mo +0 -0
  1205. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30.mo +0 -0
  1206. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30-properties.mo +0 -0
  1207. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30.mo +0 -0
  1208. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30-properties.mo +0 -0
  1209. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30.mo +0 -0
  1210. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1211. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30.mo +0 -0
  1212. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1213. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30.mo +0 -0
  1214. data/vendor/local/share/locale/km/LC_MESSAGES/gtk30-properties.mo +0 -0
  1215. data/vendor/local/share/locale/km/LC_MESSAGES/gtk30.mo +0 -0
  1216. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1217. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30.mo +0 -0
  1218. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30-properties.mo +0 -0
  1219. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30.mo +0 -0
  1220. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30-properties.mo +0 -0
  1221. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30.mo +0 -0
  1222. data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30-properties.mo +0 -0
  1223. data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30.mo +0 -0
  1224. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1225. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30.mo +0 -0
  1226. data/vendor/local/share/locale/li/LC_MESSAGES/gtk30-properties.mo +0 -0
  1227. data/vendor/local/share/locale/li/LC_MESSAGES/gtk30.mo +0 -0
  1228. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1229. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30.mo +0 -0
  1230. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30-properties.mo +0 -0
  1231. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30.mo +0 -0
  1232. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30-properties.mo +0 -0
  1233. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30.mo +0 -0
  1234. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1235. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30.mo +0 -0
  1236. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1237. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30.mo +0 -0
  1238. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30-properties.mo +0 -0
  1239. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30.mo +0 -0
  1240. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1241. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30.mo +0 -0
  1242. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1243. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30.mo +0 -0
  1244. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30-properties.mo +0 -0
  1245. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30.mo +0 -0
  1246. data/vendor/local/share/locale/my/LC_MESSAGES/gtk30-properties.mo +0 -0
  1247. data/vendor/local/share/locale/my/LC_MESSAGES/gtk30.mo +0 -0
  1248. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30-properties.mo +0 -0
  1249. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30.mo +0 -0
  1250. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30-properties.mo +0 -0
  1251. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30.mo +0 -0
  1252. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30-properties.mo +0 -0
  1253. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30.mo +0 -0
  1254. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1255. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30.mo +0 -0
  1256. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1257. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30.mo +0 -0
  1258. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30-properties.mo +0 -0
  1259. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30.mo +0 -0
  1260. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30-properties.mo +0 -0
  1261. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30.mo +0 -0
  1262. data/vendor/local/share/locale/or/LC_MESSAGES/gtk30-properties.mo +0 -0
  1263. data/vendor/local/share/locale/or/LC_MESSAGES/gtk30.mo +0 -0
  1264. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1265. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30.mo +0 -0
  1266. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1267. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30.mo +0 -0
  1268. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30-properties.mo +0 -0
  1269. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30.mo +0 -0
  1270. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1271. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30.mo +0 -0
  1272. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo +0 -0
  1273. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30.mo +0 -0
  1274. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30-properties.mo +0 -0
  1275. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30.mo +0 -0
  1276. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30-properties.mo +0 -0
  1277. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30.mo +0 -0
  1278. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30-properties.mo +0 -0
  1279. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30.mo +0 -0
  1280. data/vendor/local/share/locale/si/LC_MESSAGES/gtk30-properties.mo +0 -0
  1281. data/vendor/local/share/locale/si/LC_MESSAGES/gtk30.mo +0 -0
  1282. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1283. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30.mo +0 -0
  1284. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1285. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30.mo +0 -0
  1286. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30-properties.mo +0 -0
  1287. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30.mo +0 -0
  1288. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1289. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30.mo +0 -0
  1290. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo +0 -0
  1291. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30.mo +0 -0
  1292. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
  1293. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30.mo +0 -0
  1294. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30-properties.mo +0 -0
  1295. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30.mo +0 -0
  1296. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30-properties.mo +0 -0
  1297. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30.mo +0 -0
  1298. data/vendor/local/share/locale/te/LC_MESSAGES/gtk30-properties.mo +0 -0
  1299. data/vendor/local/share/locale/te/LC_MESSAGES/gtk30.mo +0 -0
  1300. data/vendor/local/share/locale/th/LC_MESSAGES/gtk30-properties.mo +0 -0
  1301. data/vendor/local/share/locale/th/LC_MESSAGES/gtk30.mo +0 -0
  1302. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1303. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30.mo +0 -0
  1304. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1305. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30.mo +0 -0
  1306. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1307. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30.mo +0 -0
  1308. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30-properties.mo +0 -0
  1309. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30.mo +0 -0
  1310. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1311. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30.mo +0 -0
  1312. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30-properties.mo +0 -0
  1313. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30.mo +0 -0
  1314. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30-properties.mo +0 -0
  1315. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30.mo +0 -0
  1316. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo +0 -0
  1317. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo +0 -0
  1318. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1319. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30.mo +0 -0
  1320. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1321. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30.mo +0 -0
  1322. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30-properties.mo +0 -0
  1323. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30.mo +0 -0
  1324. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1325. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30.mo +0 -0
  1326. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo +0 -0
  1327. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30.mo +0 -0
  1328. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo +0 -0
  1329. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30.mo +0 -0
  1330. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo +0 -0
  1331. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30.mo +0 -0
  1332. data/vendor/local/share/man/man1/gtk-launch.1 +53 -0
  1333. data/vendor/local/share/man/man1/gtk-query-immodules-3.0.1 +75 -0
  1334. data/vendor/local/share/man/man1/gtk-update-icon-cache.1 +88 -0
  1335. data/vendor/local/share/themes/Default/gtk-3.0/gtk-keys.css +3 -0
  1336. data/vendor/local/share/themes/Emacs/gtk-3.0/gtk-keys.css +121 -0
  1337. metadata +1449 -0
@@ -0,0 +1,441 @@
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>GtkStatusbar</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
7
+ <link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
8
+ <link rel="up" href="DisplayWidgets.html" title="Display Widgets">
9
+ <link rel="prev" href="GtkProgressBar.html" title="GtkProgressBar">
10
+ <link rel="next" href="GtkLevelBar.html" title="GtkLevelBar">
11
+ <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="GtkProgressBar.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="DisplayWidgets.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GTK+ 3 Reference Manual</th>
21
+ <td><a accesskey="n" href="GtkLevelBar.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#GtkStatusbar.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkStatusbar.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkStatusbar.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkStatusbar.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkStatusbar.style-properties" class="shortcut">Style Properties</a>
33
+  | 
34
+ <a href="#GtkStatusbar.signals" class="shortcut">Signals</a>
35
+ </td></tr>
36
+ </table>
37
+ <div class="refentry">
38
+ <a name="GtkStatusbar"></a><div class="titlepage"></div>
39
+ <div class="refnamediv"><table width="100%"><tr>
40
+ <td valign="top">
41
+ <h2><span class="refentrytitle"><a name="GtkStatusbar.top_of_page"></a>GtkStatusbar</span></h2>
42
+ <p>GtkStatusbar — Report messages of minor importance to the user</p>
43
+ </td>
44
+ <td valign="top" align="right"><img src="statusbar.png"></td>
45
+ </tr></table></div>
46
+ <div class="refsynopsisdiv">
47
+ <a name="GtkStatusbar.synopsis"></a><h2>Synopsis</h2>
48
+ <pre class="synopsis">
49
+ #include &lt;gtk/gtk.h&gt;
50
+
51
+ struct <a class="link" href="GtkStatusbar.html#GtkStatusbar-struct" title="struct GtkStatusbar">GtkStatusbar</a>;
52
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkStatusbar.html#gtk-statusbar-new" title="gtk_statusbar_new ()">gtk_statusbar_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
53
+ <span class="returnvalue">guint</span> <a class="link" href="GtkStatusbar.html#gtk-statusbar-get-context-id" title="gtk_statusbar_get_context_id ()">gtk_statusbar_get_context_id</a> (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
54
+ <em class="parameter"><code>const <span class="type">gchar</span> *context_description</code></em>);
55
+ <span class="returnvalue">guint</span> <a class="link" href="GtkStatusbar.html#gtk-statusbar-push" title="gtk_statusbar_push ()">gtk_statusbar_push</a> (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
56
+ <em class="parameter"><code><span class="type">guint</span> context_id</code></em>,
57
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);
58
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusbar.html#gtk-statusbar-pop" title="gtk_statusbar_pop ()">gtk_statusbar_pop</a> (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
59
+ <em class="parameter"><code><span class="type">guint</span> context_id</code></em>);
60
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusbar.html#gtk-statusbar-remove" title="gtk_statusbar_remove ()">gtk_statusbar_remove</a> (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
61
+ <em class="parameter"><code><span class="type">guint</span> context_id</code></em>,
62
+ <em class="parameter"><code><span class="type">guint</span> message_id</code></em>);
63
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusbar.html#gtk-statusbar-remove-all" title="gtk_statusbar_remove_all ()">gtk_statusbar_remove_all</a> (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
64
+ <em class="parameter"><code><span class="type">guint</span> context_id</code></em>);
65
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkStatusbar.html#gtk-statusbar-get-message-area" title="gtk_statusbar_get_message_area ()">gtk_statusbar_get_message_area</a> (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>);
66
+ </pre>
67
+ </div>
68
+ <div class="refsect1">
69
+ <a name="GtkStatusbar.object-hierarchy"></a><h2>Object Hierarchy</h2>
70
+ <pre class="synopsis">
71
+ GObject
72
+ +----GInitiallyUnowned
73
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
74
+ +----<a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
75
+ +----<a class="link" href="GtkBox.html" title="GtkBox">GtkBox</a>
76
+ +----GtkStatusbar
77
+ </pre>
78
+ </div>
79
+ <div class="refsect1">
80
+ <a name="GtkStatusbar.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
81
+ <p>
82
+ GtkStatusbar implements
83
+ AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="gtk3-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>
84
+ </div>
85
+ <div class="refsect1">
86
+ <a name="GtkStatusbar.style-properties"></a><h2>Style Properties</h2>
87
+ <pre class="synopsis">
88
+ "<a class="link" href="GtkStatusbar.html#GtkStatusbar--s-shadow-type" title='The "shadow-type" style property'>shadow-type</a>" <a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read
89
+ </pre>
90
+ </div>
91
+ <div class="refsect1">
92
+ <a name="GtkStatusbar.signals"></a><h2>Signals</h2>
93
+ <pre class="synopsis">
94
+ "<a class="link" href="GtkStatusbar.html#GtkStatusbar-text-popped" title='The "text-popped" signal'>text-popped</a>" : <code class="literal">Run Last</code>
95
+ "<a class="link" href="GtkStatusbar.html#GtkStatusbar-text-pushed" title='The "text-pushed" signal'>text-pushed</a>" : <code class="literal">Run Last</code>
96
+ </pre>
97
+ </div>
98
+ <div class="refsect1">
99
+ <a name="GtkStatusbar.description"></a><h2>Description</h2>
100
+ <p>
101
+ A <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> is usually placed along the bottom of an application's
102
+ main <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a>. It may provide a regular commentary of the application's
103
+ status (as is usually the case in a web browser, for example), or may be
104
+ used to simply output a message when the status changes, (when an upload
105
+ is complete in an FTP client, for example).
106
+ </p>
107
+ <p>
108
+ Status bars in GTK+ maintain a stack of messages. The message at
109
+ the top of the each bar's stack is the one that will currently be displayed.
110
+ </p>
111
+ <p>
112
+ Any messages added to a statusbar's stack must specify a
113
+ <span class="emphasis"><em>context id</em></span> that is used to uniquely identify
114
+ the source of a message. This context id can be generated by
115
+ <a class="link" href="GtkStatusbar.html#gtk-statusbar-get-context-id" title="gtk_statusbar_get_context_id ()"><code class="function">gtk_statusbar_get_context_id()</code></a>, given a message and the statusbar that
116
+ it will be added to. Note that messages are stored in a stack, and when
117
+ choosing which message to display, the stack structure is adhered to,
118
+ regardless of the context identifier of a message.
119
+ </p>
120
+ <p>
121
+ One could say that a statusbar maintains one stack of messages for
122
+ display purposes, but allows multiple message producers to maintain
123
+ sub-stacks of the messages they produced (via context ids).
124
+ </p>
125
+ <p>
126
+ Status bars are created using <a class="link" href="GtkStatusbar.html#gtk-statusbar-new" title="gtk_statusbar_new ()"><code class="function">gtk_statusbar_new()</code></a>.
127
+ </p>
128
+ <p>
129
+ Messages are added to the bar's stack with <a class="link" href="GtkStatusbar.html#gtk-statusbar-push" title="gtk_statusbar_push ()"><code class="function">gtk_statusbar_push()</code></a>.
130
+ </p>
131
+ <p>
132
+ The message at the top of the stack can be removed using
133
+ <a class="link" href="GtkStatusbar.html#gtk-statusbar-pop" title="gtk_statusbar_pop ()"><code class="function">gtk_statusbar_pop()</code></a>. A message can be removed from anywhere in the
134
+ stack if its message id was recorded at the time it was added. This
135
+ is done using <a class="link" href="GtkStatusbar.html#gtk-statusbar-remove" title="gtk_statusbar_remove ()"><code class="function">gtk_statusbar_remove()</code></a>.
136
+ </p>
137
+ </div>
138
+ <div class="refsect1">
139
+ <a name="GtkStatusbar.details"></a><h2>Details</h2>
140
+ <div class="refsect2">
141
+ <a name="GtkStatusbar-struct"></a><h3>struct GtkStatusbar</h3>
142
+ <pre class="programlisting">struct GtkStatusbar;</pre>
143
+ </div>
144
+ <hr>
145
+ <div class="refsect2">
146
+ <a name="gtk-statusbar-new"></a><h3>gtk_statusbar_new ()</h3>
147
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_statusbar_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
148
+ <p>
149
+ Creates a new <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> ready for messages.
150
+ </p>
151
+ <div class="variablelist"><table border="0" class="variablelist">
152
+ <colgroup>
153
+ <col align="left" valign="top">
154
+ <col>
155
+ </colgroup>
156
+ <tbody><tr>
157
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
158
+ <td>the new <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a>
159
+ </td>
160
+ </tr></tbody>
161
+ </table></div>
162
+ </div>
163
+ <hr>
164
+ <div class="refsect2">
165
+ <a name="gtk-statusbar-get-context-id"></a><h3>gtk_statusbar_get_context_id ()</h3>
166
+ <pre class="programlisting"><span class="returnvalue">guint</span> gtk_statusbar_get_context_id (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
167
+ <em class="parameter"><code>const <span class="type">gchar</span> *context_description</code></em>);</pre>
168
+ <p>
169
+ Returns a new context identifier, given a description
170
+ of the actual context. Note that the description is
171
+ <span class="emphasis"><em>not</em></span> shown in the UI.
172
+ </p>
173
+ <div class="variablelist"><table border="0" class="variablelist">
174
+ <colgroup>
175
+ <col align="left" valign="top">
176
+ <col>
177
+ </colgroup>
178
+ <tbody>
179
+ <tr>
180
+ <td><p><span class="term"><em class="parameter"><code>statusbar</code></em> :</span></p></td>
181
+ <td>a <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a>
182
+ </td>
183
+ </tr>
184
+ <tr>
185
+ <td><p><span class="term"><em class="parameter"><code>context_description</code></em> :</span></p></td>
186
+ <td>textual description of what context
187
+ the new message is being used in</td>
188
+ </tr>
189
+ <tr>
190
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
191
+ <td>an integer id</td>
192
+ </tr>
193
+ </tbody>
194
+ </table></div>
195
+ </div>
196
+ <hr>
197
+ <div class="refsect2">
198
+ <a name="gtk-statusbar-push"></a><h3>gtk_statusbar_push ()</h3>
199
+ <pre class="programlisting"><span class="returnvalue">guint</span> gtk_statusbar_push (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
200
+ <em class="parameter"><code><span class="type">guint</span> context_id</code></em>,
201
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);</pre>
202
+ <p>
203
+ Pushes a new message onto a statusbar's stack.
204
+ </p>
205
+ <div class="variablelist"><table border="0" class="variablelist">
206
+ <colgroup>
207
+ <col align="left" valign="top">
208
+ <col>
209
+ </colgroup>
210
+ <tbody>
211
+ <tr>
212
+ <td><p><span class="term"><em class="parameter"><code>statusbar</code></em> :</span></p></td>
213
+ <td>a <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a>
214
+ </td>
215
+ </tr>
216
+ <tr>
217
+ <td><p><span class="term"><em class="parameter"><code>context_id</code></em> :</span></p></td>
218
+ <td>the message's context id, as returned by
219
+ <a class="link" href="GtkStatusbar.html#gtk-statusbar-get-context-id" title="gtk_statusbar_get_context_id ()"><code class="function">gtk_statusbar_get_context_id()</code></a>
220
+ </td>
221
+ </tr>
222
+ <tr>
223
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
224
+ <td>the message to add to the statusbar</td>
225
+ </tr>
226
+ <tr>
227
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
228
+ <td>a message id that can be used with
229
+ <a class="link" href="GtkStatusbar.html#gtk-statusbar-remove" title="gtk_statusbar_remove ()"><code class="function">gtk_statusbar_remove()</code></a>.</td>
230
+ </tr>
231
+ </tbody>
232
+ </table></div>
233
+ </div>
234
+ <hr>
235
+ <div class="refsect2">
236
+ <a name="gtk-statusbar-pop"></a><h3>gtk_statusbar_pop ()</h3>
237
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_statusbar_pop (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
238
+ <em class="parameter"><code><span class="type">guint</span> context_id</code></em>);</pre>
239
+ <p>
240
+ Removes the first message in the <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a>'s stack
241
+ with the given context id.
242
+ </p>
243
+ <p>
244
+ Note that this may not change the displayed message, if
245
+ the message at the top of the stack has a different
246
+ context id.
247
+ </p>
248
+ <div class="variablelist"><table border="0" class="variablelist">
249
+ <colgroup>
250
+ <col align="left" valign="top">
251
+ <col>
252
+ </colgroup>
253
+ <tbody>
254
+ <tr>
255
+ <td><p><span class="term"><em class="parameter"><code>statusbar</code></em> :</span></p></td>
256
+ <td>a <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a>
257
+ </td>
258
+ </tr>
259
+ <tr>
260
+ <td><p><span class="term"><em class="parameter"><code>context_id</code></em> :</span></p></td>
261
+ <td>a context identifier</td>
262
+ </tr>
263
+ </tbody>
264
+ </table></div>
265
+ </div>
266
+ <hr>
267
+ <div class="refsect2">
268
+ <a name="gtk-statusbar-remove"></a><h3>gtk_statusbar_remove ()</h3>
269
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_statusbar_remove (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
270
+ <em class="parameter"><code><span class="type">guint</span> context_id</code></em>,
271
+ <em class="parameter"><code><span class="type">guint</span> message_id</code></em>);</pre>
272
+ <p>
273
+ Forces the removal of a message from a statusbar's stack.
274
+ The exact <em class="parameter"><code>context_id</code></em> and <em class="parameter"><code>message_id</code></em> must be specified.
275
+ </p>
276
+ <div class="variablelist"><table border="0" class="variablelist">
277
+ <colgroup>
278
+ <col align="left" valign="top">
279
+ <col>
280
+ </colgroup>
281
+ <tbody>
282
+ <tr>
283
+ <td><p><span class="term"><em class="parameter"><code>statusbar</code></em> :</span></p></td>
284
+ <td>a <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a>
285
+ </td>
286
+ </tr>
287
+ <tr>
288
+ <td><p><span class="term"><em class="parameter"><code>context_id</code></em> :</span></p></td>
289
+ <td>a context identifier</td>
290
+ </tr>
291
+ <tr>
292
+ <td><p><span class="term"><em class="parameter"><code>message_id</code></em> :</span></p></td>
293
+ <td>a message identifier, as returned by <a class="link" href="GtkStatusbar.html#gtk-statusbar-push" title="gtk_statusbar_push ()"><code class="function">gtk_statusbar_push()</code></a>
294
+ </td>
295
+ </tr>
296
+ </tbody>
297
+ </table></div>
298
+ </div>
299
+ <hr>
300
+ <div class="refsect2">
301
+ <a name="gtk-statusbar-remove-all"></a><h3>gtk_statusbar_remove_all ()</h3>
302
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_statusbar_remove_all (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>,
303
+ <em class="parameter"><code><span class="type">guint</span> context_id</code></em>);</pre>
304
+ <p>
305
+ Forces the removal of all messages from a statusbar's
306
+ stack with the exact <em class="parameter"><code>context_id</code></em>.
307
+ </p>
308
+ <div class="variablelist"><table border="0" class="variablelist">
309
+ <colgroup>
310
+ <col align="left" valign="top">
311
+ <col>
312
+ </colgroup>
313
+ <tbody>
314
+ <tr>
315
+ <td><p><span class="term"><em class="parameter"><code>statusbar</code></em> :</span></p></td>
316
+ <td>a <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a>
317
+ </td>
318
+ </tr>
319
+ <tr>
320
+ <td><p><span class="term"><em class="parameter"><code>context_id</code></em> :</span></p></td>
321
+ <td>a context identifier</td>
322
+ </tr>
323
+ </tbody>
324
+ </table></div>
325
+ <p class="since">Since 2.22</p>
326
+ </div>
327
+ <hr>
328
+ <div class="refsect2">
329
+ <a name="gtk-statusbar-get-message-area"></a><h3>gtk_statusbar_get_message_area ()</h3>
330
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_statusbar_get_message_area (<em class="parameter"><code><a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar</code></em>);</pre>
331
+ <p>
332
+ Retrieves the box containing the label widget.
333
+ </p>
334
+ <div class="variablelist"><table border="0" class="variablelist">
335
+ <colgroup>
336
+ <col align="left" valign="top">
337
+ <col>
338
+ </colgroup>
339
+ <tbody>
340
+ <tr>
341
+ <td><p><span class="term"><em class="parameter"><code>statusbar</code></em> :</span></p></td>
342
+ <td>a <a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a>
343
+ </td>
344
+ </tr>
345
+ <tr>
346
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
347
+ <td>a <a class="link" href="GtkBox.html" title="GtkBox"><span class="type">GtkBox</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
348
+ </td>
349
+ </tr>
350
+ </tbody>
351
+ </table></div>
352
+ <p class="since">Since 2.20</p>
353
+ </div>
354
+ </div>
355
+ <div class="refsect1">
356
+ <a name="GtkStatusbar.style-property-details"></a><h2>Style Property Details</h2>
357
+ <div class="refsect2">
358
+ <a name="GtkStatusbar--s-shadow-type"></a><h3>The <code class="literal">"shadow-type"</code> style property</h3>
359
+ <pre class="programlisting"> "shadow-type" <a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read</pre>
360
+ <p>Style of bevel around the statusbar text.</p>
361
+ <p>Default value: GTK_SHADOW_IN</p>
362
+ </div>
363
+ </div>
364
+ <div class="refsect1">
365
+ <a name="GtkStatusbar.signal-details"></a><h2>Signal Details</h2>
366
+ <div class="refsect2">
367
+ <a name="GtkStatusbar-text-popped"></a><h3>The <code class="literal">"text-popped"</code> signal</h3>
368
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar,
369
+ <span class="type">guint</span> context_id,
370
+ <span class="type">gchar</span> *text,
371
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
372
+ <p>
373
+ Is emitted whenever a new message is popped off a statusbar's stack.
374
+ </p>
375
+ <div class="variablelist"><table border="0" class="variablelist">
376
+ <colgroup>
377
+ <col align="left" valign="top">
378
+ <col>
379
+ </colgroup>
380
+ <tbody>
381
+ <tr>
382
+ <td><p><span class="term"><em class="parameter"><code>statusbar</code></em> :</span></p></td>
383
+ <td>the object which received the signal</td>
384
+ </tr>
385
+ <tr>
386
+ <td><p><span class="term"><em class="parameter"><code>context_id</code></em> :</span></p></td>
387
+ <td>the context id of the relevant message/statusbar</td>
388
+ </tr>
389
+ <tr>
390
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
391
+ <td>the message that was just popped</td>
392
+ </tr>
393
+ <tr>
394
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
395
+ <td>user data set when the signal handler was connected.</td>
396
+ </tr>
397
+ </tbody>
398
+ </table></div>
399
+ </div>
400
+ <hr>
401
+ <div class="refsect2">
402
+ <a name="GtkStatusbar-text-pushed"></a><h3>The <code class="literal">"text-pushed"</code> signal</h3>
403
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkStatusbar.html" title="GtkStatusbar"><span class="type">GtkStatusbar</span></a> *statusbar,
404
+ <span class="type">guint</span> context_id,
405
+ <span class="type">gchar</span> *text,
406
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
407
+ <p>
408
+ Is emitted whenever a new message gets pushed onto a statusbar's stack.
409
+ </p>
410
+ <div class="variablelist"><table border="0" class="variablelist">
411
+ <colgroup>
412
+ <col align="left" valign="top">
413
+ <col>
414
+ </colgroup>
415
+ <tbody>
416
+ <tr>
417
+ <td><p><span class="term"><em class="parameter"><code>statusbar</code></em> :</span></p></td>
418
+ <td>the object which received the signal</td>
419
+ </tr>
420
+ <tr>
421
+ <td><p><span class="term"><em class="parameter"><code>context_id</code></em> :</span></p></td>
422
+ <td>the context id of the relevant message/statusbar</td>
423
+ </tr>
424
+ <tr>
425
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
426
+ <td>the message that was pushed</td>
427
+ </tr>
428
+ <tr>
429
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
430
+ <td>user data set when the signal handler was connected.</td>
431
+ </tr>
432
+ </tbody>
433
+ </table></div>
434
+ </div>
435
+ </div>
436
+ </div>
437
+ <div class="footer">
438
+ <hr>
439
+ Generated by GTK-Doc V1.18.1</div>
440
+ </body>
441
+ </html>
@@ -0,0 +1,2534 @@
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>GtkStyle</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
7
+ <link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
8
+ <link rel="up" href="theming.html" title="Part III. Theming in GTK+">
9
+ <link rel="prev" href="gtk3-Resource-Files.html" title="Resource Files">
10
+ <link rel="next" href="gtkobjects.html" title="Part IV. GTK+ Widgets and Objects">
11
+ <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="gtk3-Resource-Files.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="theming.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GTK+ 3 Reference Manual</th>
21
+ <td><a accesskey="n" href="gtkobjects.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#GtkStyle.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkStyle.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkStyle.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkStyle.properties" class="shortcut">Properties</a>
31
+  | 
32
+ <a href="#GtkStyle.signals" class="shortcut">Signals</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="GtkStyle"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="GtkStyle.top_of_page"></a>GtkStyle</span></h2>
40
+ <p>GtkStyle — Deprecated object that holds style information
41
+ for widgets</p>
42
+ </td>
43
+ <td valign="top" align="right"></td>
44
+ </tr></table></div>
45
+ <div class="refsynopsisdiv">
46
+ <a name="GtkStyle.synopsis"></a><h2>Synopsis</h2>
47
+ <pre class="synopsis">
48
+ #include &lt;gtk/gtk.h&gt;
49
+
50
+ #define <a class="link" href="GtkStyle.html#GTK-STYLE-ATTACHED:CAPS" title="GTK_STYLE_ATTACHED()">GTK_STYLE_ATTACHED</a> (style)
51
+ <a class="link" href="GtkStyle.html#GtkStyle-struct" title="GtkStyle">GtkStyle</a>;
52
+ <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="returnvalue">GtkStyle</span></a> * <a class="link" href="GtkStyle.html#gtk-style-new" title="gtk_style_new ()">gtk_style_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
53
+ <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="returnvalue">GtkStyle</span></a> * <a class="link" href="GtkStyle.html#gtk-style-copy" title="gtk_style_copy ()">gtk_style_copy</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>);
54
+ <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="returnvalue">GtkStyle</span></a> * <a class="link" href="GtkStyle.html#gtk-style-attach" title="gtk_style_attach ()">gtk_style_attach</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
55
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);
56
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-style-detach" title="gtk_style_detach ()">gtk_style_detach</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>);
57
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkStyle.html#gtk-style-has-context" title="gtk_style_has_context ()">gtk_style_has_context</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>);
58
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-style-set-background" title="gtk_style_set_background ()">gtk_style_set_background</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
59
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
60
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>);
61
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-style-apply-default-background" title="gtk_style_apply_default_background ()">gtk_style_apply_default_background</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
62
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
63
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
64
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
65
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
66
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
67
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
68
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
69
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkStyle.html#gtk-style-lookup-color" title="gtk_style_lookup_color ()">gtk_style_lookup_color</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
70
+ <em class="parameter"><code>const <span class="type">gchar</span> *color_name</code></em>,
71
+ <em class="parameter"><code><a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
72
+ <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * <a class="link" href="GtkStyle.html#gtk-style-lookup-icon-set" title="gtk_style_lookup_icon_set ()">gtk_style_lookup_icon_set</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
73
+ <em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>);
74
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="GtkStyle.html#gtk-style-render-icon" title="gtk_style_render_icon ()">gtk_style_render_icon</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
75
+ <em class="parameter"><code>const <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
76
+ <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> direction</code></em>,
77
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state</code></em>,
78
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>,
79
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
80
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>);
81
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-style-get-style-property" title="gtk_style_get_style_property ()">gtk_style_get_style_property</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
82
+ <em class="parameter"><code><span class="type">GType</span> widget_type</code></em>,
83
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
84
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);
85
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-style-get-valist" title="gtk_style_get_valist ()">gtk_style_get_valist</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
86
+ <em class="parameter"><code><span class="type">GType</span> widget_type</code></em>,
87
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
88
+ <em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
89
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-style-get" title="gtk_style_get ()">gtk_style_get</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
90
+ <em class="parameter"><code><span class="type">GType</span> widget_type</code></em>,
91
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
92
+ <em class="parameter"><code>...</code></em>);
93
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-arrow" title="gtk_paint_arrow ()">gtk_paint_arrow</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
94
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
95
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
96
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
97
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
98
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
99
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkArrowType" title="enum GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>,
100
+ <em class="parameter"><code><span class="type">gboolean</span> fill</code></em>,
101
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
102
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
103
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
104
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
105
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-box" title="gtk_paint_box ()">gtk_paint_box</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
106
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
107
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
108
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
109
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
110
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
111
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
112
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
113
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
114
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
115
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-box-gap" title="gtk_paint_box_gap ()">gtk_paint_box_gap</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
116
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
117
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
118
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
119
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
120
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
121
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
122
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
123
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
124
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
125
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> gap_side</code></em>,
126
+ <em class="parameter"><code><span class="type">gint</span> gap_x</code></em>,
127
+ <em class="parameter"><code><span class="type">gint</span> gap_width</code></em>);
128
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-check" title="gtk_paint_check ()">gtk_paint_check</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
129
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
130
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
131
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
132
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
133
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
134
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
135
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
136
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
137
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
138
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-diamond" title="gtk_paint_diamond ()">gtk_paint_diamond</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
139
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
140
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
141
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
142
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
143
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
144
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
145
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
146
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
147
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
148
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-extension" title="gtk_paint_extension ()">gtk_paint_extension</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
149
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
150
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
151
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
152
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
153
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
154
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
155
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
156
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
157
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
158
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> gap_side</code></em>);
159
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-flat-box" title="gtk_paint_flat_box ()">gtk_paint_flat_box</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
160
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
161
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
162
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
163
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
164
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
165
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
166
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
167
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
168
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
169
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-focus" title="gtk_paint_focus ()">gtk_paint_focus</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
170
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
171
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
172
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
173
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
174
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
175
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
176
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
177
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
178
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-handle" title="gtk_paint_handle ()">gtk_paint_handle</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
179
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
180
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
181
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
182
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
183
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
184
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
185
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
186
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
187
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
188
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);
189
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-hline" title="gtk_paint_hline ()">gtk_paint_hline</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
190
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
191
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
192
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
193
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
194
+ <em class="parameter"><code><span class="type">gint</span> x1</code></em>,
195
+ <em class="parameter"><code><span class="type">gint</span> x2</code></em>,
196
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>);
197
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-option" title="gtk_paint_option ()">gtk_paint_option</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
198
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
199
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
200
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
201
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
202
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
203
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
204
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
205
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
206
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
207
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-shadow" title="gtk_paint_shadow ()">gtk_paint_shadow</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
208
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
209
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
210
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
211
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
212
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
213
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
214
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
215
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
216
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
217
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-shadow-gap" title="gtk_paint_shadow_gap ()">gtk_paint_shadow_gap</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
218
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
219
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
220
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
221
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
222
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
223
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
224
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
225
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
226
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
227
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> gap_side</code></em>,
228
+ <em class="parameter"><code><span class="type">gint</span> gap_x</code></em>,
229
+ <em class="parameter"><code><span class="type">gint</span> gap_width</code></em>);
230
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-slider" title="gtk_paint_slider ()">gtk_paint_slider</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
231
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
232
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
233
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
234
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
235
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
236
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
237
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
238
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
239
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
240
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);
241
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-spinner" title="gtk_paint_spinner ()">gtk_paint_spinner</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
242
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
243
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
244
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
245
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
246
+ <em class="parameter"><code><span class="type">guint</span> step</code></em>,
247
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
248
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
249
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
250
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
251
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-tab" title="gtk_paint_tab ()">gtk_paint_tab</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
252
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
253
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
254
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
255
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
256
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
257
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
258
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
259
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
260
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
261
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-vline" title="gtk_paint_vline ()">gtk_paint_vline</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
262
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
263
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
264
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
265
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
266
+ <em class="parameter"><code><span class="type">gint</span> y1_</code></em>,
267
+ <em class="parameter"><code><span class="type">gint</span> y2_</code></em>,
268
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>);
269
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-expander" title="gtk_paint_expander ()">gtk_paint_expander</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
270
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
271
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
272
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
273
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
274
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
275
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
276
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkExpanderStyle" title="enum GtkExpanderStyle"><span class="type">GtkExpanderStyle</span></a> expander_style</code></em>);
277
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-layout" title="gtk_paint_layout ()">gtk_paint_layout</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
278
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
279
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
280
+ <em class="parameter"><code><span class="type">gboolean</span> use_text</code></em>,
281
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
282
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
283
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
284
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
285
+ <em class="parameter"><code><span class="type">PangoLayout</span> *layout</code></em>);
286
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-paint-resize-grip" title="gtk_paint_resize_grip ()">gtk_paint_resize_grip</a> (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
287
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
288
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
289
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
290
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
291
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindowEdge"><span class="type">GdkWindowEdge</span></a> edge</code></em>,
292
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
293
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
294
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
295
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);
296
+ <span class="returnvalue">void</span> <a class="link" href="GtkStyle.html#gtk-draw-insertion-cursor" title="gtk_draw_insertion_cursor ()">gtk_draw_insertion_cursor</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
297
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
298
+ <em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *location</code></em>,
299
+ <em class="parameter"><code><span class="type">gboolean</span> is_primary</code></em>,
300
+ <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> direction</code></em>,
301
+ <em class="parameter"><code><span class="type">gboolean</span> draw_arrow</code></em>);
302
+
303
+ <a class="link" href="GtkStyle.html#GtkRcProperty" title="GtkRcProperty">GtkRcProperty</a>;
304
+ <span class="returnvalue">gboolean</span> (<a class="link" href="GtkStyle.html#GtkRcPropertyParser" title="GtkRcPropertyParser ()">*GtkRcPropertyParser</a>) (<em class="parameter"><code>const <span class="type">GParamSpec</span> *pspec</code></em>,
305
+ <em class="parameter"><code>const <span class="type">GString</span> *rc_string</code></em>,
306
+ <em class="parameter"><code><span class="type">GValue</span> *property_value</code></em>);
307
+ </pre>
308
+ </div>
309
+ <div class="refsect1">
310
+ <a name="GtkStyle.object-hierarchy"></a><h2>Object Hierarchy</h2>
311
+ <pre class="synopsis">
312
+ GObject
313
+ +----GtkStyle
314
+ </pre>
315
+ </div>
316
+ <div class="refsect1">
317
+ <a name="GtkStyle.properties"></a><h2>Properties</h2>
318
+ <pre class="synopsis">
319
+ "<a class="link" href="GtkStyle.html#GtkStyle--context" title='The "context" property'>context</a>" <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a>* : Read / Write / Construct Only
320
+ </pre>
321
+ </div>
322
+ <div class="refsect1">
323
+ <a name="GtkStyle.signals"></a><h2>Signals</h2>
324
+ <pre class="synopsis">
325
+ "<a class="link" href="GtkStyle.html#GtkStyle-realize" title='The "realize" signal'>realize</a>" : <code class="literal">Run First</code>
326
+ "<a class="link" href="GtkStyle.html#GtkStyle-unrealize" title='The "unrealize" signal'>unrealize</a>" : <code class="literal">Run First</code>
327
+ </pre>
328
+ </div>
329
+ <div class="refsect1">
330
+ <a name="GtkStyle.description"></a><h2>Description</h2>
331
+ <p>
332
+ A <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> object encapsulates the information that provides the look and
333
+ feel for a widget.
334
+ </p>
335
+ <p>
336
+ </p>
337
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
338
+ <h3 class="title">Warning</h3>
339
+ In GTK+ 3.0, GtkStyle has been deprecated and replaced by <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a>.
340
+ </div>
341
+ <p>
342
+ </p>
343
+ <p>
344
+ Each <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> has an associated <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> object that is used when
345
+ rendering that widget. Also, a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> holds information for the five
346
+ possible widget states though not every widget supports all five
347
+ states; see <a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a>.
348
+ </p>
349
+ <p>
350
+ Usually the <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> for a widget is the same as the default style that
351
+ is set by GTK+ and modified the theme engine.
352
+ </p>
353
+ <p>
354
+ Usually applications should not need to use or modify the <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> of
355
+ their widgets.
356
+ </p>
357
+ </div>
358
+ <div class="refsect1">
359
+ <a name="GtkStyle.details"></a><h2>Details</h2>
360
+ <div class="refsect2">
361
+ <a name="GTK-STYLE-ATTACHED:CAPS"></a><h3>GTK_STYLE_ATTACHED()</h3>
362
+ <pre class="programlisting">#define GTK_STYLE_ATTACHED(style) (GTK_STYLE (style)-&gt;attach_count &gt; 0)
363
+ </pre>
364
+ <div class="variablelist"><table border="0" class="variablelist">
365
+ <colgroup>
366
+ <col align="left" valign="top">
367
+ <col>
368
+ </colgroup>
369
+ <tbody>
370
+ <tr>
371
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
372
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>.</td>
373
+ </tr>
374
+ <tr>
375
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
376
+ <td>whether the style is attached to a window.</td>
377
+ </tr>
378
+ </tbody>
379
+ </table></div>
380
+ </div>
381
+ <hr>
382
+ <div class="refsect2">
383
+ <a name="GtkStyle-struct"></a><h3>GtkStyle</h3>
384
+ <pre class="programlisting">typedef struct {
385
+ GdkColor fg[5];
386
+ GdkColor bg[5];
387
+ GdkColor light[5];
388
+ GdkColor dark[5];
389
+ GdkColor mid[5];
390
+ GdkColor text[5];
391
+ GdkColor base[5];
392
+ GdkColor text_aa[5]; /* Halfway between text/base */
393
+
394
+ GdkColor black;
395
+ GdkColor white;
396
+ PangoFontDescription *font_desc;
397
+
398
+ gint xthickness;
399
+ gint ythickness;
400
+
401
+ cairo_pattern_t *background[5];
402
+ } GtkStyle;
403
+ </pre>
404
+ </div>
405
+ <hr>
406
+ <div class="refsect2">
407
+ <a name="gtk-style-new"></a><h3>gtk_style_new ()</h3>
408
+ <pre class="programlisting"><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="returnvalue">GtkStyle</span></a> * gtk_style_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
409
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
410
+ <h3 class="title">Warning</h3>
411
+ <p><code class="literal">gtk_style_new</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a></p>
412
+ </div>
413
+ <p>
414
+ Creates a new <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>.
415
+ </p>
416
+ <div class="variablelist"><table border="0" class="variablelist">
417
+ <colgroup>
418
+ <col align="left" valign="top">
419
+ <col>
420
+ </colgroup>
421
+ <tbody><tr>
422
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
423
+ <td>a new <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>.</td>
424
+ </tr></tbody>
425
+ </table></div>
426
+ </div>
427
+ <hr>
428
+ <div class="refsect2">
429
+ <a name="gtk-style-copy"></a><h3>gtk_style_copy ()</h3>
430
+ <pre class="programlisting"><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="returnvalue">GtkStyle</span></a> * gtk_style_copy (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>);</pre>
431
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
432
+ <h3 class="title">Warning</h3>
433
+ <p><code class="literal">gtk_style_copy</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a> instead</p>
434
+ </div>
435
+ <p>
436
+ Creates a copy of the passed in <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> object.
437
+ </p>
438
+ <div class="variablelist"><table border="0" class="variablelist">
439
+ <colgroup>
440
+ <col align="left" valign="top">
441
+ <col>
442
+ </colgroup>
443
+ <tbody>
444
+ <tr>
445
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
446
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
447
+ </td>
448
+ </tr>
449
+ <tr>
450
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
451
+ <td>a copy of <em class="parameter"><code>style</code></em>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
452
+ </td>
453
+ </tr>
454
+ </tbody>
455
+ </table></div>
456
+ </div>
457
+ <hr>
458
+ <div class="refsect2">
459
+ <a name="gtk-style-attach"></a><h3>gtk_style_attach ()</h3>
460
+ <pre class="programlisting"><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="returnvalue">GtkStyle</span></a> * gtk_style_attach (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
461
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
462
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
463
+ <h3 class="title">Warning</h3>
464
+ <p><code class="literal">gtk_style_attach</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkWidget.html#gtk-widget-style-attach" title="gtk_widget_style_attach ()"><code class="function">gtk_widget_style_attach()</code></a> instead</p>
465
+ </div>
466
+ <p>
467
+ Attaches a style to a window; this process allocates the
468
+ colors and creates the GC's for the style - it specializes
469
+ it to a particular visual. The process may involve the creation
470
+ of a new style if the style has already been attached to a
471
+ window with a different style and visual.
472
+ </p>
473
+ <p>
474
+ Since this function may return a new object, you have to use it
475
+ in the following way:
476
+ <code class="literal">style = gtk_style_attach (style, window)</code>
477
+ </p>
478
+ <div class="variablelist"><table border="0" class="variablelist">
479
+ <colgroup>
480
+ <col align="left" valign="top">
481
+ <col>
482
+ </colgroup>
483
+ <tbody>
484
+ <tr>
485
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
486
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>.</td>
487
+ </tr>
488
+ <tr>
489
+ <td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
490
+ <td>a <a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.</td>
491
+ </tr>
492
+ <tr>
493
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
494
+ <td>Either <em class="parameter"><code>style</code></em>, or a newly-created <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>.
495
+ If the style is newly created, the style parameter
496
+ will be unref'ed, and the new style will have
497
+ a reference count belonging to the caller.</td>
498
+ </tr>
499
+ </tbody>
500
+ </table></div>
501
+ </div>
502
+ <hr>
503
+ <div class="refsect2">
504
+ <a name="gtk-style-detach"></a><h3>gtk_style_detach ()</h3>
505
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_style_detach (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>);</pre>
506
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
507
+ <h3 class="title">Warning</h3>
508
+ <p><code class="literal">gtk_style_detach</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a> instead</p>
509
+ </div>
510
+ <p>
511
+ Detaches a style from a window. If the style is not attached
512
+ to any windows anymore, it is unrealized. See <a class="link" href="GtkStyle.html#gtk-style-attach" title="gtk_style_attach ()"><code class="function">gtk_style_attach()</code></a>.
513
+ </p>
514
+ <div class="variablelist"><table border="0" class="variablelist">
515
+ <colgroup>
516
+ <col align="left" valign="top">
517
+ <col>
518
+ </colgroup>
519
+ <tbody><tr>
520
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
521
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
522
+ </td>
523
+ </tr></tbody>
524
+ </table></div>
525
+ </div>
526
+ <hr>
527
+ <div class="refsect2">
528
+ <a name="gtk-style-has-context"></a><h3>gtk_style_has_context ()</h3>
529
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_style_has_context (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>);</pre>
530
+ <p>
531
+ Returns whether <em class="parameter"><code>style</code></em> has an associated <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a>.
532
+ </p>
533
+ <div class="variablelist"><table border="0" class="variablelist">
534
+ <colgroup>
535
+ <col align="left" valign="top">
536
+ <col>
537
+ </colgroup>
538
+ <tbody>
539
+ <tr>
540
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
541
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
542
+ </td>
543
+ </tr>
544
+ <tr>
545
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
546
+ <td>
547
+ <code class="literal">TRUE</code> if <em class="parameter"><code>style</code></em> has a <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a>
548
+ </td>
549
+ </tr>
550
+ </tbody>
551
+ </table></div>
552
+ <p class="since">Since 3.0</p>
553
+ </div>
554
+ <hr>
555
+ <div class="refsect2">
556
+ <a name="gtk-style-set-background"></a><h3>gtk_style_set_background ()</h3>
557
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_style_set_background (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
558
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
559
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>);</pre>
560
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
561
+ <h3 class="title">Warning</h3>
562
+ <p><code class="literal">gtk_style_set_background</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-style-context-set-background" title="gtk_style_context_set_background ()"><code class="function">gtk_style_context_set_background()</code></a> instead</p>
563
+ </div>
564
+ <p>
565
+ Sets the background of <em class="parameter"><code>window</code></em> to the background color or pixmap
566
+ specified by <em class="parameter"><code>style</code></em> for the given state.
567
+ </p>
568
+ <div class="variablelist"><table border="0" class="variablelist">
569
+ <colgroup>
570
+ <col align="left" valign="top">
571
+ <col>
572
+ </colgroup>
573
+ <tbody>
574
+ <tr>
575
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
576
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
577
+ </td>
578
+ </tr>
579
+ <tr>
580
+ <td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
581
+ <td>a <a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>
582
+ </td>
583
+ </tr>
584
+ <tr>
585
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
586
+ <td>a state</td>
587
+ </tr>
588
+ </tbody>
589
+ </table></div>
590
+ </div>
591
+ <hr>
592
+ <div class="refsect2">
593
+ <a name="gtk-style-apply-default-background"></a><h3>gtk_style_apply_default_background ()</h3>
594
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_style_apply_default_background (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
595
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
596
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
597
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
598
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
599
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
600
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
601
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
602
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
603
+ <h3 class="title">Warning</h3>
604
+ <p><code class="literal">gtk_style_apply_default_background</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a> instead</p>
605
+ </div>
606
+ </div>
607
+ <hr>
608
+ <div class="refsect2">
609
+ <a name="gtk-style-lookup-color"></a><h3>gtk_style_lookup_color ()</h3>
610
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_style_lookup_color (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
611
+ <em class="parameter"><code>const <span class="type">gchar</span> *color_name</code></em>,
612
+ <em class="parameter"><code><a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
613
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
614
+ <h3 class="title">Warning</h3>
615
+ <p><code class="literal">gtk_style_lookup_color</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-style-context-lookup-color" title="gtk_style_context_lookup_color ()"><code class="function">gtk_style_context_lookup_color()</code></a> instead</p>
616
+ </div>
617
+ <p>
618
+ Looks up <em class="parameter"><code>color_name</code></em> in the style's logical color mappings,
619
+ filling in <em class="parameter"><code>color</code></em> and returning <code class="literal">TRUE</code> if found, otherwise
620
+ returning <code class="literal">FALSE</code>. Do not cache the found mapping, because
621
+ it depends on the <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> and might change when a theme
622
+ switch occurs.
623
+ </p>
624
+ <div class="variablelist"><table border="0" class="variablelist">
625
+ <colgroup>
626
+ <col align="left" valign="top">
627
+ <col>
628
+ </colgroup>
629
+ <tbody>
630
+ <tr>
631
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
632
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
633
+ </td>
634
+ </tr>
635
+ <tr>
636
+ <td><p><span class="term"><em class="parameter"><code>color_name</code></em> :</span></p></td>
637
+ <td>the name of the logical color to look up</td>
638
+ </tr>
639
+ <tr>
640
+ <td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
641
+ <td>the <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a> to fill in. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
642
+ </td>
643
+ </tr>
644
+ <tr>
645
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
646
+ <td>
647
+ <code class="literal">TRUE</code> if the mapping was found.</td>
648
+ </tr>
649
+ </tbody>
650
+ </table></div>
651
+ <p class="since">Since 2.10</p>
652
+ </div>
653
+ <hr>
654
+ <div class="refsect2">
655
+ <a name="gtk-style-lookup-icon-set"></a><h3>gtk_style_lookup_icon_set ()</h3>
656
+ <pre class="programlisting"><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * gtk_style_lookup_icon_set (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
657
+ <em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>);</pre>
658
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
659
+ <h3 class="title">Warning</h3>
660
+ <p><code class="literal">gtk_style_lookup_icon_set</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-style-context-lookup-icon-set" title="gtk_style_context_lookup_icon_set ()"><code class="function">gtk_style_context_lookup_icon_set()</code></a> instead</p>
661
+ </div>
662
+ <p>
663
+ Looks up <em class="parameter"><code>stock_id</code></em> in the icon factories associated with <em class="parameter"><code>style</code></em>
664
+ and the default icon factory, returning an icon set if found,
665
+ otherwise <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
666
+ </p>
667
+ <div class="variablelist"><table border="0" class="variablelist">
668
+ <colgroup>
669
+ <col align="left" valign="top">
670
+ <col>
671
+ </colgroup>
672
+ <tbody>
673
+ <tr>
674
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
675
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
676
+ </td>
677
+ </tr>
678
+ <tr>
679
+ <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
680
+ <td>an icon name</td>
681
+ </tr>
682
+ <tr>
683
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
684
+ <td>icon set of <em class="parameter"><code>stock_id</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
685
+ </td>
686
+ </tr>
687
+ </tbody>
688
+ </table></div>
689
+ </div>
690
+ <hr>
691
+ <div class="refsect2">
692
+ <a name="gtk-style-render-icon"></a><h3>gtk_style_render_icon ()</h3>
693
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_style_render_icon (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
694
+ <em class="parameter"><code>const <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
695
+ <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> direction</code></em>,
696
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state</code></em>,
697
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>,
698
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
699
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>);</pre>
700
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
701
+ <h3 class="title">Warning</h3>
702
+ <p><code class="literal">gtk_style_render_icon</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-icon-pixbuf" title="gtk_render_icon_pixbuf ()"><code class="function">gtk_render_icon_pixbuf()</code></a> instead</p>
703
+ </div>
704
+ <p>
705
+ Renders the icon specified by <em class="parameter"><code>source</code></em> at the given <em class="parameter"><code>size</code></em>
706
+ according to the given parameters and returns the result in a
707
+ pixbuf.
708
+ </p>
709
+ <div class="variablelist"><table border="0" class="variablelist">
710
+ <colgroup>
711
+ <col align="left" valign="top">
712
+ <col>
713
+ </colgroup>
714
+ <tbody>
715
+ <tr>
716
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
717
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
718
+ </td>
719
+ </tr>
720
+ <tr>
721
+ <td><p><span class="term"><em class="parameter"><code>source</code></em> :</span></p></td>
722
+ <td>the <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> specifying the icon to render</td>
723
+ </tr>
724
+ <tr>
725
+ <td><p><span class="term"><em class="parameter"><code>direction</code></em> :</span></p></td>
726
+ <td>a text direction</td>
727
+ </tr>
728
+ <tr>
729
+ <td><p><span class="term"><em class="parameter"><code>state</code></em> :</span></p></td>
730
+ <td>a state</td>
731
+ </tr>
732
+ <tr>
733
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
734
+ <td>the size to render the icon at. A size of
735
+ (GtkIconSize)-1 means render at the size of the source and
736
+ don't scale. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
737
+ </td>
738
+ </tr>
739
+ <tr>
740
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
741
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
742
+ </td>
743
+ </tr>
744
+ <tr>
745
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
746
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
747
+ </td>
748
+ </tr>
749
+ <tr>
750
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
751
+ <td>a newly-created <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
752
+ containing the rendered icon. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
753
+ </td>
754
+ </tr>
755
+ </tbody>
756
+ </table></div>
757
+ </div>
758
+ <hr>
759
+ <div class="refsect2">
760
+ <a name="gtk-style-get-style-property"></a><h3>gtk_style_get_style_property ()</h3>
761
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_style_get_style_property (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
762
+ <em class="parameter"><code><span class="type">GType</span> widget_type</code></em>,
763
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
764
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);</pre>
765
+ <p>
766
+ Queries the value of a style property corresponding to a
767
+ widget class is in the given style.
768
+ </p>
769
+ <div class="variablelist"><table border="0" class="variablelist">
770
+ <colgroup>
771
+ <col align="left" valign="top">
772
+ <col>
773
+ </colgroup>
774
+ <tbody>
775
+ <tr>
776
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
777
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
778
+ </td>
779
+ </tr>
780
+ <tr>
781
+ <td><p><span class="term"><em class="parameter"><code>widget_type</code></em> :</span></p></td>
782
+ <td>the <span class="type">GType</span> of a descendant of <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>
783
+ </td>
784
+ </tr>
785
+ <tr>
786
+ <td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
787
+ <td>the name of the style property to get</td>
788
+ </tr>
789
+ <tr>
790
+ <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
791
+ <td>a <span class="type">GValue</span> where the value of the property being
792
+ queried will be stored</td>
793
+ </tr>
794
+ </tbody>
795
+ </table></div>
796
+ <p class="since">Since 2.16</p>
797
+ </div>
798
+ <hr>
799
+ <div class="refsect2">
800
+ <a name="gtk-style-get-valist"></a><h3>gtk_style_get_valist ()</h3>
801
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_style_get_valist (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
802
+ <em class="parameter"><code><span class="type">GType</span> widget_type</code></em>,
803
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
804
+ <em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
805
+ <p>
806
+ Non-vararg variant of <a class="link" href="GtkStyle.html#gtk-style-get" title="gtk_style_get ()"><code class="function">gtk_style_get()</code></a>.
807
+ Used primarily by language bindings.
808
+ </p>
809
+ <div class="variablelist"><table border="0" class="variablelist">
810
+ <colgroup>
811
+ <col align="left" valign="top">
812
+ <col>
813
+ </colgroup>
814
+ <tbody>
815
+ <tr>
816
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
817
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
818
+ </td>
819
+ </tr>
820
+ <tr>
821
+ <td><p><span class="term"><em class="parameter"><code>widget_type</code></em> :</span></p></td>
822
+ <td>the <span class="type">GType</span> of a descendant of <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>
823
+ </td>
824
+ </tr>
825
+ <tr>
826
+ <td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
827
+ <td>the name of the first style property to get</td>
828
+ </tr>
829
+ <tr>
830
+ <td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
831
+ <td>a <span class="type">va_list</span> of pairs of property names and
832
+ locations to return the property values, starting with the
833
+ location for <em class="parameter"><code>first_property_name</code></em>.</td>
834
+ </tr>
835
+ </tbody>
836
+ </table></div>
837
+ <p class="since">Since 2.16</p>
838
+ </div>
839
+ <hr>
840
+ <div class="refsect2">
841
+ <a name="gtk-style-get"></a><h3>gtk_style_get ()</h3>
842
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_style_get (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
843
+ <em class="parameter"><code><span class="type">GType</span> widget_type</code></em>,
844
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
845
+ <em class="parameter"><code>...</code></em>);</pre>
846
+ <p>
847
+ Gets the values of a multiple style properties for <em class="parameter"><code>widget_type</code></em>
848
+ from <em class="parameter"><code>style</code></em>.
849
+ </p>
850
+ <div class="variablelist"><table border="0" class="variablelist">
851
+ <colgroup>
852
+ <col align="left" valign="top">
853
+ <col>
854
+ </colgroup>
855
+ <tbody>
856
+ <tr>
857
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
858
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
859
+ </td>
860
+ </tr>
861
+ <tr>
862
+ <td><p><span class="term"><em class="parameter"><code>widget_type</code></em> :</span></p></td>
863
+ <td>the <span class="type">GType</span> of a descendant of <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>
864
+ </td>
865
+ </tr>
866
+ <tr>
867
+ <td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
868
+ <td>the name of the first style property to get</td>
869
+ </tr>
870
+ <tr>
871
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
872
+ <td>pairs of property names and locations to
873
+ return the property values, starting with the location for
874
+ <em class="parameter"><code>first_property_name</code></em>, terminated by <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.</td>
875
+ </tr>
876
+ </tbody>
877
+ </table></div>
878
+ <p class="since">Since 2.16</p>
879
+ </div>
880
+ <hr>
881
+ <div class="refsect2">
882
+ <a name="gtk-paint-arrow"></a><h3>gtk_paint_arrow ()</h3>
883
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_arrow (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
884
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
885
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
886
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
887
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
888
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
889
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkArrowType" title="enum GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>,
890
+ <em class="parameter"><code><span class="type">gboolean</span> fill</code></em>,
891
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
892
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
893
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
894
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
895
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
896
+ <h3 class="title">Warning</h3>
897
+ <p><code class="literal">gtk_paint_arrow</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-arrow" title="gtk_render_arrow ()"><code class="function">gtk_render_arrow()</code></a> instead</p>
898
+ </div>
899
+ <p>
900
+ Draws an arrow in the given rectangle on <em class="parameter"><code>cr</code></em> using the given
901
+ parameters. <em class="parameter"><code>arrow_type</code></em> determines the direction of the arrow.
902
+ </p>
903
+ <div class="variablelist"><table border="0" class="variablelist">
904
+ <colgroup>
905
+ <col align="left" valign="top">
906
+ <col>
907
+ </colgroup>
908
+ <tbody>
909
+ <tr>
910
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
911
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
912
+ </td>
913
+ </tr>
914
+ <tr>
915
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
916
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
917
+ </td>
918
+ </tr>
919
+ <tr>
920
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
921
+ <td>a state</td>
922
+ </tr>
923
+ <tr>
924
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
925
+ <td>the type of shadow to draw</td>
926
+ </tr>
927
+ <tr>
928
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
929
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
930
+ </td>
931
+ </tr>
932
+ <tr>
933
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
934
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
935
+ </td>
936
+ </tr>
937
+ <tr>
938
+ <td><p><span class="term"><em class="parameter"><code>arrow_type</code></em> :</span></p></td>
939
+ <td>the type of arrow to draw</td>
940
+ </tr>
941
+ <tr>
942
+ <td><p><span class="term"><em class="parameter"><code>fill</code></em> :</span></p></td>
943
+ <td>
944
+ <code class="literal">TRUE</code> if the arrow tip should be filled</td>
945
+ </tr>
946
+ <tr>
947
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
948
+ <td>x origin of the rectangle to draw the arrow in</td>
949
+ </tr>
950
+ <tr>
951
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
952
+ <td>y origin of the rectangle to draw the arrow in</td>
953
+ </tr>
954
+ <tr>
955
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
956
+ <td>width of the rectangle to draw the arrow in</td>
957
+ </tr>
958
+ <tr>
959
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
960
+ <td>height of the rectangle to draw the arrow in</td>
961
+ </tr>
962
+ </tbody>
963
+ </table></div>
964
+ </div>
965
+ <hr>
966
+ <div class="refsect2">
967
+ <a name="gtk-paint-box"></a><h3>gtk_paint_box ()</h3>
968
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_box (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
969
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
970
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
971
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
972
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
973
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
974
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
975
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
976
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
977
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
978
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
979
+ <h3 class="title">Warning</h3>
980
+ <p><code class="literal">gtk_paint_box</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-frame" title="gtk_render_frame ()"><code class="function">gtk_render_frame()</code></a> and <a class="link" href="GtkStyleContext.html#gtk-render-background" title="gtk_render_background ()"><code class="function">gtk_render_background()</code></a> instead</p>
981
+ </div>
982
+ <p>
983
+ Draws a box on <em class="parameter"><code>cr</code></em> with the given parameters.
984
+ </p>
985
+ <div class="variablelist"><table border="0" class="variablelist">
986
+ <colgroup>
987
+ <col align="left" valign="top">
988
+ <col>
989
+ </colgroup>
990
+ <tbody>
991
+ <tr>
992
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
993
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
994
+ </td>
995
+ </tr>
996
+ <tr>
997
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
998
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
999
+ </td>
1000
+ </tr>
1001
+ <tr>
1002
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1003
+ <td>a state</td>
1004
+ </tr>
1005
+ <tr>
1006
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1007
+ <td>the type of shadow to draw</td>
1008
+ </tr>
1009
+ <tr>
1010
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1011
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1012
+ </td>
1013
+ </tr>
1014
+ <tr>
1015
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1016
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1017
+ </td>
1018
+ </tr>
1019
+ <tr>
1020
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1021
+ <td>x origin of the box</td>
1022
+ </tr>
1023
+ <tr>
1024
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1025
+ <td>y origin of the box</td>
1026
+ </tr>
1027
+ <tr>
1028
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1029
+ <td>the width of the box</td>
1030
+ </tr>
1031
+ <tr>
1032
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1033
+ <td>the height of the box</td>
1034
+ </tr>
1035
+ </tbody>
1036
+ </table></div>
1037
+ </div>
1038
+ <hr>
1039
+ <div class="refsect2">
1040
+ <a name="gtk-paint-box-gap"></a><h3>gtk_paint_box_gap ()</h3>
1041
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_box_gap (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1042
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1043
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1044
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1045
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1046
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1047
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1048
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1049
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1050
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
1051
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> gap_side</code></em>,
1052
+ <em class="parameter"><code><span class="type">gint</span> gap_x</code></em>,
1053
+ <em class="parameter"><code><span class="type">gint</span> gap_width</code></em>);</pre>
1054
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1055
+ <h3 class="title">Warning</h3>
1056
+ <p><code class="literal">gtk_paint_box_gap</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-frame-gap" title="gtk_render_frame_gap ()"><code class="function">gtk_render_frame_gap()</code></a> instead</p>
1057
+ </div>
1058
+ <p>
1059
+ Draws a box in <em class="parameter"><code>cr</code></em> using the given style and state and shadow type,
1060
+ leaving a gap in one side.
1061
+ </p>
1062
+ <div class="variablelist"><table border="0" class="variablelist">
1063
+ <colgroup>
1064
+ <col align="left" valign="top">
1065
+ <col>
1066
+ </colgroup>
1067
+ <tbody>
1068
+ <tr>
1069
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1070
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1071
+ </td>
1072
+ </tr>
1073
+ <tr>
1074
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1075
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1076
+ </td>
1077
+ </tr>
1078
+ <tr>
1079
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1080
+ <td>a state</td>
1081
+ </tr>
1082
+ <tr>
1083
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1084
+ <td>type of shadow to draw</td>
1085
+ </tr>
1086
+ <tr>
1087
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1088
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1089
+ </td>
1090
+ </tr>
1091
+ <tr>
1092
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1093
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1094
+ </td>
1095
+ </tr>
1096
+ <tr>
1097
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1098
+ <td>x origin of the rectangle</td>
1099
+ </tr>
1100
+ <tr>
1101
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1102
+ <td>y origin of the rectangle</td>
1103
+ </tr>
1104
+ <tr>
1105
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1106
+ <td>width of the rectangle</td>
1107
+ </tr>
1108
+ <tr>
1109
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1110
+ <td>width of the rectangle</td>
1111
+ </tr>
1112
+ <tr>
1113
+ <td><p><span class="term"><em class="parameter"><code>gap_side</code></em> :</span></p></td>
1114
+ <td>side in which to leave the gap</td>
1115
+ </tr>
1116
+ <tr>
1117
+ <td><p><span class="term"><em class="parameter"><code>gap_x</code></em> :</span></p></td>
1118
+ <td>starting position of the gap</td>
1119
+ </tr>
1120
+ <tr>
1121
+ <td><p><span class="term"><em class="parameter"><code>gap_width</code></em> :</span></p></td>
1122
+ <td>width of the gap</td>
1123
+ </tr>
1124
+ </tbody>
1125
+ </table></div>
1126
+ </div>
1127
+ <hr>
1128
+ <div class="refsect2">
1129
+ <a name="gtk-paint-check"></a><h3>gtk_paint_check ()</h3>
1130
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_check (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1131
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1132
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1133
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1134
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1135
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1136
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1137
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1138
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1139
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
1140
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1141
+ <h3 class="title">Warning</h3>
1142
+ <p><code class="literal">gtk_paint_check</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-check" title="gtk_render_check ()"><code class="function">gtk_render_check()</code></a> instead</p>
1143
+ </div>
1144
+ <p>
1145
+ Draws a check button indicator in the given rectangle on <em class="parameter"><code>cr</code></em> with
1146
+ the given parameters.
1147
+ </p>
1148
+ <div class="variablelist"><table border="0" class="variablelist">
1149
+ <colgroup>
1150
+ <col align="left" valign="top">
1151
+ <col>
1152
+ </colgroup>
1153
+ <tbody>
1154
+ <tr>
1155
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1156
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1157
+ </td>
1158
+ </tr>
1159
+ <tr>
1160
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1161
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1162
+ </td>
1163
+ </tr>
1164
+ <tr>
1165
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1166
+ <td>a state</td>
1167
+ </tr>
1168
+ <tr>
1169
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1170
+ <td>the type of shadow to draw</td>
1171
+ </tr>
1172
+ <tr>
1173
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1174
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1175
+ </td>
1176
+ </tr>
1177
+ <tr>
1178
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1179
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1180
+ </td>
1181
+ </tr>
1182
+ <tr>
1183
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1184
+ <td>x origin of the rectangle to draw the check in</td>
1185
+ </tr>
1186
+ <tr>
1187
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1188
+ <td>y origin of the rectangle to draw the check in</td>
1189
+ </tr>
1190
+ <tr>
1191
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1192
+ <td>the width of the rectangle to draw the check in</td>
1193
+ </tr>
1194
+ <tr>
1195
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1196
+ <td>the height of the rectangle to draw the check in</td>
1197
+ </tr>
1198
+ </tbody>
1199
+ </table></div>
1200
+ </div>
1201
+ <hr>
1202
+ <div class="refsect2">
1203
+ <a name="gtk-paint-diamond"></a><h3>gtk_paint_diamond ()</h3>
1204
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_diamond (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1205
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1206
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1207
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1208
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1209
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1210
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1211
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1212
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1213
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
1214
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1215
+ <h3 class="title">Warning</h3>
1216
+ <p><code class="literal">gtk_paint_diamond</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use cairo instead</p>
1217
+ </div>
1218
+ <p>
1219
+ Draws a diamond in the given rectangle on <em class="parameter"><code>window</code></em> using the given
1220
+ parameters.
1221
+ </p>
1222
+ <div class="variablelist"><table border="0" class="variablelist">
1223
+ <colgroup>
1224
+ <col align="left" valign="top">
1225
+ <col>
1226
+ </colgroup>
1227
+ <tbody>
1228
+ <tr>
1229
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1230
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1231
+ </td>
1232
+ </tr>
1233
+ <tr>
1234
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1235
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1236
+ </td>
1237
+ </tr>
1238
+ <tr>
1239
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1240
+ <td>a state</td>
1241
+ </tr>
1242
+ <tr>
1243
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1244
+ <td>the type of shadow to draw</td>
1245
+ </tr>
1246
+ <tr>
1247
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1248
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1249
+ </td>
1250
+ </tr>
1251
+ <tr>
1252
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1253
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1254
+ </td>
1255
+ </tr>
1256
+ <tr>
1257
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1258
+ <td>x origin of the rectangle to draw the diamond in</td>
1259
+ </tr>
1260
+ <tr>
1261
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1262
+ <td>y origin of the rectangle to draw the diamond in</td>
1263
+ </tr>
1264
+ <tr>
1265
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1266
+ <td>width of the rectangle to draw the diamond in</td>
1267
+ </tr>
1268
+ <tr>
1269
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1270
+ <td>height of the rectangle to draw the diamond in</td>
1271
+ </tr>
1272
+ </tbody>
1273
+ </table></div>
1274
+ </div>
1275
+ <hr>
1276
+ <div class="refsect2">
1277
+ <a name="gtk-paint-extension"></a><h3>gtk_paint_extension ()</h3>
1278
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_extension (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1279
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1280
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1281
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1282
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1283
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1284
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1285
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1286
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1287
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
1288
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> gap_side</code></em>);</pre>
1289
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1290
+ <h3 class="title">Warning</h3>
1291
+ <p><code class="literal">gtk_paint_extension</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-extension" title="gtk_render_extension ()"><code class="function">gtk_render_extension()</code></a> instead</p>
1292
+ </div>
1293
+ <p>
1294
+ Draws an extension, i.e. a notebook tab.
1295
+ </p>
1296
+ <div class="variablelist"><table border="0" class="variablelist">
1297
+ <colgroup>
1298
+ <col align="left" valign="top">
1299
+ <col>
1300
+ </colgroup>
1301
+ <tbody>
1302
+ <tr>
1303
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1304
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1305
+ </td>
1306
+ </tr>
1307
+ <tr>
1308
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1309
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1310
+ </td>
1311
+ </tr>
1312
+ <tr>
1313
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1314
+ <td>a state</td>
1315
+ </tr>
1316
+ <tr>
1317
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1318
+ <td>type of shadow to draw</td>
1319
+ </tr>
1320
+ <tr>
1321
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1322
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1323
+ </td>
1324
+ </tr>
1325
+ <tr>
1326
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1327
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1328
+ </td>
1329
+ </tr>
1330
+ <tr>
1331
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1332
+ <td>x origin of the extension</td>
1333
+ </tr>
1334
+ <tr>
1335
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1336
+ <td>y origin of the extension</td>
1337
+ </tr>
1338
+ <tr>
1339
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1340
+ <td>width of the extension</td>
1341
+ </tr>
1342
+ <tr>
1343
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1344
+ <td>width of the extension</td>
1345
+ </tr>
1346
+ <tr>
1347
+ <td><p><span class="term"><em class="parameter"><code>gap_side</code></em> :</span></p></td>
1348
+ <td>the side on to which the extension is attached</td>
1349
+ </tr>
1350
+ </tbody>
1351
+ </table></div>
1352
+ </div>
1353
+ <hr>
1354
+ <div class="refsect2">
1355
+ <a name="gtk-paint-flat-box"></a><h3>gtk_paint_flat_box ()</h3>
1356
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_flat_box (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1357
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1358
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1359
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1360
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1361
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1362
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1363
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1364
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1365
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
1366
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1367
+ <h3 class="title">Warning</h3>
1368
+ <p><code class="literal">gtk_paint_flat_box</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-frame" title="gtk_render_frame ()"><code class="function">gtk_render_frame()</code></a> and <a class="link" href="GtkStyleContext.html#gtk-render-background" title="gtk_render_background ()"><code class="function">gtk_render_background()</code></a> instead</p>
1369
+ </div>
1370
+ <p>
1371
+ Draws a flat box on <em class="parameter"><code>cr</code></em> with the given parameters.
1372
+ </p>
1373
+ <div class="variablelist"><table border="0" class="variablelist">
1374
+ <colgroup>
1375
+ <col align="left" valign="top">
1376
+ <col>
1377
+ </colgroup>
1378
+ <tbody>
1379
+ <tr>
1380
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1381
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1382
+ </td>
1383
+ </tr>
1384
+ <tr>
1385
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1386
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1387
+ </td>
1388
+ </tr>
1389
+ <tr>
1390
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1391
+ <td>a state</td>
1392
+ </tr>
1393
+ <tr>
1394
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1395
+ <td>the type of shadow to draw</td>
1396
+ </tr>
1397
+ <tr>
1398
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1399
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1400
+ </td>
1401
+ </tr>
1402
+ <tr>
1403
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1404
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1405
+ </td>
1406
+ </tr>
1407
+ <tr>
1408
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1409
+ <td>x origin of the box</td>
1410
+ </tr>
1411
+ <tr>
1412
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1413
+ <td>y origin of the box</td>
1414
+ </tr>
1415
+ <tr>
1416
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1417
+ <td>the width of the box</td>
1418
+ </tr>
1419
+ <tr>
1420
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1421
+ <td>the height of the box</td>
1422
+ </tr>
1423
+ </tbody>
1424
+ </table></div>
1425
+ </div>
1426
+ <hr>
1427
+ <div class="refsect2">
1428
+ <a name="gtk-paint-focus"></a><h3>gtk_paint_focus ()</h3>
1429
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_focus (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1430
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1431
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1432
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1433
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1434
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1435
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1436
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1437
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
1438
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1439
+ <h3 class="title">Warning</h3>
1440
+ <p><code class="literal">gtk_paint_focus</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-focus" title="gtk_render_focus ()"><code class="function">gtk_render_focus()</code></a> instead</p>
1441
+ </div>
1442
+ <p>
1443
+ Draws a focus indicator around the given rectangle on <em class="parameter"><code>cr</code></em> using the
1444
+ given style.
1445
+ </p>
1446
+ <div class="variablelist"><table border="0" class="variablelist">
1447
+ <colgroup>
1448
+ <col align="left" valign="top">
1449
+ <col>
1450
+ </colgroup>
1451
+ <tbody>
1452
+ <tr>
1453
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1454
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1455
+ </td>
1456
+ </tr>
1457
+ <tr>
1458
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1459
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1460
+ </td>
1461
+ </tr>
1462
+ <tr>
1463
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1464
+ <td>a state</td>
1465
+ </tr>
1466
+ <tr>
1467
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1468
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1469
+ </td>
1470
+ </tr>
1471
+ <tr>
1472
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1473
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1474
+ </td>
1475
+ </tr>
1476
+ <tr>
1477
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1478
+ <td>the x origin of the rectangle around which to draw a focus indicator</td>
1479
+ </tr>
1480
+ <tr>
1481
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1482
+ <td>the y origin of the rectangle around which to draw a focus indicator</td>
1483
+ </tr>
1484
+ <tr>
1485
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1486
+ <td>the width of the rectangle around which to draw a focus indicator</td>
1487
+ </tr>
1488
+ <tr>
1489
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1490
+ <td>the height of the rectangle around which to draw a focus indicator</td>
1491
+ </tr>
1492
+ </tbody>
1493
+ </table></div>
1494
+ </div>
1495
+ <hr>
1496
+ <div class="refsect2">
1497
+ <a name="gtk-paint-handle"></a><h3>gtk_paint_handle ()</h3>
1498
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_handle (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1499
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1500
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1501
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1502
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1503
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1504
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1505
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1506
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1507
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
1508
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
1509
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1510
+ <h3 class="title">Warning</h3>
1511
+ <p><code class="literal">gtk_paint_handle</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-handle" title="gtk_render_handle ()"><code class="function">gtk_render_handle()</code></a> instead</p>
1512
+ </div>
1513
+ <p>
1514
+ Draws a handle as used in <a class="link" href="GtkHandleBox.html" title="GtkHandleBox"><span class="type">GtkHandleBox</span></a> and <a class="link" href="GtkPaned.html" title="GtkPaned"><span class="type">GtkPaned</span></a>.
1515
+ </p>
1516
+ <div class="variablelist"><table border="0" class="variablelist">
1517
+ <colgroup>
1518
+ <col align="left" valign="top">
1519
+ <col>
1520
+ </colgroup>
1521
+ <tbody>
1522
+ <tr>
1523
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1524
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1525
+ </td>
1526
+ </tr>
1527
+ <tr>
1528
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1529
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1530
+ </td>
1531
+ </tr>
1532
+ <tr>
1533
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1534
+ <td>a state</td>
1535
+ </tr>
1536
+ <tr>
1537
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1538
+ <td>type of shadow to draw</td>
1539
+ </tr>
1540
+ <tr>
1541
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1542
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1543
+ </td>
1544
+ </tr>
1545
+ <tr>
1546
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1547
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1548
+ </td>
1549
+ </tr>
1550
+ <tr>
1551
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1552
+ <td>x origin of the handle</td>
1553
+ </tr>
1554
+ <tr>
1555
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1556
+ <td>y origin of the handle</td>
1557
+ </tr>
1558
+ <tr>
1559
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1560
+ <td>with of the handle</td>
1561
+ </tr>
1562
+ <tr>
1563
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1564
+ <td>height of the handle</td>
1565
+ </tr>
1566
+ <tr>
1567
+ <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
1568
+ <td>the orientation of the handle</td>
1569
+ </tr>
1570
+ </tbody>
1571
+ </table></div>
1572
+ </div>
1573
+ <hr>
1574
+ <div class="refsect2">
1575
+ <a name="gtk-paint-hline"></a><h3>gtk_paint_hline ()</h3>
1576
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_hline (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1577
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1578
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1579
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1580
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1581
+ <em class="parameter"><code><span class="type">gint</span> x1</code></em>,
1582
+ <em class="parameter"><code><span class="type">gint</span> x2</code></em>,
1583
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
1584
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1585
+ <h3 class="title">Warning</h3>
1586
+ <p><code class="literal">gtk_paint_hline</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-line" title="gtk_render_line ()"><code class="function">gtk_render_line()</code></a> instead</p>
1587
+ </div>
1588
+ <p>
1589
+ Draws a horizontal line from (<em class="parameter"><code>x1</code></em>, <em class="parameter"><code>y</code></em>) to (<em class="parameter"><code>x2</code></em>, <em class="parameter"><code>y</code></em>) in <em class="parameter"><code>cr</code></em>
1590
+ using the given style and state.
1591
+ </p>
1592
+ <div class="variablelist"><table border="0" class="variablelist">
1593
+ <colgroup>
1594
+ <col align="left" valign="top">
1595
+ <col>
1596
+ </colgroup>
1597
+ <tbody>
1598
+ <tr>
1599
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1600
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1601
+ </td>
1602
+ </tr>
1603
+ <tr>
1604
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1605
+ <td>a <span class="type">caio_t</span>
1606
+ </td>
1607
+ </tr>
1608
+ <tr>
1609
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1610
+ <td>a state</td>
1611
+ </tr>
1612
+ <tr>
1613
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1614
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1615
+ </td>
1616
+ </tr>
1617
+ <tr>
1618
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1619
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1620
+ </td>
1621
+ </tr>
1622
+ <tr>
1623
+ <td><p><span class="term"><em class="parameter"><code>x1</code></em> :</span></p></td>
1624
+ <td>the starting x coordinate</td>
1625
+ </tr>
1626
+ <tr>
1627
+ <td><p><span class="term"><em class="parameter"><code>x2</code></em> :</span></p></td>
1628
+ <td>the ending x coordinate</td>
1629
+ </tr>
1630
+ <tr>
1631
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1632
+ <td>the y coordinate</td>
1633
+ </tr>
1634
+ </tbody>
1635
+ </table></div>
1636
+ </div>
1637
+ <hr>
1638
+ <div class="refsect2">
1639
+ <a name="gtk-paint-option"></a><h3>gtk_paint_option ()</h3>
1640
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_option (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1641
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1642
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1643
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1644
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1645
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1646
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1647
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1648
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1649
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
1650
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1651
+ <h3 class="title">Warning</h3>
1652
+ <p><code class="literal">gtk_paint_option</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-option" title="gtk_render_option ()"><code class="function">gtk_render_option()</code></a> instead</p>
1653
+ </div>
1654
+ <p>
1655
+ Draws a radio button indicator in the given rectangle on <em class="parameter"><code>cr</code></em> with
1656
+ the given parameters.
1657
+ </p>
1658
+ <div class="variablelist"><table border="0" class="variablelist">
1659
+ <colgroup>
1660
+ <col align="left" valign="top">
1661
+ <col>
1662
+ </colgroup>
1663
+ <tbody>
1664
+ <tr>
1665
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1666
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1667
+ </td>
1668
+ </tr>
1669
+ <tr>
1670
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1671
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1672
+ </td>
1673
+ </tr>
1674
+ <tr>
1675
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1676
+ <td>a state</td>
1677
+ </tr>
1678
+ <tr>
1679
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1680
+ <td>the type of shadow to draw</td>
1681
+ </tr>
1682
+ <tr>
1683
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1684
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1685
+ </td>
1686
+ </tr>
1687
+ <tr>
1688
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1689
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1690
+ </td>
1691
+ </tr>
1692
+ <tr>
1693
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1694
+ <td>x origin of the rectangle to draw the option in</td>
1695
+ </tr>
1696
+ <tr>
1697
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1698
+ <td>y origin of the rectangle to draw the option in</td>
1699
+ </tr>
1700
+ <tr>
1701
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1702
+ <td>the width of the rectangle to draw the option in</td>
1703
+ </tr>
1704
+ <tr>
1705
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1706
+ <td>the height of the rectangle to draw the option in</td>
1707
+ </tr>
1708
+ </tbody>
1709
+ </table></div>
1710
+ </div>
1711
+ <hr>
1712
+ <div class="refsect2">
1713
+ <a name="gtk-paint-shadow"></a><h3>gtk_paint_shadow ()</h3>
1714
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_shadow (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1715
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1716
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1717
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1718
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1719
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1720
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1721
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1722
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1723
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
1724
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1725
+ <h3 class="title">Warning</h3>
1726
+ <p><code class="literal">gtk_paint_shadow</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-frame" title="gtk_render_frame ()"><code class="function">gtk_render_frame()</code></a> instead</p>
1727
+ </div>
1728
+ <p>
1729
+ Draws a shadow around the given rectangle in <em class="parameter"><code>cr</code></em>
1730
+ using the given style and state and shadow type.
1731
+ </p>
1732
+ <div class="variablelist"><table border="0" class="variablelist">
1733
+ <colgroup>
1734
+ <col align="left" valign="top">
1735
+ <col>
1736
+ </colgroup>
1737
+ <tbody>
1738
+ <tr>
1739
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1740
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1741
+ </td>
1742
+ </tr>
1743
+ <tr>
1744
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1745
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1746
+ </td>
1747
+ </tr>
1748
+ <tr>
1749
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1750
+ <td>a state</td>
1751
+ </tr>
1752
+ <tr>
1753
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1754
+ <td>type of shadow to draw</td>
1755
+ </tr>
1756
+ <tr>
1757
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1758
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1759
+ </td>
1760
+ </tr>
1761
+ <tr>
1762
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1763
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1764
+ </td>
1765
+ </tr>
1766
+ <tr>
1767
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1768
+ <td>x origin of the rectangle</td>
1769
+ </tr>
1770
+ <tr>
1771
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1772
+ <td>y origin of the rectangle</td>
1773
+ </tr>
1774
+ <tr>
1775
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1776
+ <td>width of the rectangle</td>
1777
+ </tr>
1778
+ <tr>
1779
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1780
+ <td>width of the rectangle</td>
1781
+ </tr>
1782
+ </tbody>
1783
+ </table></div>
1784
+ </div>
1785
+ <hr>
1786
+ <div class="refsect2">
1787
+ <a name="gtk-paint-shadow-gap"></a><h3>gtk_paint_shadow_gap ()</h3>
1788
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_shadow_gap (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1789
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1790
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1791
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1792
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1793
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1794
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1795
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1796
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1797
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
1798
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> gap_side</code></em>,
1799
+ <em class="parameter"><code><span class="type">gint</span> gap_x</code></em>,
1800
+ <em class="parameter"><code><span class="type">gint</span> gap_width</code></em>);</pre>
1801
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1802
+ <h3 class="title">Warning</h3>
1803
+ <p><code class="literal">gtk_paint_shadow_gap</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-frame-gap" title="gtk_render_frame_gap ()"><code class="function">gtk_render_frame_gap()</code></a> instead</p>
1804
+ </div>
1805
+ <p>
1806
+ Draws a shadow around the given rectangle in <em class="parameter"><code>cr</code></em>
1807
+ using the given style and state and shadow type, leaving a
1808
+ gap in one side.
1809
+ </p>
1810
+ <div class="variablelist"><table border="0" class="variablelist">
1811
+ <colgroup>
1812
+ <col align="left" valign="top">
1813
+ <col>
1814
+ </colgroup>
1815
+ <tbody>
1816
+ <tr>
1817
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1818
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1819
+ </td>
1820
+ </tr>
1821
+ <tr>
1822
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1823
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1824
+ </td>
1825
+ </tr>
1826
+ <tr>
1827
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1828
+ <td>a state</td>
1829
+ </tr>
1830
+ <tr>
1831
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1832
+ <td>type of shadow to draw</td>
1833
+ </tr>
1834
+ <tr>
1835
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1836
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1837
+ </td>
1838
+ </tr>
1839
+ <tr>
1840
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1841
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1842
+ </td>
1843
+ </tr>
1844
+ <tr>
1845
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1846
+ <td>x origin of the rectangle</td>
1847
+ </tr>
1848
+ <tr>
1849
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1850
+ <td>y origin of the rectangle</td>
1851
+ </tr>
1852
+ <tr>
1853
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1854
+ <td>width of the rectangle</td>
1855
+ </tr>
1856
+ <tr>
1857
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1858
+ <td>width of the rectangle</td>
1859
+ </tr>
1860
+ <tr>
1861
+ <td><p><span class="term"><em class="parameter"><code>gap_side</code></em> :</span></p></td>
1862
+ <td>side in which to leave the gap</td>
1863
+ </tr>
1864
+ <tr>
1865
+ <td><p><span class="term"><em class="parameter"><code>gap_x</code></em> :</span></p></td>
1866
+ <td>starting position of the gap</td>
1867
+ </tr>
1868
+ <tr>
1869
+ <td><p><span class="term"><em class="parameter"><code>gap_width</code></em> :</span></p></td>
1870
+ <td>width of the gap</td>
1871
+ </tr>
1872
+ </tbody>
1873
+ </table></div>
1874
+ </div>
1875
+ <hr>
1876
+ <div class="refsect2">
1877
+ <a name="gtk-paint-slider"></a><h3>gtk_paint_slider ()</h3>
1878
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_slider (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1879
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1880
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1881
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
1882
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1883
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1884
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1885
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1886
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1887
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
1888
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
1889
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1890
+ <h3 class="title">Warning</h3>
1891
+ <p><code class="literal">gtk_paint_slider</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-slider" title="gtk_render_slider ()"><code class="function">gtk_render_slider()</code></a> instead</p>
1892
+ </div>
1893
+ <p>
1894
+ Draws a slider in the given rectangle on <em class="parameter"><code>cr</code></em> using the
1895
+ given style and orientation.
1896
+ </p>
1897
+ <div class="variablelist"><table border="0" class="variablelist">
1898
+ <colgroup>
1899
+ <col align="left" valign="top">
1900
+ <col>
1901
+ </colgroup>
1902
+ <tbody>
1903
+ <tr>
1904
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1905
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1906
+ </td>
1907
+ </tr>
1908
+ <tr>
1909
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1910
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1911
+ </td>
1912
+ </tr>
1913
+ <tr>
1914
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1915
+ <td>a state</td>
1916
+ </tr>
1917
+ <tr>
1918
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
1919
+ <td>a shadow</td>
1920
+ </tr>
1921
+ <tr>
1922
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1923
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1924
+ </td>
1925
+ </tr>
1926
+ <tr>
1927
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
1928
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1929
+ </td>
1930
+ </tr>
1931
+ <tr>
1932
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1933
+ <td>the x origin of the rectangle in which to draw a slider</td>
1934
+ </tr>
1935
+ <tr>
1936
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1937
+ <td>the y origin of the rectangle in which to draw a slider</td>
1938
+ </tr>
1939
+ <tr>
1940
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
1941
+ <td>the width of the rectangle in which to draw a slider</td>
1942
+ </tr>
1943
+ <tr>
1944
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
1945
+ <td>the height of the rectangle in which to draw a slider</td>
1946
+ </tr>
1947
+ <tr>
1948
+ <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
1949
+ <td>the orientation to be used</td>
1950
+ </tr>
1951
+ </tbody>
1952
+ </table></div>
1953
+ </div>
1954
+ <hr>
1955
+ <div class="refsect2">
1956
+ <a name="gtk-paint-spinner"></a><h3>gtk_paint_spinner ()</h3>
1957
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_spinner (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
1958
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
1959
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
1960
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1961
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
1962
+ <em class="parameter"><code><span class="type">guint</span> step</code></em>,
1963
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
1964
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
1965
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
1966
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
1967
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1968
+ <h3 class="title">Warning</h3>
1969
+ <p><code class="literal">gtk_paint_spinner</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-activity" title="gtk_render_activity ()"><code class="function">gtk_render_activity()</code></a> instead</p>
1970
+ </div>
1971
+ <p>
1972
+ Draws a spinner on <em class="parameter"><code>window</code></em> using the given parameters.
1973
+ </p>
1974
+ <div class="variablelist"><table border="0" class="variablelist">
1975
+ <colgroup>
1976
+ <col align="left" valign="top">
1977
+ <col>
1978
+ </colgroup>
1979
+ <tbody>
1980
+ <tr>
1981
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1982
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
1983
+ </td>
1984
+ </tr>
1985
+ <tr>
1986
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
1987
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
1988
+ </td>
1989
+ </tr>
1990
+ <tr>
1991
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
1992
+ <td>a state</td>
1993
+ </tr>
1994
+ <tr>
1995
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1996
+ <td>the widget (may be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>). <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1997
+ </td>
1998
+ </tr>
1999
+ <tr>
2000
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
2001
+ <td>a style detail (may be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>). <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2002
+ </td>
2003
+ </tr>
2004
+ <tr>
2005
+ <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
2006
+ <td>the nth step, a value between 0 and <span class="type">"num-steps"</span>
2007
+ </td>
2008
+ </tr>
2009
+ <tr>
2010
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
2011
+ <td>the x origin of the rectangle in which to draw the spinner</td>
2012
+ </tr>
2013
+ <tr>
2014
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
2015
+ <td>the y origin of the rectangle in which to draw the spinner</td>
2016
+ </tr>
2017
+ <tr>
2018
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
2019
+ <td>the width of the rectangle in which to draw the spinner</td>
2020
+ </tr>
2021
+ <tr>
2022
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
2023
+ <td>the height of the rectangle in which to draw the spinner</td>
2024
+ </tr>
2025
+ </tbody>
2026
+ </table></div>
2027
+ </div>
2028
+ <hr>
2029
+ <div class="refsect2">
2030
+ <a name="gtk-paint-tab"></a><h3>gtk_paint_tab ()</h3>
2031
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_tab (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
2032
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
2033
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
2034
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> shadow_type</code></em>,
2035
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
2036
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
2037
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
2038
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
2039
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
2040
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
2041
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2042
+ <h3 class="title">Warning</h3>
2043
+ <p><code class="literal">gtk_paint_tab</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use cairo instead</p>
2044
+ </div>
2045
+ <p>
2046
+ Draws an option menu tab (i.e. the up and down pointing arrows)
2047
+ in the given rectangle on <em class="parameter"><code>cr</code></em> using the given parameters.
2048
+ </p>
2049
+ <div class="variablelist"><table border="0" class="variablelist">
2050
+ <colgroup>
2051
+ <col align="left" valign="top">
2052
+ <col>
2053
+ </colgroup>
2054
+ <tbody>
2055
+ <tr>
2056
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
2057
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
2058
+ </td>
2059
+ </tr>
2060
+ <tr>
2061
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
2062
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
2063
+ </td>
2064
+ </tr>
2065
+ <tr>
2066
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
2067
+ <td>a state</td>
2068
+ </tr>
2069
+ <tr>
2070
+ <td><p><span class="term"><em class="parameter"><code>shadow_type</code></em> :</span></p></td>
2071
+ <td>the type of shadow to draw</td>
2072
+ </tr>
2073
+ <tr>
2074
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
2075
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2076
+ </td>
2077
+ </tr>
2078
+ <tr>
2079
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
2080
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2081
+ </td>
2082
+ </tr>
2083
+ <tr>
2084
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
2085
+ <td>x origin of the rectangle to draw the tab in</td>
2086
+ </tr>
2087
+ <tr>
2088
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
2089
+ <td>y origin of the rectangle to draw the tab in</td>
2090
+ </tr>
2091
+ <tr>
2092
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
2093
+ <td>the width of the rectangle to draw the tab in</td>
2094
+ </tr>
2095
+ <tr>
2096
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
2097
+ <td>the height of the rectangle to draw the tab in</td>
2098
+ </tr>
2099
+ </tbody>
2100
+ </table></div>
2101
+ </div>
2102
+ <hr>
2103
+ <div class="refsect2">
2104
+ <a name="gtk-paint-vline"></a><h3>gtk_paint_vline ()</h3>
2105
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_vline (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
2106
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
2107
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
2108
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
2109
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
2110
+ <em class="parameter"><code><span class="type">gint</span> y1_</code></em>,
2111
+ <em class="parameter"><code><span class="type">gint</span> y2_</code></em>,
2112
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>);</pre>
2113
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2114
+ <h3 class="title">Warning</h3>
2115
+ <p><code class="literal">gtk_paint_vline</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-line" title="gtk_render_line ()"><code class="function">gtk_render_line()</code></a> instead</p>
2116
+ </div>
2117
+ <p>
2118
+ Draws a vertical line from (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y1_</code></em>) to (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y2_</code></em>) in <em class="parameter"><code>cr</code></em>
2119
+ using the given style and state.
2120
+ </p>
2121
+ <div class="variablelist"><table border="0" class="variablelist">
2122
+ <colgroup>
2123
+ <col align="left" valign="top">
2124
+ <col>
2125
+ </colgroup>
2126
+ <tbody>
2127
+ <tr>
2128
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
2129
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
2130
+ </td>
2131
+ </tr>
2132
+ <tr>
2133
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
2134
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
2135
+ </td>
2136
+ </tr>
2137
+ <tr>
2138
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
2139
+ <td>a state</td>
2140
+ </tr>
2141
+ <tr>
2142
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
2143
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2144
+ </td>
2145
+ </tr>
2146
+ <tr>
2147
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
2148
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2149
+ </td>
2150
+ </tr>
2151
+ <tr>
2152
+ <td><p><span class="term"><em class="parameter"><code>y1_</code></em> :</span></p></td>
2153
+ <td>the starting y coordinate</td>
2154
+ </tr>
2155
+ <tr>
2156
+ <td><p><span class="term"><em class="parameter"><code>y2_</code></em> :</span></p></td>
2157
+ <td>the ending y coordinate</td>
2158
+ </tr>
2159
+ <tr>
2160
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
2161
+ <td>the x coordinate</td>
2162
+ </tr>
2163
+ </tbody>
2164
+ </table></div>
2165
+ </div>
2166
+ <hr>
2167
+ <div class="refsect2">
2168
+ <a name="gtk-paint-expander"></a><h3>gtk_paint_expander ()</h3>
2169
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_expander (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
2170
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
2171
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
2172
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
2173
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
2174
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
2175
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
2176
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkExpanderStyle" title="enum GtkExpanderStyle"><span class="type">GtkExpanderStyle</span></a> expander_style</code></em>);</pre>
2177
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2178
+ <h3 class="title">Warning</h3>
2179
+ <p><code class="literal">gtk_paint_expander</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-expander" title="gtk_render_expander ()"><code class="function">gtk_render_expander()</code></a> instead</p>
2180
+ </div>
2181
+ <p>
2182
+ Draws an expander as used in <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>. <em class="parameter"><code>x</code></em> and <em class="parameter"><code>y</code></em> specify the
2183
+ center the expander. The size of the expander is determined by the
2184
+ "expander-size" style property of <em class="parameter"><code>widget</code></em>. (If widget is not
2185
+ specified or doesn't have an "expander-size" property, an
2186
+ unspecified default size will be used, since the caller doesn't
2187
+ have sufficient information to position the expander, this is
2188
+ likely not useful.) The expander is expander_size pixels tall
2189
+ in the collapsed position and expander_size pixels wide in the
2190
+ expanded position.
2191
+ </p>
2192
+ <div class="variablelist"><table border="0" class="variablelist">
2193
+ <colgroup>
2194
+ <col align="left" valign="top">
2195
+ <col>
2196
+ </colgroup>
2197
+ <tbody>
2198
+ <tr>
2199
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
2200
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
2201
+ </td>
2202
+ </tr>
2203
+ <tr>
2204
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
2205
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
2206
+ </td>
2207
+ </tr>
2208
+ <tr>
2209
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
2210
+ <td>a state</td>
2211
+ </tr>
2212
+ <tr>
2213
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
2214
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2215
+ </td>
2216
+ </tr>
2217
+ <tr>
2218
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
2219
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2220
+ </td>
2221
+ </tr>
2222
+ <tr>
2223
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
2224
+ <td>the x position to draw the expander at</td>
2225
+ </tr>
2226
+ <tr>
2227
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
2228
+ <td>the y position to draw the expander at</td>
2229
+ </tr>
2230
+ <tr>
2231
+ <td><p><span class="term"><em class="parameter"><code>expander_style</code></em> :</span></p></td>
2232
+ <td>the style to draw the expander in; determines
2233
+ whether the expander is collapsed, expanded, or in an
2234
+ intermediate state.</td>
2235
+ </tr>
2236
+ </tbody>
2237
+ </table></div>
2238
+ </div>
2239
+ <hr>
2240
+ <div class="refsect2">
2241
+ <a name="gtk-paint-layout"></a><h3>gtk_paint_layout ()</h3>
2242
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_layout (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
2243
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
2244
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
2245
+ <em class="parameter"><code><span class="type">gboolean</span> use_text</code></em>,
2246
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
2247
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
2248
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
2249
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
2250
+ <em class="parameter"><code><span class="type">PangoLayout</span> *layout</code></em>);</pre>
2251
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2252
+ <h3 class="title">Warning</h3>
2253
+ <p><code class="literal">gtk_paint_layout</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-layout" title="gtk_render_layout ()"><code class="function">gtk_render_layout()</code></a> instead</p>
2254
+ </div>
2255
+ <p>
2256
+ Draws a layout on <em class="parameter"><code>cr</code></em> using the given parameters.
2257
+ </p>
2258
+ <div class="variablelist"><table border="0" class="variablelist">
2259
+ <colgroup>
2260
+ <col align="left" valign="top">
2261
+ <col>
2262
+ </colgroup>
2263
+ <tbody>
2264
+ <tr>
2265
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
2266
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
2267
+ </td>
2268
+ </tr>
2269
+ <tr>
2270
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
2271
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
2272
+ </td>
2273
+ </tr>
2274
+ <tr>
2275
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
2276
+ <td>a state</td>
2277
+ </tr>
2278
+ <tr>
2279
+ <td><p><span class="term"><em class="parameter"><code>use_text</code></em> :</span></p></td>
2280
+ <td>whether to use the text or foreground
2281
+ graphics context of <em class="parameter"><code>style</code></em>
2282
+ </td>
2283
+ </tr>
2284
+ <tr>
2285
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
2286
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2287
+ </td>
2288
+ </tr>
2289
+ <tr>
2290
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
2291
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2292
+ </td>
2293
+ </tr>
2294
+ <tr>
2295
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
2296
+ <td>x origin</td>
2297
+ </tr>
2298
+ <tr>
2299
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
2300
+ <td>y origin</td>
2301
+ </tr>
2302
+ <tr>
2303
+ <td><p><span class="term"><em class="parameter"><code>layout</code></em> :</span></p></td>
2304
+ <td>the layout to draw</td>
2305
+ </tr>
2306
+ </tbody>
2307
+ </table></div>
2308
+ </div>
2309
+ <hr>
2310
+ <div class="refsect2">
2311
+ <a name="gtk-paint-resize-grip"></a><h3>gtk_paint_resize_grip ()</h3>
2312
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_paint_resize_grip (<em class="parameter"><code><a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style</code></em>,
2313
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
2314
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state_type</code></em>,
2315
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
2316
+ <em class="parameter"><code>const <span class="type">gchar</span> *detail</code></em>,
2317
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindowEdge"><span class="type">GdkWindowEdge</span></a> edge</code></em>,
2318
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
2319
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
2320
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
2321
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
2322
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2323
+ <h3 class="title">Warning</h3>
2324
+ <p><code class="literal">gtk_paint_resize_grip</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-handle" title="gtk_render_handle ()"><code class="function">gtk_render_handle()</code></a> instead</p>
2325
+ </div>
2326
+ <p>
2327
+ Draws a resize grip in the given rectangle on <em class="parameter"><code>cr</code></em> using the given
2328
+ parameters.
2329
+ </p>
2330
+ <div class="variablelist"><table border="0" class="variablelist">
2331
+ <colgroup>
2332
+ <col align="left" valign="top">
2333
+ <col>
2334
+ </colgroup>
2335
+ <tbody>
2336
+ <tr>
2337
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
2338
+ <td>a <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>
2339
+ </td>
2340
+ </tr>
2341
+ <tr>
2342
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
2343
+ <td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>
2344
+ </td>
2345
+ </tr>
2346
+ <tr>
2347
+ <td><p><span class="term"><em class="parameter"><code>state_type</code></em> :</span></p></td>
2348
+ <td>a state</td>
2349
+ </tr>
2350
+ <tr>
2351
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
2352
+ <td>the widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2353
+ </td>
2354
+ </tr>
2355
+ <tr>
2356
+ <td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
2357
+ <td>a style detail. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2358
+ </td>
2359
+ </tr>
2360
+ <tr>
2361
+ <td><p><span class="term"><em class="parameter"><code>edge</code></em> :</span></p></td>
2362
+ <td>the edge in which to draw the resize grip</td>
2363
+ </tr>
2364
+ <tr>
2365
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
2366
+ <td>the x origin of the rectangle in which to draw the resize grip</td>
2367
+ </tr>
2368
+ <tr>
2369
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
2370
+ <td>the y origin of the rectangle in which to draw the resize grip</td>
2371
+ </tr>
2372
+ <tr>
2373
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
2374
+ <td>the width of the rectangle in which to draw the resize grip</td>
2375
+ </tr>
2376
+ <tr>
2377
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
2378
+ <td>the height of the rectangle in which to draw the resize grip</td>
2379
+ </tr>
2380
+ </tbody>
2381
+ </table></div>
2382
+ </div>
2383
+ <hr>
2384
+ <div class="refsect2">
2385
+ <a name="gtk-draw-insertion-cursor"></a><h3>gtk_draw_insertion_cursor ()</h3>
2386
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_draw_insertion_cursor (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
2387
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>,
2388
+ <em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *location</code></em>,
2389
+ <em class="parameter"><code><span class="type">gboolean</span> is_primary</code></em>,
2390
+ <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> direction</code></em>,
2391
+ <em class="parameter"><code><span class="type">gboolean</span> draw_arrow</code></em>);</pre>
2392
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2393
+ <h3 class="title">Warning</h3>
2394
+ <p><code class="literal">gtk_draw_insertion_cursor</code> has been deprecated since version 3.4 and should not be used in newly-written code. Use <a class="link" href="GtkStyleContext.html#gtk-render-insertion-cursor" title="gtk_render_insertion_cursor ()"><code class="function">gtk_render_insertion_cursor()</code></a> instead.</p>
2395
+ </div>
2396
+ <p>
2397
+ Draws a text caret on <em class="parameter"><code>cr</code></em> at <em class="parameter"><code>location</code></em>. This is not a style function
2398
+ but merely a convenience function for drawing the standard cursor shape.
2399
+ </p>
2400
+ <div class="variablelist"><table border="0" class="variablelist">
2401
+ <colgroup>
2402
+ <col align="left" valign="top">
2403
+ <col>
2404
+ </colgroup>
2405
+ <tbody>
2406
+ <tr>
2407
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
2408
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>
2409
+ </td>
2410
+ </tr>
2411
+ <tr>
2412
+ <td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
2413
+ <td>cairo context to draw to</td>
2414
+ </tr>
2415
+ <tr>
2416
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
2417
+ <td>location where to draw the cursor (<em class="parameter"><code>location-&gt;width</code></em> is ignored)</td>
2418
+ </tr>
2419
+ <tr>
2420
+ <td><p><span class="term"><em class="parameter"><code>is_primary</code></em> :</span></p></td>
2421
+ <td>if the cursor should be the primary cursor color.</td>
2422
+ </tr>
2423
+ <tr>
2424
+ <td><p><span class="term"><em class="parameter"><code>direction</code></em> :</span></p></td>
2425
+ <td>whether the cursor is left-to-right or
2426
+ right-to-left. Should never be <a class="link" href="GtkWidget.html#GTK-TEXT-DIR-NONE:CAPS"><span class="type">GTK_TEXT_DIR_NONE</span></a>
2427
+ </td>
2428
+ </tr>
2429
+ <tr>
2430
+ <td><p><span class="term"><em class="parameter"><code>draw_arrow</code></em> :</span></p></td>
2431
+ <td>
2432
+ <code class="literal">TRUE</code> to draw a directional arrow on the
2433
+ cursor. Should be <code class="literal">FALSE</code> unless the cursor is split.</td>
2434
+ </tr>
2435
+ </tbody>
2436
+ </table></div>
2437
+ <p class="since">Since 3.0</p>
2438
+ </div>
2439
+ <hr>
2440
+ <div class="refsect2">
2441
+ <a name="GtkRcProperty"></a><h3>GtkRcProperty</h3>
2442
+ <pre class="programlisting">typedef struct {
2443
+ /* quark-ified property identifier like "GtkScrollbar::spacing" */
2444
+ GQuark type_name;
2445
+ GQuark property_name;
2446
+
2447
+ /* fields similar to GtkSettingsValue */
2448
+ gchar *origin;
2449
+ GValue value;
2450
+ } GtkRcProperty;
2451
+ </pre>
2452
+ </div>
2453
+ <hr>
2454
+ <div class="refsect2">
2455
+ <a name="GtkRcPropertyParser"></a><h3>GtkRcPropertyParser ()</h3>
2456
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> (*GtkRcPropertyParser) (<em class="parameter"><code>const <span class="type">GParamSpec</span> *pspec</code></em>,
2457
+ <em class="parameter"><code>const <span class="type">GString</span> *rc_string</code></em>,
2458
+ <em class="parameter"><code><span class="type">GValue</span> *property_value</code></em>);</pre>
2459
+ </div>
2460
+ </div>
2461
+ <div class="refsect1">
2462
+ <a name="GtkStyle.property-details"></a><h2>Property Details</h2>
2463
+ <div class="refsect2">
2464
+ <a name="GtkStyle--context"></a><h3>The <code class="literal">"context"</code> property</h3>
2465
+ <pre class="programlisting"> "context" <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a>* : Read / Write / Construct Only</pre>
2466
+ <p>GtkStyleContext to get style from.</p>
2467
+ </div>
2468
+ </div>
2469
+ <div class="refsect1">
2470
+ <a name="GtkStyle.signal-details"></a><h2>Signal Details</h2>
2471
+ <div class="refsect2">
2472
+ <a name="GtkStyle-realize"></a><h3>The <code class="literal">"realize"</code> signal</h3>
2473
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style,
2474
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
2475
+ <p>
2476
+ Emitted when the style has been initialized for a particular
2477
+ visual. Connecting to this signal is probably seldom
2478
+ useful since most of the time applications and widgets only
2479
+ deal with styles that have been already realized.
2480
+ </p>
2481
+ <div class="variablelist"><table border="0" class="variablelist">
2482
+ <colgroup>
2483
+ <col align="left" valign="top">
2484
+ <col>
2485
+ </colgroup>
2486
+ <tbody>
2487
+ <tr>
2488
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
2489
+ <td>the object which received the signal</td>
2490
+ </tr>
2491
+ <tr>
2492
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2493
+ <td>user data set when the signal handler was connected.</td>
2494
+ </tr>
2495
+ </tbody>
2496
+ </table></div>
2497
+ <p class="since">Since 2.4</p>
2498
+ </div>
2499
+ <hr>
2500
+ <div class="refsect2">
2501
+ <a name="GtkStyle-unrealize"></a><h3>The <code class="literal">"unrealize"</code> signal</h3>
2502
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> *style,
2503
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
2504
+ <p>
2505
+ Emitted when the aspects of the style specific to a particular visual
2506
+ is being cleaned up. A connection to this signal can be useful
2507
+ if a widget wants to cache objects as object data on <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a>.
2508
+ This signal provides a convenient place to free such cached objects.
2509
+ </p>
2510
+ <div class="variablelist"><table border="0" class="variablelist">
2511
+ <colgroup>
2512
+ <col align="left" valign="top">
2513
+ <col>
2514
+ </colgroup>
2515
+ <tbody>
2516
+ <tr>
2517
+ <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
2518
+ <td>the object which received the signal</td>
2519
+ </tr>
2520
+ <tr>
2521
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2522
+ <td>user data set when the signal handler was connected.</td>
2523
+ </tr>
2524
+ </tbody>
2525
+ </table></div>
2526
+ <p class="since">Since 2.4</p>
2527
+ </div>
2528
+ </div>
2529
+ </div>
2530
+ <div class="footer">
2531
+ <hr>
2532
+ Generated by GTK-Doc V1.18.1</div>
2533
+ </body>
2534
+ </html>