gtk2 1.0.0-x86-mingw32 → 1.0.1-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (553) hide show
  1. data/ChangeLog +52 -0
  2. data/ext/gtk2/extconf.rb +18 -9
  3. data/ext/gtk2/rbgdk.h +3 -0
  4. data/ext/gtk2/rbgdkdragcontext.c +4 -4
  5. data/ext/gtk2/rbgdkevent.c +18 -5
  6. data/ext/gtk2/rbgdkpixmap.c +43 -48
  7. data/ext/gtk2/rbgdkproperty.c +6 -5
  8. data/ext/gtk2/rbgdkscreen.c +18 -74
  9. data/ext/gtk2/rbgdkselection.c +2 -2
  10. data/ext/gtk2/rbgdkwindow.c +11 -18
  11. data/ext/gtk2/rbgdkwindowattr.c +1 -1
  12. data/ext/gtk2/rbgtkaccelgroup.c +1 -1
  13. data/ext/gtk2/rbgtkaction.c +8 -26
  14. data/ext/gtk2/rbgtkactiongroup.c +6 -6
  15. data/ext/gtk2/rbgtkadjustment.c +20 -74
  16. data/ext/gtk2/rbgtkbindingset.c +1 -1
  17. data/ext/gtk2/rbgtkbuilder.c +2 -1
  18. data/ext/gtk2/rbgtkbutton.c +1 -9
  19. data/ext/gtk2/rbgtkcalendar.c +1 -1
  20. data/ext/gtk2/rbgtkcellrendererspinner.c +0 -3
  21. data/ext/gtk2/rbgtkcellrenderertext.c +1 -2
  22. data/ext/gtk2/rbgtkcellview.c +6 -11
  23. data/ext/gtk2/rbgtkcolorselectiondialog.c +2 -28
  24. data/ext/gtk2/rbgtkcombo.c +2 -2
  25. data/ext/gtk2/rbgtkcombobox.c +9 -29
  26. data/ext/gtk2/rbgtkcontainer.c +1 -1
  27. data/ext/gtk2/rbgtkcurve.c +4 -2
  28. data/ext/gtk2/rbgtkdialog.c +2 -3
  29. data/ext/gtk2/rbgtkdrag.c +3 -3
  30. data/ext/gtk2/rbgtkentry.c +2 -2
  31. data/ext/gtk2/rbgtkentrycompletion.c +1 -4
  32. data/ext/gtk2/rbgtkfilechooser.c +32 -29
  33. data/ext/gtk2/rbgtkfilechooserdialog.c +8 -6
  34. data/ext/gtk2/rbgtkfilefilter.c +8 -4
  35. data/ext/gtk2/rbgtkframe.c +3 -4
  36. data/ext/gtk2/rbgtkhandlebox.c +0 -7
  37. data/ext/gtk2/rbgtkicontheme.c +4 -13
  38. data/ext/gtk2/rbgtkiconview.c +4 -15
  39. data/ext/gtk2/rbgtkimcontext.c +1 -1
  40. data/ext/gtk2/rbgtkinvisible.c +5 -21
  41. data/ext/gtk2/rbgtkitemfactory.c +3 -3
  42. data/ext/gtk2/rbgtklabel.c +0 -2
  43. data/ext/gtk2/rbgtklinkbutton.c +0 -2
  44. data/ext/gtk2/rbgtkmain.c +7 -10
  45. data/ext/gtk2/rbgtkmenu.c +22 -74
  46. data/ext/gtk2/rbgtkmenuitem.c +16 -55
  47. data/ext/gtk2/rbgtkmenushell.c +3 -11
  48. data/ext/gtk2/rbgtkmessagedialog.c +11 -20
  49. data/ext/gtk2/rbgtknotebook.c +0 -1
  50. data/ext/gtk2/rbgtkoptionmenu.c +1 -2
  51. data/ext/gtk2/rbgtkprintjob.c +1 -2
  52. data/ext/gtk2/rbgtkprintoperation.c +0 -2
  53. data/ext/gtk2/rbgtkradioaction.c +2 -7
  54. data/ext/gtk2/rbgtkradiobutton.c +1 -1
  55. data/ext/gtk2/rbgtkradiomenuitem.c +4 -6
  56. data/ext/gtk2/rbgtkradiotoolbutton.c +2 -4
  57. data/ext/gtk2/rbgtkrange.c +1 -2
  58. data/ext/gtk2/rbgtkrc.c +8 -9
  59. data/ext/gtk2/rbgtkrcstyle.c +2 -2
  60. data/ext/gtk2/rbgtkrecentaction.c +0 -1
  61. data/ext/gtk2/rbgtkrecentchooser.c +3 -3
  62. data/ext/gtk2/rbgtkrecentdata.c +2 -9
  63. data/ext/gtk2/rbgtkrecentfilter.c +2 -1
  64. data/ext/gtk2/rbgtkrecentfilterinfo.c +5 -16
  65. data/ext/gtk2/rbgtkrecentinfo.c +2 -2
  66. data/ext/gtk2/rbgtkrecentmanager.c +1 -2
  67. data/ext/gtk2/rbgtkruler.c +6 -16
  68. data/ext/gtk2/rbgtkscalebutton.c +16 -48
  69. data/ext/gtk2/rbgtkscrolledwindow.c +1 -1
  70. data/ext/gtk2/rbgtkselectiondata.c +10 -34
  71. data/ext/gtk2/rbgtksettings.c +1 -1
  72. data/ext/gtk2/rbgtkspinner.c +0 -3
  73. data/ext/gtk2/rbgtkstatusbar.c +5 -16
  74. data/ext/gtk2/rbgtkstatusicon.c +2 -9
  75. data/ext/gtk2/rbgtkstock.c +4 -4
  76. data/ext/gtk2/rbgtktable.c +8 -13
  77. data/ext/gtk2/rbgtktextattributes.c +0 -2
  78. data/ext/gtk2/rbgtktextbuffer.c +17 -16
  79. data/ext/gtk2/rbgtktextmark.c +7 -14
  80. data/ext/gtk2/rbgtktexttag.c +1 -2
  81. data/ext/gtk2/rbgtktextview.c +3 -4
  82. data/ext/gtk2/rbgtktoggleaction.c +5 -16
  83. data/ext/gtk2/rbgtktogglebutton.c +1 -2
  84. data/ext/gtk2/rbgtktoggletoolbutton.c +5 -16
  85. data/ext/gtk2/rbgtktoolbar.c +8 -31
  86. data/ext/gtk2/rbgtktoolitem.c +3 -1
  87. data/ext/gtk2/rbgtktreerowreference.c +4 -4
  88. data/ext/gtk2/rbgtktreesortable.c +0 -3
  89. data/ext/gtk2/rbgtktreestore.c +10 -7
  90. data/ext/gtk2/rbgtktreeview.c +5 -8
  91. data/ext/gtk2/rbgtktreeviewcolumn.c +13 -34
  92. data/ext/gtk2/rbgtkuimanager.c +2 -3
  93. data/ext/gtk2/rbgtkwidget.c +24 -44
  94. data/ext/gtk2/rbgtkwindow.c +32 -92
  95. data/lib/1.8/gtk2.so +0 -0
  96. data/lib/1.9/gtk2.so +0 -0
  97. data/lib/gtk2/base.rb +1 -1
  98. data/vendor/local/bin/gtk-builder-convert +2 -29
  99. data/vendor/local/bin/gtk-demo.exe +0 -0
  100. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  101. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  102. data/vendor/local/bin/libgailutil-18.dll +0 -0
  103. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  104. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  105. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  106. data/vendor/local/include/gtk-2.0/gdk/gdk.h +5 -2
  107. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +0 -4
  108. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +0 -2
  109. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +0 -7
  110. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +4 -7
  111. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  112. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +0 -1
  113. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +0 -4
  114. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +9 -13
  115. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +0 -2
  116. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +0 -5
  117. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +6 -16
  118. data/vendor/local/include/gtk-2.0/gtk/gtk.h +0 -1
  119. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +1 -5
  120. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +3 -14
  121. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +0 -3
  122. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +0 -4
  123. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +0 -2
  124. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +2 -2
  125. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +3 -5
  126. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +0 -6
  127. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +0 -4
  128. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +0 -2
  129. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  130. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +0 -4
  131. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1 -5
  132. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +1 -2
  133. data/vendor/local/lib/gailutil.lib +0 -0
  134. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  135. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  136. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  137. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  138. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  139. data/vendor/local/lib/libgailutil.dll.a +0 -0
  140. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  141. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  142. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  143. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  144. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  145. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  146. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  147. data/vendor/local/manifest/{gtk+-dev_2.24.0-1_win32.mft → gtk+-dev_2.22.1-1_win32.mft} +6 -9
  148. data/vendor/local/manifest/{gtk+_2.24.0-1_win32.mft → gtk+_2.22.1-1_win32.mft} +6 -2
  149. data/vendor/local/share/doc/{gtk+-2.24.0 → gtk+-2.22.1}/COPYING +0 -0
  150. data/vendor/local/share/doc/{gtk+-dev-2.24.0 → gtk+-dev-2.22.1}/COPYING +0 -0
  151. data/vendor/local/share/gtk-2.0/demo/appwindow.c +21 -0
  152. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  153. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  154. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  155. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  156. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  157. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +94 -60
  158. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +58 -44
  159. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  160. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  161. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  162. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  163. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +1 -2
  164. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +208 -151
  165. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +37 -33
  166. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +239 -180
  167. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +3 -3
  168. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +3 -3
  169. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +3 -3
  170. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +3 -3
  171. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +3 -3
  172. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +3 -3
  173. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +4 -4
  174. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +3 -3
  175. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +3 -3
  176. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +3 -3
  177. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +6 -6
  178. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +4 -4
  179. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +5 -135
  180. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +47 -83
  181. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +23 -20
  182. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +126 -126
  183. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +39 -81
  184. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +199 -135
  185. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +90 -71
  186. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +200 -161
  187. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +409 -293
  188. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +435 -320
  189. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +141 -109
  190. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +234 -155
  191. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +217 -143
  192. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +124 -103
  193. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +250 -168
  194. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +131 -90
  195. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +191 -143
  196. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +53 -35
  197. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +195 -162
  198. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +112 -85
  199. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +137 -79
  200. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +176 -144
  201. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +235 -188
  202. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +134 -97
  203. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +35 -22
  204. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +70 -44
  205. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +108 -83
  206. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +744 -653
  207. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +490 -476
  208. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +44 -53
  209. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +76 -85
  210. data/vendor/local/share/gtk-doc/html/gdk/index.html +4 -4
  211. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1 -10
  212. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +9 -9
  213. data/vendor/local/share/gtk-doc/html/gdk/reference.html +3 -3
  214. data/vendor/local/share/gtk-doc/html/gdk/style.css +1 -2
  215. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +3 -3
  216. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +3 -3
  217. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +3 -3
  218. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +3 -3
  219. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +3 -3
  220. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +3 -3
  221. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +186 -193
  222. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +46 -38
  223. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +18 -18
  224. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +236 -169
  225. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +258 -175
  226. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +50 -46
  227. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +114 -78
  228. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +66 -52
  229. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +36 -30
  230. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +46 -36
  231. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +118 -97
  232. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +14 -14
  233. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +120 -95
  234. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +117 -86
  235. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +137 -96
  236. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +185 -152
  237. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +76 -59
  238. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +895 -615
  239. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +1780 -509
  240. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +163 -125
  241. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +35 -33
  242. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +87 -60
  243. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +130 -106
  244. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +44 -35
  245. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +32 -27
  246. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +25 -24
  247. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -23
  248. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +20 -19
  249. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +20 -19
  250. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +74 -69
  251. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +54 -45
  252. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +76 -57
  253. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +34 -30
  254. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +75 -53
  255. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +180 -104
  256. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +32 -29
  257. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +81 -63
  258. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +186 -344
  259. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +46 -57
  260. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +260 -311
  261. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +79 -61
  262. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +121 -97
  263. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +23 -21
  264. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +88 -68
  265. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +470 -360
  266. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +104 -71
  267. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +185 -130
  268. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +38 -33
  269. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +96 -76
  270. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +403 -331
  271. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +89 -64
  272. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +35 -30
  273. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +26 -21
  274. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +146 -102
  275. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +49 -38
  276. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +86 -60
  277. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +81 -66
  278. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +61 -52
  279. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +58 -51
  280. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +19 -18
  281. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +20 -17
  282. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +34 -29
  283. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +13 -13
  284. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +24 -30
  285. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +101 -65
  286. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +30 -25
  287. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +18 -18
  288. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +20 -19
  289. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +66 -55
  290. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +182 -140
  291. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +22 -18
  292. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +22 -18
  293. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +248 -184
  294. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +447 -321
  295. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +195 -174
  296. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +69 -58
  297. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +80 -67
  298. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -32
  299. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +41 -33
  300. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +42 -36
  301. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +272 -179
  302. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +249 -197
  303. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +76 -68
  304. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +60 -51
  305. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +180 -130
  306. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +130 -80
  307. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +168 -138
  308. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +221 -177
  309. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +49 -41
  310. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +145 -112
  311. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +118 -86
  312. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +49 -73
  313. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +81 -81
  314. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +39 -33
  315. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +452 -396
  316. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +206 -148
  317. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +25 -21
  318. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +165 -80
  319. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +66 -56
  320. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +160 -115
  321. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +25 -22
  322. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +134 -94
  323. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +44 -34
  324. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -51
  325. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +136 -109
  326. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +53 -38
  327. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +68 -53
  328. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +403 -265
  329. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +94 -74
  330. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +134 -100
  331. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +111 -80
  332. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +108 -91
  333. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +53 -42
  334. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +79 -86
  335. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +71 -63
  336. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +42 -33
  337. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +185 -218
  338. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +41 -34
  339. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +194 -135
  340. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -27
  341. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +30 -25
  342. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -17
  343. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +85 -63
  344. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +269 -202
  345. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +58 -83
  346. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +72 -61
  347. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +83 -64
  348. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +21 -21
  349. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +143 -93
  350. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +13 -13
  351. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +18 -17
  352. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +27 -24
  353. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +259 -129
  354. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +45 -38
  355. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +53 -44
  356. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +177 -132
  357. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +25 -24
  358. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +254 -190
  359. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +75 -60
  360. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +928 -546
  361. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +135 -94
  362. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +19 -18
  363. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +140 -97
  364. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +656 -494
  365. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +46 -41
  366. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +194 -164
  367. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +76 -84
  368. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +425 -340
  369. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +94 -74
  370. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +57 -43
  371. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +71 -59
  372. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +38 -32
  373. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +85 -74
  374. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +166 -133
  375. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +103 -84
  376. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +139 -116
  377. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +59 -42
  378. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +360 -249
  379. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +27 -27
  380. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +70 -60
  381. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +152 -105
  382. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +134 -46
  383. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +557 -428
  384. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +126 -95
  385. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +70 -63
  386. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +171 -123
  387. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +62 -53
  388. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +199 -170
  389. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +863 -565
  390. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +282 -203
  391. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +189 -125
  392. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +20 -17
  393. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +34 -27
  394. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +14 -14
  395. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +24 -31
  396. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +29 -24
  397. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +18 -18
  398. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +18 -17
  399. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +69 -58
  400. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +17 -16
  401. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1579 -1278
  402. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +532 -380
  403. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +39 -21
  404. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +3 -3
  405. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +3 -6
  406. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +3 -3
  407. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +3 -3
  408. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +3 -3
  409. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +3 -3
  410. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +4 -4
  411. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +3 -3
  412. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +3 -3
  413. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +3 -3
  414. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +3 -3
  415. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +15 -15
  416. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +4 -4
  417. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +16 -16
  418. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +3 -3
  419. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +3 -3
  420. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +11 -17
  421. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +20 -20
  422. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +6 -6
  423. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +3 -3
  424. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +4 -4
  425. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +3 -3
  426. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +5 -5
  427. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +3 -3
  428. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +5 -5
  429. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +28 -28
  430. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +3 -3
  431. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +7 -7
  432. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +45 -236
  433. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +385 -469
  434. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +4 -15
  435. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +4 -4
  436. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +12 -12
  437. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +4 -4
  438. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +4 -4
  439. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +4 -4
  440. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +3 -3
  441. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +3 -3
  442. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +124 -69
  443. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +211 -149
  444. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +293 -189
  445. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +246 -175
  446. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +41 -35
  447. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +47 -41
  448. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +318 -270
  449. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +22 -16
  450. data/vendor/local/share/gtk-doc/html/gtk/{GtkPaperSize.html → gtk-GtkPaperSize.html} +252 -204
  451. data/vendor/local/share/gtk-doc/html/gtk/{GtkTextIter.html → gtk-GtkTextIter.html} +806 -664
  452. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +82 -75
  453. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +289 -221
  454. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +232 -142
  455. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +20 -17
  456. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +190 -150
  457. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +408 -328
  458. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +306 -190
  459. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +53 -53
  460. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +158 -152
  461. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +136 -85
  462. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +239 -204
  463. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +343 -271
  464. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +11 -18
  465. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +20 -20
  466. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +5 -5
  467. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +5 -5
  468. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +5 -5
  469. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +7 -7
  470. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +75 -63
  471. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +75 -58
  472. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +3 -3
  473. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +3 -3
  474. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +4 -4
  475. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +4 -4
  476. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +10 -5
  477. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +3 -3
  478. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +4 -4
  479. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +5 -5
  480. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +3 -3
  481. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +3 -3
  482. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +5 -5
  483. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +7 -7
  484. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +3 -3
  485. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +3 -3
  486. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +3 -3
  487. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +6 -6
  488. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +10 -10
  489. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +90 -90
  490. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +9 -9
  491. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +31 -39
  492. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +10 -10
  493. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +14 -14
  494. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +12 -12
  495. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +412 -445
  496. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +455 -488
  497. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +4 -4
  498. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +3 -3
  499. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +3 -3
  500. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +3 -3
  501. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +3 -3
  502. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +5 -5
  503. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +5 -8
  504. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +3 -3
  505. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +3 -3
  506. data/vendor/local/share/gtk-doc/html/gtk/index.html +6 -10
  507. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +142 -194
  508. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +3 -3
  509. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +17 -17
  510. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +4 -4
  511. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +3 -3
  512. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +4 -4
  513. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +3 -3
  514. data/vendor/local/share/gtk-doc/html/gtk/style.css +1 -2
  515. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +3 -3
  516. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  517. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  518. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  519. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  520. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  521. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  522. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  523. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  524. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  525. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  526. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  527. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  528. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  529. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  530. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  531. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  532. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  533. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  534. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  535. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  536. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  537. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  538. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  539. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  540. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  541. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  542. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  543. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  544. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  545. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  546. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +5048 -0
  547. data/vendor/local/src/tml/packaging/{gtk+_2.24.0-1_win32.sh → gtk+_2.22.1-1_win32.sh} +2 -2
  548. metadata +25 -25
  549. data/vendor/local/etc/gtk-2.0/gtkrc +0 -1
  550. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +0 -77
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +0 -301
  552. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +0 -117
  553. data/vendor/local/src/tml/packaging/gtk+_2.24.0-1_win32.log +0 -4934
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="TreeWidgetObjects.html" title="Tree, List and Icon Grid Widgets">
9
9
  <link rel="prev" href="GtkCellView.html" title="GtkCellView">
10
10
  <link rel="next" href="GtkTreeSortable.html" title="GtkTreeSortable">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -36,7 +36,7 @@
36
36
  <a href="#GtkIconView.signals" class="shortcut">Signals</a>
37
37
  </td></tr>
38
38
  </table>
39
- <div class="refentry">
39
+ <div class="refentry" title="GtkIconView">
40
40
  <a name="GtkIconView"></a><div class="titlepage"></div>
41
41
  <div class="refnamediv"><table width="100%"><tr>
42
42
  <td valign="top">
@@ -45,14 +45,14 @@
45
45
  </td>
46
46
  <td valign="top" align="right"><img src="icon-view.png"></td>
47
47
  </tr></table></div>
48
- <div class="refsynopsisdiv">
48
+ <div class="refsynopsisdiv" title="Synopsis">
49
49
  <a name="GtkIconView.synopsis"></a><h2>Synopsis</h2>
50
50
  <pre class="synopsis">
51
51
  #include &lt;gtk/gtk.h&gt;
52
52
 
53
- struct <a class="link" href="GtkIconView.html#GtkIconView-struct" title="struct GtkIconView">GtkIconView</a>;
53
+ <a class="link" href="GtkIconView.html#GtkIconView-struct" title="GtkIconView">GtkIconView</a>;
54
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>,
55
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
56
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
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
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>);
@@ -68,13 +68,13 @@ struct <a class="link" href="GtkIconView.html#GtkIconView-struct" t
68
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
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
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>,
71
+ <a class="link" href="GtkTreeModel.html#GtkTreePath" title="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
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
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
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
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
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>,
77
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
78
78
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);
79
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
80
  (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
@@ -83,11 +83,11 @@ struct <a class="link" href="GtkIconView.html#GtkIconView-struct" t
83
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
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
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>,
86
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
87
87
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
88
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
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>,
90
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
91
91
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);
92
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
93
  <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()"><span class="type">GtkIconViewForeachFunc</span></a> func</code></em>,
@@ -123,56 +123,56 @@ struct <a class="link" href="GtkIconView.html#GtkIconView-struct" t
123
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
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
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>);
126
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
127
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>);
128
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
129
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>);
130
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
131
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
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
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
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>);
135
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
136
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>,
137
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
138
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
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
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
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>);
142
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
143
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);
144
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
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>);
146
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
147
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
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>,
149
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
150
150
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);
151
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
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
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
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
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>);
156
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
157
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
158
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
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
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
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>);
162
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
163
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>);
164
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
165
165
 
166
166
  enum <a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition">GtkIconViewDropPosition</a>;
167
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
168
  (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
169
169
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/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>,
170
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
171
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
172
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
173
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
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>,
175
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
176
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
177
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
178
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>
@@ -182,21 +182,21 @@ enum <a class="link" href="GtkIconView.html#GtkIconViewDropPositi
182
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
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
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>,
185
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
186
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
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>,
188
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
189
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
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
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
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>,
193
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
194
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
195
  <a href="http://library.gnome.org/devel/gdk/unstable/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>);
196
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
197
197
  </pre>
198
198
  </div>
199
- <div class="refsect1">
199
+ <div class="refsect1" title="Object Hierarchy">
200
200
  <a name="GtkIconView.object-hierarchy"></a><h2>Object Hierarchy</h2>
201
201
  <pre class="synopsis">
202
202
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -207,13 +207,13 @@ enum <a class="link" href="GtkIconView.html#GtkIconViewDropPositi
207
207
  +----GtkIconView
208
208
  </pre>
209
209
  </div>
210
- <div class="refsect1">
210
+ <div class="refsect1" title="Implemented Interfaces">
211
211
  <a name="GtkIconView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
212
212
  <p>
213
213
  GtkIconView implements
214
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
215
  </div>
216
- <div class="refsect1">
216
+ <div class="refsect1" title="Properties">
217
217
  <a name="GtkIconView.properties"></a><h2>Properties</h2>
218
218
  <pre class="synopsis">
219
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
@@ -234,28 +234,28 @@ GtkIconView implements
234
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
235
  </pre>
236
236
  </div>
237
- <div class="refsect1">
237
+ <div class="refsect1" title="Style Properties">
238
238
  <a name="GtkIconView.style-properties"></a><h2>Style Properties</h2>
239
239
  <pre class="synopsis">
240
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
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="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read
242
242
  </pre>
243
243
  </div>
244
- <div class="refsect1">
244
+ <div class="refsect1" title="Signals">
245
245
  <a name="GtkIconView.signals"></a><h2>Signals</h2>
246
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>
247
+ "<a class="link" href="GtkIconView.html#GtkIconView-activate-cursor-item" title='The "activate-cursor-item" signal'>activate-cursor-item</a>" : Run Last / Action
248
+ "<a class="link" href="GtkIconView.html#GtkIconView-item-activated" title='The "item-activated" signal'>item-activated</a>" : Run Last
249
+ "<a class="link" href="GtkIconView.html#GtkIconView-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : Run Last / Action
250
+ "<a class="link" href="GtkIconView.html#GtkIconView-select-all" title='The "select-all" signal'>select-all</a>" : Run Last / Action
251
+ "<a class="link" href="GtkIconView.html#GtkIconView-select-cursor-item" title='The "select-cursor-item" signal'>select-cursor-item</a>" : Run Last / Action
252
+ "<a class="link" href="GtkIconView.html#GtkIconView-selection-changed" title='The "selection-changed" signal'>selection-changed</a>" : Run First
253
+ "<a class="link" href="GtkIconView.html#GtkIconView-set-scroll-adjustments" title='The "set-scroll-adjustments" signal'>set-scroll-adjustments</a>" : Run Last
254
+ "<a class="link" href="GtkIconView.html#GtkIconView-toggle-cursor-item" title='The "toggle-cursor-item" signal'>toggle-cursor-item</a>" : Run Last / Action
255
+ "<a class="link" href="GtkIconView.html#GtkIconView-unselect-all" title='The "unselect-all" signal'>unselect-all</a>" : Run Last / Action
256
256
  </pre>
257
257
  </div>
258
- <div class="refsect1">
258
+ <div class="refsect1" title="Description">
259
259
  <a name="GtkIconView.description"></a><h2>Description</h2>
260
260
  <p>
261
261
  <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> provides an alternative view on a list model.
@@ -266,21 +266,21 @@ In addition to selection with the arrow keys, <a class="link" href="GtkIconView.
266
266
  rubberband selection, which is controlled by dragging the pointer.
267
267
  </p>
268
268
  </div>
269
- <div class="refsect1">
269
+ <div class="refsect1" title="Details">
270
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>
271
+ <div class="refsect2" title="GtkIconView">
272
+ <a name="GtkIconView-struct"></a><h3>GtkIconView</h3>
273
+ <pre class="programlisting">typedef struct _GtkIconView GtkIconView;</pre>
274
274
  <p>
275
275
  The <span class="structname">GtkIconView</span> struct contains only
276
276
  private fields and should not be directly accessed.
277
277
  </p>
278
278
  </div>
279
279
  <hr>
280
- <div class="refsect2">
280
+ <div class="refsect2" title="GtkIconViewForeachFunc ()">
281
281
  <a name="GtkIconViewForeachFunc"></a><h3>GtkIconViewForeachFunc ()</h3>
282
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>,
283
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
284
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
285
  <p>
286
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
@@ -296,17 +296,19 @@ selected rows. It will be called on every selected row in the view.
296
296
  </tr>
297
297
  <tr>
298
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>
299
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> of a selected row
300
+ </td>
300
301
  </tr>
301
302
  <tr>
302
303
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
303
- <td>user data</td>
304
+ <td>user data
305
+ </td>
304
306
  </tr>
305
307
  </tbody>
306
308
  </table></div>
307
309
  </div>
308
310
  <hr>
309
- <div class="refsect2">
311
+ <div class="refsect2" title="gtk_icon_view_new ()">
310
312
  <a name="gtk-icon-view-new"></a><h3>gtk_icon_view_new ()</h3>
311
313
  <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
314
  <p>
@@ -316,13 +318,15 @@ Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span
316
318
  <col align="left" valign="top">
317
319
  <tbody><tr>
318
320
  <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>
321
+ <td> A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget
322
+
323
+ </td>
320
324
  </tr></tbody>
321
325
  </table></div>
322
326
  <p class="since">Since 2.6</p>
323
327
  </div>
324
328
  <hr>
325
- <div class="refsect2">
329
+ <div class="refsect2" title="gtk_icon_view_new_with_model ()">
326
330
  <a name="gtk-icon-view-new-with-model"></a><h3>gtk_icon_view_new_with_model ()</h3>
327
331
  <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
332
  <p>
@@ -333,18 +337,21 @@ Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span
333
337
  <tbody>
334
338
  <tr>
335
339
  <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
336
- <td>The model.</td>
340
+ <td>The model.
341
+ </td>
337
342
  </tr>
338
343
  <tr>
339
344
  <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>
345
+ <td> A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget.
346
+
347
+ </td>
341
348
  </tr>
342
349
  </tbody>
343
350
  </table></div>
344
351
  <p class="since">Since 2.6</p>
345
352
  </div>
346
353
  <hr>
347
- <div class="refsect2">
354
+ <div class="refsect2" title="gtk_icon_view_set_model ()">
348
355
  <a name="gtk-icon-view-set-model"></a><h3>gtk_icon_view_set_model ()</h3>
349
356
  <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
357
  <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
@@ -359,11 +366,12 @@ it will unset the old model.
359
366
  <tbody>
360
367
  <tr>
361
368
  <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>
369
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
370
+ </td>
363
371
  </tr>
364
372
  <tr>
365
373
  <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>
374
+ <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
375
  </td>
368
376
  </tr>
369
377
  </tbody>
@@ -371,7 +379,7 @@ it will unset the old model.
371
379
  <p class="since">Since 2.6</p>
372
380
  </div>
373
381
  <hr>
374
- <div class="refsect2">
382
+ <div class="refsect2" title="gtk_icon_view_get_model ()">
375
383
  <a name="gtk-icon-view-get-model"></a><h3>gtk_icon_view_get_model ()</h3>
376
384
  <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
385
  <p>
@@ -388,8 +396,8 @@ model is unset.
388
396
  </tr>
389
397
  <tr>
390
398
  <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>
399
+ <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 currently being used.
400
+
393
401
  </td>
394
402
  </tr>
395
403
  </tbody>
@@ -397,7 +405,7 @@ currently being used. <span class="annotation">[<acronym title="Don't free data
397
405
  <p class="since">Since 2.6</p>
398
406
  </div>
399
407
  <hr>
400
- <div class="refsect2">
408
+ <div class="refsect2" title="gtk_icon_view_set_text_column ()">
401
409
  <a name="gtk-icon-view-set-text-column"></a><h3>gtk_icon_view_set_text_column ()</h3>
402
410
  <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
411
  <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>
@@ -410,18 +418,20 @@ column must be of type <a href="http://library.gnome.org/devel/gobject/unstable/
410
418
  <tbody>
411
419
  <tr>
412
420
  <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>
421
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
422
+ </td>
414
423
  </tr>
415
424
  <tr>
416
425
  <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>
426
+ <td>A column in the currently used model, or -1 to display no text
427
+ </td>
418
428
  </tr>
419
429
  </tbody>
420
430
  </table></div>
421
431
  <p class="since">Since 2.6</p>
422
432
  </div>
423
433
  <hr>
424
- <div class="refsect2">
434
+ <div class="refsect2" title="gtk_icon_view_get_text_column ()">
425
435
  <a name="gtk-icon-view-get-text-column"></a><h3>gtk_icon_view_get_text_column ()</h3>
426
436
  <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
437
  <p>
@@ -432,18 +442,21 @@ Returns the column with text for <em class="parameter"><code>icon_view</code></e
432
442
  <tbody>
433
443
  <tr>
434
444
  <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>
445
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
446
+ </td>
436
447
  </tr>
437
448
  <tr>
438
449
  <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>
450
+ <td> the text column, or -1 if it's unset.
451
+
452
+ </td>
440
453
  </tr>
441
454
  </tbody>
442
455
  </table></div>
443
456
  <p class="since">Since 2.6</p>
444
457
  </div>
445
458
  <hr>
446
- <div class="refsect2">
459
+ <div class="refsect2" title="gtk_icon_view_set_markup_column ()">
447
460
  <a name="gtk-icon-view-set-markup-column"></a><h3>gtk_icon_view_set_markup_column ()</h3>
448
461
  <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
462
  <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>
@@ -458,18 +471,20 @@ the text column set by <a class="link" href="GtkIconView.html#gtk-icon-view-set-
458
471
  <tbody>
459
472
  <tr>
460
473
  <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>
474
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
475
+ </td>
462
476
  </tr>
463
477
  <tr>
464
478
  <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>
479
+ <td>A column in the currently used model, or -1 to display no text
480
+ </td>
466
481
  </tr>
467
482
  </tbody>
468
483
  </table></div>
469
484
  <p class="since">Since 2.6</p>
470
485
  </div>
471
486
  <hr>
472
- <div class="refsect2">
487
+ <div class="refsect2" title="gtk_icon_view_get_markup_column ()">
473
488
  <a name="gtk-icon-view-get-markup-column"></a><h3>gtk_icon_view_get_markup_column ()</h3>
474
489
  <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
490
  <p>
@@ -480,18 +495,21 @@ Returns the column with markup text for <em class="parameter"><code>icon_view</c
480
495
  <tbody>
481
496
  <tr>
482
497
  <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>
498
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
499
+ </td>
484
500
  </tr>
485
501
  <tr>
486
502
  <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>
503
+ <td> the markup column, or -1 if it's unset.
504
+
505
+ </td>
488
506
  </tr>
489
507
  </tbody>
490
508
  </table></div>
491
509
  <p class="since">Since 2.6</p>
492
510
  </div>
493
511
  <hr>
494
- <div class="refsect2">
512
+ <div class="refsect2" title="gtk_icon_view_set_pixbuf_column ()">
495
513
  <a name="gtk-icon-view-set-pixbuf-column"></a><h3>gtk_icon_view_set_pixbuf_column ()</h3>
496
514
  <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
515
  <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>
@@ -504,18 +522,20 @@ column must be of type <span class="type">GDK_TYPE_PIXBUF</span>
504
522
  <tbody>
505
523
  <tr>
506
524
  <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>
525
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
526
+ </td>
508
527
  </tr>
509
528
  <tr>
510
529
  <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>
530
+ <td>A column in the currently used model, or -1 to disable
531
+ </td>
512
532
  </tr>
513
533
  </tbody>
514
534
  </table></div>
515
535
  <p class="since">Since 2.6</p>
516
536
  </div>
517
537
  <hr>
518
- <div class="refsect2">
538
+ <div class="refsect2" title="gtk_icon_view_get_pixbuf_column ()">
519
539
  <a name="gtk-icon-view-get-pixbuf-column"></a><h3>gtk_icon_view_get_pixbuf_column ()</h3>
520
540
  <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
541
  <p>
@@ -526,20 +546,23 @@ Returns the column with pixbufs for <em class="parameter"><code>icon_view</code>
526
546
  <tbody>
527
547
  <tr>
528
548
  <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>
549
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
550
+ </td>
530
551
  </tr>
531
552
  <tr>
532
553
  <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>
554
+ <td> the pixbuf column, or -1 if it's unset.
555
+
556
+ </td>
534
557
  </tr>
535
558
  </tbody>
536
559
  </table></div>
537
560
  <p class="since">Since 2.6</p>
538
561
  </div>
539
562
  <hr>
540
- <div class="refsect2">
563
+ <div class="refsect2" title="gtk_icon_view_get_path_at_pos ()">
541
564
  <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>,
565
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" title="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
566
  <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
567
  <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
568
  <p>
@@ -554,32 +577,37 @@ widget coordinates to bin_window coordinates.
554
577
  <tbody>
555
578
  <tr>
556
579
  <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>
580
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
581
+ </td>
558
582
  </tr>
559
583
  <tr>
560
584
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
561
- <td>The x position to be identified</td>
585
+ <td>The x position to be identified
586
+ </td>
562
587
  </tr>
563
588
  <tr>
564
589
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
565
- <td>The y position to be identified</td>
590
+ <td>The y position to be identified
591
+ </td>
566
592
  </tr>
567
593
  <tr>
568
594
  <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>
595
+ <td> The <a class="link" href="GtkTreeModel.html#GtkTreePath" title="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>
596
+ if no icon exists at that position.
597
+
598
+ </td>
571
599
  </tr>
572
600
  </tbody>
573
601
  </table></div>
574
602
  <p class="since">Since 2.6</p>
575
603
  </div>
576
604
  <hr>
577
- <div class="refsect2">
605
+ <div class="refsect2" title="gtk_icon_view_get_item_at_pos ()">
578
606
  <a name="gtk-icon-view-get-item-at-pos"></a><h3>gtk_icon_view_get_item_at_pos ()</h3>
579
607
  <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
608
  <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
609
  <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>,
610
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
583
611
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
584
612
  <p>
585
613
  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.
@@ -594,38 +622,42 @@ widget coordinates to bin_window coordinates.
594
622
  <tbody>
595
623
  <tr>
596
624
  <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>
625
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
626
+ </td>
598
627
  </tr>
599
628
  <tr>
600
629
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
601
- <td>The x position to be identified</td>
630
+ <td>The x position to be identified
631
+ </td>
602
632
  </tr>
603
633
  <tr>
604
634
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
605
- <td>The y position to be identified</td>
635
+ <td>The y position to be identified
636
+ </td>
606
637
  </tr>
607
638
  <tr>
608
639
  <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>
640
+ <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
641
  </td>
611
642
  </tr>
612
643
  <tr>
613
644
  <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
614
645
  <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>
646
+ 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
647
  </td>
617
648
  </tr>
618
649
  <tr>
619
650
  <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>
651
+ <td> <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
652
+
653
+ </td>
622
654
  </tr>
623
655
  </tbody>
624
656
  </table></div>
625
657
  <p class="since">Since 2.8</p>
626
658
  </div>
627
659
  <hr>
628
- <div class="refsect2">
660
+ <div class="refsect2" title="gtk_icon_view_convert_widget_to_bin_window_coords ()">
629
661
  <a name="gtk-icon-view-convert-widget-to-bin-window-coords"></a><h3>gtk_icon_view_convert_widget_to_bin_window_coords ()</h3>
630
662
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_convert_widget_to_bin_window_coords
631
663
  (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
@@ -642,34 +674,38 @@ as expected by e.g. <a class="link" href="GtkIconView.html#gtk-icon-view-get-pat
642
674
  <tbody>
643
675
  <tr>
644
676
  <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>
677
+ <td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
646
678
  </td>
647
679
  </tr>
648
680
  <tr>
649
681
  <td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
650
- <td>X coordinate relative to the widget</td>
682
+ <td>X coordinate relative to the widget
683
+ </td>
651
684
  </tr>
652
685
  <tr>
653
686
  <td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
654
- <td>Y coordinate relative to the widget</td>
687
+ <td>Y coordinate relative to the widget
688
+ </td>
655
689
  </tr>
656
690
  <tr>
657
691
  <td><p><span class="term"><em class="parameter"><code>bx</code></em> :</span></p></td>
658
- <td>return location for bin_window X coordinate</td>
692
+ <td>return location for bin_window X coordinate
693
+ </td>
659
694
  </tr>
660
695
  <tr>
661
696
  <td><p><span class="term"><em class="parameter"><code>by</code></em> :</span></p></td>
662
- <td>return location for bin_window Y coordinate</td>
697
+ <td>return location for bin_window Y coordinate
698
+ </td>
663
699
  </tr>
664
700
  </tbody>
665
701
  </table></div>
666
702
  <p class="since">Since 2.12</p>
667
703
  </div>
668
704
  <hr>
669
- <div class="refsect2">
705
+ <div class="refsect2" title="gtk_icon_view_set_cursor ()">
670
706
  <a name="gtk-icon-view-set-cursor"></a><h3>gtk_icon_view_set_cursor ()</h3>
671
707
  <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>,
672
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
708
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
673
709
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
674
710
  <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>
675
711
  <p>
@@ -694,28 +730,29 @@ Please note that editing can only happen when the widget is realized.
694
730
  </tr>
695
731
  <tr>
696
732
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
697
- <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
733
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a>
698
734
  </td>
699
735
  </tr>
700
736
  <tr>
701
737
  <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
702
- <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>
738
+ <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>
703
739
  </td>
704
740
  </tr>
705
741
  <tr>
706
742
  <td><p><span class="term"><em class="parameter"><code>start_editing</code></em> :</span></p></td>
707
743
  <td>
708
- <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>
744
+ <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.
745
+ </td>
709
746
  </tr>
710
747
  </tbody>
711
748
  </table></div>
712
749
  <p class="since">Since 2.8</p>
713
750
  </div>
714
751
  <hr>
715
- <div class="refsect2">
752
+ <div class="refsect2" title="gtk_icon_view_get_cursor ()">
716
753
  <a name="gtk-icon-view-get-cursor"></a><h3>gtk_icon_view_get_cursor ()</h3>
717
754
  <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>,
718
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
755
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
719
756
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
720
757
  <p>
721
758
  Fills in <em class="parameter"><code>path</code></em> and <em class="parameter"><code>cell</code></em> with the current cursor path and cell.
@@ -723,7 +760,7 @@ If the cursor isn't currently set, then *<em class="parameter"><code>path</code>
723
760
  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>.
724
761
  </p>
725
762
  <p>
726
- 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>.
763
+ The returned <a class="link" href="GtkTreeModel.html#GtkTreePath" title="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>.
727
764
  </p>
728
765
  <div class="variablelist"><table border="0">
729
766
  <col align="left" valign="top">
@@ -735,25 +772,26 @@ The returned <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="t
735
772
  </tr>
736
773
  <tr>
737
774
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
738
- <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>
775
+ <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>
739
776
  </td>
740
777
  </tr>
741
778
  <tr>
742
779
  <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
743
- <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>
780
+ <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>
744
781
  </td>
745
782
  </tr>
746
783
  <tr>
747
784
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
748
- <td>
749
- <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>
785
+ <td> <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.
786
+
787
+ </td>
750
788
  </tr>
751
789
  </tbody>
752
790
  </table></div>
753
791
  <p class="since">Since 2.8</p>
754
792
  </div>
755
793
  <hr>
756
- <div class="refsect2">
794
+ <div class="refsect2" title="gtk_icon_view_selected_foreach ()">
757
795
  <a name="gtk-icon-view-selected-foreach"></a><h3>gtk_icon_view_selected_foreach ()</h3>
758
796
  <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>,
759
797
  <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()"><span class="type">GtkIconViewForeachFunc</span></a> func</code></em>,
@@ -767,23 +805,25 @@ selection cannot be modified from within this function.
767
805
  <tbody>
768
806
  <tr>
769
807
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
770
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
808
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
809
+ </td>
771
810
  </tr>
772
811
  <tr>
773
812
  <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
774
- <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>
813
+ <td>The funcion to call for each selected icon.
775
814
  </td>
776
815
  </tr>
777
816
  <tr>
778
817
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
779
- <td>User data to pass to the function.</td>
818
+ <td>User data to pass to the function.
819
+ </td>
780
820
  </tr>
781
821
  </tbody>
782
822
  </table></div>
783
823
  <p class="since">Since 2.6</p>
784
824
  </div>
785
825
  <hr>
786
- <div class="refsect2">
826
+ <div class="refsect2" title="gtk_icon_view_set_selection_mode ()">
787
827
  <a name="gtk-icon-view-set-selection-mode"></a><h3>gtk_icon_view_set_selection_mode ()</h3>
788
828
  <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>,
789
829
  <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>
@@ -795,18 +835,20 @@ Sets the selection mode of the <em class="parameter"><code>icon_view</code></em>
795
835
  <tbody>
796
836
  <tr>
797
837
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
798
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
838
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
839
+ </td>
799
840
  </tr>
800
841
  <tr>
801
842
  <td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
802
- <td>The selection mode</td>
843
+ <td>The selection mode
844
+ </td>
803
845
  </tr>
804
846
  </tbody>
805
847
  </table></div>
806
848
  <p class="since">Since 2.6</p>
807
849
  </div>
808
850
  <hr>
809
- <div class="refsect2">
851
+ <div class="refsect2" title="gtk_icon_view_get_selection_mode ()">
810
852
  <a name="gtk-icon-view-get-selection-mode"></a><h3>gtk_icon_view_get_selection_mode ()</h3>
811
853
  <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>
812
854
  <p>
@@ -817,22 +859,25 @@ Gets the selection mode of the <em class="parameter"><code>icon_view</code></em>
817
859
  <tbody>
818
860
  <tr>
819
861
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
820
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
862
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
863
+ </td>
821
864
  </tr>
822
865
  <tr>
823
866
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
824
- <td>the current selection mode</td>
867
+ <td> the current selection mode
868
+
869
+ </td>
825
870
  </tr>
826
871
  </tbody>
827
872
  </table></div>
828
873
  <p class="since">Since 2.6</p>
829
874
  </div>
830
875
  <hr>
831
- <div class="refsect2">
876
+ <div class="refsect2" title="gtk_icon_view_set_orientation ()">
832
877
  <a name="gtk-icon-view-set-orientation"></a><h3>gtk_icon_view_set_orientation ()</h3>
833
878
  <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>,
834
879
  <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>
835
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
880
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
836
881
  <h3 class="title">Warning</h3>
837
882
  <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>
838
883
  </div>
@@ -850,17 +895,18 @@ are drawn beside the icons instead of below.
850
895
  </tr>
851
896
  <tr>
852
897
  <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
853
- <td>the relative position of texts and icons</td>
898
+ <td>the relative position of texts and icons
899
+ </td>
854
900
  </tr>
855
901
  </tbody>
856
902
  </table></div>
857
903
  <p class="since">Since 2.6</p>
858
904
  </div>
859
905
  <hr>
860
- <div class="refsect2">
906
+ <div class="refsect2" title="gtk_icon_view_get_orientation ()">
861
907
  <a name="gtk-icon-view-get-orientation"></a><h3>gtk_icon_view_get_orientation ()</h3>
862
908
  <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>
863
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
909
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
864
910
  <h3 class="title">Warning</h3>
865
911
  <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>
866
912
  </div>
@@ -878,14 +924,16 @@ whether the labels are drawn beside the icons instead of below.
878
924
  </tr>
879
925
  <tr>
880
926
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
881
- <td>the relative position of texts and icons</td>
927
+ <td> the relative position of texts and icons
928
+
929
+ </td>
882
930
  </tr>
883
931
  </tbody>
884
932
  </table></div>
885
933
  <p class="since">Since 2.6</p>
886
934
  </div>
887
935
  <hr>
888
- <div class="refsect2">
936
+ <div class="refsect2" title="gtk_icon_view_set_item_orientation ()">
889
937
  <a name="gtk-icon-view-set-item-orientation"></a><h3>gtk_icon_view_set_item_orientation ()</h3>
890
938
  <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>,
891
939
  <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>
@@ -903,14 +951,15 @@ the labels are drawn beside the icons instead of below.
903
951
  </tr>
904
952
  <tr>
905
953
  <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
906
- <td>the relative position of texts and icons</td>
954
+ <td>the relative position of texts and icons
955
+ </td>
907
956
  </tr>
908
957
  </tbody>
909
958
  </table></div>
910
959
  <p class="since">Since 2.22</p>
911
960
  </div>
912
961
  <hr>
913
- <div class="refsect2">
962
+ <div class="refsect2" title="gtk_icon_view_get_item_orientation ()">
914
963
  <a name="gtk-icon-view-get-item-orientation"></a><h3>gtk_icon_view_get_item_orientation ()</h3>
915
964
  <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>
916
965
  <p>
@@ -927,14 +976,16 @@ whether the labels are drawn beside the icons instead of below.
927
976
  </tr>
928
977
  <tr>
929
978
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
930
- <td>the relative position of texts and icons</td>
979
+ <td> the relative position of texts and icons
980
+
981
+ </td>
931
982
  </tr>
932
983
  </tbody>
933
984
  </table></div>
934
985
  <p class="since">Since 2.22</p>
935
986
  </div>
936
987
  <hr>
937
- <div class="refsect2">
988
+ <div class="refsect2" title="gtk_icon_view_set_columns ()">
938
989
  <a name="gtk-icon-view-set-columns"></a><h3>gtk_icon_view_set_columns ()</h3>
939
990
  <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>,
940
991
  <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>
@@ -954,14 +1005,15 @@ to fill the available area.
954
1005
  </tr>
955
1006
  <tr>
956
1007
  <td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
957
- <td>the number of columns</td>
1008
+ <td>the number of columns
1009
+ </td>
958
1010
  </tr>
959
1011
  </tbody>
960
1012
  </table></div>
961
1013
  <p class="since">Since 2.6</p>
962
1014
  </div>
963
1015
  <hr>
964
- <div class="refsect2">
1016
+ <div class="refsect2" title="gtk_icon_view_get_columns ()">
965
1017
  <a name="gtk-icon-view-get-columns"></a><h3>gtk_icon_view_get_columns ()</h3>
966
1018
  <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>
967
1019
  <p>
@@ -977,14 +1029,16 @@ Returns the value of the ::columns property.
977
1029
  </tr>
978
1030
  <tr>
979
1031
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
980
- <td>the number of columns, or -1</td>
1032
+ <td> the number of columns, or -1
1033
+
1034
+ </td>
981
1035
  </tr>
982
1036
  </tbody>
983
1037
  </table></div>
984
1038
  <p class="since">Since 2.6</p>
985
1039
  </div>
986
1040
  <hr>
987
- <div class="refsect2">
1041
+ <div class="refsect2" title="gtk_icon_view_set_item_width ()">
988
1042
  <a name="gtk-icon-view-set-item-width"></a><h3>gtk_icon_view_set_item_width ()</h3>
989
1043
  <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>,
990
1044
  <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>
@@ -1003,14 +1057,15 @@ automatically determine a suitable item size.
1003
1057
  </tr>
1004
1058
  <tr>
1005
1059
  <td><p><span class="term"><em class="parameter"><code>item_width</code></em> :</span></p></td>
1006
- <td>the width for each item</td>
1060
+ <td>the width for each item
1061
+ </td>
1007
1062
  </tr>
1008
1063
  </tbody>
1009
1064
  </table></div>
1010
1065
  <p class="since">Since 2.6</p>
1011
1066
  </div>
1012
1067
  <hr>
1013
- <div class="refsect2">
1068
+ <div class="refsect2" title="gtk_icon_view_get_item_width ()">
1014
1069
  <a name="gtk-icon-view-get-item-width"></a><h3>gtk_icon_view_get_item_width ()</h3>
1015
1070
  <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>
1016
1071
  <p>
@@ -1026,14 +1081,16 @@ Returns the value of the ::item-width property.
1026
1081
  </tr>
1027
1082
  <tr>
1028
1083
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1029
- <td>the width of a single item, or -1</td>
1084
+ <td> the width of a single item, or -1
1085
+
1086
+ </td>
1030
1087
  </tr>
1031
1088
  </tbody>
1032
1089
  </table></div>
1033
1090
  <p class="since">Since 2.6</p>
1034
1091
  </div>
1035
1092
  <hr>
1036
- <div class="refsect2">
1093
+ <div class="refsect2" title="gtk_icon_view_set_spacing ()">
1037
1094
  <a name="gtk-icon-view-set-spacing"></a><h3>gtk_icon_view_set_spacing ()</h3>
1038
1095
  <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>,
1039
1096
  <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>
@@ -1052,14 +1109,15 @@ the text) of an item.
1052
1109
  </tr>
1053
1110
  <tr>
1054
1111
  <td><p><span class="term"><em class="parameter"><code>spacing</code></em> :</span></p></td>
1055
- <td>the spacing</td>
1112
+ <td>the spacing
1113
+ </td>
1056
1114
  </tr>
1057
1115
  </tbody>
1058
1116
  </table></div>
1059
1117
  <p class="since">Since 2.6</p>
1060
1118
  </div>
1061
1119
  <hr>
1062
- <div class="refsect2">
1120
+ <div class="refsect2" title="gtk_icon_view_get_spacing ()">
1063
1121
  <a name="gtk-icon-view-get-spacing"></a><h3>gtk_icon_view_get_spacing ()</h3>
1064
1122
  <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>
1065
1123
  <p>
@@ -1075,14 +1133,16 @@ Returns the value of the ::spacing property.
1075
1133
  </tr>
1076
1134
  <tr>
1077
1135
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1078
- <td>the space between cells</td>
1136
+ <td> the space between cells
1137
+
1138
+ </td>
1079
1139
  </tr>
1080
1140
  </tbody>
1081
1141
  </table></div>
1082
1142
  <p class="since">Since 2.6</p>
1083
1143
  </div>
1084
1144
  <hr>
1085
- <div class="refsect2">
1145
+ <div class="refsect2" title="gtk_icon_view_set_row_spacing ()">
1086
1146
  <a name="gtk-icon-view-set-row-spacing"></a><h3>gtk_icon_view_set_row_spacing ()</h3>
1087
1147
  <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>,
1088
1148
  <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>
@@ -1100,14 +1160,15 @@ which is inserted between the rows of the icon view.
1100
1160
  </tr>
1101
1161
  <tr>
1102
1162
  <td><p><span class="term"><em class="parameter"><code>row_spacing</code></em> :</span></p></td>
1103
- <td>the row spacing</td>
1163
+ <td>the row spacing
1164
+ </td>
1104
1165
  </tr>
1105
1166
  </tbody>
1106
1167
  </table></div>
1107
1168
  <p class="since">Since 2.6</p>
1108
1169
  </div>
1109
1170
  <hr>
1110
- <div class="refsect2">
1171
+ <div class="refsect2" title="gtk_icon_view_get_row_spacing ()">
1111
1172
  <a name="gtk-icon-view-get-row-spacing"></a><h3>gtk_icon_view_get_row_spacing ()</h3>
1112
1173
  <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>
1113
1174
  <p>
@@ -1123,14 +1184,16 @@ Returns the value of the ::row-spacing property.
1123
1184
  </tr>
1124
1185
  <tr>
1125
1186
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1126
- <td>the space between rows</td>
1187
+ <td> the space between rows
1188
+
1189
+ </td>
1127
1190
  </tr>
1128
1191
  </tbody>
1129
1192
  </table></div>
1130
1193
  <p class="since">Since 2.6</p>
1131
1194
  </div>
1132
1195
  <hr>
1133
- <div class="refsect2">
1196
+ <div class="refsect2" title="gtk_icon_view_set_column_spacing ()">
1134
1197
  <a name="gtk-icon-view-set-column-spacing"></a><h3>gtk_icon_view_set_column_spacing ()</h3>
1135
1198
  <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>,
1136
1199
  <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>
@@ -1148,14 +1211,15 @@ which is inserted between the columns of the icon view.
1148
1211
  </tr>
1149
1212
  <tr>
1150
1213
  <td><p><span class="term"><em class="parameter"><code>column_spacing</code></em> :</span></p></td>
1151
- <td>the column spacing</td>
1214
+ <td>the column spacing
1215
+ </td>
1152
1216
  </tr>
1153
1217
  </tbody>
1154
1218
  </table></div>
1155
1219
  <p class="since">Since 2.6</p>
1156
1220
  </div>
1157
1221
  <hr>
1158
- <div class="refsect2">
1222
+ <div class="refsect2" title="gtk_icon_view_get_column_spacing ()">
1159
1223
  <a name="gtk-icon-view-get-column-spacing"></a><h3>gtk_icon_view_get_column_spacing ()</h3>
1160
1224
  <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>
1161
1225
  <p>
@@ -1171,14 +1235,16 @@ Returns the value of the ::column-spacing property.
1171
1235
  </tr>
1172
1236
  <tr>
1173
1237
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1174
- <td>the space between columns</td>
1238
+ <td> the space between columns
1239
+
1240
+ </td>
1175
1241
  </tr>
1176
1242
  </tbody>
1177
1243
  </table></div>
1178
1244
  <p class="since">Since 2.6</p>
1179
1245
  </div>
1180
1246
  <hr>
1181
- <div class="refsect2">
1247
+ <div class="refsect2" title="gtk_icon_view_set_margin ()">
1182
1248
  <a name="gtk-icon-view-set-margin"></a><h3>gtk_icon_view_set_margin ()</h3>
1183
1249
  <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>,
1184
1250
  <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>
@@ -1197,14 +1263,15 @@ of the icon view.
1197
1263
  </tr>
1198
1264
  <tr>
1199
1265
  <td><p><span class="term"><em class="parameter"><code>margin</code></em> :</span></p></td>
1200
- <td>the margin</td>
1266
+ <td>the margin
1267
+ </td>
1201
1268
  </tr>
1202
1269
  </tbody>
1203
1270
  </table></div>
1204
1271
  <p class="since">Since 2.6</p>
1205
1272
  </div>
1206
1273
  <hr>
1207
- <div class="refsect2">
1274
+ <div class="refsect2" title="gtk_icon_view_get_margin ()">
1208
1275
  <a name="gtk-icon-view-get-margin"></a><h3>gtk_icon_view_get_margin ()</h3>
1209
1276
  <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>
1210
1277
  <p>
@@ -1220,14 +1287,16 @@ Returns the value of the ::margin property.
1220
1287
  </tr>
1221
1288
  <tr>
1222
1289
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1223
- <td>the space at the borders</td>
1290
+ <td> the space at the borders
1291
+
1292
+ </td>
1224
1293
  </tr>
1225
1294
  </tbody>
1226
1295
  </table></div>
1227
1296
  <p class="since">Since 2.6</p>
1228
1297
  </div>
1229
1298
  <hr>
1230
- <div class="refsect2">
1299
+ <div class="refsect2" title="gtk_icon_view_set_item_padding ()">
1231
1300
  <a name="gtk-icon-view-set-item-padding"></a><h3>gtk_icon_view_set_item_padding ()</h3>
1232
1301
  <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>,
1233
1302
  <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>
@@ -1245,14 +1314,15 @@ around each of the icon view's items.
1245
1314
  </tr>
1246
1315
  <tr>
1247
1316
  <td><p><span class="term"><em class="parameter"><code>item_padding</code></em> :</span></p></td>
1248
- <td>the item padding</td>
1317
+ <td>the item padding
1318
+ </td>
1249
1319
  </tr>
1250
1320
  </tbody>
1251
1321
  </table></div>
1252
1322
  <p class="since">Since 2.18</p>
1253
1323
  </div>
1254
1324
  <hr>
1255
- <div class="refsect2">
1325
+ <div class="refsect2" title="gtk_icon_view_get_item_padding ()">
1256
1326
  <a name="gtk-icon-view-get-item-padding"></a><h3>gtk_icon_view_get_item_padding ()</h3>
1257
1327
  <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>
1258
1328
  <p>
@@ -1268,17 +1338,19 @@ Returns the value of the ::item-padding property.
1268
1338
  </tr>
1269
1339
  <tr>
1270
1340
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1271
- <td>the padding around items</td>
1341
+ <td> the padding around items
1342
+
1343
+ </td>
1272
1344
  </tr>
1273
1345
  </tbody>
1274
1346
  </table></div>
1275
1347
  <p class="since">Since 2.18</p>
1276
1348
  </div>
1277
1349
  <hr>
1278
- <div class="refsect2">
1350
+ <div class="refsect2" title="gtk_icon_view_select_path ()">
1279
1351
  <a name="gtk-icon-view-select-path"></a><h3>gtk_icon_view_select_path ()</h3>
1280
1352
  <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>,
1281
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1353
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1282
1354
  <p>
1283
1355
  Selects the row at <em class="parameter"><code>path</code></em>.
1284
1356
  </p>
@@ -1287,21 +1359,23 @@ Selects the row at <em class="parameter"><code>path</code></em>.
1287
1359
  <tbody>
1288
1360
  <tr>
1289
1361
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1290
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1362
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
1363
+ </td>
1291
1364
  </tr>
1292
1365
  <tr>
1293
1366
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1294
- <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be selected.</td>
1367
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> to be selected.
1368
+ </td>
1295
1369
  </tr>
1296
1370
  </tbody>
1297
1371
  </table></div>
1298
1372
  <p class="since">Since 2.6</p>
1299
1373
  </div>
1300
1374
  <hr>
1301
- <div class="refsect2">
1375
+ <div class="refsect2" title="gtk_icon_view_unselect_path ()">
1302
1376
  <a name="gtk-icon-view-unselect-path"></a><h3>gtk_icon_view_unselect_path ()</h3>
1303
1377
  <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>,
1304
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1378
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1305
1379
  <p>
1306
1380
  Unselects the row at <em class="parameter"><code>path</code></em>.
1307
1381
  </p>
@@ -1310,21 +1384,23 @@ Unselects the row at <em class="parameter"><code>path</code></em>.
1310
1384
  <tbody>
1311
1385
  <tr>
1312
1386
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1313
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1387
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
1388
+ </td>
1314
1389
  </tr>
1315
1390
  <tr>
1316
1391
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1317
- <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be unselected.</td>
1392
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> to be unselected.
1393
+ </td>
1318
1394
  </tr>
1319
1395
  </tbody>
1320
1396
  </table></div>
1321
1397
  <p class="since">Since 2.6</p>
1322
1398
  </div>
1323
1399
  <hr>
1324
- <div class="refsect2">
1400
+ <div class="refsect2" title="gtk_icon_view_path_is_selected ()">
1325
1401
  <a name="gtk-icon-view-path-is-selected"></a><h3>gtk_icon_view_path_is_selected ()</h3>
1326
1402
  <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>,
1327
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1403
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1328
1404
  <p>
1329
1405
  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
1330
1406
  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.
@@ -1334,23 +1410,26 @@ selected. If <em class="parameter"><code>path</code></em> does not point to a va
1334
1410
  <tbody>
1335
1411
  <tr>
1336
1412
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1337
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1413
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
1414
+ </td>
1338
1415
  </tr>
1339
1416
  <tr>
1340
1417
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1341
- <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to check selection on.</td>
1418
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> to check selection on.
1419
+ </td>
1342
1420
  </tr>
1343
1421
  <tr>
1344
1422
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1345
- <td>
1346
- <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>
1423
+ <td> <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.
1424
+
1425
+ </td>
1347
1426
  </tr>
1348
1427
  </tbody>
1349
1428
  </table></div>
1350
1429
  <p class="since">Since 2.6</p>
1351
1430
  </div>
1352
1431
  <hr>
1353
- <div class="refsect2">
1432
+ <div class="refsect2" title="gtk_icon_view_get_selected_items ()">
1354
1433
  <a name="gtk-icon-view-get-selected-items"></a><h3>gtk_icon_view_get_selected_items ()</h3>
1355
1434
  <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>
1356
1435
  <p>
@@ -1382,11 +1461,12 @@ To free the return value, use:
1382
1461
  <tbody>
1383
1462
  <tr>
1384
1463
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1385
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1464
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
1465
+ </td>
1386
1466
  </tr>
1387
1467
  <tr>
1388
1468
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1389
- <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>
1469
+ <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" title="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> GtkTreePath]</span>
1390
1470
  </td>
1391
1471
  </tr>
1392
1472
  </tbody>
@@ -1394,7 +1474,7 @@ To free the return value, use:
1394
1474
  <p class="since">Since 2.6</p>
1395
1475
  </div>
1396
1476
  <hr>
1397
- <div class="refsect2">
1477
+ <div class="refsect2" title="gtk_icon_view_select_all ()">
1398
1478
  <a name="gtk-icon-view-select-all"></a><h3>gtk_icon_view_select_all ()</h3>
1399
1479
  <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>
1400
1480
  <p>
@@ -1405,13 +1485,14 @@ to <a class="link" href="gtk-Standard-Enumerations.html#GTK-SELECTION-MULTIPLE:C
1405
1485
  <col align="left" valign="top">
1406
1486
  <tbody><tr>
1407
1487
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1408
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1488
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
1489
+ </td>
1409
1490
  </tr></tbody>
1410
1491
  </table></div>
1411
1492
  <p class="since">Since 2.6</p>
1412
1493
  </div>
1413
1494
  <hr>
1414
- <div class="refsect2">
1495
+ <div class="refsect2" title="gtk_icon_view_unselect_all ()">
1415
1496
  <a name="gtk-icon-view-unselect-all"></a><h3>gtk_icon_view_unselect_all ()</h3>
1416
1497
  <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>
1417
1498
  <p>
@@ -1421,16 +1502,17 @@ Unselects all the icons.
1421
1502
  <col align="left" valign="top">
1422
1503
  <tbody><tr>
1423
1504
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1424
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1505
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
1506
+ </td>
1425
1507
  </tr></tbody>
1426
1508
  </table></div>
1427
1509
  <p class="since">Since 2.6</p>
1428
1510
  </div>
1429
1511
  <hr>
1430
- <div class="refsect2">
1512
+ <div class="refsect2" title="gtk_icon_view_item_activated ()">
1431
1513
  <a name="gtk-icon-view-item-activated"></a><h3>gtk_icon_view_item_activated ()</h3>
1432
1514
  <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>,
1433
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1515
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1434
1516
  <p>
1435
1517
  Activates the item determined by <em class="parameter"><code>path</code></em>.
1436
1518
  </p>
@@ -1444,17 +1526,18 @@ Activates the item determined by <em class="parameter"><code>path</code></em>.
1444
1526
  </tr>
1445
1527
  <tr>
1446
1528
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1447
- <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be activated</td>
1529
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> to be activated
1530
+ </td>
1448
1531
  </tr>
1449
1532
  </tbody>
1450
1533
  </table></div>
1451
1534
  <p class="since">Since 2.6</p>
1452
1535
  </div>
1453
1536
  <hr>
1454
- <div class="refsect2">
1537
+ <div class="refsect2" title="gtk_icon_view_scroll_to_path ()">
1455
1538
  <a name="gtk-icon-view-scroll-to-path"></a><h3>gtk_icon_view_scroll_to_path ()</h3>
1456
1539
  <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>,
1457
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1540
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1458
1541
  <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>,
1459
1542
  <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>,
1460
1543
  <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>
@@ -1481,34 +1564,39 @@ centered path will be modified to reflect this change.
1481
1564
  <tbody>
1482
1565
  <tr>
1483
1566
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1484
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
1567
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
1568
+ </td>
1485
1569
  </tr>
1486
1570
  <tr>
1487
1571
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1488
- <td>The path of the item to move to.</td>
1572
+ <td>The path of the item to move to.
1573
+ </td>
1489
1574
  </tr>
1490
1575
  <tr>
1491
1576
  <td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
1492
- <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>
1577
+ <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>.
1578
+ </td>
1493
1579
  </tr>
1494
1580
  <tr>
1495
1581
  <td><p><span class="term"><em class="parameter"><code>row_align</code></em> :</span></p></td>
1496
- <td>The vertical alignment of the item specified by <em class="parameter"><code>path</code></em>.</td>
1582
+ <td>The vertical alignment of the item specified by <em class="parameter"><code>path</code></em>.
1583
+ </td>
1497
1584
  </tr>
1498
1585
  <tr>
1499
1586
  <td><p><span class="term"><em class="parameter"><code>col_align</code></em> :</span></p></td>
1500
- <td>The horizontal alignment of the item specified by <em class="parameter"><code>path</code></em>.</td>
1587
+ <td>The horizontal alignment of the item specified by <em class="parameter"><code>path</code></em>.
1588
+ </td>
1501
1589
  </tr>
1502
1590
  </tbody>
1503
1591
  </table></div>
1504
1592
  <p class="since">Since 2.8</p>
1505
1593
  </div>
1506
1594
  <hr>
1507
- <div class="refsect2">
1595
+ <div class="refsect2" title="gtk_icon_view_get_visible_range ()">
1508
1596
  <a name="gtk-icon-view-get-visible-range"></a><h3>gtk_icon_view_get_visible_range ()</h3>
1509
1597
  <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>,
1510
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
1511
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);</pre>
1598
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
1599
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);</pre>
1512
1600
  <p>
1513
1601
  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.
1514
1602
  Note that there may be invisible paths in between.
@@ -1526,18 +1614,18 @@ Both paths should be freed with <a class="link" href="GtkTreeModel.html#gtk-tree
1526
1614
  </tr>
1527
1615
  <tr>
1528
1616
  <td><p><span class="term"><em class="parameter"><code>start_path</code></em> :</span></p></td>
1529
- <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>
1617
+ <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>
1530
1618
  </td>
1531
1619
  </tr>
1532
1620
  <tr>
1533
1621
  <td><p><span class="term"><em class="parameter"><code>end_path</code></em> :</span></p></td>
1534
- <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>
1622
+ <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>
1535
1623
  </td>
1536
1624
  </tr>
1537
1625
  <tr>
1538
1626
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1539
- <td>
1540
- <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>
1627
+ <td> <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>
1628
+
1541
1629
  </td>
1542
1630
  </tr>
1543
1631
  </tbody>
@@ -1545,11 +1633,11 @@ Both paths should be freed with <a class="link" href="GtkTreeModel.html#gtk-tree
1545
1633
  <p class="since">Since 2.8</p>
1546
1634
  </div>
1547
1635
  <hr>
1548
- <div class="refsect2">
1636
+ <div class="refsect2" title="gtk_icon_view_set_tooltip_item ()">
1549
1637
  <a name="gtk-icon-view-set-tooltip-item"></a><h3>gtk_icon_view_set_tooltip_item ()</h3>
1550
1638
  <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>,
1551
1639
  <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
1552
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1640
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1553
1641
  <p>
1554
1642
  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>.
1555
1643
  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.
@@ -1570,7 +1658,7 @@ See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="
1570
1658
  </tr>
1571
1659
  <tr>
1572
1660
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1573
- <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1661
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a>
1574
1662
  </td>
1575
1663
  </tr>
1576
1664
  </tbody>
@@ -1578,11 +1666,11 @@ See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="
1578
1666
  <p class="since">Since 2.12</p>
1579
1667
  </div>
1580
1668
  <hr>
1581
- <div class="refsect2">
1669
+ <div class="refsect2" title="gtk_icon_view_set_tooltip_cell ()">
1582
1670
  <a name="gtk-icon-view-set-tooltip-cell"></a><h3>gtk_icon_view_set_tooltip_cell ()</h3>
1583
1671
  <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>,
1584
1672
  <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
1585
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1673
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1586
1674
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);</pre>
1587
1675
  <p>
1588
1676
  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
@@ -1606,12 +1694,12 @@ See also <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column
1606
1694
  </tr>
1607
1695
  <tr>
1608
1696
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1609
- <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1697
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a>
1610
1698
  </td>
1611
1699
  </tr>
1612
1700
  <tr>
1613
1701
  <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
1614
- <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>
1702
+ <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>
1615
1703
  </td>
1616
1704
  </tr>
1617
1705
  </tbody>
@@ -1619,15 +1707,15 @@ See also <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column
1619
1707
  <p class="since">Since 2.12</p>
1620
1708
  </div>
1621
1709
  <hr>
1622
- <div class="refsect2">
1710
+ <div class="refsect2" title="gtk_icon_view_get_tooltip_context ()">
1623
1711
  <a name="gtk-icon-view-get-tooltip-context"></a><h3>gtk_icon_view_get_tooltip_context ()</h3>
1624
1712
  <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>,
1625
1713
  <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>,
1626
1714
  <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>,
1627
1715
  <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>,
1628
1716
  <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
1629
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
1630
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1717
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
1718
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1631
1719
  <p>
1632
1720
  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>
1633
1721
  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
@@ -1652,41 +1740,46 @@ to be relative to <em class="parameter"><code>icon_view</code></em>'s bin_window
1652
1740
  </tr>
1653
1741
  <tr>
1654
1742
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1655
- <td>the x coordinate (relative to widget coordinates)</td>
1743
+ <td>the x coordinate (relative to widget coordinates)
1744
+ </td>
1656
1745
  </tr>
1657
1746
  <tr>
1658
1747
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1659
- <td>the y coordinate (relative to widget coordinates)</td>
1748
+ <td>the y coordinate (relative to widget coordinates)
1749
+ </td>
1660
1750
  </tr>
1661
1751
  <tr>
1662
1752
  <td><p><span class="term"><em class="parameter"><code>keyboard_tip</code></em> :</span></p></td>
1663
- <td>whether this is a keyboard tooltip or not</td>
1753
+ <td>whether this is a keyboard tooltip or not
1754
+ </td>
1664
1755
  </tr>
1665
1756
  <tr>
1666
1757
  <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
1667
- <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>
1758
+ <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>
1668
1759
  </td>
1669
1760
  </tr>
1670
1761
  <tr>
1671
1762
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1672
- <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>
1763
+ <td> a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreePath" title="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>
1673
1764
  </td>
1674
1765
  </tr>
1675
1766
  <tr>
1676
1767
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1677
- <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>
1768
+ <td> a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreeIter" title="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>
1678
1769
  </td>
1679
1770
  </tr>
1680
1771
  <tr>
1681
1772
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1682
- <td>whether or not the given tooltip context points to a item</td>
1773
+ <td> whether or not the given tooltip context points to a item
1774
+
1775
+ </td>
1683
1776
  </tr>
1684
1777
  </tbody>
1685
1778
  </table></div>
1686
1779
  <p class="since">Since 2.12</p>
1687
1780
  </div>
1688
1781
  <hr>
1689
- <div class="refsect2">
1782
+ <div class="refsect2" title="gtk_icon_view_set_tooltip_column ()">
1690
1783
  <a name="gtk-icon-view-set-tooltip-column"></a><h3>gtk_icon_view_set_tooltip_column ()</h3>
1691
1784
  <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>,
1692
1785
  <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>
@@ -1710,14 +1803,15 @@ When enabled, <span class="type">"has-tooltip"</span> will be set to <a href="ht
1710
1803
  </tr>
1711
1804
  <tr>
1712
1805
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1713
- <td>an integer, which is a valid column number for <em class="parameter"><code>icon_view</code></em>'s model</td>
1806
+ <td>an integer, which is a valid column number for <em class="parameter"><code>icon_view</code></em>'s model
1807
+ </td>
1714
1808
  </tr>
1715
1809
  </tbody>
1716
1810
  </table></div>
1717
1811
  <p class="since">Since 2.12</p>
1718
1812
  </div>
1719
1813
  <hr>
1720
- <div class="refsect2">
1814
+ <div class="refsect2" title="gtk_icon_view_get_tooltip_column ()">
1721
1815
  <a name="gtk-icon-view-get-tooltip-column"></a><h3>gtk_icon_view_get_tooltip_column ()</h3>
1722
1816
  <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>
1723
1817
  <p>
@@ -1734,18 +1828,20 @@ displaying tooltips on <em class="parameter"><code>icon_view</code></em>'s rows.
1734
1828
  </tr>
1735
1829
  <tr>
1736
1830
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1737
- <td>the index of the tooltip column that is currently being
1738
- used, or -1 if this is disabled.</td>
1831
+ <td> the index of the tooltip column that is currently being
1832
+ used, or -1 if this is disabled.
1833
+
1834
+ </td>
1739
1835
  </tr>
1740
1836
  </tbody>
1741
1837
  </table></div>
1742
1838
  <p class="since">Since 2.12</p>
1743
1839
  </div>
1744
1840
  <hr>
1745
- <div class="refsect2">
1841
+ <div class="refsect2" title="gtk_icon_view_get_item_row ()">
1746
1842
  <a name="gtk-icon-view-get-item-row"></a><h3>gtk_icon_view_get_item_row ()</h3>
1747
1843
  <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>,
1748
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1844
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1749
1845
  <p>
1750
1846
  Gets the row in which the item <em class="parameter"><code>path</code></em> is currently
1751
1847
  displayed. Row numbers start at 0.
@@ -1760,21 +1856,24 @@ displayed. Row numbers start at 0.
1760
1856
  </tr>
1761
1857
  <tr>
1762
1858
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1763
- <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</td>
1859
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> of the item
1860
+ </td>
1764
1861
  </tr>
1765
1862
  <tr>
1766
1863
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1767
- <td>The row in which the item is displayed</td>
1864
+ <td> The row in which the item is displayed
1865
+
1866
+ </td>
1768
1867
  </tr>
1769
1868
  </tbody>
1770
1869
  </table></div>
1771
1870
  <p class="since">Since 2.22</p>
1772
1871
  </div>
1773
1872
  <hr>
1774
- <div class="refsect2">
1873
+ <div class="refsect2" title="gtk_icon_view_get_item_column ()">
1775
1874
  <a name="gtk-icon-view-get-item-column"></a><h3>gtk_icon_view_get_item_column ()</h3>
1776
1875
  <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>,
1777
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1876
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1778
1877
  <p>
1779
1878
  Gets the column in which the item <em class="parameter"><code>path</code></em> is currently
1780
1879
  displayed. Column numbers start at 0.
@@ -1789,18 +1888,21 @@ displayed. Column numbers start at 0.
1789
1888
  </tr>
1790
1889
  <tr>
1791
1890
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1792
- <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</td>
1891
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> of the item
1892
+ </td>
1793
1893
  </tr>
1794
1894
  <tr>
1795
1895
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1796
- <td>The column in which the item is displayed</td>
1896
+ <td> The column in which the item is displayed
1897
+
1898
+ </td>
1797
1899
  </tr>
1798
1900
  </tbody>
1799
1901
  </table></div>
1800
1902
  <p class="since">Since 2.22</p>
1801
1903
  </div>
1802
1904
  <hr>
1803
- <div class="refsect2">
1905
+ <div class="refsect2" title="enum GtkIconViewDropPosition">
1804
1906
  <a name="GtkIconViewDropPosition"></a><h3>enum GtkIconViewDropPosition</h3>
1805
1907
  <pre class="programlisting">typedef enum
1806
1908
  {
@@ -1852,12 +1954,12 @@ An enum for determining where a dropped item goes.
1852
1954
  </table></div>
1853
1955
  </div>
1854
1956
  <hr>
1855
- <div class="refsect2">
1957
+ <div class="refsect2" title="gtk_icon_view_enable_model_drag_source ()">
1856
1958
  <a name="gtk-icon-view-enable-model-drag-source"></a><h3>gtk_icon_view_enable_model_drag_source ()</h3>
1857
1959
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_enable_model_drag_source
1858
1960
  (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1859
1961
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
1860
- <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>,
1962
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
1861
1963
  <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>,
1862
1964
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
1863
1965
  <p>
@@ -1874,11 +1976,13 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
1874
1976
  </tr>
1875
1977
  <tr>
1876
1978
  <td><p><span class="term"><em class="parameter"><code>start_button_mask</code></em> :</span></p></td>
1877
- <td>Mask of allowed buttons to start drag</td>
1979
+ <td>Mask of allowed buttons to start drag
1980
+ </td>
1878
1981
  </tr>
1879
1982
  <tr>
1880
1983
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
1881
- <td>the table of targets that the drag will support</td>
1984
+ <td>the table of targets that the drag will support
1985
+ </td>
1882
1986
  </tr>
1883
1987
  <tr>
1884
1988
  <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
@@ -1888,18 +1992,19 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
1888
1992
  <tr>
1889
1993
  <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
1890
1994
  <td>the bitmask of possible actions for a drag from this
1891
- widget</td>
1995
+ widget
1996
+ </td>
1892
1997
  </tr>
1893
1998
  </tbody>
1894
1999
  </table></div>
1895
2000
  <p class="since">Since 2.8</p>
1896
2001
  </div>
1897
2002
  <hr>
1898
- <div class="refsect2">
2003
+ <div class="refsect2" title="gtk_icon_view_enable_model_drag_dest ()">
1899
2004
  <a name="gtk-icon-view-enable-model-drag-dest"></a><h3>gtk_icon_view_enable_model_drag_dest ()</h3>
1900
2005
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_enable_model_drag_dest
1901
2006
  (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
1902
- <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>,
2007
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
1903
2008
  <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>,
1904
2009
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
1905
2010
  <p>
@@ -1916,7 +2021,8 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
1916
2021
  </tr>
1917
2022
  <tr>
1918
2023
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
1919
- <td>the table of targets that the drag will support</td>
2024
+ <td>the table of targets that the drag will support
2025
+ </td>
1920
2026
  </tr>
1921
2027
  <tr>
1922
2028
  <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
@@ -1926,14 +2032,15 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
1926
2032
  <tr>
1927
2033
  <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
1928
2034
  <td>the bitmask of possible actions for a drag to this
1929
- widget</td>
2035
+ widget
2036
+ </td>
1930
2037
  </tr>
1931
2038
  </tbody>
1932
2039
  </table></div>
1933
2040
  <p class="since">Since 2.8</p>
1934
2041
  </div>
1935
2042
  <hr>
1936
- <div class="refsect2">
2043
+ <div class="refsect2" title="gtk_icon_view_unset_model_drag_source ()">
1937
2044
  <a name="gtk-icon-view-unset-model-drag-source"></a><h3>gtk_icon_view_unset_model_drag_source ()</h3>
1938
2045
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_unset_model_drag_source
1939
2046
  (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
@@ -1952,7 +2059,7 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
1952
2059
  <p class="since">Since 2.8</p>
1953
2060
  </div>
1954
2061
  <hr>
1955
- <div class="refsect2">
2062
+ <div class="refsect2" title="gtk_icon_view_unset_model_drag_dest ()">
1956
2063
  <a name="gtk-icon-view-unset-model-drag-dest"></a><h3>gtk_icon_view_unset_model_drag_dest ()</h3>
1957
2064
  <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>
1958
2065
  <p>
@@ -1970,13 +2077,13 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
1970
2077
  <p class="since">Since 2.8</p>
1971
2078
  </div>
1972
2079
  <hr>
1973
- <div class="refsect2">
2080
+ <div class="refsect2" title="gtk_icon_view_set_reorderable ()">
1974
2081
  <a name="gtk-icon-view-set-reorderable"></a><h3>gtk_icon_view_set_reorderable ()</h3>
1975
2082
  <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>,
1976
2083
  <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>
1977
2084
  <p>
1978
2085
  This function is a convenience function to allow you to reorder models that
1979
- 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
2086
+ support the <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSourceIface" title="GtkTreeDragSourceIface"><span class="type">GtkTreeDragSourceIface</span></a> and the <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragDestIface" title="GtkTreeDragDestIface"><span class="type">GtkTreeDragDestIface</span></a>. Both
1980
2087
  <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
1981
2088
  the user can reorder the model by dragging and dropping rows. The
1982
2089
  developer can listen to these changes by connecting to the model's
@@ -1994,19 +2101,21 @@ handle drag and drop manually.
1994
2101
  <tbody>
1995
2102
  <tr>
1996
2103
  <td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
1997
- <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
2104
+ <td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
2105
+ </td>
1998
2106
  </tr>
1999
2107
  <tr>
2000
2108
  <td><p><span class="term"><em class="parameter"><code>reorderable</code></em> :</span></p></td>
2001
2109
  <td>
2002
- <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>
2110
+ <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.
2111
+ </td>
2003
2112
  </tr>
2004
2113
  </tbody>
2005
2114
  </table></div>
2006
2115
  <p class="since">Since 2.8</p>
2007
2116
  </div>
2008
2117
  <hr>
2009
- <div class="refsect2">
2118
+ <div class="refsect2" title="gtk_icon_view_get_reorderable ()">
2010
2119
  <a name="gtk-icon-view-get-reorderable"></a><h3>gtk_icon_view_get_reorderable ()</h3>
2011
2120
  <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>
2012
2121
  <p>
@@ -2023,18 +2132,19 @@ See <a class="link" href="GtkIconView.html#gtk-icon-view-set-reorderable" title=
2023
2132
  </tr>
2024
2133
  <tr>
2025
2134
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2026
- <td>
2027
- <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>
2135
+ <td> <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.
2136
+
2137
+ </td>
2028
2138
  </tr>
2029
2139
  </tbody>
2030
2140
  </table></div>
2031
2141
  <p class="since">Since 2.8</p>
2032
2142
  </div>
2033
2143
  <hr>
2034
- <div class="refsect2">
2144
+ <div class="refsect2" title="gtk_icon_view_set_drag_dest_item ()">
2035
2145
  <a name="gtk-icon-view-set-drag-dest-item"></a><h3>gtk_icon_view_set_drag_dest_item ()</h3>
2036
2146
  <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>,
2037
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2147
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2038
2148
  <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> pos</code></em>);</pre>
2039
2149
  <p>
2040
2150
  Sets the item that is highlighted for feedback.
@@ -2049,22 +2159,23 @@ Sets the item that is highlighted for feedback.
2049
2159
  </tr>
2050
2160
  <tr>
2051
2161
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2052
- <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>
2162
+ <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>
2053
2163
  </td>
2054
2164
  </tr>
2055
2165
  <tr>
2056
2166
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2057
- <td>Specifies where to drop, relative to the item</td>
2167
+ <td>Specifies where to drop, relative to the item
2168
+ </td>
2058
2169
  </tr>
2059
2170
  </tbody>
2060
2171
  </table></div>
2061
2172
  <p class="since">Since 2.8</p>
2062
2173
  </div>
2063
2174
  <hr>
2064
- <div class="refsect2">
2175
+ <div class="refsect2" title="gtk_icon_view_get_drag_dest_item ()">
2065
2176
  <a name="gtk-icon-view-get-drag-dest-item"></a><h3>gtk_icon_view_get_drag_dest_item ()</h3>
2066
2177
  <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>,
2067
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2178
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2068
2179
  <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
2069
2180
  <p>
2070
2181
  Gets information about the item that is highlighted for feedback.
@@ -2079,12 +2190,12 @@ Gets information about the item that is highlighted for feedback.
2079
2190
  </tr>
2080
2191
  <tr>
2081
2192
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2082
- <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>
2193
+ <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>
2083
2194
  </td>
2084
2195
  </tr>
2085
2196
  <tr>
2086
2197
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2087
- <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>
2198
+ <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>
2088
2199
  </td>
2089
2200
  </tr>
2090
2201
  </tbody>
@@ -2092,12 +2203,12 @@ Gets information about the item that is highlighted for feedback.
2092
2203
  <p class="since">Since 2.8</p>
2093
2204
  </div>
2094
2205
  <hr>
2095
- <div class="refsect2">
2206
+ <div class="refsect2" title="gtk_icon_view_get_dest_item_at_pos ()">
2096
2207
  <a name="gtk-icon-view-get-dest-item-at-pos"></a><h3>gtk_icon_view_get_dest_item_at_pos ()</h3>
2097
2208
  <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>,
2098
2209
  <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>,
2099
2210
  <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>,
2100
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2211
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2101
2212
  <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
2102
2213
  <p>
2103
2214
  Determines the destination item for a given position.
@@ -2112,37 +2223,41 @@ Determines the destination item for a given position.
2112
2223
  </tr>
2113
2224
  <tr>
2114
2225
  <td><p><span class="term"><em class="parameter"><code>drag_x</code></em> :</span></p></td>
2115
- <td>the position to determine the destination item for</td>
2226
+ <td>the position to determine the destination item for
2227
+ </td>
2116
2228
  </tr>
2117
2229
  <tr>
2118
2230
  <td><p><span class="term"><em class="parameter"><code>drag_y</code></em> :</span></p></td>
2119
- <td>the position to determine the destination item for</td>
2231
+ <td>the position to determine the destination item for
2232
+ </td>
2120
2233
  </tr>
2121
2234
  <tr>
2122
2235
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2123
- <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>
2236
+ <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>
2124
2237
  </td>
2125
2238
  </tr>
2126
2239
  <tr>
2127
2240
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2128
- <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>
2241
+ <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>
2129
2242
  </td>
2130
2243
  </tr>
2131
2244
  <tr>
2132
2245
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2133
- <td>whether there is an item at the given position.</td>
2246
+ <td> whether there is an item at the given position.
2247
+
2248
+ </td>
2134
2249
  </tr>
2135
2250
  </tbody>
2136
2251
  </table></div>
2137
2252
  <p class="since">Since 2.8</p>
2138
2253
  </div>
2139
2254
  <hr>
2140
- <div class="refsect2">
2255
+ <div class="refsect2" title="gtk_icon_view_create_drag_icon ()">
2141
2256
  <a name="gtk-icon-view-create-drag-icon"></a><h3>gtk_icon_view_create_drag_icon ()</h3>
2142
2257
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk/unstable/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>,
2143
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
2258
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
2144
2259
  <p>
2145
- Creates a <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> representation of the item at <em class="parameter"><code>path</code></em>.
2260
+ Creates a <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> representation of the item at <em class="parameter"><code>path</code></em>.
2146
2261
  This image is used for a drag icon.
2147
2262
  </p>
2148
2263
  <div class="variablelist"><table border="0">
@@ -2155,12 +2270,13 @@ This image is used for a drag icon.
2155
2270
  </tr>
2156
2271
  <tr>
2157
2272
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2158
- <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> in <em class="parameter"><code>icon_view</code></em>
2273
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> in <em class="parameter"><code>icon_view</code></em>
2159
2274
  </td>
2160
2275
  </tr>
2161
2276
  <tr>
2162
2277
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2163
- <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>
2278
+ <td> a newly-allocated pixmap of the drag icon.
2279
+
2164
2280
  </td>
2165
2281
  </tr>
2166
2282
  </tbody>
@@ -2168,9 +2284,9 @@ This image is used for a drag icon.
2168
2284
  <p class="since">Since 2.8</p>
2169
2285
  </div>
2170
2286
  </div>
2171
- <div class="refsect1">
2287
+ <div class="refsect1" title="Property Details">
2172
2288
  <a name="GtkIconView.property-details"></a><h2>Property Details</h2>
2173
- <div class="refsect2">
2289
+ <div class="refsect2" title='The "column-spacing" property'>
2174
2290
  <a name="GtkIconView--column-spacing"></a><h3>The <code class="literal">"column-spacing"</code> property</h3>
2175
2291
  <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>
2176
2292
  <p>
@@ -2182,7 +2298,7 @@ the columns of the icon view.
2182
2298
  <p class="since">Since 2.6</p>
2183
2299
  </div>
2184
2300
  <hr>
2185
- <div class="refsect2">
2301
+ <div class="refsect2" title='The "columns" property'>
2186
2302
  <a name="GtkIconView--columns"></a><h3>The <code class="literal">"columns"</code> property</h3>
2187
2303
  <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>
2188
2304
  <p>
@@ -2195,7 +2311,7 @@ be chosen automatically to fill the available area.
2195
2311
  <p class="since">Since 2.6</p>
2196
2312
  </div>
2197
2313
  <hr>
2198
- <div class="refsect2">
2314
+ <div class="refsect2" title='The "item-orientation" property'>
2199
2315
  <a name="GtkIconView--item-orientation"></a><h3>The <code class="literal">"item-orientation"</code> property</h3>
2200
2316
  <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>
2201
2317
  <p>
@@ -2206,7 +2322,7 @@ the text) of the item are positioned relative to each other.
2206
2322
  <p class="since">Since 2.22</p>
2207
2323
  </div>
2208
2324
  <hr>
2209
- <div class="refsect2">
2325
+ <div class="refsect2" title='The "item-padding" property'>
2210
2326
  <a name="GtkIconView--item-padding"></a><h3>The <code class="literal">"item-padding"</code> property</h3>
2211
2327
  <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>
2212
2328
  <p>
@@ -2218,7 +2334,7 @@ of the icon view's item.
2218
2334
  <p class="since">Since 2.18</p>
2219
2335
  </div>
2220
2336
  <hr>
2221
- <div class="refsect2">
2337
+ <div class="refsect2" title='The "item-width" property'>
2222
2338
  <a name="GtkIconView--item-width"></a><h3>The <code class="literal">"item-width"</code> property</h3>
2223
2339
  <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>
2224
2340
  <p>
@@ -2231,7 +2347,7 @@ suitable item size.
2231
2347
  <p class="since">Since 2.6</p>
2232
2348
  </div>
2233
2349
  <hr>
2234
- <div class="refsect2">
2350
+ <div class="refsect2" title='The "margin" property'>
2235
2351
  <a name="GtkIconView--margin"></a><h3>The <code class="literal">"margin"</code> property</h3>
2236
2352
  <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>
2237
2353
  <p>
@@ -2243,7 +2359,7 @@ at the edges of the icon view.
2243
2359
  <p class="since">Since 2.6</p>
2244
2360
  </div>
2245
2361
  <hr>
2246
- <div class="refsect2">
2362
+ <div class="refsect2" title='The "markup-column" property'>
2247
2363
  <a name="GtkIconView--markup-column"></a><h3>The <code class="literal">"markup-column"</code> property</h3>
2248
2364
  <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>
2249
2365
  <p>
@@ -2258,16 +2374,16 @@ If both are set to -1, no texts are displayed.
2258
2374
  <p class="since">Since 2.6</p>
2259
2375
  </div>
2260
2376
  <hr>
2261
- <div class="refsect2">
2377
+ <div class="refsect2" title='The "model" property'>
2262
2378
  <a name="GtkIconView--model"></a><h3>The <code class="literal">"model"</code> property</h3>
2263
2379
  <pre class="programlisting"> "model" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write</pre>
2264
2380
  <p>The model for the icon view.</p>
2265
2381
  </div>
2266
2382
  <hr>
2267
- <div class="refsect2">
2383
+ <div class="refsect2" title='The "orientation" property'>
2268
2384
  <a name="GtkIconView--orientation"></a><h3>The <code class="literal">"orientation"</code> property</h3>
2269
2385
  <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>
2270
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2386
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2271
2387
  <h3 class="title">Warning</h3>
2272
2388
  <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>
2273
2389
  </div>
@@ -2279,7 +2395,7 @@ the text) of the item are positioned relative to each other.
2279
2395
  <p class="since">Since 2.6</p>
2280
2396
  </div>
2281
2397
  <hr>
2282
- <div class="refsect2">
2398
+ <div class="refsect2" title='The "pixbuf-column" property'>
2283
2399
  <a name="GtkIconView--pixbuf-column"></a><h3>The <code class="literal">"pixbuf-column"</code> property</h3>
2284
2400
  <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>
2285
2401
  <p>
@@ -2293,7 +2409,7 @@ display of pixbufs.
2293
2409
  <p class="since">Since 2.6</p>
2294
2410
  </div>
2295
2411
  <hr>
2296
- <div class="refsect2">
2412
+ <div class="refsect2" title='The "reorderable" property'>
2297
2413
  <a name="GtkIconView--reorderable"></a><h3>The <code class="literal">"reorderable"</code> property</h3>
2298
2414
  <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>
2299
2415
  <p>
@@ -2304,7 +2420,7 @@ by DND.
2304
2420
  <p class="since">Since 2.8</p>
2305
2421
  </div>
2306
2422
  <hr>
2307
- <div class="refsect2">
2423
+ <div class="refsect2" title='The "row-spacing" property'>
2308
2424
  <a name="GtkIconView--row-spacing"></a><h3>The <code class="literal">"row-spacing"</code> property</h3>
2309
2425
  <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>
2310
2426
  <p>
@@ -2316,7 +2432,7 @@ the rows of the icon view.
2316
2432
  <p class="since">Since 2.6</p>
2317
2433
  </div>
2318
2434
  <hr>
2319
- <div class="refsect2">
2435
+ <div class="refsect2" title='The "selection-mode" property'>
2320
2436
  <a name="GtkIconView--selection-mode"></a><h3>The <code class="literal">"selection-mode"</code> property</h3>
2321
2437
  <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>
2322
2438
  <p>
@@ -2328,7 +2444,7 @@ is enabled, for the other modes, only keyboard selection is possible.
2328
2444
  <p class="since">Since 2.6</p>
2329
2445
  </div>
2330
2446
  <hr>
2331
- <div class="refsect2">
2447
+ <div class="refsect2" title='The "spacing" property'>
2332
2448
  <a name="GtkIconView--spacing"></a><h3>The <code class="literal">"spacing"</code> property</h3>
2333
2449
  <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>
2334
2450
  <p>
@@ -2340,7 +2456,7 @@ the cells (i.e. the icon and the text) of an item.
2340
2456
  <p class="since">Since 2.6</p>
2341
2457
  </div>
2342
2458
  <hr>
2343
- <div class="refsect2">
2459
+ <div class="refsect2" title='The "text-column" property'>
2344
2460
  <a name="GtkIconView--text-column"></a><h3>The <code class="literal">"text-column"</code> property</h3>
2345
2461
  <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>
2346
2462
  <p>
@@ -2354,7 +2470,7 @@ property are both set to -1, no texts are displayed.
2354
2470
  <p class="since">Since 2.6</p>
2355
2471
  </div>
2356
2472
  <hr>
2357
- <div class="refsect2">
2473
+ <div class="refsect2" title='The "tooltip-column" property'>
2358
2474
  <a name="GtkIconView--tooltip-column"></a><h3>The <code class="literal">"tooltip-column"</code> property</h3>
2359
2475
  <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>
2360
2476
  <p>The column in the model containing the tooltip texts for the items.</p>
@@ -2362,27 +2478,27 @@ property are both set to -1, no texts are displayed.
2362
2478
  <p>Default value: -1</p>
2363
2479
  </div>
2364
2480
  </div>
2365
- <div class="refsect1">
2481
+ <div class="refsect1" title="Style Property Details">
2366
2482
  <a name="GtkIconView.style-property-details"></a><h2>Style Property Details</h2>
2367
- <div class="refsect2">
2483
+ <div class="refsect2" title='The "selection-box-alpha" style property'>
2368
2484
  <a name="GtkIconView--s-selection-box-alpha"></a><h3>The <code class="literal">"selection-box-alpha"</code> style property</h3>
2369
2485
  <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>
2370
2486
  <p>Opacity of the selection box.</p>
2371
2487
  <p>Default value: 64</p>
2372
2488
  </div>
2373
2489
  <hr>
2374
- <div class="refsect2">
2490
+ <div class="refsect2" title='The "selection-box-color" style property'>
2375
2491
  <a name="GtkIconView--s-selection-box-color"></a><h3>The <code class="literal">"selection-box-color"</code> style property</h3>
2376
2492
  <pre class="programlisting"> "selection-box-color" <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read</pre>
2377
2493
  <p>Color of the selection box.</p>
2378
2494
  </div>
2379
2495
  </div>
2380
- <div class="refsect1">
2496
+ <div class="refsect1" title="Signal Details">
2381
2497
  <a name="GtkIconView.signal-details"></a><h2>Signal Details</h2>
2382
- <div class="refsect2">
2498
+ <div class="refsect2" title='The "activate-cursor-item" signal'>
2383
2499
  <a name="GtkIconView-activate-cursor-item"></a><h3>The <code class="literal">"activate-cursor-item"</code> signal</h3>
2384
2500
  <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,
2385
- <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>
2501
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
2386
2502
  <p>
2387
2503
  A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2388
2504
  which gets emitted when the user activates the currently
@@ -2401,7 +2517,8 @@ The default bindings for this signal are Space, Return and Enter.
2401
2517
  <tbody>
2402
2518
  <tr>
2403
2519
  <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2404
- <td>the object on which the signal is emitted</td>
2520
+ <td>the object on which the signal is emitted
2521
+ </td>
2405
2522
  </tr>
2406
2523
  <tr>
2407
2524
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2411,11 +2528,11 @@ The default bindings for this signal are Space, Return and Enter.
2411
2528
  </table></div>
2412
2529
  </div>
2413
2530
  <hr>
2414
- <div class="refsect2">
2531
+ <div class="refsect2" title='The "item-activated" signal'>
2415
2532
  <a name="GtkIconView-item-activated"></a><h3>The <code class="literal">"item-activated"</code> signal</h3>
2416
2533
  <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,
2417
- <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
2418
- <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>
2534
+ <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
2535
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
2419
2536
  <p>
2420
2537
  The ::item-activated signal is emitted when the method
2421
2538
  <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
@@ -2428,11 +2545,13 @@ pressed.
2428
2545
  <tbody>
2429
2546
  <tr>
2430
2547
  <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2431
- <td>the object on which the signal is emitted</td>
2548
+ <td>the object on which the signal is emitted
2549
+ </td>
2432
2550
  </tr>
2433
2551
  <tr>
2434
2552
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2435
- <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for the activated item</td>
2553
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> for the activated item
2554
+ </td>
2436
2555
  </tr>
2437
2556
  <tr>
2438
2557
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2442,12 +2561,12 @@ pressed.
2442
2561
  </table></div>
2443
2562
  </div>
2444
2563
  <hr>
2445
- <div class="refsect2">
2564
+ <div class="refsect2" title='The "move-cursor" signal'>
2446
2565
  <a name="GtkIconView-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
2447
2566
  <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,
2448
2567
  <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
2449
2568
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2450
- <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>
2569
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
2451
2570
  <p>
2452
2571
  The ::move-cursor signal is a
2453
2572
  <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
@@ -2477,7 +2596,8 @@ the Shift modifier.
2477
2596
  <tbody>
2478
2597
  <tr>
2479
2598
  <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2480
- <td>the object which received the signal</td>
2599
+ <td>the object which received the signal
2600
+ </td>
2481
2601
  </tr>
2482
2602
  <tr>
2483
2603
  <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
@@ -2486,7 +2606,8 @@ the Shift modifier.
2486
2606
  </tr>
2487
2607
  <tr>
2488
2608
  <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2489
- <td>the number of <em class="parameter"><code>step</code></em> units to move</td>
2609
+ <td>the number of <em class="parameter"><code>step</code></em> units to move
2610
+ </td>
2490
2611
  </tr>
2491
2612
  <tr>
2492
2613
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2496,10 +2617,10 @@ the Shift modifier.
2496
2617
  </table></div>
2497
2618
  </div>
2498
2619
  <hr>
2499
- <div class="refsect2">
2620
+ <div class="refsect2" title='The "select-all" signal'>
2500
2621
  <a name="GtkIconView-select-all"></a><h3>The <code class="literal">"select-all"</code> signal</h3>
2501
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,
2502
- <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>
2623
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
2503
2624
  <p>
2504
2625
  A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2505
2626
  which gets emitted when the user selects all items.
@@ -2517,7 +2638,8 @@ The default binding for this signal is Ctrl-a.
2517
2638
  <tbody>
2518
2639
  <tr>
2519
2640
  <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2520
- <td>the object on which the signal is emitted</td>
2641
+ <td>the object on which the signal is emitted
2642
+ </td>
2521
2643
  </tr>
2522
2644
  <tr>
2523
2645
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2527,10 +2649,10 @@ The default binding for this signal is Ctrl-a.
2527
2649
  </table></div>
2528
2650
  </div>
2529
2651
  <hr>
2530
- <div class="refsect2">
2652
+ <div class="refsect2" title='The "select-cursor-item" signal'>
2531
2653
  <a name="GtkIconView-select-cursor-item"></a><h3>The <code class="literal">"select-cursor-item"</code> signal</h3>
2532
2654
  <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,
2533
- <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>
2655
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
2534
2656
  <p>
2535
2657
  A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2536
2658
  which gets emitted when the user selects the item that is currently
@@ -2549,7 +2671,8 @@ There is no default binding for this signal.
2549
2671
  <tbody>
2550
2672
  <tr>
2551
2673
  <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2552
- <td>the object on which the signal is emitted</td>
2674
+ <td>the object on which the signal is emitted
2675
+ </td>
2553
2676
  </tr>
2554
2677
  <tr>
2555
2678
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2559,10 +2682,10 @@ There is no default binding for this signal.
2559
2682
  </table></div>
2560
2683
  </div>
2561
2684
  <hr>
2562
- <div class="refsect2">
2685
+ <div class="refsect2" title='The "selection-changed" signal'>
2563
2686
  <a name="GtkIconView-selection-changed"></a><h3>The <code class="literal">"selection-changed"</code> signal</h3>
2564
2687
  <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,
2565
- <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>
2688
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
2566
2689
  <p>
2567
2690
  The ::selection-changed signal is emitted when the selection
2568
2691
  (i.e. the set of selected items) changes.
@@ -2572,7 +2695,8 @@ The ::selection-changed signal is emitted when the selection
2572
2695
  <tbody>
2573
2696
  <tr>
2574
2697
  <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2575
- <td>the object on which the signal is emitted</td>
2698
+ <td>the object on which the signal is emitted
2699
+ </td>
2576
2700
  </tr>
2577
2701
  <tr>
2578
2702
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2582,12 +2706,12 @@ The ::selection-changed signal is emitted when the selection
2582
2706
  </table></div>
2583
2707
  </div>
2584
2708
  <hr>
2585
- <div class="refsect2">
2709
+ <div class="refsect2" title='The "set-scroll-adjustments" signal'>
2586
2710
  <a name="GtkIconView-set-scroll-adjustments"></a><h3>The <code class="literal">"set-scroll-adjustments"</code> signal</h3>
2587
2711
  <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,
2588
2712
  <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *vertical,
2589
2713
  <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *arg2,
2590
- <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>
2714
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
2591
2715
  <p>
2592
2716
  Set the scroll adjustments for the icon view. Usually scrolled containers
2593
2717
  like <a class="link" href="GtkScrolledWindow.html" title="GtkScrolledWindow"><span class="type">GtkScrolledWindow</span></a> will emit this signal to connect two instances
@@ -2614,10 +2738,10 @@ of <a class="link" href="GtkScrollbar.html" title="GtkScrollbar"><span class="ty
2614
2738
  </table></div>
2615
2739
  </div>
2616
2740
  <hr>
2617
- <div class="refsect2">
2741
+ <div class="refsect2" title='The "toggle-cursor-item" signal'>
2618
2742
  <a name="GtkIconView-toggle-cursor-item"></a><h3>The <code class="literal">"toggle-cursor-item"</code> signal</h3>
2619
2743
  <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,
2620
- <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>
2744
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
2621
2745
  <p>
2622
2746
  A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2623
2747
  which gets emitted when the user toggles whether the currently
@@ -2637,7 +2761,8 @@ There is no default binding for this signal is Ctrl-Space.
2637
2761
  <tbody>
2638
2762
  <tr>
2639
2763
  <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2640
- <td>the object on which the signal is emitted</td>
2764
+ <td>the object on which the signal is emitted
2765
+ </td>
2641
2766
  </tr>
2642
2767
  <tr>
2643
2768
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2647,10 +2772,10 @@ There is no default binding for this signal is Ctrl-Space.
2647
2772
  </table></div>
2648
2773
  </div>
2649
2774
  <hr>
2650
- <div class="refsect2">
2775
+ <div class="refsect2" title='The "unselect-all" signal'>
2651
2776
  <a name="GtkIconView-unselect-all"></a><h3>The <code class="literal">"unselect-all"</code> signal</h3>
2652
2777
  <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,
2653
- <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>
2778
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
2654
2779
  <p>
2655
2780
  A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2656
2781
  which gets emitted when the user unselects all items.
@@ -2668,7 +2793,8 @@ The default binding for this signal is Ctrl-Shift-a.
2668
2793
  <tbody>
2669
2794
  <tr>
2670
2795
  <td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
2671
- <td>the object on which the signal is emitted</td>
2796
+ <td>the object on which the signal is emitted
2797
+ </td>
2672
2798
  </tr>
2673
2799
  <tr>
2674
2800
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2681,6 +2807,6 @@ The default binding for this signal is Ctrl-Shift-a.
2681
2807
  </div>
2682
2808
  <div class="footer">
2683
2809
  <hr>
2684
- Generated by GTK-Doc V1.16.1</div>
2810
+ Generated by GTK-Doc V1.15</div>
2685
2811
  </body>
2686
2812
  </html>