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,2896 @@
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>GtkIconView</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="TreeWidgetObjects.html" title="Tree, List and Icon Grid Widgets">
9
+ <link rel="prev" href="GtkCellView.html" title="GtkCellView">
10
+ <link rel="next" href="GtkTreeSortable.html" title="GtkTreeSortable">
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="GtkCellView.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="TreeWidgetObjects.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="GtkTreeSortable.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="#GtkIconView.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkIconView.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkIconView.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkIconView.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkIconView.properties" class="shortcut">Properties</a>
33
+  | 
34
+ <a href="#GtkIconView.style-properties" class="shortcut">Style Properties</a>
35
+  | 
36
+ <a href="#GtkIconView.signals" class="shortcut">Signals</a>
37
+ </td></tr>
38
+ </table>
39
+ <div class="refentry">
40
+ <a name="GtkIconView"></a><div class="titlepage"></div>
41
+ <div class="refnamediv"><table width="100%"><tr>
42
+ <td valign="top">
43
+ <h2><span class="refentrytitle"><a name="GtkIconView.top_of_page"></a>GtkIconView</span></h2>
44
+ <p>GtkIconView — A widget which displays a list of icons in a grid</p>
45
+ </td>
46
+ <td valign="top" align="right"><img src="icon-view.png"></td>
47
+ </tr></table></div>
48
+ <div class="refsynopsisdiv">
49
+ <a name="GtkIconView.synopsis"></a><h2>Synopsis</h2>
50
+ <pre class="synopsis">
51
+ #include &lt;gtk/gtk.h&gt;
52
+
53
+ struct <a class="link" href="GtkIconView.html#GtkIconView-struct" title="struct GtkIconView">GtkIconView</a>;
54
+ <span class="returnvalue">void</span> (<a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()">*GtkIconViewForeachFunc</a>) (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
55
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
56
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
57
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkIconView.html#gtk-icon-view-new" title="gtk_icon_view_new ()">gtk_icon_view_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
58
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkIconView.html#gtk-icon-view-new-with-area" title="gtk_icon_view_new_with_area ()">gtk_icon_view_new_with_area</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
59
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkIconView.html#gtk-icon-view-new-with-model" title="gtk_icon_view_new_with_model ()">gtk_icon_view_new_with_model</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
60
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-model" title="gtk_icon_view_set_model ()">gtk_icon_view_set_model</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
61
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
62
+ <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * <a class="link" href="GtkIconView.html#gtk-icon-view-get-model" title="gtk_icon_view_get_model ()">gtk_icon_view_get_model</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
63
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-text-column" title="gtk_icon_view_set_text_column ()">gtk_icon_view_set_text_column</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
64
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);
65
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-text-column" title="gtk_icon_view_get_text_column ()">gtk_icon_view_get_text_column</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
66
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-markup-column" title="gtk_icon_view_set_markup_column ()">gtk_icon_view_set_markup_column</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
67
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);
68
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-markup-column" title="gtk_icon_view_get_markup_column ()">gtk_icon_view_get_markup_column</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
69
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-pixbuf-column" title="gtk_icon_view_set_pixbuf_column ()">gtk_icon_view_set_pixbuf_column</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
70
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);
71
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-pixbuf-column" title="gtk_icon_view_get_pixbuf_column ()">gtk_icon_view_get_pixbuf_column</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
72
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * <a class="link" href="GtkIconView.html#gtk-icon-view-get-path-at-pos" title="gtk_icon_view_get_path_at_pos ()">gtk_icon_view_get_path_at_pos</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
73
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
74
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>);
75
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-at-pos" title="gtk_icon_view_get_item_at_pos ()">gtk_icon_view_get_item_at_pos</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
76
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
77
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
78
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
79
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);
80
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-convert-widget-to-bin-window-coords" title="gtk_icon_view_convert_widget_to_bin_window_coords ()">gtk_icon_view_convert_widget_to_bin_window_coords</a>
81
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
82
+ <em class="parameter"><code><span class="type">gint</span> wx</code></em>,
83
+ <em class="parameter"><code><span class="type">gint</span> wy</code></em>,
84
+ <em class="parameter"><code><span class="type">gint</span> *bx</code></em>,
85
+ <em class="parameter"><code><span class="type">gint</span> *by</code></em>);
86
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-cursor" title="gtk_icon_view_set_cursor ()">gtk_icon_view_set_cursor</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
87
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
88
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
89
+ <em class="parameter"><code><span class="type">gboolean</span> start_editing</code></em>);
90
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-cursor" title="gtk_icon_view_get_cursor ()">gtk_icon_view_get_cursor</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
91
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
92
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);
93
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-selected-foreach" title="gtk_icon_view_selected_foreach ()">gtk_icon_view_selected_foreach</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
94
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()"><span class="type">GtkIconViewForeachFunc</span></a> func</code></em>,
95
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
96
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-selection-mode" title="gtk_icon_view_set_selection_mode ()">gtk_icon_view_set_selection_mode</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
97
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> mode</code></em>);
98
+ <a class="link" href="gtk3-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="returnvalue">GtkSelectionMode</span></a> <a class="link" href="GtkIconView.html#gtk-icon-view-get-selection-mode" title="gtk_icon_view_get_selection_mode ()">gtk_icon_view_get_selection_mode</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
99
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-item-orientation" title="gtk_icon_view_set_item_orientation ()">gtk_icon_view_set_item_orientation</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
100
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);
101
+ <a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-orientation" title="gtk_icon_view_get_item_orientation ()">gtk_icon_view_get_item_orientation</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
102
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-columns" title="gtk_icon_view_set_columns ()">gtk_icon_view_set_columns</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
103
+ <em class="parameter"><code><span class="type">gint</span> columns</code></em>);
104
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-columns" title="gtk_icon_view_get_columns ()">gtk_icon_view_get_columns</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
105
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-item-width" title="gtk_icon_view_set_item_width ()">gtk_icon_view_set_item_width</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
106
+ <em class="parameter"><code><span class="type">gint</span> item_width</code></em>);
107
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-width" title="gtk_icon_view_get_item_width ()">gtk_icon_view_get_item_width</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
108
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-spacing" title="gtk_icon_view_set_spacing ()">gtk_icon_view_set_spacing</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
109
+ <em class="parameter"><code><span class="type">gint</span> spacing</code></em>);
110
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-spacing" title="gtk_icon_view_get_spacing ()">gtk_icon_view_get_spacing</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
111
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-row-spacing" title="gtk_icon_view_set_row_spacing ()">gtk_icon_view_set_row_spacing</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
112
+ <em class="parameter"><code><span class="type">gint</span> row_spacing</code></em>);
113
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-row-spacing" title="gtk_icon_view_get_row_spacing ()">gtk_icon_view_get_row_spacing</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
114
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-column-spacing" title="gtk_icon_view_set_column_spacing ()">gtk_icon_view_set_column_spacing</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
115
+ <em class="parameter"><code><span class="type">gint</span> column_spacing</code></em>);
116
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-column-spacing" title="gtk_icon_view_get_column_spacing ()">gtk_icon_view_get_column_spacing</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
117
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-margin" title="gtk_icon_view_set_margin ()">gtk_icon_view_set_margin</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
118
+ <em class="parameter"><code><span class="type">gint</span> margin</code></em>);
119
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-margin" title="gtk_icon_view_get_margin ()">gtk_icon_view_get_margin</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
120
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-item-padding" title="gtk_icon_view_set_item_padding ()">gtk_icon_view_set_item_padding</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
121
+ <em class="parameter"><code><span class="type">gint</span> item_padding</code></em>);
122
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-padding" title="gtk_icon_view_get_item_padding ()">gtk_icon_view_get_item_padding</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
123
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-cell-rect" title="gtk_icon_view_get_cell_rect ()">gtk_icon_view_get_cell_rect</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
124
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
125
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
126
+ <em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rect</code></em>);
127
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-select-path" title="gtk_icon_view_select_path ()">gtk_icon_view_select_path</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
128
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
129
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-unselect-path" title="gtk_icon_view_unselect_path ()">gtk_icon_view_unselect_path</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
130
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
131
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkIconView.html#gtk-icon-view-path-is-selected" title="gtk_icon_view_path_is_selected ()">gtk_icon_view_path_is_selected</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
132
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
133
+ <span class="returnvalue">GList</span> * <a class="link" href="GtkIconView.html#gtk-icon-view-get-selected-items" title="gtk_icon_view_get_selected_items ()">gtk_icon_view_get_selected_items</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
134
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-select-all" title="gtk_icon_view_select_all ()">gtk_icon_view_select_all</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
135
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-unselect-all" title="gtk_icon_view_unselect_all ()">gtk_icon_view_unselect_all</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
136
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-item-activated" title="gtk_icon_view_item_activated ()">gtk_icon_view_item_activated</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
137
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
138
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-scroll-to-path" title="gtk_icon_view_scroll_to_path ()">gtk_icon_view_scroll_to_path</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
139
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
140
+ <em class="parameter"><code><span class="type">gboolean</span> use_align</code></em>,
141
+ <em class="parameter"><code><span class="type">gfloat</span> row_align</code></em>,
142
+ <em class="parameter"><code><span class="type">gfloat</span> col_align</code></em>);
143
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-visible-range" title="gtk_icon_view_get_visible_range ()">gtk_icon_view_get_visible_range</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
144
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
145
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);
146
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-item" title="gtk_icon_view_set_tooltip_item ()">gtk_icon_view_set_tooltip_item</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
147
+ <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
148
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
149
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-cell" title="gtk_icon_view_set_tooltip_cell ()">gtk_icon_view_set_tooltip_cell</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
150
+ <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
151
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
152
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);
153
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-tooltip-context" title="gtk_icon_view_get_tooltip_context ()">gtk_icon_view_get_tooltip_context</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
154
+ <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
155
+ <em class="parameter"><code><span class="type">gint</span> *y</code></em>,
156
+ <em class="parameter"><code><span class="type">gboolean</span> keyboard_tip</code></em>,
157
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
158
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
159
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
160
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column" title="gtk_icon_view_set_tooltip_column ()">gtk_icon_view_set_tooltip_column</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
161
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);
162
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-tooltip-column" title="gtk_icon_view_get_tooltip_column ()">gtk_icon_view_get_tooltip_column</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
163
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-row" title="gtk_icon_view_get_item_row ()">gtk_icon_view_get_item_row</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
164
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
165
+ <span class="returnvalue">gint</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-column" title="gtk_icon_view_get_item_column ()">gtk_icon_view_get_item_column</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
166
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
167
+
168
+ enum <a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition">GtkIconViewDropPosition</a>;
169
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-enable-model-drag-source" title="gtk_icon_view_enable_model_drag_source ()">gtk_icon_view_enable_model_drag_source</a>
170
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
171
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
172
+ <em class="parameter"><code>const <a class="link" href="gtk3-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
173
+ <em class="parameter"><code><span class="type">gint</span> n_targets</code></em>,
174
+ <em class="parameter"><code><a href="../gdk3/gdk3-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
175
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-enable-model-drag-dest" title="gtk_icon_view_enable_model_drag_dest ()">gtk_icon_view_enable_model_drag_dest</a>
176
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
177
+ <em class="parameter"><code>const <a class="link" href="gtk3-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
178
+ <em class="parameter"><code><span class="type">gint</span> n_targets</code></em>,
179
+ <em class="parameter"><code><a href="../gdk3/gdk3-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
180
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-unset-model-drag-source" title="gtk_icon_view_unset_model_drag_source ()">gtk_icon_view_unset_model_drag_source</a>
181
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
182
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-unset-model-drag-dest" title="gtk_icon_view_unset_model_drag_dest ()">gtk_icon_view_unset_model_drag_dest</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
183
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-reorderable" title="gtk_icon_view_set_reorderable ()">gtk_icon_view_set_reorderable</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
184
+ <em class="parameter"><code><span class="type">gboolean</span> reorderable</code></em>);
185
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-reorderable" title="gtk_icon_view_get_reorderable ()">gtk_icon_view_get_reorderable</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
186
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-drag-dest-item" title="gtk_icon_view_set_drag_dest_item ()">gtk_icon_view_set_drag_dest_item</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
187
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
188
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> pos</code></em>);
189
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-drag-dest-item" title="gtk_icon_view_get_drag_dest_item ()">gtk_icon_view_get_drag_dest_item</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
190
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
191
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);
192
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkIconView.html#gtk-icon-view-get-dest-item-at-pos" title="gtk_icon_view_get_dest_item_at_pos ()">gtk_icon_view_get_dest_item_at_pos</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
193
+ <em class="parameter"><code><span class="type">gint</span> drag_x</code></em>,
194
+ <em class="parameter"><code><span class="type">gint</span> drag_y</code></em>,
195
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
196
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);
197
+ <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html#cairo-surface-t"><span class="returnvalue">cairo_surface_t</span></a> * <a class="link" href="GtkIconView.html#gtk-icon-view-create-drag-icon" title="gtk_icon_view_create_drag_icon ()">gtk_icon_view_create_drag_icon</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
198
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
199
+ </pre>
200
+ </div>
201
+ <div class="refsect1">
202
+ <a name="GtkIconView.object-hierarchy"></a><h2>Object Hierarchy</h2>
203
+ <pre class="synopsis">
204
+ GObject
205
+ +----GInitiallyUnowned
206
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
207
+ +----<a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
208
+ +----GtkIconView
209
+ </pre>
210
+ </div>
211
+ <div class="refsect1">
212
+ <a name="GtkIconView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
213
+ <p>
214
+ GtkIconView implements
215
+ AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>, <a class="link" href="GtkCellLayout.html" title="GtkCellLayout">GtkCellLayout</a> and <a class="link" href="GtkScrollable.html" title="GtkScrollable">GtkScrollable</a>.</p>
216
+ </div>
217
+ <div class="refsect1">
218
+ <a name="GtkIconView.properties"></a><h2>Properties</h2>
219
+ <pre class="synopsis">
220
+ "<a class="link" href="GtkIconView.html#GtkIconView--cell-area" title='The "cell-area" property'>cell-area</a>" <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>* : Read / Write / Construct Only
221
+ "<a class="link" href="GtkIconView.html#GtkIconView--column-spacing" title='The "column-spacing" property'>column-spacing</a>" <span class="type">gint</span> : Read / Write
222
+ "<a class="link" href="GtkIconView.html#GtkIconView--columns" title='The "columns" property'>columns</a>" <span class="type">gint</span> : Read / Write
223
+ "<a class="link" href="GtkIconView.html#GtkIconView--item-orientation" title='The "item-orientation" property'>item-orientation</a>" <a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write
224
+ "<a class="link" href="GtkIconView.html#GtkIconView--item-padding" title='The "item-padding" property'>item-padding</a>" <span class="type">gint</span> : Read / Write
225
+ "<a class="link" href="GtkIconView.html#GtkIconView--item-width" title='The "item-width" property'>item-width</a>" <span class="type">gint</span> : Read / Write
226
+ "<a class="link" href="GtkIconView.html#GtkIconView--margin" title='The "margin" property'>margin</a>" <span class="type">gint</span> : Read / Write
227
+ "<a class="link" href="GtkIconView.html#GtkIconView--markup-column" title='The "markup-column" property'>markup-column</a>" <span class="type">gint</span> : Read / Write
228
+ "<a class="link" href="GtkIconView.html#GtkIconView--model" title='The "model" property'>model</a>" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write
229
+ "<a class="link" href="GtkIconView.html#GtkIconView--pixbuf-column" title='The "pixbuf-column" property'>pixbuf-column</a>" <span class="type">gint</span> : Read / Write
230
+ "<a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'>reorderable</a>" <span class="type">gboolean</span> : Read / Write
231
+ "<a class="link" href="GtkIconView.html#GtkIconView--row-spacing" title='The "row-spacing" property'>row-spacing</a>" <span class="type">gint</span> : Read / Write
232
+ "<a class="link" href="GtkIconView.html#GtkIconView--selection-mode" title='The "selection-mode" property'>selection-mode</a>" <a class="link" href="gtk3-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> : Read / Write
233
+ "<a class="link" href="GtkIconView.html#GtkIconView--spacing" title='The "spacing" property'>spacing</a>" <span class="type">gint</span> : Read / Write
234
+ "<a class="link" href="GtkIconView.html#GtkIconView--text-column" title='The "text-column" property'>text-column</a>" <span class="type">gint</span> : Read / Write
235
+ "<a class="link" href="GtkIconView.html#GtkIconView--tooltip-column" title='The "tooltip-column" property'>tooltip-column</a>" <span class="type">gint</span> : Read / Write
236
+ </pre>
237
+ </div>
238
+ <div class="refsect1">
239
+ <a name="GtkIconView.style-properties"></a><h2>Style Properties</h2>
240
+ <pre class="synopsis">
241
+ "<a class="link" href="GtkIconView.html#GtkIconView--s-selection-box-alpha" title='The "selection-box-alpha" style property'>selection-box-alpha</a>" <span class="type">guchar</span> : Read
242
+ "<a class="link" href="GtkIconView.html#GtkIconView--s-selection-box-color" title='The "selection-box-color" style property'>selection-box-color</a>" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read
243
+ </pre>
244
+ </div>
245
+ <div class="refsect1">
246
+ <a name="GtkIconView.signals"></a><h2>Signals</h2>
247
+ <pre class="synopsis">
248
+ "<a class="link" href="GtkIconView.html#GtkIconView-activate-cursor-item" title='The "activate-cursor-item" signal'>activate-cursor-item</a>" : <code class="literal">Action</code>
249
+ "<a class="link" href="GtkIconView.html#GtkIconView-item-activated" title='The "item-activated" signal'>item-activated</a>" : <code class="literal">Run Last</code>
250
+ "<a class="link" href="GtkIconView.html#GtkIconView-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : <code class="literal">Action</code>
251
+ "<a class="link" href="GtkIconView.html#GtkIconView-select-all" title='The "select-all" signal'>select-all</a>" : <code class="literal">Action</code>
252
+ "<a class="link" href="GtkIconView.html#GtkIconView-select-cursor-item" title='The "select-cursor-item" signal'>select-cursor-item</a>" : <code class="literal">Action</code>
253
+ "<a class="link" href="GtkIconView.html#GtkIconView-selection-changed" title='The "selection-changed" signal'>selection-changed</a>" : <code class="literal">Run First</code>
254
+ "<a class="link" href="GtkIconView.html#GtkIconView-toggle-cursor-item" title='The "toggle-cursor-item" signal'>toggle-cursor-item</a>" : <code class="literal">Action</code>
255
+ "<a class="link" href="GtkIconView.html#GtkIconView-unselect-all" title='The "unselect-all" signal'>unselect-all</a>" : <code class="literal">Action</code>
256
+ </pre>
257
+ </div>
258
+ <div class="refsect1">
259
+ <a name="GtkIconView.description"></a><h2>Description</h2>
260
+ <p>
261
+ <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> provides an alternative view on a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.
262
+ It displays the model as a grid of icons with labels. Like
263
+ <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>, it allows to select one or multiple items
264
+ (depending on the selection mode, see <a class="link" href="GtkIconView.html#gtk-icon-view-set-selection-mode" title="gtk_icon_view_set_selection_mode ()"><code class="function">gtk_icon_view_set_selection_mode()</code></a>).
265
+ In addition to selection with the arrow keys, <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> supports
266
+ rubberband selection, which is controlled by dragging the pointer.
267
+ </p>
268
+ <p>
269
+ Note that if the tree model is backed by an actual tree store (as
270
+ opposed to a flat list where the mapping to icons is obvious),
271
+ <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> will only display the first level of the tree and
272
+ ignore the tree's branches.
273
+ </p>
274
+ </div>
275
+ <div class="refsect1">
276
+ <a name="GtkIconView.details"></a><h2>Details</h2>
277
+ <div class="refsect2">
278
+ <a name="GtkIconView-struct"></a><h3>struct GtkIconView</h3>
279
+ <pre class="programlisting">struct GtkIconView;</pre>
280
+ </div>
281
+ <hr>
282
+ <div class="refsect2">
283
+ <a name="GtkIconViewForeachFunc"></a><h3>GtkIconViewForeachFunc ()</h3>
284
+ <pre class="programlisting"><span class="returnvalue">void</span> (*GtkIconViewForeachFunc) (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
285
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
286
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
287
+ <p>
288
+ A function used by <a class="link" href="GtkIconView.html#gtk-icon-view-selected-foreach" title="gtk_icon_view_selected_foreach ()"><code class="function">gtk_icon_view_selected_foreach()</code></a> to map all
289
+ selected rows. It will be called on every selected row in the view.
290
+ </p>
291
+ <div class="variablelist"><table border="0" class="variablelist">
292
+ <colgroup>
293
+ <col align="left" valign="top">
294
+ <col>
295
+ </colgroup>
296
+ <tbody>
297
+ <tr>
298
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
299
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
300
+ </td>
301
+ </tr>
302
+ <tr>
303
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
304
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of a selected row</td>
305
+ </tr>
306
+ <tr>
307
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
308
+ <td>user data</td>
309
+ </tr>
310
+ </tbody>
311
+ </table></div>
312
+ </div>
313
+ <hr>
314
+ <div class="refsect2">
315
+ <a name="gtk-icon-view-new"></a><h3>gtk_icon_view_new ()</h3>
316
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_icon_view_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
317
+ <p>
318
+ Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget
319
+ </p>
320
+ <div class="variablelist"><table border="0" class="variablelist">
321
+ <colgroup>
322
+ <col align="left" valign="top">
323
+ <col>
324
+ </colgroup>
325
+ <tbody><tr>
326
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
327
+ <td>A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget</td>
328
+ </tr></tbody>
329
+ </table></div>
330
+ <p class="since">Since 2.6</p>
331
+ </div>
332
+ <hr>
333
+ <div class="refsect2">
334
+ <a name="gtk-icon-view-new-with-area"></a><h3>gtk_icon_view_new_with_area ()</h3>
335
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_icon_view_new_with_area (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
336
+ <p>
337
+ Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget using the
338
+ specified <em class="parameter"><code>area</code></em> to layout cells inside the icons.
339
+ </p>
340
+ <div class="variablelist"><table border="0" class="variablelist">
341
+ <colgroup>
342
+ <col align="left" valign="top">
343
+ <col>
344
+ </colgroup>
345
+ <tbody>
346
+ <tr>
347
+ <td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
348
+ <td>the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> to use to layout cells</td>
349
+ </tr>
350
+ <tr>
351
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
352
+ <td>A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget</td>
353
+ </tr>
354
+ </tbody>
355
+ </table></div>
356
+ <p class="since">Since 3.0</p>
357
+ </div>
358
+ <hr>
359
+ <div class="refsect2">
360
+ <a name="gtk-icon-view-new-with-model"></a><h3>gtk_icon_view_new_with_model ()</h3>
361
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_icon_view_new_with_model (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
362
+ <p>
363
+ Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget with the model <em class="parameter"><code>model</code></em>.
364
+ </p>
365
+ <div class="variablelist"><table border="0" class="variablelist">
366
+ <colgroup>
367
+ <col align="left" valign="top">
368
+ <col>
369
+ </colgroup>
370
+ <tbody>
371
+ <tr>
372
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
373
+ <td>The model.</td>
374
+ </tr>
375
+ <tr>
376
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
377
+ <td>A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget.</td>
378
+ </tr>
379
+ </tbody>
380
+ </table></div>
381
+ <p class="since">Since 2.6</p>
382
+ </div>
383
+ <hr>
384
+ <div class="refsect2">
385
+ <a name="gtk-icon-view-set-model"></a><h3>gtk_icon_view_set_model ()</h3>
386
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_model (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
387
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
388
+ <p>
389
+ Sets the model for a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
390
+ If the <em class="parameter"><code>icon_view</code></em> already has a model set, it will remove
391
+ it before setting the new model. If <em class="parameter"><code>model</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, then
392
+ it will unset the old model.
393
+ </p>
394
+ <div class="variablelist"><table border="0" class="variablelist">
395
+ <colgroup>
396
+ <col align="left" valign="top">
397
+ <col>
398
+ </colgroup>
399
+ <tbody>
400
+ <tr>
401
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
402
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
403
+ </tr>
404
+ <tr>
405
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
406
+ <td>The model. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
407
+ </td>
408
+ </tr>
409
+ </tbody>
410
+ </table></div>
411
+ <p class="since">Since 2.6</p>
412
+ </div>
413
+ <hr>
414
+ <div class="refsect2">
415
+ <a name="gtk-icon-view-get-model"></a><h3>gtk_icon_view_get_model ()</h3>
416
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * gtk_icon_view_get_model (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
417
+ <p>
418
+ Returns the model the <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> is based on. Returns <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if the
419
+ model is unset.
420
+ </p>
421
+ <div class="variablelist"><table border="0" class="variablelist">
422
+ <colgroup>
423
+ <col align="left" valign="top">
424
+ <col>
425
+ </colgroup>
426
+ <tbody>
427
+ <tr>
428
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
429
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
430
+ </td>
431
+ </tr>
432
+ <tr>
433
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
434
+ <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if none is
435
+ currently being used. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
436
+ </td>
437
+ </tr>
438
+ </tbody>
439
+ </table></div>
440
+ <p class="since">Since 2.6</p>
441
+ </div>
442
+ <hr>
443
+ <div class="refsect2">
444
+ <a name="gtk-icon-view-set-text-column"></a><h3>gtk_icon_view_set_text_column ()</h3>
445
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_text_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
446
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
447
+ <p>
448
+ Sets the column with text for <em class="parameter"><code>icon_view</code></em> to be <em class="parameter"><code>column</code></em>. The text
449
+ column must be of type <span class="type">G_TYPE_STRING</span>.
450
+ </p>
451
+ <div class="variablelist"><table border="0" class="variablelist">
452
+ <colgroup>
453
+ <col align="left" valign="top">
454
+ <col>
455
+ </colgroup>
456
+ <tbody>
457
+ <tr>
458
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
459
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
460
+ </tr>
461
+ <tr>
462
+ <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
463
+ <td>A column in the currently used model, or -1 to display no text</td>
464
+ </tr>
465
+ </tbody>
466
+ </table></div>
467
+ <p class="since">Since 2.6</p>
468
+ </div>
469
+ <hr>
470
+ <div class="refsect2">
471
+ <a name="gtk-icon-view-get-text-column"></a><h3>gtk_icon_view_get_text_column ()</h3>
472
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_text_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
473
+ <p>
474
+ Returns the column with text for <em class="parameter"><code>icon_view</code></em>.
475
+ </p>
476
+ <div class="variablelist"><table border="0" class="variablelist">
477
+ <colgroup>
478
+ <col align="left" valign="top">
479
+ <col>
480
+ </colgroup>
481
+ <tbody>
482
+ <tr>
483
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
484
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
485
+ </tr>
486
+ <tr>
487
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
488
+ <td>the text column, or -1 if it's unset.</td>
489
+ </tr>
490
+ </tbody>
491
+ </table></div>
492
+ <p class="since">Since 2.6</p>
493
+ </div>
494
+ <hr>
495
+ <div class="refsect2">
496
+ <a name="gtk-icon-view-set-markup-column"></a><h3>gtk_icon_view_set_markup_column ()</h3>
497
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_markup_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
498
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
499
+ <p>
500
+ Sets the column with markup information for <em class="parameter"><code>icon_view</code></em> to be
501
+ <em class="parameter"><code>column</code></em>. The markup column must be of type <span class="type">G_TYPE_STRING</span>.
502
+ If the markup column is set to something, it overrides
503
+ the text column set by <a class="link" href="GtkIconView.html#gtk-icon-view-set-text-column" title="gtk_icon_view_set_text_column ()"><code class="function">gtk_icon_view_set_text_column()</code></a>.
504
+ </p>
505
+ <div class="variablelist"><table border="0" class="variablelist">
506
+ <colgroup>
507
+ <col align="left" valign="top">
508
+ <col>
509
+ </colgroup>
510
+ <tbody>
511
+ <tr>
512
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
513
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
514
+ </tr>
515
+ <tr>
516
+ <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
517
+ <td>A column in the currently used model, or -1 to display no text</td>
518
+ </tr>
519
+ </tbody>
520
+ </table></div>
521
+ <p class="since">Since 2.6</p>
522
+ </div>
523
+ <hr>
524
+ <div class="refsect2">
525
+ <a name="gtk-icon-view-get-markup-column"></a><h3>gtk_icon_view_get_markup_column ()</h3>
526
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_markup_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
527
+ <p>
528
+ Returns the column with markup text for <em class="parameter"><code>icon_view</code></em>.
529
+ </p>
530
+ <div class="variablelist"><table border="0" class="variablelist">
531
+ <colgroup>
532
+ <col align="left" valign="top">
533
+ <col>
534
+ </colgroup>
535
+ <tbody>
536
+ <tr>
537
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
538
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
539
+ </tr>
540
+ <tr>
541
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
542
+ <td>the markup column, or -1 if it's unset.</td>
543
+ </tr>
544
+ </tbody>
545
+ </table></div>
546
+ <p class="since">Since 2.6</p>
547
+ </div>
548
+ <hr>
549
+ <div class="refsect2">
550
+ <a name="gtk-icon-view-set-pixbuf-column"></a><h3>gtk_icon_view_set_pixbuf_column ()</h3>
551
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_pixbuf_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
552
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
553
+ <p>
554
+ Sets the column with pixbufs for <em class="parameter"><code>icon_view</code></em> to be <em class="parameter"><code>column</code></em>. The pixbuf
555
+ column must be of type <span class="type">GDK_TYPE_PIXBUF</span>
556
+ </p>
557
+ <div class="variablelist"><table border="0" class="variablelist">
558
+ <colgroup>
559
+ <col align="left" valign="top">
560
+ <col>
561
+ </colgroup>
562
+ <tbody>
563
+ <tr>
564
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
565
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
566
+ </tr>
567
+ <tr>
568
+ <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
569
+ <td>A column in the currently used model, or -1 to disable</td>
570
+ </tr>
571
+ </tbody>
572
+ </table></div>
573
+ <p class="since">Since 2.6</p>
574
+ </div>
575
+ <hr>
576
+ <div class="refsect2">
577
+ <a name="gtk-icon-view-get-pixbuf-column"></a><h3>gtk_icon_view_get_pixbuf_column ()</h3>
578
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_pixbuf_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
579
+ <p>
580
+ Returns the column with pixbufs for <em class="parameter"><code>icon_view</code></em>.
581
+ </p>
582
+ <div class="variablelist"><table border="0" class="variablelist">
583
+ <colgroup>
584
+ <col align="left" valign="top">
585
+ <col>
586
+ </colgroup>
587
+ <tbody>
588
+ <tr>
589
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
590
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
591
+ </tr>
592
+ <tr>
593
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
594
+ <td>the pixbuf column, or -1 if it's unset.</td>
595
+ </tr>
596
+ </tbody>
597
+ </table></div>
598
+ <p class="since">Since 2.6</p>
599
+ </div>
600
+ <hr>
601
+ <div class="refsect2">
602
+ <a name="gtk-icon-view-get-path-at-pos"></a><h3>gtk_icon_view_get_path_at_pos ()</h3>
603
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * gtk_icon_view_get_path_at_pos (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
604
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
605
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
606
+ <p>
607
+ Finds the path at the point (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>), relative to bin_window coordinates.
608
+ See <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-at-pos" title="gtk_icon_view_get_item_at_pos ()"><code class="function">gtk_icon_view_get_item_at_pos()</code></a>, if you are also interested in
609
+ the cell at the specified position.
610
+ See <a class="link" href="GtkIconView.html#gtk-icon-view-convert-widget-to-bin-window-coords" title="gtk_icon_view_convert_widget_to_bin_window_coords ()"><code class="function">gtk_icon_view_convert_widget_to_bin_window_coords()</code></a> for converting
611
+ widget coordinates to bin_window coordinates.
612
+ </p>
613
+ <div class="variablelist"><table border="0" class="variablelist">
614
+ <colgroup>
615
+ <col align="left" valign="top">
616
+ <col>
617
+ </colgroup>
618
+ <tbody>
619
+ <tr>
620
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
621
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
622
+ </tr>
623
+ <tr>
624
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
625
+ <td>The x position to be identified</td>
626
+ </tr>
627
+ <tr>
628
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
629
+ <td>The y position to be identified</td>
630
+ </tr>
631
+ <tr>
632
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
633
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> corresponding to the icon or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
634
+ if no icon exists at that position.</td>
635
+ </tr>
636
+ </tbody>
637
+ </table></div>
638
+ <p class="since">Since 2.6</p>
639
+ </div>
640
+ <hr>
641
+ <div class="refsect2">
642
+ <a name="gtk-icon-view-get-item-at-pos"></a><h3>gtk_icon_view_get_item_at_pos ()</h3>
643
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_icon_view_get_item_at_pos (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
644
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
645
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
646
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
647
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
648
+ <p>
649
+ Finds the path at the point (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>), relative to bin_window coordinates.
650
+ In contrast to <a class="link" href="GtkIconView.html#gtk-icon-view-get-path-at-pos" title="gtk_icon_view_get_path_at_pos ()"><code class="function">gtk_icon_view_get_path_at_pos()</code></a>, this function also
651
+ obtains the cell at the specified position. The returned path should
652
+ be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a>.
653
+ See <a class="link" href="GtkIconView.html#gtk-icon-view-convert-widget-to-bin-window-coords" title="gtk_icon_view_convert_widget_to_bin_window_coords ()"><code class="function">gtk_icon_view_convert_widget_to_bin_window_coords()</code></a> for converting
654
+ widget coordinates to bin_window coordinates.
655
+ </p>
656
+ <div class="variablelist"><table border="0" class="variablelist">
657
+ <colgroup>
658
+ <col align="left" valign="top">
659
+ <col>
660
+ </colgroup>
661
+ <tbody>
662
+ <tr>
663
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
664
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
665
+ </tr>
666
+ <tr>
667
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
668
+ <td>The x position to be identified</td>
669
+ </tr>
670
+ <tr>
671
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
672
+ <td>The y position to be identified</td>
673
+ </tr>
674
+ <tr>
675
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
676
+ <td>Return location for the 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="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>]</span>
677
+ </td>
678
+ </tr>
679
+ <tr>
680
+ <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
681
+ <td>Return location for the renderer
682
+ responsible for the cell at (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>), 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>]</span>
683
+ </td>
684
+ </tr>
685
+ <tr>
686
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
687
+ <td>
688
+ <code class="literal">TRUE</code> if an item exists at the specified position</td>
689
+ </tr>
690
+ </tbody>
691
+ </table></div>
692
+ <p class="since">Since 2.8</p>
693
+ </div>
694
+ <hr>
695
+ <div class="refsect2">
696
+ <a name="gtk-icon-view-convert-widget-to-bin-window-coords"></a><h3>gtk_icon_view_convert_widget_to_bin_window_coords ()</h3>
697
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_convert_widget_to_bin_window_coords
698
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
699
+ <em class="parameter"><code><span class="type">gint</span> wx</code></em>,
700
+ <em class="parameter"><code><span class="type">gint</span> wy</code></em>,
701
+ <em class="parameter"><code><span class="type">gint</span> *bx</code></em>,
702
+ <em class="parameter"><code><span class="type">gint</span> *by</code></em>);</pre>
703
+ <p>
704
+ Converts widget coordinates to coordinates for the bin_window,
705
+ as expected by e.g. <a class="link" href="GtkIconView.html#gtk-icon-view-get-path-at-pos" title="gtk_icon_view_get_path_at_pos ()"><code class="function">gtk_icon_view_get_path_at_pos()</code></a>.
706
+ </p>
707
+ <div class="variablelist"><table border="0" class="variablelist">
708
+ <colgroup>
709
+ <col align="left" valign="top">
710
+ <col>
711
+ </colgroup>
712
+ <tbody>
713
+ <tr>
714
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
715
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
716
+ </td>
717
+ </tr>
718
+ <tr>
719
+ <td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
720
+ <td>X coordinate relative to the widget</td>
721
+ </tr>
722
+ <tr>
723
+ <td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
724
+ <td>Y coordinate relative to the widget</td>
725
+ </tr>
726
+ <tr>
727
+ <td><p><span class="term"><em class="parameter"><code>bx</code></em> :</span></p></td>
728
+ <td>return location for bin_window X coordinate. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
729
+ </td>
730
+ </tr>
731
+ <tr>
732
+ <td><p><span class="term"><em class="parameter"><code>by</code></em> :</span></p></td>
733
+ <td>return location for bin_window Y coordinate. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
734
+ </td>
735
+ </tr>
736
+ </tbody>
737
+ </table></div>
738
+ <p class="since">Since 2.12</p>
739
+ </div>
740
+ <hr>
741
+ <div class="refsect2">
742
+ <a name="gtk-icon-view-set-cursor"></a><h3>gtk_icon_view_set_cursor ()</h3>
743
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_cursor (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
744
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
745
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
746
+ <em class="parameter"><code><span class="type">gboolean</span> start_editing</code></em>);</pre>
747
+ <p>
748
+ Sets the current keyboard focus to be at <em class="parameter"><code>path</code></em>, and selects it. This is
749
+ useful when you want to focus the user's attention on a particular item.
750
+ If <em class="parameter"><code>cell</code></em> is not <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, then focus is given to the cell specified by
751
+ it. Additionally, if <em class="parameter"><code>start_editing</code></em> is <code class="literal">TRUE</code>, then editing should be
752
+ started in the specified cell.
753
+ </p>
754
+ <p>
755
+ This function is often followed by <code class="literal">gtk_widget_grab_focus
756
+ (icon_view)</code> in order to give keyboard focus to the widget.
757
+ Please note that editing can only happen when the widget is realized.
758
+ </p>
759
+ <div class="variablelist"><table border="0" class="variablelist">
760
+ <colgroup>
761
+ <col align="left" valign="top">
762
+ <col>
763
+ </colgroup>
764
+ <tbody>
765
+ <tr>
766
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
767
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
768
+ </td>
769
+ </tr>
770
+ <tr>
771
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
772
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
773
+ </td>
774
+ </tr>
775
+ <tr>
776
+ <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
777
+ <td>One of the cell renderers of <em class="parameter"><code>icon_view</code></em>, 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>
778
+ </td>
779
+ </tr>
780
+ <tr>
781
+ <td><p><span class="term"><em class="parameter"><code>start_editing</code></em> :</span></p></td>
782
+ <td>
783
+ <code class="literal">TRUE</code> if the specified cell should start being edited.</td>
784
+ </tr>
785
+ </tbody>
786
+ </table></div>
787
+ <p class="since">Since 2.8</p>
788
+ </div>
789
+ <hr>
790
+ <div class="refsect2">
791
+ <a name="gtk-icon-view-get-cursor"></a><h3>gtk_icon_view_get_cursor ()</h3>
792
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_icon_view_get_cursor (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
793
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
794
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
795
+ <p>
796
+ Fills in <em class="parameter"><code>path</code></em> and <em class="parameter"><code>cell</code></em> with the current cursor path and cell.
797
+ If the cursor isn't currently set, then *<em class="parameter"><code>path</code></em> will be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
798
+ If no cell currently has focus, then *<em class="parameter"><code>cell</code></em> will be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
799
+ </p>
800
+ <p>
801
+ The returned <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> must be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a>.
802
+ </p>
803
+ <div class="variablelist"><table border="0" class="variablelist">
804
+ <colgroup>
805
+ <col align="left" valign="top">
806
+ <col>
807
+ </colgroup>
808
+ <tbody>
809
+ <tr>
810
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
811
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
812
+ </td>
813
+ </tr>
814
+ <tr>
815
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
816
+ <td>Return location for the current cursor path,
817
+ 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>]</span>
818
+ </td>
819
+ </tr>
820
+ <tr>
821
+ <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
822
+ <td>Return location the current focus cell, 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>]</span>
823
+ </td>
824
+ </tr>
825
+ <tr>
826
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
827
+ <td>
828
+ <code class="literal">TRUE</code> if the cursor is set.</td>
829
+ </tr>
830
+ </tbody>
831
+ </table></div>
832
+ <p class="since">Since 2.8</p>
833
+ </div>
834
+ <hr>
835
+ <div class="refsect2">
836
+ <a name="gtk-icon-view-selected-foreach"></a><h3>gtk_icon_view_selected_foreach ()</h3>
837
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_selected_foreach (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
838
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()"><span class="type">GtkIconViewForeachFunc</span></a> func</code></em>,
839
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
840
+ <p>
841
+ Calls a function for each selected icon. Note that the model or
842
+ selection cannot be modified from within this function.
843
+ </p>
844
+ <div class="variablelist"><table border="0" class="variablelist">
845
+ <colgroup>
846
+ <col align="left" valign="top">
847
+ <col>
848
+ </colgroup>
849
+ <tbody>
850
+ <tr>
851
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
852
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
853
+ </tr>
854
+ <tr>
855
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
856
+ <td>The function to call for each selected icon. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
857
+ </td>
858
+ </tr>
859
+ <tr>
860
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
861
+ <td>User data to pass to the function.</td>
862
+ </tr>
863
+ </tbody>
864
+ </table></div>
865
+ <p class="since">Since 2.6</p>
866
+ </div>
867
+ <hr>
868
+ <div class="refsect2">
869
+ <a name="gtk-icon-view-set-selection-mode"></a><h3>gtk_icon_view_set_selection_mode ()</h3>
870
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_selection_mode (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
871
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> mode</code></em>);</pre>
872
+ <p>
873
+ Sets the selection mode of the <em class="parameter"><code>icon_view</code></em>.
874
+ </p>
875
+ <div class="variablelist"><table border="0" class="variablelist">
876
+ <colgroup>
877
+ <col align="left" valign="top">
878
+ <col>
879
+ </colgroup>
880
+ <tbody>
881
+ <tr>
882
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
883
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
884
+ </tr>
885
+ <tr>
886
+ <td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
887
+ <td>The selection mode</td>
888
+ </tr>
889
+ </tbody>
890
+ </table></div>
891
+ <p class="since">Since 2.6</p>
892
+ </div>
893
+ <hr>
894
+ <div class="refsect2">
895
+ <a name="gtk-icon-view-get-selection-mode"></a><h3>gtk_icon_view_get_selection_mode ()</h3>
896
+ <pre class="programlisting"><a class="link" href="gtk3-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="returnvalue">GtkSelectionMode</span></a> gtk_icon_view_get_selection_mode (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
897
+ <p>
898
+ Gets the selection mode of the <em class="parameter"><code>icon_view</code></em>.
899
+ </p>
900
+ <div class="variablelist"><table border="0" class="variablelist">
901
+ <colgroup>
902
+ <col align="left" valign="top">
903
+ <col>
904
+ </colgroup>
905
+ <tbody>
906
+ <tr>
907
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
908
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
909
+ </tr>
910
+ <tr>
911
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
912
+ <td>the current selection mode</td>
913
+ </tr>
914
+ </tbody>
915
+ </table></div>
916
+ <p class="since">Since 2.6</p>
917
+ </div>
918
+ <hr>
919
+ <div class="refsect2">
920
+ <a name="gtk-icon-view-set-item-orientation"></a><h3>gtk_icon_view_set_item_orientation ()</h3>
921
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_item_orientation (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
922
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
923
+ <p>
924
+ Sets the ::item-orientation property which determines whether the labels
925
+ are drawn beside the icons instead of below.
926
+ </p>
927
+ <div class="variablelist"><table border="0" class="variablelist">
928
+ <colgroup>
929
+ <col align="left" valign="top">
930
+ <col>
931
+ </colgroup>
932
+ <tbody>
933
+ <tr>
934
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
935
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
936
+ </td>
937
+ </tr>
938
+ <tr>
939
+ <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
940
+ <td>the relative position of texts and icons</td>
941
+ </tr>
942
+ </tbody>
943
+ </table></div>
944
+ <p class="since">Since 2.6</p>
945
+ </div>
946
+ <hr>
947
+ <div class="refsect2">
948
+ <a name="gtk-icon-view-get-item-orientation"></a><h3>gtk_icon_view_get_item_orientation ()</h3>
949
+ <pre class="programlisting"><a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> gtk_icon_view_get_item_orientation (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
950
+ <p>
951
+ Returns the value of the ::item-orientation property which determines
952
+ whether the labels are drawn beside the icons instead of below.
953
+ </p>
954
+ <div class="variablelist"><table border="0" class="variablelist">
955
+ <colgroup>
956
+ <col align="left" valign="top">
957
+ <col>
958
+ </colgroup>
959
+ <tbody>
960
+ <tr>
961
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
962
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
963
+ </td>
964
+ </tr>
965
+ <tr>
966
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
967
+ <td>the relative position of texts and icons</td>
968
+ </tr>
969
+ </tbody>
970
+ </table></div>
971
+ <p class="since">Since 2.6</p>
972
+ </div>
973
+ <hr>
974
+ <div class="refsect2">
975
+ <a name="gtk-icon-view-set-columns"></a><h3>gtk_icon_view_set_columns ()</h3>
976
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_columns (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
977
+ <em class="parameter"><code><span class="type">gint</span> columns</code></em>);</pre>
978
+ <p>
979
+ Sets the ::columns property which determines in how
980
+ many columns the icons are arranged. If <em class="parameter"><code>columns</code></em> is
981
+ -1, the number of columns will be chosen automatically
982
+ to fill the available area.
983
+ </p>
984
+ <div class="variablelist"><table border="0" class="variablelist">
985
+ <colgroup>
986
+ <col align="left" valign="top">
987
+ <col>
988
+ </colgroup>
989
+ <tbody>
990
+ <tr>
991
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
992
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
993
+ </td>
994
+ </tr>
995
+ <tr>
996
+ <td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
997
+ <td>the number of columns</td>
998
+ </tr>
999
+ </tbody>
1000
+ </table></div>
1001
+ <p class="since">Since 2.6</p>
1002
+ </div>
1003
+ <hr>
1004
+ <div class="refsect2">
1005
+ <a name="gtk-icon-view-get-columns"></a><h3>gtk_icon_view_get_columns ()</h3>
1006
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_columns (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1007
+ <p>
1008
+ Returns the value of the ::columns property.
1009
+ </p>
1010
+ <div class="variablelist"><table border="0" class="variablelist">
1011
+ <colgroup>
1012
+ <col align="left" valign="top">
1013
+ <col>
1014
+ </colgroup>
1015
+ <tbody>
1016
+ <tr>
1017
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1018
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1019
+ </td>
1020
+ </tr>
1021
+ <tr>
1022
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1023
+ <td>the number of columns, or -1</td>
1024
+ </tr>
1025
+ </tbody>
1026
+ </table></div>
1027
+ <p class="since">Since 2.6</p>
1028
+ </div>
1029
+ <hr>
1030
+ <div class="refsect2">
1031
+ <a name="gtk-icon-view-set-item-width"></a><h3>gtk_icon_view_set_item_width ()</h3>
1032
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_item_width (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1033
+ <em class="parameter"><code><span class="type">gint</span> item_width</code></em>);</pre>
1034
+ <p>
1035
+ Sets the ::item-width property which specifies the width
1036
+ to use for each item. If it is set to -1, the icon view will
1037
+ automatically determine a suitable item size.
1038
+ </p>
1039
+ <div class="variablelist"><table border="0" class="variablelist">
1040
+ <colgroup>
1041
+ <col align="left" valign="top">
1042
+ <col>
1043
+ </colgroup>
1044
+ <tbody>
1045
+ <tr>
1046
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1047
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1048
+ </td>
1049
+ </tr>
1050
+ <tr>
1051
+ <td><p><span class="term"><em class="parameter"><code>item_width</code></em> :</span></p></td>
1052
+ <td>the width for each item</td>
1053
+ </tr>
1054
+ </tbody>
1055
+ </table></div>
1056
+ <p class="since">Since 2.6</p>
1057
+ </div>
1058
+ <hr>
1059
+ <div class="refsect2">
1060
+ <a name="gtk-icon-view-get-item-width"></a><h3>gtk_icon_view_get_item_width ()</h3>
1061
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_item_width (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1062
+ <p>
1063
+ Returns the value of the ::item-width property.
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>icon_view</code></em> :</span></p></td>
1073
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1074
+ </td>
1075
+ </tr>
1076
+ <tr>
1077
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1078
+ <td>the width of a single item, or -1</td>
1079
+ </tr>
1080
+ </tbody>
1081
+ </table></div>
1082
+ <p class="since">Since 2.6</p>
1083
+ </div>
1084
+ <hr>
1085
+ <div class="refsect2">
1086
+ <a name="gtk-icon-view-set-spacing"></a><h3>gtk_icon_view_set_spacing ()</h3>
1087
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1088
+ <em class="parameter"><code><span class="type">gint</span> spacing</code></em>);</pre>
1089
+ <p>
1090
+ Sets the ::spacing property which specifies the space
1091
+ which is inserted between the cells (i.e. the icon and
1092
+ the text) of an item.
1093
+ </p>
1094
+ <div class="variablelist"><table border="0" class="variablelist">
1095
+ <colgroup>
1096
+ <col align="left" valign="top">
1097
+ <col>
1098
+ </colgroup>
1099
+ <tbody>
1100
+ <tr>
1101
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1102
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1103
+ </td>
1104
+ </tr>
1105
+ <tr>
1106
+ <td><p><span class="term"><em class="parameter"><code>spacing</code></em> :</span></p></td>
1107
+ <td>the spacing</td>
1108
+ </tr>
1109
+ </tbody>
1110
+ </table></div>
1111
+ <p class="since">Since 2.6</p>
1112
+ </div>
1113
+ <hr>
1114
+ <div class="refsect2">
1115
+ <a name="gtk-icon-view-get-spacing"></a><h3>gtk_icon_view_get_spacing ()</h3>
1116
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1117
+ <p>
1118
+ Returns the value of the ::spacing property.
1119
+ </p>
1120
+ <div class="variablelist"><table border="0" class="variablelist">
1121
+ <colgroup>
1122
+ <col align="left" valign="top">
1123
+ <col>
1124
+ </colgroup>
1125
+ <tbody>
1126
+ <tr>
1127
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1128
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1129
+ </td>
1130
+ </tr>
1131
+ <tr>
1132
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1133
+ <td>the space between cells</td>
1134
+ </tr>
1135
+ </tbody>
1136
+ </table></div>
1137
+ <p class="since">Since 2.6</p>
1138
+ </div>
1139
+ <hr>
1140
+ <div class="refsect2">
1141
+ <a name="gtk-icon-view-set-row-spacing"></a><h3>gtk_icon_view_set_row_spacing ()</h3>
1142
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_row_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1143
+ <em class="parameter"><code><span class="type">gint</span> row_spacing</code></em>);</pre>
1144
+ <p>
1145
+ Sets the ::row-spacing property which specifies the space
1146
+ which is inserted between the rows of the icon view.
1147
+ </p>
1148
+ <div class="variablelist"><table border="0" class="variablelist">
1149
+ <colgroup>
1150
+ <col align="left" valign="top">
1151
+ <col>
1152
+ </colgroup>
1153
+ <tbody>
1154
+ <tr>
1155
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1156
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1157
+ </td>
1158
+ </tr>
1159
+ <tr>
1160
+ <td><p><span class="term"><em class="parameter"><code>row_spacing</code></em> :</span></p></td>
1161
+ <td>the row spacing</td>
1162
+ </tr>
1163
+ </tbody>
1164
+ </table></div>
1165
+ <p class="since">Since 2.6</p>
1166
+ </div>
1167
+ <hr>
1168
+ <div class="refsect2">
1169
+ <a name="gtk-icon-view-get-row-spacing"></a><h3>gtk_icon_view_get_row_spacing ()</h3>
1170
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_row_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1171
+ <p>
1172
+ Returns the value of the ::row-spacing property.
1173
+ </p>
1174
+ <div class="variablelist"><table border="0" class="variablelist">
1175
+ <colgroup>
1176
+ <col align="left" valign="top">
1177
+ <col>
1178
+ </colgroup>
1179
+ <tbody>
1180
+ <tr>
1181
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1182
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1183
+ </td>
1184
+ </tr>
1185
+ <tr>
1186
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1187
+ <td>the space between rows</td>
1188
+ </tr>
1189
+ </tbody>
1190
+ </table></div>
1191
+ <p class="since">Since 2.6</p>
1192
+ </div>
1193
+ <hr>
1194
+ <div class="refsect2">
1195
+ <a name="gtk-icon-view-set-column-spacing"></a><h3>gtk_icon_view_set_column_spacing ()</h3>
1196
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_column_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1197
+ <em class="parameter"><code><span class="type">gint</span> column_spacing</code></em>);</pre>
1198
+ <p>
1199
+ Sets the ::column-spacing property which specifies the space
1200
+ which is inserted between the columns of the icon view.
1201
+ </p>
1202
+ <div class="variablelist"><table border="0" class="variablelist">
1203
+ <colgroup>
1204
+ <col align="left" valign="top">
1205
+ <col>
1206
+ </colgroup>
1207
+ <tbody>
1208
+ <tr>
1209
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1210
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1211
+ </td>
1212
+ </tr>
1213
+ <tr>
1214
+ <td><p><span class="term"><em class="parameter"><code>column_spacing</code></em> :</span></p></td>
1215
+ <td>the column spacing</td>
1216
+ </tr>
1217
+ </tbody>
1218
+ </table></div>
1219
+ <p class="since">Since 2.6</p>
1220
+ </div>
1221
+ <hr>
1222
+ <div class="refsect2">
1223
+ <a name="gtk-icon-view-get-column-spacing"></a><h3>gtk_icon_view_get_column_spacing ()</h3>
1224
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_column_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1225
+ <p>
1226
+ Returns the value of the ::column-spacing property.
1227
+ </p>
1228
+ <div class="variablelist"><table border="0" class="variablelist">
1229
+ <colgroup>
1230
+ <col align="left" valign="top">
1231
+ <col>
1232
+ </colgroup>
1233
+ <tbody>
1234
+ <tr>
1235
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1236
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1237
+ </td>
1238
+ </tr>
1239
+ <tr>
1240
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1241
+ <td>the space between columns</td>
1242
+ </tr>
1243
+ </tbody>
1244
+ </table></div>
1245
+ <p class="since">Since 2.6</p>
1246
+ </div>
1247
+ <hr>
1248
+ <div class="refsect2">
1249
+ <a name="gtk-icon-view-set-margin"></a><h3>gtk_icon_view_set_margin ()</h3>
1250
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_margin (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1251
+ <em class="parameter"><code><span class="type">gint</span> margin</code></em>);</pre>
1252
+ <p>
1253
+ Sets the ::margin property which specifies the space
1254
+ which is inserted at the top, bottom, left and right
1255
+ of the icon view.
1256
+ </p>
1257
+ <div class="variablelist"><table border="0" class="variablelist">
1258
+ <colgroup>
1259
+ <col align="left" valign="top">
1260
+ <col>
1261
+ </colgroup>
1262
+ <tbody>
1263
+ <tr>
1264
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1265
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1266
+ </td>
1267
+ </tr>
1268
+ <tr>
1269
+ <td><p><span class="term"><em class="parameter"><code>margin</code></em> :</span></p></td>
1270
+ <td>the margin</td>
1271
+ </tr>
1272
+ </tbody>
1273
+ </table></div>
1274
+ <p class="since">Since 2.6</p>
1275
+ </div>
1276
+ <hr>
1277
+ <div class="refsect2">
1278
+ <a name="gtk-icon-view-get-margin"></a><h3>gtk_icon_view_get_margin ()</h3>
1279
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_margin (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1280
+ <p>
1281
+ Returns the value of the ::margin property.
1282
+ </p>
1283
+ <div class="variablelist"><table border="0" class="variablelist">
1284
+ <colgroup>
1285
+ <col align="left" valign="top">
1286
+ <col>
1287
+ </colgroup>
1288
+ <tbody>
1289
+ <tr>
1290
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1291
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1292
+ </td>
1293
+ </tr>
1294
+ <tr>
1295
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1296
+ <td>the space at the borders</td>
1297
+ </tr>
1298
+ </tbody>
1299
+ </table></div>
1300
+ <p class="since">Since 2.6</p>
1301
+ </div>
1302
+ <hr>
1303
+ <div class="refsect2">
1304
+ <a name="gtk-icon-view-set-item-padding"></a><h3>gtk_icon_view_set_item_padding ()</h3>
1305
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_item_padding (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1306
+ <em class="parameter"><code><span class="type">gint</span> item_padding</code></em>);</pre>
1307
+ <p>
1308
+ Sets the <a class="link" href="GtkIconView.html#GtkIconView--item-padding" title='The "item-padding" property'><span class="type">"item-padding"</span></a> property which specifies the padding
1309
+ around each of the icon view's items.
1310
+ </p>
1311
+ <div class="variablelist"><table border="0" class="variablelist">
1312
+ <colgroup>
1313
+ <col align="left" valign="top">
1314
+ <col>
1315
+ </colgroup>
1316
+ <tbody>
1317
+ <tr>
1318
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1319
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1320
+ </td>
1321
+ </tr>
1322
+ <tr>
1323
+ <td><p><span class="term"><em class="parameter"><code>item_padding</code></em> :</span></p></td>
1324
+ <td>the item padding</td>
1325
+ </tr>
1326
+ </tbody>
1327
+ </table></div>
1328
+ <p class="since">Since 2.18</p>
1329
+ </div>
1330
+ <hr>
1331
+ <div class="refsect2">
1332
+ <a name="gtk-icon-view-get-item-padding"></a><h3>gtk_icon_view_get_item_padding ()</h3>
1333
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_item_padding (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1334
+ <p>
1335
+ Returns the value of the ::item-padding property.
1336
+ </p>
1337
+ <div class="variablelist"><table border="0" class="variablelist">
1338
+ <colgroup>
1339
+ <col align="left" valign="top">
1340
+ <col>
1341
+ </colgroup>
1342
+ <tbody>
1343
+ <tr>
1344
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1345
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1346
+ </td>
1347
+ </tr>
1348
+ <tr>
1349
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1350
+ <td>the padding around items</td>
1351
+ </tr>
1352
+ </tbody>
1353
+ </table></div>
1354
+ <p class="since">Since 2.18</p>
1355
+ </div>
1356
+ <hr>
1357
+ <div class="refsect2">
1358
+ <a name="gtk-icon-view-get-cell-rect"></a><h3>gtk_icon_view_get_cell_rect ()</h3>
1359
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_icon_view_get_cell_rect (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1360
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1361
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
1362
+ <em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rect</code></em>);</pre>
1363
+ <p>
1364
+ Fills the bounding rectangle in widget coordinates for the cell specified by
1365
+ <em class="parameter"><code>path</code></em> and <em class="parameter"><code>cell</code></em>. If <em class="parameter"><code>cell</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> the main cell area is used.
1366
+ </p>
1367
+ <p>
1368
+ This function is only valid if <em class="parameter"><code>icon_view</code></em> is realized.
1369
+ </p>
1370
+ <div class="variablelist"><table border="0" class="variablelist">
1371
+ <colgroup>
1372
+ <col align="left" valign="top">
1373
+ <col>
1374
+ </colgroup>
1375
+ <tbody>
1376
+ <tr>
1377
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1378
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1379
+ </td>
1380
+ </tr>
1381
+ <tr>
1382
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1383
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1384
+ </td>
1385
+ </tr>
1386
+ <tr>
1387
+ <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
1388
+ <td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</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>
1389
+ </td>
1390
+ </tr>
1391
+ <tr>
1392
+ <td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
1393
+ <td>rectangle to fill with cell rect. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1394
+ </td>
1395
+ </tr>
1396
+ <tr>
1397
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1398
+ <td>
1399
+ <code class="literal">FALSE</code> if there is no such item, <code class="literal">TRUE</code> otherwise</td>
1400
+ </tr>
1401
+ </tbody>
1402
+ </table></div>
1403
+ <p class="since">Since 3.6</p>
1404
+ </div>
1405
+ <hr>
1406
+ <div class="refsect2">
1407
+ <a name="gtk-icon-view-select-path"></a><h3>gtk_icon_view_select_path ()</h3>
1408
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_select_path (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1409
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1410
+ <p>
1411
+ Selects the row at <em class="parameter"><code>path</code></em>.
1412
+ </p>
1413
+ <div class="variablelist"><table border="0" class="variablelist">
1414
+ <colgroup>
1415
+ <col align="left" valign="top">
1416
+ <col>
1417
+ </colgroup>
1418
+ <tbody>
1419
+ <tr>
1420
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1421
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1422
+ </tr>
1423
+ <tr>
1424
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1425
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be selected.</td>
1426
+ </tr>
1427
+ </tbody>
1428
+ </table></div>
1429
+ <p class="since">Since 2.6</p>
1430
+ </div>
1431
+ <hr>
1432
+ <div class="refsect2">
1433
+ <a name="gtk-icon-view-unselect-path"></a><h3>gtk_icon_view_unselect_path ()</h3>
1434
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_unselect_path (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1435
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1436
+ <p>
1437
+ Unselects the row at <em class="parameter"><code>path</code></em>.
1438
+ </p>
1439
+ <div class="variablelist"><table border="0" class="variablelist">
1440
+ <colgroup>
1441
+ <col align="left" valign="top">
1442
+ <col>
1443
+ </colgroup>
1444
+ <tbody>
1445
+ <tr>
1446
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1447
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1448
+ </tr>
1449
+ <tr>
1450
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1451
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be unselected.</td>
1452
+ </tr>
1453
+ </tbody>
1454
+ </table></div>
1455
+ <p class="since">Since 2.6</p>
1456
+ </div>
1457
+ <hr>
1458
+ <div class="refsect2">
1459
+ <a name="gtk-icon-view-path-is-selected"></a><h3>gtk_icon_view_path_is_selected ()</h3>
1460
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_icon_view_path_is_selected (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1461
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1462
+ <p>
1463
+ Returns <code class="literal">TRUE</code> if the icon pointed to by <em class="parameter"><code>path</code></em> is currently
1464
+ selected. If <em class="parameter"><code>path</code></em> does not point to a valid location, <code class="literal">FALSE</code> is returned.
1465
+ </p>
1466
+ <div class="variablelist"><table border="0" class="variablelist">
1467
+ <colgroup>
1468
+ <col align="left" valign="top">
1469
+ <col>
1470
+ </colgroup>
1471
+ <tbody>
1472
+ <tr>
1473
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1474
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1475
+ </tr>
1476
+ <tr>
1477
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1478
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to check selection on.</td>
1479
+ </tr>
1480
+ <tr>
1481
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1482
+ <td>
1483
+ <code class="literal">TRUE</code> if <em class="parameter"><code>path</code></em> is selected.</td>
1484
+ </tr>
1485
+ </tbody>
1486
+ </table></div>
1487
+ <p class="since">Since 2.6</p>
1488
+ </div>
1489
+ <hr>
1490
+ <div class="refsect2">
1491
+ <a name="gtk-icon-view-get-selected-items"></a><h3>gtk_icon_view_get_selected_items ()</h3>
1492
+ <pre class="programlisting"><span class="returnvalue">GList</span> * gtk_icon_view_get_selected_items (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1493
+ <p>
1494
+ Creates a list of paths of all selected items. Additionally, if you are
1495
+ planning on modifying the model after calling this function, you may
1496
+ want to convert the returned list into a list of <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>s.
1497
+ To do this, you can use <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new" title="gtk_tree_row_reference_new ()"><code class="function">gtk_tree_row_reference_new()</code></a>.
1498
+ </p>
1499
+ <p>
1500
+ To free the return value, use:
1501
+ </p>
1502
+ <div class="informalexample">
1503
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1504
+ <tbody>
1505
+ <tr>
1506
+ <td class="listing_lines" align="right"><pre>1</pre></td>
1507
+ <td class="listing_code"><pre class="programlisting"><span class="function">g_list_free_full</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">GDestroyNotify</span><span class="symbol">)</span><span class="normal"> <a href="GtkTreeModel.html#gtk-tree-path-free">gtk_tree_path_free</a></span><span class="symbol">);</span></pre></td>
1508
+ </tr>
1509
+ </tbody>
1510
+ </table>
1511
+ </div>
1512
+
1513
+ <p>
1514
+ </p>
1515
+ <div class="variablelist"><table border="0" class="variablelist">
1516
+ <colgroup>
1517
+ <col align="left" valign="top">
1518
+ <col>
1519
+ </colgroup>
1520
+ <tbody>
1521
+ <tr>
1522
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1523
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1524
+ </tr>
1525
+ <tr>
1526
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1527
+ <td>A <span class="type">GList</span> containing a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for each selected row. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkTreePath][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1528
+ </td>
1529
+ </tr>
1530
+ </tbody>
1531
+ </table></div>
1532
+ <p class="since">Since 2.6</p>
1533
+ </div>
1534
+ <hr>
1535
+ <div class="refsect2">
1536
+ <a name="gtk-icon-view-select-all"></a><h3>gtk_icon_view_select_all ()</h3>
1537
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_select_all (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1538
+ <p>
1539
+ Selects all the icons. <em class="parameter"><code>icon_view</code></em> must has its selection mode set
1540
+ to <a class="link" href="gtk3-Standard-Enumerations.html#GTK-SELECTION-MULTIPLE:CAPS"><span class="type">GTK_SELECTION_MULTIPLE</span></a>.
1541
+ </p>
1542
+ <div class="variablelist"><table border="0" class="variablelist">
1543
+ <colgroup>
1544
+ <col align="left" valign="top">
1545
+ <col>
1546
+ </colgroup>
1547
+ <tbody><tr>
1548
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1549
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1550
+ </tr></tbody>
1551
+ </table></div>
1552
+ <p class="since">Since 2.6</p>
1553
+ </div>
1554
+ <hr>
1555
+ <div class="refsect2">
1556
+ <a name="gtk-icon-view-unselect-all"></a><h3>gtk_icon_view_unselect_all ()</h3>
1557
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_unselect_all (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1558
+ <p>
1559
+ Unselects all the icons.
1560
+ </p>
1561
+ <div class="variablelist"><table border="0" class="variablelist">
1562
+ <colgroup>
1563
+ <col align="left" valign="top">
1564
+ <col>
1565
+ </colgroup>
1566
+ <tbody><tr>
1567
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1568
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1569
+ </tr></tbody>
1570
+ </table></div>
1571
+ <p class="since">Since 2.6</p>
1572
+ </div>
1573
+ <hr>
1574
+ <div class="refsect2">
1575
+ <a name="gtk-icon-view-item-activated"></a><h3>gtk_icon_view_item_activated ()</h3>
1576
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_item_activated (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1577
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1578
+ <p>
1579
+ Activates the item determined by <em class="parameter"><code>path</code></em>.
1580
+ </p>
1581
+ <div class="variablelist"><table border="0" class="variablelist">
1582
+ <colgroup>
1583
+ <col align="left" valign="top">
1584
+ <col>
1585
+ </colgroup>
1586
+ <tbody>
1587
+ <tr>
1588
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1589
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1590
+ </td>
1591
+ </tr>
1592
+ <tr>
1593
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1594
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be activated</td>
1595
+ </tr>
1596
+ </tbody>
1597
+ </table></div>
1598
+ <p class="since">Since 2.6</p>
1599
+ </div>
1600
+ <hr>
1601
+ <div class="refsect2">
1602
+ <a name="gtk-icon-view-scroll-to-path"></a><h3>gtk_icon_view_scroll_to_path ()</h3>
1603
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_scroll_to_path (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1604
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1605
+ <em class="parameter"><code><span class="type">gboolean</span> use_align</code></em>,
1606
+ <em class="parameter"><code><span class="type">gfloat</span> row_align</code></em>,
1607
+ <em class="parameter"><code><span class="type">gfloat</span> col_align</code></em>);</pre>
1608
+ <p>
1609
+ Moves the alignments of <em class="parameter"><code>icon_view</code></em> to the position specified by <em class="parameter"><code>path</code></em>.
1610
+ <em class="parameter"><code>row_align</code></em> determines where the row is placed, and <em class="parameter"><code>col_align</code></em> determines
1611
+ where <em class="parameter"><code>column</code></em> is placed. Both are expected to be between 0.0 and 1.0.
1612
+ 0.0 means left/top alignment, 1.0 means right/bottom alignment, 0.5 means
1613
+ center.
1614
+ </p>
1615
+ <p>
1616
+ If <em class="parameter"><code>use_align</code></em> is <code class="literal">FALSE</code>, then the alignment arguments are ignored, and the
1617
+ tree does the minimum amount of work to scroll the item onto the screen.
1618
+ This means that the item will be scrolled to the edge closest to its current
1619
+ position. If the item is currently visible on the screen, nothing is done.
1620
+ </p>
1621
+ <p>
1622
+ This function only works if the model is set, and <em class="parameter"><code>path</code></em> is a valid row on
1623
+ the model. If the model changes before the <em class="parameter"><code>icon_view</code></em> is realized, the
1624
+ centered path will be modified to reflect this change.
1625
+ </p>
1626
+ <div class="variablelist"><table border="0" class="variablelist">
1627
+ <colgroup>
1628
+ <col align="left" valign="top">
1629
+ <col>
1630
+ </colgroup>
1631
+ <tbody>
1632
+ <tr>
1633
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1634
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1635
+ </tr>
1636
+ <tr>
1637
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1638
+ <td>The path of the item to move to.</td>
1639
+ </tr>
1640
+ <tr>
1641
+ <td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
1642
+ <td>whether to use alignment arguments, or <code class="literal">FALSE</code>.</td>
1643
+ </tr>
1644
+ <tr>
1645
+ <td><p><span class="term"><em class="parameter"><code>row_align</code></em> :</span></p></td>
1646
+ <td>The vertical alignment of the item specified by <em class="parameter"><code>path</code></em>.</td>
1647
+ </tr>
1648
+ <tr>
1649
+ <td><p><span class="term"><em class="parameter"><code>col_align</code></em> :</span></p></td>
1650
+ <td>The horizontal alignment of the item specified by <em class="parameter"><code>path</code></em>.</td>
1651
+ </tr>
1652
+ </tbody>
1653
+ </table></div>
1654
+ <p class="since">Since 2.8</p>
1655
+ </div>
1656
+ <hr>
1657
+ <div class="refsect2">
1658
+ <a name="gtk-icon-view-get-visible-range"></a><h3>gtk_icon_view_get_visible_range ()</h3>
1659
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_icon_view_get_visible_range (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1660
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
1661
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);</pre>
1662
+ <p>
1663
+ Sets <em class="parameter"><code>start_path</code></em> and <em class="parameter"><code>end_path</code></em> to be the first and last visible path.
1664
+ Note that there may be invisible paths in between.
1665
+ </p>
1666
+ <p>
1667
+ Both paths should be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a> after use.
1668
+ </p>
1669
+ <div class="variablelist"><table border="0" class="variablelist">
1670
+ <colgroup>
1671
+ <col align="left" valign="top">
1672
+ <col>
1673
+ </colgroup>
1674
+ <tbody>
1675
+ <tr>
1676
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1677
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1678
+ </td>
1679
+ </tr>
1680
+ <tr>
1681
+ <td><p><span class="term"><em class="parameter"><code>start_path</code></em> :</span></p></td>
1682
+ <td>Return location for start of region,
1683
+ 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>]</span>
1684
+ </td>
1685
+ </tr>
1686
+ <tr>
1687
+ <td><p><span class="term"><em class="parameter"><code>end_path</code></em> :</span></p></td>
1688
+ <td>Return location for end of region, 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>]</span>
1689
+ </td>
1690
+ </tr>
1691
+ <tr>
1692
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1693
+ <td>
1694
+ <code class="literal">TRUE</code>, if valid paths were placed in <em class="parameter"><code>start_path</code></em> and <em class="parameter"><code>end_path</code></em>
1695
+ </td>
1696
+ </tr>
1697
+ </tbody>
1698
+ </table></div>
1699
+ <p class="since">Since 2.8</p>
1700
+ </div>
1701
+ <hr>
1702
+ <div class="refsect2">
1703
+ <a name="gtk-icon-view-set-tooltip-item"></a><h3>gtk_icon_view_set_tooltip_item ()</h3>
1704
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_tooltip_item (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1705
+ <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
1706
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1707
+ <p>
1708
+ Sets the tip area of <em class="parameter"><code>tooltip</code></em> to be the area covered by the item at <em class="parameter"><code>path</code></em>.
1709
+ See also <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column" title="gtk_icon_view_set_tooltip_column ()"><code class="function">gtk_icon_view_set_tooltip_column()</code></a> for a simpler alternative.
1710
+ See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="gtk_tooltip_set_tip_area ()"><code class="function">gtk_tooltip_set_tip_area()</code></a>.
1711
+ </p>
1712
+ <div class="variablelist"><table border="0" class="variablelist">
1713
+ <colgroup>
1714
+ <col align="left" valign="top">
1715
+ <col>
1716
+ </colgroup>
1717
+ <tbody>
1718
+ <tr>
1719
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1720
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1721
+ </td>
1722
+ </tr>
1723
+ <tr>
1724
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
1725
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
1726
+ </td>
1727
+ </tr>
1728
+ <tr>
1729
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1730
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1731
+ </td>
1732
+ </tr>
1733
+ </tbody>
1734
+ </table></div>
1735
+ <p class="since">Since 2.12</p>
1736
+ </div>
1737
+ <hr>
1738
+ <div class="refsect2">
1739
+ <a name="gtk-icon-view-set-tooltip-cell"></a><h3>gtk_icon_view_set_tooltip_cell ()</h3>
1740
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_tooltip_cell (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1741
+ <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
1742
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1743
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);</pre>
1744
+ <p>
1745
+ Sets the tip area of <em class="parameter"><code>tooltip</code></em> to the area which <em class="parameter"><code>cell</code></em> occupies in
1746
+ the item pointed to by <em class="parameter"><code>path</code></em>. See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="gtk_tooltip_set_tip_area ()"><code class="function">gtk_tooltip_set_tip_area()</code></a>.
1747
+ </p>
1748
+ <p>
1749
+ See also <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column" title="gtk_icon_view_set_tooltip_column ()"><code class="function">gtk_icon_view_set_tooltip_column()</code></a> for a simpler alternative.
1750
+ </p>
1751
+ <div class="variablelist"><table border="0" class="variablelist">
1752
+ <colgroup>
1753
+ <col align="left" valign="top">
1754
+ <col>
1755
+ </colgroup>
1756
+ <tbody>
1757
+ <tr>
1758
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1759
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1760
+ </td>
1761
+ </tr>
1762
+ <tr>
1763
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
1764
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
1765
+ </td>
1766
+ </tr>
1767
+ <tr>
1768
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1769
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1770
+ </td>
1771
+ </tr>
1772
+ <tr>
1773
+ <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
1774
+ <td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</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>
1775
+ </td>
1776
+ </tr>
1777
+ </tbody>
1778
+ </table></div>
1779
+ <p class="since">Since 2.12</p>
1780
+ </div>
1781
+ <hr>
1782
+ <div class="refsect2">
1783
+ <a name="gtk-icon-view-get-tooltip-context"></a><h3>gtk_icon_view_get_tooltip_context ()</h3>
1784
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_icon_view_get_tooltip_context (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1785
+ <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
1786
+ <em class="parameter"><code><span class="type">gint</span> *y</code></em>,
1787
+ <em class="parameter"><code><span class="type">gboolean</span> keyboard_tip</code></em>,
1788
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
1789
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
1790
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1791
+ <p>
1792
+ This function is supposed to be used in a <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a>
1793
+ signal handler for <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>. The <em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em> and <em class="parameter"><code>keyboard_tip</code></em> values
1794
+ which are received in the signal handler, should be passed to this
1795
+ function without modification.
1796
+ </p>
1797
+ <p>
1798
+ The return value indicates whether there is an icon view item at the given
1799
+ coordinates (<code class="literal">TRUE</code>) or not (<code class="literal">FALSE</code>) for mouse tooltips. For keyboard
1800
+ tooltips the item returned will be the cursor item. When <code class="literal">TRUE</code>, then any of
1801
+ <em class="parameter"><code>model</code></em>, <em class="parameter"><code>path</code></em> and <em class="parameter"><code>iter</code></em> which have been provided will be set to point to
1802
+ that row and the corresponding model. <em class="parameter"><code>x</code></em> and <em class="parameter"><code>y</code></em> will always be converted
1803
+ to be relative to <em class="parameter"><code>icon_view</code></em>'s bin_window if <em class="parameter"><code>keyboard_tooltip</code></em> is <code class="literal">FALSE</code>.
1804
+ </p>
1805
+ <div class="variablelist"><table border="0" class="variablelist">
1806
+ <colgroup>
1807
+ <col align="left" valign="top">
1808
+ <col>
1809
+ </colgroup>
1810
+ <tbody>
1811
+ <tr>
1812
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1813
+ <td>an <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1814
+ </td>
1815
+ </tr>
1816
+ <tr>
1817
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1818
+ <td>the x coordinate (relative to widget coordinates). <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
1819
+ </td>
1820
+ </tr>
1821
+ <tr>
1822
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1823
+ <td>the y coordinate (relative to widget coordinates). <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
1824
+ </td>
1825
+ </tr>
1826
+ <tr>
1827
+ <td><p><span class="term"><em class="parameter"><code>keyboard_tip</code></em> :</span></p></td>
1828
+ <td>whether this is a keyboard tooltip or not</td>
1829
+ </tr>
1830
+ <tr>
1831
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
1832
+ <td>a pointer to receive a
1833
+ <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1834
+ </td>
1835
+ </tr>
1836
+ <tr>
1837
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1838
+ <td>a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1839
+ </td>
1840
+ </tr>
1841
+ <tr>
1842
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1843
+ <td>a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1844
+ </td>
1845
+ </tr>
1846
+ <tr>
1847
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1848
+ <td>whether or not the given tooltip context points to a item</td>
1849
+ </tr>
1850
+ </tbody>
1851
+ </table></div>
1852
+ <p class="since">Since 2.12</p>
1853
+ </div>
1854
+ <hr>
1855
+ <div class="refsect2">
1856
+ <a name="gtk-icon-view-set-tooltip-column"></a><h3>gtk_icon_view_set_tooltip_column ()</h3>
1857
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_tooltip_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1858
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
1859
+ <p>
1860
+ If you only plan to have simple (text-only) tooltips on full items, you
1861
+ can use this function to have <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> handle these automatically
1862
+ for you. <em class="parameter"><code>column</code></em> should be set to the column in <em class="parameter"><code>icon_view</code></em>'s model
1863
+ containing the tooltip texts, or -1 to disable this feature.
1864
+ </p>
1865
+ <p>
1866
+ When enabled, <a class="link" href="GtkWidget.html#GtkWidget--has-tooltip" title='The "has-tooltip" property'><span class="type">"has-tooltip"</span></a> will be set to <code class="literal">TRUE</code> and
1867
+ <em class="parameter"><code>icon_view</code></em> will connect a <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> signal handler.
1868
+ </p>
1869
+ <p>
1870
+ Note that the signal handler sets the text with <a class="link" href="GtkTooltip.html#gtk-tooltip-set-markup" title="gtk_tooltip_set_markup ()"><code class="function">gtk_tooltip_set_markup()</code></a>,
1871
+ so &amp;, &lt;, etc have to be escaped in the text.
1872
+ </p>
1873
+ <div class="variablelist"><table border="0" class="variablelist">
1874
+ <colgroup>
1875
+ <col align="left" valign="top">
1876
+ <col>
1877
+ </colgroup>
1878
+ <tbody>
1879
+ <tr>
1880
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1881
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1882
+ </td>
1883
+ </tr>
1884
+ <tr>
1885
+ <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1886
+ <td>an integer, which is a valid column number for <em class="parameter"><code>icon_view</code></em>'s model</td>
1887
+ </tr>
1888
+ </tbody>
1889
+ </table></div>
1890
+ <p class="since">Since 2.12</p>
1891
+ </div>
1892
+ <hr>
1893
+ <div class="refsect2">
1894
+ <a name="gtk-icon-view-get-tooltip-column"></a><h3>gtk_icon_view_get_tooltip_column ()</h3>
1895
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_tooltip_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1896
+ <p>
1897
+ Returns the column of <em class="parameter"><code>icon_view</code></em>'s model which is being used for
1898
+ displaying tooltips on <em class="parameter"><code>icon_view</code></em>'s rows.
1899
+ </p>
1900
+ <div class="variablelist"><table border="0" class="variablelist">
1901
+ <colgroup>
1902
+ <col align="left" valign="top">
1903
+ <col>
1904
+ </colgroup>
1905
+ <tbody>
1906
+ <tr>
1907
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1908
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1909
+ </td>
1910
+ </tr>
1911
+ <tr>
1912
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1913
+ <td>the index of the tooltip column that is currently being
1914
+ used, or -1 if this is disabled.</td>
1915
+ </tr>
1916
+ </tbody>
1917
+ </table></div>
1918
+ <p class="since">Since 2.12</p>
1919
+ </div>
1920
+ <hr>
1921
+ <div class="refsect2">
1922
+ <a name="gtk-icon-view-get-item-row"></a><h3>gtk_icon_view_get_item_row ()</h3>
1923
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_item_row (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1924
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1925
+ <p>
1926
+ Gets the row in which the item <em class="parameter"><code>path</code></em> is currently
1927
+ displayed. Row numbers start at 0.
1928
+ </p>
1929
+ <div class="variablelist"><table border="0" class="variablelist">
1930
+ <colgroup>
1931
+ <col align="left" valign="top">
1932
+ <col>
1933
+ </colgroup>
1934
+ <tbody>
1935
+ <tr>
1936
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1937
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1938
+ </td>
1939
+ </tr>
1940
+ <tr>
1941
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1942
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</td>
1943
+ </tr>
1944
+ <tr>
1945
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1946
+ <td>The row in which the item is displayed</td>
1947
+ </tr>
1948
+ </tbody>
1949
+ </table></div>
1950
+ <p class="since">Since 2.22</p>
1951
+ </div>
1952
+ <hr>
1953
+ <div class="refsect2">
1954
+ <a name="gtk-icon-view-get-item-column"></a><h3>gtk_icon_view_get_item_column ()</h3>
1955
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_icon_view_get_item_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1956
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1957
+ <p>
1958
+ Gets the column in which the item <em class="parameter"><code>path</code></em> is currently
1959
+ displayed. Column numbers start at 0.
1960
+ </p>
1961
+ <div class="variablelist"><table border="0" class="variablelist">
1962
+ <colgroup>
1963
+ <col align="left" valign="top">
1964
+ <col>
1965
+ </colgroup>
1966
+ <tbody>
1967
+ <tr>
1968
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1969
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1970
+ </td>
1971
+ </tr>
1972
+ <tr>
1973
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1974
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</td>
1975
+ </tr>
1976
+ <tr>
1977
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1978
+ <td>The column in which the item is displayed</td>
1979
+ </tr>
1980
+ </tbody>
1981
+ </table></div>
1982
+ <p class="since">Since 2.22</p>
1983
+ </div>
1984
+ <hr>
1985
+ <div class="refsect2">
1986
+ <a name="GtkIconViewDropPosition"></a><h3>enum GtkIconViewDropPosition</h3>
1987
+ <pre class="programlisting">typedef enum {
1988
+ GTK_ICON_VIEW_NO_DROP,
1989
+ GTK_ICON_VIEW_DROP_INTO,
1990
+ GTK_ICON_VIEW_DROP_LEFT,
1991
+ GTK_ICON_VIEW_DROP_RIGHT,
1992
+ GTK_ICON_VIEW_DROP_ABOVE,
1993
+ GTK_ICON_VIEW_DROP_BELOW
1994
+ } GtkIconViewDropPosition;
1995
+ </pre>
1996
+ <p>
1997
+ An enum for determining where a dropped item goes.
1998
+ </p>
1999
+ <div class="variablelist"><table border="0" class="variablelist">
2000
+ <colgroup>
2001
+ <col align="left" valign="top">
2002
+ <col>
2003
+ </colgroup>
2004
+ <tbody>
2005
+ <tr>
2006
+ <td><p><a name="GTK-ICON-VIEW-NO-DROP:CAPS"></a><span class="term"><code class="literal">GTK_ICON_VIEW_NO_DROP</code></span></p></td>
2007
+ <td>no drop possible
2008
+ </td>
2009
+ </tr>
2010
+ <tr>
2011
+ <td><p><a name="GTK-ICON-VIEW-DROP-INTO:CAPS"></a><span class="term"><code class="literal">GTK_ICON_VIEW_DROP_INTO</code></span></p></td>
2012
+ <td>dropped item replaces the item
2013
+ </td>
2014
+ </tr>
2015
+ <tr>
2016
+ <td><p><a name="GTK-ICON-VIEW-DROP-LEFT:CAPS"></a><span class="term"><code class="literal">GTK_ICON_VIEW_DROP_LEFT</code></span></p></td>
2017
+ <td>droppped item is inserted to the left
2018
+ </td>
2019
+ </tr>
2020
+ <tr>
2021
+ <td><p><a name="GTK-ICON-VIEW-DROP-RIGHT:CAPS"></a><span class="term"><code class="literal">GTK_ICON_VIEW_DROP_RIGHT</code></span></p></td>
2022
+ <td>dropped item is inserted to the right
2023
+ </td>
2024
+ </tr>
2025
+ <tr>
2026
+ <td><p><a name="GTK-ICON-VIEW-DROP-ABOVE:CAPS"></a><span class="term"><code class="literal">GTK_ICON_VIEW_DROP_ABOVE</code></span></p></td>
2027
+ <td>dropped item is inserted above
2028
+ </td>
2029
+ </tr>
2030
+ <tr>
2031
+ <td><p><a name="GTK-ICON-VIEW-DROP-BELOW:CAPS"></a><span class="term"><code class="literal">GTK_ICON_VIEW_DROP_BELOW</code></span></p></td>
2032
+ <td>dropped item is inserted below
2033
+ </td>
2034
+ </tr>
2035
+ </tbody>
2036
+ </table></div>
2037
+ </div>
2038
+ <hr>
2039
+ <div class="refsect2">
2040
+ <a name="gtk-icon-view-enable-model-drag-source"></a><h3>gtk_icon_view_enable_model_drag_source ()</h3>
2041
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_enable_model_drag_source
2042
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
2043
+ <em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
2044
+ <em class="parameter"><code>const <a class="link" href="gtk3-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
2045
+ <em class="parameter"><code><span class="type">gint</span> n_targets</code></em>,
2046
+ <em class="parameter"><code><a href="../gdk3/gdk3-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
2047
+ <p>
2048
+ Turns <em class="parameter"><code>icon_view</code></em> into a drag source for automatic DND. Calling this
2049
+ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <code class="literal">FALSE</code>.
2050
+ </p>
2051
+ <div class="variablelist"><table border="0" class="variablelist">
2052
+ <colgroup>
2053
+ <col align="left" valign="top">
2054
+ <col>
2055
+ </colgroup>
2056
+ <tbody>
2057
+ <tr>
2058
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2059
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2060
+ </td>
2061
+ </tr>
2062
+ <tr>
2063
+ <td><p><span class="term"><em class="parameter"><code>start_button_mask</code></em> :</span></p></td>
2064
+ <td>Mask of allowed buttons to start drag</td>
2065
+ </tr>
2066
+ <tr>
2067
+ <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
2068
+ <td>the table of targets that the drag will
2069
+ support. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_targets]</span>
2070
+ </td>
2071
+ </tr>
2072
+ <tr>
2073
+ <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
2074
+ <td>the number of items in <em class="parameter"><code>targets</code></em>
2075
+ </td>
2076
+ </tr>
2077
+ <tr>
2078
+ <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
2079
+ <td>the bitmask of possible actions for a drag from this
2080
+ widget</td>
2081
+ </tr>
2082
+ </tbody>
2083
+ </table></div>
2084
+ <p class="since">Since 2.8</p>
2085
+ </div>
2086
+ <hr>
2087
+ <div class="refsect2">
2088
+ <a name="gtk-icon-view-enable-model-drag-dest"></a><h3>gtk_icon_view_enable_model_drag_dest ()</h3>
2089
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_enable_model_drag_dest
2090
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
2091
+ <em class="parameter"><code>const <a class="link" href="gtk3-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
2092
+ <em class="parameter"><code><span class="type">gint</span> n_targets</code></em>,
2093
+ <em class="parameter"><code><a href="../gdk3/gdk3-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
2094
+ <p>
2095
+ Turns <em class="parameter"><code>icon_view</code></em> into a drop destination for automatic DND. Calling this
2096
+ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <code class="literal">FALSE</code>.
2097
+ </p>
2098
+ <div class="variablelist"><table border="0" class="variablelist">
2099
+ <colgroup>
2100
+ <col align="left" valign="top">
2101
+ <col>
2102
+ </colgroup>
2103
+ <tbody>
2104
+ <tr>
2105
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2106
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2107
+ </td>
2108
+ </tr>
2109
+ <tr>
2110
+ <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
2111
+ <td>the table of targets that the drag will
2112
+ support. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_targets]</span>
2113
+ </td>
2114
+ </tr>
2115
+ <tr>
2116
+ <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
2117
+ <td>the number of items in <em class="parameter"><code>targets</code></em>
2118
+ </td>
2119
+ </tr>
2120
+ <tr>
2121
+ <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
2122
+ <td>the bitmask of possible actions for a drag to this
2123
+ widget</td>
2124
+ </tr>
2125
+ </tbody>
2126
+ </table></div>
2127
+ <p class="since">Since 2.8</p>
2128
+ </div>
2129
+ <hr>
2130
+ <div class="refsect2">
2131
+ <a name="gtk-icon-view-unset-model-drag-source"></a><h3>gtk_icon_view_unset_model_drag_source ()</h3>
2132
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_unset_model_drag_source
2133
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
2134
+ <p>
2135
+ Undoes the effect of <a class="link" href="GtkIconView.html#gtk-icon-view-enable-model-drag-source" title="gtk_icon_view_enable_model_drag_source ()"><code class="function">gtk_icon_view_enable_model_drag_source()</code></a>. Calling this
2136
+ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <code class="literal">FALSE</code>.
2137
+ </p>
2138
+ <div class="variablelist"><table border="0" class="variablelist">
2139
+ <colgroup>
2140
+ <col align="left" valign="top">
2141
+ <col>
2142
+ </colgroup>
2143
+ <tbody><tr>
2144
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2145
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2146
+ </td>
2147
+ </tr></tbody>
2148
+ </table></div>
2149
+ <p class="since">Since 2.8</p>
2150
+ </div>
2151
+ <hr>
2152
+ <div class="refsect2">
2153
+ <a name="gtk-icon-view-unset-model-drag-dest"></a><h3>gtk_icon_view_unset_model_drag_dest ()</h3>
2154
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_unset_model_drag_dest (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
2155
+ <p>
2156
+ Undoes the effect of <a class="link" href="GtkIconView.html#gtk-icon-view-enable-model-drag-dest" title="gtk_icon_view_enable_model_drag_dest ()"><code class="function">gtk_icon_view_enable_model_drag_dest()</code></a>. Calling this
2157
+ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <code class="literal">FALSE</code>.
2158
+ </p>
2159
+ <div class="variablelist"><table border="0" class="variablelist">
2160
+ <colgroup>
2161
+ <col align="left" valign="top">
2162
+ <col>
2163
+ </colgroup>
2164
+ <tbody><tr>
2165
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2166
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2167
+ </td>
2168
+ </tr></tbody>
2169
+ </table></div>
2170
+ <p class="since">Since 2.8</p>
2171
+ </div>
2172
+ <hr>
2173
+ <div class="refsect2">
2174
+ <a name="gtk-icon-view-set-reorderable"></a><h3>gtk_icon_view_set_reorderable ()</h3>
2175
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_reorderable (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
2176
+ <em class="parameter"><code><span class="type">gboolean</span> reorderable</code></em>);</pre>
2177
+ <p>
2178
+ This function is a convenience function to allow you to reorder models that
2179
+ support the <a class="link" href="gtk3-GtkTreeView-drag-and-drop.html#GtkTreeDragSourceIface" title="struct GtkTreeDragSourceIface"><span class="type">GtkTreeDragSourceIface</span></a> and the <a class="link" href="gtk3-GtkTreeView-drag-and-drop.html#GtkTreeDragDestIface" title="struct GtkTreeDragDestIface"><span class="type">GtkTreeDragDestIface</span></a>. Both
2180
+ <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> and <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a> support these. If <em class="parameter"><code>reorderable</code></em> is <code class="literal">TRUE</code>, then
2181
+ the user can reorder the model by dragging and dropping rows. The
2182
+ developer can listen to these changes by connecting to the model's
2183
+ row_inserted and row_deleted signals. The reordering is implemented by setting up
2184
+ the icon view as a drag source and destination. Therefore, drag and
2185
+ drop can not be used in a reorderable view for any other purpose.
2186
+ </p>
2187
+ <p>
2188
+ This function does not give you any degree of control over the order -- any
2189
+ reordering is allowed. If more control is needed, you should probably
2190
+ handle drag and drop manually.
2191
+ </p>
2192
+ <div class="variablelist"><table border="0" class="variablelist">
2193
+ <colgroup>
2194
+ <col align="left" valign="top">
2195
+ <col>
2196
+ </colgroup>
2197
+ <tbody>
2198
+ <tr>
2199
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2200
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
2201
+ </tr>
2202
+ <tr>
2203
+ <td><p><span class="term"><em class="parameter"><code>reorderable</code></em> :</span></p></td>
2204
+ <td>
2205
+ <code class="literal">TRUE</code>, if the list of items can be reordered.</td>
2206
+ </tr>
2207
+ </tbody>
2208
+ </table></div>
2209
+ <p class="since">Since 2.8</p>
2210
+ </div>
2211
+ <hr>
2212
+ <div class="refsect2">
2213
+ <a name="gtk-icon-view-get-reorderable"></a><h3>gtk_icon_view_get_reorderable ()</h3>
2214
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_icon_view_get_reorderable (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
2215
+ <p>
2216
+ Retrieves whether the user can reorder the list via drag-and-drop.
2217
+ See <a class="link" href="GtkIconView.html#gtk-icon-view-set-reorderable" title="gtk_icon_view_set_reorderable ()"><code class="function">gtk_icon_view_set_reorderable()</code></a>.
2218
+ </p>
2219
+ <div class="variablelist"><table border="0" class="variablelist">
2220
+ <colgroup>
2221
+ <col align="left" valign="top">
2222
+ <col>
2223
+ </colgroup>
2224
+ <tbody>
2225
+ <tr>
2226
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2227
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2228
+ </td>
2229
+ </tr>
2230
+ <tr>
2231
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2232
+ <td>
2233
+ <code class="literal">TRUE</code> if the list can be reordered.</td>
2234
+ </tr>
2235
+ </tbody>
2236
+ </table></div>
2237
+ <p class="since">Since 2.8</p>
2238
+ </div>
2239
+ <hr>
2240
+ <div class="refsect2">
2241
+ <a name="gtk-icon-view-set-drag-dest-item"></a><h3>gtk_icon_view_set_drag_dest_item ()</h3>
2242
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_drag_dest_item (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
2243
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2244
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> pos</code></em>);</pre>
2245
+ <p>
2246
+ Sets the item that is highlighted for feedback.
2247
+ </p>
2248
+ <div class="variablelist"><table border="0" class="variablelist">
2249
+ <colgroup>
2250
+ <col align="left" valign="top">
2251
+ <col>
2252
+ </colgroup>
2253
+ <tbody>
2254
+ <tr>
2255
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2256
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2257
+ </td>
2258
+ </tr>
2259
+ <tr>
2260
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2261
+ <td>The path of the item to highlight, 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>
2262
+ </td>
2263
+ </tr>
2264
+ <tr>
2265
+ <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2266
+ <td>Specifies where to drop, relative to the item</td>
2267
+ </tr>
2268
+ </tbody>
2269
+ </table></div>
2270
+ <p class="since">Since 2.8</p>
2271
+ </div>
2272
+ <hr>
2273
+ <div class="refsect2">
2274
+ <a name="gtk-icon-view-get-drag-dest-item"></a><h3>gtk_icon_view_get_drag_dest_item ()</h3>
2275
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_get_drag_dest_item (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
2276
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2277
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
2278
+ <p>
2279
+ Gets information about the item that is highlighted for feedback.
2280
+ </p>
2281
+ <div class="variablelist"><table border="0" class="variablelist">
2282
+ <colgroup>
2283
+ <col align="left" valign="top">
2284
+ <col>
2285
+ </colgroup>
2286
+ <tbody>
2287
+ <tr>
2288
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2289
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2290
+ </td>
2291
+ </tr>
2292
+ <tr>
2293
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2294
+ <td>Return location for the path of
2295
+ the highlighted item, 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>]</span>
2296
+ </td>
2297
+ </tr>
2298
+ <tr>
2299
+ <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2300
+ <td>Return location for the drop position, 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>]</span>
2301
+ </td>
2302
+ </tr>
2303
+ </tbody>
2304
+ </table></div>
2305
+ <p class="since">Since 2.8</p>
2306
+ </div>
2307
+ <hr>
2308
+ <div class="refsect2">
2309
+ <a name="gtk-icon-view-get-dest-item-at-pos"></a><h3>gtk_icon_view_get_dest_item_at_pos ()</h3>
2310
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_icon_view_get_dest_item_at_pos (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
2311
+ <em class="parameter"><code><span class="type">gint</span> drag_x</code></em>,
2312
+ <em class="parameter"><code><span class="type">gint</span> drag_y</code></em>,
2313
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2314
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
2315
+ <p>
2316
+ Determines the destination item for a given position.
2317
+ </p>
2318
+ <div class="variablelist"><table border="0" class="variablelist">
2319
+ <colgroup>
2320
+ <col align="left" valign="top">
2321
+ <col>
2322
+ </colgroup>
2323
+ <tbody>
2324
+ <tr>
2325
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2326
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2327
+ </td>
2328
+ </tr>
2329
+ <tr>
2330
+ <td><p><span class="term"><em class="parameter"><code>drag_x</code></em> :</span></p></td>
2331
+ <td>the position to determine the destination item for</td>
2332
+ </tr>
2333
+ <tr>
2334
+ <td><p><span class="term"><em class="parameter"><code>drag_y</code></em> :</span></p></td>
2335
+ <td>the position to determine the destination item for</td>
2336
+ </tr>
2337
+ <tr>
2338
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2339
+ <td>Return location for the path of the item,
2340
+ 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>]</span>
2341
+ </td>
2342
+ </tr>
2343
+ <tr>
2344
+ <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2345
+ <td>Return location for the drop position, 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>]</span>
2346
+ </td>
2347
+ </tr>
2348
+ <tr>
2349
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2350
+ <td>whether there is an item at the given position.</td>
2351
+ </tr>
2352
+ </tbody>
2353
+ </table></div>
2354
+ <p class="since">Since 2.8</p>
2355
+ </div>
2356
+ <hr>
2357
+ <div class="refsect2">
2358
+ <a name="gtk-icon-view-create-drag-icon"></a><h3>gtk_icon_view_create_drag_icon ()</h3>
2359
+ <pre class="programlisting"><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html#cairo-surface-t"><span class="returnvalue">cairo_surface_t</span></a> * gtk_icon_view_create_drag_icon (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
2360
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
2361
+ <p>
2362
+ Creates a <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html#cairo-surface-t"><span class="type">cairo_surface_t</span></a> representation of the item at <em class="parameter"><code>path</code></em>.
2363
+ This image is used for a drag icon.
2364
+ </p>
2365
+ <div class="variablelist"><table border="0" class="variablelist">
2366
+ <colgroup>
2367
+ <col align="left" valign="top">
2368
+ <col>
2369
+ </colgroup>
2370
+ <tbody>
2371
+ <tr>
2372
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2373
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2374
+ </td>
2375
+ </tr>
2376
+ <tr>
2377
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2378
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> in <em class="parameter"><code>icon_view</code></em>
2379
+ </td>
2380
+ </tr>
2381
+ <tr>
2382
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2383
+ <td>a newly-allocated surface of the drag icon. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2384
+ </td>
2385
+ </tr>
2386
+ </tbody>
2387
+ </table></div>
2388
+ <p class="since">Since 2.8</p>
2389
+ </div>
2390
+ </div>
2391
+ <div class="refsect1">
2392
+ <a name="GtkIconView.property-details"></a><h2>Property Details</h2>
2393
+ <div class="refsect2">
2394
+ <a name="GtkIconView--cell-area"></a><h3>The <code class="literal">"cell-area"</code> property</h3>
2395
+ <pre class="programlisting"> "cell-area" <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>* : Read / Write / Construct Only</pre>
2396
+ <p>
2397
+ The <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> used to layout cell renderers for this view.
2398
+ </p>
2399
+ <p>
2400
+ If no area is specified when creating the icon view with <a class="link" href="GtkIconView.html#gtk-icon-view-new-with-area" title="gtk_icon_view_new_with_area ()"><code class="function">gtk_icon_view_new_with_area()</code></a>
2401
+ a <a class="link" href="GtkCellAreaBox.html" title="GtkCellAreaBox"><span class="type">GtkCellAreaBox</span></a> will be used.
2402
+ </p>
2403
+ <p class="since">Since 3.0</p>
2404
+ </div>
2405
+ <hr>
2406
+ <div class="refsect2">
2407
+ <a name="GtkIconView--column-spacing"></a><h3>The <code class="literal">"column-spacing"</code> property</h3>
2408
+ <pre class="programlisting"> "column-spacing" <span class="type">gint</span> : Read / Write</pre>
2409
+ <p>
2410
+ The column-spacing property specifies the space which is inserted between
2411
+ the columns of the icon view.
2412
+ </p>
2413
+ <p>Allowed values: &gt;= 0</p>
2414
+ <p>Default value: 6</p>
2415
+ <p class="since">Since 2.6</p>
2416
+ </div>
2417
+ <hr>
2418
+ <div class="refsect2">
2419
+ <a name="GtkIconView--columns"></a><h3>The <code class="literal">"columns"</code> property</h3>
2420
+ <pre class="programlisting"> "columns" <span class="type">gint</span> : Read / Write</pre>
2421
+ <p>
2422
+ The columns property contains the number of the columns in which the
2423
+ items should be displayed. If it is -1, the number of columns will
2424
+ be chosen automatically to fill the available area.
2425
+ </p>
2426
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2427
+ <p>Default value: -1</p>
2428
+ <p class="since">Since 2.6</p>
2429
+ </div>
2430
+ <hr>
2431
+ <div class="refsect2">
2432
+ <a name="GtkIconView--item-orientation"></a><h3>The <code class="literal">"item-orientation"</code> property</h3>
2433
+ <pre class="programlisting"> "item-orientation" <a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write</pre>
2434
+ <p>
2435
+ The item-orientation property specifies how the cells (i.e. the icon and
2436
+ the text) of the item are positioned relative to each other.
2437
+ </p>
2438
+ <p>Default value: GTK_ORIENTATION_VERTICAL</p>
2439
+ <p class="since">Since 2.6</p>
2440
+ </div>
2441
+ <hr>
2442
+ <div class="refsect2">
2443
+ <a name="GtkIconView--item-padding"></a><h3>The <code class="literal">"item-padding"</code> property</h3>
2444
+ <pre class="programlisting"> "item-padding" <span class="type">gint</span> : Read / Write</pre>
2445
+ <p>
2446
+ The item-padding property specifies the padding around each
2447
+ of the icon view's item.
2448
+ </p>
2449
+ <p>Allowed values: &gt;= 0</p>
2450
+ <p>Default value: 6</p>
2451
+ <p class="since">Since 2.18</p>
2452
+ </div>
2453
+ <hr>
2454
+ <div class="refsect2">
2455
+ <a name="GtkIconView--item-width"></a><h3>The <code class="literal">"item-width"</code> property</h3>
2456
+ <pre class="programlisting"> "item-width" <span class="type">gint</span> : Read / Write</pre>
2457
+ <p>
2458
+ The item-width property specifies the width to use for each item.
2459
+ If it is set to -1, the icon view will automatically determine a
2460
+ suitable item size.
2461
+ </p>
2462
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2463
+ <p>Default value: -1</p>
2464
+ <p class="since">Since 2.6</p>
2465
+ </div>
2466
+ <hr>
2467
+ <div class="refsect2">
2468
+ <a name="GtkIconView--margin"></a><h3>The <code class="literal">"margin"</code> property</h3>
2469
+ <pre class="programlisting"> "margin" <span class="type">gint</span> : Read / Write</pre>
2470
+ <p>
2471
+ The margin property specifies the space which is inserted
2472
+ at the edges of the icon view.
2473
+ </p>
2474
+ <p>Allowed values: &gt;= 0</p>
2475
+ <p>Default value: 6</p>
2476
+ <p class="since">Since 2.6</p>
2477
+ </div>
2478
+ <hr>
2479
+ <div class="refsect2">
2480
+ <a name="GtkIconView--markup-column"></a><h3>The <code class="literal">"markup-column"</code> property</h3>
2481
+ <pre class="programlisting"> "markup-column" <span class="type">gint</span> : Read / Write</pre>
2482
+ <p>
2483
+ The ::markup-column property contains the number of the model column
2484
+ containing markup information to be displayed. The markup column must be
2485
+ of type <span class="type">G_TYPE_STRING</span>. If this property and the :text-column property
2486
+ are both set to column numbers, it overrides the text column.
2487
+ If both are set to -1, no texts are displayed.
2488
+ </p>
2489
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2490
+ <p>Default value: -1</p>
2491
+ <p class="since">Since 2.6</p>
2492
+ </div>
2493
+ <hr>
2494
+ <div class="refsect2">
2495
+ <a name="GtkIconView--model"></a><h3>The <code class="literal">"model"</code> property</h3>
2496
+ <pre class="programlisting"> "model" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write</pre>
2497
+ <p>The model for the icon view.</p>
2498
+ </div>
2499
+ <hr>
2500
+ <div class="refsect2">
2501
+ <a name="GtkIconView--pixbuf-column"></a><h3>The <code class="literal">"pixbuf-column"</code> property</h3>
2502
+ <pre class="programlisting"> "pixbuf-column" <span class="type">gint</span> : Read / Write</pre>
2503
+ <p>
2504
+ The ::pixbuf-column property contains the number of the model column
2505
+ containing the pixbufs which are displayed. The pixbuf column must be
2506
+ of type <span class="type">GDK_TYPE_PIXBUF</span>. Setting this property to -1 turns off the
2507
+ display of pixbufs.
2508
+ </p>
2509
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2510
+ <p>Default value: -1</p>
2511
+ <p class="since">Since 2.6</p>
2512
+ </div>
2513
+ <hr>
2514
+ <div class="refsect2">
2515
+ <a name="GtkIconView--reorderable"></a><h3>The <code class="literal">"reorderable"</code> property</h3>
2516
+ <pre class="programlisting"> "reorderable" <span class="type">gboolean</span> : Read / Write</pre>
2517
+ <p>
2518
+ The reorderable property specifies if the items can be reordered
2519
+ by DND.
2520
+ </p>
2521
+ <p>Default value: FALSE</p>
2522
+ <p class="since">Since 2.8</p>
2523
+ </div>
2524
+ <hr>
2525
+ <div class="refsect2">
2526
+ <a name="GtkIconView--row-spacing"></a><h3>The <code class="literal">"row-spacing"</code> property</h3>
2527
+ <pre class="programlisting"> "row-spacing" <span class="type">gint</span> : Read / Write</pre>
2528
+ <p>
2529
+ The row-spacing property specifies the space which is inserted between
2530
+ the rows of the icon view.
2531
+ </p>
2532
+ <p>Allowed values: &gt;= 0</p>
2533
+ <p>Default value: 6</p>
2534
+ <p class="since">Since 2.6</p>
2535
+ </div>
2536
+ <hr>
2537
+ <div class="refsect2">
2538
+ <a name="GtkIconView--selection-mode"></a><h3>The <code class="literal">"selection-mode"</code> property</h3>
2539
+ <pre class="programlisting"> "selection-mode" <a class="link" href="gtk3-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> : Read / Write</pre>
2540
+ <p>
2541
+ The ::selection-mode property specifies the selection mode of
2542
+ icon view. If the mode is <a class="link" href="gtk3-Standard-Enumerations.html#GTK-SELECTION-MULTIPLE:CAPS"><span class="type">GTK_SELECTION_MULTIPLE</span></a>, rubberband selection
2543
+ is enabled, for the other modes, only keyboard selection is possible.
2544
+ </p>
2545
+ <p>Default value: GTK_SELECTION_SINGLE</p>
2546
+ <p class="since">Since 2.6</p>
2547
+ </div>
2548
+ <hr>
2549
+ <div class="refsect2">
2550
+ <a name="GtkIconView--spacing"></a><h3>The <code class="literal">"spacing"</code> property</h3>
2551
+ <pre class="programlisting"> "spacing" <span class="type">gint</span> : Read / Write</pre>
2552
+ <p>
2553
+ The spacing property specifies the space which is inserted between
2554
+ the cells (i.e. the icon and the text) of an item.
2555
+ </p>
2556
+ <p>Allowed values: &gt;= 0</p>
2557
+ <p>Default value: 0</p>
2558
+ <p class="since">Since 2.6</p>
2559
+ </div>
2560
+ <hr>
2561
+ <div class="refsect2">
2562
+ <a name="GtkIconView--text-column"></a><h3>The <code class="literal">"text-column"</code> property</h3>
2563
+ <pre class="programlisting"> "text-column" <span class="type">gint</span> : Read / Write</pre>
2564
+ <p>
2565
+ The ::text-column property contains the number of the model column
2566
+ containing the texts which are displayed. The text column must be
2567
+ of type <span class="type">G_TYPE_STRING</span>. If this property and the :markup-column
2568
+ property are both set to -1, no texts are displayed.
2569
+ </p>
2570
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2571
+ <p>Default value: -1</p>
2572
+ <p class="since">Since 2.6</p>
2573
+ </div>
2574
+ <hr>
2575
+ <div class="refsect2">
2576
+ <a name="GtkIconView--tooltip-column"></a><h3>The <code class="literal">"tooltip-column"</code> property</h3>
2577
+ <pre class="programlisting"> "tooltip-column" <span class="type">gint</span> : Read / Write</pre>
2578
+ <p>The column in the model containing the tooltip texts for the items.</p>
2579
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2580
+ <p>Default value: -1</p>
2581
+ </div>
2582
+ </div>
2583
+ <div class="refsect1">
2584
+ <a name="GtkIconView.style-property-details"></a><h2>Style Property Details</h2>
2585
+ <div class="refsect2">
2586
+ <a name="GtkIconView--s-selection-box-alpha"></a><h3>The <code class="literal">"selection-box-alpha"</code> style property</h3>
2587
+ <pre class="programlisting"> "selection-box-alpha" <span class="type">guchar</span> : Read</pre>
2588
+ <p>Opacity of the selection box.</p>
2589
+ <p>Default value: 64</p>
2590
+ </div>
2591
+ <hr>
2592
+ <div class="refsect2">
2593
+ <a name="GtkIconView--s-selection-box-color"></a><h3>The <code class="literal">"selection-box-color"</code> style property</h3>
2594
+ <pre class="programlisting"> "selection-box-color" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read</pre>
2595
+ <p>Color of the selection box.</p>
2596
+ </div>
2597
+ </div>
2598
+ <div class="refsect1">
2599
+ <a name="GtkIconView.signal-details"></a><h2>Signal Details</h2>
2600
+ <div class="refsect2">
2601
+ <a name="GtkIconView-activate-cursor-item"></a><h3>The <code class="literal">"activate-cursor-item"</code> signal</h3>
2602
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2603
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
2604
+ <p>
2605
+ A <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
2606
+ which gets emitted when the user activates the currently
2607
+ focused item.
2608
+ </p>
2609
+ <p>
2610
+ Applications should not connect to it, but may emit it with
2611
+ <code class="function">g_signal_emit_by_name()</code> if they need to control activation
2612
+ programmatically.
2613
+ </p>
2614
+ <p>
2615
+ The default bindings for this signal are Space, Return and Enter.
2616
+ </p>
2617
+ <div class="variablelist"><table border="0" class="variablelist">
2618
+ <colgroup>
2619
+ <col align="left" valign="top">
2620
+ <col>
2621
+ </colgroup>
2622
+ <tbody>
2623
+ <tr>
2624
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2625
+ <td>the object on which the signal is emitted</td>
2626
+ </tr>
2627
+ <tr>
2628
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2629
+ <td>user data set when the signal handler was connected.</td>
2630
+ </tr>
2631
+ </tbody>
2632
+ </table></div>
2633
+ </div>
2634
+ <hr>
2635
+ <div class="refsect2">
2636
+ <a name="GtkIconView-item-activated"></a><h3>The <code class="literal">"item-activated"</code> signal</h3>
2637
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2638
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
2639
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
2640
+ <p>
2641
+ The ::item-activated signal is emitted when the method
2642
+ <a class="link" href="GtkIconView.html#gtk-icon-view-item-activated" title="gtk_icon_view_item_activated ()"><code class="function">gtk_icon_view_item_activated()</code></a> is called or the user double
2643
+ clicks an item. It is also emitted when a non-editable item
2644
+ is selected and one of the keys: Space, Return or Enter is
2645
+ pressed.
2646
+ </p>
2647
+ <div class="variablelist"><table border="0" class="variablelist">
2648
+ <colgroup>
2649
+ <col align="left" valign="top">
2650
+ <col>
2651
+ </colgroup>
2652
+ <tbody>
2653
+ <tr>
2654
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2655
+ <td>the object on which the signal is emitted</td>
2656
+ </tr>
2657
+ <tr>
2658
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2659
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for the activated item</td>
2660
+ </tr>
2661
+ <tr>
2662
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2663
+ <td>user data set when the signal handler was connected.</td>
2664
+ </tr>
2665
+ </tbody>
2666
+ </table></div>
2667
+ </div>
2668
+ <hr>
2669
+ <div class="refsect2">
2670
+ <a name="GtkIconView-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
2671
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2672
+ <a class="link" href="gtk3-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
2673
+ <span class="type">gint</span> count,
2674
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
2675
+ <p>
2676
+ The ::move-cursor signal is a
2677
+ <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
2678
+ which gets emitted when the user initiates a cursor movement.
2679
+ </p>
2680
+ <p>
2681
+ Applications should not connect to it, but may emit it with
2682
+ <code class="function">g_signal_emit_by_name()</code> if they need to control the cursor
2683
+ programmatically.
2684
+ </p>
2685
+ <p>
2686
+ The default bindings for this signal include
2687
+ </p>
2688
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
2689
+ <li class="listitem">Arrow keys which move by individual steps</li>
2690
+ <li class="listitem">Home/End keys which move to the first/last item</li>
2691
+ <li class="listitem">PageUp/PageDown which move by "pages"</li>
2692
+ </ul></div>
2693
+ <p>
2694
+ </p>
2695
+ <p>
2696
+ All of these will extend the selection when combined with
2697
+ the Shift modifier.
2698
+ </p>
2699
+ <div class="variablelist"><table border="0" class="variablelist">
2700
+ <colgroup>
2701
+ <col align="left" valign="top">
2702
+ <col>
2703
+ </colgroup>
2704
+ <tbody>
2705
+ <tr>
2706
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2707
+ <td>the object which received the signal</td>
2708
+ </tr>
2709
+ <tr>
2710
+ <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
2711
+ <td>the granularity of the move, as a <a class="link" href="gtk3-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a>
2712
+ </td>
2713
+ </tr>
2714
+ <tr>
2715
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2716
+ <td>the number of <em class="parameter"><code>step</code></em> units to move</td>
2717
+ </tr>
2718
+ <tr>
2719
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2720
+ <td>user data set when the signal handler was connected.</td>
2721
+ </tr>
2722
+ </tbody>
2723
+ </table></div>
2724
+ </div>
2725
+ <hr>
2726
+ <div class="refsect2">
2727
+ <a name="GtkIconView-select-all"></a><h3>The <code class="literal">"select-all"</code> signal</h3>
2728
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2729
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
2730
+ <p>
2731
+ A <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
2732
+ which gets emitted when the user selects all items.
2733
+ </p>
2734
+ <p>
2735
+ Applications should not connect to it, but may emit it with
2736
+ <code class="function">g_signal_emit_by_name()</code> if they need to control selection
2737
+ programmatically.
2738
+ </p>
2739
+ <p>
2740
+ The default binding for this signal is Ctrl-a.
2741
+ </p>
2742
+ <div class="variablelist"><table border="0" class="variablelist">
2743
+ <colgroup>
2744
+ <col align="left" valign="top">
2745
+ <col>
2746
+ </colgroup>
2747
+ <tbody>
2748
+ <tr>
2749
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2750
+ <td>the object on which the signal is emitted</td>
2751
+ </tr>
2752
+ <tr>
2753
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2754
+ <td>user data set when the signal handler was connected.</td>
2755
+ </tr>
2756
+ </tbody>
2757
+ </table></div>
2758
+ </div>
2759
+ <hr>
2760
+ <div class="refsect2">
2761
+ <a name="GtkIconView-select-cursor-item"></a><h3>The <code class="literal">"select-cursor-item"</code> signal</h3>
2762
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2763
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
2764
+ <p>
2765
+ A <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
2766
+ which gets emitted when the user selects the item that is currently
2767
+ focused.
2768
+ </p>
2769
+ <p>
2770
+ Applications should not connect to it, but may emit it with
2771
+ <code class="function">g_signal_emit_by_name()</code> if they need to control selection
2772
+ programmatically.
2773
+ </p>
2774
+ <p>
2775
+ There is no default binding for this signal.
2776
+ </p>
2777
+ <div class="variablelist"><table border="0" class="variablelist">
2778
+ <colgroup>
2779
+ <col align="left" valign="top">
2780
+ <col>
2781
+ </colgroup>
2782
+ <tbody>
2783
+ <tr>
2784
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2785
+ <td>the object on which the signal is emitted</td>
2786
+ </tr>
2787
+ <tr>
2788
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2789
+ <td>user data set when the signal handler was connected.</td>
2790
+ </tr>
2791
+ </tbody>
2792
+ </table></div>
2793
+ </div>
2794
+ <hr>
2795
+ <div class="refsect2">
2796
+ <a name="GtkIconView-selection-changed"></a><h3>The <code class="literal">"selection-changed"</code> signal</h3>
2797
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2798
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
2799
+ <p>
2800
+ The ::selection-changed signal is emitted when the selection
2801
+ (i.e. the set of selected items) changes.
2802
+ </p>
2803
+ <div class="variablelist"><table border="0" class="variablelist">
2804
+ <colgroup>
2805
+ <col align="left" valign="top">
2806
+ <col>
2807
+ </colgroup>
2808
+ <tbody>
2809
+ <tr>
2810
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2811
+ <td>the object on which the signal is emitted</td>
2812
+ </tr>
2813
+ <tr>
2814
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2815
+ <td>user data set when the signal handler was connected.</td>
2816
+ </tr>
2817
+ </tbody>
2818
+ </table></div>
2819
+ </div>
2820
+ <hr>
2821
+ <div class="refsect2">
2822
+ <a name="GtkIconView-toggle-cursor-item"></a><h3>The <code class="literal">"toggle-cursor-item"</code> signal</h3>
2823
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2824
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
2825
+ <p>
2826
+ A <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
2827
+ which gets emitted when the user toggles whether the currently
2828
+ focused item is selected or not. The exact effect of this
2829
+ depend on the selection mode.
2830
+ </p>
2831
+ <p>
2832
+ Applications should not connect to it, but may emit it with
2833
+ <code class="function">g_signal_emit_by_name()</code> if they need to control selection
2834
+ programmatically.
2835
+ </p>
2836
+ <p>
2837
+ There is no default binding for this signal is Ctrl-Space.
2838
+ </p>
2839
+ <div class="variablelist"><table border="0" class="variablelist">
2840
+ <colgroup>
2841
+ <col align="left" valign="top">
2842
+ <col>
2843
+ </colgroup>
2844
+ <tbody>
2845
+ <tr>
2846
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2847
+ <td>the object on which the signal is emitted</td>
2848
+ </tr>
2849
+ <tr>
2850
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2851
+ <td>user data set when the signal handler was connected.</td>
2852
+ </tr>
2853
+ </tbody>
2854
+ </table></div>
2855
+ </div>
2856
+ <hr>
2857
+ <div class="refsect2">
2858
+ <a name="GtkIconView-unselect-all"></a><h3>The <code class="literal">"unselect-all"</code> signal</h3>
2859
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2860
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
2861
+ <p>
2862
+ A <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
2863
+ which gets emitted when the user unselects all items.
2864
+ </p>
2865
+ <p>
2866
+ Applications should not connect to it, but may emit it with
2867
+ <code class="function">g_signal_emit_by_name()</code> if they need to control selection
2868
+ programmatically.
2869
+ </p>
2870
+ <p>
2871
+ The default binding for this signal is Ctrl-Shift-a.
2872
+ </p>
2873
+ <div class="variablelist"><table border="0" class="variablelist">
2874
+ <colgroup>
2875
+ <col align="left" valign="top">
2876
+ <col>
2877
+ </colgroup>
2878
+ <tbody>
2879
+ <tr>
2880
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2881
+ <td>the object on which the signal is emitted</td>
2882
+ </tr>
2883
+ <tr>
2884
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2885
+ <td>user data set when the signal handler was connected.</td>
2886
+ </tr>
2887
+ </tbody>
2888
+ </table></div>
2889
+ </div>
2890
+ </div>
2891
+ </div>
2892
+ <div class="footer">
2893
+ <hr>
2894
+ Generated by GTK-Doc V1.18.1</div>
2895
+ </body>
2896
+ </html>