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,1349 @@
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>GtkImage</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="GtkAccelLabel.html" title="GtkAccelLabel">
10
+ <link rel="next" href="GtkLabel.html" title="GtkLabel">
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="GtkAccelLabel.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="GtkLabel.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="#GtkImage.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkImage.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkImage.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkImage.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkImage.properties" class="shortcut">Properties</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="GtkImage"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="GtkImage.top_of_page"></a>GtkImage</span></h2>
40
+ <p>GtkImage — A widget displaying an image</p>
41
+ </td>
42
+ <td valign="top" align="right"><img src="image.png"></td>
43
+ </tr></table></div>
44
+ <div class="refsynopsisdiv">
45
+ <a name="GtkImage.synopsis"></a><h2>Synopsis</h2>
46
+ <pre class="synopsis">
47
+ #include &lt;gtk/gtk.h&gt;
48
+
49
+ struct <a class="link" href="GtkImage.html#GtkImage-struct" title="struct GtkImage">GtkImage</a>;
50
+ enum <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType">GtkImageType</a>;
51
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-get-icon-set" title="gtk_image_get_icon_set ()">gtk_image_get_icon_set</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
52
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> **icon_set</code></em>,
53
+ <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>);
54
+ <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="GtkImage.html#gtk-image-get-pixbuf" title="gtk_image_get_pixbuf ()">gtk_image_get_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
55
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-get-stock" title="gtk_image_get_stock ()">gtk_image_get_stock</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
56
+ <em class="parameter"><code><span class="type">gchar</span> **stock_id</code></em>,
57
+ <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>);
58
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="returnvalue">GdkPixbufAnimation</span></a> * <a class="link" href="GtkImage.html#gtk-image-get-animation" title="gtk_image_get_animation ()">gtk_image_get_animation</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
59
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-get-icon-name" title="gtk_image_get_icon_name ()">gtk_image_get_icon_name</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
60
+ <em class="parameter"><code>const <span class="type">gchar</span> **icon_name</code></em>,
61
+ <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>);
62
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-get-gicon" title="gtk_image_get_gicon ()">gtk_image_get_gicon</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
63
+ <em class="parameter"><code><span class="type">GIcon</span> **gicon</code></em>,
64
+ <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>);
65
+ <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a> <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()">gtk_image_get_storage_type</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
66
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkImage.html#gtk-image-new-from-file" title="gtk_image_new_from_file ()">gtk_image_new_from_file</a> (<em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>);
67
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkImage.html#gtk-image-new-from-icon-set" title="gtk_image_new_from_icon_set ()">gtk_image_new_from_icon_set</a> (<em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
68
+ <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>);
69
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkImage.html#gtk-image-new-from-pixbuf" title="gtk_image_new_from_pixbuf ()">gtk_image_new_from_pixbuf</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
70
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkImage.html#gtk-image-new-from-stock" title="gtk_image_new_from_stock ()">gtk_image_new_from_stock</a> (<em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>,
71
+ <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>);
72
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkImage.html#gtk-image-new-from-animation" title="gtk_image_new_from_animation ()">gtk_image_new_from_animation</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> *animation</code></em>);
73
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkImage.html#gtk-image-new-from-icon-name" title="gtk_image_new_from_icon_name ()">gtk_image_new_from_icon_name</a> (<em class="parameter"><code>const <span class="type">gchar</span> *icon_name</code></em>,
74
+ <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>);
75
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkImage.html#gtk-image-new-from-gicon" title="gtk_image_new_from_gicon ()">gtk_image_new_from_gicon</a> (<em class="parameter"><code><span class="type">GIcon</span> *icon</code></em>,
76
+ <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>);
77
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkImage.html#gtk-image-new-from-resource" title="gtk_image_new_from_resource ()">gtk_image_new_from_resource</a> (<em class="parameter"><code>const <span class="type">gchar</span> *resource_path</code></em>);
78
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-set-from-file" title="gtk_image_set_from_file ()">gtk_image_set_from_file</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
79
+ <em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>);
80
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-set-from-icon-set" title="gtk_image_set_from_icon_set ()">gtk_image_set_from_icon_set</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
81
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
82
+ <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>);
83
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-set-from-pixbuf" title="gtk_image_set_from_pixbuf ()">gtk_image_set_from_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
84
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
85
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-set-from-stock" title="gtk_image_set_from_stock ()">gtk_image_set_from_stock</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
86
+ <em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>,
87
+ <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>);
88
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-set-from-animation" title="gtk_image_set_from_animation ()">gtk_image_set_from_animation</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
89
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> *animation</code></em>);
90
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-set-from-icon-name" title="gtk_image_set_from_icon_name ()">gtk_image_set_from_icon_name</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
91
+ <em class="parameter"><code>const <span class="type">gchar</span> *icon_name</code></em>,
92
+ <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>);
93
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-set-from-gicon" title="gtk_image_set_from_gicon ()">gtk_image_set_from_gicon</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
94
+ <em class="parameter"><code><span class="type">GIcon</span> *icon</code></em>,
95
+ <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>);
96
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-set-from-resource" title="gtk_image_set_from_resource ()">gtk_image_set_from_resource</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
97
+ <em class="parameter"><code>const <span class="type">gchar</span> *resource_path</code></em>);
98
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-clear" title="gtk_image_clear ()">gtk_image_clear</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
99
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkImage.html#gtk-image-new" title="gtk_image_new ()">gtk_image_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
100
+ <span class="returnvalue">void</span> <a class="link" href="GtkImage.html#gtk-image-set-pixel-size" title="gtk_image_set_pixel_size ()">gtk_image_set_pixel_size</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
101
+ <em class="parameter"><code><span class="type">gint</span> pixel_size</code></em>);
102
+ <span class="returnvalue">gint</span> <a class="link" href="GtkImage.html#gtk-image-get-pixel-size" title="gtk_image_get_pixel_size ()">gtk_image_get_pixel_size</a> (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
103
+ </pre>
104
+ </div>
105
+ <div class="refsect1">
106
+ <a name="GtkImage.object-hierarchy"></a><h2>Object Hierarchy</h2>
107
+ <pre class="synopsis">
108
+ GObject
109
+ +----GInitiallyUnowned
110
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
111
+ +----<a class="link" href="GtkMisc.html" title="GtkMisc">GtkMisc</a>
112
+ +----GtkImage
113
+ </pre>
114
+ </div>
115
+ <div class="refsect1">
116
+ <a name="GtkImage.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
117
+ <p>
118
+ GtkImage implements
119
+ AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
120
+ </div>
121
+ <div class="refsect1">
122
+ <a name="GtkImage.properties"></a><h2>Properties</h2>
123
+ <pre class="synopsis">
124
+ "<a class="link" href="GtkImage.html#GtkImage--file" title='The "file" property'>file</a>" <span class="type">gchar</span>* : Read / Write
125
+ "<a class="link" href="GtkImage.html#GtkImage--gicon" title='The "gicon" property'>gicon</a>" <span class="type">GIcon</span>* : Read / Write
126
+ "<a class="link" href="GtkImage.html#GtkImage--icon-name" title='The "icon-name" property'>icon-name</a>" <span class="type">gchar</span>* : Read / Write
127
+ "<a class="link" href="GtkImage.html#GtkImage--icon-set" title='The "icon-set" property'>icon-set</a>" <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>* : Read / Write
128
+ "<a class="link" href="GtkImage.html#GtkImage--icon-size" title='The "icon-size" property'>icon-size</a>" <span class="type">gint</span> : Read / Write
129
+ "<a class="link" href="GtkImage.html#GtkImage--pixbuf" title='The "pixbuf" property'>pixbuf</a>" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>* : Read / Write
130
+ "<a class="link" href="GtkImage.html#GtkImage--pixbuf-animation" title='The "pixbuf-animation" property'>pixbuf-animation</a>" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>* : Read / Write
131
+ "<a class="link" href="GtkImage.html#GtkImage--pixel-size" title='The "pixel-size" property'>pixel-size</a>" <span class="type">gint</span> : Read / Write
132
+ "<a class="link" href="GtkImage.html#GtkImage--stock" title='The "stock" property'>stock</a>" <span class="type">gchar</span>* : Read / Write
133
+ "<a class="link" href="GtkImage.html#GtkImage--storage-type" title='The "storage-type" property'>storage-type</a>" <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a> : Read
134
+ "<a class="link" href="GtkImage.html#GtkImage--use-fallback" title='The "use-fallback" property'>use-fallback</a>" <span class="type">gboolean</span> : Read / Write
135
+ </pre>
136
+ </div>
137
+ <div class="refsect1">
138
+ <a name="GtkImage.description"></a><h2>Description</h2>
139
+ <p>
140
+ The <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget displays an image. Various kinds of object
141
+ can be displayed as an image; most typically, you would load a
142
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> ("pixel buffer") from a file, and then display that.
143
+ There's a convenience function to do this, <a class="link" href="GtkImage.html#gtk-image-new-from-file" title="gtk_image_new_from_file ()"><code class="function">gtk_image_new_from_file()</code></a>,
144
+ used as follows:
145
+ </p>
146
+ <div class="informalexample">
147
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
148
+ <tbody>
149
+ <tr>
150
+ <td class="listing_lines" align="right"><pre>1
151
+ 2</pre></td>
152
+ <td class="listing_code"><pre class="programlisting"><span class="usertype">GtkWidget</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">image</span><span class="symbol">;</span>
153
+ <span class="normal">image </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkImage.html#gtk-image-new-from-file">gtk_image_new_from_file</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"myfile.png"</span><span class="symbol">);</span></pre></td>
154
+ </tr>
155
+ </tbody>
156
+ </table>
157
+ </div>
158
+
159
+ <p>
160
+ If the file isn't loaded successfully, the image will contain a
161
+ "broken image" icon similar to that used in many web browsers.
162
+ If you want to handle errors in loading the file yourself,
163
+ for example by displaying an error message, then load the image with
164
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-File-Loading.html#gdk-pixbuf-new-from-file"><code class="function">gdk_pixbuf_new_from_file()</code></a>, then create the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> with
165
+ <a class="link" href="GtkImage.html#gtk-image-new-from-pixbuf" title="gtk_image_new_from_pixbuf ()"><code class="function">gtk_image_new_from_pixbuf()</code></a>.
166
+ </p>
167
+ <p>
168
+ The image file may contain an animation, if so the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will
169
+ display an animation (<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>) instead of a static image.
170
+ </p>
171
+ <p>
172
+ <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> is a subclass of <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a>, which implies that you can
173
+ align it (center, left, right) and add padding to it, using
174
+ <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a> methods.
175
+ </p>
176
+ <p>
177
+ <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> is a "no window" widget (has no <a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> of its own),
178
+ so by default does not receive events. If you want to receive events
179
+ on the image, such as button clicks, place the image inside a
180
+ <a class="link" href="GtkEventBox.html" title="GtkEventBox"><span class="type">GtkEventBox</span></a>, then connect to the event signals on the event box.
181
+ </p>
182
+ <div class="example">
183
+ <a name="idm140520390129536"></a><p class="title"><b>Example 50. Handling button press events on a
184
+ <span class="structname">GtkImage</span>.</b></p>
185
+ <div class="example-contents">
186
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
187
+ <tbody>
188
+ <tr>
189
+ <td class="listing_lines" align="right"><pre>1
190
+ 2
191
+ 3
192
+ 4
193
+ 5
194
+ 6
195
+ 7
196
+ 8
197
+ 9
198
+ 10
199
+ 11
200
+ 12
201
+ 13
202
+ 14
203
+ 15
204
+ 16
205
+ 17
206
+ 18
207
+ 19
208
+ 20
209
+ 21
210
+ 22
211
+ 23
212
+ 24
213
+ 25
214
+ 26
215
+ 27
216
+ 28
217
+ 29
218
+ 30
219
+ 31
220
+ 32
221
+ 33
222
+ 34
223
+ 35</pre></td>
224
+ <td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> gboolean</span>
225
+ <span class="function">button_press_callback</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">GtkWidget</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">event_box</span><span class="symbol">,</span>
226
+ <span class="normal"> </span><span class="usertype">GdkEventButton</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">event</span><span class="symbol">,</span>
227
+ <span class="normal"> </span><span class="usertype">gpointer</span><span class="normal"> data</span><span class="symbol">)</span>
228
+ <span class="cbracket">{</span>
229
+ <span class="normal"> </span><span class="function">g_print</span><span class="normal"> </span><span class="symbol">(</span><span class="string">"Event box clicked at coordinates %f,%f</span><span class="specialchar">\n</span><span class="string">"</span><span class="symbol">,</span>
230
+ <span class="normal"> event</span><span class="symbol">-&gt;</span><span class="normal">x</span><span class="symbol">,</span><span class="normal"> event</span><span class="symbol">-&gt;</span><span class="normal">y</span><span class="symbol">);</span>
231
+
232
+ <span class="normal"> </span><span class="comment">/* Returning TRUE means we handled the event, so the signal</span>
233
+ <span class="comment"> * emission should be stopped (don't call any further</span>
234
+ <span class="comment"> * callbacks that may be connected). Return FALSE</span>
235
+ <span class="comment"> * to continue invoking callbacks.</span>
236
+ <span class="comment"> */</span>
237
+ <span class="normal"> </span><span class="keyword">return</span><span class="normal"> TRUE</span><span class="symbol">;</span>
238
+ <span class="cbracket">}</span>
239
+
240
+ <span class="keyword">static</span><span class="normal"> <a href="GtkWidget.html">GtkWidget</a></span><span class="symbol">*</span>
241
+ <span class="function">create_image</span><span class="normal"> </span><span class="symbol">(</span><span class="type">void</span><span class="symbol">)</span>
242
+ <span class="cbracket">{</span>
243
+ <span class="normal"> </span><span class="usertype">GtkWidget</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">image</span><span class="symbol">;</span>
244
+ <span class="normal"> </span><span class="usertype">GtkWidget</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">event_box</span><span class="symbol">;</span>
245
+
246
+ <span class="normal"> image </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkImage.html#gtk-image-new-from-file">gtk_image_new_from_file</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"myfile.png"</span><span class="symbol">);</span>
247
+
248
+ <span class="normal"> event_box </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkEventBox.html#gtk-event-box-new">gtk_event_box_new</a></span><span class="normal"> </span><span class="symbol">();</span>
249
+
250
+ <span class="normal"> </span><span class="function"><a href="GtkContainer.html#gtk-container-add">gtk_container_add</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_CONTAINER</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">event_box</span><span class="symbol">),</span><span class="normal"> image</span><span class="symbol">);</span>
251
+
252
+ <span class="normal"> </span><span class="function">g_signal_connect</span><span class="normal"> </span><span class="symbol">(</span><span class="function">G_OBJECT</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">event_box</span><span class="symbol">),</span>
253
+ <span class="normal"> </span><span class="string">"button_press_event"</span><span class="symbol">,</span>
254
+ <span class="normal"> </span><span class="function">G_CALLBACK</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">button_press_callback</span><span class="symbol">),</span>
255
+ <span class="normal"> image</span><span class="symbol">);</span>
256
+
257
+ <span class="normal"> </span><span class="keyword">return</span><span class="normal"> image</span><span class="symbol">;</span>
258
+ <span class="cbracket">}</span></pre></td>
259
+ </tr>
260
+ </tbody>
261
+ </table>
262
+ </div>
263
+
264
+ </div>
265
+ <p><br class="example-break">
266
+ </p>
267
+ <p>
268
+ When handling events on the event box, keep in mind that coordinates
269
+ in the image may be different from event box coordinates due to
270
+ the alignment and padding settings on the image (see <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a>).
271
+ The simplest way to solve this is to set the alignment to 0.0
272
+ (left/top), and set the padding to zero. Then the origin of
273
+ the image will be the same as the origin of the event box.
274
+ </p>
275
+ <p>
276
+ Sometimes an application will want to avoid depending on external data
277
+ files, such as image files. GTK+ comes with a program to avoid this,
278
+ called <span class="application">gdk-pixbuf-csource</span>. This library
279
+ allows you to convert an image into a C variable declaration, which
280
+ can then be loaded into a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> using
281
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Image-Data-in-Memory.html#gdk-pixbuf-new-from-inline"><code class="function">gdk_pixbuf_new_from_inline()</code></a>.
282
+ </p>
283
+ </div>
284
+ <div class="refsect1">
285
+ <a name="GtkImage.details"></a><h2>Details</h2>
286
+ <div class="refsect2">
287
+ <a name="GtkImage-struct"></a><h3>struct GtkImage</h3>
288
+ <pre class="programlisting">struct GtkImage;</pre>
289
+ <p>
290
+ This struct contain private data only and should be accessed by the functions
291
+ below.
292
+ </p>
293
+ </div>
294
+ <hr>
295
+ <div class="refsect2">
296
+ <a name="GtkImageType"></a><h3>enum GtkImageType</h3>
297
+ <pre class="programlisting">typedef enum {
298
+ GTK_IMAGE_EMPTY,
299
+ GTK_IMAGE_PIXBUF,
300
+ GTK_IMAGE_STOCK,
301
+ GTK_IMAGE_ICON_SET,
302
+ GTK_IMAGE_ANIMATION,
303
+ GTK_IMAGE_ICON_NAME,
304
+ GTK_IMAGE_GICON
305
+ } GtkImageType;
306
+ </pre>
307
+ <p>
308
+ Describes the image data representation used by a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>. If you
309
+ want to get the image from the widget, you can only get the
310
+ currently-stored representation. e.g. if the
311
+ <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a> returns <a class="link" href="GtkImage.html#GTK-IMAGE-PIXBUF:CAPS"><span class="type">GTK_IMAGE_PIXBUF</span></a>, then you can
312
+ call <a class="link" href="GtkImage.html#gtk-image-get-pixbuf" title="gtk_image_get_pixbuf ()"><code class="function">gtk_image_get_pixbuf()</code></a> but not <a class="link" href="GtkImage.html#gtk-image-get-stock" title="gtk_image_get_stock ()"><code class="function">gtk_image_get_stock()</code></a>. For empty
313
+ images, you can request any storage type (call any of the "get"
314
+ functions), but they will all return <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> values.
315
+ </p>
316
+ <div class="variablelist"><table border="0" class="variablelist">
317
+ <colgroup>
318
+ <col align="left" valign="top">
319
+ <col>
320
+ </colgroup>
321
+ <tbody>
322
+ <tr>
323
+ <td><p><a name="GTK-IMAGE-EMPTY:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_EMPTY</code></span></p></td>
324
+ <td>there is no image displayed by the widget
325
+ </td>
326
+ </tr>
327
+ <tr>
328
+ <td><p><a name="GTK-IMAGE-PIXBUF:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_PIXBUF</code></span></p></td>
329
+ <td>the widget contains a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
330
+ </td>
331
+ </tr>
332
+ <tr>
333
+ <td><p><a name="GTK-IMAGE-STOCK:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_STOCK</code></span></p></td>
334
+ <td>the widget contains a stock icon name (see
335
+ <a class="xref" href="gtk3-Stock-Items.html" title="Stock Items"><span class="refentrytitle"><a name="gtk3-Stock-Items.top_of_page"></a>Stock Items</span>(3)</a>)
336
+ </td>
337
+ </tr>
338
+ <tr>
339
+ <td><p><a name="GTK-IMAGE-ICON-SET:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_ICON_SET</code></span></p></td>
340
+ <td>the widget contains a <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
341
+ </td>
342
+ </tr>
343
+ <tr>
344
+ <td><p><a name="GTK-IMAGE-ANIMATION:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_ANIMATION</code></span></p></td>
345
+ <td>the widget contains a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>
346
+ </td>
347
+ </tr>
348
+ <tr>
349
+ <td><p><a name="GTK-IMAGE-ICON-NAME:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_ICON_NAME</code></span></p></td>
350
+ <td>the widget contains a named icon.
351
+ This image type was added in GTK+ 2.6
352
+ </td>
353
+ </tr>
354
+ <tr>
355
+ <td><p><a name="GTK-IMAGE-GICON:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_GICON</code></span></p></td>
356
+ <td>the widget contains a <span class="type">GIcon</span>.
357
+ This image type was added in GTK+ 2.14
358
+ </td>
359
+ </tr>
360
+ </tbody>
361
+ </table></div>
362
+ </div>
363
+ <hr>
364
+ <div class="refsect2">
365
+ <a name="gtk-image-get-icon-set"></a><h3>gtk_image_get_icon_set ()</h3>
366
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_get_icon_set (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
367
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> **icon_set</code></em>,
368
+ <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>);</pre>
369
+ <p>
370
+ Gets the icon set and size being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
371
+ The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
372
+ <a class="link" href="GtkImage.html#GTK-IMAGE-ICON-SET:CAPS"><code class="literal">GTK_IMAGE_ICON_SET</code></a> (see <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>).
373
+ </p>
374
+ <div class="variablelist"><table border="0" class="variablelist">
375
+ <colgroup>
376
+ <col align="left" valign="top">
377
+ <col>
378
+ </colgroup>
379
+ <tbody>
380
+ <tr>
381
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
382
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
383
+ </td>
384
+ </tr>
385
+ <tr>
386
+ <td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
387
+ <td>location to store a
388
+ <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>, or <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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
389
+ </td>
390
+ </tr>
391
+ <tr>
392
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
393
+ <td>location to store a stock
394
+ icon size, or <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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
395
+ </td>
396
+ </tr>
397
+ </tbody>
398
+ </table></div>
399
+ </div>
400
+ <hr>
401
+ <div class="refsect2">
402
+ <a name="gtk-image-get-pixbuf"></a><h3>gtk_image_get_pixbuf ()</h3>
403
+ <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_image_get_pixbuf (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
404
+ <p>
405
+ Gets the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
406
+ The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
407
+ <a class="link" href="GtkImage.html#GTK-IMAGE-PIXBUF:CAPS"><code class="literal">GTK_IMAGE_PIXBUF</code></a> (see <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>).
408
+ The caller of this function does not own a reference to the
409
+ returned pixbuf.
410
+ </p>
411
+ <div class="variablelist"><table border="0" class="variablelist">
412
+ <colgroup>
413
+ <col align="left" valign="top">
414
+ <col>
415
+ </colgroup>
416
+ <tbody>
417
+ <tr>
418
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
419
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
420
+ </td>
421
+ </tr>
422
+ <tr>
423
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
424
+ <td>the displayed pixbuf, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if
425
+ the image is empty. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
426
+ </td>
427
+ </tr>
428
+ </tbody>
429
+ </table></div>
430
+ </div>
431
+ <hr>
432
+ <div class="refsect2">
433
+ <a name="gtk-image-get-stock"></a><h3>gtk_image_get_stock ()</h3>
434
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_get_stock (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
435
+ <em class="parameter"><code><span class="type">gchar</span> **stock_id</code></em>,
436
+ <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>);</pre>
437
+ <p>
438
+ Gets the stock icon name and size being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
439
+ The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
440
+ <a class="link" href="GtkImage.html#GTK-IMAGE-STOCK:CAPS"><code class="literal">GTK_IMAGE_STOCK</code></a> (see <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>).
441
+ The returned string is owned by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> and should not
442
+ be freed.
443
+ </p>
444
+ <div class="variablelist"><table border="0" class="variablelist">
445
+ <colgroup>
446
+ <col align="left" valign="top">
447
+ <col>
448
+ </colgroup>
449
+ <tbody>
450
+ <tr>
451
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
452
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
453
+ </td>
454
+ </tr>
455
+ <tr>
456
+ <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
457
+ <td>place to store a
458
+ stock icon name, or <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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
459
+ </td>
460
+ </tr>
461
+ <tr>
462
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
463
+ <td>place to store a stock icon
464
+ size, or <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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
465
+ </td>
466
+ </tr>
467
+ </tbody>
468
+ </table></div>
469
+ </div>
470
+ <hr>
471
+ <div class="refsect2">
472
+ <a name="gtk-image-get-animation"></a><h3>gtk_image_get_animation ()</h3>
473
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="returnvalue">GdkPixbufAnimation</span></a> * gtk_image_get_animation (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
474
+ <p>
475
+ Gets the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
476
+ The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
477
+ <a class="link" href="GtkImage.html#GTK-IMAGE-ANIMATION:CAPS"><code class="literal">GTK_IMAGE_ANIMATION</code></a> (see <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>).
478
+ The caller of this function does not own a reference to the
479
+ returned animation.
480
+ </p>
481
+ <div class="variablelist"><table border="0" class="variablelist">
482
+ <colgroup>
483
+ <col align="left" valign="top">
484
+ <col>
485
+ </colgroup>
486
+ <tbody>
487
+ <tr>
488
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
489
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
490
+ </td>
491
+ </tr>
492
+ <tr>
493
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
494
+ <td>the displayed animation, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if
495
+ the image is empty. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
496
+ </td>
497
+ </tr>
498
+ </tbody>
499
+ </table></div>
500
+ </div>
501
+ <hr>
502
+ <div class="refsect2">
503
+ <a name="gtk-image-get-icon-name"></a><h3>gtk_image_get_icon_name ()</h3>
504
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_get_icon_name (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
505
+ <em class="parameter"><code>const <span class="type">gchar</span> **icon_name</code></em>,
506
+ <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>);</pre>
507
+ <p>
508
+ Gets the icon name and size being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
509
+ The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
510
+ <a class="link" href="GtkImage.html#GTK-IMAGE-ICON-NAME:CAPS"><code class="literal">GTK_IMAGE_ICON_NAME</code></a> (see <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>).
511
+ The returned string is owned by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> and should not
512
+ be freed.
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>
520
+ <tr>
521
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
522
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
523
+ </td>
524
+ </tr>
525
+ <tr>
526
+ <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
527
+ <td>place to store an
528
+ icon name, or <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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
529
+ </td>
530
+ </tr>
531
+ <tr>
532
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
533
+ <td>place to store an icon size,
534
+ or <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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
535
+ </td>
536
+ </tr>
537
+ </tbody>
538
+ </table></div>
539
+ <p class="since">Since 2.6</p>
540
+ </div>
541
+ <hr>
542
+ <div class="refsect2">
543
+ <a name="gtk-image-get-gicon"></a><h3>gtk_image_get_gicon ()</h3>
544
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_get_gicon (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
545
+ <em class="parameter"><code><span class="type">GIcon</span> **gicon</code></em>,
546
+ <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>);</pre>
547
+ <p>
548
+ Gets the <span class="type">GIcon</span> and size being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
549
+ The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
550
+ <a class="link" href="GtkImage.html#GTK-IMAGE-GICON:CAPS"><code class="literal">GTK_IMAGE_GICON</code></a> (see <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>).
551
+ The caller of this function does not own a reference to the
552
+ returned <span class="type">GIcon</span>.
553
+ </p>
554
+ <div class="variablelist"><table border="0" class="variablelist">
555
+ <colgroup>
556
+ <col align="left" valign="top">
557
+ <col>
558
+ </colgroup>
559
+ <tbody>
560
+ <tr>
561
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
562
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
563
+ </td>
564
+ </tr>
565
+ <tr>
566
+ <td><p><span class="term"><em class="parameter"><code>gicon</code></em> :</span></p></td>
567
+ <td>place to store a
568
+ <span class="type">GIcon</span>, or <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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
569
+ </td>
570
+ </tr>
571
+ <tr>
572
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
573
+ <td>place to store an icon size,
574
+ or <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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
575
+ </td>
576
+ </tr>
577
+ </tbody>
578
+ </table></div>
579
+ <p class="since">Since 2.14</p>
580
+ </div>
581
+ <hr>
582
+ <div class="refsect2">
583
+ <a name="gtk-image-get-storage-type"></a><h3>gtk_image_get_storage_type ()</h3>
584
+ <pre class="programlisting"><a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a> gtk_image_get_storage_type (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
585
+ <p>
586
+ Gets the type of representation being used by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
587
+ to store image data. If the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> has no image data,
588
+ the return value will be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a>.
589
+ </p>
590
+ <div class="variablelist"><table border="0" class="variablelist">
591
+ <colgroup>
592
+ <col align="left" valign="top">
593
+ <col>
594
+ </colgroup>
595
+ <tbody>
596
+ <tr>
597
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
598
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
599
+ </td>
600
+ </tr>
601
+ <tr>
602
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
603
+ <td>image representation being used</td>
604
+ </tr>
605
+ </tbody>
606
+ </table></div>
607
+ </div>
608
+ <hr>
609
+ <div class="refsect2">
610
+ <a name="gtk-image-new-from-file"></a><h3>gtk_image_new_from_file ()</h3>
611
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_image_new_from_file (<em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>);</pre>
612
+ <p>
613
+ Creates a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the file <em class="parameter"><code>filename</code></em>. If the file
614
+ isn't found or can't be loaded, the resulting <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will
615
+ display a "broken image" icon. This function never returns <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>,
616
+ it always returns a valid <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget.
617
+ </p>
618
+ <p>
619
+ If the file contains an animation, the image will contain an
620
+ animation.
621
+ </p>
622
+ <p>
623
+ If you need to detect failures to load the file, use
624
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-File-Loading.html#gdk-pixbuf-new-from-file"><code class="function">gdk_pixbuf_new_from_file()</code></a> to load the file yourself, then create
625
+ the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> from the pixbuf. (Or for animations, use
626
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#gdk-pixbuf-animation-new-from-file"><code class="function">gdk_pixbuf_animation_new_from_file()</code></a>).
627
+ </p>
628
+ <p>
629
+ The storage type (<a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>) of the returned
630
+ image is not defined, it will be whatever is appropriate for
631
+ displaying the file.
632
+ </p>
633
+ <div class="variablelist"><table border="0" class="variablelist">
634
+ <colgroup>
635
+ <col align="left" valign="top">
636
+ <col>
637
+ </colgroup>
638
+ <tbody>
639
+ <tr>
640
+ <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
641
+ <td>a filename. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename]</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>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
647
+ </td>
648
+ </tr>
649
+ </tbody>
650
+ </table></div>
651
+ </div>
652
+ <hr>
653
+ <div class="refsect2">
654
+ <a name="gtk-image-new-from-icon-set"></a><h3>gtk_image_new_from_icon_set ()</h3>
655
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_image_new_from_icon_set (<em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
656
+ <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>);</pre>
657
+ <p>
658
+ Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying an icon set. Sample stock sizes are
659
+ <a class="link" href="gtk3-Themeable-Stock-Images.html#GTK-ICON-SIZE-MENU:CAPS"><span class="type">GTK_ICON_SIZE_MENU</span></a>, <a class="link" href="gtk3-Themeable-Stock-Images.html#GTK-ICON-SIZE-SMALL-TOOLBAR:CAPS"><span class="type">GTK_ICON_SIZE_SMALL_TOOLBAR</span></a>. Instead of using
660
+ this function, usually it's better to create a <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a>, put
661
+ your icon sets in the icon factory, add the icon factory to the
662
+ list of default factories with <a class="link" href="gtk3-Themeable-Stock-Images.html#gtk-icon-factory-add-default" title="gtk_icon_factory_add_default ()"><code class="function">gtk_icon_factory_add_default()</code></a>, and
663
+ then use <a class="link" href="GtkImage.html#gtk-image-new-from-stock" title="gtk_image_new_from_stock ()"><code class="function">gtk_image_new_from_stock()</code></a>. This will allow themes to
664
+ override the icon you ship with your application.
665
+ </p>
666
+ <p>
667
+ The <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> does not assume a reference to the
668
+ icon set; you still need to unref it if you own references.
669
+ <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will add its own reference rather than adopting yours.
670
+ </p>
671
+ <div class="variablelist"><table border="0" class="variablelist">
672
+ <colgroup>
673
+ <col align="left" valign="top">
674
+ <col>
675
+ </colgroup>
676
+ <tbody>
677
+ <tr>
678
+ <td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
679
+ <td>a <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
680
+ </td>
681
+ </tr>
682
+ <tr>
683
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
684
+ <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
685
+ </td>
686
+ </tr>
687
+ <tr>
688
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
689
+ <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
690
+ </td>
691
+ </tr>
692
+ </tbody>
693
+ </table></div>
694
+ </div>
695
+ <hr>
696
+ <div class="refsect2">
697
+ <a name="gtk-image-new-from-pixbuf"></a><h3>gtk_image_new_from_pixbuf ()</h3>
698
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_image_new_from_pixbuf (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
699
+ <p>
700
+ Creates a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying <em class="parameter"><code>pixbuf</code></em>.
701
+ The <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> does not assume a reference to the
702
+ pixbuf; you still need to unref it if you own references.
703
+ <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will add its own reference rather than adopting yours.
704
+ </p>
705
+ <p>
706
+ Note that this function just creates an <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> from the pixbuf. The
707
+ <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> created will not react to state changes. Should you want that,
708
+ you should use <a class="link" href="GtkImage.html#gtk-image-new-from-icon-set" title="gtk_image_new_from_icon_set ()"><code class="function">gtk_image_new_from_icon_set()</code></a>.
709
+ </p>
710
+ <div class="variablelist"><table border="0" class="variablelist">
711
+ <colgroup>
712
+ <col align="left" valign="top">
713
+ <col>
714
+ </colgroup>
715
+ <tbody>
716
+ <tr>
717
+ <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
718
+ <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, or <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>
719
+ </td>
720
+ </tr>
721
+ <tr>
722
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
723
+ <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
724
+ </td>
725
+ </tr>
726
+ </tbody>
727
+ </table></div>
728
+ </div>
729
+ <hr>
730
+ <div class="refsect2">
731
+ <a name="gtk-image-new-from-stock"></a><h3>gtk_image_new_from_stock ()</h3>
732
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_image_new_from_stock (<em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>,
733
+ <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>);</pre>
734
+ <p>
735
+ Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying a stock icon. Sample stock icon
736
+ names are <a class="link" href="gtk3-Stock-Items.html#GTK-STOCK-OPEN:CAPS" title="GTK_STOCK_OPEN"><span class="type">GTK_STOCK_OPEN</span></a>, <a class="link" href="gtk3-Stock-Items.html#GTK-STOCK-QUIT:CAPS" title="GTK_STOCK_QUIT"><span class="type">GTK_STOCK_QUIT</span></a>. Sample stock sizes
737
+ are <a class="link" href="gtk3-Themeable-Stock-Images.html#GTK-ICON-SIZE-MENU:CAPS"><span class="type">GTK_ICON_SIZE_MENU</span></a>, <a class="link" href="gtk3-Themeable-Stock-Images.html#GTK-ICON-SIZE-SMALL-TOOLBAR:CAPS"><span class="type">GTK_ICON_SIZE_SMALL_TOOLBAR</span></a>. If the stock
738
+ icon name isn't known, the image will be empty.
739
+ You can register your own stock icon names, see
740
+ <a class="link" href="gtk3-Themeable-Stock-Images.html#gtk-icon-factory-add-default" title="gtk_icon_factory_add_default ()"><code class="function">gtk_icon_factory_add_default()</code></a> and <a class="link" href="gtk3-Themeable-Stock-Images.html#gtk-icon-factory-add" title="gtk_icon_factory_add ()"><code class="function">gtk_icon_factory_add()</code></a>.
741
+ </p>
742
+ <div class="variablelist"><table border="0" class="variablelist">
743
+ <colgroup>
744
+ <col align="left" valign="top">
745
+ <col>
746
+ </colgroup>
747
+ <tbody>
748
+ <tr>
749
+ <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
750
+ <td>a stock icon name</td>
751
+ </tr>
752
+ <tr>
753
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
754
+ <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
755
+ </td>
756
+ </tr>
757
+ <tr>
758
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
759
+ <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the stock icon</td>
760
+ </tr>
761
+ </tbody>
762
+ </table></div>
763
+ </div>
764
+ <hr>
765
+ <div class="refsect2">
766
+ <a name="gtk-image-new-from-animation"></a><h3>gtk_image_new_from_animation ()</h3>
767
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_image_new_from_animation (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> *animation</code></em>);</pre>
768
+ <p>
769
+ Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the given animation.
770
+ The <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> does not assume a reference to the
771
+ animation; you still need to unref it if you own references.
772
+ <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will add its own reference rather than adopting yours.
773
+ </p>
774
+ <p>
775
+ Note that the animation frames are shown using a timeout with
776
+ <span class="type">G_PRIORITY_DEFAULT</span>. When using animations to indicate busyness,
777
+ keep in mind that the animation will only be shown if the main loop
778
+ is not busy with something that has a higher priority.
779
+ </p>
780
+ <div class="variablelist"><table border="0" class="variablelist">
781
+ <colgroup>
782
+ <col align="left" valign="top">
783
+ <col>
784
+ </colgroup>
785
+ <tbody>
786
+ <tr>
787
+ <td><p><span class="term"><em class="parameter"><code>animation</code></em> :</span></p></td>
788
+ <td>an animation</td>
789
+ </tr>
790
+ <tr>
791
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
792
+ <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget</td>
793
+ </tr>
794
+ </tbody>
795
+ </table></div>
796
+ </div>
797
+ <hr>
798
+ <div class="refsect2">
799
+ <a name="gtk-image-new-from-icon-name"></a><h3>gtk_image_new_from_icon_name ()</h3>
800
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_image_new_from_icon_name (<em class="parameter"><code>const <span class="type">gchar</span> *icon_name</code></em>,
801
+ <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>);</pre>
802
+ <p>
803
+ Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying an icon from the current icon theme.
804
+ If the icon name isn't known, a "broken image" icon will be
805
+ displayed instead. If the current icon theme is changed, the icon
806
+ will be updated appropriately.
807
+ </p>
808
+ <div class="variablelist"><table border="0" class="variablelist">
809
+ <colgroup>
810
+ <col align="left" valign="top">
811
+ <col>
812
+ </colgroup>
813
+ <tbody>
814
+ <tr>
815
+ <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
816
+ <td>an icon name</td>
817
+ </tr>
818
+ <tr>
819
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
820
+ <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
821
+ </td>
822
+ </tr>
823
+ <tr>
824
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
825
+ <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the themed icon</td>
826
+ </tr>
827
+ </tbody>
828
+ </table></div>
829
+ <p class="since">Since 2.6</p>
830
+ </div>
831
+ <hr>
832
+ <div class="refsect2">
833
+ <a name="gtk-image-new-from-gicon"></a><h3>gtk_image_new_from_gicon ()</h3>
834
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_image_new_from_gicon (<em class="parameter"><code><span class="type">GIcon</span> *icon</code></em>,
835
+ <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>);</pre>
836
+ <p>
837
+ Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying an icon from the current icon theme.
838
+ If the icon name isn't known, a "broken image" icon will be
839
+ displayed instead. If the current icon theme is changed, the icon
840
+ will be updated appropriately.
841
+ </p>
842
+ <div class="variablelist"><table border="0" class="variablelist">
843
+ <colgroup>
844
+ <col align="left" valign="top">
845
+ <col>
846
+ </colgroup>
847
+ <tbody>
848
+ <tr>
849
+ <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
850
+ <td>an icon</td>
851
+ </tr>
852
+ <tr>
853
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
854
+ <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
855
+ </td>
856
+ </tr>
857
+ <tr>
858
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
859
+ <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the themed icon</td>
860
+ </tr>
861
+ </tbody>
862
+ </table></div>
863
+ <p class="since">Since 2.14</p>
864
+ </div>
865
+ <hr>
866
+ <div class="refsect2">
867
+ <a name="gtk-image-new-from-resource"></a><h3>gtk_image_new_from_resource ()</h3>
868
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_image_new_from_resource (<em class="parameter"><code>const <span class="type">gchar</span> *resource_path</code></em>);</pre>
869
+ <p>
870
+ Creates a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the resource file <em class="parameter"><code>resource_path</code></em>. If the file
871
+ isn't found or can't be loaded, the resulting <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will
872
+ display a "broken image" icon. This function never returns <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>,
873
+ it always returns a valid <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget.
874
+ </p>
875
+ <p>
876
+ If the file contains an animation, the image will contain an
877
+ animation.
878
+ </p>
879
+ <p>
880
+ If you need to detect failures to load the file, use
881
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-File-Loading.html#gdk-pixbuf-new-from-file"><code class="function">gdk_pixbuf_new_from_file()</code></a> to load the file yourself, then create
882
+ the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> from the pixbuf. (Or for animations, use
883
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#gdk-pixbuf-animation-new-from-file"><code class="function">gdk_pixbuf_animation_new_from_file()</code></a>).
884
+ </p>
885
+ <p>
886
+ The storage type (<a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>) of the returned
887
+ image is not defined, it will be whatever is appropriate for
888
+ displaying the file.
889
+ </p>
890
+ <div class="variablelist"><table border="0" class="variablelist">
891
+ <colgroup>
892
+ <col align="left" valign="top">
893
+ <col>
894
+ </colgroup>
895
+ <tbody>
896
+ <tr>
897
+ <td><p><span class="term"><em class="parameter"><code>resource_path</code></em> :</span></p></td>
898
+ <td>a resource path</td>
899
+ </tr>
900
+ <tr>
901
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
902
+ <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
903
+ </td>
904
+ </tr>
905
+ </tbody>
906
+ </table></div>
907
+ <p class="since">Since 3.4</p>
908
+ </div>
909
+ <hr>
910
+ <div class="refsect2">
911
+ <a name="gtk-image-set-from-file"></a><h3>gtk_image_set_from_file ()</h3>
912
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_set_from_file (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
913
+ <em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>);</pre>
914
+ <p>
915
+ See <a class="link" href="GtkImage.html#gtk-image-new-from-file" title="gtk_image_new_from_file ()"><code class="function">gtk_image_new_from_file()</code></a> for details.
916
+ </p>
917
+ <div class="variablelist"><table border="0" class="variablelist">
918
+ <colgroup>
919
+ <col align="left" valign="top">
920
+ <col>
921
+ </colgroup>
922
+ <tbody>
923
+ <tr>
924
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
925
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
926
+ </td>
927
+ </tr>
928
+ <tr>
929
+ <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
930
+ <td>a filename or <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="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
931
+ </td>
932
+ </tr>
933
+ </tbody>
934
+ </table></div>
935
+ </div>
936
+ <hr>
937
+ <div class="refsect2">
938
+ <a name="gtk-image-set-from-icon-set"></a><h3>gtk_image_set_from_icon_set ()</h3>
939
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_set_from_icon_set (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
940
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
941
+ <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>);</pre>
942
+ <p>
943
+ See <a class="link" href="GtkImage.html#gtk-image-new-from-icon-set" title="gtk_image_new_from_icon_set ()"><code class="function">gtk_image_new_from_icon_set()</code></a> for details.
944
+ </p>
945
+ <div class="variablelist"><table border="0" class="variablelist">
946
+ <colgroup>
947
+ <col align="left" valign="top">
948
+ <col>
949
+ </colgroup>
950
+ <tbody>
951
+ <tr>
952
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
953
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
954
+ </td>
955
+ </tr>
956
+ <tr>
957
+ <td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
958
+ <td>a <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
959
+ </td>
960
+ </tr>
961
+ <tr>
962
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
963
+ <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
964
+ </td>
965
+ </tr>
966
+ </tbody>
967
+ </table></div>
968
+ </div>
969
+ <hr>
970
+ <div class="refsect2">
971
+ <a name="gtk-image-set-from-pixbuf"></a><h3>gtk_image_set_from_pixbuf ()</h3>
972
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_set_from_pixbuf (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
973
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
974
+ <p>
975
+ See <a class="link" href="GtkImage.html#gtk-image-new-from-pixbuf" title="gtk_image_new_from_pixbuf ()"><code class="function">gtk_image_new_from_pixbuf()</code></a> for details.
976
+ </p>
977
+ <div class="variablelist"><table border="0" class="variablelist">
978
+ <colgroup>
979
+ <col align="left" valign="top">
980
+ <col>
981
+ </colgroup>
982
+ <tbody>
983
+ <tr>
984
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
985
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
986
+ </td>
987
+ </tr>
988
+ <tr>
989
+ <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
990
+ <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> or <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>
991
+ </td>
992
+ </tr>
993
+ </tbody>
994
+ </table></div>
995
+ </div>
996
+ <hr>
997
+ <div class="refsect2">
998
+ <a name="gtk-image-set-from-stock"></a><h3>gtk_image_set_from_stock ()</h3>
999
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_set_from_stock (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
1000
+ <em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>,
1001
+ <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>);</pre>
1002
+ <p>
1003
+ See <a class="link" href="GtkImage.html#gtk-image-new-from-stock" title="gtk_image_new_from_stock ()"><code class="function">gtk_image_new_from_stock()</code></a> for details.
1004
+ </p>
1005
+ <div class="variablelist"><table border="0" class="variablelist">
1006
+ <colgroup>
1007
+ <col align="left" valign="top">
1008
+ <col>
1009
+ </colgroup>
1010
+ <tbody>
1011
+ <tr>
1012
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
1013
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
1014
+ </td>
1015
+ </tr>
1016
+ <tr>
1017
+ <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
1018
+ <td>a stock icon name</td>
1019
+ </tr>
1020
+ <tr>
1021
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
1022
+ <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
1023
+ </td>
1024
+ </tr>
1025
+ </tbody>
1026
+ </table></div>
1027
+ </div>
1028
+ <hr>
1029
+ <div class="refsect2">
1030
+ <a name="gtk-image-set-from-animation"></a><h3>gtk_image_set_from_animation ()</h3>
1031
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_set_from_animation (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
1032
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> *animation</code></em>);</pre>
1033
+ <p>
1034
+ Causes the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> to display the given animation (or display
1035
+ nothing, if you set the animation to <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>).
1036
+ </p>
1037
+ <div class="variablelist"><table border="0" class="variablelist">
1038
+ <colgroup>
1039
+ <col align="left" valign="top">
1040
+ <col>
1041
+ </colgroup>
1042
+ <tbody>
1043
+ <tr>
1044
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
1045
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
1046
+ </td>
1047
+ </tr>
1048
+ <tr>
1049
+ <td><p><span class="term"><em class="parameter"><code>animation</code></em> :</span></p></td>
1050
+ <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>
1051
+ </td>
1052
+ </tr>
1053
+ </tbody>
1054
+ </table></div>
1055
+ </div>
1056
+ <hr>
1057
+ <div class="refsect2">
1058
+ <a name="gtk-image-set-from-icon-name"></a><h3>gtk_image_set_from_icon_name ()</h3>
1059
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_set_from_icon_name (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
1060
+ <em class="parameter"><code>const <span class="type">gchar</span> *icon_name</code></em>,
1061
+ <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>);</pre>
1062
+ <p>
1063
+ See <a class="link" href="GtkImage.html#gtk-image-new-from-icon-name" title="gtk_image_new_from_icon_name ()"><code class="function">gtk_image_new_from_icon_name()</code></a> for details.
1064
+ </p>
1065
+ <div class="variablelist"><table border="0" class="variablelist">
1066
+ <colgroup>
1067
+ <col align="left" valign="top">
1068
+ <col>
1069
+ </colgroup>
1070
+ <tbody>
1071
+ <tr>
1072
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
1073
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
1074
+ </td>
1075
+ </tr>
1076
+ <tr>
1077
+ <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
1078
+ <td>an icon name</td>
1079
+ </tr>
1080
+ <tr>
1081
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
1082
+ <td>an icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
1083
+ </td>
1084
+ </tr>
1085
+ </tbody>
1086
+ </table></div>
1087
+ <p class="since">Since 2.6</p>
1088
+ </div>
1089
+ <hr>
1090
+ <div class="refsect2">
1091
+ <a name="gtk-image-set-from-gicon"></a><h3>gtk_image_set_from_gicon ()</h3>
1092
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_set_from_gicon (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
1093
+ <em class="parameter"><code><span class="type">GIcon</span> *icon</code></em>,
1094
+ <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>);</pre>
1095
+ <p>
1096
+ See <a class="link" href="GtkImage.html#gtk-image-new-from-gicon" title="gtk_image_new_from_gicon ()"><code class="function">gtk_image_new_from_gicon()</code></a> for details.
1097
+ </p>
1098
+ <div class="variablelist"><table border="0" class="variablelist">
1099
+ <colgroup>
1100
+ <col align="left" valign="top">
1101
+ <col>
1102
+ </colgroup>
1103
+ <tbody>
1104
+ <tr>
1105
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
1106
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
1107
+ </td>
1108
+ </tr>
1109
+ <tr>
1110
+ <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
1111
+ <td>an icon</td>
1112
+ </tr>
1113
+ <tr>
1114
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
1115
+ <td>an icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
1116
+ </td>
1117
+ </tr>
1118
+ </tbody>
1119
+ </table></div>
1120
+ <p class="since">Since 2.14</p>
1121
+ </div>
1122
+ <hr>
1123
+ <div class="refsect2">
1124
+ <a name="gtk-image-set-from-resource"></a><h3>gtk_image_set_from_resource ()</h3>
1125
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_set_from_resource (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
1126
+ <em class="parameter"><code>const <span class="type">gchar</span> *resource_path</code></em>);</pre>
1127
+ <p>
1128
+ See <a class="link" href="GtkImage.html#gtk-image-new-from-resource" title="gtk_image_new_from_resource ()"><code class="function">gtk_image_new_from_resource()</code></a> for details.
1129
+ </p>
1130
+ <div class="variablelist"><table border="0" class="variablelist">
1131
+ <colgroup>
1132
+ <col align="left" valign="top">
1133
+ <col>
1134
+ </colgroup>
1135
+ <tbody>
1136
+ <tr>
1137
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
1138
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
1139
+ </td>
1140
+ </tr>
1141
+ <tr>
1142
+ <td><p><span class="term"><em class="parameter"><code>resource_path</code></em> :</span></p></td>
1143
+ <td>a resource path or <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>
1144
+ </td>
1145
+ </tr>
1146
+ </tbody>
1147
+ </table></div>
1148
+ </div>
1149
+ <hr>
1150
+ <div class="refsect2">
1151
+ <a name="gtk-image-clear"></a><h3>gtk_image_clear ()</h3>
1152
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_clear (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
1153
+ <p>
1154
+ Resets the image to be empty.
1155
+ </p>
1156
+ <div class="variablelist"><table border="0" class="variablelist">
1157
+ <colgroup>
1158
+ <col align="left" valign="top">
1159
+ <col>
1160
+ </colgroup>
1161
+ <tbody><tr>
1162
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
1163
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
1164
+ </td>
1165
+ </tr></tbody>
1166
+ </table></div>
1167
+ <p class="since">Since 2.8</p>
1168
+ </div>
1169
+ <hr>
1170
+ <div class="refsect2">
1171
+ <a name="gtk-image-new"></a><h3>gtk_image_new ()</h3>
1172
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_image_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1173
+ <p>
1174
+ Creates a new empty <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget.
1175
+ </p>
1176
+ <div class="variablelist"><table border="0" class="variablelist">
1177
+ <colgroup>
1178
+ <col align="left" valign="top">
1179
+ <col>
1180
+ </colgroup>
1181
+ <tbody><tr>
1182
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1183
+ <td>a newly created <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget.</td>
1184
+ </tr></tbody>
1185
+ </table></div>
1186
+ </div>
1187
+ <hr>
1188
+ <div class="refsect2">
1189
+ <a name="gtk-image-set-pixel-size"></a><h3>gtk_image_set_pixel_size ()</h3>
1190
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_image_set_pixel_size (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
1191
+ <em class="parameter"><code><span class="type">gint</span> pixel_size</code></em>);</pre>
1192
+ <p>
1193
+ Sets the pixel size to use for named icons. If the pixel size is set
1194
+ to a value != -1, it is used instead of the icon size set by
1195
+ <a class="link" href="GtkImage.html#gtk-image-set-from-icon-name" title="gtk_image_set_from_icon_name ()"><code class="function">gtk_image_set_from_icon_name()</code></a>.
1196
+ </p>
1197
+ <div class="variablelist"><table border="0" class="variablelist">
1198
+ <colgroup>
1199
+ <col align="left" valign="top">
1200
+ <col>
1201
+ </colgroup>
1202
+ <tbody>
1203
+ <tr>
1204
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
1205
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
1206
+ </td>
1207
+ </tr>
1208
+ <tr>
1209
+ <td><p><span class="term"><em class="parameter"><code>pixel_size</code></em> :</span></p></td>
1210
+ <td>the new pixel size</td>
1211
+ </tr>
1212
+ </tbody>
1213
+ </table></div>
1214
+ <p class="since">Since 2.6</p>
1215
+ </div>
1216
+ <hr>
1217
+ <div class="refsect2">
1218
+ <a name="gtk-image-get-pixel-size"></a><h3>gtk_image_get_pixel_size ()</h3>
1219
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_image_get_pixel_size (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
1220
+ <p>
1221
+ Gets the pixel size used for named icons.
1222
+ </p>
1223
+ <div class="variablelist"><table border="0" class="variablelist">
1224
+ <colgroup>
1225
+ <col align="left" valign="top">
1226
+ <col>
1227
+ </colgroup>
1228
+ <tbody>
1229
+ <tr>
1230
+ <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
1231
+ <td>a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
1232
+ </td>
1233
+ </tr>
1234
+ <tr>
1235
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1236
+ <td>the pixel size used for named icons.</td>
1237
+ </tr>
1238
+ </tbody>
1239
+ </table></div>
1240
+ <p class="since">Since 2.6</p>
1241
+ </div>
1242
+ </div>
1243
+ <div class="refsect1">
1244
+ <a name="GtkImage.property-details"></a><h2>Property Details</h2>
1245
+ <div class="refsect2">
1246
+ <a name="GtkImage--file"></a><h3>The <code class="literal">"file"</code> property</h3>
1247
+ <pre class="programlisting"> "file" <span class="type">gchar</span>* : Read / Write</pre>
1248
+ <p>Filename to load and display.</p>
1249
+ <p>Default value: NULL</p>
1250
+ </div>
1251
+ <hr>
1252
+ <div class="refsect2">
1253
+ <a name="GtkImage--gicon"></a><h3>The <code class="literal">"gicon"</code> property</h3>
1254
+ <pre class="programlisting"> "gicon" <span class="type">GIcon</span>* : Read / Write</pre>
1255
+ <p>
1256
+ The GIcon displayed in the GtkImage. For themed icons,
1257
+ If the icon theme is changed, the image will be updated
1258
+ automatically.
1259
+ </p>
1260
+ <p class="since">Since 2.14</p>
1261
+ </div>
1262
+ <hr>
1263
+ <div class="refsect2">
1264
+ <a name="GtkImage--icon-name"></a><h3>The <code class="literal">"icon-name"</code> property</h3>
1265
+ <pre class="programlisting"> "icon-name" <span class="type">gchar</span>* : Read / Write</pre>
1266
+ <p>
1267
+ The name of the icon in the icon theme. If the icon theme is
1268
+ changed, the image will be updated automatically.
1269
+ </p>
1270
+ <p>Default value: NULL</p>
1271
+ <p class="since">Since 2.6</p>
1272
+ </div>
1273
+ <hr>
1274
+ <div class="refsect2">
1275
+ <a name="GtkImage--icon-set"></a><h3>The <code class="literal">"icon-set"</code> property</h3>
1276
+ <pre class="programlisting"> "icon-set" <a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>* : Read / Write</pre>
1277
+ <p>Icon set to display.</p>
1278
+ </div>
1279
+ <hr>
1280
+ <div class="refsect2">
1281
+ <a name="GtkImage--icon-size"></a><h3>The <code class="literal">"icon-size"</code> property</h3>
1282
+ <pre class="programlisting"> "icon-size" <span class="type">gint</span> : Read / Write</pre>
1283
+ <p>Symbolic size to use for stock icon, icon set or named icon.</p>
1284
+ <p>Allowed values: &gt;= 0</p>
1285
+ <p>Default value: 4</p>
1286
+ </div>
1287
+ <hr>
1288
+ <div class="refsect2">
1289
+ <a name="GtkImage--pixbuf"></a><h3>The <code class="literal">"pixbuf"</code> property</h3>
1290
+ <pre class="programlisting"> "pixbuf" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>* : Read / Write</pre>
1291
+ <p>A GdkPixbuf to display.</p>
1292
+ </div>
1293
+ <hr>
1294
+ <div class="refsect2">
1295
+ <a name="GtkImage--pixbuf-animation"></a><h3>The <code class="literal">"pixbuf-animation"</code> property</h3>
1296
+ <pre class="programlisting"> "pixbuf-animation" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>* : Read / Write</pre>
1297
+ <p>GdkPixbufAnimation to display.</p>
1298
+ </div>
1299
+ <hr>
1300
+ <div class="refsect2">
1301
+ <a name="GtkImage--pixel-size"></a><h3>The <code class="literal">"pixel-size"</code> property</h3>
1302
+ <pre class="programlisting"> "pixel-size" <span class="type">gint</span> : Read / Write</pre>
1303
+ <p>
1304
+ The "pixel-size" property can be used to specify a fixed size
1305
+ overriding the <a class="link" href="GtkImage.html#GtkImage--icon-size" title='The "icon-size" property'><span class="type">"icon-size"</span></a> property for images of type
1306
+ <a class="link" href="GtkImage.html#GTK-IMAGE-ICON-NAME:CAPS"><code class="literal">GTK_IMAGE_ICON_NAME</code></a>.
1307
+ </p>
1308
+ <p>Allowed values: &gt;= G_MAXULONG</p>
1309
+ <p>Default value: -1</p>
1310
+ <p class="since">Since 2.6</p>
1311
+ </div>
1312
+ <hr>
1313
+ <div class="refsect2">
1314
+ <a name="GtkImage--stock"></a><h3>The <code class="literal">"stock"</code> property</h3>
1315
+ <pre class="programlisting"> "stock" <span class="type">gchar</span>* : Read / Write</pre>
1316
+ <p>Stock ID for a stock image to display.</p>
1317
+ <p>Default value: NULL</p>
1318
+ </div>
1319
+ <hr>
1320
+ <div class="refsect2">
1321
+ <a name="GtkImage--storage-type"></a><h3>The <code class="literal">"storage-type"</code> property</h3>
1322
+ <pre class="programlisting"> "storage-type" <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a> : Read</pre>
1323
+ <p>The representation being used for image data.</p>
1324
+ <p>Default value: GTK_IMAGE_EMPTY</p>
1325
+ </div>
1326
+ <hr>
1327
+ <div class="refsect2">
1328
+ <a name="GtkImage--use-fallback"></a><h3>The <code class="literal">"use-fallback"</code> property</h3>
1329
+ <pre class="programlisting"> "use-fallback" <span class="type">gboolean</span> : Read / Write</pre>
1330
+ <p>
1331
+ Whether the icon displayed in the GtkImage will use
1332
+ standard icon names fallback. The value of this property
1333
+ is only relevant for images of type <a class="link" href="GtkImage.html#GTK-IMAGE-ICON-NAME:CAPS"><code class="literal">GTK_IMAGE_ICON_NAME</code></a>
1334
+ and <a class="link" href="GtkImage.html#GTK-IMAGE-GICON:CAPS"><code class="literal">GTK_IMAGE_GICON</code></a>.
1335
+ </p>
1336
+ <p>Default value: FALSE</p>
1337
+ <p class="since">Since 3.0</p>
1338
+ </div>
1339
+ </div>
1340
+ <div class="refsect1">
1341
+ <a name="GtkImage.see-also"></a><h2>See Also</h2>
1342
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
1343
+ </div>
1344
+ </div>
1345
+ <div class="footer">
1346
+ <hr>
1347
+ Generated by GTK-Doc V1.18.1</div>
1348
+ </body>
1349
+ </html>