gtk3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1599) hide show
  1. data/Rakefile +32 -0
  2. data/ext/gtk3/conversions.c +34 -0
  3. data/ext/gtk3/depend +11 -0
  4. data/ext/gtk3/extconf.rb +108 -0
  5. data/ext/gtk3/gtk3.def +10 -0
  6. data/ext/gtk3/init.c +38 -0
  7. data/ext/gtk3/rbgdkdisplay.c +39 -0
  8. data/ext/gtk3/rbgdkdragcontext.c +108 -0
  9. data/ext/gtk3/rbgdkevent.c +38 -0
  10. data/ext/gtk3/rbgdkscreen.c +61 -0
  11. data/ext/gtk3/rbgtk.c +625 -0
  12. data/ext/gtk3/rbgtk3.h +57 -0
  13. data/ext/gtk3/rbgtk3conversions.h +347 -0
  14. data/ext/gtk3/rbgtk3private.h +282 -0
  15. data/ext/gtk3/rbgtk3util.c +67 -0
  16. data/ext/gtk3/rbgtk3util.h +32 -0
  17. data/ext/gtk3/rbgtkaboutdialog.c +117 -0
  18. data/ext/gtk3/rbgtkaccelerator.c +78 -0
  19. data/ext/gtk3/rbgtkaccelgroup.c +199 -0
  20. data/ext/gtk3/rbgtkaccelgroupentry.c +93 -0
  21. data/ext/gtk3/rbgtkaccelkey.c +119 -0
  22. data/ext/gtk3/rbgtkaccellabel.c +55 -0
  23. data/ext/gtk3/rbgtkaccelmap.c +135 -0
  24. data/ext/gtk3/rbgtkaccessible.c +56 -0
  25. data/ext/gtk3/rbgtkaction.c +205 -0
  26. data/ext/gtk3/rbgtkactiongroup.c +466 -0
  27. data/ext/gtk3/rbgtkactivatable.c +30 -0
  28. data/ext/gtk3/rbgtkadjustment.c +98 -0
  29. data/ext/gtk3/rbgtkalignment.c +75 -0
  30. data/ext/gtk3/rbgtkallocation.c +166 -0
  31. data/ext/gtk3/rbgtkappchooser.c +47 -0
  32. data/ext/gtk3/rbgtkappchooserbutton.c +70 -0
  33. data/ext/gtk3/rbgtkappchooserdialog.c +68 -0
  34. data/ext/gtk3/rbgtkappchooserwidget.c +40 -0
  35. data/ext/gtk3/rbgtkapplication.c +69 -0
  36. data/ext/gtk3/rbgtkarrow.c +56 -0
  37. data/ext/gtk3/rbgtkaspectframe.c +56 -0
  38. data/ext/gtk3/rbgtkassistant.c +218 -0
  39. data/ext/gtk3/rbgtkbin.c +42 -0
  40. data/ext/gtk3/rbgtkbindingset.c +164 -0
  41. data/ext/gtk3/rbgtkborder.c +119 -0
  42. data/ext/gtk3/rbgtkbox.c +146 -0
  43. data/ext/gtk3/rbgtkbuildable.c +96 -0
  44. data/ext/gtk3/rbgtkbuilder.c +166 -0
  45. data/ext/gtk3/rbgtkbutton.c +93 -0
  46. data/ext/gtk3/rbgtkbuttonbox.c +87 -0
  47. data/ext/gtk3/rbgtkcalendar.c +118 -0
  48. data/ext/gtk3/rbgtkcelleditable.c +57 -0
  49. data/ext/gtk3/rbgtkcelllayout.c +144 -0
  50. data/ext/gtk3/rbgtkcellrenderer.c +116 -0
  51. data/ext/gtk3/rbgtkcellrendereraccel.c +41 -0
  52. data/ext/gtk3/rbgtkcellrenderercombo.c +38 -0
  53. data/ext/gtk3/rbgtkcellrendererpixbuf.c +41 -0
  54. data/ext/gtk3/rbgtkcellrendererprogress.c +38 -0
  55. data/ext/gtk3/rbgtkcellrendererspin.c +39 -0
  56. data/ext/gtk3/rbgtkcellrendererspinner.c +38 -0
  57. data/ext/gtk3/rbgtkcellrenderertext.c +48 -0
  58. data/ext/gtk3/rbgtkcellrenderertoggle.c +39 -0
  59. data/ext/gtk3/rbgtkcellview.c +109 -0
  60. data/ext/gtk3/rbgtkcheckbutton.c +64 -0
  61. data/ext/gtk3/rbgtkcheckmenuitem.c +64 -0
  62. data/ext/gtk3/rbgtkclipboard.c +389 -0
  63. data/ext/gtk3/rbgtkcolorbutton.c +49 -0
  64. data/ext/gtk3/rbgtkcolorselection.c +219 -0
  65. data/ext/gtk3/rbgtkcolorselectiondialog.c +56 -0
  66. data/ext/gtk3/rbgtkcombobox.c +147 -0
  67. data/ext/gtk3/rbgtkcomboboxtext.c +138 -0
  68. data/ext/gtk3/rbgtkconst.c +79 -0
  69. data/ext/gtk3/rbgtkcontainer.c +784 -0
  70. data/ext/gtk3/rbgtkcssprovider.c +110 -0
  71. data/ext/gtk3/rbgtkdialog.c +186 -0
  72. data/ext/gtk3/rbgtkdrag.c +93 -0
  73. data/ext/gtk3/rbgtkdrawingarea.c +42 -0
  74. data/ext/gtk3/rbgtkeditable.c +149 -0
  75. data/ext/gtk3/rbgtkentry.c +198 -0
  76. data/ext/gtk3/rbgtkentrybuffer.c +87 -0
  77. data/ext/gtk3/rbgtkentrycompletion.c +122 -0
  78. data/ext/gtk3/rbgtkeventbox.c +42 -0
  79. data/ext/gtk3/rbgtkexpander.c +49 -0
  80. data/ext/gtk3/rbgtkfilechooser.c +384 -0
  81. data/ext/gtk3/rbgtkfilechooserbutton.c +50 -0
  82. data/ext/gtk3/rbgtkfilechooserdialog.c +62 -0
  83. data/ext/gtk3/rbgtkfilechooserwidget.c +40 -0
  84. data/ext/gtk3/rbgtkfilefilter.c +128 -0
  85. data/ext/gtk3/rbgtkfilesystemerror.c +48 -0
  86. data/ext/gtk3/rbgtkfixed.c +61 -0
  87. data/ext/gtk3/rbgtkfontbutton.c +49 -0
  88. data/ext/gtk3/rbgtkfontchooser.c +78 -0
  89. data/ext/gtk3/rbgtkfontchooserdialog.c +56 -0
  90. data/ext/gtk3/rbgtkfontchooserwidget.c +45 -0
  91. data/ext/gtk3/rbgtkframe.c +69 -0
  92. data/ext/gtk3/rbgtkgrid.c +105 -0
  93. data/ext/gtk3/rbgtkhandlebox.c +45 -0
  94. data/ext/gtk3/rbgtkhsv.c +102 -0
  95. data/ext/gtk3/rbgtkiconfactory.c +85 -0
  96. data/ext/gtk3/rbgtkiconinfo.c +115 -0
  97. data/ext/gtk3/rbgtkiconset.c +84 -0
  98. data/ext/gtk3/rbgtkiconsize.c +91 -0
  99. data/ext/gtk3/rbgtkiconsource.c +184 -0
  100. data/ext/gtk3/rbgtkicontheme.c +268 -0
  101. data/ext/gtk3/rbgtkiconview.c +270 -0
  102. data/ext/gtk3/rbgtkimage.c +96 -0
  103. data/ext/gtk3/rbgtkimagemenuitem.c +67 -0
  104. data/ext/gtk3/rbgtkimcontext.c +133 -0
  105. data/ext/gtk3/rbgtkimcontextsimple.c +69 -0
  106. data/ext/gtk3/rbgtkimmulticontext.c +48 -0
  107. data/ext/gtk3/rbgtkinfobar.c +121 -0
  108. data/ext/gtk3/rbgtkinvisible.c +49 -0
  109. data/ext/gtk3/rbgtklabel.c +139 -0
  110. data/ext/gtk3/rbgtklayout.c +93 -0
  111. data/ext/gtk3/rbgtklinkbutton.c +55 -0
  112. data/ext/gtk3/rbgtkliststore.c +408 -0
  113. data/ext/gtk3/rbgtklockbutton.c +50 -0
  114. data/ext/gtk3/rbgtkmenu.c +168 -0
  115. data/ext/gtk3/rbgtkmenubar.c +43 -0
  116. data/ext/gtk3/rbgtkmenuitem.c +95 -0
  117. data/ext/gtk3/rbgtkmenushell.c +106 -0
  118. data/ext/gtk3/rbgtkmenutoolbutton.c +81 -0
  119. data/ext/gtk3/rbgtkmessagedialog.c +74 -0
  120. data/ext/gtk3/rbgtkmisc.c +70 -0
  121. data/ext/gtk3/rbgtknotebook.c +383 -0
  122. data/ext/gtk3/rbgtknumerableicon.c +50 -0
  123. data/ext/gtk3/rbgtkorientable.c +27 -0
  124. data/ext/gtk3/rbgtkoverlay.c +53 -0
  125. data/ext/gtk3/rbgtkpagesetup.c +195 -0
  126. data/ext/gtk3/rbgtkpagesetupunixdialog.c +94 -0
  127. data/ext/gtk3/rbgtkpaned.c +114 -0
  128. data/ext/gtk3/rbgtkpapersize.c +179 -0
  129. data/ext/gtk3/rbgtkplug.c +85 -0
  130. data/ext/gtk3/rbgtkprintcontext.c +125 -0
  131. data/ext/gtk3/rbgtkprinter.c +155 -0
  132. data/ext/gtk3/rbgtkprintjob.c +148 -0
  133. data/ext/gtk3/rbgtkprintoperation.c +149 -0
  134. data/ext/gtk3/rbgtkprintoperationpreview.c +59 -0
  135. data/ext/gtk3/rbgtkprintsettings.c +807 -0
  136. data/ext/gtk3/rbgtkprintunixdialog.c +90 -0
  137. data/ext/gtk3/rbgtkprogressbar.c +72 -0
  138. data/ext/gtk3/rbgtkradioaction.c +122 -0
  139. data/ext/gtk3/rbgtkradiobutton.c +89 -0
  140. data/ext/gtk3/rbgtkradiomenuitem.c +147 -0
  141. data/ext/gtk3/rbgtkradiotoolbutton.c +131 -0
  142. data/ext/gtk3/rbgtkrange.c +68 -0
  143. data/ext/gtk3/rbgtkrecentaction.c +64 -0
  144. data/ext/gtk3/rbgtkrecentchooser.c +198 -0
  145. data/ext/gtk3/rbgtkrecentchooserdialog.c +66 -0
  146. data/ext/gtk3/rbgtkrecentchoosermenu.c +50 -0
  147. data/ext/gtk3/rbgtkrecentchooserwidget.c +48 -0
  148. data/ext/gtk3/rbgtkrecentdata.c +187 -0
  149. data/ext/gtk3/rbgtkrecentfilter.c +169 -0
  150. data/ext/gtk3/rbgtkrecentfilterinfo.c +200 -0
  151. data/ext/gtk3/rbgtkrecentinfo.c +213 -0
  152. data/ext/gtk3/rbgtkrecentmanager.c +134 -0
  153. data/ext/gtk3/rbgtkscale.c +97 -0
  154. data/ext/gtk3/rbgtkscalebutton.c +84 -0
  155. data/ext/gtk3/rbgtkscrollable.c +31 -0
  156. data/ext/gtk3/rbgtkscrollbar.c +52 -0
  157. data/ext/gtk3/rbgtkscrolledwindow.c +122 -0
  158. data/ext/gtk3/rbgtkselection.c +168 -0
  159. data/ext/gtk3/rbgtkselectiondata.c +282 -0
  160. data/ext/gtk3/rbgtkseparator.c +44 -0
  161. data/ext/gtk3/rbgtkseparatormenuitem.c +39 -0
  162. data/ext/gtk3/rbgtkseparatortoolitem.c +38 -0
  163. data/ext/gtk3/rbgtksettings.c +229 -0
  164. data/ext/gtk3/rbgtksizegroup.c +66 -0
  165. data/ext/gtk3/rbgtksocket.c +82 -0
  166. data/ext/gtk3/rbgtkspinbutton.c +132 -0
  167. data/ext/gtk3/rbgtkspinner.c +55 -0
  168. data/ext/gtk3/rbgtkstatusbar.c +77 -0
  169. data/ext/gtk3/rbgtkstatusicon.c +122 -0
  170. data/ext/gtk3/rbgtkstock.c +213 -0
  171. data/ext/gtk3/rbgtkstylecontext.c +411 -0
  172. data/ext/gtk3/rbgtkstyleproperties.c +119 -0
  173. data/ext/gtk3/rbgtkstyleprovider.c +68 -0
  174. data/ext/gtk3/rbgtkswitch.c +40 -0
  175. data/ext/gtk3/rbgtktable.c +190 -0
  176. data/ext/gtk3/rbgtktargetlist.c +125 -0
  177. data/ext/gtk3/rbgtktearoffmenuitem.c +41 -0
  178. data/ext/gtk3/rbgtktextappearance.c +236 -0
  179. data/ext/gtk3/rbgtktextattributes.c +326 -0
  180. data/ext/gtk3/rbgtktextbuffer.c +899 -0
  181. data/ext/gtk3/rbgtktextchildanchor.c +56 -0
  182. data/ext/gtk3/rbgtktextiter.c +732 -0
  183. data/ext/gtk3/rbgtktextmark.c +71 -0
  184. data/ext/gtk3/rbgtktexttag.c +68 -0
  185. data/ext/gtk3/rbgtktexttagtable.c +96 -0
  186. data/ext/gtk3/rbgtktextview.c +336 -0
  187. data/ext/gtk3/rbgtkthemingengine.c +257 -0
  188. data/ext/gtk3/rbgtktoggleaction.c +61 -0
  189. data/ext/gtk3/rbgtktogglebutton.c +87 -0
  190. data/ext/gtk3/rbgtktoggletoolbutton.c +61 -0
  191. data/ext/gtk3/rbgtktoolbar.c +118 -0
  192. data/ext/gtk3/rbgtktoolbutton.c +66 -0
  193. data/ext/gtk3/rbgtktoolitem.c +200 -0
  194. data/ext/gtk3/rbgtktoolitemgroup.c +70 -0
  195. data/ext/gtk3/rbgtktoolshell.c +96 -0
  196. data/ext/gtk3/rbgtktooltip.c +100 -0
  197. data/ext/gtk3/rbgtktreedragdest.c +28 -0
  198. data/ext/gtk3/rbgtktreedragsource.c +28 -0
  199. data/ext/gtk3/rbgtktreeiter.c +258 -0
  200. data/ext/gtk3/rbgtktreemodel.c +236 -0
  201. data/ext/gtk3/rbgtktreemodelfilter.c +197 -0
  202. data/ext/gtk3/rbgtktreemodelsort.c +111 -0
  203. data/ext/gtk3/rbgtktreepath.c +191 -0
  204. data/ext/gtk3/rbgtktreerowreference.c +140 -0
  205. data/ext/gtk3/rbgtktreeselection.c +205 -0
  206. data/ext/gtk3/rbgtktreesortable.c +122 -0
  207. data/ext/gtk3/rbgtktreestore.c +330 -0
  208. data/ext/gtk3/rbgtktreeview.c +715 -0
  209. data/ext/gtk3/rbgtktreeviewcolumn.c +256 -0
  210. data/ext/gtk3/rbgtkuimanager.c +189 -0
  211. data/ext/gtk3/rbgtkviewport.c +44 -0
  212. data/ext/gtk3/rbgtkvolumebutton.c +41 -0
  213. data/ext/gtk3/rbgtkwidget.c +1564 -0
  214. data/ext/gtk3/rbgtkwidgetpath.c +229 -0
  215. data/ext/gtk3/rbgtkwindow.c +557 -0
  216. data/ext/gtk3/rbgtkwindowgroup.c +80 -0
  217. data/extconf.rb +49 -0
  218. data/lib/1.8/gtk3.so +0 -0
  219. data/lib/1.9/gtk3.so +0 -0
  220. data/lib/gtk3.rb +10 -0
  221. data/lib/gtk3/base.rb +67 -0
  222. data/lib/gtk3/deprecated.rb +1001 -0
  223. data/sample/gtk-demo/README +7 -0
  224. data/sample/gtk-demo/alphatest.png +0 -0
  225. data/sample/gtk-demo/apple-red.png +0 -0
  226. data/sample/gtk-demo/appwindow.rb +233 -0
  227. data/sample/gtk-demo/background.jpg +0 -0
  228. data/sample/gtk-demo/builder.rb +51 -0
  229. data/sample/gtk-demo/button_box.rb +84 -0
  230. data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
  231. data/sample/gtk-demo/cairo-arc.rb +41 -0
  232. data/sample/gtk-demo/cairo-clip-image.rb +51 -0
  233. data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
  234. data/sample/gtk-demo/cairo-clip.rb +35 -0
  235. data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
  236. data/sample/gtk-demo/cairo-curve-to.rb +43 -0
  237. data/sample/gtk-demo/cairo-dash.rb +39 -0
  238. data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
  239. data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
  240. data/sample/gtk-demo/cairo-gradient.rb +35 -0
  241. data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
  242. data/sample/gtk-demo/cairo-image.rb +49 -0
  243. data/sample/gtk-demo/cairo-line-cap.rb +53 -0
  244. data/sample/gtk-demo/cairo-line-join.rb +41 -0
  245. data/sample/gtk-demo/cairo-long-lines.rb +41 -0
  246. data/sample/gtk-demo/cairo-operator.rb +83 -0
  247. data/sample/gtk-demo/cairo-path.rb +28 -0
  248. data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
  249. data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
  250. data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
  251. data/sample/gtk-demo/cairo-text-extents.rb +46 -0
  252. data/sample/gtk-demo/cairo-text.rb +43 -0
  253. data/sample/gtk-demo/changedisplay.rb +408 -0
  254. data/sample/gtk-demo/clipboard.rb +72 -0
  255. data/sample/gtk-demo/colorsel.rb +84 -0
  256. data/sample/gtk-demo/common.rb +88 -0
  257. data/sample/gtk-demo/demo.ui +258 -0
  258. data/sample/gtk-demo/dialog.rb +137 -0
  259. data/sample/gtk-demo/drawingarea.rb +226 -0
  260. data/sample/gtk-demo/editable_cells.rb +172 -0
  261. data/sample/gtk-demo/entry_completion.rb +63 -0
  262. data/sample/gtk-demo/expander.rb +40 -0
  263. data/sample/gtk-demo/floppybuddy.gif +0 -0
  264. data/sample/gtk-demo/gnome-applets.png +0 -0
  265. data/sample/gtk-demo/gnome-calendar.png +0 -0
  266. data/sample/gtk-demo/gnome-foot.png +0 -0
  267. data/sample/gtk-demo/gnome-fs-directory.png +0 -0
  268. data/sample/gtk-demo/gnome-fs-regular.png +0 -0
  269. data/sample/gtk-demo/gnome-gimp.png +0 -0
  270. data/sample/gtk-demo/gnome-gmush.png +0 -0
  271. data/sample/gtk-demo/gnome-gsame.png +0 -0
  272. data/sample/gtk-demo/gnu-keys.png +0 -0
  273. data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
  274. data/sample/gtk-demo/hypertext.rb +211 -0
  275. data/sample/gtk-demo/iconview.rb +109 -0
  276. data/sample/gtk-demo/images.rb +197 -0
  277. data/sample/gtk-demo/item_factory.rb +94 -0
  278. data/sample/gtk-demo/list_store.rb +138 -0
  279. data/sample/gtk-demo/main.rb +382 -0
  280. data/sample/gtk-demo/menus.rb +172 -0
  281. data/sample/gtk-demo/panes.rb +156 -0
  282. data/sample/gtk-demo/pixbufs.rb +176 -0
  283. data/sample/gtk-demo/printing.rb +128 -0
  284. data/sample/gtk-demo/rotated_text.rb +84 -0
  285. data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
  286. data/sample/gtk-demo/sizegroup.rb +118 -0
  287. data/sample/gtk-demo/stock_browser.rb +235 -0
  288. data/sample/gtk-demo/textview.rb +436 -0
  289. data/sample/gtk-demo/tree_store.rb +270 -0
  290. data/sample/misc/aboutdialog.rb +42 -0
  291. data/sample/misc/aboutdialog2.rb +42 -0
  292. data/sample/misc/alpha-demo.rb +70 -0
  293. data/sample/misc/assistant.rb +347 -0
  294. data/sample/misc/bindings.rb +107 -0
  295. data/sample/misc/button.rb +69 -0
  296. data/sample/misc/button2.rb +28 -0
  297. data/sample/misc/buttonbox.rb +93 -0
  298. data/sample/misc/cairo-pong.rb +215 -0
  299. data/sample/misc/calendar.rb +66 -0
  300. data/sample/misc/checkbutton.rb +46 -0
  301. data/sample/misc/colorselection.rb +25 -0
  302. data/sample/misc/combo_check.rb +71 -0
  303. data/sample/misc/combobox.rb +86 -0
  304. data/sample/misc/composited-windows.rb +113 -0
  305. data/sample/misc/cursor.rb +32 -0
  306. data/sample/misc/dialog.rb +44 -0
  307. data/sample/misc/dialog2.rb +39 -0
  308. data/sample/misc/dnd.rb +64 -0
  309. data/sample/misc/dndtreeview.rb +56 -0
  310. data/sample/misc/drag-move.rb +131 -0
  311. data/sample/misc/drawing.rb +90 -0
  312. data/sample/misc/entry.rb +34 -0
  313. data/sample/misc/entrycompletion.rb +33 -0
  314. data/sample/misc/expander.rb +27 -0
  315. data/sample/misc/filechooser.rb +41 -0
  316. data/sample/misc/frame.rb +69 -0
  317. data/sample/misc/gdkscreen.rb +32 -0
  318. data/sample/misc/gnome-logo-icon.png +0 -0
  319. data/sample/misc/helloworld.rb +35 -0
  320. data/sample/misc/iconview.rb +38 -0
  321. data/sample/misc/image.rb +42 -0
  322. data/sample/misc/itemfactory.rb +73 -0
  323. data/sample/misc/itemfactory2.rb +74 -0
  324. data/sample/misc/keyboard_grab.rb +29 -0
  325. data/sample/misc/label.rb +33 -0
  326. data/sample/misc/linkbutton.rb +42 -0
  327. data/sample/misc/listview.rb +92 -0
  328. data/sample/misc/menu.rb +81 -0
  329. data/sample/misc/misc_button.rb +49 -0
  330. data/sample/misc/mouse-gesture.rb +465 -0
  331. data/sample/misc/pangorenderer.rb +66 -0
  332. data/sample/misc/pointer_grab.rb +34 -0
  333. data/sample/misc/print.rb +247 -0
  334. data/sample/misc/properties.rb +85 -0
  335. data/sample/misc/radiobutton.rb +47 -0
  336. data/sample/misc/recentchooserdialog.rb +52 -0
  337. data/sample/misc/rgtk+cairo.rb +42 -0
  338. data/sample/misc/scalebutton.rb +19 -0
  339. data/sample/misc/settings.rb +41 -0
  340. data/sample/misc/statusicon.rb +123 -0
  341. data/sample/misc/stock.rb +36 -0
  342. data/sample/misc/style_property.rb +67 -0
  343. data/sample/misc/style_property.rc +19 -0
  344. data/sample/misc/t-gtkplug.rb +58 -0
  345. data/sample/misc/t-gtksocket.rb +65 -0
  346. data/sample/misc/test.xpm +92 -0
  347. data/sample/misc/textbuffer_serialize.rb +130 -0
  348. data/sample/misc/threads.rb +72 -0
  349. data/sample/misc/to_drawable.rb +42 -0
  350. data/sample/misc/togglebutton.rb +34 -0
  351. data/sample/misc/toolbar.rb +55 -0
  352. data/sample/misc/tooltips.rb +204 -0
  353. data/sample/misc/tree_combo.rb +79 -0
  354. data/sample/misc/tree_progress.rb +63 -0
  355. data/sample/misc/treemodelfilter.rb +49 -0
  356. data/sample/misc/treeview.rb +71 -0
  357. data/sample/misc/uimanager.rb +148 -0
  358. data/sample/misc/uimanager2.rb +91 -0
  359. data/sample/misc/uimanager2.xml +36 -0
  360. data/sample/misc/window.rb +24 -0
  361. data/sample/misc/xbm_cursor.rb +43 -0
  362. data/sample/testgtk/3DRings.xpm +116 -0
  363. data/sample/testgtk/FilesQueue.xpm +98 -0
  364. data/sample/testgtk/Modeller.xpm +117 -0
  365. data/sample/testgtk/README +14 -0
  366. data/sample/testgtk/button.rb +124 -0
  367. data/sample/testgtk/buttonbox.rb +100 -0
  368. data/sample/testgtk/check-n.xpm +21 -0
  369. data/sample/testgtk/check-y.xpm +21 -0
  370. data/sample/testgtk/checkbutton.rb +67 -0
  371. data/sample/testgtk/circles.xbm +46 -0
  372. data/sample/testgtk/colorselect.rb +33 -0
  373. data/sample/testgtk/dialog.rb +48 -0
  374. data/sample/testgtk/entry.rb +73 -0
  375. data/sample/testgtk/filesel.rb +65 -0
  376. data/sample/testgtk/fontselection.rb +56 -0
  377. data/sample/testgtk/labels.rb +74 -0
  378. data/sample/testgtk/layout.rb +108 -0
  379. data/sample/testgtk/marble.xpm +408 -0
  380. data/sample/testgtk/menu.rb +79 -0
  381. data/sample/testgtk/notebook.rb +280 -0
  382. data/sample/testgtk/pixmap.rb +58 -0
  383. data/sample/testgtk/progressbar.rb +173 -0
  384. data/sample/testgtk/radiobutton.rb +61 -0
  385. data/sample/testgtk/range.rb +65 -0
  386. data/sample/testgtk/reparent.rb +91 -0
  387. data/sample/testgtk/sample.rb +80 -0
  388. data/sample/testgtk/savedposition.rb +87 -0
  389. data/sample/testgtk/scrolledwindow.rb +67 -0
  390. data/sample/testgtk/shapedwindow.rb +99 -0
  391. data/sample/testgtk/spinbutton.rb +181 -0
  392. data/sample/testgtk/statusbar.rb +89 -0
  393. data/sample/testgtk/test.xpm +92 -0
  394. data/sample/testgtk/testgtk.rb +176 -0
  395. data/sample/testgtk/testgtkrc +146 -0
  396. data/sample/testgtk/testgtkrc2 +21 -0
  397. data/sample/testgtk/togglebutton.rb +53 -0
  398. data/sample/testgtk/toolbar.rb +82 -0
  399. data/sample/testgtk/tooltips.rb +41 -0
  400. data/sample/testgtk/wmhints.rb +40 -0
  401. data/test/gtk-test-utils.rb +15 -0
  402. data/test/run-test.rb +32 -0
  403. data/test/test_gc.rb +25 -0
  404. data/test/test_gdk.rb +18 -0
  405. data/test/test_gdk_color.rb +10 -0
  406. data/test/test_gdk_display.rb +37 -0
  407. data/test/test_gdk_event.rb +11 -0
  408. data/test/test_gdk_gc.rb +7 -0
  409. data/test/test_gdk_keymap.rb +8 -0
  410. data/test/test_gdk_pango.rb +9 -0
  411. data/test/test_gdk_selection_data.rb +17 -0
  412. data/test/test_gdk_window.rb +29 -0
  413. data/test/test_gdk_window_attribute.rb +9 -0
  414. data/test/test_gtk_about_dialog.rb +14 -0
  415. data/test/test_gtk_buildable.rb +66 -0
  416. data/test/test_gtk_builder.rb +188 -0
  417. data/test/test_gtk_entry.rb +18 -0
  418. data/test/test_gtk_icon_theme.rb +30 -0
  419. data/test/test_gtk_image.rb +8 -0
  420. data/test/test_gtk_list_store.rb +65 -0
  421. data/test/test_gtk_menu_item.rb +13 -0
  422. data/test/test_gtk_rc_style.rb +14 -0
  423. data/test/test_gtk_tree_path.rb +20 -0
  424. data/test/test_gtk_unix_print.rb +14 -0
  425. data/test/test_gtk_widget.rb +32 -0
  426. data/vendor/local/bin/gtk-builder-convert +799 -0
  427. data/vendor/local/bin/gtk-demo.exe +0 -0
  428. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  429. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  430. data/vendor/local/bin/gtk-update-icon-cache.exe.manifest +17 -0
  431. data/vendor/local/bin/libgailutil-18.dll +0 -0
  432. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  433. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  434. data/vendor/local/etc/gtk-2.0/gtk.immodules +4 -0
  435. data/vendor/local/etc/gtk-2.0/gtkrc +1 -0
  436. data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
  437. data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
  438. data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
  439. data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
  440. data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
  441. data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
  442. data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
  443. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
  444. data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
  445. data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
  446. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
  447. data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
  448. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
  449. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
  450. data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
  451. data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
  452. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
  453. data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
  454. data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
  455. data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
  456. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
  457. data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
  458. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
  459. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
  460. data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
  461. data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
  462. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
  463. data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
  464. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
  465. data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
  466. data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
  467. data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
  468. data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
  469. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
  470. data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
  471. data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
  472. data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
  473. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
  474. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
  475. data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
  476. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
  477. data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
  478. data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
  479. data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
  480. data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
  481. data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
  482. data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
  483. data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
  484. data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
  485. data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
  486. data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
  487. data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
  488. data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
  489. data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
  490. data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
  491. data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
  492. data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
  493. data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
  494. data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
  495. data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
  496. data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
  497. data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
  498. data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
  499. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
  500. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
  501. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
  502. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
  503. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
  504. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
  505. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
  506. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
  507. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
  508. data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
  509. data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
  510. data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
  511. data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
  512. data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
  513. data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
  514. data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
  515. data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
  516. data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
  517. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
  518. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
  519. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
  520. data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
  521. data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
  522. data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
  523. data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
  524. data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
  525. data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
  526. data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
  527. data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
  528. data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
  529. data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
  530. data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
  531. data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
  532. data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
  533. data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
  534. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
  535. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
  536. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
  537. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
  538. data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
  539. data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
  540. data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
  541. data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
  542. data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
  543. data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
  544. data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
  545. data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
  546. data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
  547. data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
  548. data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
  549. data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
  550. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
  551. data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
  552. data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
  553. data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
  554. data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
  555. data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
  556. data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
  557. data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
  558. data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
  559. data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
  560. data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
  561. data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
  562. data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
  563. data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
  564. data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
  565. data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
  566. data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
  567. data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
  568. data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
  569. data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
  570. data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
  571. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
  572. data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
  573. data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
  574. data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
  575. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
  576. data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
  577. data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
  578. data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
  579. data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
  580. data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
  581. data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
  582. data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
  583. data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
  584. data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
  585. data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
  586. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
  587. data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
  588. data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
  589. data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
  590. data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
  591. data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
  592. data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
  593. data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
  594. data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
  595. data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
  596. data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
  597. data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
  598. data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
  599. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
  600. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
  601. data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
  602. data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
  603. data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
  604. data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
  605. data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
  606. data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
  607. data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
  608. data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
  609. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
  610. data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
  611. data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
  612. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
  613. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
  614. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
  615. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
  616. data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
  617. data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
  618. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
  619. data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
  620. data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
  621. data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
  622. data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
  623. data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
  624. data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
  625. data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
  626. data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
  627. data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
  628. data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
  629. data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +149 -0
  630. data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
  631. data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
  632. data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
  633. data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
  634. data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
  635. data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
  636. data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
  637. data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
  638. data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
  639. data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
  640. data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
  641. data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
  642. data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
  643. data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
  644. data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
  645. data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
  646. data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
  647. data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
  648. data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
  649. data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
  650. data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
  651. data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
  652. data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
  653. data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
  654. data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
  655. data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
  656. data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
  657. data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
  658. data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
  659. data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
  660. data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
  661. data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
  662. data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
  663. data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
  664. data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
  665. data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
  666. data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
  667. data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
  668. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
  669. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
  670. data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
  671. data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
  672. data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
  673. data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
  674. data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
  675. data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
  676. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
  677. data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
  678. data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
  679. data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
  680. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
  681. data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
  682. data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
  683. data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
  684. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
  685. data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
  686. data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
  687. data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
  688. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
  689. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
  690. data/vendor/local/lib/gailutil.lib +0 -0
  691. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  692. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  693. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  694. data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +35 -0
  695. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  696. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  697. data/vendor/local/lib/libgailutil.dll.a +0 -0
  698. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  699. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  700. data/vendor/local/lib/pkgconfig/gail.pc +11 -0
  701. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
  702. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
  703. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
  704. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
  705. data/vendor/local/manifest/gtk+-dev_2.24.10-1_win32.mft +947 -0
  706. data/vendor/local/manifest/gtk+_2.24.10-1_win32.mft +225 -0
  707. data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
  708. data/vendor/local/share/doc/gtk+-2.24.10/COPYING +482 -0
  709. data/vendor/local/share/doc/gtk+-dev-2.24.10/COPYING +482 -0
  710. data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
  711. data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
  712. data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
  713. data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
  714. data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
  715. data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
  716. data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
  717. data/vendor/local/share/gtk-2.0/demo/changedisplay.c +643 -0
  718. data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
  719. data/vendor/local/share/gtk-2.0/demo/colorsel.c +142 -0
  720. data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
  721. data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
  722. data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
  723. data/vendor/local/share/gtk-2.0/demo/drawingarea.c +308 -0
  724. data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
  725. data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
  726. data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
  727. data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
  728. data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
  729. data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
  730. data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
  731. data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
  732. data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
  733. data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
  734. data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
  735. data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
  736. data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
  737. data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
  738. data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
  739. data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
  740. data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
  741. data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
  742. data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
  743. data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
  744. data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
  745. data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
  746. data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
  747. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +579 -0
  748. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +500 -0
  749. data/vendor/local/share/gtk-2.0/demo/panes.c +194 -0
  750. data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
  751. data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
  752. data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
  753. data/vendor/local/share/gtk-2.0/demo/rotated_text.c +237 -0
  754. data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
  755. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
  756. data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
  757. data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
  758. data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
  759. data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
  760. data/vendor/local/share/gtk-2.0/demo/toolpalette.c +795 -0
  761. data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
  762. data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
  763. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +449 -0
  764. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +275 -0
  765. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +30 -0
  766. data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
  767. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
  768. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
  769. data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
  770. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
  771. data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
  772. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +266 -0
  773. data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
  774. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +1283 -0
  775. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +262 -0
  776. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +1526 -0
  777. data/vendor/local/share/gtk-doc/html/gdk/X_cursor.png +0 -0
  778. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +74 -0
  779. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +123 -0
  780. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +124 -0
  781. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +124 -0
  782. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +42 -0
  783. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +109 -0
  784. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +515 -0
  785. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +51 -0
  786. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +224 -0
  787. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +123 -0
  788. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +128 -0
  789. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +115 -0
  790. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +1012 -0
  791. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +3674 -0
  792. data/vendor/local/share/gtk-doc/html/gdk/arrow.png +0 -0
  793. data/vendor/local/share/gtk-doc/html/gdk/based_arrow_down.png +0 -0
  794. data/vendor/local/share/gtk-doc/html/gdk/based_arrow_up.png +0 -0
  795. data/vendor/local/share/gtk-doc/html/gdk/boat.png +0 -0
  796. data/vendor/local/share/gtk-doc/html/gdk/bogosity.png +0 -0
  797. data/vendor/local/share/gtk-doc/html/gdk/bottom_left_corner.png +0 -0
  798. data/vendor/local/share/gtk-doc/html/gdk/bottom_right_corner.png +0 -0
  799. data/vendor/local/share/gtk-doc/html/gdk/bottom_side.png +0 -0
  800. data/vendor/local/share/gtk-doc/html/gdk/bottom_tee.png +0 -0
  801. data/vendor/local/share/gtk-doc/html/gdk/box_spiral.png +0 -0
  802. data/vendor/local/share/gtk-doc/html/gdk/center_ptr.png +0 -0
  803. data/vendor/local/share/gtk-doc/html/gdk/circle.png +0 -0
  804. data/vendor/local/share/gtk-doc/html/gdk/clock.png +0 -0
  805. data/vendor/local/share/gtk-doc/html/gdk/coffee_mug.png +0 -0
  806. data/vendor/local/share/gtk-doc/html/gdk/cross.png +0 -0
  807. data/vendor/local/share/gtk-doc/html/gdk/cross_reverse.png +0 -0
  808. data/vendor/local/share/gtk-doc/html/gdk/crosshair.png +0 -0
  809. data/vendor/local/share/gtk-doc/html/gdk/diamond_cross.png +0 -0
  810. data/vendor/local/share/gtk-doc/html/gdk/dot.png +0 -0
  811. data/vendor/local/share/gtk-doc/html/gdk/dotbox.png +0 -0
  812. data/vendor/local/share/gtk-doc/html/gdk/double_arrow.png +0 -0
  813. data/vendor/local/share/gtk-doc/html/gdk/draft_large.png +0 -0
  814. data/vendor/local/share/gtk-doc/html/gdk/draft_small.png +0 -0
  815. data/vendor/local/share/gtk-doc/html/gdk/draped_box.png +0 -0
  816. data/vendor/local/share/gtk-doc/html/gdk/exchange.png +0 -0
  817. data/vendor/local/share/gtk-doc/html/gdk/fleur.png +0 -0
  818. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +319 -0
  819. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +611 -0
  820. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +415 -0
  821. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +950 -0
  822. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +1137 -0
  823. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +911 -0
  824. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +2088 -0
  825. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +1690 -0
  826. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +1264 -0
  827. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +1449 -0
  828. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +1182 -0
  829. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +902 -0
  830. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +1653 -0
  831. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +824 -0
  832. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +960 -0
  833. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +297 -0
  834. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +1016 -0
  835. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +861 -0
  836. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +648 -0
  837. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +968 -0
  838. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +1005 -0
  839. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +657 -0
  840. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +210 -0
  841. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +933 -0
  842. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +827 -0
  843. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +6581 -0
  844. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +2486 -0
  845. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +1331 -0
  846. data/vendor/local/share/gtk-doc/html/gdk/gobbler.png +0 -0
  847. data/vendor/local/share/gtk-doc/html/gdk/gumby.png +0 -0
  848. data/vendor/local/share/gtk-doc/html/gdk/hand1.png +0 -0
  849. data/vendor/local/share/gtk-doc/html/gdk/hand2.png +0 -0
  850. data/vendor/local/share/gtk-doc/html/gdk/heart.png +0 -0
  851. data/vendor/local/share/gtk-doc/html/gdk/home.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gdk/icon.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gdk/index.html +143 -0
  854. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1446 -0
  855. data/vendor/local/share/gtk-doc/html/gdk/iron_cross.png +0 -0
  856. data/vendor/local/share/gtk-doc/html/gdk/left.png +0 -0
  857. data/vendor/local/share/gtk-doc/html/gdk/left_ptr.png +0 -0
  858. data/vendor/local/share/gtk-doc/html/gdk/left_side.png +0 -0
  859. data/vendor/local/share/gtk-doc/html/gdk/left_tee.png +0 -0
  860. data/vendor/local/share/gtk-doc/html/gdk/leftbutton.png +0 -0
  861. data/vendor/local/share/gtk-doc/html/gdk/ll_angle.png +0 -0
  862. data/vendor/local/share/gtk-doc/html/gdk/lr_angle.png +0 -0
  863. data/vendor/local/share/gtk-doc/html/gdk/man.png +0 -0
  864. data/vendor/local/share/gtk-doc/html/gdk/middlebutton.png +0 -0
  865. data/vendor/local/share/gtk-doc/html/gdk/mouse.png +0 -0
  866. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +201 -0
  867. data/vendor/local/share/gtk-doc/html/gdk/pencil.png +0 -0
  868. data/vendor/local/share/gtk-doc/html/gdk/pirate.png +0 -0
  869. data/vendor/local/share/gtk-doc/html/gdk/plus.png +0 -0
  870. data/vendor/local/share/gtk-doc/html/gdk/question_arrow.png +0 -0
  871. data/vendor/local/share/gtk-doc/html/gdk/reference.html +131 -0
  872. data/vendor/local/share/gtk-doc/html/gdk/right.png +0 -0
  873. data/vendor/local/share/gtk-doc/html/gdk/right_ptr.png +0 -0
  874. data/vendor/local/share/gtk-doc/html/gdk/right_side.png +0 -0
  875. data/vendor/local/share/gtk-doc/html/gdk/right_tee.png +0 -0
  876. data/vendor/local/share/gtk-doc/html/gdk/rightbutton.png +0 -0
  877. data/vendor/local/share/gtk-doc/html/gdk/rotated-text.png +0 -0
  878. data/vendor/local/share/gtk-doc/html/gdk/rtl_logo.png +0 -0
  879. data/vendor/local/share/gtk-doc/html/gdk/sailboat.png +0 -0
  880. data/vendor/local/share/gtk-doc/html/gdk/sb_down_arrow.png +0 -0
  881. data/vendor/local/share/gtk-doc/html/gdk/sb_h_double_arrow.png +0 -0
  882. data/vendor/local/share/gtk-doc/html/gdk/sb_left_arrow.png +0 -0
  883. data/vendor/local/share/gtk-doc/html/gdk/sb_right_arrow.png +0 -0
  884. data/vendor/local/share/gtk-doc/html/gdk/sb_up_arrow.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/gdk/sb_v_double_arrow.png +0 -0
  886. data/vendor/local/share/gtk-doc/html/gdk/shuttle.png +0 -0
  887. data/vendor/local/share/gtk-doc/html/gdk/sizing.png +0 -0
  888. data/vendor/local/share/gtk-doc/html/gdk/spider.png +0 -0
  889. data/vendor/local/share/gtk-doc/html/gdk/spraycan.png +0 -0
  890. data/vendor/local/share/gtk-doc/html/gdk/star.png +0 -0
  891. data/vendor/local/share/gtk-doc/html/gdk/style.css +266 -0
  892. data/vendor/local/share/gtk-doc/html/gdk/target.png +0 -0
  893. data/vendor/local/share/gtk-doc/html/gdk/tcross.png +0 -0
  894. data/vendor/local/share/gtk-doc/html/gdk/top_left_arrow.png +0 -0
  895. data/vendor/local/share/gtk-doc/html/gdk/top_left_corner.png +0 -0
  896. data/vendor/local/share/gtk-doc/html/gdk/top_right_corner.png +0 -0
  897. data/vendor/local/share/gtk-doc/html/gdk/top_side.png +0 -0
  898. data/vendor/local/share/gtk-doc/html/gdk/top_tee.png +0 -0
  899. data/vendor/local/share/gtk-doc/html/gdk/trek.png +0 -0
  900. data/vendor/local/share/gtk-doc/html/gdk/ul_angle.png +0 -0
  901. data/vendor/local/share/gtk-doc/html/gdk/umbrella.png +0 -0
  902. data/vendor/local/share/gtk-doc/html/gdk/up.png +0 -0
  903. data/vendor/local/share/gtk-doc/html/gdk/ur_angle.png +0 -0
  904. data/vendor/local/share/gtk-doc/html/gdk/watch.png +0 -0
  905. data/vendor/local/share/gtk-doc/html/gdk/xterm.png +0 -0
  906. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +77 -0
  907. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +53 -0
  908. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +38 -0
  909. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +53 -0
  910. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +83 -0
  911. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +56 -0
  912. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +1423 -0
  913. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +340 -0
  914. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +147 -0
  915. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +1582 -0
  916. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +1222 -0
  917. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +856 -0
  918. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +807 -0
  919. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +390 -0
  920. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +205 -0
  921. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +238 -0
  922. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +1134 -0
  923. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +131 -0
  924. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +773 -0
  925. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +638 -0
  926. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +1121 -0
  927. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +1110 -0
  928. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +555 -0
  929. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +3832 -0
  930. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +2563 -0
  931. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +1059 -0
  932. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +270 -0
  933. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +520 -0
  934. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +1132 -0
  935. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +254 -0
  936. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +227 -0
  937. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +206 -0
  938. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +199 -0
  939. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +161 -0
  940. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +157 -0
  941. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +582 -0
  942. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +351 -0
  943. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +433 -0
  944. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +214 -0
  945. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +436 -0
  946. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +786 -0
  947. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +231 -0
  948. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +507 -0
  949. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +1555 -0
  950. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +298 -0
  951. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
  952. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +1510 -0
  953. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +423 -0
  954. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +1323 -0
  955. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +251 -0
  956. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +662 -0
  957. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +3428 -0
  958. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +590 -0
  959. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +1128 -0
  960. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +292 -0
  961. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +739 -0
  962. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +3186 -0
  963. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +498 -0
  964. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +321 -0
  965. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +170 -0
  966. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +611 -0
  967. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +326 -0
  968. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +571 -0
  969. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +526 -0
  970. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +417 -0
  971. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +444 -0
  972. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +127 -0
  973. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +132 -0
  974. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +230 -0
  975. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +108 -0
  976. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +129 -0
  977. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +462 -0
  978. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +160 -0
  979. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +125 -0
  980. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +130 -0
  981. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +478 -0
  982. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +947 -0
  983. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +148 -0
  984. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +175 -0
  985. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +1410 -0
  986. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +2689 -0
  987. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +1501 -0
  988. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +456 -0
  989. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +714 -0
  990. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +200 -0
  991. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +197 -0
  992. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +235 -0
  993. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +1172 -0
  994. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +2086 -0
  995. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +577 -0
  996. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +390 -0
  997. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +972 -0
  998. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +438 -0
  999. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +1056 -0
  1000. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +1353 -0
  1001. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +412 -0
  1002. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +882 -0
  1003. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +671 -0
  1004. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +431 -0
  1005. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +786 -0
  1006. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +313 -0
  1007. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +2682 -0
  1008. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +1217 -0
  1009. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +186 -0
  1010. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +501 -0
  1011. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +333 -0
  1012. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +937 -0
  1013. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +242 -0
  1014. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +760 -0
  1015. data/vendor/local/share/gtk-doc/html/gtk/GtkPaperSize.html +820 -0
  1016. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +239 -0
  1017. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +357 -0
  1018. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +652 -0
  1019. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +513 -0
  1020. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +527 -0
  1021. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +2677 -0
  1022. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +853 -0
  1023. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +931 -0
  1024. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +555 -0
  1025. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +852 -0
  1026. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +367 -0
  1027. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +525 -0
  1028. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +457 -0
  1029. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +327 -0
  1030. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +1389 -0
  1031. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +267 -0
  1032. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +1376 -0
  1033. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +228 -0
  1034. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +259 -0
  1035. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +155 -0
  1036. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +620 -0
  1037. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +1564 -0
  1038. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +357 -0
  1039. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +537 -0
  1040. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +571 -0
  1041. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +187 -0
  1042. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +738 -0
  1043. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +90 -0
  1044. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +110 -0
  1045. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +211 -0
  1046. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +1215 -0
  1047. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +440 -0
  1048. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +388 -0
  1049. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +1260 -0
  1050. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +203 -0
  1051. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +1716 -0
  1052. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +491 -0
  1053. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +4192 -0
  1054. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +759 -0
  1055. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +135 -0
  1056. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +668 -0
  1057. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +3605 -0
  1058. data/vendor/local/share/gtk-doc/html/gtk/GtkTextIter.html +2871 -0
  1059. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +325 -0
  1060. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +1157 -0
  1061. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +381 -0
  1062. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +3002 -0
  1063. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +452 -0
  1064. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +315 -0
  1065. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +508 -0
  1066. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +279 -0
  1067. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +667 -0
  1068. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +1147 -0
  1069. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +705 -0
  1070. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +1007 -0
  1071. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +394 -0
  1072. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +1851 -0
  1073. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +414 -0
  1074. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +450 -0
  1075. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +767 -0
  1076. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +266 -0
  1077. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +2402 -0
  1078. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +654 -0
  1079. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +551 -0
  1080. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +796 -0
  1081. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +458 -0
  1082. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +1028 -0
  1083. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +4656 -0
  1084. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +1845 -0
  1085. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +1290 -0
  1086. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +133 -0
  1087. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +209 -0
  1088. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +108 -0
  1089. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +129 -0
  1090. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +160 -0
  1091. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +123 -0
  1092. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +111 -0
  1093. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +398 -0
  1094. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +112 -0
  1095. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +10064 -0
  1096. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +4007 -0
  1097. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +175 -0
  1098. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +74 -0
  1099. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +95 -0
  1100. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +68 -0
  1101. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +53 -0
  1102. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +41 -0
  1103. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +38 -0
  1104. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +59 -0
  1105. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +50 -0
  1106. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +41 -0
  1107. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +71 -0
  1108. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +47 -0
  1109. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +266 -0
  1110. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +53 -0
  1111. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +556 -0
  1112. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +104 -0
  1113. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +57 -0
  1114. data/vendor/local/share/gtk-doc/html/gtk/aboutdialog.png +0 -0
  1115. data/vendor/local/share/gtk-doc/html/gtk/accel-label.png +0 -0
  1116. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +95 -0
  1117. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +2095 -0
  1118. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +790 -0
  1119. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +786 -0
  1120. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +602 -0
  1121. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +518 -0
  1122. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +291 -0
  1123. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +465 -0
  1124. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +181 -0
  1125. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
  1126. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +1858 -0
  1127. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +1090 -0
  1128. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +386 -0
  1129. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +3401 -0
  1130. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +22926 -0
  1131. data/vendor/local/share/gtk-doc/html/gtk/application-exit.png +0 -0
  1132. data/vendor/local/share/gtk-doc/html/gtk/assistant.png +0 -0
  1133. data/vendor/local/share/gtk-doc/html/gtk/button.png +0 -0
  1134. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +246 -0
  1135. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +154 -0
  1136. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +496 -0
  1137. data/vendor/local/share/gtk-doc/html/gtk/check-button.png +0 -0
  1138. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +84 -0
  1139. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +89 -0
  1140. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +41 -0
  1141. data/vendor/local/share/gtk-doc/html/gtk/color-button.png +0 -0
  1142. data/vendor/local/share/gtk-doc/html/gtk/colorsel.png +0 -0
  1143. data/vendor/local/share/gtk-doc/html/gtk/combo-box-entry.png +0 -0
  1144. data/vendor/local/share/gtk-doc/html/gtk/combo-box.png +0 -0
  1145. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +50 -0
  1146. data/vendor/local/share/gtk-doc/html/gtk/dialog-error.png +0 -0
  1147. data/vendor/local/share/gtk-doc/html/gtk/dialog-information.png +0 -0
  1148. data/vendor/local/share/gtk-doc/html/gtk/dialog-password.png +0 -0
  1149. data/vendor/local/share/gtk-doc/html/gtk/dialog-question.png +0 -0
  1150. data/vendor/local/share/gtk-doc/html/gtk/dialog-warning.png +0 -0
  1151. data/vendor/local/share/gtk-doc/html/gtk/document-new.png +0 -0
  1152. data/vendor/local/share/gtk-doc/html/gtk/document-open.png +0 -0
  1153. data/vendor/local/share/gtk-doc/html/gtk/document-print-preview.png +0 -0
  1154. data/vendor/local/share/gtk-doc/html/gtk/document-print.png +0 -0
  1155. data/vendor/local/share/gtk-doc/html/gtk/document-properties.png +0 -0
  1156. data/vendor/local/share/gtk-doc/html/gtk/document-revert-ltr.png +0 -0
  1157. data/vendor/local/share/gtk-doc/html/gtk/document-revert-rtl.png +0 -0
  1158. data/vendor/local/share/gtk-doc/html/gtk/document-save-as.png +0 -0
  1159. data/vendor/local/share/gtk-doc/html/gtk/document-save.png +0 -0
  1160. data/vendor/local/share/gtk-doc/html/gtk/drive-harddisk.png +0 -0
  1161. data/vendor/local/share/gtk-doc/html/gtk/edit-clear.png +0 -0
  1162. data/vendor/local/share/gtk-doc/html/gtk/edit-copy.png +0 -0
  1163. data/vendor/local/share/gtk-doc/html/gtk/edit-cut.png +0 -0
  1164. data/vendor/local/share/gtk-doc/html/gtk/edit-delete.png +0 -0
  1165. data/vendor/local/share/gtk-doc/html/gtk/edit-find-replace.png +0 -0
  1166. data/vendor/local/share/gtk-doc/html/gtk/edit-find.png +0 -0
  1167. data/vendor/local/share/gtk-doc/html/gtk/edit-paste.png +0 -0
  1168. data/vendor/local/share/gtk-doc/html/gtk/edit-redo-ltr.png +0 -0
  1169. data/vendor/local/share/gtk-doc/html/gtk/edit-redo-rtl.png +0 -0
  1170. data/vendor/local/share/gtk-doc/html/gtk/edit-select-all.png +0 -0
  1171. data/vendor/local/share/gtk-doc/html/gtk/edit-undo-ltr.png +0 -0
  1172. data/vendor/local/share/gtk-doc/html/gtk/edit-undo-rtl.png +0 -0
  1173. data/vendor/local/share/gtk-doc/html/gtk/entry.png +0 -0
  1174. data/vendor/local/share/gtk-doc/html/gtk/figure-hierarchical-drawing.png +0 -0
  1175. data/vendor/local/share/gtk-doc/html/gtk/figure-windowed-label.png +0 -0
  1176. data/vendor/local/share/gtk-doc/html/gtk/file-button.png +0 -0
  1177. data/vendor/local/share/gtk-doc/html/gtk/filechooser.png +0 -0
  1178. data/vendor/local/share/gtk-doc/html/gtk/folder.png +0 -0
  1179. data/vendor/local/share/gtk-doc/html/gtk/font-button.png +0 -0
  1180. data/vendor/local/share/gtk-doc/html/gtk/fontsel.png +0 -0
  1181. data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-ltr.png +0 -0
  1182. data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-rtl.png +0 -0
  1183. data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-ltr.png +0 -0
  1184. data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-rtl.png +0 -0
  1185. data/vendor/local/share/gtk-doc/html/gtk/format-justify-center.png +0 -0
  1186. data/vendor/local/share/gtk-doc/html/gtk/format-justify-fill.png +0 -0
  1187. data/vendor/local/share/gtk-doc/html/gtk/format-justify-left.png +0 -0
  1188. data/vendor/local/share/gtk-doc/html/gtk/format-justify-right.png +0 -0
  1189. data/vendor/local/share/gtk-doc/html/gtk/format-text-bold.png +0 -0
  1190. data/vendor/local/share/gtk-doc/html/gtk/format-text-italic.png +0 -0
  1191. data/vendor/local/share/gtk-doc/html/gtk/format-text-strikethrough.png +0 -0
  1192. data/vendor/local/share/gtk-doc/html/gtk/format-text-underline.png +0 -0
  1193. data/vendor/local/share/gtk-doc/html/gtk/frame.png +0 -0
  1194. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +312 -0
  1195. data/vendor/local/share/gtk-doc/html/gtk/go-bottom.png +0 -0
  1196. data/vendor/local/share/gtk-doc/html/gtk/go-down.png +0 -0
  1197. data/vendor/local/share/gtk-doc/html/gtk/go-first-ltr.png +0 -0
  1198. data/vendor/local/share/gtk-doc/html/gtk/go-first-rtl.png +0 -0
  1199. data/vendor/local/share/gtk-doc/html/gtk/go-home.png +0 -0
  1200. data/vendor/local/share/gtk-doc/html/gtk/go-jump-ltr.png +0 -0
  1201. data/vendor/local/share/gtk-doc/html/gtk/go-jump-rtl.png +0 -0
  1202. data/vendor/local/share/gtk-doc/html/gtk/go-last-ltr.png +0 -0
  1203. data/vendor/local/share/gtk-doc/html/gtk/go-last-rtl.png +0 -0
  1204. data/vendor/local/share/gtk-doc/html/gtk/go-next-ltr.png +0 -0
  1205. data/vendor/local/share/gtk-doc/html/gtk/go-next-rtl.png +0 -0
  1206. data/vendor/local/share/gtk-doc/html/gtk/go-previous-ltr.png +0 -0
  1207. data/vendor/local/share/gtk-doc/html/gtk/go-previous-rtl.png +0 -0
  1208. data/vendor/local/share/gtk-doc/html/gtk/go-top.png +0 -0
  1209. data/vendor/local/share/gtk-doc/html/gtk/go-up.png +0 -0
  1210. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +522 -0
  1211. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +857 -0
  1212. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +1525 -0
  1213. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +1419 -0
  1214. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +285 -0
  1215. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +346 -0
  1216. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +1760 -0
  1217. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +123 -0
  1218. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +439 -0
  1219. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +2571 -0
  1220. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +979 -0
  1221. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +169 -0
  1222. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +1726 -0
  1223. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +1601 -0
  1224. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +1536 -0
  1225. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +1357 -0
  1226. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +1565 -0
  1227. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +589 -0
  1228. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +1497 -0
  1229. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +1574 -0
  1230. data/vendor/local/share/gtk-doc/html/gtk/gtk-apply.png +0 -0
  1231. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +86 -0
  1232. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +441 -0
  1233. data/vendor/local/share/gtk-doc/html/gtk/gtk-cancel.png +0 -0
  1234. data/vendor/local/share/gtk-doc/html/gtk/gtk-caps-lock-warning.png +0 -0
  1235. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +568 -0
  1236. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +1175 -0
  1237. data/vendor/local/share/gtk-doc/html/gtk/gtk-color-picker.png +0 -0
  1238. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +111 -0
  1239. data/vendor/local/share/gtk-doc/html/gtk/gtk-connect.png +0 -0
  1240. data/vendor/local/share/gtk-doc/html/gtk/gtk-convert.png +0 -0
  1241. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +60 -0
  1242. data/vendor/local/share/gtk-doc/html/gtk/gtk-disconnect.png +0 -0
  1243. data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd-multiple.png +0 -0
  1244. data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd.png +0 -0
  1245. data/vendor/local/share/gtk-doc/html/gtk/gtk-edit.png +0 -0
  1246. data/vendor/local/share/gtk-doc/html/gtk/gtk-font.png +0 -0
  1247. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +493 -0
  1248. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +509 -0
  1249. data/vendor/local/share/gtk-doc/html/gtk/gtk-index.png +0 -0
  1250. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +85 -0
  1251. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +160 -0
  1252. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +91 -0
  1253. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +102 -0
  1254. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +118 -0
  1255. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +107 -0
  1256. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +256 -0
  1257. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +80 -0
  1258. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +264 -0
  1259. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +155 -0
  1260. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +310 -0
  1261. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +163 -0
  1262. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +293 -0
  1263. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +45 -0
  1264. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +124 -0
  1265. data/vendor/local/share/gtk-doc/html/gtk/gtk-no.png +0 -0
  1266. data/vendor/local/share/gtk-doc/html/gtk/gtk-ok.png +0 -0
  1267. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-landscape.png +0 -0
  1268. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-portrait.png +0 -0
  1269. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-landscape.png +0 -0
  1270. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-portrait.png +0 -0
  1271. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +53 -0
  1272. data/vendor/local/share/gtk-doc/html/gtk/gtk-page-setup.png +0 -0
  1273. data/vendor/local/share/gtk-doc/html/gtk/gtk-preferences.png +0 -0
  1274. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +68 -0
  1275. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +1422 -0
  1276. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +143 -0
  1277. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +344 -0
  1278. data/vendor/local/share/gtk-doc/html/gtk/gtk-select-color.png +0 -0
  1279. data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-ltr.png +0 -0
  1280. data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-rtl.png +0 -0
  1281. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +106 -0
  1282. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +87 -0
  1283. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +134 -0
  1284. data/vendor/local/share/gtk-doc/html/gtk/gtk-yes.png +0 -0
  1285. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +6465 -0
  1286. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +159 -0
  1287. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +95 -0
  1288. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +40 -0
  1289. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +41 -0
  1290. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +55 -0
  1291. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +51 -0
  1292. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +668 -0
  1293. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +206 -0
  1294. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +97 -0
  1295. data/vendor/local/share/gtk-doc/html/gtk/help-about.png +0 -0
  1296. data/vendor/local/share/gtk-doc/html/gtk/help-contents.png +0 -0
  1297. data/vendor/local/share/gtk-doc/html/gtk/home.png +0 -0
  1298. data/vendor/local/share/gtk-doc/html/gtk/icon-view.png +0 -0
  1299. data/vendor/local/share/gtk-doc/html/gtk/image-missing.png +0 -0
  1300. data/vendor/local/share/gtk-doc/html/gtk/image.png +0 -0
  1301. data/vendor/local/share/gtk-doc/html/gtk/index.html +875 -0
  1302. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +7988 -0
  1303. data/vendor/local/share/gtk-doc/html/gtk/label.png +0 -0
  1304. data/vendor/local/share/gtk-doc/html/gtk/layout-btlr.png +0 -0
  1305. data/vendor/local/share/gtk-doc/html/gtk/layout-btrl.png +0 -0
  1306. data/vendor/local/share/gtk-doc/html/gtk/layout-lrbt.png +0 -0
  1307. data/vendor/local/share/gtk-doc/html/gtk/layout-lrtb.png +0 -0
  1308. data/vendor/local/share/gtk-doc/html/gtk/layout-rlbt.png +0 -0
  1309. data/vendor/local/share/gtk-doc/html/gtk/layout-rltb.png +0 -0
  1310. data/vendor/local/share/gtk-doc/html/gtk/layout-tblr.png +0 -0
  1311. data/vendor/local/share/gtk-doc/html/gtk/layout-tbrl.png +0 -0
  1312. data/vendor/local/share/gtk-doc/html/gtk/left.png +0 -0
  1313. data/vendor/local/share/gtk-doc/html/gtk/link-button.png +0 -0
  1314. data/vendor/local/share/gtk-doc/html/gtk/list-add.png +0 -0
  1315. data/vendor/local/share/gtk-doc/html/gtk/list-and-tree.png +0 -0
  1316. data/vendor/local/share/gtk-doc/html/gtk/list-remove.png +0 -0
  1317. data/vendor/local/share/gtk-doc/html/gtk/media-floppy.png +0 -0
  1318. data/vendor/local/share/gtk-doc/html/gtk/media-optical.png +0 -0
  1319. data/vendor/local/share/gtk-doc/html/gtk/media-playback-pause.png +0 -0
  1320. data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-ltr.png +0 -0
  1321. data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-rtl.png +0 -0
  1322. data/vendor/local/share/gtk-doc/html/gtk/media-playback-stop.png +0 -0
  1323. data/vendor/local/share/gtk-doc/html/gtk/media-record.png +0 -0
  1324. data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-ltr.png +0 -0
  1325. data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-rtl.png +0 -0
  1326. data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-ltr.png +0 -0
  1327. data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-rtl.png +0 -0
  1328. data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-ltr.png +0 -0
  1329. data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-rtl.png +0 -0
  1330. data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-ltr.png +0 -0
  1331. data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-rtl.png +0 -0
  1332. data/vendor/local/share/gtk-doc/html/gtk/menubar.png +0 -0
  1333. data/vendor/local/share/gtk-doc/html/gtk/messagedialog.png +0 -0
  1334. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +94 -0
  1335. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +351 -0
  1336. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +104 -0
  1337. data/vendor/local/share/gtk-doc/html/gtk/multiline-text.png +0 -0
  1338. data/vendor/local/share/gtk-doc/html/gtk/network-idle.png +0 -0
  1339. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +71 -0
  1340. data/vendor/local/share/gtk-doc/html/gtk/notebook.png +0 -0
  1341. data/vendor/local/share/gtk-doc/html/gtk/pagesetupdialog.png +0 -0
  1342. data/vendor/local/share/gtk-doc/html/gtk/panes.png +0 -0
  1343. data/vendor/local/share/gtk-doc/html/gtk/printdialog.png +0 -0
  1344. data/vendor/local/share/gtk-doc/html/gtk/printer-error.png +0 -0
  1345. data/vendor/local/share/gtk-doc/html/gtk/printer-info.png +0 -0
  1346. data/vendor/local/share/gtk-doc/html/gtk/printer-paused.png +0 -0
  1347. data/vendor/local/share/gtk-doc/html/gtk/printer-warning.png +0 -0
  1348. data/vendor/local/share/gtk-doc/html/gtk/process-stop.png +0 -0
  1349. data/vendor/local/share/gtk-doc/html/gtk/progressbar.png +0 -0
  1350. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +44 -0
  1351. data/vendor/local/share/gtk-doc/html/gtk/radio-group.png +0 -0
  1352. data/vendor/local/share/gtk-doc/html/gtk/recentchooserdialog.png +0 -0
  1353. data/vendor/local/share/gtk-doc/html/gtk/right.png +0 -0
  1354. data/vendor/local/share/gtk-doc/html/gtk/scales.png +0 -0
  1355. data/vendor/local/share/gtk-doc/html/gtk/scrolledwindow.png +0 -0
  1356. data/vendor/local/share/gtk-doc/html/gtk/separator.png +0 -0
  1357. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +77 -0
  1358. data/vendor/local/share/gtk-doc/html/gtk/spinbutton.png +0 -0
  1359. data/vendor/local/share/gtk-doc/html/gtk/spinner.png +0 -0
  1360. data/vendor/local/share/gtk-doc/html/gtk/statusbar.png +0 -0
  1361. data/vendor/local/share/gtk-doc/html/gtk/style.css +266 -0
  1362. data/vendor/local/share/gtk-doc/html/gtk/system-run.png +0 -0
  1363. data/vendor/local/share/gtk-doc/html/gtk/text-x-generic.png +0 -0
  1364. data/vendor/local/share/gtk-doc/html/gtk/toggle-button.png +0 -0
  1365. data/vendor/local/share/gtk-doc/html/gtk/toolbar.png +0 -0
  1366. data/vendor/local/share/gtk-doc/html/gtk/toolpalette.png +0 -0
  1367. data/vendor/local/share/gtk-doc/html/gtk/tools-check-spelling.png +0 -0
  1368. data/vendor/local/share/gtk-doc/html/gtk/tree-view-coordinates.png +0 -0
  1369. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +45 -0
  1370. data/vendor/local/share/gtk-doc/html/gtk/up.png +0 -0
  1371. data/vendor/local/share/gtk-doc/html/gtk/view-fullscreen.png +0 -0
  1372. data/vendor/local/share/gtk-doc/html/gtk/view-refresh.png +0 -0
  1373. data/vendor/local/share/gtk-doc/html/gtk/view-restore.png +0 -0
  1374. data/vendor/local/share/gtk-doc/html/gtk/view-sort-ascending.png +0 -0
  1375. data/vendor/local/share/gtk-doc/html/gtk/view-sort-descending.png +0 -0
  1376. data/vendor/local/share/gtk-doc/html/gtk/volumebutton.png +0 -0
  1377. data/vendor/local/share/gtk-doc/html/gtk/window-close.png +0 -0
  1378. data/vendor/local/share/gtk-doc/html/gtk/window.png +0 -0
  1379. data/vendor/local/share/gtk-doc/html/gtk/zoom-fit-best.png +0 -0
  1380. data/vendor/local/share/gtk-doc/html/gtk/zoom-in.png +0 -0
  1381. data/vendor/local/share/gtk-doc/html/gtk/zoom-original.png +0 -0
  1382. data/vendor/local/share/gtk-doc/html/gtk/zoom-out.png +0 -0
  1383. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
  1384. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
  1385. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
  1386. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
  1387. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
  1388. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
  1389. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
  1390. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
  1391. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
  1392. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
  1393. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
  1394. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
  1395. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
  1396. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
  1397. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1398. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
  1399. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
  1400. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
  1401. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1402. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20.mo +0 -0
  1403. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  1404. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  1405. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1406. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
  1407. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1408. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
  1409. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
  1410. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
  1411. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1412. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20.mo +0 -0
  1413. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  1414. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  1415. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1416. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  1417. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1418. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
  1419. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1420. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  1421. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1422. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
  1423. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
  1424. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
  1425. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
  1426. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
  1427. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1428. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
  1429. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  1430. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
  1431. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
  1432. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.mo +0 -0
  1433. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  1434. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  1435. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
  1436. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
  1437. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.mo +0 -0
  1438. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
  1439. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  1440. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20.mo +0 -0
  1441. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1442. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
  1443. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1444. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
  1445. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1446. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
  1447. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1448. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
  1449. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
  1450. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
  1451. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1452. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  1453. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1454. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
  1455. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
  1456. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
  1457. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1458. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
  1459. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1460. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20.mo +0 -0
  1461. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1462. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  1463. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1464. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
  1465. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1466. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
  1467. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
  1468. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
  1469. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
  1470. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
  1471. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
  1472. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20.mo +0 -0
  1473. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  1474. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  1475. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  1476. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20.mo +0 -0
  1477. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
  1478. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
  1479. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1480. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
  1481. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1482. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
  1483. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
  1484. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
  1485. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
  1486. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
  1487. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
  1488. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.mo +0 -0
  1489. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1490. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  1491. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1492. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
  1493. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
  1494. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
  1495. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1496. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
  1497. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1498. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
  1499. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
  1500. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
  1501. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1502. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
  1503. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1504. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
  1505. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
  1506. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
  1507. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
  1508. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
  1509. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
  1510. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  1511. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
  1512. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
  1513. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
  1514. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
  1515. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1516. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
  1517. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1518. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
  1519. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
  1520. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
  1521. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
  1522. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
  1523. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
  1524. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
  1525. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1526. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20.mo +0 -0
  1527. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1528. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  1529. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
  1530. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
  1531. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1532. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
  1533. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1534. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
  1535. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
  1536. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20.mo +0 -0
  1537. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  1538. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  1539. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
  1540. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
  1541. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
  1542. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
  1543. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1544. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
  1545. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1546. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  1547. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
  1548. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
  1549. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1550. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
  1551. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
  1552. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
  1553. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1554. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
  1555. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1556. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
  1557. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
  1558. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
  1559. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
  1560. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  1561. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
  1562. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
  1563. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1564. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
  1565. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1566. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
  1567. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1568. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
  1569. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
  1570. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
  1571. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1572. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
  1573. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
  1574. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
  1575. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1576. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
  1577. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
  1578. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
  1579. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1580. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
  1581. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1582. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
  1583. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1584. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
  1585. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1586. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
  1587. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1588. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
  1589. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo +0 -0
  1590. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  1591. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +0 -0
  1592. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  1593. data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
  1594. data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
  1595. data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
  1596. data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
  1597. data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.log +4954 -0
  1598. data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.sh +99 -0
  1599. metadata +1759 -0
@@ -0,0 +1,2689 @@
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.76.1">
7
+ <link rel="home" href="index.html" title="GTK+ 2 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 (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+ 2 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><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> 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-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>);
59
+ <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>,
60
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
61
+ <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>);
62
+ <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>,
63
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
64
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
65
+ <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>,
66
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
67
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
68
+ <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>,
69
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
70
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
71
+ <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>,
72
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
73
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
74
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>,
75
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
76
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
77
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
78
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);
79
+ <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>
80
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
81
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> wx</code></em>,
82
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> wy</code></em>,
83
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *bx</code></em>,
84
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *by</code></em>);
85
+ <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>,
86
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
87
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
88
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> start_editing</code></em>);
89
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>,
90
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
91
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);
92
+ <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>,
93
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()"><span class="type">GtkIconViewForeachFunc</span></a> func</code></em>,
94
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
95
+ <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>,
96
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> mode</code></em>);
97
+ <a class="link" href="gtk-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>);
98
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-orientation" title="gtk_icon_view_set_orientation ()">gtk_icon_view_set_orientation</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
99
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);
100
+ <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> <a class="link" href="GtkIconView.html#gtk-icon-view-get-orientation" title="gtk_icon_view_get_orientation ()">gtk_icon_view_get_orientation</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
101
+ <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>,
102
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);
103
+ <a class="link" href="gtk-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>);
104
+ <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>,
105
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>);
106
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
107
+ <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>,
108
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item_width</code></em>);
109
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
110
+ <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>,
111
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> spacing</code></em>);
112
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
113
+ <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>,
114
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row_spacing</code></em>);
115
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
116
+ <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>,
117
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column_spacing</code></em>);
118
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
119
+ <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>,
120
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> margin</code></em>);
121
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
122
+ <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>,
123
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item_padding</code></em>);
124
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
125
+ <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>,
126
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
127
+ <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>,
128
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
129
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>,
130
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
131
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <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>);
132
+ <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>);
133
+ <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>);
134
+ <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>,
135
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
136
+ <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>,
137
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
138
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_align</code></em>,
139
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> row_align</code></em>,
140
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> col_align</code></em>);
141
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>,
142
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
143
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);
144
+ <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>,
145
+ <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
146
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
147
+ <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>,
148
+ <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
149
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
150
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);
151
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>,
152
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
153
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
154
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> keyboard_tip</code></em>,
155
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
156
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
157
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
158
+ <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>,
159
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
160
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
161
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>,
162
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
163
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>,
164
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
165
+
166
+ enum <a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition">GtkIconViewDropPosition</a>;
167
+ <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>
168
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
169
+ <em class="parameter"><code><a href="../gdk/gdk-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
170
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
171
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
172
+ <em class="parameter"><code><a href="../gdk/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
173
+ <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>
174
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
175
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
176
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
177
+ <em class="parameter"><code><a href="../gdk/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
178
+ <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>
179
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
180
+ <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>);
181
+ <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>,
182
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> reorderable</code></em>);
183
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>);
184
+ <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>,
185
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
186
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> pos</code></em>);
187
+ <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>,
188
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
189
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);
190
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>,
191
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_x</code></em>,
192
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_y</code></em>,
193
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
194
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);
195
+ <a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</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>,
196
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
197
+ </pre>
198
+ </div>
199
+ <div class="refsect1">
200
+ <a name="GtkIconView.object-hierarchy"></a><h2>Object Hierarchy</h2>
201
+ <pre class="synopsis">
202
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
203
+ +----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
204
+ +----<a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
205
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
206
+ +----<a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
207
+ +----GtkIconView
208
+ </pre>
209
+ </div>
210
+ <div class="refsect1">
211
+ <a name="GtkIconView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
212
+ <p>
213
+ GtkIconView implements
214
+ AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="GtkCellLayout.html" title="GtkCellLayout">GtkCellLayout</a>.</p>
215
+ </div>
216
+ <div class="refsect1">
217
+ <a name="GtkIconView.properties"></a><h2>Properties</h2>
218
+ <pre class="synopsis">
219
+ "<a class="link" href="GtkIconView.html#GtkIconView--column-spacing" title='The "column-spacing" property'>column-spacing</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
220
+ "<a class="link" href="GtkIconView.html#GtkIconView--columns" title='The "columns" property'>columns</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
221
+ "<a class="link" href="GtkIconView.html#GtkIconView--item-orientation" title='The "item-orientation" property'>item-orientation</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write
222
+ "<a class="link" href="GtkIconView.html#GtkIconView--item-padding" title='The "item-padding" property'>item-padding</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
223
+ "<a class="link" href="GtkIconView.html#GtkIconView--item-width" title='The "item-width" property'>item-width</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
224
+ "<a class="link" href="GtkIconView.html#GtkIconView--margin" title='The "margin" property'>margin</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
225
+ "<a class="link" href="GtkIconView.html#GtkIconView--markup-column" title='The "markup-column" property'>markup-column</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
226
+ "<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
227
+ "<a class="link" href="GtkIconView.html#GtkIconView--orientation" title='The "orientation" property'>orientation</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write
228
+ "<a class="link" href="GtkIconView.html#GtkIconView--pixbuf-column" title='The "pixbuf-column" property'>pixbuf-column</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
229
+ "<a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'>reorderable</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
230
+ "<a class="link" href="GtkIconView.html#GtkIconView--row-spacing" title='The "row-spacing" property'>row-spacing</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
231
+ "<a class="link" href="GtkIconView.html#GtkIconView--selection-mode" title='The "selection-mode" property'>selection-mode</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> : Read / Write
232
+ "<a class="link" href="GtkIconView.html#GtkIconView--spacing" title='The "spacing" property'>spacing</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
233
+ "<a class="link" href="GtkIconView.html#GtkIconView--text-column" title='The "text-column" property'>text-column</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
234
+ "<a class="link" href="GtkIconView.html#GtkIconView--tooltip-column" title='The "tooltip-column" property'>tooltip-column</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
235
+ </pre>
236
+ </div>
237
+ <div class="refsect1">
238
+ <a name="GtkIconView.style-properties"></a><h2>Style Properties</h2>
239
+ <pre class="synopsis">
240
+ "<a class="link" href="GtkIconView.html#GtkIconView--s-selection-box-alpha" title='The "selection-box-alpha" style property'>selection-box-alpha</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guchar"><span class="type">guchar</span></a> : Read
241
+ "<a class="link" href="GtkIconView.html#GtkIconView--s-selection-box-color" title='The "selection-box-color" style property'>selection-box-color</a>" <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read
242
+ </pre>
243
+ </div>
244
+ <div class="refsect1">
245
+ <a name="GtkIconView.signals"></a><h2>Signals</h2>
246
+ <pre class="synopsis">
247
+ "<a class="link" href="GtkIconView.html#GtkIconView-activate-cursor-item" title='The "activate-cursor-item" signal'>activate-cursor-item</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
248
+ "<a class="link" href="GtkIconView.html#GtkIconView-item-activated" title='The "item-activated" signal'>item-activated</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
249
+ "<a class="link" href="GtkIconView.html#GtkIconView-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
250
+ "<a class="link" href="GtkIconView.html#GtkIconView-select-all" title='The "select-all" signal'>select-all</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
251
+ "<a class="link" href="GtkIconView.html#GtkIconView-select-cursor-item" title='The "select-cursor-item" signal'>select-cursor-item</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
252
+ "<a class="link" href="GtkIconView.html#GtkIconView-selection-changed" title='The "selection-changed" signal'>selection-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
253
+ "<a class="link" href="GtkIconView.html#GtkIconView-set-scroll-adjustments" title='The "set-scroll-adjustments" signal'>set-scroll-adjustments</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
254
+ "<a class="link" href="GtkIconView.html#GtkIconView-toggle-cursor-item" title='The "toggle-cursor-item" signal'>toggle-cursor-item</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
255
+ "<a class="link" href="GtkIconView.html#GtkIconView-unselect-all" title='The "unselect-all" signal'>unselect-all</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
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 list model.
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
+ </div>
269
+ <div class="refsect1">
270
+ <a name="GtkIconView.details"></a><h2>Details</h2>
271
+ <div class="refsect2">
272
+ <a name="GtkIconView-struct"></a><h3>struct GtkIconView</h3>
273
+ <pre class="programlisting">struct GtkIconView;</pre>
274
+ <p>
275
+ The <span class="structname">GtkIconView</span> struct contains only
276
+ private fields and should not be directly accessed.
277
+ </p>
278
+ </div>
279
+ <hr>
280
+ <div class="refsect2">
281
+ <a name="GtkIconViewForeachFunc"></a><h3>GtkIconViewForeachFunc ()</h3>
282
+ <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>,
283
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
284
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
285
+ <p>
286
+ 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
287
+ selected rows. It will be called on every selected row in the view.
288
+ </p>
289
+ <div class="variablelist"><table border="0">
290
+ <col align="left" valign="top">
291
+ <tbody>
292
+ <tr>
293
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
294
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
295
+ </td>
296
+ </tr>
297
+ <tr>
298
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
299
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of a selected row</td>
300
+ </tr>
301
+ <tr>
302
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
303
+ <td>user data</td>
304
+ </tr>
305
+ </tbody>
306
+ </table></div>
307
+ </div>
308
+ <hr>
309
+ <div class="refsect2">
310
+ <a name="gtk-icon-view-new"></a><h3>gtk_icon_view_new ()</h3>
311
+ <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>
312
+ <p>
313
+ Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget
314
+ </p>
315
+ <div class="variablelist"><table border="0">
316
+ <col align="left" valign="top">
317
+ <tbody><tr>
318
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
319
+ <td>A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget</td>
320
+ </tr></tbody>
321
+ </table></div>
322
+ <p class="since">Since 2.6</p>
323
+ </div>
324
+ <hr>
325
+ <div class="refsect2">
326
+ <a name="gtk-icon-view-new-with-model"></a><h3>gtk_icon_view_new_with_model ()</h3>
327
+ <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>
328
+ <p>
329
+ 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>.
330
+ </p>
331
+ <div class="variablelist"><table border="0">
332
+ <col align="left" valign="top">
333
+ <tbody>
334
+ <tr>
335
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
336
+ <td>The model.</td>
337
+ </tr>
338
+ <tr>
339
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
340
+ <td>A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget.</td>
341
+ </tr>
342
+ </tbody>
343
+ </table></div>
344
+ <p class="since">Since 2.6</p>
345
+ </div>
346
+ <hr>
347
+ <div class="refsect2">
348
+ <a name="gtk-icon-view-set-model"></a><h3>gtk_icon_view_set_model ()</h3>
349
+ <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>,
350
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
351
+ <p>
352
+ Sets the model for a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
353
+ If the <em class="parameter"><code>icon_view</code></em> already has a model set, it will remove
354
+ it before setting the new model. If <em class="parameter"><code>model</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then
355
+ it will unset the old model.
356
+ </p>
357
+ <div class="variablelist"><table border="0">
358
+ <col align="left" valign="top">
359
+ <tbody>
360
+ <tr>
361
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
362
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
363
+ </tr>
364
+ <tr>
365
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
366
+ <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>
367
+ </td>
368
+ </tr>
369
+ </tbody>
370
+ </table></div>
371
+ <p class="since">Since 2.6</p>
372
+ </div>
373
+ <hr>
374
+ <div class="refsect2">
375
+ <a name="gtk-icon-view-get-model"></a><h3>gtk_icon_view_get_model ()</h3>
376
+ <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>
377
+ <p>
378
+ Returns the model the <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> is based on. Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
379
+ model is unset.
380
+ </p>
381
+ <div class="variablelist"><table border="0">
382
+ <col align="left" valign="top">
383
+ <tbody>
384
+ <tr>
385
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
386
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
387
+ </td>
388
+ </tr>
389
+ <tr>
390
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
391
+ <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none is
392
+ 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>
393
+ </td>
394
+ </tr>
395
+ </tbody>
396
+ </table></div>
397
+ <p class="since">Since 2.6</p>
398
+ </div>
399
+ <hr>
400
+ <div class="refsect2">
401
+ <a name="gtk-icon-view-set-text-column"></a><h3>gtk_icon_view_set_text_column ()</h3>
402
+ <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>,
403
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
404
+ <p>
405
+ 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
406
+ column must be of type <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><span class="type">G_TYPE_STRING</span></a>.
407
+ </p>
408
+ <div class="variablelist"><table border="0">
409
+ <col align="left" valign="top">
410
+ <tbody>
411
+ <tr>
412
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
413
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
414
+ </tr>
415
+ <tr>
416
+ <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
417
+ <td>A column in the currently used model, or -1 to display no text</td>
418
+ </tr>
419
+ </tbody>
420
+ </table></div>
421
+ <p class="since">Since 2.6</p>
422
+ </div>
423
+ <hr>
424
+ <div class="refsect2">
425
+ <a name="gtk-icon-view-get-text-column"></a><h3>gtk_icon_view_get_text_column ()</h3>
426
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
427
+ <p>
428
+ Returns the column with text for <em class="parameter"><code>icon_view</code></em>.
429
+ </p>
430
+ <div class="variablelist"><table border="0">
431
+ <col align="left" valign="top">
432
+ <tbody>
433
+ <tr>
434
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
435
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
436
+ </tr>
437
+ <tr>
438
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
439
+ <td>the text column, or -1 if it's unset.</td>
440
+ </tr>
441
+ </tbody>
442
+ </table></div>
443
+ <p class="since">Since 2.6</p>
444
+ </div>
445
+ <hr>
446
+ <div class="refsect2">
447
+ <a name="gtk-icon-view-set-markup-column"></a><h3>gtk_icon_view_set_markup_column ()</h3>
448
+ <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>,
449
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
450
+ <p>
451
+ Sets the column with markup information for <em class="parameter"><code>icon_view</code></em> to be
452
+ <em class="parameter"><code>column</code></em>. The markup column must be of type <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><span class="type">G_TYPE_STRING</span></a>.
453
+ If the markup column is set to something, it overrides
454
+ 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>.
455
+ </p>
456
+ <div class="variablelist"><table border="0">
457
+ <col align="left" valign="top">
458
+ <tbody>
459
+ <tr>
460
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
461
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
462
+ </tr>
463
+ <tr>
464
+ <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
465
+ <td>A column in the currently used model, or -1 to display no text</td>
466
+ </tr>
467
+ </tbody>
468
+ </table></div>
469
+ <p class="since">Since 2.6</p>
470
+ </div>
471
+ <hr>
472
+ <div class="refsect2">
473
+ <a name="gtk-icon-view-get-markup-column"></a><h3>gtk_icon_view_get_markup_column ()</h3>
474
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
475
+ <p>
476
+ Returns the column with markup text for <em class="parameter"><code>icon_view</code></em>.
477
+ </p>
478
+ <div class="variablelist"><table border="0">
479
+ <col align="left" valign="top">
480
+ <tbody>
481
+ <tr>
482
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
483
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
484
+ </tr>
485
+ <tr>
486
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
487
+ <td>the markup column, or -1 if it's unset.</td>
488
+ </tr>
489
+ </tbody>
490
+ </table></div>
491
+ <p class="since">Since 2.6</p>
492
+ </div>
493
+ <hr>
494
+ <div class="refsect2">
495
+ <a name="gtk-icon-view-set-pixbuf-column"></a><h3>gtk_icon_view_set_pixbuf_column ()</h3>
496
+ <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>,
497
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
498
+ <p>
499
+ 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
500
+ column must be of type <span class="type">GDK_TYPE_PIXBUF</span>
501
+ </p>
502
+ <div class="variablelist"><table border="0">
503
+ <col align="left" valign="top">
504
+ <tbody>
505
+ <tr>
506
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
507
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
508
+ </tr>
509
+ <tr>
510
+ <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
511
+ <td>A column in the currently used model, or -1 to disable</td>
512
+ </tr>
513
+ </tbody>
514
+ </table></div>
515
+ <p class="since">Since 2.6</p>
516
+ </div>
517
+ <hr>
518
+ <div class="refsect2">
519
+ <a name="gtk-icon-view-get-pixbuf-column"></a><h3>gtk_icon_view_get_pixbuf_column ()</h3>
520
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
521
+ <p>
522
+ Returns the column with pixbufs for <em class="parameter"><code>icon_view</code></em>.
523
+ </p>
524
+ <div class="variablelist"><table border="0">
525
+ <col align="left" valign="top">
526
+ <tbody>
527
+ <tr>
528
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
529
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
530
+ </tr>
531
+ <tr>
532
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
533
+ <td>the pixbuf column, or -1 if it's unset.</td>
534
+ </tr>
535
+ </tbody>
536
+ </table></div>
537
+ <p class="since">Since 2.6</p>
538
+ </div>
539
+ <hr>
540
+ <div class="refsect2">
541
+ <a name="gtk-icon-view-get-path-at-pos"></a><h3>gtk_icon_view_get_path_at_pos ()</h3>
542
+ <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>,
543
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
544
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
545
+ <p>
546
+ 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.
547
+ 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
548
+ the cell at the specified position.
549
+ 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
550
+ widget coordinates to bin_window coordinates.
551
+ </p>
552
+ <div class="variablelist"><table border="0">
553
+ <col align="left" valign="top">
554
+ <tbody>
555
+ <tr>
556
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
557
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
558
+ </tr>
559
+ <tr>
560
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
561
+ <td>The x position to be identified</td>
562
+ </tr>
563
+ <tr>
564
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
565
+ <td>The y position to be identified</td>
566
+ </tr>
567
+ <tr>
568
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
569
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> corresponding to the icon or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
570
+ if no icon exists at that position.</td>
571
+ </tr>
572
+ </tbody>
573
+ </table></div>
574
+ <p class="since">Since 2.6</p>
575
+ </div>
576
+ <hr>
577
+ <div class="refsect2">
578
+ <a name="gtk-icon-view-get-item-at-pos"></a><h3>gtk_icon_view_get_item_at_pos ()</h3>
579
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
580
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
581
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
582
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
583
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
584
+ <p>
585
+ 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.
586
+ 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
587
+ obtains the cell at the specified position. The returned path should
588
+ 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>.
589
+ 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
590
+ widget coordinates to bin_window coordinates.
591
+ </p>
592
+ <div class="variablelist"><table border="0">
593
+ <col align="left" valign="top">
594
+ <tbody>
595
+ <tr>
596
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
597
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
598
+ </tr>
599
+ <tr>
600
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
601
+ <td>The x position to be identified</td>
602
+ </tr>
603
+ <tr>
604
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
605
+ <td>The y position to be identified</td>
606
+ </tr>
607
+ <tr>
608
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
609
+ <td>Return location for the path, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
610
+ </td>
611
+ </tr>
612
+ <tr>
613
+ <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
614
+ <td>Return location for the renderer responsible for the cell
615
+ at (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>), or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
616
+ </td>
617
+ </tr>
618
+ <tr>
619
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
620
+ <td>
621
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an item exists at the specified position</td>
622
+ </tr>
623
+ </tbody>
624
+ </table></div>
625
+ <p class="since">Since 2.8</p>
626
+ </div>
627
+ <hr>
628
+ <div class="refsect2">
629
+ <a name="gtk-icon-view-convert-widget-to-bin-window-coords"></a><h3>gtk_icon_view_convert_widget_to_bin_window_coords ()</h3>
630
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_convert_widget_to_bin_window_coords
631
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
632
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> wx</code></em>,
633
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> wy</code></em>,
634
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *bx</code></em>,
635
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *by</code></em>);</pre>
636
+ <p>
637
+ Converts widget coordinates to coordinates for the bin_window,
638
+ 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>.
639
+ </p>
640
+ <div class="variablelist"><table border="0">
641
+ <col align="left" valign="top">
642
+ <tbody>
643
+ <tr>
644
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
645
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
646
+ </td>
647
+ </tr>
648
+ <tr>
649
+ <td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
650
+ <td>X coordinate relative to the widget</td>
651
+ </tr>
652
+ <tr>
653
+ <td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
654
+ <td>Y coordinate relative to the widget</td>
655
+ </tr>
656
+ <tr>
657
+ <td><p><span class="term"><em class="parameter"><code>bx</code></em> :</span></p></td>
658
+ <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>
659
+ </td>
660
+ </tr>
661
+ <tr>
662
+ <td><p><span class="term"><em class="parameter"><code>by</code></em> :</span></p></td>
663
+ <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>
664
+ </td>
665
+ </tr>
666
+ </tbody>
667
+ </table></div>
668
+ <p class="since">Since 2.12</p>
669
+ </div>
670
+ <hr>
671
+ <div class="refsect2">
672
+ <a name="gtk-icon-view-set-cursor"></a><h3>gtk_icon_view_set_cursor ()</h3>
673
+ <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>,
674
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
675
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
676
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> start_editing</code></em>);</pre>
677
+ <p>
678
+ Sets the current keyboard focus to be at <em class="parameter"><code>path</code></em>, and selects it. This is
679
+ useful when you want to focus the user's attention on a particular item.
680
+ If <em class="parameter"><code>cell</code></em> is not <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then focus is given to the cell specified by
681
+ it. Additionally, if <em class="parameter"><code>start_editing</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then editing should be
682
+ started in the specified cell.
683
+ </p>
684
+ <p>
685
+ This function is often followed by <code class="literal">gtk_widget_grab_focus
686
+ (icon_view)</code> in order to give keyboard focus to the widget.
687
+ Please note that editing can only happen when the widget is realized.
688
+ </p>
689
+ <div class="variablelist"><table border="0">
690
+ <col align="left" valign="top">
691
+ <tbody>
692
+ <tr>
693
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
694
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
695
+ </td>
696
+ </tr>
697
+ <tr>
698
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
699
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
700
+ </td>
701
+ </tr>
702
+ <tr>
703
+ <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
704
+ <td>One of the cell renderers of <em class="parameter"><code>icon_view</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
705
+ </td>
706
+ </tr>
707
+ <tr>
708
+ <td><p><span class="term"><em class="parameter"><code>start_editing</code></em> :</span></p></td>
709
+ <td>
710
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the specified cell should start being edited.</td>
711
+ </tr>
712
+ </tbody>
713
+ </table></div>
714
+ <p class="since">Since 2.8</p>
715
+ </div>
716
+ <hr>
717
+ <div class="refsect2">
718
+ <a name="gtk-icon-view-get-cursor"></a><h3>gtk_icon_view_get_cursor ()</h3>
719
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
720
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
721
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
722
+ <p>
723
+ Fills in <em class="parameter"><code>path</code></em> and <em class="parameter"><code>cell</code></em> with the current cursor path and cell.
724
+ If the cursor isn't currently set, then *<em class="parameter"><code>path</code></em> will be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
725
+ If no cell currently has focus, then *<em class="parameter"><code>cell</code></em> will be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
726
+ </p>
727
+ <p>
728
+ 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>.
729
+ </p>
730
+ <div class="variablelist"><table border="0">
731
+ <col align="left" valign="top">
732
+ <tbody>
733
+ <tr>
734
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
735
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
736
+ </td>
737
+ </tr>
738
+ <tr>
739
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
740
+ <td>Return location for the current cursor path, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
741
+ </td>
742
+ </tr>
743
+ <tr>
744
+ <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
745
+ <td>Return location the current focus cell, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
746
+ </td>
747
+ </tr>
748
+ <tr>
749
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
750
+ <td>
751
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the cursor is set.</td>
752
+ </tr>
753
+ </tbody>
754
+ </table></div>
755
+ <p class="since">Since 2.8</p>
756
+ </div>
757
+ <hr>
758
+ <div class="refsect2">
759
+ <a name="gtk-icon-view-selected-foreach"></a><h3>gtk_icon_view_selected_foreach ()</h3>
760
+ <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>,
761
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()"><span class="type">GtkIconViewForeachFunc</span></a> func</code></em>,
762
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
763
+ <p>
764
+ Calls a function for each selected icon. Note that the model or
765
+ selection cannot be modified from within this function.
766
+ </p>
767
+ <div class="variablelist"><table border="0">
768
+ <col align="left" valign="top">
769
+ <tbody>
770
+ <tr>
771
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
772
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
773
+ </tr>
774
+ <tr>
775
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
776
+ <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>
777
+ </td>
778
+ </tr>
779
+ <tr>
780
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
781
+ <td>User data to pass to the function.</td>
782
+ </tr>
783
+ </tbody>
784
+ </table></div>
785
+ <p class="since">Since 2.6</p>
786
+ </div>
787
+ <hr>
788
+ <div class="refsect2">
789
+ <a name="gtk-icon-view-set-selection-mode"></a><h3>gtk_icon_view_set_selection_mode ()</h3>
790
+ <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>,
791
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> mode</code></em>);</pre>
792
+ <p>
793
+ Sets the selection mode of the <em class="parameter"><code>icon_view</code></em>.
794
+ </p>
795
+ <div class="variablelist"><table border="0">
796
+ <col align="left" valign="top">
797
+ <tbody>
798
+ <tr>
799
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
800
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
801
+ </tr>
802
+ <tr>
803
+ <td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
804
+ <td>The selection mode</td>
805
+ </tr>
806
+ </tbody>
807
+ </table></div>
808
+ <p class="since">Since 2.6</p>
809
+ </div>
810
+ <hr>
811
+ <div class="refsect2">
812
+ <a name="gtk-icon-view-get-selection-mode"></a><h3>gtk_icon_view_get_selection_mode ()</h3>
813
+ <pre class="programlisting"><a class="link" href="gtk-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>
814
+ <p>
815
+ Gets the selection mode of the <em class="parameter"><code>icon_view</code></em>.
816
+ </p>
817
+ <div class="variablelist"><table border="0">
818
+ <col align="left" valign="top">
819
+ <tbody>
820
+ <tr>
821
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
822
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
823
+ </tr>
824
+ <tr>
825
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
826
+ <td>the current selection mode</td>
827
+ </tr>
828
+ </tbody>
829
+ </table></div>
830
+ <p class="since">Since 2.6</p>
831
+ </div>
832
+ <hr>
833
+ <div class="refsect2">
834
+ <a name="gtk-icon-view-set-orientation"></a><h3>gtk_icon_view_set_orientation ()</h3>
835
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_set_orientation (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
836
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
837
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
838
+ <h3 class="title">Warning</h3>
839
+ <p><code class="literal">gtk_icon_view_set_orientation</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="GtkIconView.html#gtk-icon-view-set-item-orientation" title="gtk_icon_view_set_item_orientation ()"><code class="function">gtk_icon_view_set_item_orientation()</code></a></p>
840
+ </div>
841
+ <p>
842
+ Sets the ::orientation property which determines whether the labels
843
+ are drawn beside the icons instead of below.
844
+ </p>
845
+ <div class="variablelist"><table border="0">
846
+ <col align="left" valign="top">
847
+ <tbody>
848
+ <tr>
849
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
850
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
851
+ </td>
852
+ </tr>
853
+ <tr>
854
+ <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
855
+ <td>the relative position of texts and icons</td>
856
+ </tr>
857
+ </tbody>
858
+ </table></div>
859
+ <p class="since">Since 2.6</p>
860
+ </div>
861
+ <hr>
862
+ <div class="refsect2">
863
+ <a name="gtk-icon-view-get-orientation"></a><h3>gtk_icon_view_get_orientation ()</h3>
864
+ <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> gtk_icon_view_get_orientation (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
865
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
866
+ <h3 class="title">Warning</h3>
867
+ <p><code class="literal">gtk_icon_view_get_orientation</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-orientation" title="gtk_icon_view_get_item_orientation ()"><code class="function">gtk_icon_view_get_item_orientation()</code></a></p>
868
+ </div>
869
+ <p>
870
+ Returns the value of the ::orientation property which determines
871
+ whether the labels are drawn beside the icons instead of below.
872
+ </p>
873
+ <div class="variablelist"><table border="0">
874
+ <col align="left" valign="top">
875
+ <tbody>
876
+ <tr>
877
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
878
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
879
+ </td>
880
+ </tr>
881
+ <tr>
882
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
883
+ <td>the relative position of texts and icons</td>
884
+ </tr>
885
+ </tbody>
886
+ </table></div>
887
+ <p class="since">Since 2.6</p>
888
+ </div>
889
+ <hr>
890
+ <div class="refsect2">
891
+ <a name="gtk-icon-view-set-item-orientation"></a><h3>gtk_icon_view_set_item_orientation ()</h3>
892
+ <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>,
893
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
894
+ <p>
895
+ Sets the ::item-orientation property which determines whether
896
+ the labels are drawn beside the icons instead of below.
897
+ </p>
898
+ <div class="variablelist"><table border="0">
899
+ <col align="left" valign="top">
900
+ <tbody>
901
+ <tr>
902
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
903
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
904
+ </td>
905
+ </tr>
906
+ <tr>
907
+ <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
908
+ <td>the relative position of texts and icons</td>
909
+ </tr>
910
+ </tbody>
911
+ </table></div>
912
+ <p class="since">Since 2.22</p>
913
+ </div>
914
+ <hr>
915
+ <div class="refsect2">
916
+ <a name="gtk-icon-view-get-item-orientation"></a><h3>gtk_icon_view_get_item_orientation ()</h3>
917
+ <pre class="programlisting"><a class="link" href="gtk-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>
918
+ <p>
919
+ Returns the value of the ::item-orientation property which determines
920
+ whether the labels are drawn beside the icons instead of below.
921
+ </p>
922
+ <div class="variablelist"><table border="0">
923
+ <col align="left" valign="top">
924
+ <tbody>
925
+ <tr>
926
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
927
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
928
+ </td>
929
+ </tr>
930
+ <tr>
931
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
932
+ <td>the relative position of texts and icons</td>
933
+ </tr>
934
+ </tbody>
935
+ </table></div>
936
+ <p class="since">Since 2.22</p>
937
+ </div>
938
+ <hr>
939
+ <div class="refsect2">
940
+ <a name="gtk-icon-view-set-columns"></a><h3>gtk_icon_view_set_columns ()</h3>
941
+ <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>,
942
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>);</pre>
943
+ <p>
944
+ Sets the ::columns property which determines in how
945
+ many columns the icons are arranged. If <em class="parameter"><code>columns</code></em> is
946
+ -1, the number of columns will be chosen automatically
947
+ to fill the available area.
948
+ </p>
949
+ <div class="variablelist"><table border="0">
950
+ <col align="left" valign="top">
951
+ <tbody>
952
+ <tr>
953
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
954
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
955
+ </td>
956
+ </tr>
957
+ <tr>
958
+ <td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
959
+ <td>the number of columns</td>
960
+ </tr>
961
+ </tbody>
962
+ </table></div>
963
+ <p class="since">Since 2.6</p>
964
+ </div>
965
+ <hr>
966
+ <div class="refsect2">
967
+ <a name="gtk-icon-view-get-columns"></a><h3>gtk_icon_view_get_columns ()</h3>
968
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
969
+ <p>
970
+ Returns the value of the ::columns property.
971
+ </p>
972
+ <div class="variablelist"><table border="0">
973
+ <col align="left" valign="top">
974
+ <tbody>
975
+ <tr>
976
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
977
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
978
+ </td>
979
+ </tr>
980
+ <tr>
981
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
982
+ <td>the number of columns, or -1</td>
983
+ </tr>
984
+ </tbody>
985
+ </table></div>
986
+ <p class="since">Since 2.6</p>
987
+ </div>
988
+ <hr>
989
+ <div class="refsect2">
990
+ <a name="gtk-icon-view-set-item-width"></a><h3>gtk_icon_view_set_item_width ()</h3>
991
+ <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>,
992
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item_width</code></em>);</pre>
993
+ <p>
994
+ Sets the ::item-width property which specifies the width
995
+ to use for each item. If it is set to -1, the icon view will
996
+ automatically determine a suitable item size.
997
+ </p>
998
+ <div class="variablelist"><table border="0">
999
+ <col align="left" valign="top">
1000
+ <tbody>
1001
+ <tr>
1002
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1003
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1004
+ </td>
1005
+ </tr>
1006
+ <tr>
1007
+ <td><p><span class="term"><em class="parameter"><code>item_width</code></em> :</span></p></td>
1008
+ <td>the width for each item</td>
1009
+ </tr>
1010
+ </tbody>
1011
+ </table></div>
1012
+ <p class="since">Since 2.6</p>
1013
+ </div>
1014
+ <hr>
1015
+ <div class="refsect2">
1016
+ <a name="gtk-icon-view-get-item-width"></a><h3>gtk_icon_view_get_item_width ()</h3>
1017
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1018
+ <p>
1019
+ Returns the value of the ::item-width property.
1020
+ </p>
1021
+ <div class="variablelist"><table border="0">
1022
+ <col align="left" valign="top">
1023
+ <tbody>
1024
+ <tr>
1025
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1026
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1027
+ </td>
1028
+ </tr>
1029
+ <tr>
1030
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1031
+ <td>the width of a single item, or -1</td>
1032
+ </tr>
1033
+ </tbody>
1034
+ </table></div>
1035
+ <p class="since">Since 2.6</p>
1036
+ </div>
1037
+ <hr>
1038
+ <div class="refsect2">
1039
+ <a name="gtk-icon-view-set-spacing"></a><h3>gtk_icon_view_set_spacing ()</h3>
1040
+ <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>,
1041
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> spacing</code></em>);</pre>
1042
+ <p>
1043
+ Sets the ::spacing property which specifies the space
1044
+ which is inserted between the cells (i.e. the icon and
1045
+ the text) of an item.
1046
+ </p>
1047
+ <div class="variablelist"><table border="0">
1048
+ <col align="left" valign="top">
1049
+ <tbody>
1050
+ <tr>
1051
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1052
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1053
+ </td>
1054
+ </tr>
1055
+ <tr>
1056
+ <td><p><span class="term"><em class="parameter"><code>spacing</code></em> :</span></p></td>
1057
+ <td>the spacing</td>
1058
+ </tr>
1059
+ </tbody>
1060
+ </table></div>
1061
+ <p class="since">Since 2.6</p>
1062
+ </div>
1063
+ <hr>
1064
+ <div class="refsect2">
1065
+ <a name="gtk-icon-view-get-spacing"></a><h3>gtk_icon_view_get_spacing ()</h3>
1066
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1067
+ <p>
1068
+ Returns the value of the ::spacing property.
1069
+ </p>
1070
+ <div class="variablelist"><table border="0">
1071
+ <col align="left" valign="top">
1072
+ <tbody>
1073
+ <tr>
1074
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1075
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1076
+ </td>
1077
+ </tr>
1078
+ <tr>
1079
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1080
+ <td>the space between cells</td>
1081
+ </tr>
1082
+ </tbody>
1083
+ </table></div>
1084
+ <p class="since">Since 2.6</p>
1085
+ </div>
1086
+ <hr>
1087
+ <div class="refsect2">
1088
+ <a name="gtk-icon-view-set-row-spacing"></a><h3>gtk_icon_view_set_row_spacing ()</h3>
1089
+ <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>,
1090
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row_spacing</code></em>);</pre>
1091
+ <p>
1092
+ Sets the ::row-spacing property which specifies the space
1093
+ which is inserted between the rows of the icon view.
1094
+ </p>
1095
+ <div class="variablelist"><table border="0">
1096
+ <col align="left" valign="top">
1097
+ <tbody>
1098
+ <tr>
1099
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1100
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1101
+ </td>
1102
+ </tr>
1103
+ <tr>
1104
+ <td><p><span class="term"><em class="parameter"><code>row_spacing</code></em> :</span></p></td>
1105
+ <td>the row spacing</td>
1106
+ </tr>
1107
+ </tbody>
1108
+ </table></div>
1109
+ <p class="since">Since 2.6</p>
1110
+ </div>
1111
+ <hr>
1112
+ <div class="refsect2">
1113
+ <a name="gtk-icon-view-get-row-spacing"></a><h3>gtk_icon_view_get_row_spacing ()</h3>
1114
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1115
+ <p>
1116
+ Returns the value of the ::row-spacing property.
1117
+ </p>
1118
+ <div class="variablelist"><table border="0">
1119
+ <col align="left" valign="top">
1120
+ <tbody>
1121
+ <tr>
1122
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1123
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1124
+ </td>
1125
+ </tr>
1126
+ <tr>
1127
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1128
+ <td>the space between rows</td>
1129
+ </tr>
1130
+ </tbody>
1131
+ </table></div>
1132
+ <p class="since">Since 2.6</p>
1133
+ </div>
1134
+ <hr>
1135
+ <div class="refsect2">
1136
+ <a name="gtk-icon-view-set-column-spacing"></a><h3>gtk_icon_view_set_column_spacing ()</h3>
1137
+ <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>,
1138
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column_spacing</code></em>);</pre>
1139
+ <p>
1140
+ Sets the ::column-spacing property which specifies the space
1141
+ which is inserted between the columns of the icon view.
1142
+ </p>
1143
+ <div class="variablelist"><table border="0">
1144
+ <col align="left" valign="top">
1145
+ <tbody>
1146
+ <tr>
1147
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1148
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1149
+ </td>
1150
+ </tr>
1151
+ <tr>
1152
+ <td><p><span class="term"><em class="parameter"><code>column_spacing</code></em> :</span></p></td>
1153
+ <td>the column spacing</td>
1154
+ </tr>
1155
+ </tbody>
1156
+ </table></div>
1157
+ <p class="since">Since 2.6</p>
1158
+ </div>
1159
+ <hr>
1160
+ <div class="refsect2">
1161
+ <a name="gtk-icon-view-get-column-spacing"></a><h3>gtk_icon_view_get_column_spacing ()</h3>
1162
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1163
+ <p>
1164
+ Returns the value of the ::column-spacing property.
1165
+ </p>
1166
+ <div class="variablelist"><table border="0">
1167
+ <col align="left" valign="top">
1168
+ <tbody>
1169
+ <tr>
1170
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1171
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1172
+ </td>
1173
+ </tr>
1174
+ <tr>
1175
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1176
+ <td>the space between columns</td>
1177
+ </tr>
1178
+ </tbody>
1179
+ </table></div>
1180
+ <p class="since">Since 2.6</p>
1181
+ </div>
1182
+ <hr>
1183
+ <div class="refsect2">
1184
+ <a name="gtk-icon-view-set-margin"></a><h3>gtk_icon_view_set_margin ()</h3>
1185
+ <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>,
1186
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> margin</code></em>);</pre>
1187
+ <p>
1188
+ Sets the ::margin property which specifies the space
1189
+ which is inserted at the top, bottom, left and right
1190
+ of the icon view.
1191
+ </p>
1192
+ <div class="variablelist"><table border="0">
1193
+ <col align="left" valign="top">
1194
+ <tbody>
1195
+ <tr>
1196
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1197
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1198
+ </td>
1199
+ </tr>
1200
+ <tr>
1201
+ <td><p><span class="term"><em class="parameter"><code>margin</code></em> :</span></p></td>
1202
+ <td>the margin</td>
1203
+ </tr>
1204
+ </tbody>
1205
+ </table></div>
1206
+ <p class="since">Since 2.6</p>
1207
+ </div>
1208
+ <hr>
1209
+ <div class="refsect2">
1210
+ <a name="gtk-icon-view-get-margin"></a><h3>gtk_icon_view_get_margin ()</h3>
1211
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1212
+ <p>
1213
+ Returns the value of the ::margin property.
1214
+ </p>
1215
+ <div class="variablelist"><table border="0">
1216
+ <col align="left" valign="top">
1217
+ <tbody>
1218
+ <tr>
1219
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1220
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1221
+ </td>
1222
+ </tr>
1223
+ <tr>
1224
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1225
+ <td>the space at the borders</td>
1226
+ </tr>
1227
+ </tbody>
1228
+ </table></div>
1229
+ <p class="since">Since 2.6</p>
1230
+ </div>
1231
+ <hr>
1232
+ <div class="refsect2">
1233
+ <a name="gtk-icon-view-set-item-padding"></a><h3>gtk_icon_view_set_item_padding ()</h3>
1234
+ <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>,
1235
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item_padding</code></em>);</pre>
1236
+ <p>
1237
+ 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
1238
+ around each of the icon view's items.
1239
+ </p>
1240
+ <div class="variablelist"><table border="0">
1241
+ <col align="left" valign="top">
1242
+ <tbody>
1243
+ <tr>
1244
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1245
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1246
+ </td>
1247
+ </tr>
1248
+ <tr>
1249
+ <td><p><span class="term"><em class="parameter"><code>item_padding</code></em> :</span></p></td>
1250
+ <td>the item padding</td>
1251
+ </tr>
1252
+ </tbody>
1253
+ </table></div>
1254
+ <p class="since">Since 2.18</p>
1255
+ </div>
1256
+ <hr>
1257
+ <div class="refsect2">
1258
+ <a name="gtk-icon-view-get-item-padding"></a><h3>gtk_icon_view_get_item_padding ()</h3>
1259
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1260
+ <p>
1261
+ Returns the value of the ::item-padding property.
1262
+ </p>
1263
+ <div class="variablelist"><table border="0">
1264
+ <col align="left" valign="top">
1265
+ <tbody>
1266
+ <tr>
1267
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1268
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1269
+ </td>
1270
+ </tr>
1271
+ <tr>
1272
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1273
+ <td>the padding around items</td>
1274
+ </tr>
1275
+ </tbody>
1276
+ </table></div>
1277
+ <p class="since">Since 2.18</p>
1278
+ </div>
1279
+ <hr>
1280
+ <div class="refsect2">
1281
+ <a name="gtk-icon-view-select-path"></a><h3>gtk_icon_view_select_path ()</h3>
1282
+ <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>,
1283
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1284
+ <p>
1285
+ Selects the row at <em class="parameter"><code>path</code></em>.
1286
+ </p>
1287
+ <div class="variablelist"><table border="0">
1288
+ <col align="left" valign="top">
1289
+ <tbody>
1290
+ <tr>
1291
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1292
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1293
+ </tr>
1294
+ <tr>
1295
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1296
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be selected.</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-unselect-path"></a><h3>gtk_icon_view_unselect_path ()</h3>
1305
+ <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>,
1306
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1307
+ <p>
1308
+ Unselects the row at <em class="parameter"><code>path</code></em>.
1309
+ </p>
1310
+ <div class="variablelist"><table border="0">
1311
+ <col align="left" valign="top">
1312
+ <tbody>
1313
+ <tr>
1314
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1315
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1316
+ </tr>
1317
+ <tr>
1318
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1319
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be unselected.</td>
1320
+ </tr>
1321
+ </tbody>
1322
+ </table></div>
1323
+ <p class="since">Since 2.6</p>
1324
+ </div>
1325
+ <hr>
1326
+ <div class="refsect2">
1327
+ <a name="gtk-icon-view-path-is-selected"></a><h3>gtk_icon_view_path_is_selected ()</h3>
1328
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
1329
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1330
+ <p>
1331
+ Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon pointed to by <em class="parameter"><code>path</code></em> is currently
1332
+ selected. If <em class="parameter"><code>path</code></em> does not point to a valid location, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned.
1333
+ </p>
1334
+ <div class="variablelist"><table border="0">
1335
+ <col align="left" valign="top">
1336
+ <tbody>
1337
+ <tr>
1338
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1339
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1340
+ </tr>
1341
+ <tr>
1342
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1343
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to check selection on.</td>
1344
+ </tr>
1345
+ <tr>
1346
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1347
+ <td>
1348
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>path</code></em> is selected.</td>
1349
+ </tr>
1350
+ </tbody>
1351
+ </table></div>
1352
+ <p class="since">Since 2.6</p>
1353
+ </div>
1354
+ <hr>
1355
+ <div class="refsect2">
1356
+ <a name="gtk-icon-view-get-selected-items"></a><h3>gtk_icon_view_get_selected_items ()</h3>
1357
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * 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>
1358
+ <p>
1359
+ Creates a list of paths of all selected items. Additionally, if you are
1360
+ planning on modifying the model after calling this function, you may
1361
+ 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.
1362
+ 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>.
1363
+ </p>
1364
+ <p>
1365
+ To free the return value, use:
1366
+ </p>
1367
+ <div class="informalexample">
1368
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1369
+ <tbody>
1370
+ <tr>
1371
+ <td class="listing_lines" align="right"><pre>1
1372
+ 2</pre></td>
1373
+ <td class="listing_code"><pre class="programlisting"><span class="function"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-foreach">g_list_foreach</a></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"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GFunc">GFunc</a></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><span class="normal"> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">);</span>
1374
+ <span class="function"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free">g_list_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list</span><span class="symbol">);</span></pre></td>
1375
+ </tr>
1376
+ </tbody>
1377
+ </table>
1378
+ </div>
1379
+
1380
+ <p>
1381
+ </p>
1382
+ <div class="variablelist"><table border="0">
1383
+ <col align="left" valign="top">
1384
+ <tbody>
1385
+ <tr>
1386
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1387
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1388
+ </tr>
1389
+ <tr>
1390
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1391
+ <td>A <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> 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>
1392
+ </td>
1393
+ </tr>
1394
+ </tbody>
1395
+ </table></div>
1396
+ <p class="since">Since 2.6</p>
1397
+ </div>
1398
+ <hr>
1399
+ <div class="refsect2">
1400
+ <a name="gtk-icon-view-select-all"></a><h3>gtk_icon_view_select_all ()</h3>
1401
+ <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>
1402
+ <p>
1403
+ Selects all the icons. <em class="parameter"><code>icon_view</code></em> must has its selection mode set
1404
+ to <a class="link" href="gtk-Standard-Enumerations.html#GTK-SELECTION-MULTIPLE:CAPS"><span class="type">GTK_SELECTION_MULTIPLE</span></a>.
1405
+ </p>
1406
+ <div class="variablelist"><table border="0">
1407
+ <col align="left" valign="top">
1408
+ <tbody><tr>
1409
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1410
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1411
+ </tr></tbody>
1412
+ </table></div>
1413
+ <p class="since">Since 2.6</p>
1414
+ </div>
1415
+ <hr>
1416
+ <div class="refsect2">
1417
+ <a name="gtk-icon-view-unselect-all"></a><h3>gtk_icon_view_unselect_all ()</h3>
1418
+ <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>
1419
+ <p>
1420
+ Unselects all the icons.
1421
+ </p>
1422
+ <div class="variablelist"><table border="0">
1423
+ <col align="left" valign="top">
1424
+ <tbody><tr>
1425
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1426
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1427
+ </tr></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-item-activated"></a><h3>gtk_icon_view_item_activated ()</h3>
1434
+ <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>,
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
+ Activates the item determined by <em class="parameter"><code>path</code></em>.
1438
+ </p>
1439
+ <div class="variablelist"><table border="0">
1440
+ <col align="left" valign="top">
1441
+ <tbody>
1442
+ <tr>
1443
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1444
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1445
+ </td>
1446
+ </tr>
1447
+ <tr>
1448
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1449
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be activated</td>
1450
+ </tr>
1451
+ </tbody>
1452
+ </table></div>
1453
+ <p class="since">Since 2.6</p>
1454
+ </div>
1455
+ <hr>
1456
+ <div class="refsect2">
1457
+ <a name="gtk-icon-view-scroll-to-path"></a><h3>gtk_icon_view_scroll_to_path ()</h3>
1458
+ <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>,
1459
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1460
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_align</code></em>,
1461
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> row_align</code></em>,
1462
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> col_align</code></em>);</pre>
1463
+ <p>
1464
+ Moves the alignments of <em class="parameter"><code>icon_view</code></em> to the position specified by <em class="parameter"><code>path</code></em>.
1465
+ <em class="parameter"><code>row_align</code></em> determines where the row is placed, and <em class="parameter"><code>col_align</code></em> determines
1466
+ where <em class="parameter"><code>column</code></em> is placed. Both are expected to be between 0.0 and 1.0.
1467
+ 0.0 means left/top alignment, 1.0 means right/bottom alignment, 0.5 means
1468
+ center.
1469
+ </p>
1470
+ <p>
1471
+ If <em class="parameter"><code>use_align</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, then the alignment arguments are ignored, and the
1472
+ tree does the minimum amount of work to scroll the item onto the screen.
1473
+ This means that the item will be scrolled to the edge closest to its current
1474
+ position. If the item is currently visible on the screen, nothing is done.
1475
+ </p>
1476
+ <p>
1477
+ This function only works if the model is set, and <em class="parameter"><code>path</code></em> is a valid row on
1478
+ the model. If the model changes before the <em class="parameter"><code>icon_view</code></em> is realized, the
1479
+ centered path will be modified to reflect this change.
1480
+ </p>
1481
+ <div class="variablelist"><table border="0">
1482
+ <col align="left" valign="top">
1483
+ <tbody>
1484
+ <tr>
1485
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1486
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1487
+ </tr>
1488
+ <tr>
1489
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1490
+ <td>The path of the item to move to.</td>
1491
+ </tr>
1492
+ <tr>
1493
+ <td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
1494
+ <td>whether to use alignment arguments, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
1495
+ </tr>
1496
+ <tr>
1497
+ <td><p><span class="term"><em class="parameter"><code>row_align</code></em> :</span></p></td>
1498
+ <td>The vertical alignment of the item specified by <em class="parameter"><code>path</code></em>.</td>
1499
+ </tr>
1500
+ <tr>
1501
+ <td><p><span class="term"><em class="parameter"><code>col_align</code></em> :</span></p></td>
1502
+ <td>The horizontal alignment of the item specified by <em class="parameter"><code>path</code></em>.</td>
1503
+ </tr>
1504
+ </tbody>
1505
+ </table></div>
1506
+ <p class="since">Since 2.8</p>
1507
+ </div>
1508
+ <hr>
1509
+ <div class="refsect2">
1510
+ <a name="gtk-icon-view-get-visible-range"></a><h3>gtk_icon_view_get_visible_range ()</h3>
1511
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
1512
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
1513
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);</pre>
1514
+ <p>
1515
+ 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.
1516
+ Note that there may be invisible paths in between.
1517
+ </p>
1518
+ <p>
1519
+ 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.
1520
+ </p>
1521
+ <div class="variablelist"><table border="0">
1522
+ <col align="left" valign="top">
1523
+ <tbody>
1524
+ <tr>
1525
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1526
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1527
+ </td>
1528
+ </tr>
1529
+ <tr>
1530
+ <td><p><span class="term"><em class="parameter"><code>start_path</code></em> :</span></p></td>
1531
+ <td>Return location for start of region, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
1532
+ </td>
1533
+ </tr>
1534
+ <tr>
1535
+ <td><p><span class="term"><em class="parameter"><code>end_path</code></em> :</span></p></td>
1536
+ <td>Return location for end of region, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
1537
+ </td>
1538
+ </tr>
1539
+ <tr>
1540
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1541
+ <td>
1542
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if valid paths were placed in <em class="parameter"><code>start_path</code></em> and <em class="parameter"><code>end_path</code></em>
1543
+ </td>
1544
+ </tr>
1545
+ </tbody>
1546
+ </table></div>
1547
+ <p class="since">Since 2.8</p>
1548
+ </div>
1549
+ <hr>
1550
+ <div class="refsect2">
1551
+ <a name="gtk-icon-view-set-tooltip-item"></a><h3>gtk_icon_view_set_tooltip_item ()</h3>
1552
+ <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>,
1553
+ <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
1554
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1555
+ <p>
1556
+ 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>.
1557
+ 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.
1558
+ 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>.
1559
+ </p>
1560
+ <div class="variablelist"><table border="0">
1561
+ <col align="left" valign="top">
1562
+ <tbody>
1563
+ <tr>
1564
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1565
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1566
+ </td>
1567
+ </tr>
1568
+ <tr>
1569
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
1570
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
1571
+ </td>
1572
+ </tr>
1573
+ <tr>
1574
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1575
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1576
+ </td>
1577
+ </tr>
1578
+ </tbody>
1579
+ </table></div>
1580
+ <p class="since">Since 2.12</p>
1581
+ </div>
1582
+ <hr>
1583
+ <div class="refsect2">
1584
+ <a name="gtk-icon-view-set-tooltip-cell"></a><h3>gtk_icon_view_set_tooltip_cell ()</h3>
1585
+ <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>,
1586
+ <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
1587
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1588
+ <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);</pre>
1589
+ <p>
1590
+ 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
1591
+ 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>.
1592
+ </p>
1593
+ <p>
1594
+ 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.
1595
+ </p>
1596
+ <div class="variablelist"><table border="0">
1597
+ <col align="left" valign="top">
1598
+ <tbody>
1599
+ <tr>
1600
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1601
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1602
+ </td>
1603
+ </tr>
1604
+ <tr>
1605
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
1606
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
1607
+ </td>
1608
+ </tr>
1609
+ <tr>
1610
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1611
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1612
+ </td>
1613
+ </tr>
1614
+ <tr>
1615
+ <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
1616
+ <td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
1617
+ </td>
1618
+ </tr>
1619
+ </tbody>
1620
+ </table></div>
1621
+ <p class="since">Since 2.12</p>
1622
+ </div>
1623
+ <hr>
1624
+ <div class="refsect2">
1625
+ <a name="gtk-icon-view-get-tooltip-context"></a><h3>gtk_icon_view_get_tooltip_context ()</h3>
1626
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
1627
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
1628
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
1629
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> keyboard_tip</code></em>,
1630
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
1631
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
1632
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1633
+ <p>
1634
+ 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>
1635
+ 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
1636
+ which are received in the signal handler, should be passed to this
1637
+ function without modification.
1638
+ </p>
1639
+ <p>
1640
+ The return value indicates whether there is an icon view item at the given
1641
+ coordinates (<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>) or not (<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>) for mouse tooltips. For keyboard
1642
+ tooltips the item returned will be the cursor item. When <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then any of
1643
+ <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
1644
+ 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
1645
+ 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 <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
1646
+ </p>
1647
+ <div class="variablelist"><table border="0">
1648
+ <col align="left" valign="top">
1649
+ <tbody>
1650
+ <tr>
1651
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1652
+ <td>an <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1653
+ </td>
1654
+ </tr>
1655
+ <tr>
1656
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1657
+ <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>
1658
+ </td>
1659
+ </tr>
1660
+ <tr>
1661
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1662
+ <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>
1663
+ </td>
1664
+ </tr>
1665
+ <tr>
1666
+ <td><p><span class="term"><em class="parameter"><code>keyboard_tip</code></em> :</span></p></td>
1667
+ <td>whether this is a keyboard tooltip or not</td>
1668
+ </tr>
1669
+ <tr>
1670
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
1671
+ <td>a pointer to receive a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
1672
+ </td>
1673
+ </tr>
1674
+ <tr>
1675
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1676
+ <td>a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
1677
+ </td>
1678
+ </tr>
1679
+ <tr>
1680
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1681
+ <td>a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
1682
+ </td>
1683
+ </tr>
1684
+ <tr>
1685
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1686
+ <td>whether or not the given tooltip context points to a item</td>
1687
+ </tr>
1688
+ </tbody>
1689
+ </table></div>
1690
+ <p class="since">Since 2.12</p>
1691
+ </div>
1692
+ <hr>
1693
+ <div class="refsect2">
1694
+ <a name="gtk-icon-view-set-tooltip-column"></a><h3>gtk_icon_view_set_tooltip_column ()</h3>
1695
+ <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>,
1696
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
1697
+ <p>
1698
+ If you only plan to have simple (text-only) tooltips on full items, you
1699
+ can use this function to have <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> handle these automatically
1700
+ 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
1701
+ containing the tooltip texts, or -1 to disable this feature.
1702
+ </p>
1703
+ <p>
1704
+ When enabled, <span class="type">"has-tooltip"</span> will be set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and
1705
+ <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.
1706
+ </p>
1707
+ <div class="variablelist"><table border="0">
1708
+ <col align="left" valign="top">
1709
+ <tbody>
1710
+ <tr>
1711
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1712
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1713
+ </td>
1714
+ </tr>
1715
+ <tr>
1716
+ <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1717
+ <td>an integer, which is a valid column number for <em class="parameter"><code>icon_view</code></em>'s model</td>
1718
+ </tr>
1719
+ </tbody>
1720
+ </table></div>
1721
+ <p class="since">Since 2.12</p>
1722
+ </div>
1723
+ <hr>
1724
+ <div class="refsect2">
1725
+ <a name="gtk-icon-view-get-tooltip-column"></a><h3>gtk_icon_view_get_tooltip_column ()</h3>
1726
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1727
+ <p>
1728
+ Returns the column of <em class="parameter"><code>icon_view</code></em>'s model which is being used for
1729
+ displaying tooltips on <em class="parameter"><code>icon_view</code></em>'s rows.
1730
+ </p>
1731
+ <div class="variablelist"><table border="0">
1732
+ <col align="left" valign="top">
1733
+ <tbody>
1734
+ <tr>
1735
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1736
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1737
+ </td>
1738
+ </tr>
1739
+ <tr>
1740
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1741
+ <td>the index of the tooltip column that is currently being
1742
+ used, or -1 if this is disabled.</td>
1743
+ </tr>
1744
+ </tbody>
1745
+ </table></div>
1746
+ <p class="since">Since 2.12</p>
1747
+ </div>
1748
+ <hr>
1749
+ <div class="refsect2">
1750
+ <a name="gtk-icon-view-get-item-row"></a><h3>gtk_icon_view_get_item_row ()</h3>
1751
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>,
1752
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1753
+ <p>
1754
+ Gets the row in which the item <em class="parameter"><code>path</code></em> is currently
1755
+ displayed. Row numbers start at 0.
1756
+ </p>
1757
+ <div class="variablelist"><table border="0">
1758
+ <col align="left" valign="top">
1759
+ <tbody>
1760
+ <tr>
1761
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1762
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1763
+ </td>
1764
+ </tr>
1765
+ <tr>
1766
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1767
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</td>
1768
+ </tr>
1769
+ <tr>
1770
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1771
+ <td>The row in which the item is displayed</td>
1772
+ </tr>
1773
+ </tbody>
1774
+ </table></div>
1775
+ <p class="since">Since 2.22</p>
1776
+ </div>
1777
+ <hr>
1778
+ <div class="refsect2">
1779
+ <a name="gtk-icon-view-get-item-column"></a><h3>gtk_icon_view_get_item_column ()</h3>
1780
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>,
1781
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1782
+ <p>
1783
+ Gets the column in which the item <em class="parameter"><code>path</code></em> is currently
1784
+ displayed. Column numbers start at 0.
1785
+ </p>
1786
+ <div class="variablelist"><table border="0">
1787
+ <col align="left" valign="top">
1788
+ <tbody>
1789
+ <tr>
1790
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1791
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1792
+ </td>
1793
+ </tr>
1794
+ <tr>
1795
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1796
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</td>
1797
+ </tr>
1798
+ <tr>
1799
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1800
+ <td>The column in which the item is displayed</td>
1801
+ </tr>
1802
+ </tbody>
1803
+ </table></div>
1804
+ <p class="since">Since 2.22</p>
1805
+ </div>
1806
+ <hr>
1807
+ <div class="refsect2">
1808
+ <a name="GtkIconViewDropPosition"></a><h3>enum GtkIconViewDropPosition</h3>
1809
+ <pre class="programlisting">typedef enum {
1810
+ GTK_ICON_VIEW_NO_DROP,
1811
+ GTK_ICON_VIEW_DROP_INTO,
1812
+ GTK_ICON_VIEW_DROP_LEFT,
1813
+ GTK_ICON_VIEW_DROP_RIGHT,
1814
+ GTK_ICON_VIEW_DROP_ABOVE,
1815
+ GTK_ICON_VIEW_DROP_BELOW
1816
+ } GtkIconViewDropPosition;
1817
+ </pre>
1818
+ <p>
1819
+ An enum for determining where a dropped item goes.
1820
+ </p>
1821
+ <div class="variablelist"><table border="0">
1822
+ <col align="left" valign="top">
1823
+ <tbody>
1824
+ <tr>
1825
+ <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>
1826
+ <td>no drop possible
1827
+ </td>
1828
+ </tr>
1829
+ <tr>
1830
+ <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>
1831
+ <td>dropped item replaces the item
1832
+ </td>
1833
+ </tr>
1834
+ <tr>
1835
+ <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>
1836
+ <td>droppped item is inserted to the left
1837
+ </td>
1838
+ </tr>
1839
+ <tr>
1840
+ <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>
1841
+ <td>dropped item is inserted to the right
1842
+ </td>
1843
+ </tr>
1844
+ <tr>
1845
+ <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>
1846
+ <td>dropped item is inserted above
1847
+ </td>
1848
+ </tr>
1849
+ <tr>
1850
+ <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>
1851
+ <td>dropped item is inserted below
1852
+ </td>
1853
+ </tr>
1854
+ </tbody>
1855
+ </table></div>
1856
+ </div>
1857
+ <hr>
1858
+ <div class="refsect2">
1859
+ <a name="gtk-icon-view-enable-model-drag-source"></a><h3>gtk_icon_view_enable_model_drag_source ()</h3>
1860
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_enable_model_drag_source
1861
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1862
+ <em class="parameter"><code><a href="../gdk/gdk-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
1863
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
1864
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
1865
+ <em class="parameter"><code><a href="../gdk/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
1866
+ <p>
1867
+ Turns <em class="parameter"><code>icon_view</code></em> into a drag source for automatic DND. Calling this
1868
+ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
1869
+ </p>
1870
+ <div class="variablelist"><table border="0">
1871
+ <col align="left" valign="top">
1872
+ <tbody>
1873
+ <tr>
1874
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1875
+ <td>a <span class="type">GtkIconTreeView</span>
1876
+ </td>
1877
+ </tr>
1878
+ <tr>
1879
+ <td><p><span class="term"><em class="parameter"><code>start_button_mask</code></em> :</span></p></td>
1880
+ <td>Mask of allowed buttons to start drag</td>
1881
+ </tr>
1882
+ <tr>
1883
+ <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
1884
+ <td>the table of targets that the drag will support</td>
1885
+ </tr>
1886
+ <tr>
1887
+ <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
1888
+ <td>the number of items in <em class="parameter"><code>targets</code></em>
1889
+ </td>
1890
+ </tr>
1891
+ <tr>
1892
+ <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
1893
+ <td>the bitmask of possible actions for a drag from this
1894
+ widget</td>
1895
+ </tr>
1896
+ </tbody>
1897
+ </table></div>
1898
+ <p class="since">Since 2.8</p>
1899
+ </div>
1900
+ <hr>
1901
+ <div class="refsect2">
1902
+ <a name="gtk-icon-view-enable-model-drag-dest"></a><h3>gtk_icon_view_enable_model_drag_dest ()</h3>
1903
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_enable_model_drag_dest
1904
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1905
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
1906
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
1907
+ <em class="parameter"><code><a href="../gdk/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
1908
+ <p>
1909
+ Turns <em class="parameter"><code>icon_view</code></em> into a drop destination for automatic DND. Calling this
1910
+ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
1911
+ </p>
1912
+ <div class="variablelist"><table border="0">
1913
+ <col align="left" valign="top">
1914
+ <tbody>
1915
+ <tr>
1916
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1917
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1918
+ </td>
1919
+ </tr>
1920
+ <tr>
1921
+ <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
1922
+ <td>the table of targets that the drag will support</td>
1923
+ </tr>
1924
+ <tr>
1925
+ <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
1926
+ <td>the number of items in <em class="parameter"><code>targets</code></em>
1927
+ </td>
1928
+ </tr>
1929
+ <tr>
1930
+ <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
1931
+ <td>the bitmask of possible actions for a drag to this
1932
+ widget</td>
1933
+ </tr>
1934
+ </tbody>
1935
+ </table></div>
1936
+ <p class="since">Since 2.8</p>
1937
+ </div>
1938
+ <hr>
1939
+ <div class="refsect2">
1940
+ <a name="gtk-icon-view-unset-model-drag-source"></a><h3>gtk_icon_view_unset_model_drag_source ()</h3>
1941
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_unset_model_drag_source
1942
+ (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
1943
+ <p>
1944
+ 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
1945
+ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
1946
+ </p>
1947
+ <div class="variablelist"><table border="0">
1948
+ <col align="left" valign="top">
1949
+ <tbody><tr>
1950
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1951
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
1952
+ </td>
1953
+ </tr></tbody>
1954
+ </table></div>
1955
+ <p class="since">Since 2.8</p>
1956
+ </div>
1957
+ <hr>
1958
+ <div class="refsect2">
1959
+ <a name="gtk-icon-view-unset-model-drag-dest"></a><h3>gtk_icon_view_unset_model_drag_dest ()</h3>
1960
+ <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>
1961
+ <p>
1962
+ 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
1963
+ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
1964
+ </p>
1965
+ <div class="variablelist"><table border="0">
1966
+ <col align="left" valign="top">
1967
+ <tbody><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></tbody>
1972
+ </table></div>
1973
+ <p class="since">Since 2.8</p>
1974
+ </div>
1975
+ <hr>
1976
+ <div class="refsect2">
1977
+ <a name="gtk-icon-view-set-reorderable"></a><h3>gtk_icon_view_set_reorderable ()</h3>
1978
+ <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>,
1979
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> reorderable</code></em>);</pre>
1980
+ <p>
1981
+ This function is a convenience function to allow you to reorder models that
1982
+ support the <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSourceIface" title="struct GtkTreeDragSourceIface"><span class="type">GtkTreeDragSourceIface</span></a> and the <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragDestIface" title="struct GtkTreeDragDestIface"><span class="type">GtkTreeDragDestIface</span></a>. Both
1983
+ <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 <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then
1984
+ the user can reorder the model by dragging and dropping rows. The
1985
+ developer can listen to these changes by connecting to the model's
1986
+ row_inserted and row_deleted signals. The reordering is implemented by setting up
1987
+ the icon view as a drag source and destination. Therefore, drag and
1988
+ drop can not be used in a reorderable view for any other purpose.
1989
+ </p>
1990
+ <p>
1991
+ This function does not give you any degree of control over the order -- any
1992
+ reordering is allowed. If more control is needed, you should probably
1993
+ handle drag and drop manually.
1994
+ </p>
1995
+ <div class="variablelist"><table border="0">
1996
+ <col align="left" valign="top">
1997
+ <tbody>
1998
+ <tr>
1999
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2000
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
2001
+ </tr>
2002
+ <tr>
2003
+ <td><p><span class="term"><em class="parameter"><code>reorderable</code></em> :</span></p></td>
2004
+ <td>
2005
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the list of items can be reordered.</td>
2006
+ </tr>
2007
+ </tbody>
2008
+ </table></div>
2009
+ <p class="since">Since 2.8</p>
2010
+ </div>
2011
+ <hr>
2012
+ <div class="refsect2">
2013
+ <a name="gtk-icon-view-get-reorderable"></a><h3>gtk_icon_view_get_reorderable ()</h3>
2014
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
2015
+ <p>
2016
+ Retrieves whether the user can reorder the list via drag-and-drop.
2017
+ 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>.
2018
+ </p>
2019
+ <div class="variablelist"><table border="0">
2020
+ <col align="left" valign="top">
2021
+ <tbody>
2022
+ <tr>
2023
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2024
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2025
+ </td>
2026
+ </tr>
2027
+ <tr>
2028
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2029
+ <td>
2030
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the list can be reordered.</td>
2031
+ </tr>
2032
+ </tbody>
2033
+ </table></div>
2034
+ <p class="since">Since 2.8</p>
2035
+ </div>
2036
+ <hr>
2037
+ <div class="refsect2">
2038
+ <a name="gtk-icon-view-set-drag-dest-item"></a><h3>gtk_icon_view_set_drag_dest_item ()</h3>
2039
+ <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>,
2040
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2041
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> pos</code></em>);</pre>
2042
+ <p>
2043
+ Sets the item that is highlighted for feedback.
2044
+ </p>
2045
+ <div class="variablelist"><table border="0">
2046
+ <col align="left" valign="top">
2047
+ <tbody>
2048
+ <tr>
2049
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2050
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2051
+ </td>
2052
+ </tr>
2053
+ <tr>
2054
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2055
+ <td>The path of the item to highlight, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
2056
+ </td>
2057
+ </tr>
2058
+ <tr>
2059
+ <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2060
+ <td>Specifies where to drop, relative to the item</td>
2061
+ </tr>
2062
+ </tbody>
2063
+ </table></div>
2064
+ <p class="since">Since 2.8</p>
2065
+ </div>
2066
+ <hr>
2067
+ <div class="refsect2">
2068
+ <a name="gtk-icon-view-get-drag-dest-item"></a><h3>gtk_icon_view_get_drag_dest_item ()</h3>
2069
+ <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>,
2070
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2071
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
2072
+ <p>
2073
+ Gets information about the item that is highlighted for feedback.
2074
+ </p>
2075
+ <div class="variablelist"><table border="0">
2076
+ <col align="left" valign="top">
2077
+ <tbody>
2078
+ <tr>
2079
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2080
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2081
+ </td>
2082
+ </tr>
2083
+ <tr>
2084
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2085
+ <td>Return location for the path of the highlighted item, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
2086
+ </td>
2087
+ </tr>
2088
+ <tr>
2089
+ <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2090
+ <td>Return location for the drop position, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
2091
+ </td>
2092
+ </tr>
2093
+ </tbody>
2094
+ </table></div>
2095
+ <p class="since">Since 2.8</p>
2096
+ </div>
2097
+ <hr>
2098
+ <div class="refsect2">
2099
+ <a name="gtk-icon-view-get-dest-item-at-pos"></a><h3>gtk_icon_view_get_dest_item_at_pos ()</h3>
2100
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
2101
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_x</code></em>,
2102
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_y</code></em>,
2103
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2104
+ <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
2105
+ <p>
2106
+ Determines the destination item for a given position.
2107
+ </p>
2108
+ <div class="variablelist"><table border="0">
2109
+ <col align="left" valign="top">
2110
+ <tbody>
2111
+ <tr>
2112
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2113
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2114
+ </td>
2115
+ </tr>
2116
+ <tr>
2117
+ <td><p><span class="term"><em class="parameter"><code>drag_x</code></em> :</span></p></td>
2118
+ <td>the position to determine the destination item for</td>
2119
+ </tr>
2120
+ <tr>
2121
+ <td><p><span class="term"><em class="parameter"><code>drag_y</code></em> :</span></p></td>
2122
+ <td>the position to determine the destination item for</td>
2123
+ </tr>
2124
+ <tr>
2125
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2126
+ <td>Return location for the path of the item, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
2127
+ </td>
2128
+ </tr>
2129
+ <tr>
2130
+ <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2131
+ <td>Return location for the drop position, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
2132
+ </td>
2133
+ </tr>
2134
+ <tr>
2135
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2136
+ <td>whether there is an item at the given position.</td>
2137
+ </tr>
2138
+ </tbody>
2139
+ </table></div>
2140
+ <p class="since">Since 2.8</p>
2141
+ </div>
2142
+ <hr>
2143
+ <div class="refsect2">
2144
+ <a name="gtk-icon-view-create-drag-icon"></a><h3>gtk_icon_view_create_drag_icon ()</h3>
2145
+ <pre class="programlisting"><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</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>,
2146
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
2147
+ <p>
2148
+ Creates a <a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> representation of the item at <em class="parameter"><code>path</code></em>.
2149
+ This image is used for a drag icon.
2150
+ </p>
2151
+ <div class="variablelist"><table border="0">
2152
+ <col align="left" valign="top">
2153
+ <tbody>
2154
+ <tr>
2155
+ <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
2156
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
2157
+ </td>
2158
+ </tr>
2159
+ <tr>
2160
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2161
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> in <em class="parameter"><code>icon_view</code></em>
2162
+ </td>
2163
+ </tr>
2164
+ <tr>
2165
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2166
+ <td>a newly-allocated pixmap of the drag icon. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2167
+ </td>
2168
+ </tr>
2169
+ </tbody>
2170
+ </table></div>
2171
+ <p class="since">Since 2.8</p>
2172
+ </div>
2173
+ </div>
2174
+ <div class="refsect1">
2175
+ <a name="GtkIconView.property-details"></a><h2>Property Details</h2>
2176
+ <div class="refsect2">
2177
+ <a name="GtkIconView--column-spacing"></a><h3>The <code class="literal">"column-spacing"</code> property</h3>
2178
+ <pre class="programlisting"> "column-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2179
+ <p>
2180
+ The column-spacing property specifies the space which is inserted between
2181
+ the columns of the icon view.
2182
+ </p>
2183
+ <p>Allowed values: &gt;= 0</p>
2184
+ <p>Default value: 6</p>
2185
+ <p class="since">Since 2.6</p>
2186
+ </div>
2187
+ <hr>
2188
+ <div class="refsect2">
2189
+ <a name="GtkIconView--columns"></a><h3>The <code class="literal">"columns"</code> property</h3>
2190
+ <pre class="programlisting"> "columns" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2191
+ <p>
2192
+ The columns property contains the number of the columns in which the
2193
+ items should be displayed. If it is -1, the number of columns will
2194
+ be chosen automatically to fill the available area.
2195
+ </p>
2196
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2197
+ <p>Default value: -1</p>
2198
+ <p class="since">Since 2.6</p>
2199
+ </div>
2200
+ <hr>
2201
+ <div class="refsect2">
2202
+ <a name="GtkIconView--item-orientation"></a><h3>The <code class="literal">"item-orientation"</code> property</h3>
2203
+ <pre class="programlisting"> "item-orientation" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write</pre>
2204
+ <p>
2205
+ The item-orientation property specifies how the cells (i.e. the icon and
2206
+ the text) of the item are positioned relative to each other.
2207
+ </p>
2208
+ <p>Default value: GTK_ORIENTATION_VERTICAL</p>
2209
+ <p class="since">Since 2.22</p>
2210
+ </div>
2211
+ <hr>
2212
+ <div class="refsect2">
2213
+ <a name="GtkIconView--item-padding"></a><h3>The <code class="literal">"item-padding"</code> property</h3>
2214
+ <pre class="programlisting"> "item-padding" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2215
+ <p>
2216
+ The item-padding property specifies the padding around each
2217
+ of the icon view's item.
2218
+ </p>
2219
+ <p>Allowed values: &gt;= 0</p>
2220
+ <p>Default value: 6</p>
2221
+ <p class="since">Since 2.18</p>
2222
+ </div>
2223
+ <hr>
2224
+ <div class="refsect2">
2225
+ <a name="GtkIconView--item-width"></a><h3>The <code class="literal">"item-width"</code> property</h3>
2226
+ <pre class="programlisting"> "item-width" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2227
+ <p>
2228
+ The item-width property specifies the width to use for each item.
2229
+ If it is set to -1, the icon view will automatically determine a
2230
+ suitable item size.
2231
+ </p>
2232
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2233
+ <p>Default value: -1</p>
2234
+ <p class="since">Since 2.6</p>
2235
+ </div>
2236
+ <hr>
2237
+ <div class="refsect2">
2238
+ <a name="GtkIconView--margin"></a><h3>The <code class="literal">"margin"</code> property</h3>
2239
+ <pre class="programlisting"> "margin" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2240
+ <p>
2241
+ The margin property specifies the space which is inserted
2242
+ at the edges of the icon view.
2243
+ </p>
2244
+ <p>Allowed values: &gt;= 0</p>
2245
+ <p>Default value: 6</p>
2246
+ <p class="since">Since 2.6</p>
2247
+ </div>
2248
+ <hr>
2249
+ <div class="refsect2">
2250
+ <a name="GtkIconView--markup-column"></a><h3>The <code class="literal">"markup-column"</code> property</h3>
2251
+ <pre class="programlisting"> "markup-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2252
+ <p>
2253
+ The ::markup-column property contains the number of the model column
2254
+ containing markup information to be displayed. The markup column must be
2255
+ of type <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><span class="type">G_TYPE_STRING</span></a>. If this property and the :text-column property
2256
+ are both set to column numbers, it overrides the text column.
2257
+ If both are set to -1, no texts are displayed.
2258
+ </p>
2259
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2260
+ <p>Default value: -1</p>
2261
+ <p class="since">Since 2.6</p>
2262
+ </div>
2263
+ <hr>
2264
+ <div class="refsect2">
2265
+ <a name="GtkIconView--model"></a><h3>The <code class="literal">"model"</code> property</h3>
2266
+ <pre class="programlisting"> "model" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write</pre>
2267
+ <p>The model for the icon view.</p>
2268
+ </div>
2269
+ <hr>
2270
+ <div class="refsect2">
2271
+ <a name="GtkIconView--orientation"></a><h3>The <code class="literal">"orientation"</code> property</h3>
2272
+ <pre class="programlisting"> "orientation" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write</pre>
2273
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2274
+ <h3 class="title">Warning</h3>
2275
+ <p><code class="literal">GtkIconView:orientation</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use the <span class="type">"item-orientation"</span> property</p>
2276
+ </div>
2277
+ <p>
2278
+ The orientation property specifies how the cells (i.e. the icon and
2279
+ the text) of the item are positioned relative to each other.
2280
+ </p>
2281
+ <p>Default value: GTK_ORIENTATION_VERTICAL</p>
2282
+ <p class="since">Since 2.6</p>
2283
+ </div>
2284
+ <hr>
2285
+ <div class="refsect2">
2286
+ <a name="GtkIconView--pixbuf-column"></a><h3>The <code class="literal">"pixbuf-column"</code> property</h3>
2287
+ <pre class="programlisting"> "pixbuf-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2288
+ <p>
2289
+ The ::pixbuf-column property contains the number of the model column
2290
+ containing the pixbufs which are displayed. The pixbuf column must be
2291
+ of type <span class="type">GDK_TYPE_PIXBUF</span>. Setting this property to -1 turns off the
2292
+ display of pixbufs.
2293
+ </p>
2294
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2295
+ <p>Default value: -1</p>
2296
+ <p class="since">Since 2.6</p>
2297
+ </div>
2298
+ <hr>
2299
+ <div class="refsect2">
2300
+ <a name="GtkIconView--reorderable"></a><h3>The <code class="literal">"reorderable"</code> property</h3>
2301
+ <pre class="programlisting"> "reorderable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2302
+ <p>
2303
+ The reorderable property specifies if the items can be reordered
2304
+ by DND.
2305
+ </p>
2306
+ <p>Default value: FALSE</p>
2307
+ <p class="since">Since 2.8</p>
2308
+ </div>
2309
+ <hr>
2310
+ <div class="refsect2">
2311
+ <a name="GtkIconView--row-spacing"></a><h3>The <code class="literal">"row-spacing"</code> property</h3>
2312
+ <pre class="programlisting"> "row-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2313
+ <p>
2314
+ The row-spacing property specifies the space which is inserted between
2315
+ the rows of the icon view.
2316
+ </p>
2317
+ <p>Allowed values: &gt;= 0</p>
2318
+ <p>Default value: 6</p>
2319
+ <p class="since">Since 2.6</p>
2320
+ </div>
2321
+ <hr>
2322
+ <div class="refsect2">
2323
+ <a name="GtkIconView--selection-mode"></a><h3>The <code class="literal">"selection-mode"</code> property</h3>
2324
+ <pre class="programlisting"> "selection-mode" <a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> : Read / Write</pre>
2325
+ <p>
2326
+ The ::selection-mode property specifies the selection mode of
2327
+ icon view. If the mode is <a class="link" href="gtk-Standard-Enumerations.html#GTK-SELECTION-MULTIPLE:CAPS"><span class="type">GTK_SELECTION_MULTIPLE</span></a>, rubberband selection
2328
+ is enabled, for the other modes, only keyboard selection is possible.
2329
+ </p>
2330
+ <p>Default value: GTK_SELECTION_SINGLE</p>
2331
+ <p class="since">Since 2.6</p>
2332
+ </div>
2333
+ <hr>
2334
+ <div class="refsect2">
2335
+ <a name="GtkIconView--spacing"></a><h3>The <code class="literal">"spacing"</code> property</h3>
2336
+ <pre class="programlisting"> "spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2337
+ <p>
2338
+ The spacing property specifies the space which is inserted between
2339
+ the cells (i.e. the icon and the text) of an item.
2340
+ </p>
2341
+ <p>Allowed values: &gt;= 0</p>
2342
+ <p>Default value: 0</p>
2343
+ <p class="since">Since 2.6</p>
2344
+ </div>
2345
+ <hr>
2346
+ <div class="refsect2">
2347
+ <a name="GtkIconView--text-column"></a><h3>The <code class="literal">"text-column"</code> property</h3>
2348
+ <pre class="programlisting"> "text-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2349
+ <p>
2350
+ The ::text-column property contains the number of the model column
2351
+ containing the texts which are displayed. The text column must be
2352
+ of type <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><span class="type">G_TYPE_STRING</span></a>. If this property and the :markup-column
2353
+ property are both set to -1, no texts are displayed.
2354
+ </p>
2355
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2356
+ <p>Default value: -1</p>
2357
+ <p class="since">Since 2.6</p>
2358
+ </div>
2359
+ <hr>
2360
+ <div class="refsect2">
2361
+ <a name="GtkIconView--tooltip-column"></a><h3>The <code class="literal">"tooltip-column"</code> property</h3>
2362
+ <pre class="programlisting"> "tooltip-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2363
+ <p>The column in the model containing the tooltip texts for the items.</p>
2364
+ <p>Allowed values: &gt;= G_MAXULONG</p>
2365
+ <p>Default value: -1</p>
2366
+ </div>
2367
+ </div>
2368
+ <div class="refsect1">
2369
+ <a name="GtkIconView.style-property-details"></a><h2>Style Property Details</h2>
2370
+ <div class="refsect2">
2371
+ <a name="GtkIconView--s-selection-box-alpha"></a><h3>The <code class="literal">"selection-box-alpha"</code> style property</h3>
2372
+ <pre class="programlisting"> "selection-box-alpha" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guchar"><span class="type">guchar</span></a> : Read</pre>
2373
+ <p>Opacity of the selection box.</p>
2374
+ <p>Default value: 64</p>
2375
+ </div>
2376
+ <hr>
2377
+ <div class="refsect2">
2378
+ <a name="GtkIconView--s-selection-box-color"></a><h3>The <code class="literal">"selection-box-color"</code> style property</h3>
2379
+ <pre class="programlisting"> "selection-box-color" <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read</pre>
2380
+ <p>Color of the selection box.</p>
2381
+ </div>
2382
+ </div>
2383
+ <div class="refsect1">
2384
+ <a name="GtkIconView.signal-details"></a><h2>Signal Details</h2>
2385
+ <div class="refsect2">
2386
+ <a name="GtkIconView-activate-cursor-item"></a><h3>The <code class="literal">"activate-cursor-item"</code> signal</h3>
2387
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2388
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2389
+ <p>
2390
+ A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2391
+ which gets emitted when the user activates the currently
2392
+ focused item.
2393
+ </p>
2394
+ <p>
2395
+ Applications should not connect to it, but may emit it with
2396
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control activation
2397
+ programmatically.
2398
+ </p>
2399
+ <p>
2400
+ The default bindings for this signal are Space, Return and Enter.
2401
+ </p>
2402
+ <div class="variablelist"><table border="0">
2403
+ <col align="left" valign="top">
2404
+ <tbody>
2405
+ <tr>
2406
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2407
+ <td>the object on which the signal is emitted</td>
2408
+ </tr>
2409
+ <tr>
2410
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2411
+ <td>user data set when the signal handler was connected.</td>
2412
+ </tr>
2413
+ </tbody>
2414
+ </table></div>
2415
+ </div>
2416
+ <hr>
2417
+ <div class="refsect2">
2418
+ <a name="GtkIconView-item-activated"></a><h3>The <code class="literal">"item-activated"</code> signal</h3>
2419
+ <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,
2420
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
2421
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
2422
+ <p>
2423
+ The ::item-activated signal is emitted when the method
2424
+ <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
2425
+ clicks an item. It is also emitted when a non-editable item
2426
+ is selected and one of the keys: Space, Return or Enter is
2427
+ pressed.
2428
+ </p>
2429
+ <div class="variablelist"><table border="0">
2430
+ <col align="left" valign="top">
2431
+ <tbody>
2432
+ <tr>
2433
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2434
+ <td>the object on which the signal is emitted</td>
2435
+ </tr>
2436
+ <tr>
2437
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2438
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for the activated item</td>
2439
+ </tr>
2440
+ <tr>
2441
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2442
+ <td>user data set when the signal handler was connected.</td>
2443
+ </tr>
2444
+ </tbody>
2445
+ </table></div>
2446
+ </div>
2447
+ <hr>
2448
+ <div class="refsect2">
2449
+ <a name="GtkIconView-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
2450
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
2451
+ <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
2452
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2453
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2454
+ <p>
2455
+ The ::move-cursor signal is a
2456
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2457
+ which gets emitted when the user initiates a cursor movement.
2458
+ </p>
2459
+ <p>
2460
+ Applications should not connect to it, but may emit it with
2461
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control the cursor
2462
+ programmatically.
2463
+ </p>
2464
+ <p>
2465
+ The default bindings for this signal include
2466
+ </p>
2467
+ <div class="itemizedlist"><ul class="itemizedlist" type="disc">
2468
+ <li class="listitem">Arrow keys which move by individual steps</li>
2469
+ <li class="listitem">Home/End keys which move to the first/last item</li>
2470
+ <li class="listitem">PageUp/PageDown which move by "pages"</li>
2471
+ </ul></div>
2472
+ <p>
2473
+ </p>
2474
+ <p>
2475
+ All of these will extend the selection when combined with
2476
+ the Shift modifier.
2477
+ </p>
2478
+ <div class="variablelist"><table border="0">
2479
+ <col align="left" valign="top">
2480
+ <tbody>
2481
+ <tr>
2482
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2483
+ <td>the object which received the signal</td>
2484
+ </tr>
2485
+ <tr>
2486
+ <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
2487
+ <td>the granularity of the move, as a <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a>
2488
+ </td>
2489
+ </tr>
2490
+ <tr>
2491
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2492
+ <td>the number of <em class="parameter"><code>step</code></em> units to move</td>
2493
+ </tr>
2494
+ <tr>
2495
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2496
+ <td>user data set when the signal handler was connected.</td>
2497
+ </tr>
2498
+ </tbody>
2499
+ </table></div>
2500
+ </div>
2501
+ <hr>
2502
+ <div class="refsect2">
2503
+ <a name="GtkIconView-select-all"></a><h3>The <code class="literal">"select-all"</code> signal</h3>
2504
+ <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,
2505
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2506
+ <p>
2507
+ A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2508
+ which gets emitted when the user selects all items.
2509
+ </p>
2510
+ <p>
2511
+ Applications should not connect to it, but may emit it with
2512
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control selection
2513
+ programmatically.
2514
+ </p>
2515
+ <p>
2516
+ The default binding for this signal is Ctrl-a.
2517
+ </p>
2518
+ <div class="variablelist"><table border="0">
2519
+ <col align="left" valign="top">
2520
+ <tbody>
2521
+ <tr>
2522
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2523
+ <td>the object on which the signal is emitted</td>
2524
+ </tr>
2525
+ <tr>
2526
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2527
+ <td>user data set when the signal handler was connected.</td>
2528
+ </tr>
2529
+ </tbody>
2530
+ </table></div>
2531
+ </div>
2532
+ <hr>
2533
+ <div class="refsect2">
2534
+ <a name="GtkIconView-select-cursor-item"></a><h3>The <code class="literal">"select-cursor-item"</code> signal</h3>
2535
+ <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,
2536
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2537
+ <p>
2538
+ A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2539
+ which gets emitted when the user selects the item that is currently
2540
+ focused.
2541
+ </p>
2542
+ <p>
2543
+ Applications should not connect to it, but may emit it with
2544
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control selection
2545
+ programmatically.
2546
+ </p>
2547
+ <p>
2548
+ There is no default binding for this signal.
2549
+ </p>
2550
+ <div class="variablelist"><table border="0">
2551
+ <col align="left" valign="top">
2552
+ <tbody>
2553
+ <tr>
2554
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2555
+ <td>the object on which the signal is emitted</td>
2556
+ </tr>
2557
+ <tr>
2558
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2559
+ <td>user data set when the signal handler was connected.</td>
2560
+ </tr>
2561
+ </tbody>
2562
+ </table></div>
2563
+ </div>
2564
+ <hr>
2565
+ <div class="refsect2">
2566
+ <a name="GtkIconView-selection-changed"></a><h3>The <code class="literal">"selection-changed"</code> signal</h3>
2567
+ <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,
2568
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
2569
+ <p>
2570
+ The ::selection-changed signal is emitted when the selection
2571
+ (i.e. the set of selected items) changes.
2572
+ </p>
2573
+ <div class="variablelist"><table border="0">
2574
+ <col align="left" valign="top">
2575
+ <tbody>
2576
+ <tr>
2577
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2578
+ <td>the object on which the signal is emitted</td>
2579
+ </tr>
2580
+ <tr>
2581
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2582
+ <td>user data set when the signal handler was connected.</td>
2583
+ </tr>
2584
+ </tbody>
2585
+ </table></div>
2586
+ </div>
2587
+ <hr>
2588
+ <div class="refsect2">
2589
+ <a name="GtkIconView-set-scroll-adjustments"></a><h3>The <code class="literal">"set-scroll-adjustments"</code> signal</h3>
2590
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *horizontal,
2591
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *vertical,
2592
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *arg2,
2593
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
2594
+ <p>
2595
+ Set the scroll adjustments for the icon view. Usually scrolled containers
2596
+ like <a class="link" href="GtkScrolledWindow.html" title="GtkScrolledWindow"><span class="type">GtkScrolledWindow</span></a> will emit this signal to connect two instances
2597
+ of <a class="link" href="GtkScrollbar.html" title="GtkScrollbar"><span class="type">GtkScrollbar</span></a> to the scroll directions of the <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
2598
+ </p>
2599
+ <div class="variablelist"><table border="0">
2600
+ <col align="left" valign="top">
2601
+ <tbody>
2602
+ <tr>
2603
+ <td><p><span class="term"><em class="parameter"><code>horizontal</code></em> :</span></p></td>
2604
+ <td>the horizontal <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>
2605
+ </td>
2606
+ </tr>
2607
+ <tr>
2608
+ <td><p><span class="term"><em class="parameter"><code>vertical</code></em> :</span></p></td>
2609
+ <td>the vertical <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>
2610
+ </td>
2611
+ </tr>
2612
+ <tr>
2613
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2614
+ <td>user data set when the signal handler was connected.</td>
2615
+ </tr>
2616
+ </tbody>
2617
+ </table></div>
2618
+ </div>
2619
+ <hr>
2620
+ <div class="refsect2">
2621
+ <a name="GtkIconView-toggle-cursor-item"></a><h3>The <code class="literal">"toggle-cursor-item"</code> signal</h3>
2622
+ <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,
2623
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2624
+ <p>
2625
+ A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2626
+ which gets emitted when the user toggles whether the currently
2627
+ focused item is selected or not. The exact effect of this
2628
+ depend on the selection mode.
2629
+ </p>
2630
+ <p>
2631
+ Applications should not connect to it, but may emit it with
2632
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control selection
2633
+ programmatically.
2634
+ </p>
2635
+ <p>
2636
+ There is no default binding for this signal is Ctrl-Space.
2637
+ </p>
2638
+ <div class="variablelist"><table border="0">
2639
+ <col align="left" valign="top">
2640
+ <tbody>
2641
+ <tr>
2642
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2643
+ <td>the object on which the signal is emitted</td>
2644
+ </tr>
2645
+ <tr>
2646
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2647
+ <td>user data set when the signal handler was connected.</td>
2648
+ </tr>
2649
+ </tbody>
2650
+ </table></div>
2651
+ </div>
2652
+ <hr>
2653
+ <div class="refsect2">
2654
+ <a name="GtkIconView-unselect-all"></a><h3>The <code class="literal">"unselect-all"</code> signal</h3>
2655
+ <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,
2656
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2657
+ <p>
2658
+ A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2659
+ which gets emitted when the user unselects all items.
2660
+ </p>
2661
+ <p>
2662
+ Applications should not connect to it, but may emit it with
2663
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control selection
2664
+ programmatically.
2665
+ </p>
2666
+ <p>
2667
+ The default binding for this signal is Ctrl-Shift-a.
2668
+ </p>
2669
+ <div class="variablelist"><table border="0">
2670
+ <col align="left" valign="top">
2671
+ <tbody>
2672
+ <tr>
2673
+ <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2674
+ <td>the object on which the signal is emitted</td>
2675
+ </tr>
2676
+ <tr>
2677
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2678
+ <td>user data set when the signal handler was connected.</td>
2679
+ </tr>
2680
+ </tbody>
2681
+ </table></div>
2682
+ </div>
2683
+ </div>
2684
+ </div>
2685
+ <div class="footer">
2686
+ <hr>
2687
+ Generated by GTK-Doc V1.18</div>
2688
+ </body>
2689
+ </html>