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="GtkTreeViewColumn.html" title="GtkTreeViewColumn">
10
10
  <link rel="next" href="gtk-GtkTreeView-drag-and-drop.html" title="GtkTreeView drag-and-drop">
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="#GtkTreeView.signals" class="shortcut">Signals</a>
37
37
  </td></tr>
38
38
  </table>
39
- <div class="refentry">
39
+ <div class="refentry" title="GtkTreeView">
40
40
  <a name="GtkTreeView"></a><div class="titlepage"></div>
41
41
  <div class="refnamediv"><table width="100%"><tr>
42
42
  <td valign="top">
@@ -45,12 +45,12 @@
45
45
  </td>
46
46
  <td valign="top" align="right"><img src="list-and-tree.png"></td>
47
47
  </tr></table></div>
48
- <div class="refsynopsisdiv">
48
+ <div class="refsynopsisdiv" title="Synopsis">
49
49
  <a name="GtkTreeView.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="GtkTreeView.html#GtkTreeView-struct" title="struct GtkTreeView">GtkTreeView</a>;
53
+ <a class="link" href="GtkTreeView.html#GtkTreeView-struct" title="GtkTreeView">GtkTreeView</a>;
54
54
  enum <a class="link" href="GtkTreeView.html#GtkTreeViewDropPosition" title="enum GtkTreeViewDropPosition">GtkTreeViewDropPosition</a>;
55
55
  <a class="link" href="GtkTreeView.html#GtkTreeViewPrivate" title="GtkTreeViewPrivate">GtkTreeViewPrivate</a>;
56
56
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (<a class="link" href="GtkTreeView.html#GtkTreeViewColumnDropFunc" title="GtkTreeViewColumnDropFunc ()">*GtkTreeViewColumnDropFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -59,12 +59,12 @@ enum <a class="link" href="GtkTreeView.html#GtkTreeViewDropPositi
59
59
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *next_column</code></em>,
60
60
  <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>);
61
61
  <span class="returnvalue">void</span> (<a class="link" href="GtkTreeView.html#GtkTreeViewMappingFunc" title="GtkTreeViewMappingFunc ()">*GtkTreeViewMappingFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
62
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
62
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
63
63
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
64
64
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (<a class="link" href="GtkTreeView.html#GtkTreeViewSearchEqualFunc" title="GtkTreeViewSearchEqualFunc ()">*GtkTreeViewSearchEqualFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
65
65
  <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>,
66
66
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>,
67
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
67
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
68
68
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> search_data</code></em>);
69
69
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkTreeView.html#gtk-tree-view-new" title="gtk_tree_view_new ()">gtk_tree_view_new</a> (<em class="parameter"><code><span class="type">void</span></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="GtkTreeView.html#gtk-tree-view-get-level-indentation" title="gtk_tree_view_get_level_indentation ()">gtk_tree_view_get_level_indentation</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
@@ -133,63 +133,63 @@ enum <a class="link" href="GtkTreeView.html#GtkTreeViewDropPositi
133
133
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> tree_x</code></em>,
134
134
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> tree_y</code></em>);
135
135
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-scroll-to-cell" title="gtk_tree_view_scroll_to_cell ()">gtk_tree_view_scroll_to_cell</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
136
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
136
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
137
137
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</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
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-cursor" title="gtk_tree_view_set_cursor ()">gtk_tree_view_set_cursor</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
142
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
142
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
143
143
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *focus_column</code></em>,
144
144
  <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>);
145
145
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-cursor-on-cell" title="gtk_tree_view_set_cursor_on_cell ()">gtk_tree_view_set_cursor_on_cell</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</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
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *focus_column</code></em>,
148
148
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *focus_cell</code></em>,
149
149
  <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>);
150
150
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-cursor" title="gtk_tree_view_get_cursor ()">gtk_tree_view_get_cursor</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
151
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
151
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
152
152
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> **focus_column</code></em>);
153
153
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-row-activated" title="gtk_tree_view_row_activated ()">gtk_tree_view_row_activated</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
154
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
154
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
155
155
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>);
156
156
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-expand-all" title="gtk_tree_view_expand_all ()">gtk_tree_view_expand_all</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
157
157
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-collapse-all" title="gtk_tree_view_collapse_all ()">gtk_tree_view_collapse_all</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
158
158
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-expand-to-path" title="gtk_tree_view_expand_to_path ()">gtk_tree_view_expand_to_path</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
159
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
159
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
160
160
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-expand-row" title="gtk_tree_view_expand_row ()">gtk_tree_view_expand_row</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
161
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
161
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
162
162
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> open_all</code></em>);
163
163
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-collapse-row" title="gtk_tree_view_collapse_row ()">gtk_tree_view_collapse_row</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_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
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-map-expanded-rows" title="gtk_tree_view_map_expanded_rows ()">gtk_tree_view_map_expanded_rows</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
166
166
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewMappingFunc" title="GtkTreeViewMappingFunc ()"><span class="type">GtkTreeViewMappingFunc</span></a> func</code></em>,
167
167
  <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>);
168
168
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-row-expanded" title="gtk_tree_view_row_expanded ()">gtk_tree_view_row_expanded</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
169
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
169
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
170
170
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-reorderable" title="gtk_tree_view_set_reorderable ()">gtk_tree_view_set_reorderable</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
171
171
  <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>);
172
172
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-reorderable" title="gtk_tree_view_get_reorderable ()">gtk_tree_view_get_reorderable</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
173
173
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-path-at-pos" title="gtk_tree_view_get_path_at_pos ()">gtk_tree_view_get_path_at_pos</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
174
174
  <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>,
175
175
  <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>,
176
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
176
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
177
177
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> **column</code></em>,
178
178
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *cell_x</code></em>,
179
179
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *cell_y</code></em>);
180
180
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-cell-area" title="gtk_tree_view_get_cell_area ()">gtk_tree_view_get_cell_area</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
181
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
181
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
182
182
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
183
183
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rect</code></em>);
184
184
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-background-area" title="gtk_tree_view_get_background_area ()">gtk_tree_view_get_background_area</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_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="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
187
187
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rect</code></em>);
188
188
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-visible-rect" title="gtk_tree_view_get_visible_rect ()">gtk_tree_view_get_visible_rect</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
189
189
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *visible_rect</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="GtkTreeView.html#gtk-tree-view-get-visible-range" title="gtk_tree_view_get_visible_range ()">gtk_tree_view_get_visible_range</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
191
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
192
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);
191
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
192
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);
193
193
  <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * <a class="link" href="GtkTreeView.html#gtk-tree-view-get-bin-window" title="gtk_tree_view_get_bin_window ()">gtk_tree_view_get_bin_window</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
194
194
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-widget-to-tree-coords" title="gtk_tree_view_widget_to_tree_coords ()">gtk_tree_view_widget_to_tree_coords</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
195
195
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> wx</code></em>,
@@ -239,31 +239,31 @@ enum <a class="link" href="GtkTreeView.html#GtkTreeViewDropPositi
239
239
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *ty</code></em>);
240
240
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-enable-model-drag-dest" title="gtk_tree_view_enable_model_drag_dest ()">gtk_tree_view_enable_model_drag_dest</a>
241
241
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
242
- <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>,
242
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
243
243
  <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>,
244
244
  <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>);
245
245
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-enable-model-drag-source" title="gtk_tree_view_enable_model_drag_source ()">gtk_tree_view_enable_model_drag_source</a>
246
246
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
247
247
  <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>,
248
- <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>,
248
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
249
249
  <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>,
250
250
  <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>);
251
251
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-unset-rows-drag-source" title="gtk_tree_view_unset_rows_drag_source ()">gtk_tree_view_unset_rows_drag_source</a>
252
252
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
253
253
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-unset-rows-drag-dest" title="gtk_tree_view_unset_rows_drag_dest ()">gtk_tree_view_unset_rows_drag_dest</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
254
254
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-drag-dest-row" title="gtk_tree_view_set_drag_dest_row ()">gtk_tree_view_set_drag_dest_row</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
255
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
255
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
256
256
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewDropPosition" title="enum GtkTreeViewDropPosition"><span class="type">GtkTreeViewDropPosition</span></a> pos</code></em>);
257
257
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-drag-dest-row" title="gtk_tree_view_get_drag_dest_row ()">gtk_tree_view_get_drag_dest_row</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
258
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
258
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
259
259
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewDropPosition" title="enum GtkTreeViewDropPosition"><span class="type">GtkTreeViewDropPosition</span></a> *pos</code></em>);
260
260
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-dest-row-at-pos" title="gtk_tree_view_get_dest_row_at_pos ()">gtk_tree_view_get_dest_row_at_pos</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
261
261
  <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>,
262
262
  <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>,
263
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
263
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
264
264
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewDropPosition" title="enum GtkTreeViewDropPosition"><span class="type">GtkTreeViewDropPosition</span></a> *pos</code></em>);
265
265
  <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="GtkTreeView.html#gtk-tree-view-create-row-drag-icon" title="gtk_tree_view_create_row_drag_icon ()">gtk_tree_view_create_row_drag_icon</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
266
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
266
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
267
267
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-enable-search" title="gtk_tree_view_set_enable_search ()">gtk_tree_view_set_enable_search</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
268
268
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable_search</code></em>);
269
269
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-enable-search" title="gtk_tree_view_get_enable_search ()">gtk_tree_view_get_enable_search</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
@@ -299,7 +299,7 @@ enum <a class="link" href="GtkTreeView.html#GtkTreeViewDropPositi
299
299
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-hover-expand" title="gtk_tree_view_set_hover_expand ()">gtk_tree_view_set_hover_expand</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
300
300
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> expand</code></em>);
301
301
  <span class="returnvalue">void</span> (<a class="link" href="GtkTreeView.html#GtkTreeDestroyCountFunc" title="GtkTreeDestroyCountFunc ()">*GtkTreeDestroyCountFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
302
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
302
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
303
303
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> children</code></em>,
304
304
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
305
305
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-destroy-count-func" title="gtk_tree_view_set_destroy_count_func ()">gtk_tree_view_set_destroy_count_func</a>
@@ -308,7 +308,7 @@ enum <a class="link" href="GtkTreeView.html#GtkTreeViewDropPositi
308
308
  <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>,
309
309
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);
310
310
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (<a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()">*GtkTreeViewRowSeparatorFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
311
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
311
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
312
312
  <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>);
313
313
  <a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()"><span class="returnvalue">GtkTreeViewRowSeparatorFunc</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-row-separator-func" title="gtk_tree_view_get_row_separator_func ()">gtk_tree_view_get_row_separator_func</a>
314
314
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
@@ -331,10 +331,10 @@ enum <a class="link" href="GtkTreeView.html#GtkTreeViewGridLines"
331
331
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewGridLines" title="enum GtkTreeViewGridLines"><span class="type">GtkTreeViewGridLines</span></a> grid_lines</code></em>);
332
332
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-tooltip-row" title="gtk_tree_view_set_tooltip_row ()">gtk_tree_view_set_tooltip_row</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
333
333
  <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
334
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
334
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
335
335
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-tooltip-cell" title="gtk_tree_view_set_tooltip_cell ()">gtk_tree_view_set_tooltip_cell</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
336
336
  <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
337
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
337
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
338
338
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
339
339
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);
340
340
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-tooltip-context" title="gtk_tree_view_get_tooltip_context ()">gtk_tree_view_get_tooltip_context</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -342,14 +342,14 @@ enum <a class="link" href="GtkTreeView.html#GtkTreeViewGridLines"
342
342
  <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>,
343
343
  <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>,
344
344
  <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
345
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
346
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
345
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
346
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
347
347
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkTreeView.html#gtk-tree-view-get-tooltip-column" title="gtk_tree_view_get_tooltip_column ()">gtk_tree_view_get_tooltip_column</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);
348
348
  <span class="returnvalue">void</span> <a class="link" href="GtkTreeView.html#gtk-tree-view-set-tooltip-column" title="gtk_tree_view_set_tooltip_column ()">gtk_tree_view_set_tooltip_column</a> (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
349
349
  <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>);
350
350
  </pre>
351
351
  </div>
352
- <div class="refsect1">
352
+ <div class="refsect1" title="Object Hierarchy">
353
353
  <a name="GtkTreeView.object-hierarchy"></a><h2>Object Hierarchy</h2>
354
354
  <pre class="synopsis">
355
355
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -360,13 +360,13 @@ enum <a class="link" href="GtkTreeView.html#GtkTreeViewGridLines"
360
360
  +----GtkTreeView
361
361
  </pre>
362
362
  </div>
363
- <div class="refsect1">
363
+ <div class="refsect1" title="Implemented Interfaces">
364
364
  <a name="GtkTreeView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
365
365
  <p>
366
366
  GtkTreeView implements
367
367
  AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
368
368
  </div>
369
- <div class="refsect1">
369
+ <div class="refsect1" title="Properties">
370
370
  <a name="GtkTreeView.properties"></a><h2>Properties</h2>
371
371
  <pre class="synopsis">
372
372
  "<a class="link" href="GtkTreeView.html#GtkTreeView--enable-grid-lines" title='The "enable-grid-lines" property'>enable-grid-lines</a>" <a class="link" href="GtkTreeView.html#GtkTreeViewGridLines" title="enum GtkTreeViewGridLines"><span class="type">GtkTreeViewGridLines</span></a> : Read / Write
@@ -390,7 +390,7 @@ GtkTreeView implements
390
390
  "<a class="link" href="GtkTreeView.html#GtkTreeView--vadjustment" title='The "vadjustment" property'>vadjustment</a>" <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>* : Read / Write
391
391
  </pre>
392
392
  </div>
393
- <div class="refsect1">
393
+ <div class="refsect1" title="Style Properties">
394
394
  <a name="GtkTreeView.style-properties"></a><h2>Style Properties</h2>
395
395
  <pre class="synopsis">
396
396
  "<a class="link" href="GtkTreeView.html#GtkTreeView--s-allow-rules" title='The "allow-rules" style property'>allow-rules</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
@@ -407,28 +407,28 @@ GtkTreeView implements
407
407
  "<a class="link" href="GtkTreeView.html#GtkTreeView--s-vertical-separator" title='The "vertical-separator" style property'>vertical-separator</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
408
408
  </pre>
409
409
  </div>
410
- <div class="refsect1">
410
+ <div class="refsect1" title="Signals">
411
411
  <a name="GtkTreeView.signals"></a><h2>Signals</h2>
412
412
  <pre class="synopsis">
413
- "<a class="link" href="GtkTreeView.html#GtkTreeView-columns-changed" title='The "columns-changed" signal'>columns-changed</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>
414
- "<a class="link" href="GtkTreeView.html#GtkTreeView-cursor-changed" title='The "cursor-changed" signal'>cursor-changed</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>
415
- "<a class="link" href="GtkTreeView.html#GtkTreeView-expand-collapse-cursor-row" title='The "expand-collapse-cursor-row" signal'>expand-collapse-cursor-row</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
416
- "<a class="link" href="GtkTreeView.html#GtkTreeView-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>
417
- "<a class="link" href="GtkTreeView.html#GtkTreeView-row-activated" title='The "row-activated" signal'>row-activated</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
418
- "<a class="link" href="GtkTreeView.html#GtkTreeView-row-collapsed" title='The "row-collapsed" signal'>row-collapsed</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>
419
- "<a class="link" href="GtkTreeView.html#GtkTreeView-row-expanded" title='The "row-expanded" signal'>row-expanded</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>
420
- "<a class="link" href="GtkTreeView.html#GtkTreeView-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>
421
- "<a class="link" href="GtkTreeView.html#GtkTreeView-select-cursor-parent" title='The "select-cursor-parent" signal'>select-cursor-parent</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
422
- "<a class="link" href="GtkTreeView.html#GtkTreeView-select-cursor-row" title='The "select-cursor-row" signal'>select-cursor-row</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
423
- "<a class="link" href="GtkTreeView.html#GtkTreeView-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-ACTION:CAPS"><code class="literal">Action</code></a>
424
- "<a class="link" href="GtkTreeView.html#GtkTreeView-start-interactive-search" title='The "start-interactive-search" signal'>start-interactive-search</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
425
- "<a class="link" href="GtkTreeView.html#GtkTreeView-test-collapse-row" title='The "test-collapse-row" signal'>test-collapse-row</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>
426
- "<a class="link" href="GtkTreeView.html#GtkTreeView-test-expand-row" title='The "test-expand-row" signal'>test-expand-row</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>
427
- "<a class="link" href="GtkTreeView.html#GtkTreeView-toggle-cursor-row" title='The "toggle-cursor-row" signal'>toggle-cursor-row</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
428
- "<a class="link" href="GtkTreeView.html#GtkTreeView-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>
413
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-columns-changed" title='The "columns-changed" signal'>columns-changed</a>" : Run Last
414
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-cursor-changed" title='The "cursor-changed" signal'>cursor-changed</a>" : Run Last
415
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-expand-collapse-cursor-row" title='The "expand-collapse-cursor-row" signal'>expand-collapse-cursor-row</a>" : Run Last / Action
416
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : Run Last / Action
417
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-row-activated" title='The "row-activated" signal'>row-activated</a>" : Run Last / Action
418
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-row-collapsed" title='The "row-collapsed" signal'>row-collapsed</a>" : Run Last
419
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-row-expanded" title='The "row-expanded" signal'>row-expanded</a>" : Run Last
420
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-select-all" title='The "select-all" signal'>select-all</a>" : Run Last / Action
421
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-select-cursor-parent" title='The "select-cursor-parent" signal'>select-cursor-parent</a>" : Run Last / Action
422
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-select-cursor-row" title='The "select-cursor-row" signal'>select-cursor-row</a>" : Run Last / Action
423
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-set-scroll-adjustments" title='The "set-scroll-adjustments" signal'>set-scroll-adjustments</a>" : Run Last / Action
424
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-start-interactive-search" title='The "start-interactive-search" signal'>start-interactive-search</a>" : Run Last / Action
425
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-test-collapse-row" title='The "test-collapse-row" signal'>test-collapse-row</a>" : Run Last
426
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-test-expand-row" title='The "test-expand-row" signal'>test-expand-row</a>" : Run Last
427
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-toggle-cursor-row" title='The "toggle-cursor-row" signal'>toggle-cursor-row</a>" : Run Last / Action
428
+ "<a class="link" href="GtkTreeView.html#GtkTreeView-unselect-all" title='The "unselect-all" signal'>unselect-all</a>" : Run Last / Action
429
429
  </pre>
430
430
  </div>
431
- <div class="refsect1">
431
+ <div class="refsect1" title="Description">
432
432
  <a name="GtkTreeView.description"></a><h2>Description</h2>
433
433
  <p>
434
434
  Widget that displays any object that implements the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel">GtkTreeModel</a> interface.
@@ -462,7 +462,7 @@ former you can use <a class="link" href="GtkTreeView.html#gtk-tree-view-convert-
462
462
  (and vice versa), for the latter <a class="link" href="GtkTreeView.html#gtk-tree-view-convert-bin-window-to-tree-coords" title="gtk_tree_view_convert_bin_window_to_tree_coords ()"><code class="function">gtk_tree_view_convert_bin_window_to_tree_coords()</code></a>
463
463
  (and vice versa).
464
464
  </p>
465
- <div class="refsect2">
465
+ <div class="refsect2" title="GtkTreeView as GtkBuildable">
466
466
  <a name="GtkTreeView-BUILDER-UI"></a><h3>GtkTreeView as GtkBuildable</h3>
467
467
  <p>
468
468
  The GtkTreeView implementation of the GtkBuildable interface accepts
@@ -470,7 +470,7 @@ GtkTreeViewColumn objects as &lt;child&gt; elements and exposes the
470
470
  internal GtkTreeSelection in UI definitions.
471
471
  </p>
472
472
  <div class="example">
473
- <a name="id904394"></a><p class="title"><b>Example 23. A UI definition fragment with GtkTreeView</b></p>
473
+ <a name="id900731"></a><p class="title"><b>Example 22. A UI definition fragment with GtkTreeView</b></p>
474
474
  <div class="example-contents">
475
475
  <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
476
476
  <tbody>
@@ -522,16 +522,16 @@ internal GtkTreeSelection in UI definitions.
522
522
  <br class="example-break">
523
523
  </div>
524
524
  </div>
525
- <div class="refsect1">
525
+ <div class="refsect1" title="Details">
526
526
  <a name="GtkTreeView.details"></a><h2>Details</h2>
527
- <div class="refsect2">
528
- <a name="GtkTreeView-struct"></a><h3>struct GtkTreeView</h3>
529
- <pre class="programlisting">struct GtkTreeView;</pre>
527
+ <div class="refsect2" title="GtkTreeView">
528
+ <a name="GtkTreeView-struct"></a><h3>GtkTreeView</h3>
529
+ <pre class="programlisting">typedef struct _GtkTreeView GtkTreeView;</pre>
530
530
  <p>
531
531
  </p>
532
532
  </div>
533
533
  <hr>
534
- <div class="refsect2">
534
+ <div class="refsect2" title="enum GtkTreeViewDropPosition">
535
535
  <a name="GtkTreeViewDropPosition"></a><h3>enum GtkTreeViewDropPosition</h3>
536
536
  <pre class="programlisting">typedef enum
537
537
  {
@@ -575,7 +575,7 @@ An enum for determining where a dropped row goes.
575
575
  </table></div>
576
576
  </div>
577
577
  <hr>
578
- <div class="refsect2">
578
+ <div class="refsect2" title="GtkTreeViewPrivate">
579
579
  <a name="GtkTreeViewPrivate"></a><h3>GtkTreeViewPrivate</h3>
580
580
  <pre class="programlisting">typedef struct _GtkTreeViewPrivate GtkTreeViewPrivate;</pre>
581
581
  <p>
@@ -584,7 +584,7 @@ structure is not publically available.
584
584
  </p>
585
585
  </div>
586
586
  <hr>
587
- <div class="refsect2">
587
+ <div class="refsect2" title="GtkTreeViewColumnDropFunc ()">
588
588
  <a name="GtkTreeViewColumnDropFunc"></a><h3>GtkTreeViewColumnDropFunc ()</h3>
589
589
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (*GtkTreeViewColumnDropFunc) (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
590
590
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
@@ -611,7 +611,8 @@ spot to the user.
611
611
  </tr>
612
612
  <tr>
613
613
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
614
- <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> being dragged</td>
614
+ <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> being dragged
615
+ </td>
615
616
  </tr>
616
617
  <tr>
617
618
  <td><p><span class="term"><em class="parameter"><code>prev_column</code></em> :</span></p></td>
@@ -625,21 +626,23 @@ spot to the user.
625
626
  </tr>
626
627
  <tr>
627
628
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
628
- <td>user data</td>
629
+ <td>user data
630
+ </td>
629
631
  </tr>
630
632
  <tr>
631
633
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
632
634
  <td>
633
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <a class="link" href="glossary.html#column" title="column"><span class="type">column</span></a> can be dropped in this spot</td>
635
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <a class="link" href="glossary.html#column" title="column"><span class="type">column</span></a> can be dropped in this spot
636
+ </td>
634
637
  </tr>
635
638
  </tbody>
636
639
  </table></div>
637
640
  </div>
638
641
  <hr>
639
- <div class="refsect2">
642
+ <div class="refsect2" title="GtkTreeViewMappingFunc ()">
640
643
  <a name="GtkTreeViewMappingFunc"></a><h3>GtkTreeViewMappingFunc ()</h3>
641
644
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkTreeViewMappingFunc) (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
642
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
645
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
643
646
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
644
647
  <p>
645
648
  Function used for <a class="link" href="GtkTreeView.html#gtk-tree-view-map-expanded-rows" title="gtk_tree_view_map_expanded_rows ()"><span class="type">gtk_tree_view_map_expanded_rows</span></a>.
@@ -654,22 +657,24 @@ Function used for <a class="link" href="GtkTreeView.html#gtk-tree-view-map-expan
654
657
  </tr>
655
658
  <tr>
656
659
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
657
- <td>The path that's expanded</td>
660
+ <td>The path that's expanded
661
+ </td>
658
662
  </tr>
659
663
  <tr>
660
664
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
661
- <td>user data</td>
665
+ <td>user data
666
+ </td>
662
667
  </tr>
663
668
  </tbody>
664
669
  </table></div>
665
670
  </div>
666
671
  <hr>
667
- <div class="refsect2">
672
+ <div class="refsect2" title="GtkTreeViewSearchEqualFunc ()">
668
673
  <a name="GtkTreeViewSearchEqualFunc"></a><h3>GtkTreeViewSearchEqualFunc ()</h3>
669
674
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (*GtkTreeViewSearchEqualFunc) (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
670
675
  <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>,
671
676
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>,
672
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
677
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
673
678
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> search_data</code></em>);</pre>
674
679
  <p>
675
680
  A function used for checking whether a row in <em class="parameter"><code>model</code></em> matches
@@ -682,7 +687,8 @@ has some similarity to <code class="function">strcmp()</code> returning 0 for eq
682
687
  <tbody>
683
688
  <tr>
684
689
  <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
685
- <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> being searched</td>
690
+ <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> being searched
691
+ </td>
686
692
  </tr>
687
693
  <tr>
688
694
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
@@ -691,12 +697,14 @@ has some similarity to <code class="function">strcmp()</code> returning 0 for eq
691
697
  </tr>
692
698
  <tr>
693
699
  <td><p><span class="term"><em class="parameter"><code>key</code></em> :</span></p></td>
694
- <td>the key string to compare with</td>
700
+ <td>the key string to compare with
701
+ </td>
695
702
  </tr>
696
703
  <tr>
697
704
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
698
- <td>a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing the row of <em class="parameter"><code>model</code></em> that should be compared
699
- with <em class="parameter"><code>key</code></em>.</td>
705
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing the row of <em class="parameter"><code>model</code></em> that should be compared
706
+ with <em class="parameter"><code>key</code></em>.
707
+ </td>
700
708
  </tr>
701
709
  <tr>
702
710
  <td><p><span class="term"><em class="parameter"><code>search_data</code></em> :</span></p></td>
@@ -706,13 +714,14 @@ with <em class="parameter"><code>key</code></em>.</td>
706
714
  <tr>
707
715
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
708
716
  <td>
709
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the row matches, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> otherwise.</td>
717
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the row matches, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> otherwise.
718
+ </td>
710
719
  </tr>
711
720
  </tbody>
712
721
  </table></div>
713
722
  </div>
714
723
  <hr>
715
- <div class="refsect2">
724
+ <div class="refsect2" title="gtk_tree_view_new ()">
716
725
  <a name="gtk-tree-view-new"></a><h3>gtk_tree_view_new ()</h3>
717
726
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_tree_view_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
718
727
  <p>
@@ -722,12 +731,13 @@ Creates a new <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span
722
731
  <col align="left" valign="top">
723
732
  <tbody><tr>
724
733
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
725
- <td>A newly created <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> widget.</td>
734
+ <td> A newly created <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> widget.
735
+ </td>
726
736
  </tr></tbody>
727
737
  </table></div>
728
738
  </div>
729
739
  <hr>
730
- <div class="refsect2">
740
+ <div class="refsect2" title="gtk_tree_view_get_level_indentation ()">
731
741
  <a name="gtk-tree-view-get-level-indentation"></a><h3>gtk_tree_view_get_level_indentation ()</h3>
732
742
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_tree_view_get_level_indentation (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
733
743
  <p>
@@ -739,19 +749,22 @@ in <em class="parameter"><code>tree_view</code></em>.
739
749
  <tbody>
740
750
  <tr>
741
751
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
742
- <td>a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
752
+ <td>a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
753
+ </td>
743
754
  </tr>
744
755
  <tr>
745
756
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
746
- <td>the amount of extra indentation for child levels in
747
- <em class="parameter"><code>tree_view</code></em>. A return value of 0 means that this feature is disabled.</td>
757
+ <td> the amount of extra indentation for child levels in
758
+ <em class="parameter"><code>tree_view</code></em>. A return value of 0 means that this feature is disabled.
759
+
760
+ </td>
748
761
  </tr>
749
762
  </tbody>
750
763
  </table></div>
751
764
  <p class="since">Since 2.12</p>
752
765
  </div>
753
766
  <hr>
754
- <div class="refsect2">
767
+ <div class="refsect2" title="gtk_tree_view_get_show_expanders ()">
755
768
  <a name="gtk-tree-view-get-show-expanders"></a><h3>gtk_tree_view_get_show_expanders ()</h3>
756
769
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_show_expanders (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
757
770
  <p>
@@ -762,20 +775,22 @@ Returns whether or not expanders are drawn in <em class="parameter"><code>tree_v
762
775
  <tbody>
763
776
  <tr>
764
777
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
765
- <td>a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
778
+ <td>a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
779
+ </td>
766
780
  </tr>
767
781
  <tr>
768
782
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
769
- <td>
770
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if expanders are drawn in <em class="parameter"><code>tree_view</code></em>, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
771
- otherwise.</td>
783
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if expanders are drawn in <em class="parameter"><code>tree_view</code></em>, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
784
+ otherwise.
785
+
786
+ </td>
772
787
  </tr>
773
788
  </tbody>
774
789
  </table></div>
775
790
  <p class="since">Since 2.12</p>
776
791
  </div>
777
792
  <hr>
778
- <div class="refsect2">
793
+ <div class="refsect2" title="gtk_tree_view_set_level_indentation ()">
779
794
  <a name="gtk-tree-view-set-level-indentation"></a><h3>gtk_tree_view_set_level_indentation ()</h3>
780
795
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_level_indentation (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
781
796
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> indentation</code></em>);</pre>
@@ -796,14 +811,15 @@ This does not have any visible effects for lists.
796
811
  </tr>
797
812
  <tr>
798
813
  <td><p><span class="term"><em class="parameter"><code>indentation</code></em> :</span></p></td>
799
- <td>the amount, in pixels, of extra indentation in <em class="parameter"><code>tree_view</code></em>.</td>
814
+ <td>the amount, in pixels, of extra indentation in <em class="parameter"><code>tree_view</code></em>.
815
+ </td>
800
816
  </tr>
801
817
  </tbody>
802
818
  </table></div>
803
819
  <p class="since">Since 2.12</p>
804
820
  </div>
805
821
  <hr>
806
- <div class="refsect2">
822
+ <div class="refsect2" title="gtk_tree_view_set_show_expanders ()">
807
823
  <a name="gtk-tree-view-set-show-expanders"></a><h3>gtk_tree_view_set_show_expanders ()</h3>
808
824
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_show_expanders (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
809
825
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enabled</code></em>);</pre>
@@ -827,14 +843,15 @@ This does not have any visible effects for lists.
827
843
  <tr>
828
844
  <td><p><span class="term"><em class="parameter"><code>enabled</code></em> :</span></p></td>
829
845
  <td>
830
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable expander drawing, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
846
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable expander drawing, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
847
+ </td>
831
848
  </tr>
832
849
  </tbody>
833
850
  </table></div>
834
851
  <p class="since">Since 2.12</p>
835
852
  </div>
836
853
  <hr>
837
- <div class="refsect2">
854
+ <div class="refsect2" title="gtk_tree_view_new_with_model ()">
838
855
  <a name="gtk-tree-view-new-with-model"></a><h3>gtk_tree_view_new_with_model ()</h3>
839
856
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_tree_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>
840
857
  <p>
@@ -845,17 +862,19 @@ Creates a new <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span
845
862
  <tbody>
846
863
  <tr>
847
864
  <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
848
- <td>the model.</td>
865
+ <td>the model.
866
+ </td>
849
867
  </tr>
850
868
  <tr>
851
869
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
852
- <td>A newly created <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> widget.</td>
870
+ <td> A newly created <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> widget.
871
+ </td>
853
872
  </tr>
854
873
  </tbody>
855
874
  </table></div>
856
875
  </div>
857
876
  <hr>
858
- <div class="refsect2">
877
+ <div class="refsect2" title="gtk_tree_view_get_model ()">
859
878
  <a name="gtk-tree-view-get-model"></a><h3>gtk_tree_view_get_model ()</h3>
860
879
  <pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * gtk_tree_view_get_model (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
861
880
  <p>
@@ -872,14 +891,14 @@ model is unset.
872
891
  </tr>
873
892
  <tr>
874
893
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
875
- <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. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
894
+ <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. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
876
895
  </td>
877
896
  </tr>
878
897
  </tbody>
879
898
  </table></div>
880
899
  </div>
881
900
  <hr>
882
- <div class="refsect2">
901
+ <div class="refsect2" title="gtk_tree_view_set_model ()">
883
902
  <a name="gtk-tree-view-set-model"></a><h3>gtk_tree_view_set_model ()</h3>
884
903
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_model (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
885
904
  <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
@@ -893,18 +912,19 @@ then it will unset the old model.
893
912
  <tbody>
894
913
  <tr>
895
914
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
896
- <td>A <span class="type">GtkTreeNode</span>.</td>
915
+ <td>A <span class="type">GtkTreeNode</span>.
916
+ </td>
897
917
  </tr>
898
918
  <tr>
899
919
  <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
900
- <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>
920
+ <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>
901
921
  </td>
902
922
  </tr>
903
923
  </tbody>
904
924
  </table></div>
905
925
  </div>
906
926
  <hr>
907
- <div class="refsect2">
927
+ <div class="refsect2" title="gtk_tree_view_get_selection ()">
908
928
  <a name="gtk-tree-view-get-selection"></a><h3>gtk_tree_view_get_selection ()</h3>
909
929
  <pre class="programlisting"><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="returnvalue">GtkTreeSelection</span></a> * gtk_tree_view_get_selection (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
910
930
  <p>
@@ -915,18 +935,19 @@ Gets the <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><
915
935
  <tbody>
916
936
  <tr>
917
937
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
918
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
938
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
939
+ </td>
919
940
  </tr>
920
941
  <tr>
921
942
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
922
- <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> object. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
943
+ <td> A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> object. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
923
944
  </td>
924
945
  </tr>
925
946
  </tbody>
926
947
  </table></div>
927
948
  </div>
928
949
  <hr>
929
- <div class="refsect2">
950
+ <div class="refsect2" title="gtk_tree_view_get_hadjustment ()">
930
951
  <a name="gtk-tree-view-get-hadjustment"></a><h3>gtk_tree_view_get_hadjustment ()</h3>
931
952
  <pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_tree_view_get_hadjustment (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
932
953
  <p>
@@ -942,15 +963,15 @@ Gets the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span c
942
963
  </tr>
943
964
  <tr>
944
965
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
945
- <td>A <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> object, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
946
- if none is 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>
966
+ <td> A <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> object, 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
967
+ used.
947
968
  </td>
948
969
  </tr>
949
970
  </tbody>
950
971
  </table></div>
951
972
  </div>
952
973
  <hr>
953
- <div class="refsect2">
974
+ <div class="refsect2" title="gtk_tree_view_set_hadjustment ()">
954
975
  <a name="gtk-tree-view-set-hadjustment"></a><h3>gtk_tree_view_set_hadjustment ()</h3>
955
976
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_hadjustment (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
956
977
  <em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
@@ -967,14 +988,14 @@ Sets the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span c
967
988
  </tr>
968
989
  <tr>
969
990
  <td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
970
- <td>The <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> to set, 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>
991
+ <td> The <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> to set, 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>
971
992
  </td>
972
993
  </tr>
973
994
  </tbody>
974
995
  </table></div>
975
996
  </div>
976
997
  <hr>
977
- <div class="refsect2">
998
+ <div class="refsect2" title="gtk_tree_view_get_vadjustment ()">
978
999
  <a name="gtk-tree-view-get-vadjustment"></a><h3>gtk_tree_view_get_vadjustment ()</h3>
979
1000
  <pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_tree_view_get_vadjustment (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
980
1001
  <p>
@@ -990,15 +1011,15 @@ Gets the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span c
990
1011
  </tr>
991
1012
  <tr>
992
1013
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
993
- <td>A <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> object, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
994
- if none is 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>
1014
+ <td> A <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> object, 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
1015
+ used.
995
1016
  </td>
996
1017
  </tr>
997
1018
  </tbody>
998
1019
  </table></div>
999
1020
  </div>
1000
1021
  <hr>
1001
- <div class="refsect2">
1022
+ <div class="refsect2" title="gtk_tree_view_set_vadjustment ()">
1002
1023
  <a name="gtk-tree-view-set-vadjustment"></a><h3>gtk_tree_view_set_vadjustment ()</h3>
1003
1024
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_vadjustment (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1004
1025
  <em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
@@ -1015,14 +1036,14 @@ Sets the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span c
1015
1036
  </tr>
1016
1037
  <tr>
1017
1038
  <td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
1018
- <td>The <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> to set, 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>
1039
+ <td> The <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> to set, 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>
1019
1040
  </td>
1020
1041
  </tr>
1021
1042
  </tbody>
1022
1043
  </table></div>
1023
1044
  </div>
1024
1045
  <hr>
1025
- <div class="refsect2">
1046
+ <div class="refsect2" title="gtk_tree_view_get_headers_visible ()">
1026
1047
  <a name="gtk-tree-view-get-headers-visible"></a><h3>gtk_tree_view_get_headers_visible ()</h3>
1027
1048
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_headers_visible (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
1028
1049
  <p>
@@ -1033,17 +1054,19 @@ Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macr
1033
1054
  <tbody>
1034
1055
  <tr>
1035
1056
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1036
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1057
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1058
+ </td>
1037
1059
  </tr>
1038
1060
  <tr>
1039
1061
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1040
- <td>Whether the headers are visible or not.</td>
1062
+ <td> Whether the headers are visible or not.
1063
+ </td>
1041
1064
  </tr>
1042
1065
  </tbody>
1043
1066
  </table></div>
1044
1067
  </div>
1045
1068
  <hr>
1046
- <div class="refsect2">
1069
+ <div class="refsect2" title="gtk_tree_view_set_headers_visible ()">
1047
1070
  <a name="gtk-tree-view-set-headers-visible"></a><h3>gtk_tree_view_set_headers_visible ()</h3>
1048
1071
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_headers_visible (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1049
1072
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> headers_visible</code></em>);</pre>
@@ -1055,18 +1078,20 @@ Sets the visibility state of the headers.
1055
1078
  <tbody>
1056
1079
  <tr>
1057
1080
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1058
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1081
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1082
+ </td>
1059
1083
  </tr>
1060
1084
  <tr>
1061
1085
  <td><p><span class="term"><em class="parameter"><code>headers_visible</code></em> :</span></p></td>
1062
1086
  <td>
1063
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the headers are visible</td>
1087
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the headers are visible
1088
+ </td>
1064
1089
  </tr>
1065
1090
  </tbody>
1066
1091
  </table></div>
1067
1092
  </div>
1068
1093
  <hr>
1069
- <div class="refsect2">
1094
+ <div class="refsect2" title="gtk_tree_view_columns_autosize ()">
1070
1095
  <a name="gtk-tree-view-columns-autosize"></a><h3>gtk_tree_view_columns_autosize ()</h3>
1071
1096
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_columns_autosize (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
1072
1097
  <p>
@@ -1077,12 +1102,13 @@ treeview has been realized.
1077
1102
  <col align="left" valign="top">
1078
1103
  <tbody><tr>
1079
1104
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1080
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1105
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1106
+ </td>
1081
1107
  </tr></tbody>
1082
1108
  </table></div>
1083
1109
  </div>
1084
1110
  <hr>
1085
- <div class="refsect2">
1111
+ <div class="refsect2" title="gtk_tree_view_get_headers_clickable ()">
1086
1112
  <a name="gtk-tree-view-get-headers-clickable"></a><h3>gtk_tree_view_get_headers_clickable ()</h3>
1087
1113
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_headers_clickable (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
1088
1114
  <p>
@@ -1093,12 +1119,13 @@ Returns whether all header columns are clickable.
1093
1119
  <tbody>
1094
1120
  <tr>
1095
1121
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1096
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1122
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1123
+ </td>
1097
1124
  </tr>
1098
1125
  <tr>
1099
1126
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1100
- <td>
1101
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if all header columns are clickable, otherwise <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
1127
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if all header columns are clickable, otherwise <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
1128
+
1102
1129
  </td>
1103
1130
  </tr>
1104
1131
  </tbody>
@@ -1106,7 +1133,7 @@ Returns whether all header columns are clickable.
1106
1133
  <p class="since">Since 2.10</p>
1107
1134
  </div>
1108
1135
  <hr>
1109
- <div class="refsect2">
1136
+ <div class="refsect2" title="gtk_tree_view_set_headers_clickable ()">
1110
1137
  <a name="gtk-tree-view-set-headers-clickable"></a><h3>gtk_tree_view_set_headers_clickable ()</h3>
1111
1138
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_headers_clickable (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1112
1139
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
@@ -1118,18 +1145,20 @@ Allow the column title buttons to be clicked.
1118
1145
  <tbody>
1119
1146
  <tr>
1120
1147
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1121
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1148
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1149
+ </td>
1122
1150
  </tr>
1123
1151
  <tr>
1124
1152
  <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1125
1153
  <td>
1126
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the columns are clickable.</td>
1154
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the columns are clickable.
1155
+ </td>
1127
1156
  </tr>
1128
1157
  </tbody>
1129
1158
  </table></div>
1130
1159
  </div>
1131
1160
  <hr>
1132
- <div class="refsect2">
1161
+ <div class="refsect2" title="gtk_tree_view_set_rules_hint ()">
1133
1162
  <a name="gtk-tree-view-set-rules-hint"></a><h3>gtk_tree_view_set_rules_hint ()</h3>
1134
1163
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_rules_hint (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1135
1164
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
@@ -1158,13 +1187,14 @@ generally).
1158
1187
  <tr>
1159
1188
  <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1160
1189
  <td>
1161
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tree requires reading across rows</td>
1190
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tree requires reading across rows
1191
+ </td>
1162
1192
  </tr>
1163
1193
  </tbody>
1164
1194
  </table></div>
1165
1195
  </div>
1166
1196
  <hr>
1167
- <div class="refsect2">
1197
+ <div class="refsect2" title="gtk_tree_view_get_rules_hint ()">
1168
1198
  <a name="gtk-tree-view-get-rules-hint"></a><h3>gtk_tree_view_get_rules_hint ()</h3>
1169
1199
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_rules_hint (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
1170
1200
  <p>
@@ -1180,14 +1210,14 @@ Gets the setting set by <a class="link" href="GtkTreeView.html#gtk-tree-view-set
1180
1210
  </tr>
1181
1211
  <tr>
1182
1212
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1183
- <td>
1184
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if rules are useful for the user of this tree</td>
1213
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if rules are useful for the user of this tree
1214
+ </td>
1185
1215
  </tr>
1186
1216
  </tbody>
1187
1217
  </table></div>
1188
1218
  </div>
1189
1219
  <hr>
1190
- <div class="refsect2">
1220
+ <div class="refsect2" title="gtk_tree_view_append_column ()">
1191
1221
  <a name="gtk-tree-view-append-column"></a><h3>gtk_tree_view_append_column ()</h3>
1192
1222
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_tree_view_append_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1193
1223
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>);</pre>
@@ -1201,21 +1231,24 @@ GTK_TREE_VIEW_COLUMN_FIXED.
1201
1231
  <tbody>
1202
1232
  <tr>
1203
1233
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1204
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1234
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1235
+ </td>
1205
1236
  </tr>
1206
1237
  <tr>
1207
1238
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1208
- <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to add.</td>
1239
+ <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to add.
1240
+ </td>
1209
1241
  </tr>
1210
1242
  <tr>
1211
1243
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1212
- <td>The number of columns in <em class="parameter"><code>tree_view</code></em> after appending.</td>
1244
+ <td> The number of columns in <em class="parameter"><code>tree_view</code></em> after appending.
1245
+ </td>
1213
1246
  </tr>
1214
1247
  </tbody>
1215
1248
  </table></div>
1216
1249
  </div>
1217
1250
  <hr>
1218
- <div class="refsect2">
1251
+ <div class="refsect2" title="gtk_tree_view_remove_column ()">
1219
1252
  <a name="gtk-tree-view-remove-column"></a><h3>gtk_tree_view_remove_column ()</h3>
1220
1253
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_tree_view_remove_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1221
1254
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>);</pre>
@@ -1227,21 +1260,24 @@ Removes <em class="parameter"><code>column</code></em> from <em class="parameter
1227
1260
  <tbody>
1228
1261
  <tr>
1229
1262
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1230
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1263
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1264
+ </td>
1231
1265
  </tr>
1232
1266
  <tr>
1233
1267
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1234
- <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to remove.</td>
1268
+ <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to remove.
1269
+ </td>
1235
1270
  </tr>
1236
1271
  <tr>
1237
1272
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1238
- <td>The number of columns in <em class="parameter"><code>tree_view</code></em> after removing.</td>
1273
+ <td> The number of columns in <em class="parameter"><code>tree_view</code></em> after removing.
1274
+ </td>
1239
1275
  </tr>
1240
1276
  </tbody>
1241
1277
  </table></div>
1242
1278
  </div>
1243
1279
  <hr>
1244
- <div class="refsect2">
1280
+ <div class="refsect2" title="gtk_tree_view_insert_column ()">
1245
1281
  <a name="gtk-tree-view-insert-column"></a><h3>gtk_tree_view_insert_column ()</h3>
1246
1282
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_tree_view_insert_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1247
1283
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
@@ -1257,25 +1293,29 @@ set to be GTK_TREE_VIEW_COLUMN_FIXED.
1257
1293
  <tbody>
1258
1294
  <tr>
1259
1295
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1260
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1296
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1297
+ </td>
1261
1298
  </tr>
1262
1299
  <tr>
1263
1300
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1264
- <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to be inserted.</td>
1301
+ <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to be inserted.
1302
+ </td>
1265
1303
  </tr>
1266
1304
  <tr>
1267
1305
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
1268
- <td>The position to insert <em class="parameter"><code>column</code></em> in.</td>
1306
+ <td>The position to insert <em class="parameter"><code>column</code></em> in.
1307
+ </td>
1269
1308
  </tr>
1270
1309
  <tr>
1271
1310
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1272
- <td>The number of columns in <em class="parameter"><code>tree_view</code></em> after insertion.</td>
1311
+ <td> The number of columns in <em class="parameter"><code>tree_view</code></em> after insertion.
1312
+ </td>
1273
1313
  </tr>
1274
1314
  </tbody>
1275
1315
  </table></div>
1276
1316
  </div>
1277
1317
  <hr>
1278
- <div class="refsect2">
1318
+ <div class="refsect2" title="gtk_tree_view_insert_column_with_attributes ()">
1279
1319
  <a name="gtk-tree-view-insert-column-with-attributes"></a><h3>gtk_tree_view_insert_column_with_attributes ()</h3>
1280
1320
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_tree_view_insert_column_with_attributes
1281
1321
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -1300,29 +1340,34 @@ property set to be GTK_TREE_VIEW_COLUMN_FIXED.
1300
1340
  </tr>
1301
1341
  <tr>
1302
1342
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
1303
- <td>The position to insert the new column in.</td>
1343
+ <td>The position to insert the new column in.
1344
+ </td>
1304
1345
  </tr>
1305
1346
  <tr>
1306
1347
  <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
1307
- <td>The title to set the header to.</td>
1348
+ <td>The title to set the header to.
1349
+ </td>
1308
1350
  </tr>
1309
1351
  <tr>
1310
1352
  <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
1311
- <td>The <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>.</td>
1353
+ <td>The <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>.
1354
+ </td>
1312
1355
  </tr>
1313
1356
  <tr>
1314
1357
  <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
1315
- <td>A <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated list of attributes.</td>
1358
+ <td>A <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated list of attributes.
1359
+ </td>
1316
1360
  </tr>
1317
1361
  <tr>
1318
1362
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1319
- <td>The number of columns in <em class="parameter"><code>tree_view</code></em> after insertion.</td>
1363
+ <td> The number of columns in <em class="parameter"><code>tree_view</code></em> after insertion.
1364
+ </td>
1320
1365
  </tr>
1321
1366
  </tbody>
1322
1367
  </table></div>
1323
1368
  </div>
1324
1369
  <hr>
1325
- <div class="refsect2">
1370
+ <div class="refsect2" title="gtk_tree_view_insert_column_with_data_func ()">
1326
1371
  <a name="gtk-tree-view-insert-column-with-data-func"></a><h3>gtk_tree_view_insert_column_with_data_func ()</h3>
1327
1372
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_tree_view_insert_column_with_data_func
1328
1373
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -1350,19 +1395,23 @@ If <em class="parameter"><code>tree_view</code></em> has "fixed_height" mode ena
1350
1395
  </tr>
1351
1396
  <tr>
1352
1397
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
1353
- <td>Position to insert, -1 for append</td>
1398
+ <td>Position to insert, -1 for append
1399
+ </td>
1354
1400
  </tr>
1355
1401
  <tr>
1356
1402
  <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
1357
- <td>column title</td>
1403
+ <td>column title
1404
+ </td>
1358
1405
  </tr>
1359
1406
  <tr>
1360
1407
  <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
1361
- <td>cell renderer for column</td>
1408
+ <td>cell renderer for column
1409
+ </td>
1362
1410
  </tr>
1363
1411
  <tr>
1364
1412
  <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
1365
- <td>function to set attributes of cell renderer</td>
1413
+ <td>function to set attributes of cell renderer
1414
+ </td>
1366
1415
  </tr>
1367
1416
  <tr>
1368
1417
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
@@ -1376,13 +1425,14 @@ If <em class="parameter"><code>tree_view</code></em> has "fixed_height" mode ena
1376
1425
  </tr>
1377
1426
  <tr>
1378
1427
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1379
- <td>number of columns in the tree view post-insert</td>
1428
+ <td> number of columns in the tree view post-insert
1429
+ </td>
1380
1430
  </tr>
1381
1431
  </tbody>
1382
1432
  </table></div>
1383
1433
  </div>
1384
1434
  <hr>
1385
- <div class="refsect2">
1435
+ <div class="refsect2" title="gtk_tree_view_get_column ()">
1386
1436
  <a name="gtk-tree-view-get-column"></a><h3>gtk_tree_view_get_column ()</h3>
1387
1437
  <pre class="programlisting"><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="returnvalue">GtkTreeViewColumn</span></a> * gtk_tree_view_get_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1388
1438
  <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</code></em>);</pre>
@@ -1394,23 +1444,25 @@ Gets the <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"
1394
1444
  <tbody>
1395
1445
  <tr>
1396
1446
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1397
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1447
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1448
+ </td>
1398
1449
  </tr>
1399
1450
  <tr>
1400
1451
  <td><p><span class="term"><em class="parameter"><code>n</code></em> :</span></p></td>
1401
- <td>The position of the column, counting from 0.</td>
1452
+ <td>The position of the column, counting from 0.
1453
+ </td>
1402
1454
  </tr>
1403
1455
  <tr>
1404
1456
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1405
- <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</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 the
1406
- position is outside the range of columns. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1457
+ <td> The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</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 the position is outside the
1458
+ range of columns.
1407
1459
  </td>
1408
1460
  </tr>
1409
1461
  </tbody>
1410
1462
  </table></div>
1411
1463
  </div>
1412
1464
  <hr>
1413
- <div class="refsect2">
1465
+ <div class="refsect2" title="gtk_tree_view_get_columns ()">
1414
1466
  <a name="gtk-tree-view-get-columns"></a><h3>gtk_tree_view_get_columns ()</h3>
1415
1467
  <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_tree_view_get_columns (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
1416
1468
  <p>
@@ -1427,14 +1479,14 @@ The returned list must be freed with <a href="http://library.gnome.org/devel/gli
1427
1479
  </tr>
1428
1480
  <tr>
1429
1481
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1430
- <td>A list of <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> s. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkTreeViewColumn][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
1482
+ <td> A list of <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> s. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkTreeViewColumn][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym> GtkTreeViewColumn]</span>
1431
1483
  </td>
1432
1484
  </tr>
1433
1485
  </tbody>
1434
1486
  </table></div>
1435
1487
  </div>
1436
1488
  <hr>
1437
- <div class="refsect2">
1489
+ <div class="refsect2" title="gtk_tree_view_move_column_after ()">
1438
1490
  <a name="gtk-tree-view-move-column-after"></a><h3>gtk_tree_view_move_column_after ()</h3>
1439
1491
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_move_column_after (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1440
1492
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
@@ -1453,18 +1505,19 @@ Moves <em class="parameter"><code>column</code></em> to be after to <em class="p
1453
1505
  </tr>
1454
1506
  <tr>
1455
1507
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1456
- <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to be moved.</td>
1508
+ <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to be moved.
1509
+ </td>
1457
1510
  </tr>
1458
1511
  <tr>
1459
1512
  <td><p><span class="term"><em class="parameter"><code>base_column</code></em> :</span></p></td>
1460
- <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to be moved relative to, 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>
1513
+ <td> The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to be moved relative to, 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>
1461
1514
  </td>
1462
1515
  </tr>
1463
1516
  </tbody>
1464
1517
  </table></div>
1465
1518
  </div>
1466
1519
  <hr>
1467
- <div class="refsect2">
1520
+ <div class="refsect2" title="gtk_tree_view_set_expander_column ()">
1468
1521
  <a name="gtk-tree-view-set-expander-column"></a><h3>gtk_tree_view_set_expander_column ()</h3>
1469
1522
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_expander_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1470
1523
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>);</pre>
@@ -1488,18 +1541,19 @@ expander column to a hidden column.
1488
1541
  <tr>
1489
1542
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1490
1543
  <td>
1491
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, or the column to draw the expander arrow at.</td>
1544
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, or the column to draw the expander arrow at.
1545
+ </td>
1492
1546
  </tr>
1493
1547
  </tbody>
1494
1548
  </table></div>
1495
1549
  </div>
1496
1550
  <hr>
1497
- <div class="refsect2">
1551
+ <div class="refsect2" title="gtk_tree_view_get_expander_column ()">
1498
1552
  <a name="gtk-tree-view-get-expander-column"></a><h3>gtk_tree_view_get_expander_column ()</h3>
1499
1553
  <pre class="programlisting"><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="returnvalue">GtkTreeViewColumn</span></a> * gtk_tree_view_get_expander_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
1500
1554
  <p>
1501
- Returns the column that is the current expander column.
1502
- This column has the expander arrow drawn next to it.
1555
+ Returns the column that is the current expander column. This
1556
+ column has the expander arrow drawn next to it.
1503
1557
  </p>
1504
1558
  <div class="variablelist"><table border="0">
1505
1559
  <col align="left" valign="top">
@@ -1511,14 +1565,14 @@ This column has the expander arrow drawn next to it.
1511
1565
  </tr>
1512
1566
  <tr>
1513
1567
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1514
- <td>The expander column. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1568
+ <td> The expander column.
1515
1569
  </td>
1516
1570
  </tr>
1517
1571
  </tbody>
1518
1572
  </table></div>
1519
1573
  </div>
1520
1574
  <hr>
1521
- <div class="refsect2">
1575
+ <div class="refsect2" title="gtk_tree_view_set_column_drag_function ()">
1522
1576
  <a name="gtk-tree-view-set-column-drag-function"></a><h3>gtk_tree_view_set_column_drag_function ()</h3>
1523
1577
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_column_drag_function
1524
1578
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -1541,28 +1595,29 @@ dropped everywhere.
1541
1595
  <tbody>
1542
1596
  <tr>
1543
1597
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1544
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1598
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1599
+ </td>
1545
1600
  </tr>
1546
1601
  <tr>
1547
1602
  <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
1548
- <td>A function to determine which columns are reorderable, 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>
1603
+ <td> A function to determine which columns are reorderable, 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>
1549
1604
  </td>
1550
1605
  </tr>
1551
1606
  <tr>
1552
1607
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1553
- <td>User data to be passed to <em class="parameter"><code>func</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>
1608
+ <td> User data to be passed to <em class="parameter"><code>func</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>
1554
1609
  </td>
1555
1610
  </tr>
1556
1611
  <tr>
1557
1612
  <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
1558
- <td>Destroy notifier for <em class="parameter"><code>user_data</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>
1613
+ <td> Destroy notifier for <em class="parameter"><code>user_data</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>
1559
1614
  </td>
1560
1615
  </tr>
1561
1616
  </tbody>
1562
1617
  </table></div>
1563
1618
  </div>
1564
1619
  <hr>
1565
- <div class="refsect2">
1620
+ <div class="refsect2" title="gtk_tree_view_scroll_to_point ()">
1566
1621
  <a name="gtk-tree-view-scroll-to-point"></a><h3>gtk_tree_view_scroll_to_point ()</h3>
1567
1622
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_scroll_to_point (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1568
1623
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> tree_x</code></em>,
@@ -1587,20 +1642,22 @@ If either <em class="parameter"><code>tree_x</code></em> or <em class="parameter
1587
1642
  </tr>
1588
1643
  <tr>
1589
1644
  <td><p><span class="term"><em class="parameter"><code>tree_x</code></em> :</span></p></td>
1590
- <td>X coordinate of new top-left pixel of visible area, or -1</td>
1645
+ <td>X coordinate of new top-left pixel of visible area, or -1
1646
+ </td>
1591
1647
  </tr>
1592
1648
  <tr>
1593
1649
  <td><p><span class="term"><em class="parameter"><code>tree_y</code></em> :</span></p></td>
1594
- <td>Y coordinate of new top-left pixel of visible area, or -1</td>
1650
+ <td>Y coordinate of new top-left pixel of visible area, or -1
1651
+ </td>
1595
1652
  </tr>
1596
1653
  </tbody>
1597
1654
  </table></div>
1598
1655
  </div>
1599
1656
  <hr>
1600
- <div class="refsect2">
1657
+ <div class="refsect2" title="gtk_tree_view_scroll_to_cell ()">
1601
1658
  <a name="gtk-tree-view-scroll-to-cell"></a><h3>gtk_tree_view_scroll_to_cell ()</h3>
1602
1659
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_scroll_to_cell (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1603
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1660
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1604
1661
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
1605
1662
  <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>,
1606
1663
  <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>,
@@ -1630,38 +1687,42 @@ path will be modified to reflect this change.
1630
1687
  <tbody>
1631
1688
  <tr>
1632
1689
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1633
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1690
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1691
+ </td>
1634
1692
  </tr>
1635
1693
  <tr>
1636
1694
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1637
- <td>The path of the row to move to, 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>
1695
+ <td> The path of the row to move to, 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>
1638
1696
  </td>
1639
1697
  </tr>
1640
1698
  <tr>
1641
1699
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1642
- <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to move horizontally to, 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>
1700
+ <td> The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to move horizontally to, 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>
1643
1701
  </td>
1644
1702
  </tr>
1645
1703
  <tr>
1646
1704
  <td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
1647
- <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>
1705
+ <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>.
1706
+ </td>
1648
1707
  </tr>
1649
1708
  <tr>
1650
1709
  <td><p><span class="term"><em class="parameter"><code>row_align</code></em> :</span></p></td>
1651
- <td>The vertical alignment of the row specified by <em class="parameter"><code>path</code></em>.</td>
1710
+ <td>The vertical alignment of the row specified by <em class="parameter"><code>path</code></em>.
1711
+ </td>
1652
1712
  </tr>
1653
1713
  <tr>
1654
1714
  <td><p><span class="term"><em class="parameter"><code>col_align</code></em> :</span></p></td>
1655
- <td>The horizontal alignment of the column specified by <em class="parameter"><code>column</code></em>.</td>
1715
+ <td>The horizontal alignment of the column specified by <em class="parameter"><code>column</code></em>.
1716
+ </td>
1656
1717
  </tr>
1657
1718
  </tbody>
1658
1719
  </table></div>
1659
1720
  </div>
1660
1721
  <hr>
1661
- <div class="refsect2">
1722
+ <div class="refsect2" title="gtk_tree_view_set_cursor ()">
1662
1723
  <a name="gtk-tree-view-set-cursor"></a><h3>gtk_tree_view_set_cursor ()</h3>
1663
1724
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_cursor (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1664
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1725
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1665
1726
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *focus_column</code></em>,
1666
1727
  <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>
1667
1728
  <p>
@@ -1688,27 +1749,28 @@ and the function will return without failing.
1688
1749
  </tr>
1689
1750
  <tr>
1690
1751
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1691
- <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1752
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a>
1692
1753
  </td>
1693
1754
  </tr>
1694
1755
  <tr>
1695
1756
  <td><p><span class="term"><em class="parameter"><code>focus_column</code></em> :</span></p></td>
1696
- <td>A <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</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>
1757
+ <td> A <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</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>
1697
1758
  </td>
1698
1759
  </tr>
1699
1760
  <tr>
1700
1761
  <td><p><span class="term"><em class="parameter"><code>start_editing</code></em> :</span></p></td>
1701
1762
  <td>
1702
- <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>
1763
+ <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.
1764
+ </td>
1703
1765
  </tr>
1704
1766
  </tbody>
1705
1767
  </table></div>
1706
1768
  </div>
1707
1769
  <hr>
1708
- <div class="refsect2">
1770
+ <div class="refsect2" title="gtk_tree_view_set_cursor_on_cell ()">
1709
1771
  <a name="gtk-tree-view-set-cursor-on-cell"></a><h3>gtk_tree_view_set_cursor_on_cell ()</h3>
1710
1772
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_cursor_on_cell (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1711
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1773
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1712
1774
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *focus_column</code></em>,
1713
1775
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *focus_cell</code></em>,
1714
1776
  <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>
@@ -1739,33 +1801,34 @@ and the function will return without failing.
1739
1801
  </tr>
1740
1802
  <tr>
1741
1803
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1742
- <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1804
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a>
1743
1805
  </td>
1744
1806
  </tr>
1745
1807
  <tr>
1746
1808
  <td><p><span class="term"><em class="parameter"><code>focus_column</code></em> :</span></p></td>
1747
- <td>A <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</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>
1809
+ <td> A <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</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>
1748
1810
  </td>
1749
1811
  </tr>
1750
1812
  <tr>
1751
1813
  <td><p><span class="term"><em class="parameter"><code>focus_cell</code></em> :</span></p></td>
1752
- <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>
1814
+ <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>
1753
1815
  </td>
1754
1816
  </tr>
1755
1817
  <tr>
1756
1818
  <td><p><span class="term"><em class="parameter"><code>start_editing</code></em> :</span></p></td>
1757
1819
  <td>
1758
- <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>
1820
+ <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.
1821
+ </td>
1759
1822
  </tr>
1760
1823
  </tbody>
1761
1824
  </table></div>
1762
1825
  <p class="since">Since 2.2</p>
1763
1826
  </div>
1764
1827
  <hr>
1765
- <div class="refsect2">
1828
+ <div class="refsect2" title="gtk_tree_view_get_cursor ()">
1766
1829
  <a name="gtk-tree-view-get-cursor"></a><h3>gtk_tree_view_get_cursor ()</h3>
1767
1830
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_get_cursor (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1768
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
1831
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
1769
1832
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> **focus_column</code></em>);</pre>
1770
1833
  <p>
1771
1834
  Fills in <em class="parameter"><code>path</code></em> and <em class="parameter"><code>focus_column</code></em> with the current path and focus column. If
@@ -1773,7 +1836,7 @@ the cursor isn't currently set, then *<em class="parameter"><code>path</code></e
1773
1836
  currently has focus, then *<em class="parameter"><code>focus_column</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>.
1774
1837
  </p>
1775
1838
  <p>
1776
- 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> when
1839
+ 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> when
1777
1840
  you are done with it.
1778
1841
  </p>
1779
1842
  <div class="variablelist"><table border="0">
@@ -1786,22 +1849,22 @@ you are done with it.
1786
1849
  </tr>
1787
1850
  <tr>
1788
1851
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1789
- <td>A pointer to be filled with 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1852
+ <td> A pointer to be filled with 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>
1790
1853
  </td>
1791
1854
  </tr>
1792
1855
  <tr>
1793
1856
  <td><p><span class="term"><em class="parameter"><code>focus_column</code></em> :</span></p></td>
1794
- <td>A pointer to be filled with the current focus column, 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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1857
+ <td> A pointer to be filled with the current focus column, 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>
1795
1858
  </td>
1796
1859
  </tr>
1797
1860
  </tbody>
1798
1861
  </table></div>
1799
1862
  </div>
1800
1863
  <hr>
1801
- <div class="refsect2">
1864
+ <div class="refsect2" title="gtk_tree_view_row_activated ()">
1802
1865
  <a name="gtk-tree-view-row-activated"></a><h3>gtk_tree_view_row_activated ()</h3>
1803
1866
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_row_activated (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1804
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1867
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1805
1868
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>);</pre>
1806
1869
  <p>
1807
1870
  Activates the cell determined by <em class="parameter"><code>path</code></em> and <em class="parameter"><code>column</code></em>.
@@ -1816,17 +1879,19 @@ Activates the cell determined by <em class="parameter"><code>path</code></em> an
1816
1879
  </tr>
1817
1880
  <tr>
1818
1881
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1819
- <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be activated.</td>
1882
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> to be activated.
1883
+ </td>
1820
1884
  </tr>
1821
1885
  <tr>
1822
1886
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1823
- <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to be activated.</td>
1887
+ <td>The <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> to be activated.
1888
+ </td>
1824
1889
  </tr>
1825
1890
  </tbody>
1826
1891
  </table></div>
1827
1892
  </div>
1828
1893
  <hr>
1829
- <div class="refsect2">
1894
+ <div class="refsect2" title="gtk_tree_view_expand_all ()">
1830
1895
  <a name="gtk-tree-view-expand-all"></a><h3>gtk_tree_view_expand_all ()</h3>
1831
1896
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_expand_all (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
1832
1897
  <p>
@@ -1836,12 +1901,13 @@ Recursively expands all nodes in the <em class="parameter"><code>tree_view</code
1836
1901
  <col align="left" valign="top">
1837
1902
  <tbody><tr>
1838
1903
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1839
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1904
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1905
+ </td>
1840
1906
  </tr></tbody>
1841
1907
  </table></div>
1842
1908
  </div>
1843
1909
  <hr>
1844
- <div class="refsect2">
1910
+ <div class="refsect2" title="gtk_tree_view_collapse_all ()">
1845
1911
  <a name="gtk-tree-view-collapse-all"></a><h3>gtk_tree_view_collapse_all ()</h3>
1846
1912
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_collapse_all (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
1847
1913
  <p>
@@ -1851,15 +1917,16 @@ Recursively collapses all visible, expanded nodes in <em class="parameter"><code
1851
1917
  <col align="left" valign="top">
1852
1918
  <tbody><tr>
1853
1919
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1854
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1920
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1921
+ </td>
1855
1922
  </tr></tbody>
1856
1923
  </table></div>
1857
1924
  </div>
1858
1925
  <hr>
1859
- <div class="refsect2">
1926
+ <div class="refsect2" title="gtk_tree_view_expand_to_path ()">
1860
1927
  <a name="gtk-tree-view-expand-to-path"></a><h3>gtk_tree_view_expand_to_path ()</h3>
1861
1928
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_expand_to_path (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1862
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1929
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1863
1930
  <p>
1864
1931
  Expands the row at <em class="parameter"><code>path</code></em>. This will also expand all parent rows of
1865
1932
  <em class="parameter"><code>path</code></em> as necessary.
@@ -1869,21 +1936,23 @@ Expands the row at <em class="parameter"><code>path</code></em>. This will also
1869
1936
  <tbody>
1870
1937
  <tr>
1871
1938
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1872
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
1939
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
1940
+ </td>
1873
1941
  </tr>
1874
1942
  <tr>
1875
1943
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1876
- <td>path to a row.</td>
1944
+ <td>path to a row.
1945
+ </td>
1877
1946
  </tr>
1878
1947
  </tbody>
1879
1948
  </table></div>
1880
1949
  <p class="since">Since 2.2</p>
1881
1950
  </div>
1882
1951
  <hr>
1883
- <div class="refsect2">
1952
+ <div class="refsect2" title="gtk_tree_view_expand_row ()">
1884
1953
  <a name="gtk-tree-view-expand-row"></a><h3>gtk_tree_view_expand_row ()</h3>
1885
1954
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_expand_row (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1886
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1955
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1887
1956
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> open_all</code></em>);</pre>
1888
1957
  <p>
1889
1958
  Opens the row so its children are visible.
@@ -1898,25 +1967,27 @@ Opens the row so its children are visible.
1898
1967
  </tr>
1899
1968
  <tr>
1900
1969
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1901
- <td>path to a row</td>
1970
+ <td>path to a row
1971
+ </td>
1902
1972
  </tr>
1903
1973
  <tr>
1904
1974
  <td><p><span class="term"><em class="parameter"><code>open_all</code></em> :</span></p></td>
1905
- <td>whether to recursively expand, or just expand immediate children</td>
1975
+ <td>whether to recursively expand, or just expand immediate children
1976
+ </td>
1906
1977
  </tr>
1907
1978
  <tr>
1908
1979
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1909
- <td>
1910
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the row existed and had children</td>
1980
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the row existed and had children
1981
+ </td>
1911
1982
  </tr>
1912
1983
  </tbody>
1913
1984
  </table></div>
1914
1985
  </div>
1915
1986
  <hr>
1916
- <div class="refsect2">
1987
+ <div class="refsect2" title="gtk_tree_view_collapse_row ()">
1917
1988
  <a name="gtk-tree-view-collapse-row"></a><h3>gtk_tree_view_collapse_row ()</h3>
1918
1989
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_collapse_row (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1919
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1990
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1920
1991
  <p>
1921
1992
  Collapses a row (hides its child rows, if they exist).
1922
1993
  </p>
@@ -1935,14 +2006,14 @@ Collapses a row (hides its child rows, if they exist).
1935
2006
  </tr>
1936
2007
  <tr>
1937
2008
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1938
- <td>
1939
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the row was collapsed.</td>
2009
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the row was collapsed.
2010
+ </td>
1940
2011
  </tr>
1941
2012
  </tbody>
1942
2013
  </table></div>
1943
2014
  </div>
1944
2015
  <hr>
1945
- <div class="refsect2">
2016
+ <div class="refsect2" title="gtk_tree_view_map_expanded_rows ()">
1946
2017
  <a name="gtk-tree-view-map-expanded-rows"></a><h3>gtk_tree_view_map_expanded_rows ()</h3>
1947
2018
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_map_expanded_rows (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1948
2019
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewMappingFunc" title="GtkTreeViewMappingFunc ()"><span class="type">GtkTreeViewMappingFunc</span></a> func</code></em>,
@@ -1960,21 +2031,22 @@ Calls <em class="parameter"><code>func</code></em> on all expanded rows.
1960
2031
  </tr>
1961
2032
  <tr>
1962
2033
  <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
1963
- <td>A function to be called. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
2034
+ <td>A function to be called
1964
2035
  </td>
1965
2036
  </tr>
1966
2037
  <tr>
1967
2038
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
1968
- <td>User data to be passed to the function.</td>
2039
+ <td>User data to be passed to the function.
2040
+ </td>
1969
2041
  </tr>
1970
2042
  </tbody>
1971
2043
  </table></div>
1972
2044
  </div>
1973
2045
  <hr>
1974
- <div class="refsect2">
2046
+ <div class="refsect2" title="gtk_tree_view_row_expanded ()">
1975
2047
  <a name="gtk-tree-view-row-expanded"></a><h3>gtk_tree_view_row_expanded ()</h3>
1976
2048
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_row_expanded (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
1977
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
2049
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1978
2050
  <p>
1979
2051
  Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the node pointed to by <em class="parameter"><code>path</code></em> is expanded in <em class="parameter"><code>tree_view</code></em>.
1980
2052
  </p>
@@ -1983,22 +2055,24 @@ Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macr
1983
2055
  <tbody>
1984
2056
  <tr>
1985
2057
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
1986
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
2058
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
2059
+ </td>
1987
2060
  </tr>
1988
2061
  <tr>
1989
2062
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1990
- <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to test expansion state.</td>
2063
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> to test expansion state.
2064
+ </td>
1991
2065
  </tr>
1992
2066
  <tr>
1993
2067
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1994
- <td>
1995
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <span class="type">path</span> is expanded.</td>
2068
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <span class="type">path</span> is expanded.
2069
+ </td>
1996
2070
  </tr>
1997
2071
  </tbody>
1998
2072
  </table></div>
1999
2073
  </div>
2000
2074
  <hr>
2001
- <div class="refsect2">
2075
+ <div class="refsect2" title="gtk_tree_view_set_reorderable ()">
2002
2076
  <a name="gtk-tree-view-set-reorderable"></a><h3>gtk_tree_view_set_reorderable ()</h3>
2003
2077
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_reorderable (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2004
2078
  <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>
@@ -2023,18 +2097,20 @@ handle drag and drop manually.
2023
2097
  <tbody>
2024
2098
  <tr>
2025
2099
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
2026
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
2100
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
2101
+ </td>
2027
2102
  </tr>
2028
2103
  <tr>
2029
2104
  <td><p><span class="term"><em class="parameter"><code>reorderable</code></em> :</span></p></td>
2030
2105
  <td>
2031
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the tree can be reordered.</td>
2106
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the tree can be reordered.
2107
+ </td>
2032
2108
  </tr>
2033
2109
  </tbody>
2034
2110
  </table></div>
2035
2111
  </div>
2036
2112
  <hr>
2037
- <div class="refsect2">
2113
+ <div class="refsect2" title="gtk_tree_view_get_reorderable ()">
2038
2114
  <a name="gtk-tree-view-get-reorderable"></a><h3>gtk_tree_view_get_reorderable ()</h3>
2039
2115
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_reorderable (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
2040
2116
  <p>
@@ -2051,19 +2127,19 @@ Retrieves whether the user can reorder the tree via drag-and-drop. See
2051
2127
  </tr>
2052
2128
  <tr>
2053
2129
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2054
- <td>
2055
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tree can be reordered.</td>
2130
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tree can be reordered.
2131
+ </td>
2056
2132
  </tr>
2057
2133
  </tbody>
2058
2134
  </table></div>
2059
2135
  </div>
2060
2136
  <hr>
2061
- <div class="refsect2">
2137
+ <div class="refsect2" title="gtk_tree_view_get_path_at_pos ()">
2062
2138
  <a name="gtk-tree-view-get-path-at-pos"></a><h3>gtk_tree_view_get_path_at_pos ()</h3>
2063
2139
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_path_at_pos (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2064
2140
  <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>,
2065
2141
  <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>,
2066
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2142
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2067
2143
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> **column</code></em>,
2068
2144
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *cell_x</code></em>,
2069
2145
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *cell_y</code></em>);</pre>
@@ -2074,7 +2150,7 @@ That is, <em class="parameter"><code>x</code></em> and <em class="parameter"><co
2074
2150
  come from an event on the <em class="parameter"><code>tree_view</code></em> only where <code class="literal">event-&gt;window ==
2075
2151
  gtk_tree_view_get_bin_window ()</code>. It is primarily for
2076
2152
  things like popup menus. If <em class="parameter"><code>path</code></em> is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then it will be filled
2077
- with the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> at that point. This path should be freed with
2153
+ with the <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> at that point. This path should be freed with
2078
2154
  <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a>. If <em class="parameter"><code>column</code></em> is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then it will be filled
2079
2155
  with the column at that point. <em class="parameter"><code>cell_x</code></em> and <em class="parameter"><code>cell_y</code></em> return the coordinates
2080
2156
  relative to the cell background (i.e. the <em class="parameter"><code>background_area</code></em> passed to
@@ -2092,49 +2168,52 @@ GtkWidget::query-tooltip), please see
2092
2168
  <tbody>
2093
2169
  <tr>
2094
2170
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
2095
- <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
2171
+ <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
2172
+ </td>
2096
2173
  </tr>
2097
2174
  <tr>
2098
2175
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
2099
- <td>The x position to be identified (relative to bin_window).</td>
2176
+ <td>The x position to be identified (relative to bin_window).
2177
+ </td>
2100
2178
  </tr>
2101
2179
  <tr>
2102
2180
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
2103
- <td>The y position to be identified (relative to bin_window).</td>
2181
+ <td>The y position to be identified (relative to bin_window).
2182
+ </td>
2104
2183
  </tr>
2105
2184
  <tr>
2106
2185
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2107
- <td>A pointer to a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointer to be filled in, 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>
2186
+ <td> A pointer to a <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> pointer to be filled in, 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>
2108
2187
  </td>
2109
2188
  </tr>
2110
2189
  <tr>
2111
2190
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
2112
- <td>A pointer to a <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> pointer to be filled in, 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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2191
+ <td> A pointer to a <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> pointer to be filled in, 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>
2113
2192
  </td>
2114
2193
  </tr>
2115
2194
  <tr>
2116
2195
  <td><p><span class="term"><em class="parameter"><code>cell_x</code></em> :</span></p></td>
2117
- <td>A pointer where the X coordinate relative to the cell can be placed, 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>
2196
+ <td> A pointer where the X coordinate relative to the cell can be placed, 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>
2118
2197
  </td>
2119
2198
  </tr>
2120
2199
  <tr>
2121
2200
  <td><p><span class="term"><em class="parameter"><code>cell_y</code></em> :</span></p></td>
2122
- <td>A pointer where the Y coordinate relative to the cell can be placed, 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>
2201
+ <td> A pointer where the Y coordinate relative to the cell can be placed, 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>
2123
2202
  </td>
2124
2203
  </tr>
2125
2204
  <tr>
2126
2205
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2127
- <td>
2128
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a row exists at that coordinate.</td>
2206
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a row exists at that coordinate.
2207
+ </td>
2129
2208
  </tr>
2130
2209
  </tbody>
2131
2210
  </table></div>
2132
2211
  </div>
2133
2212
  <hr>
2134
- <div class="refsect2">
2213
+ <div class="refsect2" title="gtk_tree_view_get_cell_area ()">
2135
2214
  <a name="gtk-tree-view-get-cell-area"></a><h3>gtk_tree_view_get_cell_area ()</h3>
2136
2215
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_get_cell_area (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2137
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2216
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2138
2217
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
2139
2218
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rect</code></em>);</pre>
2140
2219
  <p>
@@ -2158,26 +2237,27 @@ realized.
2158
2237
  </tr>
2159
2238
  <tr>
2160
2239
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2161
- <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for the row, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get only horizontal coordinates. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2240
+ <td> a <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> for the row, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get only horizontal coordinates. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2162
2241
  </td>
2163
2242
  </tr>
2164
2243
  <tr>
2165
2244
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
2166
- <td>a <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> for the column, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get only vertical coordinates. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2245
+ <td> a <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> for the column, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get only vertical coordinates. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2167
2246
  </td>
2168
2247
  </tr>
2169
2248
  <tr>
2170
2249
  <td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
2171
- <td>rectangle to fill with cell rect</td>
2250
+ <td>rectangle to fill with cell rect
2251
+ </td>
2172
2252
  </tr>
2173
2253
  </tbody>
2174
2254
  </table></div>
2175
2255
  </div>
2176
2256
  <hr>
2177
- <div class="refsect2">
2257
+ <div class="refsect2" title="gtk_tree_view_get_background_area ()">
2178
2258
  <a name="gtk-tree-view-get-background-area"></a><h3>gtk_tree_view_get_background_area ()</h3>
2179
2259
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_get_background_area (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2180
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2260
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2181
2261
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
2182
2262
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rect</code></em>);</pre>
2183
2263
  <p>
@@ -2201,23 +2281,24 @@ itself, excluding surrounding borders and the tree expander area.
2201
2281
  </tr>
2202
2282
  <tr>
2203
2283
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2204
- <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for the row, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get only horizontal coordinates. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2284
+ <td> a <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> for the row, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get only horizontal coordinates. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2205
2285
  </td>
2206
2286
  </tr>
2207
2287
  <tr>
2208
2288
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
2209
- <td>a <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> for the column, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get only vertical coordiantes. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2289
+ <td> a <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> for the column, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get only vertical coordiantes. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2210
2290
  </td>
2211
2291
  </tr>
2212
2292
  <tr>
2213
2293
  <td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
2214
- <td>rectangle to fill with cell background rect</td>
2294
+ <td>rectangle to fill with cell background rect
2295
+ </td>
2215
2296
  </tr>
2216
2297
  </tbody>
2217
2298
  </table></div>
2218
2299
  </div>
2219
2300
  <hr>
2220
- <div class="refsect2">
2301
+ <div class="refsect2" title="gtk_tree_view_get_visible_rect ()">
2221
2302
  <a name="gtk-tree-view-get-visible-rect"></a><h3>gtk_tree_view_get_visible_rect ()</h3>
2222
2303
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_get_visible_rect (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2223
2304
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *visible_rect</code></em>);</pre>
@@ -2238,17 +2319,18 @@ scrollable area of the tree.
2238
2319
  </tr>
2239
2320
  <tr>
2240
2321
  <td><p><span class="term"><em class="parameter"><code>visible_rect</code></em> :</span></p></td>
2241
- <td>rectangle to fill</td>
2322
+ <td>rectangle to fill
2323
+ </td>
2242
2324
  </tr>
2243
2325
  </tbody>
2244
2326
  </table></div>
2245
2327
  </div>
2246
2328
  <hr>
2247
- <div class="refsect2">
2329
+ <div class="refsect2" title="gtk_tree_view_get_visible_range ()">
2248
2330
  <a name="gtk-tree-view-get-visible-range"></a><h3>gtk_tree_view_get_visible_range ()</h3>
2249
2331
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_visible_range (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2250
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
2251
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);</pre>
2332
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
2333
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);</pre>
2252
2334
  <p>
2253
2335
  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.
2254
2336
  Note that there may be invisible paths in between.
@@ -2266,31 +2348,32 @@ The paths should be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-
2266
2348
  </tr>
2267
2349
  <tr>
2268
2350
  <td><p><span class="term"><em class="parameter"><code>start_path</code></em> :</span></p></td>
2269
- <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>
2351
+ <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>
2270
2352
  </td>
2271
2353
  </tr>
2272
2354
  <tr>
2273
2355
  <td><p><span class="term"><em class="parameter"><code>end_path</code></em> :</span></p></td>
2274
- <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>
2356
+ <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>
2275
2357
  </td>
2276
2358
  </tr>
2277
2359
  <tr>
2278
2360
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2279
- <td>
2280
- <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>.</td>
2361
+ <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>.
2362
+
2363
+ </td>
2281
2364
  </tr>
2282
2365
  </tbody>
2283
2366
  </table></div>
2284
2367
  <p class="since">Since 2.8</p>
2285
2368
  </div>
2286
2369
  <hr>
2287
- <div class="refsect2">
2370
+ <div class="refsect2" title="gtk_tree_view_get_bin_window ()">
2288
2371
  <a name="gtk-tree-view-get-bin-window"></a><h3>gtk_tree_view_get_bin_window ()</h3>
2289
2372
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * gtk_tree_view_get_bin_window (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
2290
2373
  <p>
2291
- Returns the window that <em class="parameter"><code>tree_view</code></em> renders to.
2292
- This is used primarily to compare to <code class="literal">event-&gt;window</code>
2293
- to confirm that the event on <em class="parameter"><code>tree_view</code></em> is on the right window.
2374
+ Returns the window that <em class="parameter"><code>tree_view</code></em> renders to. This is used primarily to
2375
+ compare to <code class="literal">event-&gt;window</code> to confirm that the event on
2376
+ <em class="parameter"><code>tree_view</code></em> is on the right window.
2294
2377
  </p>
2295
2378
  <div class="variablelist"><table border="0">
2296
2379
  <col align="left" valign="top">
@@ -2302,22 +2385,21 @@ to confirm that the event on <em class="parameter"><code>tree_view</code></em> i
2302
2385
  </tr>
2303
2386
  <tr>
2304
2387
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2305
- <td>A <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> when <em class="parameter"><code>tree_view</code></em>
2306
- hasn't been realized yet. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2388
+ <td> A <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> when <em class="parameter"><code>tree_view</code></em> hasn't been realized yet
2307
2389
  </td>
2308
2390
  </tr>
2309
2391
  </tbody>
2310
2392
  </table></div>
2311
2393
  </div>
2312
2394
  <hr>
2313
- <div class="refsect2">
2395
+ <div class="refsect2" title="gtk_tree_view_widget_to_tree_coords ()">
2314
2396
  <a name="gtk-tree-view-widget-to-tree-coords"></a><h3>gtk_tree_view_widget_to_tree_coords ()</h3>
2315
2397
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_widget_to_tree_coords (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2316
2398
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> wx</code></em>,
2317
2399
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> wy</code></em>,
2318
2400
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *tx</code></em>,
2319
2401
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *ty</code></em>);</pre>
2320
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2402
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2321
2403
  <h3 class="title">Warning</h3>
2322
2404
  <p><code class="literal">gtk_tree_view_widget_to_tree_coords</code> has been deprecated since version 2.12 and should not be used in newly-written code. Due to historial reasons the name of this function is
2323
2405
  incorrect. For converting coordinates relative to the widget to
@@ -2338,32 +2420,36 @@ tree (the full scrollable area of the tree).
2338
2420
  </tr>
2339
2421
  <tr>
2340
2422
  <td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
2341
- <td>X coordinate relative to bin_window</td>
2423
+ <td>X coordinate relative to bin_window
2424
+ </td>
2342
2425
  </tr>
2343
2426
  <tr>
2344
2427
  <td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
2345
- <td>Y coordinate relative to bin_window</td>
2428
+ <td>Y coordinate relative to bin_window
2429
+ </td>
2346
2430
  </tr>
2347
2431
  <tr>
2348
2432
  <td><p><span class="term"><em class="parameter"><code>tx</code></em> :</span></p></td>
2349
- <td>return location for tree X coordinate</td>
2433
+ <td>return location for tree X coordinate
2434
+ </td>
2350
2435
  </tr>
2351
2436
  <tr>
2352
2437
  <td><p><span class="term"><em class="parameter"><code>ty</code></em> :</span></p></td>
2353
- <td>return location for tree Y coordinate</td>
2438
+ <td>return location for tree Y coordinate
2439
+ </td>
2354
2440
  </tr>
2355
2441
  </tbody>
2356
2442
  </table></div>
2357
2443
  </div>
2358
2444
  <hr>
2359
- <div class="refsect2">
2445
+ <div class="refsect2" title="gtk_tree_view_tree_to_widget_coords ()">
2360
2446
  <a name="gtk-tree-view-tree-to-widget-coords"></a><h3>gtk_tree_view_tree_to_widget_coords ()</h3>
2361
2447
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_tree_to_widget_coords (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2362
2448
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> tx</code></em>,
2363
2449
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> ty</code></em>,
2364
2450
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *wx</code></em>,
2365
2451
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *wy</code></em>);</pre>
2366
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2452
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2367
2453
  <h3 class="title">Warning</h3>
2368
2454
  <p><code class="literal">gtk_tree_view_tree_to_widget_coords</code> has been deprecated since version 2.12 and should not be used in newly-written code. Due to historial reasons the name of this function is
2369
2455
  incorrect. For converting bin_window coordinates to coordinates relative
@@ -2384,25 +2470,29 @@ to bin_window coordinates.
2384
2470
  </tr>
2385
2471
  <tr>
2386
2472
  <td><p><span class="term"><em class="parameter"><code>tx</code></em> :</span></p></td>
2387
- <td>tree X coordinate</td>
2473
+ <td>tree X coordinate
2474
+ </td>
2388
2475
  </tr>
2389
2476
  <tr>
2390
2477
  <td><p><span class="term"><em class="parameter"><code>ty</code></em> :</span></p></td>
2391
- <td>tree Y coordinate</td>
2478
+ <td>tree Y coordinate
2479
+ </td>
2392
2480
  </tr>
2393
2481
  <tr>
2394
2482
  <td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
2395
- <td>return location for X coordinate relative to bin_window</td>
2483
+ <td>return location for X coordinate relative to bin_window
2484
+ </td>
2396
2485
  </tr>
2397
2486
  <tr>
2398
2487
  <td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
2399
- <td>return location for Y coordinate relative to bin_window</td>
2488
+ <td>return location for Y coordinate relative to bin_window
2489
+ </td>
2400
2490
  </tr>
2401
2491
  </tbody>
2402
2492
  </table></div>
2403
2493
  </div>
2404
2494
  <hr>
2405
- <div class="refsect2">
2495
+ <div class="refsect2" title="gtk_tree_view_convert_bin_window_to_tree_coords ()">
2406
2496
  <a name="gtk-tree-view-convert-bin-window-to-tree-coords"></a><h3>gtk_tree_view_convert_bin_window_to_tree_coords ()</h3>
2407
2497
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_convert_bin_window_to_tree_coords
2408
2498
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -2424,26 +2514,30 @@ tree (the full scrollable area of the tree).
2424
2514
  </tr>
2425
2515
  <tr>
2426
2516
  <td><p><span class="term"><em class="parameter"><code>bx</code></em> :</span></p></td>
2427
- <td>X coordinate relative to bin_window</td>
2517
+ <td>X coordinate relative to bin_window
2518
+ </td>
2428
2519
  </tr>
2429
2520
  <tr>
2430
2521
  <td><p><span class="term"><em class="parameter"><code>by</code></em> :</span></p></td>
2431
- <td>Y coordinate relative to bin_window</td>
2522
+ <td>Y coordinate relative to bin_window
2523
+ </td>
2432
2524
  </tr>
2433
2525
  <tr>
2434
2526
  <td><p><span class="term"><em class="parameter"><code>tx</code></em> :</span></p></td>
2435
- <td>return location for tree X coordinate</td>
2527
+ <td>return location for tree X coordinate
2528
+ </td>
2436
2529
  </tr>
2437
2530
  <tr>
2438
2531
  <td><p><span class="term"><em class="parameter"><code>ty</code></em> :</span></p></td>
2439
- <td>return location for tree Y coordinate</td>
2532
+ <td>return location for tree Y coordinate
2533
+ </td>
2440
2534
  </tr>
2441
2535
  </tbody>
2442
2536
  </table></div>
2443
2537
  <p class="since">Since 2.12</p>
2444
2538
  </div>
2445
2539
  <hr>
2446
- <div class="refsect2">
2540
+ <div class="refsect2" title="gtk_tree_view_convert_bin_window_to_widget_coords ()">
2447
2541
  <a name="gtk-tree-view-convert-bin-window-to-widget-coords"></a><h3>gtk_tree_view_convert_bin_window_to_widget_coords ()</h3>
2448
2542
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_convert_bin_window_to_widget_coords
2449
2543
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -2465,26 +2559,30 @@ to widget relative coordinates.
2465
2559
  </tr>
2466
2560
  <tr>
2467
2561
  <td><p><span class="term"><em class="parameter"><code>bx</code></em> :</span></p></td>
2468
- <td>bin_window X coordinate</td>
2562
+ <td>bin_window X coordinate
2563
+ </td>
2469
2564
  </tr>
2470
2565
  <tr>
2471
2566
  <td><p><span class="term"><em class="parameter"><code>by</code></em> :</span></p></td>
2472
- <td>bin_window Y coordinate</td>
2567
+ <td>bin_window Y coordinate
2568
+ </td>
2473
2569
  </tr>
2474
2570
  <tr>
2475
2571
  <td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
2476
- <td>return location for widget X coordinate</td>
2572
+ <td>return location for widget X coordinate
2573
+ </td>
2477
2574
  </tr>
2478
2575
  <tr>
2479
2576
  <td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
2480
- <td>return location for widget Y coordinate</td>
2577
+ <td>return location for widget Y coordinate
2578
+ </td>
2481
2579
  </tr>
2482
2580
  </tbody>
2483
2581
  </table></div>
2484
2582
  <p class="since">Since 2.12</p>
2485
2583
  </div>
2486
2584
  <hr>
2487
- <div class="refsect2">
2585
+ <div class="refsect2" title="gtk_tree_view_convert_tree_to_bin_window_coords ()">
2488
2586
  <a name="gtk-tree-view-convert-tree-to-bin-window-coords"></a><h3>gtk_tree_view_convert_tree_to_bin_window_coords ()</h3>
2489
2587
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_convert_tree_to_bin_window_coords
2490
2588
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -2506,26 +2604,30 @@ to bin_window coordinates.
2506
2604
  </tr>
2507
2605
  <tr>
2508
2606
  <td><p><span class="term"><em class="parameter"><code>tx</code></em> :</span></p></td>
2509
- <td>tree X coordinate</td>
2607
+ <td>tree X coordinate
2608
+ </td>
2510
2609
  </tr>
2511
2610
  <tr>
2512
2611
  <td><p><span class="term"><em class="parameter"><code>ty</code></em> :</span></p></td>
2513
- <td>tree Y coordinate</td>
2612
+ <td>tree Y coordinate
2613
+ </td>
2514
2614
  </tr>
2515
2615
  <tr>
2516
2616
  <td><p><span class="term"><em class="parameter"><code>bx</code></em> :</span></p></td>
2517
- <td>return location for X coordinate relative to bin_window</td>
2617
+ <td>return location for X coordinate relative to bin_window
2618
+ </td>
2518
2619
  </tr>
2519
2620
  <tr>
2520
2621
  <td><p><span class="term"><em class="parameter"><code>by</code></em> :</span></p></td>
2521
- <td>return location for Y coordinate relative to bin_window</td>
2622
+ <td>return location for Y coordinate relative to bin_window
2623
+ </td>
2522
2624
  </tr>
2523
2625
  </tbody>
2524
2626
  </table></div>
2525
2627
  <p class="since">Since 2.12</p>
2526
2628
  </div>
2527
2629
  <hr>
2528
- <div class="refsect2">
2630
+ <div class="refsect2" title="gtk_tree_view_convert_tree_to_widget_coords ()">
2529
2631
  <a name="gtk-tree-view-convert-tree-to-widget-coords"></a><h3>gtk_tree_view_convert_tree_to_widget_coords ()</h3>
2530
2632
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_convert_tree_to_widget_coords
2531
2633
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -2547,26 +2649,30 @@ to widget coordinates.
2547
2649
  </tr>
2548
2650
  <tr>
2549
2651
  <td><p><span class="term"><em class="parameter"><code>tx</code></em> :</span></p></td>
2550
- <td>X coordinate relative to the tree</td>
2652
+ <td>X coordinate relative to the tree
2653
+ </td>
2551
2654
  </tr>
2552
2655
  <tr>
2553
2656
  <td><p><span class="term"><em class="parameter"><code>ty</code></em> :</span></p></td>
2554
- <td>Y coordinate relative to the tree</td>
2657
+ <td>Y coordinate relative to the tree
2658
+ </td>
2555
2659
  </tr>
2556
2660
  <tr>
2557
2661
  <td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
2558
- <td>return location for widget X coordinate</td>
2662
+ <td>return location for widget X coordinate
2663
+ </td>
2559
2664
  </tr>
2560
2665
  <tr>
2561
2666
  <td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
2562
- <td>return location for widget Y coordinate</td>
2667
+ <td>return location for widget Y coordinate
2668
+ </td>
2563
2669
  </tr>
2564
2670
  </tbody>
2565
2671
  </table></div>
2566
2672
  <p class="since">Since 2.12</p>
2567
2673
  </div>
2568
2674
  <hr>
2569
- <div class="refsect2">
2675
+ <div class="refsect2" title="gtk_tree_view_convert_widget_to_bin_window_coords ()">
2570
2676
  <a name="gtk-tree-view-convert-widget-to-bin-window-coords"></a><h3>gtk_tree_view_convert_widget_to_bin_window_coords ()</h3>
2571
2677
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_convert_widget_to_bin_window_coords
2572
2678
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -2588,26 +2694,30 @@ Converts widget coordinates to coordinates for the bin_window
2588
2694
  </tr>
2589
2695
  <tr>
2590
2696
  <td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
2591
- <td>X coordinate relative to the widget</td>
2697
+ <td>X coordinate relative to the widget
2698
+ </td>
2592
2699
  </tr>
2593
2700
  <tr>
2594
2701
  <td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
2595
- <td>Y coordinate relative to the widget</td>
2702
+ <td>Y coordinate relative to the widget
2703
+ </td>
2596
2704
  </tr>
2597
2705
  <tr>
2598
2706
  <td><p><span class="term"><em class="parameter"><code>bx</code></em> :</span></p></td>
2599
- <td>return location for bin_window X coordinate</td>
2707
+ <td>return location for bin_window X coordinate
2708
+ </td>
2600
2709
  </tr>
2601
2710
  <tr>
2602
2711
  <td><p><span class="term"><em class="parameter"><code>by</code></em> :</span></p></td>
2603
- <td>return location for bin_window Y coordinate</td>
2712
+ <td>return location for bin_window Y coordinate
2713
+ </td>
2604
2714
  </tr>
2605
2715
  </tbody>
2606
2716
  </table></div>
2607
2717
  <p class="since">Since 2.12</p>
2608
2718
  </div>
2609
2719
  <hr>
2610
- <div class="refsect2">
2720
+ <div class="refsect2" title="gtk_tree_view_convert_widget_to_tree_coords ()">
2611
2721
  <a name="gtk-tree-view-convert-widget-to-tree-coords"></a><h3>gtk_tree_view_convert_widget_to_tree_coords ()</h3>
2612
2722
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_convert_widget_to_tree_coords
2613
2723
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -2629,30 +2739,34 @@ tree (the full scrollable area of the tree).
2629
2739
  </tr>
2630
2740
  <tr>
2631
2741
  <td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
2632
- <td>X coordinate relative to the widget</td>
2742
+ <td>X coordinate relative to the widget
2743
+ </td>
2633
2744
  </tr>
2634
2745
  <tr>
2635
2746
  <td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
2636
- <td>Y coordinate relative to the widget</td>
2747
+ <td>Y coordinate relative to the widget
2748
+ </td>
2637
2749
  </tr>
2638
2750
  <tr>
2639
2751
  <td><p><span class="term"><em class="parameter"><code>tx</code></em> :</span></p></td>
2640
- <td>return location for tree X coordinate</td>
2752
+ <td>return location for tree X coordinate
2753
+ </td>
2641
2754
  </tr>
2642
2755
  <tr>
2643
2756
  <td><p><span class="term"><em class="parameter"><code>ty</code></em> :</span></p></td>
2644
- <td>return location for tree Y coordinate</td>
2757
+ <td>return location for tree Y coordinate
2758
+ </td>
2645
2759
  </tr>
2646
2760
  </tbody>
2647
2761
  </table></div>
2648
2762
  <p class="since">Since 2.12</p>
2649
2763
  </div>
2650
2764
  <hr>
2651
- <div class="refsect2">
2765
+ <div class="refsect2" title="gtk_tree_view_enable_model_drag_dest ()">
2652
2766
  <a name="gtk-tree-view-enable-model-drag-dest"></a><h3>gtk_tree_view_enable_model_drag_dest ()</h3>
2653
2767
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_enable_model_drag_dest
2654
2768
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2655
- <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>,
2769
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
2656
2770
  <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>,
2657
2771
  <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>
2658
2772
  <p>
@@ -2669,7 +2783,7 @@ this method sets <a class="link" href="GtkTreeView.html#GtkTreeView--reorderable
2669
2783
  </tr>
2670
2784
  <tr>
2671
2785
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
2672
- <td>the table of targets that the drag will support. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_targets]</span>
2786
+ <td>the table of targets that the drag will support
2673
2787
  </td>
2674
2788
  </tr>
2675
2789
  <tr>
@@ -2680,18 +2794,19 @@ this method sets <a class="link" href="GtkTreeView.html#GtkTreeView--reorderable
2680
2794
  <tr>
2681
2795
  <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
2682
2796
  <td>the bitmask of possible actions for a drag from this
2683
- widget</td>
2797
+ widget
2798
+ </td>
2684
2799
  </tr>
2685
2800
  </tbody>
2686
2801
  </table></div>
2687
2802
  </div>
2688
2803
  <hr>
2689
- <div class="refsect2">
2804
+ <div class="refsect2" title="gtk_tree_view_enable_model_drag_source ()">
2690
2805
  <a name="gtk-tree-view-enable-model-drag-source"></a><h3>gtk_tree_view_enable_model_drag_source ()</h3>
2691
2806
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_enable_model_drag_source
2692
2807
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2693
2808
  <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>,
2694
- <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>,
2809
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
2695
2810
  <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>,
2696
2811
  <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>
2697
2812
  <p>
@@ -2708,11 +2823,13 @@ method sets <a class="link" href="GtkTreeView.html#GtkTreeView--reorderable" tit
2708
2823
  </tr>
2709
2824
  <tr>
2710
2825
  <td><p><span class="term"><em class="parameter"><code>start_button_mask</code></em> :</span></p></td>
2711
- <td>Mask of allowed buttons to start drag</td>
2826
+ <td>Mask of allowed buttons to start drag
2827
+ </td>
2712
2828
  </tr>
2713
2829
  <tr>
2714
2830
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
2715
- <td>the table of targets that the drag will support</td>
2831
+ <td>the table of targets that the drag will support
2832
+ </td>
2716
2833
  </tr>
2717
2834
  <tr>
2718
2835
  <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
@@ -2722,13 +2839,14 @@ method sets <a class="link" href="GtkTreeView.html#GtkTreeView--reorderable" tit
2722
2839
  <tr>
2723
2840
  <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
2724
2841
  <td>the bitmask of possible actions for a drag from this
2725
- widget</td>
2842
+ widget
2843
+ </td>
2726
2844
  </tr>
2727
2845
  </tbody>
2728
2846
  </table></div>
2729
2847
  </div>
2730
2848
  <hr>
2731
- <div class="refsect2">
2849
+ <div class="refsect2" title="gtk_tree_view_unset_rows_drag_source ()">
2732
2850
  <a name="gtk-tree-view-unset-rows-drag-source"></a><h3>gtk_tree_view_unset_rows_drag_source ()</h3>
2733
2851
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_unset_rows_drag_source
2734
2852
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
@@ -2747,7 +2865,7 @@ Undoes the effect of
2747
2865
  </table></div>
2748
2866
  </div>
2749
2867
  <hr>
2750
- <div class="refsect2">
2868
+ <div class="refsect2" title="gtk_tree_view_unset_rows_drag_dest ()">
2751
2869
  <a name="gtk-tree-view-unset-rows-drag-dest"></a><h3>gtk_tree_view_unset_rows_drag_dest ()</h3>
2752
2870
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_unset_rows_drag_dest (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
2753
2871
  <p>
@@ -2765,10 +2883,10 @@ Undoes the effect of
2765
2883
  </table></div>
2766
2884
  </div>
2767
2885
  <hr>
2768
- <div class="refsect2">
2886
+ <div class="refsect2" title="gtk_tree_view_set_drag_dest_row ()">
2769
2887
  <a name="gtk-tree-view-set-drag-dest-row"></a><h3>gtk_tree_view_set_drag_dest_row ()</h3>
2770
2888
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_drag_dest_row (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2771
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2889
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2772
2890
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewDropPosition" title="enum GtkTreeViewDropPosition"><span class="type">GtkTreeViewDropPosition</span></a> pos</code></em>);</pre>
2773
2891
  <p>
2774
2892
  Sets the row that is highlighted for feedback.
@@ -2783,21 +2901,22 @@ Sets the row that is highlighted for feedback.
2783
2901
  </tr>
2784
2902
  <tr>
2785
2903
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2786
- <td>The path of the row 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>
2904
+ <td> The path of the row 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>
2787
2905
  </td>
2788
2906
  </tr>
2789
2907
  <tr>
2790
2908
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2791
- <td>Specifies whether to drop before, after or into the row</td>
2909
+ <td>Specifies whether to drop before, after or into the row
2910
+ </td>
2792
2911
  </tr>
2793
2912
  </tbody>
2794
2913
  </table></div>
2795
2914
  </div>
2796
2915
  <hr>
2797
- <div class="refsect2">
2916
+ <div class="refsect2" title="gtk_tree_view_get_drag_dest_row ()">
2798
2917
  <a name="gtk-tree-view-get-drag-dest-row"></a><h3>gtk_tree_view_get_drag_dest_row ()</h3>
2799
2918
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_get_drag_dest_row (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2800
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2919
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2801
2920
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewDropPosition" title="enum GtkTreeViewDropPosition"><span class="type">GtkTreeViewDropPosition</span></a> *pos</code></em>);</pre>
2802
2921
  <p>
2803
2922
  Gets information about the row that is highlighted for feedback.
@@ -2812,24 +2931,24 @@ Gets information about the row that is highlighted for feedback.
2812
2931
  </tr>
2813
2932
  <tr>
2814
2933
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2815
- <td>Return location for the path of the highlighted row, 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>
2934
+ <td> Return location for the path of the highlighted row, 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>
2816
2935
  </td>
2817
2936
  </tr>
2818
2937
  <tr>
2819
2938
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2820
- <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="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>
2939
+ <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>
2821
2940
  </td>
2822
2941
  </tr>
2823
2942
  </tbody>
2824
2943
  </table></div>
2825
2944
  </div>
2826
2945
  <hr>
2827
- <div class="refsect2">
2946
+ <div class="refsect2" title="gtk_tree_view_get_dest_row_at_pos ()">
2828
2947
  <a name="gtk-tree-view-get-dest-row-at-pos"></a><h3>gtk_tree_view_get_dest_row_at_pos ()</h3>
2829
2948
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_dest_row_at_pos (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2830
2949
  <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>,
2831
2950
  <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>,
2832
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2951
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
2833
2952
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewDropPosition" title="enum GtkTreeViewDropPosition"><span class="type">GtkTreeViewDropPosition</span></a> *pos</code></em>);</pre>
2834
2953
  <p>
2835
2954
  Determines the destination row for a given position. <em class="parameter"><code>drag_x</code></em> and
@@ -2847,37 +2966,40 @@ return <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macro
2847
2966
  </tr>
2848
2967
  <tr>
2849
2968
  <td><p><span class="term"><em class="parameter"><code>drag_x</code></em> :</span></p></td>
2850
- <td>the position to determine the destination row for</td>
2969
+ <td>the position to determine the destination row for
2970
+ </td>
2851
2971
  </tr>
2852
2972
  <tr>
2853
2973
  <td><p><span class="term"><em class="parameter"><code>drag_y</code></em> :</span></p></td>
2854
- <td>the position to determine the destination row for</td>
2974
+ <td>the position to determine the destination row for
2975
+ </td>
2855
2976
  </tr>
2856
2977
  <tr>
2857
2978
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2858
- <td>Return location for the path of the highlighted row, 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>
2979
+ <td> Return location for the path of the highlighted row, 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>
2859
2980
  </td>
2860
2981
  </tr>
2861
2982
  <tr>
2862
2983
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
2863
- <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="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>
2984
+ <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>
2864
2985
  </td>
2865
2986
  </tr>
2866
2987
  <tr>
2867
2988
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2868
- <td>whether there is a row at the given position, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if this
2869
- is indeed the case.</td>
2989
+ <td> whether there is a row at the given position, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if this
2990
+ is indeed the case.
2991
+ </td>
2870
2992
  </tr>
2871
2993
  </tbody>
2872
2994
  </table></div>
2873
2995
  </div>
2874
2996
  <hr>
2875
- <div class="refsect2">
2997
+ <div class="refsect2" title="gtk_tree_view_create_row_drag_icon ()">
2876
2998
  <a name="gtk-tree-view-create-row-drag-icon"></a><h3>gtk_tree_view_create_row_drag_icon ()</h3>
2877
2999
  <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_tree_view_create_row_drag_icon (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2878
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
3000
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
2879
3001
  <p>
2880
- 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 row at <em class="parameter"><code>path</code></em>.
3002
+ 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 row at <em class="parameter"><code>path</code></em>.
2881
3003
  This image is used for a drag icon.
2882
3004
  </p>
2883
3005
  <div class="variablelist"><table border="0">
@@ -2890,19 +3012,19 @@ This image is used for a drag icon.
2890
3012
  </tr>
2891
3013
  <tr>
2892
3014
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2893
- <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> in <em class="parameter"><code>tree_view</code></em>
3015
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> in <em class="parameter"><code>tree_view</code></em>
2894
3016
  </td>
2895
3017
  </tr>
2896
3018
  <tr>
2897
3019
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2898
- <td>a newly-allocated pixmap of the drag icon. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
3020
+ <td> a newly-allocated pixmap of the drag icon.
2899
3021
  </td>
2900
3022
  </tr>
2901
3023
  </tbody>
2902
3024
  </table></div>
2903
3025
  </div>
2904
3026
  <hr>
2905
- <div class="refsect2">
3027
+ <div class="refsect2" title="gtk_tree_view_set_enable_search ()">
2906
3028
  <a name="gtk-tree-view-set-enable-search"></a><h3>gtk_tree_view_set_enable_search ()</h3>
2907
3029
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_enable_search (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2908
3030
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable_search</code></em>);</pre>
@@ -2925,13 +3047,14 @@ using the "start-interactive-search" key binding.
2925
3047
  <tr>
2926
3048
  <td><p><span class="term"><em class="parameter"><code>enable_search</code></em> :</span></p></td>
2927
3049
  <td>
2928
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the user can search interactively</td>
3050
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the user can search interactively
3051
+ </td>
2929
3052
  </tr>
2930
3053
  </tbody>
2931
3054
  </table></div>
2932
3055
  </div>
2933
3056
  <hr>
2934
- <div class="refsect2">
3057
+ <div class="refsect2" title="gtk_tree_view_get_enable_search ()">
2935
3058
  <a name="gtk-tree-view-get-enable-search"></a><h3>gtk_tree_view_get_enable_search ()</h3>
2936
3059
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_enable_search (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
2937
3060
  <p>
@@ -2948,13 +3071,14 @@ by typing in text.
2948
3071
  </tr>
2949
3072
  <tr>
2950
3073
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2951
- <td>whether or not to let the user search interactively</td>
3074
+ <td> whether or not to let the user search interactively
3075
+ </td>
2952
3076
  </tr>
2953
3077
  </tbody>
2954
3078
  </table></div>
2955
3079
  </div>
2956
3080
  <hr>
2957
- <div class="refsect2">
3081
+ <div class="refsect2" title="gtk_tree_view_get_search_column ()">
2958
3082
  <a name="gtk-tree-view-get-search-column"></a><h3>gtk_tree_view_get_search_column ()</h3>
2959
3083
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_tree_view_get_search_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
2960
3084
  <p>
@@ -2970,13 +3094,14 @@ Gets the column searched on by the interactive search code.
2970
3094
  </tr>
2971
3095
  <tr>
2972
3096
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2973
- <td>the column the interactive search code searches in.</td>
3097
+ <td> the column the interactive search code searches in.
3098
+ </td>
2974
3099
  </tr>
2975
3100
  </tbody>
2976
3101
  </table></div>
2977
3102
  </div>
2978
3103
  <hr>
2979
- <div class="refsect2">
3104
+ <div class="refsect2" title="gtk_tree_view_set_search_column ()">
2980
3105
  <a name="gtk-tree-view-set-search-column"></a><h3>gtk_tree_view_set_search_column ()</h3>
2981
3106
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_search_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
2982
3107
  <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>
@@ -3003,13 +3128,14 @@ column is reset to -1 when the model is changed.
3003
3128
  </tr>
3004
3129
  <tr>
3005
3130
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
3006
- <td>the column of the model to search in, or -1 to disable searching</td>
3131
+ <td>the column of the model to search in, or -1 to disable searching
3132
+ </td>
3007
3133
  </tr>
3008
3134
  </tbody>
3009
3135
  </table></div>
3010
3136
  </div>
3011
3137
  <hr>
3012
- <div class="refsect2">
3138
+ <div class="refsect2" title="gtk_tree_view_get_search_equal_func ()">
3013
3139
  <a name="gtk-tree-view-get-search-equal-func"></a><h3>gtk_tree_view_get_search_equal_func ()</h3>
3014
3140
  <pre class="programlisting"><a class="link" href="GtkTreeView.html#GtkTreeViewSearchEqualFunc" title="GtkTreeViewSearchEqualFunc ()"><span class="returnvalue">GtkTreeViewSearchEqualFunc</span></a> gtk_tree_view_get_search_equal_func
3015
3141
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
@@ -3026,13 +3152,14 @@ Returns the compare function currently in use.
3026
3152
  </tr>
3027
3153
  <tr>
3028
3154
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3029
- <td>the currently used compare function for the search code.</td>
3155
+ <td> the currently used compare function for the search code.
3156
+ </td>
3030
3157
  </tr>
3031
3158
  </tbody>
3032
3159
  </table></div>
3033
3160
  </div>
3034
3161
  <hr>
3035
- <div class="refsect2">
3162
+ <div class="refsect2" title="gtk_tree_view_set_search_equal_func ()">
3036
3163
  <a name="gtk-tree-view-set-search-equal-func"></a><h3>gtk_tree_view_set_search_equal_func ()</h3>
3037
3164
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_search_equal_func (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3038
3165
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewSearchEqualFunc" title="GtkTreeViewSearchEqualFunc ()"><span class="type">GtkTreeViewSearchEqualFunc</span></a> search_equal_func</code></em>,
@@ -3053,23 +3180,24 @@ that somewhat like <code class="function">strcmp()</code> returning 0 for equali
3053
3180
  </tr>
3054
3181
  <tr>
3055
3182
  <td><p><span class="term"><em class="parameter"><code>search_equal_func</code></em> :</span></p></td>
3056
- <td>the compare function to use during the search</td>
3183
+ <td>the compare function to use during the search
3184
+ </td>
3057
3185
  </tr>
3058
3186
  <tr>
3059
3187
  <td><p><span class="term"><em class="parameter"><code>search_user_data</code></em> :</span></p></td>
3060
- <td>user data to pass to <em class="parameter"><code>search_equal_func</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>
3188
+ <td> user data to pass to <em class="parameter"><code>search_equal_func</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>
3061
3189
  </td>
3062
3190
  </tr>
3063
3191
  <tr>
3064
3192
  <td><p><span class="term"><em class="parameter"><code>search_destroy</code></em> :</span></p></td>
3065
- <td>Destroy notifier for <em class="parameter"><code>search_user_data</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>
3193
+ <td> Destroy notifier for <em class="parameter"><code>search_user_data</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>
3066
3194
  </td>
3067
3195
  </tr>
3068
3196
  </tbody>
3069
3197
  </table></div>
3070
3198
  </div>
3071
3199
  <hr>
3072
- <div class="refsect2">
3200
+ <div class="refsect2" title="gtk_tree_view_get_search_entry ()">
3073
3201
  <a name="gtk-tree-view-get-search-entry"></a><h3>gtk_tree_view_get_search_entry ()</h3>
3074
3202
  <pre class="programlisting"><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="returnvalue">GtkEntry</span></a> * gtk_tree_view_get_search_entry (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
3075
3203
  <p>
@@ -3087,7 +3215,8 @@ will be returned.
3087
3215
  </tr>
3088
3216
  <tr>
3089
3217
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3090
- <td>the entry currently in use as search entry. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
3218
+ <td> the entry currently in use as search entry.
3219
+
3091
3220
  </td>
3092
3221
  </tr>
3093
3222
  </tbody>
@@ -3095,7 +3224,7 @@ will be returned.
3095
3224
  <p class="since">Since 2.10</p>
3096
3225
  </div>
3097
3226
  <hr>
3098
- <div class="refsect2">
3227
+ <div class="refsect2" title="gtk_tree_view_set_search_entry ()">
3099
3228
  <a name="gtk-tree-view-set-search-entry"></a><h3>gtk_tree_view_set_search_entry ()</h3>
3100
3229
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_search_entry (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3101
3230
  <em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
@@ -3116,7 +3245,7 @@ entry again.
3116
3245
  </tr>
3117
3246
  <tr>
3118
3247
  <td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
3119
- <td>the entry the interactive search code of <em class="parameter"><code>tree_view</code></em> should use 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>
3248
+ <td> the entry the interactive search code of <em class="parameter"><code>tree_view</code></em> should use 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>
3120
3249
  </td>
3121
3250
  </tr>
3122
3251
  </tbody>
@@ -3124,16 +3253,36 @@ entry again.
3124
3253
  <p class="since">Since 2.10</p>
3125
3254
  </div>
3126
3255
  <hr>
3127
- <div class="refsect2">
3256
+ <div class="refsect2" title="GtkTreeViewSearchPositionFunc ()">
3128
3257
  <a name="GtkTreeViewSearchPositionFunc"></a><h3>GtkTreeViewSearchPositionFunc ()</h3>
3129
3258
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkTreeViewSearchPositionFunc) (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3130
3259
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *search_dialog</code></em>,
3131
3260
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
3132
3261
  <p>
3133
3262
  </p>
3263
+ <div class="variablelist"><table border="0">
3264
+ <col align="left" valign="top">
3265
+ <tbody>
3266
+ <tr>
3267
+ <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
3268
+ <td>
3269
+ </td>
3270
+ </tr>
3271
+ <tr>
3272
+ <td><p><span class="term"><em class="parameter"><code>search_dialog</code></em> :</span></p></td>
3273
+ <td>
3274
+ </td>
3275
+ </tr>
3276
+ <tr>
3277
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3278
+ <td>
3279
+ </td>
3280
+ </tr>
3281
+ </tbody>
3282
+ </table></div>
3134
3283
  </div>
3135
3284
  <hr>
3136
- <div class="refsect2">
3285
+ <div class="refsect2" title="gtk_tree_view_get_search_position_func ()">
3137
3286
  <a name="gtk-tree-view-get-search-position-func"></a><h3>gtk_tree_view_get_search_position_func ()</h3>
3138
3287
  <pre class="programlisting"><a class="link" href="GtkTreeView.html#GtkTreeViewSearchPositionFunc" title="GtkTreeViewSearchPositionFunc ()"><span class="returnvalue">GtkTreeViewSearchPositionFunc</span></a> gtk_tree_view_get_search_position_func
3139
3288
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
@@ -3150,14 +3299,16 @@ Returns the positioning function currently in use.
3150
3299
  </tr>
3151
3300
  <tr>
3152
3301
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3153
- <td>the currently used function for positioning the search dialog.</td>
3302
+ <td> the currently used function for positioning the search dialog.
3303
+
3304
+ </td>
3154
3305
  </tr>
3155
3306
  </tbody>
3156
3307
  </table></div>
3157
3308
  <p class="since">Since 2.10</p>
3158
3309
  </div>
3159
3310
  <hr>
3160
- <div class="refsect2">
3311
+ <div class="refsect2" title="gtk_tree_view_set_search_position_func ()">
3161
3312
  <a name="gtk-tree-view-set-search-position-func"></a><h3>gtk_tree_view_set_search_position_func ()</h3>
3162
3313
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_search_position_func
3163
3314
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -3177,18 +3328,18 @@ Sets the function to use when positioning the search dialog.
3177
3328
  </tr>
3178
3329
  <tr>
3179
3330
  <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
3180
- <td>the function to use to position the search dialog, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
3181
- to use the default search position function. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3331
+ <td> the function to use to position the search dialog, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
3332
+ to use the default search position function. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3182
3333
  </td>
3183
3334
  </tr>
3184
3335
  <tr>
3185
3336
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
3186
- <td>user data to pass to <em class="parameter"><code>func</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>
3337
+ <td> user data to pass to <em class="parameter"><code>func</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>
3187
3338
  </td>
3188
3339
  </tr>
3189
3340
  <tr>
3190
3341
  <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
3191
- <td>Destroy notifier for <em class="parameter"><code>data</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>
3342
+ <td> Destroy notifier for <em class="parameter"><code>data</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>
3192
3343
  </td>
3193
3344
  </tr>
3194
3345
  </tbody>
@@ -3196,7 +3347,7 @@ to use the default search position function. <span class="annotation">[<acronym
3196
3347
  <p class="since">Since 2.10</p>
3197
3348
  </div>
3198
3349
  <hr>
3199
- <div class="refsect2">
3350
+ <div class="refsect2" title="gtk_tree_view_get_fixed_height_mode ()">
3200
3351
  <a name="gtk-tree-view-get-fixed-height-mode"></a><h3>gtk_tree_view_get_fixed_height_mode ()</h3>
3201
3352
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_fixed_height_mode (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
3202
3353
  <p>
@@ -3212,15 +3363,16 @@ Returns whether fixed height mode is turned on for <em class="parameter"><code>t
3212
3363
  </tr>
3213
3364
  <tr>
3214
3365
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3215
- <td>
3216
- <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>tree_view</code></em> is in fixed height mode</td>
3366
+ <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>tree_view</code></em> is in fixed height mode
3367
+
3368
+ </td>
3217
3369
  </tr>
3218
3370
  </tbody>
3219
3371
  </table></div>
3220
3372
  <p class="since">Since 2.6</p>
3221
3373
  </div>
3222
3374
  <hr>
3223
- <div class="refsect2">
3375
+ <div class="refsect2" title="gtk_tree_view_set_fixed_height_mode ()">
3224
3376
  <a name="gtk-tree-view-set-fixed-height-mode"></a><h3>gtk_tree_view_set_fixed_height_mode ()</h3>
3225
3377
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_fixed_height_mode (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3226
3378
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable</code></em>);</pre>
@@ -3236,20 +3388,21 @@ columns are of type <a class="link" href="GtkTreeViewColumn.html#GTK-TREE-VIEW-C
3236
3388
  <tbody>
3237
3389
  <tr>
3238
3390
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
3239
- <td>a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>
3391
+ <td>a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>
3240
3392
  </td>
3241
3393
  </tr>
3242
3394
  <tr>
3243
3395
  <td><p><span class="term"><em class="parameter"><code>enable</code></em> :</span></p></td>
3244
3396
  <td>
3245
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable fixed height mode</td>
3397
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable fixed height mode
3398
+ </td>
3246
3399
  </tr>
3247
3400
  </tbody>
3248
3401
  </table></div>
3249
3402
  <p class="since">Since 2.6</p>
3250
3403
  </div>
3251
3404
  <hr>
3252
- <div class="refsect2">
3405
+ <div class="refsect2" title="gtk_tree_view_get_hover_selection ()">
3253
3406
  <a name="gtk-tree-view-get-hover-selection"></a><h3>gtk_tree_view_get_hover_selection ()</h3>
3254
3407
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_hover_selection (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
3255
3408
  <p>
@@ -3265,15 +3418,16 @@ Returns whether hover selection mode is turned on for <em class="parameter"><cod
3265
3418
  </tr>
3266
3419
  <tr>
3267
3420
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3268
- <td>
3269
- <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>tree_view</code></em> is in hover selection mode</td>
3421
+ <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>tree_view</code></em> is in hover selection mode
3422
+
3423
+ </td>
3270
3424
  </tr>
3271
3425
  </tbody>
3272
3426
  </table></div>
3273
3427
  <p class="since">Since 2.6</p>
3274
3428
  </div>
3275
3429
  <hr>
3276
- <div class="refsect2">
3430
+ <div class="refsect2" title="gtk_tree_view_set_hover_selection ()">
3277
3431
  <a name="gtk-tree-view-set-hover-selection"></a><h3>gtk_tree_view_set_hover_selection ()</h3>
3278
3432
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_hover_selection (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3279
3433
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> hover</code></em>);</pre>
@@ -3294,14 +3448,15 @@ Currently, this works only for the selection modes
3294
3448
  <tr>
3295
3449
  <td><p><span class="term"><em class="parameter"><code>hover</code></em> :</span></p></td>
3296
3450
  <td>
3297
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable hover selection mode</td>
3451
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable hover selection mode
3452
+ </td>
3298
3453
  </tr>
3299
3454
  </tbody>
3300
3455
  </table></div>
3301
3456
  <p class="since">Since 2.6</p>
3302
3457
  </div>
3303
3458
  <hr>
3304
- <div class="refsect2">
3459
+ <div class="refsect2" title="gtk_tree_view_get_hover_expand ()">
3305
3460
  <a name="gtk-tree-view-get-hover-expand"></a><h3>gtk_tree_view_get_hover_expand ()</h3>
3306
3461
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_hover_expand (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
3307
3462
  <p>
@@ -3317,15 +3472,16 @@ Returns whether hover expansion mode is turned on for <em class="parameter"><cod
3317
3472
  </tr>
3318
3473
  <tr>
3319
3474
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3320
- <td>
3321
- <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>tree_view</code></em> is in hover expansion mode</td>
3475
+ <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>tree_view</code></em> is in hover expansion mode
3476
+
3477
+ </td>
3322
3478
  </tr>
3323
3479
  </tbody>
3324
3480
  </table></div>
3325
3481
  <p class="since">Since 2.6</p>
3326
3482
  </div>
3327
3483
  <hr>
3328
- <div class="refsect2">
3484
+ <div class="refsect2" title="gtk_tree_view_set_hover_expand ()">
3329
3485
  <a name="gtk-tree-view-set-hover-expand"></a><h3>gtk_tree_view_set_hover_expand ()</h3>
3330
3486
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_hover_expand (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3331
3487
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> expand</code></em>);</pre>
@@ -3345,24 +3501,50 @@ moves over them.
3345
3501
  <tr>
3346
3502
  <td><p><span class="term"><em class="parameter"><code>expand</code></em> :</span></p></td>
3347
3503
  <td>
3348
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable hover selection mode</td>
3504
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable hover selection mode
3505
+ </td>
3349
3506
  </tr>
3350
3507
  </tbody>
3351
3508
  </table></div>
3352
3509
  <p class="since">Since 2.6</p>
3353
3510
  </div>
3354
3511
  <hr>
3355
- <div class="refsect2">
3512
+ <div class="refsect2" title="GtkTreeDestroyCountFunc ()">
3356
3513
  <a name="GtkTreeDestroyCountFunc"></a><h3>GtkTreeDestroyCountFunc ()</h3>
3357
3514
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkTreeDestroyCountFunc) (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3358
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
3515
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
3359
3516
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> children</code></em>,
3360
3517
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
3361
3518
  <p>
3362
3519
  </p>
3520
+ <div class="variablelist"><table border="0">
3521
+ <col align="left" valign="top">
3522
+ <tbody>
3523
+ <tr>
3524
+ <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
3525
+ <td>
3526
+ </td>
3527
+ </tr>
3528
+ <tr>
3529
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
3530
+ <td>
3531
+ </td>
3532
+ </tr>
3533
+ <tr>
3534
+ <td><p><span class="term"><em class="parameter"><code>children</code></em> :</span></p></td>
3535
+ <td>
3536
+ </td>
3537
+ </tr>
3538
+ <tr>
3539
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3540
+ <td>
3541
+ </td>
3542
+ </tr>
3543
+ </tbody>
3544
+ </table></div>
3363
3545
  </div>
3364
3546
  <hr>
3365
- <div class="refsect2">
3547
+ <div class="refsect2" title="gtk_tree_view_set_destroy_count_func ()">
3366
3548
  <a name="gtk-tree-view-set-destroy-count-func"></a><h3>gtk_tree_view_set_destroy_count_func ()</h3>
3367
3549
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_destroy_count_func
3368
3550
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -3384,27 +3566,27 @@ user collapses a row, or a row is deleted.
3384
3566
  </tr>
3385
3567
  <tr>
3386
3568
  <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
3387
- <td>Function to be called when a view row is destroyed, 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>
3569
+ <td> Function to be called when a view row is destroyed, 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>
3388
3570
  </td>
3389
3571
  </tr>
3390
3572
  <tr>
3391
3573
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
3392
- <td>User data to be passed to <em class="parameter"><code>func</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>
3574
+ <td> User data to be passed to <em class="parameter"><code>func</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>
3393
3575
  </td>
3394
3576
  </tr>
3395
3577
  <tr>
3396
3578
  <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
3397
- <td>Destroy notifier for <em class="parameter"><code>data</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>
3579
+ <td> Destroy notifier for <em class="parameter"><code>data</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>
3398
3580
  </td>
3399
3581
  </tr>
3400
3582
  </tbody>
3401
3583
  </table></div>
3402
3584
  </div>
3403
3585
  <hr>
3404
- <div class="refsect2">
3586
+ <div class="refsect2" title="GtkTreeViewRowSeparatorFunc ()">
3405
3587
  <a name="GtkTreeViewRowSeparatorFunc"></a><h3>GtkTreeViewRowSeparatorFunc ()</h3>
3406
3588
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (*GtkTreeViewRowSeparatorFunc) (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
3407
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
3589
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
3408
3590
  <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>
3409
3591
  <p>
3410
3592
  Function type for determining whether the row pointed to by <em class="parameter"><code>iter</code></em> should
@@ -3422,23 +3604,25 @@ returns.
3422
3604
  </tr>
3423
3605
  <tr>
3424
3606
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
3425
- <td>a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing at a row in <em class="parameter"><code>model</code></em>
3607
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing at a row in <em class="parameter"><code>model</code></em>
3426
3608
  </td>
3427
3609
  </tr>
3428
3610
  <tr>
3429
3611
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
3430
- <td>user data</td>
3612
+ <td>user data
3613
+ </td>
3431
3614
  </tr>
3432
3615
  <tr>
3433
3616
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3434
3617
  <td>
3435
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the row is a separator</td>
3618
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the row is a separator
3619
+ </td>
3436
3620
  </tr>
3437
3621
  </tbody>
3438
3622
  </table></div>
3439
3623
  </div>
3440
3624
  <hr>
3441
- <div class="refsect2">
3625
+ <div class="refsect2" title="gtk_tree_view_get_row_separator_func ()">
3442
3626
  <a name="gtk-tree-view-get-row-separator-func"></a><h3>gtk_tree_view_get_row_separator_func ()</h3>
3443
3627
  <pre class="programlisting"><a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()"><span class="returnvalue">GtkTreeViewRowSeparatorFunc</span></a> gtk_tree_view_get_row_separator_func
3444
3628
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
@@ -3455,14 +3639,16 @@ Returns the current row separator function.
3455
3639
  </tr>
3456
3640
  <tr>
3457
3641
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3458
- <td>the current row separator function.</td>
3642
+ <td> the current row separator function.
3643
+
3644
+ </td>
3459
3645
  </tr>
3460
3646
  </tbody>
3461
3647
  </table></div>
3462
3648
  <p class="since">Since 2.6</p>
3463
3649
  </div>
3464
3650
  <hr>
3465
- <div class="refsect2">
3651
+ <div class="refsect2" title="gtk_tree_view_set_row_separator_func ()">
3466
3652
  <a name="gtk-tree-view-set-row-separator-func"></a><h3>gtk_tree_view_set_row_separator_func ()</h3>
3467
3653
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_row_separator_func
3468
3654
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
@@ -3489,12 +3675,12 @@ function is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-
3489
3675
  </tr>
3490
3676
  <tr>
3491
3677
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
3492
- <td>user data to pass to <em class="parameter"><code>func</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>
3678
+ <td> user data to pass to <em class="parameter"><code>func</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>
3493
3679
  </td>
3494
3680
  </tr>
3495
3681
  <tr>
3496
3682
  <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
3497
- <td>destroy notifier for <em class="parameter"><code>data</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>
3683
+ <td> destroy notifier for <em class="parameter"><code>data</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>
3498
3684
  </td>
3499
3685
  </tr>
3500
3686
  </tbody>
@@ -3502,7 +3688,7 @@ function is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-
3502
3688
  <p class="since">Since 2.6</p>
3503
3689
  </div>
3504
3690
  <hr>
3505
- <div class="refsect2">
3691
+ <div class="refsect2" title="gtk_tree_view_get_rubber_banding ()">
3506
3692
  <a name="gtk-tree-view-get-rubber-banding"></a><h3>gtk_tree_view_get_rubber_banding ()</h3>
3507
3693
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_rubber_banding (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
3508
3694
  <p>
@@ -3520,15 +3706,16 @@ user to select multiple rows by dragging the mouse.
3520
3706
  </tr>
3521
3707
  <tr>
3522
3708
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3523
- <td>
3524
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if rubber banding in <em class="parameter"><code>tree_view</code></em> is enabled.</td>
3709
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if rubber banding in <em class="parameter"><code>tree_view</code></em> is enabled.
3710
+
3711
+ </td>
3525
3712
  </tr>
3526
3713
  </tbody>
3527
3714
  </table></div>
3528
3715
  <p class="since">Since 2.10</p>
3529
3716
  </div>
3530
3717
  <hr>
3531
- <div class="refsect2">
3718
+ <div class="refsect2" title="gtk_tree_view_set_rubber_banding ()">
3532
3719
  <a name="gtk-tree-view-set-rubber-banding"></a><h3>gtk_tree_view_set_rubber_banding ()</h3>
3533
3720
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_rubber_banding (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3534
3721
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enable</code></em>);</pre>
@@ -3548,14 +3735,15 @@ multiple rows by dragging the mouse.
3548
3735
  <tr>
3549
3736
  <td><p><span class="term"><em class="parameter"><code>enable</code></em> :</span></p></td>
3550
3737
  <td>
3551
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable rubber banding</td>
3738
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable rubber banding
3739
+ </td>
3552
3740
  </tr>
3553
3741
  </tbody>
3554
3742
  </table></div>
3555
3743
  <p class="since">Since 2.10</p>
3556
3744
  </div>
3557
3745
  <hr>
3558
- <div class="refsect2">
3746
+ <div class="refsect2" title="gtk_tree_view_is_rubber_banding_active ()">
3559
3747
  <a name="gtk-tree-view-is-rubber-banding-active"></a><h3>gtk_tree_view_is_rubber_banding_active ()</h3>
3560
3748
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_is_rubber_banding_active
3561
3749
  (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
@@ -3573,16 +3761,17 @@ in <em class="parameter"><code>tree_view</code></em>.
3573
3761
  </tr>
3574
3762
  <tr>
3575
3763
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3576
- <td>
3577
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a rubber banding operation is currently being
3578
- done in <em class="parameter"><code>tree_view</code></em>.</td>
3764
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a rubber banding operation is currently being
3765
+ done in <em class="parameter"><code>tree_view</code></em>.
3766
+
3767
+ </td>
3579
3768
  </tr>
3580
3769
  </tbody>
3581
3770
  </table></div>
3582
3771
  <p class="since">Since 2.12</p>
3583
3772
  </div>
3584
3773
  <hr>
3585
- <div class="refsect2">
3774
+ <div class="refsect2" title="gtk_tree_view_get_enable_tree_lines ()">
3586
3775
  <a name="gtk-tree-view-get-enable-tree-lines"></a><h3>gtk_tree_view_get_enable_tree_lines ()</h3>
3587
3776
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_enable_tree_lines (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
3588
3777
  <p>
@@ -3593,20 +3782,22 @@ Returns whether or not tree lines are drawn in <em class="parameter"><code>tree_
3593
3782
  <tbody>
3594
3783
  <tr>
3595
3784
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
3596
- <td>a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.</td>
3785
+ <td>a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>.
3786
+ </td>
3597
3787
  </tr>
3598
3788
  <tr>
3599
3789
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3600
- <td>
3601
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if tree lines are drawn in <em class="parameter"><code>tree_view</code></em>, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
3602
- otherwise.</td>
3790
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if tree lines are drawn in <em class="parameter"><code>tree_view</code></em>, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
3791
+ otherwise.
3792
+
3793
+ </td>
3603
3794
  </tr>
3604
3795
  </tbody>
3605
3796
  </table></div>
3606
3797
  <p class="since">Since 2.10</p>
3607
3798
  </div>
3608
3799
  <hr>
3609
- <div class="refsect2">
3800
+ <div class="refsect2" title="gtk_tree_view_set_enable_tree_lines ()">
3610
3801
  <a name="gtk-tree-view-set-enable-tree-lines"></a><h3>gtk_tree_view_set_enable_tree_lines ()</h3>
3611
3802
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_enable_tree_lines (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3612
3803
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enabled</code></em>);</pre>
@@ -3625,14 +3816,15 @@ This does not have any visible effects for lists.
3625
3816
  <tr>
3626
3817
  <td><p><span class="term"><em class="parameter"><code>enabled</code></em> :</span></p></td>
3627
3818
  <td>
3628
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable tree line drawing, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
3819
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable tree line drawing, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
3820
+ </td>
3629
3821
  </tr>
3630
3822
  </tbody>
3631
3823
  </table></div>
3632
3824
  <p class="since">Since 2.10</p>
3633
3825
  </div>
3634
3826
  <hr>
3635
- <div class="refsect2">
3827
+ <div class="refsect2" title="enum GtkTreeViewGridLines">
3636
3828
  <a name="GtkTreeViewGridLines"></a><h3>enum GtkTreeViewGridLines</h3>
3637
3829
  <pre class="programlisting">typedef enum
3638
3830
  {
@@ -3672,7 +3864,7 @@ Used to indicate which grid lines to draw in a tree view.
3672
3864
  </table></div>
3673
3865
  </div>
3674
3866
  <hr>
3675
- <div class="refsect2">
3867
+ <div class="refsect2" title="gtk_tree_view_get_grid_lines ()">
3676
3868
  <a name="gtk-tree-view-get-grid-lines"></a><h3>gtk_tree_view_get_grid_lines ()</h3>
3677
3869
  <pre class="programlisting"><a class="link" href="GtkTreeView.html#GtkTreeViewGridLines" title="enum GtkTreeViewGridLines"><span class="returnvalue">GtkTreeViewGridLines</span></a> gtk_tree_view_get_grid_lines (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
3678
3870
  <p>
@@ -3688,15 +3880,17 @@ Returns which grid lines are enabled in <em class="parameter"><code>tree_view</c
3688
3880
  </tr>
3689
3881
  <tr>
3690
3882
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3691
- <td>a <a class="link" href="GtkTreeView.html#GtkTreeViewGridLines" title="enum GtkTreeViewGridLines"><span class="type">GtkTreeViewGridLines</span></a> value indicating which grid lines
3692
- are enabled.</td>
3883
+ <td> a <a class="link" href="GtkTreeView.html#GtkTreeViewGridLines" title="enum GtkTreeViewGridLines"><span class="type">GtkTreeViewGridLines</span></a> value indicating which grid lines
3884
+ are enabled.
3885
+
3886
+ </td>
3693
3887
  </tr>
3694
3888
  </tbody>
3695
3889
  </table></div>
3696
3890
  <p class="since">Since 2.10</p>
3697
3891
  </div>
3698
3892
  <hr>
3699
- <div class="refsect2">
3893
+ <div class="refsect2" title="gtk_tree_view_set_grid_lines ()">
3700
3894
  <a name="gtk-tree-view-set-grid-lines"></a><h3>gtk_tree_view_set_grid_lines ()</h3>
3701
3895
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_grid_lines (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3702
3896
  <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewGridLines" title="enum GtkTreeViewGridLines"><span class="type">GtkTreeViewGridLines</span></a> grid_lines</code></em>);</pre>
@@ -3714,18 +3908,19 @@ Sets which grid lines to draw in <em class="parameter"><code>tree_view</code></e
3714
3908
  <tr>
3715
3909
  <td><p><span class="term"><em class="parameter"><code>grid_lines</code></em> :</span></p></td>
3716
3910
  <td>a <a class="link" href="GtkTreeView.html#GtkTreeViewGridLines" title="enum GtkTreeViewGridLines"><span class="type">GtkTreeViewGridLines</span></a> value indicating which grid lines to
3717
- enable.</td>
3911
+ enable.
3912
+ </td>
3718
3913
  </tr>
3719
3914
  </tbody>
3720
3915
  </table></div>
3721
3916
  <p class="since">Since 2.10</p>
3722
3917
  </div>
3723
3918
  <hr>
3724
- <div class="refsect2">
3919
+ <div class="refsect2" title="gtk_tree_view_set_tooltip_row ()">
3725
3920
  <a name="gtk-tree-view-set-tooltip-row"></a><h3>gtk_tree_view_set_tooltip_row ()</h3>
3726
3921
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_tooltip_row (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3727
3922
  <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
3728
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
3923
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
3729
3924
  <p>
3730
3925
  Sets the tip area of <em class="parameter"><code>tooltip</code></em> to be the area covered by the row at <em class="parameter"><code>path</code></em>.
3731
3926
  See also <a class="link" href="GtkTreeView.html#gtk-tree-view-set-tooltip-column" title="gtk_tree_view_set_tooltip_column ()"><code class="function">gtk_tree_view_set_tooltip_column()</code></a> for a simpler alternative.
@@ -3746,7 +3941,7 @@ See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="
3746
3941
  </tr>
3747
3942
  <tr>
3748
3943
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
3749
- <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
3944
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a>
3750
3945
  </td>
3751
3946
  </tr>
3752
3947
  </tbody>
@@ -3754,11 +3949,11 @@ See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="
3754
3949
  <p class="since">Since 2.12</p>
3755
3950
  </div>
3756
3951
  <hr>
3757
- <div class="refsect2">
3952
+ <div class="refsect2" title="gtk_tree_view_set_tooltip_cell ()">
3758
3953
  <a name="gtk-tree-view-set-tooltip-cell"></a><h3>gtk_tree_view_set_tooltip_cell ()</h3>
3759
3954
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_tooltip_cell (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3760
3955
  <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
3761
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
3956
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
3762
3957
  <em class="parameter"><code><a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
3763
3958
  <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);</pre>
3764
3959
  <p>
@@ -3791,17 +3986,17 @@ See also <a class="link" href="GtkTreeView.html#gtk-tree-view-set-tooltip-column
3791
3986
  </tr>
3792
3987
  <tr>
3793
3988
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
3794
- <td>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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3989
+ <td> 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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3795
3990
  </td>
3796
3991
  </tr>
3797
3992
  <tr>
3798
3993
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
3799
- <td>a <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</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>
3994
+ <td> a <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</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>
3800
3995
  </td>
3801
3996
  </tr>
3802
3997
  <tr>
3803
3998
  <td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
3804
- <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>
3999
+ <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>
3805
4000
  </td>
3806
4001
  </tr>
3807
4002
  </tbody>
@@ -3809,15 +4004,15 @@ See also <a class="link" href="GtkTreeView.html#gtk-tree-view-set-tooltip-column
3809
4004
  <p class="since">Since 2.12</p>
3810
4005
  </div>
3811
4006
  <hr>
3812
- <div class="refsect2">
4007
+ <div class="refsect2" title="gtk_tree_view_get_tooltip_context ()">
3813
4008
  <a name="gtk-tree-view-get-tooltip-context"></a><h3>gtk_tree_view_get_tooltip_context ()</h3>
3814
4009
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_view_get_tooltip_context (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3815
4010
  <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>,
3816
4011
  <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>,
3817
4012
  <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>,
3818
4013
  <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
3819
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
3820
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
4014
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
4015
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
3821
4016
  <p>
3822
4017
  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>
3823
4018
  signal handler for <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</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
@@ -3842,41 +4037,46 @@ to be relative to <em class="parameter"><code>tree_view</code></em>'s bin_window
3842
4037
  </tr>
3843
4038
  <tr>
3844
4039
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
3845
- <td>the x coordinate (relative to widget coordinates)</td>
4040
+ <td>the x coordinate (relative to widget coordinates)
4041
+ </td>
3846
4042
  </tr>
3847
4043
  <tr>
3848
4044
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
3849
- <td>the y coordinate (relative to widget coordinates)</td>
4045
+ <td>the y coordinate (relative to widget coordinates)
4046
+ </td>
3850
4047
  </tr>
3851
4048
  <tr>
3852
4049
  <td><p><span class="term"><em class="parameter"><code>keyboard_tip</code></em> :</span></p></td>
3853
- <td>whether this is a keyboard tooltip or not</td>
4050
+ <td>whether this is a keyboard tooltip or not
4051
+ </td>
3854
4052
  </tr>
3855
4053
  <tr>
3856
4054
  <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
3857
- <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>
4055
+ <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>
3858
4056
  </td>
3859
4057
  </tr>
3860
4058
  <tr>
3861
4059
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
3862
- <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>
4060
+ <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>
3863
4061
  </td>
3864
4062
  </tr>
3865
4063
  <tr>
3866
4064
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
3867
- <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>
4065
+ <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>
3868
4066
  </td>
3869
4067
  </tr>
3870
4068
  <tr>
3871
4069
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3872
- <td>whether or not the given tooltip context points to a row.</td>
4070
+ <td> whether or not the given tooltip context points to a row.
4071
+
4072
+ </td>
3873
4073
  </tr>
3874
4074
  </tbody>
3875
4075
  </table></div>
3876
4076
  <p class="since">Since 2.12</p>
3877
4077
  </div>
3878
4078
  <hr>
3879
- <div class="refsect2">
4079
+ <div class="refsect2" title="gtk_tree_view_get_tooltip_column ()">
3880
4080
  <a name="gtk-tree-view-get-tooltip-column"></a><h3>gtk_tree_view_get_tooltip_column ()</h3>
3881
4081
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_tree_view_get_tooltip_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>);</pre>
3882
4082
  <p>
@@ -3893,15 +4093,17 @@ displaying tooltips on <em class="parameter"><code>tree_view</code></em>'s rows.
3893
4093
  </tr>
3894
4094
  <tr>
3895
4095
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3896
- <td>the index of the tooltip column that is currently being
3897
- used, or -1 if this is disabled.</td>
4096
+ <td> the index of the tooltip column that is currently being
4097
+ used, or -1 if this is disabled.
4098
+
4099
+ </td>
3898
4100
  </tr>
3899
4101
  </tbody>
3900
4102
  </table></div>
3901
4103
  <p class="since">Since 2.12</p>
3902
4104
  </div>
3903
4105
  <hr>
3904
- <div class="refsect2">
4106
+ <div class="refsect2" title="gtk_tree_view_set_tooltip_column ()">
3905
4107
  <a name="gtk-tree-view-set-tooltip-column"></a><h3>gtk_tree_view_set_tooltip_column ()</h3>
3906
4108
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_view_set_tooltip_column (<em class="parameter"><code><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view</code></em>,
3907
4109
  <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>
@@ -3929,43 +4131,44 @@ so &amp;, &lt;, etc have to be escaped in the text.
3929
4131
  </tr>
3930
4132
  <tr>
3931
4133
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
3932
- <td>an integer, which is a valid column number for <em class="parameter"><code>tree_view</code></em>'s model</td>
4134
+ <td>an integer, which is a valid column number for <em class="parameter"><code>tree_view</code></em>'s model
4135
+ </td>
3933
4136
  </tr>
3934
4137
  </tbody>
3935
4138
  </table></div>
3936
4139
  <p class="since">Since 2.12</p>
3937
4140
  </div>
3938
4141
  </div>
3939
- <div class="refsect1">
4142
+ <div class="refsect1" title="Property Details">
3940
4143
  <a name="GtkTreeView.property-details"></a><h2>Property Details</h2>
3941
- <div class="refsect2">
4144
+ <div class="refsect2" title='The "enable-grid-lines" property'>
3942
4145
  <a name="GtkTreeView--enable-grid-lines"></a><h3>The <code class="literal">"enable-grid-lines"</code> property</h3>
3943
4146
  <pre class="programlisting"> "enable-grid-lines" <a class="link" href="GtkTreeView.html#GtkTreeViewGridLines" title="enum GtkTreeViewGridLines"><span class="type">GtkTreeViewGridLines</span></a> : Read / Write</pre>
3944
4147
  <p>Whether grid lines should be drawn in the tree view.</p>
3945
4148
  <p>Default value: GTK_TREE_VIEW_GRID_LINES_NONE</p>
3946
4149
  </div>
3947
4150
  <hr>
3948
- <div class="refsect2">
4151
+ <div class="refsect2" title='The "enable-search" property'>
3949
4152
  <a name="GtkTreeView--enable-search"></a><h3>The <code class="literal">"enable-search"</code> property</h3>
3950
4153
  <pre class="programlisting"> "enable-search" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
3951
4154
  <p>View allows user to search through columns interactively.</p>
3952
4155
  <p>Default value: TRUE</p>
3953
4156
  </div>
3954
4157
  <hr>
3955
- <div class="refsect2">
4158
+ <div class="refsect2" title='The "enable-tree-lines" property'>
3956
4159
  <a name="GtkTreeView--enable-tree-lines"></a><h3>The <code class="literal">"enable-tree-lines"</code> property</h3>
3957
4160
  <pre class="programlisting"> "enable-tree-lines" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
3958
4161
  <p>Whether tree lines should be drawn in the tree view.</p>
3959
4162
  <p>Default value: FALSE</p>
3960
4163
  </div>
3961
4164
  <hr>
3962
- <div class="refsect2">
4165
+ <div class="refsect2" title='The "expander-column" property'>
3963
4166
  <a name="GtkTreeView--expander-column"></a><h3>The <code class="literal">"expander-column"</code> property</h3>
3964
4167
  <pre class="programlisting"> "expander-column" <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a>* : Read / Write</pre>
3965
4168
  <p>Set the column for the expander column.</p>
3966
4169
  </div>
3967
4170
  <hr>
3968
- <div class="refsect2">
4171
+ <div class="refsect2" title='The "fixed-height-mode" property'>
3969
4172
  <a name="GtkTreeView--fixed-height-mode"></a><h3>The <code class="literal">"fixed-height-mode"</code> property</h3>
3970
4173
  <pre class="programlisting"> "fixed-height-mode" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
3971
4174
  <p>
@@ -3979,27 +4182,27 @@ information on this option.
3979
4182
  <p class="since">Since 2.4</p>
3980
4183
  </div>
3981
4184
  <hr>
3982
- <div class="refsect2">
4185
+ <div class="refsect2" title='The "hadjustment" property'>
3983
4186
  <a name="GtkTreeView--hadjustment"></a><h3>The <code class="literal">"hadjustment"</code> property</h3>
3984
4187
  <pre class="programlisting"> "hadjustment" <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>* : Read / Write</pre>
3985
4188
  <p>Horizontal Adjustment for the widget.</p>
3986
4189
  </div>
3987
4190
  <hr>
3988
- <div class="refsect2">
4191
+ <div class="refsect2" title='The "headers-clickable" property'>
3989
4192
  <a name="GtkTreeView--headers-clickable"></a><h3>The <code class="literal">"headers-clickable"</code> property</h3>
3990
4193
  <pre class="programlisting"> "headers-clickable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
3991
4194
  <p>Column headers respond to click events.</p>
3992
4195
  <p>Default value: TRUE</p>
3993
4196
  </div>
3994
4197
  <hr>
3995
- <div class="refsect2">
4198
+ <div class="refsect2" title='The "headers-visible" property'>
3996
4199
  <a name="GtkTreeView--headers-visible"></a><h3>The <code class="literal">"headers-visible"</code> property</h3>
3997
4200
  <pre class="programlisting"> "headers-visible" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
3998
4201
  <p>Show the column header buttons.</p>
3999
4202
  <p>Default value: TRUE</p>
4000
4203
  </div>
4001
4204
  <hr>
4002
- <div class="refsect2">
4205
+ <div class="refsect2" title='The "hover-expand" property'>
4003
4206
  <a name="GtkTreeView--hover-expand"></a><h3>The <code class="literal">"hover-expand"</code> property</h3>
4004
4207
  <pre class="programlisting"> "hover-expand" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
4005
4208
  <p>
@@ -4015,7 +4218,7 @@ in <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type
4015
4218
  <p class="since">Since 2.6</p>
4016
4219
  </div>
4017
4220
  <hr>
4018
- <div class="refsect2">
4221
+ <div class="refsect2" title='The "hover-selection" property'>
4019
4222
  <a name="GtkTreeView--hover-selection"></a><h3>The <code class="literal">"hover-selection"</code> property</h3>
4020
4223
  <pre class="programlisting"> "hover-selection" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
4021
4224
  <p>
@@ -4032,7 +4235,7 @@ in <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type
4032
4235
  <p class="since">Since 2.6</p>
4033
4236
  </div>
4034
4237
  <hr>
4035
- <div class="refsect2">
4238
+ <div class="refsect2" title='The "level-indentation" property'>
4036
4239
  <a name="GtkTreeView--level-indentation"></a><h3>The <code class="literal">"level-indentation"</code> property</h3>
4037
4240
  <pre class="programlisting"> "level-indentation" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
4038
4241
  <p>
@@ -4043,34 +4246,34 @@ Extra indentation for each level.
4043
4246
  <p class="since">Since 2.12</p>
4044
4247
  </div>
4045
4248
  <hr>
4046
- <div class="refsect2">
4249
+ <div class="refsect2" title='The "model" property'>
4047
4250
  <a name="GtkTreeView--model"></a><h3>The <code class="literal">"model"</code> property</h3>
4048
4251
  <pre class="programlisting"> "model" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write</pre>
4049
4252
  <p>The model for the tree view.</p>
4050
4253
  </div>
4051
4254
  <hr>
4052
- <div class="refsect2">
4255
+ <div class="refsect2" title='The "reorderable" property'>
4053
4256
  <a name="GtkTreeView--reorderable"></a><h3>The <code class="literal">"reorderable"</code> property</h3>
4054
4257
  <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>
4055
4258
  <p>View is reorderable.</p>
4056
4259
  <p>Default value: FALSE</p>
4057
4260
  </div>
4058
4261
  <hr>
4059
- <div class="refsect2">
4262
+ <div class="refsect2" title='The "rubber-banding" property'>
4060
4263
  <a name="GtkTreeView--rubber-banding"></a><h3>The <code class="literal">"rubber-banding"</code> property</h3>
4061
4264
  <pre class="programlisting"> "rubber-banding" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
4062
4265
  <p>Whether to enable selection of multiple items by dragging the mouse pointer.</p>
4063
4266
  <p>Default value: FALSE</p>
4064
4267
  </div>
4065
4268
  <hr>
4066
- <div class="refsect2">
4269
+ <div class="refsect2" title='The "rules-hint" property'>
4067
4270
  <a name="GtkTreeView--rules-hint"></a><h3>The <code class="literal">"rules-hint"</code> property</h3>
4068
4271
  <pre class="programlisting"> "rules-hint" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
4069
4272
  <p>Set a hint to the theme engine to draw rows in alternating colors.</p>
4070
4273
  <p>Default value: FALSE</p>
4071
4274
  </div>
4072
4275
  <hr>
4073
- <div class="refsect2">
4276
+ <div class="refsect2" title='The "search-column" property'>
4074
4277
  <a name="GtkTreeView--search-column"></a><h3>The <code class="literal">"search-column"</code> property</h3>
4075
4278
  <pre class="programlisting"> "search-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
4076
4279
  <p>Model column to search through during interactive search.</p>
@@ -4078,7 +4281,7 @@ Extra indentation for each level.
4078
4281
  <p>Default value: -1</p>
4079
4282
  </div>
4080
4283
  <hr>
4081
- <div class="refsect2">
4284
+ <div class="refsect2" title='The "show-expanders" property'>
4082
4285
  <a name="GtkTreeView--show-expanders"></a><h3>The <code class="literal">"show-expanders"</code> property</h3>
4083
4286
  <pre class="programlisting"> "show-expanders" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
4084
4287
  <p>
@@ -4088,7 +4291,7 @@ Extra indentation for each level.
4088
4291
  <p class="since">Since 2.12</p>
4089
4292
  </div>
4090
4293
  <hr>
4091
- <div class="refsect2">
4294
+ <div class="refsect2" title='The "tooltip-column" property'>
4092
4295
  <a name="GtkTreeView--tooltip-column"></a><h3>The <code class="literal">"tooltip-column"</code> property</h3>
4093
4296
  <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>
4094
4297
  <p>The column in the model containing the tooltip texts for the rows.</p>
@@ -4096,28 +4299,28 @@ Extra indentation for each level.
4096
4299
  <p>Default value: -1</p>
4097
4300
  </div>
4098
4301
  <hr>
4099
- <div class="refsect2">
4302
+ <div class="refsect2" title='The "vadjustment" property'>
4100
4303
  <a name="GtkTreeView--vadjustment"></a><h3>The <code class="literal">"vadjustment"</code> property</h3>
4101
4304
  <pre class="programlisting"> "vadjustment" <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>* : Read / Write</pre>
4102
4305
  <p>Vertical Adjustment for the widget.</p>
4103
4306
  </div>
4104
4307
  </div>
4105
- <div class="refsect1">
4308
+ <div class="refsect1" title="Style Property Details">
4106
4309
  <a name="GtkTreeView.style-property-details"></a><h2>Style Property Details</h2>
4107
- <div class="refsect2">
4310
+ <div class="refsect2" title='The "allow-rules" style property'>
4108
4311
  <a name="GtkTreeView--s-allow-rules"></a><h3>The <code class="literal">"allow-rules"</code> style property</h3>
4109
4312
  <pre class="programlisting"> "allow-rules" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
4110
4313
  <p>Allow drawing of alternating color rows.</p>
4111
4314
  <p>Default value: TRUE</p>
4112
4315
  </div>
4113
4316
  <hr>
4114
- <div class="refsect2">
4317
+ <div class="refsect2" title='The "even-row-color" style property'>
4115
4318
  <a name="GtkTreeView--s-even-row-color"></a><h3>The <code class="literal">"even-row-color"</code> style property</h3>
4116
4319
  <pre class="programlisting"> "even-row-color" <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read</pre>
4117
4320
  <p>Color to use for even rows.</p>
4118
4321
  </div>
4119
4322
  <hr>
4120
- <div class="refsect2">
4323
+ <div class="refsect2" title='The "expander-size" style property'>
4121
4324
  <a name="GtkTreeView--s-expander-size"></a><h3>The <code class="literal">"expander-size"</code> style property</h3>
4122
4325
  <pre class="programlisting"> "expander-size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
4123
4326
  <p>Size of the expander arrow.</p>
@@ -4125,14 +4328,14 @@ Extra indentation for each level.
4125
4328
  <p>Default value: 12</p>
4126
4329
  </div>
4127
4330
  <hr>
4128
- <div class="refsect2">
4331
+ <div class="refsect2" title='The "grid-line-pattern" style property'>
4129
4332
  <a name="GtkTreeView--s-grid-line-pattern"></a><h3>The <code class="literal">"grid-line-pattern"</code> style property</h3>
4130
4333
  <pre class="programlisting"> "grid-line-pattern" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read</pre>
4131
4334
  <p>Dash pattern used to draw the tree view grid lines.</p>
4132
4335
  <p>Default value: "\001\001"</p>
4133
4336
  </div>
4134
4337
  <hr>
4135
- <div class="refsect2">
4338
+ <div class="refsect2" title='The "grid-line-width" style property'>
4136
4339
  <a name="GtkTreeView--s-grid-line-width"></a><h3>The <code class="literal">"grid-line-width"</code> style property</h3>
4137
4340
  <pre class="programlisting"> "grid-line-width" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
4138
4341
  <p>Width, in pixels, of the tree view grid lines.</p>
@@ -4140,7 +4343,7 @@ Extra indentation for each level.
4140
4343
  <p>Default value: 1</p>
4141
4344
  </div>
4142
4345
  <hr>
4143
- <div class="refsect2">
4346
+ <div class="refsect2" title='The "horizontal-separator" style property'>
4144
4347
  <a name="GtkTreeView--s-horizontal-separator"></a><h3>The <code class="literal">"horizontal-separator"</code> style property</h3>
4145
4348
  <pre class="programlisting"> "horizontal-separator" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
4146
4349
  <p>Horizontal space between cells. Must be an even number.</p>
@@ -4148,23 +4351,23 @@ Extra indentation for each level.
4148
4351
  <p>Default value: 2</p>
4149
4352
  </div>
4150
4353
  <hr>
4151
- <div class="refsect2">
4354
+ <div class="refsect2" title='The "indent-expanders" style property'>
4152
4355
  <a name="GtkTreeView--s-indent-expanders"></a><h3>The <code class="literal">"indent-expanders"</code> style property</h3>
4153
4356
  <pre class="programlisting"> "indent-expanders" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
4154
4357
  <p>Make the expanders indented.</p>
4155
4358
  <p>Default value: TRUE</p>
4156
4359
  </div>
4157
4360
  <hr>
4158
- <div class="refsect2">
4361
+ <div class="refsect2" title='The "odd-row-color" style property'>
4159
4362
  <a name="GtkTreeView--s-odd-row-color"></a><h3>The <code class="literal">"odd-row-color"</code> style property</h3>
4160
4363
  <pre class="programlisting"> "odd-row-color" <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read</pre>
4161
4364
  <p>Color to use for odd rows.</p>
4162
4365
  </div>
4163
4366
  <hr>
4164
- <div class="refsect2">
4367
+ <div class="refsect2" title='The "row-ending-details" style property'>
4165
4368
  <a name="GtkTreeView--s-row-ending-details"></a><h3>The <code class="literal">"row-ending-details"</code> style property</h3>
4166
4369
  <pre class="programlisting"> "row-ending-details" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
4167
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
4370
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
4168
4371
  <h3 class="title">Warning</h3>
4169
4372
  <p><code class="literal">GtkTreeView:row-ending-details</code> has been deprecated since version 2.22 and should not be used in newly-written code. This style property will be removed in GTK+ 3</p>
4170
4373
  </div>
@@ -4174,14 +4377,14 @@ Enable extended row background themeing
4174
4377
  <p>Default value: FALSE</p>
4175
4378
  </div>
4176
4379
  <hr>
4177
- <div class="refsect2">
4380
+ <div class="refsect2" title='The "tree-line-pattern" style property'>
4178
4381
  <a name="GtkTreeView--s-tree-line-pattern"></a><h3>The <code class="literal">"tree-line-pattern"</code> style property</h3>
4179
4382
  <pre class="programlisting"> "tree-line-pattern" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read</pre>
4180
4383
  <p>Dash pattern used to draw the tree view lines.</p>
4181
4384
  <p>Default value: "\001\001"</p>
4182
4385
  </div>
4183
4386
  <hr>
4184
- <div class="refsect2">
4387
+ <div class="refsect2" title='The "tree-line-width" style property'>
4185
4388
  <a name="GtkTreeView--s-tree-line-width"></a><h3>The <code class="literal">"tree-line-width"</code> style property</h3>
4186
4389
  <pre class="programlisting"> "tree-line-width" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
4187
4390
  <p>Width, in pixels, of the tree view lines.</p>
@@ -4189,7 +4392,7 @@ Enable extended row background themeing
4189
4392
  <p>Default value: 1</p>
4190
4393
  </div>
4191
4394
  <hr>
4192
- <div class="refsect2">
4395
+ <div class="refsect2" title='The "vertical-separator" style property'>
4193
4396
  <a name="GtkTreeView--s-vertical-separator"></a><h3>The <code class="literal">"vertical-separator"</code> style property</h3>
4194
4397
  <pre class="programlisting"> "vertical-separator" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
4195
4398
  <p>Vertical space between cells. Must be an even number.</p>
@@ -4197,12 +4400,12 @@ Enable extended row background themeing
4197
4400
  <p>Default value: 2</p>
4198
4401
  </div>
4199
4402
  </div>
4200
- <div class="refsect1">
4403
+ <div class="refsect1" title="Signal Details">
4201
4404
  <a name="GtkTreeView.signal-details"></a><h2>Signal Details</h2>
4202
- <div class="refsect2">
4405
+ <div class="refsect2" title='The "columns-changed" signal'>
4203
4406
  <a name="GtkTreeView-columns-changed"></a><h3>The <code class="literal">"columns-changed"</code> signal</h3>
4204
4407
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view,
4205
- <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>
4408
+ <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>
4206
4409
  <p>
4207
4410
  The number of columns of the treeview has changed.
4208
4411
  </p>
@@ -4211,7 +4414,8 @@ The number of columns of the treeview has changed.
4211
4414
  <tbody>
4212
4415
  <tr>
4213
4416
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4214
- <td>the object on which the signal is emitted</td>
4417
+ <td>the object on which the signal is emitted
4418
+ </td>
4215
4419
  </tr>
4216
4420
  <tr>
4217
4421
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -4221,10 +4425,10 @@ The number of columns of the treeview has changed.
4221
4425
  </table></div>
4222
4426
  </div>
4223
4427
  <hr>
4224
- <div class="refsect2">
4428
+ <div class="refsect2" title='The "cursor-changed" signal'>
4225
4429
  <a name="GtkTreeView-cursor-changed"></a><h3>The <code class="literal">"cursor-changed"</code> signal</h3>
4226
4430
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view,
4227
- <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>
4431
+ <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>
4228
4432
  <p>
4229
4433
  The position of the cursor (focused cell) has changed.
4230
4434
  </p>
@@ -4233,7 +4437,8 @@ The position of the cursor (focused cell) has changed.
4233
4437
  <tbody>
4234
4438
  <tr>
4235
4439
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4236
- <td>the object on which the signal is emitted</td>
4440
+ <td>the object on which the signal is emitted
4441
+ </td>
4237
4442
  </tr>
4238
4443
  <tr>
4239
4444
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -4243,13 +4448,13 @@ The position of the cursor (focused cell) has changed.
4243
4448
  </table></div>
4244
4449
  </div>
4245
4450
  <hr>
4246
- <div class="refsect2">
4451
+ <div class="refsect2" title='The "expand-collapse-cursor-row" signal'>
4247
4452
  <a name="GtkTreeView-expand-collapse-cursor-row"></a><h3>The <code class="literal">"expand-collapse-cursor-row"</code> signal</h3>
4248
4453
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *treeview,
4249
4454
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> arg1,
4250
4455
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> arg2,
4251
4456
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> arg3,
4252
- <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>
4457
+ <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>
4253
4458
  <p>
4254
4459
  </p>
4255
4460
  <div class="variablelist"><table border="0">
@@ -4257,22 +4462,43 @@ The position of the cursor (focused cell) has changed.
4257
4462
  <tbody>
4258
4463
  <tr>
4259
4464
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4260
- <td>the object which received the signal.</td>
4465
+ <td>the object which received the signal.
4466
+ </td>
4467
+ </tr>
4468
+ <tr>
4469
+ <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
4470
+ <td>
4471
+ </td>
4472
+ </tr>
4473
+ <tr>
4474
+ <td><p><span class="term"><em class="parameter"><code>arg2</code></em> :</span></p></td>
4475
+ <td>
4476
+ </td>
4477
+ </tr>
4478
+ <tr>
4479
+ <td><p><span class="term"><em class="parameter"><code>arg3</code></em> :</span></p></td>
4480
+ <td>
4481
+ </td>
4261
4482
  </tr>
4262
4483
  <tr>
4263
4484
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
4264
4485
  <td>user data set when the signal handler was connected.</td>
4265
4486
  </tr>
4487
+ <tr>
4488
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4489
+ <td>
4490
+ </td>
4491
+ </tr>
4266
4492
  </tbody>
4267
4493
  </table></div>
4268
4494
  </div>
4269
4495
  <hr>
4270
- <div class="refsect2">
4496
+ <div class="refsect2" title='The "move-cursor" signal'>
4271
4497
  <a name="GtkTreeView-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
4272
4498
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *treeview,
4273
4499
  <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> arg1,
4274
4500
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg2,
4275
- <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>
4501
+ <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>
4276
4502
  <p>
4277
4503
  </p>
4278
4504
  <div class="variablelist"><table border="0">
@@ -4280,25 +4506,41 @@ The position of the cursor (focused cell) has changed.
4280
4506
  <tbody>
4281
4507
  <tr>
4282
4508
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4283
- <td>the object which received the signal.</td>
4509
+ <td>the object which received the signal.
4510
+ </td>
4511
+ </tr>
4512
+ <tr>
4513
+ <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
4514
+ <td>
4515
+ </td>
4516
+ </tr>
4517
+ <tr>
4518
+ <td><p><span class="term"><em class="parameter"><code>arg2</code></em> :</span></p></td>
4519
+ <td>
4520
+ </td>
4284
4521
  </tr>
4285
4522
  <tr>
4286
4523
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
4287
4524
  <td>user data set when the signal handler was connected.</td>
4288
4525
  </tr>
4526
+ <tr>
4527
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4528
+ <td>
4529
+ </td>
4530
+ </tr>
4289
4531
  </tbody>
4290
4532
  </table></div>
4291
4533
  </div>
4292
4534
  <hr>
4293
- <div class="refsect2">
4535
+ <div class="refsect2" title='The "row-activated" signal'>
4294
4536
  <a name="GtkTreeView-row-activated"></a><h3>The <code class="literal">"row-activated"</code> signal</h3>
4295
4537
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view,
4296
- <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4538
+ <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4297
4539
  <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> *column,
4298
- <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>
4540
+ <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>
4299
4541
  <p>
4300
4542
  The "row-activated" signal is emitted when the method
4301
- <a class="link" href="GtkTreeView.html#gtk-tree-view-row-activated" title="gtk_tree_view_row_activated ()"><code class="function">gtk_tree_view_row_activated()</code></a> is called or the user double clicks
4543
+ <a class="link" href="GtkTreeView.html#gtk-tree-view-row-activated" title="gtk_tree_view_row_activated ()"><code class="function">gtk_tree_view_row_activated()</code></a> is called or the user double clicks
4302
4544
  a treeview row. It is also emitted when a non-editable row is
4303
4545
  selected and one of the keys: Space, Shift+Space, Return or
4304
4546
  Enter is pressed.
@@ -4312,15 +4554,18 @@ widget conceptual overview</a> as well as <a class="link" href="GtkTreeSelection
4312
4554
  <tbody>
4313
4555
  <tr>
4314
4556
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4315
- <td>the object on which the signal is emitted</td>
4557
+ <td>the object on which the signal is emitted
4558
+ </td>
4316
4559
  </tr>
4317
4560
  <tr>
4318
4561
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
4319
- <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for the activated row</td>
4562
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> for the activated row
4563
+ </td>
4320
4564
  </tr>
4321
4565
  <tr>
4322
4566
  <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
4323
- <td>the <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> in which the activation occurred</td>
4567
+ <td>the <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a> in which the activation occurred
4568
+ </td>
4324
4569
  </tr>
4325
4570
  <tr>
4326
4571
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -4330,12 +4575,12 @@ widget conceptual overview</a> as well as <a class="link" href="GtkTreeSelection
4330
4575
  </table></div>
4331
4576
  </div>
4332
4577
  <hr>
4333
- <div class="refsect2">
4578
+ <div class="refsect2" title='The "row-collapsed" signal'>
4334
4579
  <a name="GtkTreeView-row-collapsed"></a><h3>The <code class="literal">"row-collapsed"</code> signal</h3>
4335
4580
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view,
4336
- <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
4337
- <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4338
- <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>
4581
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
4582
+ <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4583
+ <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>
4339
4584
  <p>
4340
4585
  The given row has been collapsed (child nodes are hidden).
4341
4586
  </p>
@@ -4344,15 +4589,18 @@ The given row has been collapsed (child nodes are hidden).
4344
4589
  <tbody>
4345
4590
  <tr>
4346
4591
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4347
- <td>the object on which the signal is emitted</td>
4592
+ <td>the object on which the signal is emitted
4593
+ </td>
4348
4594
  </tr>
4349
4595
  <tr>
4350
4596
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
4351
- <td>the tree iter of the collapsed row</td>
4597
+ <td>the tree iter of the collapsed row
4598
+ </td>
4352
4599
  </tr>
4353
4600
  <tr>
4354
4601
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
4355
- <td>a tree path that points to the row</td>
4602
+ <td>a tree path that points to the row
4603
+ </td>
4356
4604
  </tr>
4357
4605
  <tr>
4358
4606
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -4362,12 +4610,12 @@ The given row has been collapsed (child nodes are hidden).
4362
4610
  </table></div>
4363
4611
  </div>
4364
4612
  <hr>
4365
- <div class="refsect2">
4613
+ <div class="refsect2" title='The "row-expanded" signal'>
4366
4614
  <a name="GtkTreeView-row-expanded"></a><h3>The <code class="literal">"row-expanded"</code> signal</h3>
4367
4615
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view,
4368
- <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
4369
- <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4370
- <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>
4616
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
4617
+ <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4618
+ <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>
4371
4619
  <p>
4372
4620
  The given row has been expanded (child nodes are shown).
4373
4621
  </p>
@@ -4376,15 +4624,18 @@ The given row has been expanded (child nodes are shown).
4376
4624
  <tbody>
4377
4625
  <tr>
4378
4626
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4379
- <td>the object on which the signal is emitted</td>
4627
+ <td>the object on which the signal is emitted
4628
+ </td>
4380
4629
  </tr>
4381
4630
  <tr>
4382
4631
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
4383
- <td>the tree iter of the expanded row</td>
4632
+ <td>the tree iter of the expanded row
4633
+ </td>
4384
4634
  </tr>
4385
4635
  <tr>
4386
4636
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
4387
- <td>a tree path that points to the row</td>
4637
+ <td>a tree path that points to the row
4638
+ </td>
4388
4639
  </tr>
4389
4640
  <tr>
4390
4641
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -4394,10 +4645,10 @@ The given row has been expanded (child nodes are shown).
4394
4645
  </table></div>
4395
4646
  </div>
4396
4647
  <hr>
4397
- <div class="refsect2">
4648
+ <div class="refsect2" title='The "select-all" signal'>
4398
4649
  <a name="GtkTreeView-select-all"></a><h3>The <code class="literal">"select-all"</code> signal</h3>
4399
4650
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *treeview,
4400
- <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>
4651
+ <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>
4401
4652
  <p>
4402
4653
  </p>
4403
4654
  <div class="variablelist"><table border="0">
@@ -4405,20 +4656,26 @@ The given row has been expanded (child nodes are shown).
4405
4656
  <tbody>
4406
4657
  <tr>
4407
4658
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4408
- <td>the object which received the signal.</td>
4659
+ <td>the object which received the signal.
4660
+ </td>
4409
4661
  </tr>
4410
4662
  <tr>
4411
4663
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
4412
4664
  <td>user data set when the signal handler was connected.</td>
4413
4665
  </tr>
4666
+ <tr>
4667
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4668
+ <td>
4669
+ </td>
4670
+ </tr>
4414
4671
  </tbody>
4415
4672
  </table></div>
4416
4673
  </div>
4417
4674
  <hr>
4418
- <div class="refsect2">
4675
+ <div class="refsect2" title='The "select-cursor-parent" signal'>
4419
4676
  <a name="GtkTreeView-select-cursor-parent"></a><h3>The <code class="literal">"select-cursor-parent"</code> signal</h3>
4420
4677
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *treeview,
4421
- <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>
4678
+ <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>
4422
4679
  <p>
4423
4680
  </p>
4424
4681
  <div class="variablelist"><table border="0">
@@ -4426,21 +4683,27 @@ The given row has been expanded (child nodes are shown).
4426
4683
  <tbody>
4427
4684
  <tr>
4428
4685
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4429
- <td>the object which received the signal.</td>
4686
+ <td>the object which received the signal.
4687
+ </td>
4430
4688
  </tr>
4431
4689
  <tr>
4432
4690
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
4433
4691
  <td>user data set when the signal handler was connected.</td>
4434
4692
  </tr>
4693
+ <tr>
4694
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4695
+ <td>
4696
+ </td>
4697
+ </tr>
4435
4698
  </tbody>
4436
4699
  </table></div>
4437
4700
  </div>
4438
4701
  <hr>
4439
- <div class="refsect2">
4702
+ <div class="refsect2" title='The "select-cursor-row" signal'>
4440
4703
  <a name="GtkTreeView-select-cursor-row"></a><h3>The <code class="literal">"select-cursor-row"</code> signal</h3>
4441
4704
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *treeview,
4442
4705
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> arg1,
4443
- <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>
4706
+ <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>
4444
4707
  <p>
4445
4708
  </p>
4446
4709
  <div class="variablelist"><table border="0">
@@ -4448,22 +4711,33 @@ The given row has been expanded (child nodes are shown).
4448
4711
  <tbody>
4449
4712
  <tr>
4450
4713
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4451
- <td>the object which received the signal.</td>
4714
+ <td>the object which received the signal.
4715
+ </td>
4716
+ </tr>
4717
+ <tr>
4718
+ <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
4719
+ <td>
4720
+ </td>
4452
4721
  </tr>
4453
4722
  <tr>
4454
4723
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
4455
4724
  <td>user data set when the signal handler was connected.</td>
4456
4725
  </tr>
4726
+ <tr>
4727
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4728
+ <td>
4729
+ </td>
4730
+ </tr>
4457
4731
  </tbody>
4458
4732
  </table></div>
4459
4733
  </div>
4460
4734
  <hr>
4461
- <div class="refsect2">
4735
+ <div class="refsect2" title='The "set-scroll-adjustments" signal'>
4462
4736
  <a name="GtkTreeView-set-scroll-adjustments"></a><h3>The <code class="literal">"set-scroll-adjustments"</code> signal</h3>
4463
4737
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *horizontal,
4464
4738
  <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *vertical,
4465
4739
  <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *arg2,
4466
- <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>
4740
+ <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>
4467
4741
  <p>
4468
4742
  Set the scroll adjustments for the tree view. Usually scrolled containers
4469
4743
  like <a class="link" href="GtkScrolledWindow.html" title="GtkScrolledWindow"><span class="type">GtkScrolledWindow</span></a> will emit this signal to connect two instances
@@ -4490,10 +4764,10 @@ of <a class="link" href="GtkScrollbar.html" title="GtkScrollbar"><span class="ty
4490
4764
  </table></div>
4491
4765
  </div>
4492
4766
  <hr>
4493
- <div class="refsect2">
4767
+ <div class="refsect2" title='The "start-interactive-search" signal'>
4494
4768
  <a name="GtkTreeView-start-interactive-search"></a><h3>The <code class="literal">"start-interactive-search"</code> signal</h3>
4495
4769
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *treeview,
4496
- <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>
4770
+ <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>
4497
4771
  <p>
4498
4772
  </p>
4499
4773
  <div class="variablelist"><table border="0">
@@ -4501,22 +4775,28 @@ of <a class="link" href="GtkScrollbar.html" title="GtkScrollbar"><span class="ty
4501
4775
  <tbody>
4502
4776
  <tr>
4503
4777
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4504
- <td>the object which received the signal.</td>
4778
+ <td>the object which received the signal.
4779
+ </td>
4505
4780
  </tr>
4506
4781
  <tr>
4507
4782
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
4508
4783
  <td>user data set when the signal handler was connected.</td>
4509
4784
  </tr>
4785
+ <tr>
4786
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4787
+ <td>
4788
+ </td>
4789
+ </tr>
4510
4790
  </tbody>
4511
4791
  </table></div>
4512
4792
  </div>
4513
4793
  <hr>
4514
- <div class="refsect2">
4794
+ <div class="refsect2" title='The "test-collapse-row" signal'>
4515
4795
  <a name="GtkTreeView-test-collapse-row"></a><h3>The <code class="literal">"test-collapse-row"</code> signal</h3>
4516
4796
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view,
4517
- <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
4518
- <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4519
- <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>
4797
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
4798
+ <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4799
+ <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>
4520
4800
  <p>
4521
4801
  The given row is about to be collapsed (hide its children nodes). Use this
4522
4802
  signal if you need to control the collapsibility of individual rows.
@@ -4526,15 +4806,18 @@ signal if you need to control the collapsibility of individual rows.
4526
4806
  <tbody>
4527
4807
  <tr>
4528
4808
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4529
- <td>the object on which the signal is emitted</td>
4809
+ <td>the object on which the signal is emitted
4810
+ </td>
4530
4811
  </tr>
4531
4812
  <tr>
4532
4813
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
4533
- <td>the tree iter of the row to collapse</td>
4814
+ <td>the tree iter of the row to collapse
4815
+ </td>
4534
4816
  </tr>
4535
4817
  <tr>
4536
4818
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
4537
- <td>a tree path that points to the row</td>
4819
+ <td>a tree path that points to the row
4820
+ </td>
4538
4821
  </tr>
4539
4822
  <tr>
4540
4823
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -4542,19 +4825,19 @@ signal if you need to control the collapsibility of individual rows.
4542
4825
  </tr>
4543
4826
  <tr>
4544
4827
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4545
- <td>
4546
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to allow collapsing, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to reject</td>
4828
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to allow collapsing, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to reject
4829
+ </td>
4547
4830
  </tr>
4548
4831
  </tbody>
4549
4832
  </table></div>
4550
4833
  </div>
4551
4834
  <hr>
4552
- <div class="refsect2">
4835
+ <div class="refsect2" title='The "test-expand-row" signal'>
4553
4836
  <a name="GtkTreeView-test-expand-row"></a><h3>The <code class="literal">"test-expand-row"</code> signal</h3>
4554
4837
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *tree_view,
4555
- <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
4556
- <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4557
- <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>
4838
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
4839
+ <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
4840
+ <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>
4558
4841
  <p>
4559
4842
  The given row is about to be expanded (show its children nodes). Use this
4560
4843
  signal if you need to control the expandability of individual rows.
@@ -4564,15 +4847,18 @@ signal if you need to control the expandability of individual rows.
4564
4847
  <tbody>
4565
4848
  <tr>
4566
4849
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4567
- <td>the object on which the signal is emitted</td>
4850
+ <td>the object on which the signal is emitted
4851
+ </td>
4568
4852
  </tr>
4569
4853
  <tr>
4570
4854
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
4571
- <td>the tree iter of the row to expand</td>
4855
+ <td>the tree iter of the row to expand
4856
+ </td>
4572
4857
  </tr>
4573
4858
  <tr>
4574
4859
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
4575
- <td>a tree path that points to the row</td>
4860
+ <td>a tree path that points to the row
4861
+ </td>
4576
4862
  </tr>
4577
4863
  <tr>
4578
4864
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -4580,17 +4866,17 @@ signal if you need to control the expandability of individual rows.
4580
4866
  </tr>
4581
4867
  <tr>
4582
4868
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4583
- <td>
4584
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to allow expansion, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to reject</td>
4869
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to allow expansion, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to reject
4870
+ </td>
4585
4871
  </tr>
4586
4872
  </tbody>
4587
4873
  </table></div>
4588
4874
  </div>
4589
4875
  <hr>
4590
- <div class="refsect2">
4876
+ <div class="refsect2" title='The "toggle-cursor-row" signal'>
4591
4877
  <a name="GtkTreeView-toggle-cursor-row"></a><h3>The <code class="literal">"toggle-cursor-row"</code> signal</h3>
4592
4878
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *treeview,
4593
- <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>
4879
+ <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>
4594
4880
  <p>
4595
4881
  </p>
4596
4882
  <div class="variablelist"><table border="0">
@@ -4598,20 +4884,26 @@ signal if you need to control the expandability of individual rows.
4598
4884
  <tbody>
4599
4885
  <tr>
4600
4886
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4601
- <td>the object which received the signal.</td>
4887
+ <td>the object which received the signal.
4888
+ </td>
4602
4889
  </tr>
4603
4890
  <tr>
4604
4891
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
4605
4892
  <td>user data set when the signal handler was connected.</td>
4606
4893
  </tr>
4894
+ <tr>
4895
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4896
+ <td>
4897
+ </td>
4898
+ </tr>
4607
4899
  </tbody>
4608
4900
  </table></div>
4609
4901
  </div>
4610
4902
  <hr>
4611
- <div class="refsect2">
4903
+ <div class="refsect2" title='The "unselect-all" signal'>
4612
4904
  <a name="GtkTreeView-unselect-all"></a><h3>The <code class="literal">"unselect-all"</code> signal</h3>
4613
4905
  <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="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> *treeview,
4614
- <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>
4906
+ <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>
4615
4907
  <p>
4616
4908
  </p>
4617
4909
  <div class="variablelist"><table border="0">
@@ -4619,17 +4911,23 @@ signal if you need to control the expandability of individual rows.
4619
4911
  <tbody>
4620
4912
  <tr>
4621
4913
  <td><p><span class="term"><em class="parameter"><code>tree_view</code></em> :</span></p></td>
4622
- <td>the object which received the signal.</td>
4914
+ <td>the object which received the signal.
4915
+ </td>
4623
4916
  </tr>
4624
4917
  <tr>
4625
4918
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
4626
4919
  <td>user data set when the signal handler was connected.</td>
4627
4920
  </tr>
4921
+ <tr>
4922
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
4923
+ <td>
4924
+ </td>
4925
+ </tr>
4628
4926
  </tbody>
4629
4927
  </table></div>
4630
4928
  </div>
4631
4929
  </div>
4632
- <div class="refsect1">
4930
+ <div class="refsect1" title="See Also">
4633
4931
  <a name="GtkTreeView.see-also"></a><h2>See Also</h2>
4634
4932
  <p>
4635
4933
  <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a>, <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>, <span class="type">GtkTreeDnd</span>, <span class="type">GtkTreeMode</span>, <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a>, <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a>, <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>, <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>, <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>, <a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a>, <a class="link" href="GtkCellRendererPixbuf.html" title="GtkCellRendererPixbuf"><span class="type">GtkCellRendererPixbuf</span></a>, <a class="link" href="GtkCellRendererText.html" title="GtkCellRendererText"><span class="type">GtkCellRendererText</span></a>, <a class="link" href="GtkCellRendererToggle.html" title="GtkCellRendererToggle"><span class="type">GtkCellRendererToggle</span></a>
@@ -4638,6 +4936,6 @@ signal if you need to control the expandability of individual rows.
4638
4936
  </div>
4639
4937
  <div class="footer">
4640
4938
  <hr>
4641
- Generated by GTK-Doc V1.16.1</div>
4939
+ Generated by GTK-Doc V1.15</div>
4642
4940
  </body>
4643
4941
  </html>