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="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
9
9
  <link rel="prev" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem">
10
10
  <link rel="next" href="GtkToolbar.html" title="GtkToolbar">
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">
@@ -32,7 +32,7 @@
32
32
  <a href="#GtkToolShell.implementations" class="shortcut">Known Implementations</a>
33
33
  </td></tr>
34
34
  </table>
35
- <div class="refentry">
35
+ <div class="refentry" title="GtkToolShell">
36
36
  <a name="GtkToolShell"></a><div class="titlepage"></div>
37
37
  <div class="refnamediv"><table width="100%"><tr>
38
38
  <td valign="top">
@@ -41,13 +41,13 @@
41
41
  </td>
42
42
  <td valign="top" align="right"></td>
43
43
  </tr></table></div>
44
- <div class="refsynopsisdiv">
44
+ <div class="refsynopsisdiv" title="Synopsis">
45
45
  <a name="GtkToolShell.synopsis"></a><h2>Synopsis</h2>
46
46
  <pre class="synopsis">
47
47
  #include &lt;gtk/gtk.h&gt;
48
48
 
49
49
  <a class="link" href="GtkToolShell.html#GtkToolShell-struct" title="GtkToolShell">GtkToolShell</a>;
50
- struct <a class="link" href="GtkToolShell.html#GtkToolShellIface" title="struct GtkToolShellIface">GtkToolShellIface</a>;
50
+ <a class="link" href="GtkToolShell.html#GtkToolShellIface" title="GtkToolShellIface">GtkToolShellIface</a>;
51
51
  <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="returnvalue">PangoEllipsizeMode</span></a> <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-ellipsize-mode" title="gtk_tool_shell_get_ellipsize_mode ()">gtk_tool_shell_get_ellipsize_mode</a> (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);
52
52
  <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="returnvalue">GtkIconSize</span></a> <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-icon-size" title="gtk_tool_shell_get_icon_size ()">gtk_tool_shell_get_icon_size</a> (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);
53
53
  <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-orientation" title="gtk_tool_shell_get_orientation ()">gtk_tool_shell_get_orientation</a> (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);
@@ -59,26 +59,26 @@ struct <a class="link" href="GtkToolShell.html#GtkToolShellIface" t
59
59
  <a class="link" href="GtkSizeGroup.html" title="GtkSizeGroup"><span class="returnvalue">GtkSizeGroup</span></a> * <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-text-size-group" title="gtk_tool_shell_get_text_size_group ()">gtk_tool_shell_get_text_size_group</a> (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);
60
60
  </pre>
61
61
  </div>
62
- <div class="refsect1">
62
+ <div class="refsect1" title="Object Hierarchy">
63
63
  <a name="GtkToolShell.object-hierarchy"></a><h2>Object Hierarchy</h2>
64
64
  <pre class="synopsis">
65
65
  GInterface
66
66
  +----GtkToolShell
67
67
  </pre>
68
68
  </div>
69
- <div class="refsect1">
69
+ <div class="refsect1" title="Prerequisites">
70
70
  <a name="GtkToolShell.prerequisites"></a><h2>Prerequisites</h2>
71
71
  <p>
72
72
  GtkToolShell requires
73
73
  <a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>.</p>
74
74
  </div>
75
- <div class="refsect1">
75
+ <div class="refsect1" title="Known Implementations">
76
76
  <a name="GtkToolShell.implementations"></a><h2>Known Implementations</h2>
77
77
  <p>
78
78
  GtkToolShell is implemented by
79
79
  <a class="link" href="GtkToolItemGroup.html" title="GtkToolItemGroup">GtkToolItemGroup</a> and <a class="link" href="GtkToolbar.html" title="GtkToolbar">GtkToolbar</a>.</p>
80
80
  </div>
81
- <div class="refsect1">
81
+ <div class="refsect1" title="Description">
82
82
  <a name="GtkToolShell.description"></a><h2>Description</h2>
83
83
  <p>
84
84
  The <a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> interface allows container widgets to provide additional
@@ -88,19 +88,19 @@ information when embedding <a class="link" href="GtkToolItem.html" title="GtkToo
88
88
  <em class="parameter"><code>see_also</code></em>: <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>, <a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a>
89
89
  </p>
90
90
  </div>
91
- <div class="refsect1">
91
+ <div class="refsect1" title="Details">
92
92
  <a name="GtkToolShell.details"></a><h2>Details</h2>
93
- <div class="refsect2">
93
+ <div class="refsect2" title="GtkToolShell">
94
94
  <a name="GtkToolShell-struct"></a><h3>GtkToolShell</h3>
95
95
  <pre class="programlisting">typedef struct _GtkToolShell GtkToolShell;</pre>
96
96
  <p>
97
- Dummy structure for accessing instances of <a class="link" href="GtkToolShell.html#GtkToolShellIface" title="struct GtkToolShellIface"><span class="type">GtkToolShellIface</span></a>.
97
+ Dummy structure for accessing instances of <a class="link" href="GtkToolShell.html#GtkToolShellIface" title="GtkToolShellIface"><span class="type">GtkToolShellIface</span></a>.
98
98
  </p>
99
99
  </div>
100
100
  <hr>
101
- <div class="refsect2">
102
- <a name="GtkToolShellIface"></a><h3>struct GtkToolShellIface</h3>
103
- <pre class="programlisting">struct GtkToolShellIface {
101
+ <div class="refsect2" title="GtkToolShellIface">
102
+ <a name="GtkToolShellIface"></a><h3>GtkToolShellIface</h3>
103
+ <pre class="programlisting">typedef struct {
104
104
  GtkIconSize (*get_icon_size) (GtkToolShell *shell);
105
105
  GtkOrientation (*get_orientation) (GtkToolShell *shell);
106
106
  GtkToolbarStyle (*get_style) (GtkToolShell *shell);
@@ -110,7 +110,7 @@ Dummy structure for accessing instances of <a class="link" href="GtkToolShell.ht
110
110
  gfloat (*get_text_alignment) (GtkToolShell *shell);
111
111
  PangoEllipsizeMode (*get_ellipsize_mode) (GtkToolShell *shell);
112
112
  GtkSizeGroup * (*get_text_size_group) (GtkToolShell *shell);
113
- };
113
+ } GtkToolShellIface;
114
114
  </pre>
115
115
  <p>
116
116
  Virtual function table for the <a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> interface.
@@ -120,45 +120,54 @@ Virtual function table for the <a class="link" href="GtkToolShell.html" title="G
120
120
  <tbody>
121
121
  <tr>
122
122
  <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-icon-size"></a>get_icon_size</code></em> ()</span></p></td>
123
- <td>mandatory implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-icon-size" title="gtk_tool_shell_get_icon_size ()"><code class="function">gtk_tool_shell_get_icon_size()</code></a>.</td>
123
+ <td>mandatory implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-icon-size" title="gtk_tool_shell_get_icon_size ()"><code class="function">gtk_tool_shell_get_icon_size()</code></a>.
124
+ </td>
124
125
  </tr>
125
126
  <tr>
126
127
  <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-orientation"></a>get_orientation</code></em> ()</span></p></td>
127
- <td>mandatory implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-orientation" title="gtk_tool_shell_get_orientation ()"><code class="function">gtk_tool_shell_get_orientation()</code></a>.</td>
128
+ <td>mandatory implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-orientation" title="gtk_tool_shell_get_orientation ()"><code class="function">gtk_tool_shell_get_orientation()</code></a>.
129
+ </td>
128
130
  </tr>
129
131
  <tr>
130
132
  <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-style"></a>get_style</code></em> ()</span></p></td>
131
- <td>mandatory implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-style" title="gtk_tool_shell_get_style ()"><code class="function">gtk_tool_shell_get_style()</code></a>.</td>
133
+ <td>mandatory implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-style" title="gtk_tool_shell_get_style ()"><code class="function">gtk_tool_shell_get_style()</code></a>.
134
+ </td>
132
135
  </tr>
133
136
  <tr>
134
137
  <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-relief-style"></a>get_relief_style</code></em> ()</span></p></td>
135
- <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-relief-style" title="gtk_tool_shell_get_relief_style ()"><code class="function">gtk_tool_shell_get_relief_style()</code></a>.</td>
138
+ <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-relief-style" title="gtk_tool_shell_get_relief_style ()"><code class="function">gtk_tool_shell_get_relief_style()</code></a>.
139
+ </td>
136
140
  </tr>
137
141
  <tr>
138
142
  <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.rebuild-menu"></a>rebuild_menu</code></em> ()</span></p></td>
139
- <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-rebuild-menu" title="gtk_tool_shell_rebuild_menu ()"><code class="function">gtk_tool_shell_rebuild_menu()</code></a>.</td>
143
+ <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-rebuild-menu" title="gtk_tool_shell_rebuild_menu ()"><code class="function">gtk_tool_shell_rebuild_menu()</code></a>.
144
+ </td>
140
145
  </tr>
141
146
  <tr>
142
147
  <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-text-orientation"></a>get_text_orientation</code></em> ()</span></p></td>
143
- <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-text-orientation" title="gtk_tool_shell_get_text_orientation ()"><code class="function">gtk_tool_shell_get_text_orientation()</code></a>.</td>
148
+ <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-text-orientation" title="gtk_tool_shell_get_text_orientation ()"><code class="function">gtk_tool_shell_get_text_orientation()</code></a>.
149
+ </td>
144
150
  </tr>
145
151
  <tr>
146
152
  <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-text-alignment"></a>get_text_alignment</code></em> ()</span></p></td>
147
- <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-text-alignment" title="gtk_tool_shell_get_text_alignment ()"><code class="function">gtk_tool_shell_get_text_alignment()</code></a>.</td>
153
+ <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-text-alignment" title="gtk_tool_shell_get_text_alignment ()"><code class="function">gtk_tool_shell_get_text_alignment()</code></a>.
154
+ </td>
148
155
  </tr>
149
156
  <tr>
150
157
  <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-ellipsize-mode"></a>get_ellipsize_mode</code></em> ()</span></p></td>
151
- <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-ellipsize-mode" title="gtk_tool_shell_get_ellipsize_mode ()"><code class="function">gtk_tool_shell_get_ellipsize_mode()</code></a>.</td>
158
+ <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-ellipsize-mode" title="gtk_tool_shell_get_ellipsize_mode ()"><code class="function">gtk_tool_shell_get_ellipsize_mode()</code></a>.
159
+ </td>
152
160
  </tr>
153
161
  <tr>
154
162
  <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-text-size-group"></a>get_text_size_group</code></em> ()</span></p></td>
155
- <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-text-size-group" title="gtk_tool_shell_get_text_size_group ()"><code class="function">gtk_tool_shell_get_text_size_group()</code></a>.</td>
163
+ <td>optional implementation of <a class="link" href="GtkToolShell.html#gtk-tool-shell-get-text-size-group" title="gtk_tool_shell_get_text_size_group ()"><code class="function">gtk_tool_shell_get_text_size_group()</code></a>.
164
+ </td>
156
165
  </tr>
157
166
  </tbody>
158
167
  </table></div>
159
168
  </div>
160
169
  <hr>
161
- <div class="refsect2">
170
+ <div class="refsect2" title="gtk_tool_shell_get_ellipsize_mode ()">
162
171
  <a name="gtk-tool-shell-get-ellipsize-mode"></a><h3>gtk_tool_shell_get_ellipsize_mode ()</h3>
163
172
  <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="returnvalue">PangoEllipsizeMode</span></a> gtk_tool_shell_get_ellipsize_mode (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);</pre>
164
173
  <p>
@@ -176,7 +185,8 @@ instead.
176
185
  </tr>
177
186
  <tr>
178
187
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
179
- <td>the current ellipsize mode of <em class="parameter"><code>shell</code></em>
188
+ <td> the current ellipsize mode of <em class="parameter"><code>shell</code></em>
189
+
180
190
  </td>
181
191
  </tr>
182
192
  </tbody>
@@ -184,7 +194,7 @@ instead.
184
194
  <p class="since">Since 2.20</p>
185
195
  </div>
186
196
  <hr>
187
- <div class="refsect2">
197
+ <div class="refsect2" title="gtk_tool_shell_get_icon_size ()">
188
198
  <a name="gtk-tool-shell-get-icon-size"></a><h3>gtk_tool_shell_get_icon_size ()</h3>
189
199
  <pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="returnvalue">GtkIconSize</span></a> gtk_tool_shell_get_icon_size (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);</pre>
190
200
  <p>
@@ -201,7 +211,7 @@ function directly, but rely on <a class="link" href="GtkToolItem.html#gtk-tool-i
201
211
  </tr>
202
212
  <tr>
203
213
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
204
- <td>the current size for icons of <em class="parameter"><code>shell</code></em>. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
214
+ <td> the current size for icons of <em class="parameter"><code>shell</code></em>. <span class="annotation">[type int]</span>
205
215
  </td>
206
216
  </tr>
207
217
  </tbody>
@@ -209,7 +219,7 @@ function directly, but rely on <a class="link" href="GtkToolItem.html#gtk-tool-i
209
219
  <p class="since">Since 2.14</p>
210
220
  </div>
211
221
  <hr>
212
- <div class="refsect2">
222
+ <div class="refsect2" title="gtk_tool_shell_get_orientation ()">
213
223
  <a name="gtk-tool-shell-get-orientation"></a><h3>gtk_tool_shell_get_orientation ()</h3>
214
224
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> gtk_tool_shell_get_orientation (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);</pre>
215
225
  <p>
@@ -227,7 +237,8 @@ instead.
227
237
  </tr>
228
238
  <tr>
229
239
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
230
- <td>the current orientation of <em class="parameter"><code>shell</code></em>
240
+ <td> the current orientation of <em class="parameter"><code>shell</code></em>
241
+
231
242
  </td>
232
243
  </tr>
233
244
  </tbody>
@@ -235,7 +246,7 @@ instead.
235
246
  <p class="since">Since 2.14</p>
236
247
  </div>
237
248
  <hr>
238
- <div class="refsect2">
249
+ <div class="refsect2" title="gtk_tool_shell_get_relief_style ()">
239
250
  <a name="gtk-tool-shell-get-relief-style"></a><h3>gtk_tool_shell_get_relief_style ()</h3>
240
251
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="returnvalue">GtkReliefStyle</span></a> gtk_tool_shell_get_relief_style (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);</pre>
241
252
  <p>
@@ -252,14 +263,16 @@ function directly, but rely on <a class="link" href="GtkToolItem.html#gtk-tool-i
252
263
  </tr>
253
264
  <tr>
254
265
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
255
- <td>The relief style of buttons on <em class="parameter"><code>shell</code></em>.</td>
266
+ <td> The relief style of buttons on <em class="parameter"><code>shell</code></em>.
267
+
268
+ </td>
256
269
  </tr>
257
270
  </tbody>
258
271
  </table></div>
259
272
  <p class="since">Since 2.14</p>
260
273
  </div>
261
274
  <hr>
262
- <div class="refsect2">
275
+ <div class="refsect2" title="gtk_tool_shell_get_style ()">
263
276
  <a name="gtk-tool-shell-get-style"></a><h3>gtk_tool_shell_get_style ()</h3>
264
277
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="returnvalue">GtkToolbarStyle</span></a> gtk_tool_shell_get_style (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);</pre>
265
278
  <p>
@@ -277,7 +290,8 @@ instead.
277
290
  </tr>
278
291
  <tr>
279
292
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
280
- <td>the current style of <em class="parameter"><code>shell</code></em>
293
+ <td> the current style of <em class="parameter"><code>shell</code></em>
294
+
281
295
  </td>
282
296
  </tr>
283
297
  </tbody>
@@ -285,7 +299,7 @@ instead.
285
299
  <p class="since">Since 2.14</p>
286
300
  </div>
287
301
  <hr>
288
- <div class="refsect2">
302
+ <div class="refsect2" title="gtk_tool_shell_get_text_alignment ()">
289
303
  <a name="gtk-tool-shell-get-text-alignment"></a><h3>gtk_tool_shell_get_text_alignment ()</h3>
290
304
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="returnvalue">gfloat</span></a> gtk_tool_shell_get_text_alignment (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);</pre>
291
305
  <p>
@@ -303,7 +317,8 @@ instead.
303
317
  </tr>
304
318
  <tr>
305
319
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
306
- <td>the current text alignment of <em class="parameter"><code>shell</code></em>
320
+ <td> the current text alignment of <em class="parameter"><code>shell</code></em>
321
+
307
322
  </td>
308
323
  </tr>
309
324
  </tbody>
@@ -311,7 +326,7 @@ instead.
311
326
  <p class="since">Since 2.20</p>
312
327
  </div>
313
328
  <hr>
314
- <div class="refsect2">
329
+ <div class="refsect2" title="gtk_tool_shell_get_text_orientation ()">
315
330
  <a name="gtk-tool-shell-get-text-orientation"></a><h3>gtk_tool_shell_get_text_orientation ()</h3>
316
331
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> gtk_tool_shell_get_text_orientation (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);</pre>
317
332
  <p>
@@ -329,7 +344,8 @@ instead.
329
344
  </tr>
330
345
  <tr>
331
346
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
332
- <td>the current text orientation of <em class="parameter"><code>shell</code></em>
347
+ <td> the current text orientation of <em class="parameter"><code>shell</code></em>
348
+
333
349
  </td>
334
350
  </tr>
335
351
  </tbody>
@@ -337,7 +353,7 @@ instead.
337
353
  <p class="since">Since 2.20</p>
338
354
  </div>
339
355
  <hr>
340
- <div class="refsect2">
356
+ <div class="refsect2" title="gtk_tool_shell_rebuild_menu ()">
341
357
  <a name="gtk-tool-shell-rebuild-menu"></a><h3>gtk_tool_shell_rebuild_menu ()</h3>
342
358
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_tool_shell_rebuild_menu (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);</pre>
343
359
  <p>
@@ -360,7 +376,7 @@ Tool items must not call this function directly, but rely on
360
376
  <p class="since">Since 2.14</p>
361
377
  </div>
362
378
  <hr>
363
- <div class="refsect2">
379
+ <div class="refsect2" title="gtk_tool_shell_get_text_size_group ()">
364
380
  <a name="gtk-tool-shell-get-text-size-group"></a><h3>gtk_tool_shell_get_text_size_group ()</h3>
365
381
  <pre class="programlisting"><a class="link" href="GtkSizeGroup.html" title="GtkSizeGroup"><span class="returnvalue">GtkSizeGroup</span></a> * gtk_tool_shell_get_text_size_group (<em class="parameter"><code><a class="link" href="GtkToolShell.html" title="GtkToolShell"><span class="type">GtkToolShell</span></a> *shell</code></em>);</pre>
366
382
  <p>
@@ -378,7 +394,8 @@ instead.
378
394
  </tr>
379
395
  <tr>
380
396
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
381
- <td>the current text size group of <em class="parameter"><code>shell</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
397
+ <td> the current text size group of <em class="parameter"><code>shell</code></em>
398
+
382
399
  </td>
383
400
  </tr>
384
401
  </tbody>
@@ -389,6 +406,6 @@ instead.
389
406
  </div>
390
407
  <div class="footer">
391
408
  <hr>
392
- Generated by GTK-Doc V1.16.1</div>
409
+ Generated by GTK-Doc V1.15</div>
393
410
  </body>
394
411
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
9
9
  <link rel="prev" href="GtkToolShell.html" title="GtkToolShell">
10
10
  <link rel="next" href="GtkToolItem.html" title="GtkToolItem">
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">
@@ -38,7 +38,7 @@
38
38
  <a href="#GtkToolbar.signals" class="shortcut">Signals</a>
39
39
  </td></tr>
40
40
  </table>
41
- <div class="refentry">
41
+ <div class="refentry" title="GtkToolbar">
42
42
  <a name="GtkToolbar"></a><div class="titlepage"></div>
43
43
  <div class="refnamediv"><table width="100%"><tr>
44
44
  <td valign="top">
@@ -47,15 +47,15 @@
47
47
  </td>
48
48
  <td valign="top" align="right"><img src="toolbar.png"></td>
49
49
  </tr></table></div>
50
- <div class="refsynopsisdiv">
50
+ <div class="refsynopsisdiv" title="Synopsis">
51
51
  <a name="GtkToolbar.synopsis"></a><h2>Synopsis</h2>
52
52
  <pre class="synopsis">
53
53
  #include &lt;gtk/gtk.h&gt;
54
54
 
55
- struct <a class="link" href="GtkToolbar.html#GtkToolbar-struct" title="struct GtkToolbar">GtkToolbar</a>;
55
+ <a class="link" href="GtkToolbar.html#GtkToolbar-struct" title="GtkToolbar">GtkToolbar</a>;
56
56
  enum <a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType">GtkToolbarChildType</a>;
57
57
  enum <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" title="enum GtkToolbarSpaceStyle">GtkToolbarSpaceStyle</a>;
58
- struct <a class="link" href="GtkToolbar.html#GtkToolbarChild" title="struct GtkToolbarChild">GtkToolbarChild</a>;
58
+ <a class="link" href="GtkToolbar.html#GtkToolbarChild" title="GtkToolbarChild">GtkToolbarChild</a>;
59
59
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkToolbar.html#gtk-toolbar-new" title="gtk_toolbar_new ()">gtk_toolbar_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
60
60
  <span class="returnvalue">void</span> <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()">gtk_toolbar_insert</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
61
61
  <em class="parameter"><code><a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> *item</code></em>,
@@ -84,21 +84,21 @@ struct <a class="link" href="GtkToolbar.html#GtkToolbarChild" title
84
84
  <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="returnvalue">GtkIconSize</span></a> <a class="link" href="GtkToolbar.html#gtk-toolbar-get-icon-size" title="gtk_toolbar_get_icon_size ()">gtk_toolbar_get_icon_size</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);
85
85
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkToolbar.html#gtk-toolbar-get-tooltips" title="gtk_toolbar_get_tooltips ()">gtk_toolbar_get_tooltips</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);
86
86
  <a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="returnvalue">GtkReliefStyle</span></a> <a class="link" href="GtkToolbar.html#gtk-toolbar-get-relief-style" title="gtk_toolbar_get_relief_style ()">gtk_toolbar_get_relief_style</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);
87
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkToolbar.html#gtk-toolbar-append-item" title="gtk_toolbar_append_item ()">gtk_toolbar_append_item</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
87
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkToolbar.html#gtk-toolbar-append-item" title="gtk_toolbar_append_item ()">gtk_toolbar_append_item</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
88
88
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
89
89
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
90
90
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
91
91
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
92
92
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
93
93
  <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>);
94
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkToolbar.html#gtk-toolbar-prepend-item" title="gtk_toolbar_prepend_item ()">gtk_toolbar_prepend_item</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
94
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkToolbar.html#gtk-toolbar-prepend-item" title="gtk_toolbar_prepend_item ()">gtk_toolbar_prepend_item</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
95
95
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
96
96
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
97
97
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
98
98
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
99
99
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
100
100
  <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>);
101
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkToolbar.html#gtk-toolbar-insert-item" title="gtk_toolbar_insert_item ()">gtk_toolbar_insert_item</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
101
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkToolbar.html#gtk-toolbar-insert-item" title="gtk_toolbar_insert_item ()">gtk_toolbar_insert_item</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
102
102
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
103
103
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
104
104
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
@@ -110,7 +110,7 @@ struct <a class="link" href="GtkToolbar.html#GtkToolbarChild" title
110
110
  <span class="returnvalue">void</span> <a class="link" href="GtkToolbar.html#gtk-toolbar-prepend-space" title="gtk_toolbar_prepend_space ()">gtk_toolbar_prepend_space</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);
111
111
  <span class="returnvalue">void</span> <a class="link" href="GtkToolbar.html#gtk-toolbar-insert-space" title="gtk_toolbar_insert_space ()">gtk_toolbar_insert_space</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
112
112
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);
113
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkToolbar.html#gtk-toolbar-append-element" title="gtk_toolbar_append_element ()">gtk_toolbar_append_element</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
113
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkToolbar.html#gtk-toolbar-append-element" title="gtk_toolbar_append_element ()">gtk_toolbar_append_element</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
114
114
  <em class="parameter"><code><a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> type</code></em>,
115
115
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
116
116
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
@@ -119,7 +119,7 @@ struct <a class="link" href="GtkToolbar.html#GtkToolbarChild" title
119
119
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
120
120
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
121
121
  <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>);
122
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkToolbar.html#gtk-toolbar-prepend-element" title="gtk_toolbar_prepend_element ()">gtk_toolbar_prepend_element</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
122
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkToolbar.html#gtk-toolbar-prepend-element" title="gtk_toolbar_prepend_element ()">gtk_toolbar_prepend_element</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
123
123
  <em class="parameter"><code><a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> type</code></em>,
124
124
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
125
125
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
@@ -128,7 +128,7 @@ struct <a class="link" href="GtkToolbar.html#GtkToolbarChild" title
128
128
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
129
129
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
130
130
  <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>);
131
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkToolbar.html#gtk-toolbar-insert-element" title="gtk_toolbar_insert_element ()">gtk_toolbar_insert_element</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
131
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkToolbar.html#gtk-toolbar-insert-element" title="gtk_toolbar_insert_element ()">gtk_toolbar_insert_element</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
132
132
  <em class="parameter"><code><a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> type</code></em>,
133
133
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
134
134
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
@@ -153,7 +153,7 @@ struct <a class="link" href="GtkToolbar.html#GtkToolbarChild" title
153
153
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);
154
154
  <span class="returnvalue">void</span> <a class="link" href="GtkToolbar.html#gtk-toolbar-set-style" title="gtk_toolbar_set_style ()">gtk_toolbar_set_style</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
155
155
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="type">GtkToolbarStyle</span></a> style</code></em>);
156
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkToolbar.html#gtk-toolbar-insert-stock" title="gtk_toolbar_insert_stock ()">gtk_toolbar_insert_stock</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
156
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkToolbar.html#gtk-toolbar-insert-stock" title="gtk_toolbar_insert_stock ()">gtk_toolbar_insert_stock</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
157
157
  <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> *stock_id</code></em>,
158
158
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
159
159
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
@@ -167,7 +167,7 @@ struct <a class="link" href="GtkToolbar.html#GtkToolbarChild" title
167
167
  <span class="returnvalue">void</span> <a class="link" href="GtkToolbar.html#gtk-toolbar-unset-style" title="gtk_toolbar_unset_style ()">gtk_toolbar_unset_style</a> (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);
168
168
  </pre>
169
169
  </div>
170
- <div class="refsect1">
170
+ <div class="refsect1" title="Object Hierarchy">
171
171
  <a name="GtkToolbar.object-hierarchy"></a><h2>Object Hierarchy</h2>
172
172
  <pre class="synopsis">
173
173
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -178,13 +178,13 @@ struct <a class="link" href="GtkToolbar.html#GtkToolbarChild" title
178
178
  +----GtkToolbar
179
179
  </pre>
180
180
  </div>
181
- <div class="refsect1">
181
+ <div class="refsect1" title="Implemented Interfaces">
182
182
  <a name="GtkToolbar.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
183
183
  <p>
184
184
  GtkToolbar implements
185
185
  AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>, <a class="link" href="GtkToolShell.html" title="GtkToolShell">GtkToolShell</a> and <a class="link" href="gtk-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>
186
186
  </div>
187
- <div class="refsect1">
187
+ <div class="refsect1" title="Properties">
188
188
  <a name="GtkToolbar.properties"></a><h2>Properties</h2>
189
189
  <pre class="synopsis">
190
190
  "<a class="link" href="GtkToolbar.html#GtkToolbar--icon-size" title='The "icon-size" property'>icon-size</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
@@ -194,14 +194,14 @@ GtkToolbar implements
194
194
  "<a class="link" href="GtkToolbar.html#GtkToolbar--tooltips" title='The "tooltips" property'>tooltips</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
195
195
  </pre>
196
196
  </div>
197
- <div class="refsect1">
197
+ <div class="refsect1" title="Child Properties">
198
198
  <a name="GtkToolbar.child-properties"></a><h2>Child Properties</h2>
199
199
  <pre class="synopsis">
200
200
  "<a class="link" href="GtkToolbar.html#GtkToolbar--c-expand" title='The "expand" child property'>expand</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
201
201
  "<a class="link" href="GtkToolbar.html#GtkToolbar--c-homogeneous" title='The "homogeneous" child property'>homogeneous</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
202
202
  </pre>
203
203
  </div>
204
- <div class="refsect1">
204
+ <div class="refsect1" title="Style Properties">
205
205
  <a name="GtkToolbar.style-properties"></a><h2>Style Properties</h2>
206
206
  <pre class="synopsis">
207
207
  "<a class="link" href="GtkToolbar.html#GtkToolbar--s-button-relief" title='The "button-relief" style property'>button-relief</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="type">GtkReliefStyle</span></a> : Read
@@ -212,16 +212,16 @@ GtkToolbar implements
212
212
  "<a class="link" href="GtkToolbar.html#GtkToolbar--s-space-style" title='The "space-style" style property'>space-style</a>" <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" title="enum GtkToolbarSpaceStyle"><span class="type">GtkToolbarSpaceStyle</span></a> : Read
213
213
  </pre>
214
214
  </div>
215
- <div class="refsect1">
215
+ <div class="refsect1" title="Signals">
216
216
  <a name="GtkToolbar.signals"></a><h2>Signals</h2>
217
217
  <pre class="synopsis">
218
- "<a class="link" href="GtkToolbar.html#GtkToolbar-focus-home-or-end" title='The "focus-home-or-end" signal'>focus-home-or-end</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
219
- "<a class="link" href="GtkToolbar.html#GtkToolbar-orientation-changed" title='The "orientation-changed" signal'>orientation-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
220
- "<a class="link" href="GtkToolbar.html#GtkToolbar-popup-context-menu" title='The "popup-context-menu" signal'>popup-context-menu</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>
221
- "<a class="link" href="GtkToolbar.html#GtkToolbar-style-changed" title='The "style-changed" signal'>style-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
218
+ "<a class="link" href="GtkToolbar.html#GtkToolbar-focus-home-or-end" title='The "focus-home-or-end" signal'>focus-home-or-end</a>" : Run Last / Action
219
+ "<a class="link" href="GtkToolbar.html#GtkToolbar-orientation-changed" title='The "orientation-changed" signal'>orientation-changed</a>" : Run First
220
+ "<a class="link" href="GtkToolbar.html#GtkToolbar-popup-context-menu" title='The "popup-context-menu" signal'>popup-context-menu</a>" : Run Last
221
+ "<a class="link" href="GtkToolbar.html#GtkToolbar-style-changed" title='The "style-changed" signal'>style-changed</a>" : Run First
222
222
  </pre>
223
223
  </div>
224
- <div class="refsect1">
224
+ <div class="refsect1" title="Description">
225
225
  <a name="GtkToolbar.description"></a><h2>Description</h2>
226
226
  <p>
227
227
  A toolbar is created with a call to <a class="link" href="GtkToolbar.html#gtk-toolbar-new" title="gtk_toolbar_new ()"><code class="function">gtk_toolbar_new()</code></a>.
@@ -244,11 +244,11 @@ Creating a context menu for the toolbar can be done by connecting to
244
244
  the <a class="link" href="GtkToolbar.html#GtkToolbar-popup-context-menu" title='The "popup-context-menu" signal'><span class="type">"popup-context-menu"</span></a> signal.
245
245
  </p>
246
246
  </div>
247
- <div class="refsect1">
247
+ <div class="refsect1" title="Details">
248
248
  <a name="GtkToolbar.details"></a><h2>Details</h2>
249
- <div class="refsect2">
250
- <a name="GtkToolbar-struct"></a><h3>struct GtkToolbar</h3>
251
- <pre class="programlisting">struct GtkToolbar {
249
+ <div class="refsect2" title="GtkToolbar">
250
+ <a name="GtkToolbar-struct"></a><h3>GtkToolbar</h3>
251
+ <pre class="programlisting">typedef struct {
252
252
  gint GSEAL (num_children);
253
253
  GList *GSEAL (children);
254
254
  GtkOrientation GSEAL (orientation);
@@ -260,7 +260,7 @@ the <a class="link" href="GtkToolbar.html#GtkToolbar-popup-context-menu" title='
260
260
  #else
261
261
  gpointer GSEAL (_tooltips);
262
262
  #endif
263
- };
263
+ } GtkToolbar;
264
264
  </pre>
265
265
  <p>
266
266
  The <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> struct only contains private data and should only be
@@ -268,7 +268,7 @@ accessed through the function described below.
268
268
  </p>
269
269
  </div>
270
270
  <hr>
271
- <div class="refsect2">
271
+ <div class="refsect2" title="enum GtkToolbarChildType">
272
272
  <a name="GtkToolbarChildType"></a><h3>enum GtkToolbarChildType</h3>
273
273
  <pre class="programlisting">typedef enum
274
274
  {
@@ -279,7 +279,7 @@ accessed through the function described below.
279
279
  GTK_TOOLBAR_CHILD_WIDGET
280
280
  } GtkToolbarChildType;
281
281
  </pre>
282
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
282
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
283
283
  <h3 class="title">Warning</h3>
284
284
  <p><code class="literal">GtkToolbarChildType</code> is deprecated and should not be used in newly-written code.</p>
285
285
  </div>
@@ -319,7 +319,7 @@ to a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type
319
319
  </table></div>
320
320
  </div>
321
321
  <hr>
322
- <div class="refsect2">
322
+ <div class="refsect2" title="enum GtkToolbarSpaceStyle">
323
323
  <a name="GtkToolbarSpaceStyle"></a><h3>enum GtkToolbarSpaceStyle</h3>
324
324
  <pre class="programlisting">typedef enum
325
325
  {
@@ -331,16 +331,16 @@ to a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type
331
331
  </p>
332
332
  </div>
333
333
  <hr>
334
- <div class="refsect2">
335
- <a name="GtkToolbarChild"></a><h3>struct GtkToolbarChild</h3>
336
- <pre class="programlisting">struct GtkToolbarChild {
334
+ <div class="refsect2" title="GtkToolbarChild">
335
+ <a name="GtkToolbarChild"></a><h3>GtkToolbarChild</h3>
336
+ <pre class="programlisting">typedef struct {
337
337
  GtkToolbarChildType type;
338
338
  GtkWidget *widget;
339
339
  GtkWidget *icon;
340
340
  GtkWidget *label;
341
- };
341
+ } GtkToolbarChild;
342
342
  </pre>
343
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
343
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
344
344
  <h3 class="title">Warning</h3>
345
345
  <p><code class="literal">GtkToolbarChild</code> is deprecated and should not be used in newly-written code.</p>
346
346
  </div>
@@ -348,7 +348,7 @@ to a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type
348
348
  </p>
349
349
  </div>
350
350
  <hr>
351
- <div class="refsect2">
351
+ <div class="refsect2" title="gtk_toolbar_new ()">
352
352
  <a name="gtk-toolbar-new"></a><h3>gtk_toolbar_new ()</h3>
353
353
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_toolbar_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
354
354
  <p>
@@ -358,12 +358,13 @@ Creates a new toolbar.
358
358
  <col align="left" valign="top">
359
359
  <tbody><tr>
360
360
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
361
- <td>the newly-created toolbar.</td>
361
+ <td> the newly-created toolbar.
362
+ </td>
362
363
  </tr></tbody>
363
364
  </table></div>
364
365
  </div>
365
366
  <hr>
366
- <div class="refsect2">
367
+ <div class="refsect2" title="gtk_toolbar_insert ()">
367
368
  <a name="gtk-toolbar-insert"></a><h3>gtk_toolbar_insert ()</h3>
368
369
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_insert (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
369
370
  <em class="parameter"><code><a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> *item</code></em>,
@@ -388,14 +389,15 @@ negative, the item is appended to the end of the toolbar.
388
389
  </tr>
389
390
  <tr>
390
391
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
391
- <td>the position of the new item</td>
392
+ <td>the position of the new item
393
+ </td>
392
394
  </tr>
393
395
  </tbody>
394
396
  </table></div>
395
397
  <p class="since">Since 2.4</p>
396
398
  </div>
397
399
  <hr>
398
- <div class="refsect2">
400
+ <div class="refsect2" title="gtk_toolbar_get_item_index ()">
399
401
  <a name="gtk-toolbar-get-item-index"></a><h3>gtk_toolbar_get_item_index ()</h3>
400
402
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_toolbar_get_item_index (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
401
403
  <em class="parameter"><code><a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> *item</code></em>);</pre>
@@ -418,14 +420,16 @@ It is an error if <em class="parameter"><code>item</code></em> is not a child of
418
420
  </tr>
419
421
  <tr>
420
422
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
421
- <td>the position of item on the toolbar.</td>
423
+ <td> the position of item on the toolbar.
424
+
425
+ </td>
422
426
  </tr>
423
427
  </tbody>
424
428
  </table></div>
425
429
  <p class="since">Since 2.4</p>
426
430
  </div>
427
431
  <hr>
428
- <div class="refsect2">
432
+ <div class="refsect2" title="gtk_toolbar_get_n_items ()">
429
433
  <a name="gtk-toolbar-get-n-items"></a><h3>gtk_toolbar_get_n_items ()</h3>
430
434
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_toolbar_get_n_items (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
431
435
  <p>
@@ -441,14 +445,16 @@ Returns the number of items on the toolbar.
441
445
  </tr>
442
446
  <tr>
443
447
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
444
- <td>the number of items on the toolbar</td>
448
+ <td> the number of items on the toolbar
449
+
450
+ </td>
445
451
  </tr>
446
452
  </tbody>
447
453
  </table></div>
448
454
  <p class="since">Since 2.4</p>
449
455
  </div>
450
456
  <hr>
451
- <div class="refsect2">
457
+ <div class="refsect2" title="gtk_toolbar_get_nth_item ()">
452
458
  <a name="gtk-toolbar-get-nth-item"></a><h3>gtk_toolbar_get_nth_item ()</h3>
453
459
  <pre class="programlisting"><a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="returnvalue">GtkToolItem</span></a> * gtk_toolbar_get_nth_item (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
454
460
  <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>
@@ -466,12 +472,14 @@ toolbar does not contain an <em class="parameter"><code>n</code></em>'th item.
466
472
  </tr>
467
473
  <tr>
468
474
  <td><p><span class="term"><em class="parameter"><code>n</code></em> :</span></p></td>
469
- <td>A position on the toolbar</td>
475
+ <td>A position on the toolbar
476
+ </td>
470
477
  </tr>
471
478
  <tr>
472
479
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
473
- <td>The <em class="parameter"><code>n</code></em>'th <a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> on <em class="parameter"><code>toolbar</code></em>,
474
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there isn't an <em class="parameter"><code>n</code></em>'th item. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
480
+ <td> The <em class="parameter"><code>n</code></em>'th <a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> on <em class="parameter"><code>toolbar</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there
481
+ isn't an <em class="parameter"><code>n</code></em>'th item.
482
+
475
483
  </td>
476
484
  </tr>
477
485
  </tbody>
@@ -479,7 +487,7 @@ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht
479
487
  <p class="since">Since 2.4</p>
480
488
  </div>
481
489
  <hr>
482
- <div class="refsect2">
490
+ <div class="refsect2" title="gtk_toolbar_get_drop_index ()">
483
491
  <a name="gtk-toolbar-get-drop-index"></a><h3>gtk_toolbar_get_drop_index ()</h3>
484
492
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_toolbar_get_drop_index (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
485
493
  <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>,
@@ -503,22 +511,26 @@ inserted.
503
511
  </tr>
504
512
  <tr>
505
513
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
506
- <td>x coordinate of a point on the toolbar</td>
514
+ <td>x coordinate of a point on the toolbar
515
+ </td>
507
516
  </tr>
508
517
  <tr>
509
518
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
510
- <td>y coordinate of a point on the toolbar</td>
519
+ <td>y coordinate of a point on the toolbar
520
+ </td>
511
521
  </tr>
512
522
  <tr>
513
523
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
514
- <td>The position corresponding to the point (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>) on the toolbar.</td>
524
+ <td> The position corresponding to the point (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>) on the toolbar.
525
+
526
+ </td>
515
527
  </tr>
516
528
  </tbody>
517
529
  </table></div>
518
530
  <p class="since">Since 2.4</p>
519
531
  </div>
520
532
  <hr>
521
- <div class="refsect2">
533
+ <div class="refsect2" title="gtk_toolbar_set_drop_highlight_item ()">
522
534
  <a name="gtk-toolbar-set-drop-highlight-item"></a><h3>gtk_toolbar_set_drop_highlight_item ()</h3>
523
535
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_set_drop_highlight_item (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
524
536
  <em class="parameter"><code><a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> *tool_item</code></em>,
@@ -545,7 +557,7 @@ toolbar.
545
557
  </tr>
546
558
  <tr>
547
559
  <td><p><span class="term"><em class="parameter"><code>tool_item</code></em> :</span></p></td>
548
- <td>a <a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to turn of highlighting. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
560
+ <td> a <a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to turn of highlighting. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
549
561
  </td>
550
562
  </tr>
551
563
  <tr>
@@ -558,7 +570,7 @@ toolbar.
558
570
  <p class="since">Since 2.4</p>
559
571
  </div>
560
572
  <hr>
561
- <div class="refsect2">
573
+ <div class="refsect2" title="gtk_toolbar_set_show_arrow ()">
562
574
  <a name="gtk-toolbar-set-show-arrow"></a><h3>gtk_toolbar_set_show_arrow ()</h3>
563
575
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_set_show_arrow (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
564
576
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show_arrow</code></em>);</pre>
@@ -578,18 +590,19 @@ overflow menu.
578
590
  </tr>
579
591
  <tr>
580
592
  <td><p><span class="term"><em class="parameter"><code>show_arrow</code></em> :</span></p></td>
581
- <td>Whether to show an overflow menu</td>
593
+ <td>Whether to show an overflow menu
594
+ </td>
582
595
  </tr>
583
596
  </tbody>
584
597
  </table></div>
585
598
  <p class="since">Since 2.4</p>
586
599
  </div>
587
600
  <hr>
588
- <div class="refsect2">
601
+ <div class="refsect2" title="gtk_toolbar_set_orientation ()">
589
602
  <a name="gtk-toolbar-set-orientation"></a><h3>gtk_toolbar_set_orientation ()</h3>
590
603
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_set_orientation (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
591
604
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
592
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
605
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
593
606
  <h3 class="title">Warning</h3>
594
607
  <p><code class="literal">gtk_toolbar_set_orientation</code> has been deprecated since version 2.16 and should not be used in newly-written code. Use <a class="link" href="gtk-Orientable.html#gtk-orientable-set-orientation" title="gtk_orientable_set_orientation ()"><code class="function">gtk_orientable_set_orientation()</code></a> instead.</p>
595
608
  </div>
@@ -601,21 +614,23 @@ Sets whether a toolbar should appear horizontally or vertically.
601
614
  <tbody>
602
615
  <tr>
603
616
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
604
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
617
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
618
+ </td>
605
619
  </tr>
606
620
  <tr>
607
621
  <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
608
- <td>a new <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a>.</td>
622
+ <td>a new <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a>.
623
+ </td>
609
624
  </tr>
610
625
  </tbody>
611
626
  </table></div>
612
627
  </div>
613
628
  <hr>
614
- <div class="refsect2">
629
+ <div class="refsect2" title="gtk_toolbar_set_tooltips ()">
615
630
  <a name="gtk-toolbar-set-tooltips"></a><h3>gtk_toolbar_set_tooltips ()</h3>
616
631
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_set_tooltips (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
617
632
  <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>
618
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
633
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
619
634
  <h3 class="title">Warning</h3>
620
635
  <p><code class="literal">gtk_toolbar_set_tooltips</code> has been deprecated since version 2.14 and should not be used in newly-written code. The toolkit-wide <a class="link" href="GtkSettings.html#GtkSettings--gtk-enable-tooltips" title='The "gtk-enable-tooltips" property'><span class="type">"gtk-enable-tooltips"</span></a> property
621
636
  is now used instead.</p>
@@ -628,17 +643,19 @@ Sets if the tooltips of a toolbar should be active or not.
628
643
  <tbody>
629
644
  <tr>
630
645
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
631
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
646
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
647
+ </td>
632
648
  </tr>
633
649
  <tr>
634
650
  <td><p><span class="term"><em class="parameter"><code>enable</code></em> :</span></p></td>
635
- <td>set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to disable the tooltips, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable them.</td>
651
+ <td>set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to disable the tooltips, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable them.
652
+ </td>
636
653
  </tr>
637
654
  </tbody>
638
655
  </table></div>
639
656
  </div>
640
657
  <hr>
641
- <div class="refsect2">
658
+ <div class="refsect2" title="gtk_toolbar_unset_icon_size ()">
642
659
  <a name="gtk-toolbar-unset-icon-size"></a><h3>gtk_toolbar_unset_icon_size ()</h3>
643
660
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_unset_icon_size (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
644
661
  <p>
@@ -655,7 +672,7 @@ user preferences will be used to determine the icon size.
655
672
  </table></div>
656
673
  </div>
657
674
  <hr>
658
- <div class="refsect2">
675
+ <div class="refsect2" title="gtk_toolbar_get_show_arrow ()">
659
676
  <a name="gtk-toolbar-get-show-arrow"></a><h3>gtk_toolbar_get_show_arrow ()</h3>
660
677
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_toolbar_get_show_arrow (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
661
678
  <p>
@@ -672,18 +689,19 @@ See <a class="link" href="GtkToolbar.html#gtk-toolbar-set-show-arrow" title="gtk
672
689
  </tr>
673
690
  <tr>
674
691
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
675
- <td>
676
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the toolbar has an overflow menu.</td>
692
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the toolbar has an overflow menu.
693
+
694
+ </td>
677
695
  </tr>
678
696
  </tbody>
679
697
  </table></div>
680
698
  <p class="since">Since 2.4</p>
681
699
  </div>
682
700
  <hr>
683
- <div class="refsect2">
701
+ <div class="refsect2" title="gtk_toolbar_get_orientation ()">
684
702
  <a name="gtk-toolbar-get-orientation"></a><h3>gtk_toolbar_get_orientation ()</h3>
685
703
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> gtk_toolbar_get_orientation (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
686
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
704
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
687
705
  <h3 class="title">Warning</h3>
688
706
  <p><code class="literal">gtk_toolbar_get_orientation</code> has been deprecated since version 2.16 and should not be used in newly-written code. Use <a class="link" href="gtk-Orientable.html#gtk-orientable-get-orientation" title="gtk_orientable_get_orientation ()"><code class="function">gtk_orientable_get_orientation()</code></a> instead.</p>
689
707
  </div>
@@ -701,13 +719,15 @@ Retrieves the current orientation of the toolbar. See
701
719
  </tr>
702
720
  <tr>
703
721
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
704
- <td>the orientation</td>
722
+ <td> the orientation
723
+
724
+ </td>
705
725
  </tr>
706
726
  </tbody>
707
727
  </table></div>
708
728
  </div>
709
729
  <hr>
710
- <div class="refsect2">
730
+ <div class="refsect2" title="gtk_toolbar_get_style ()">
711
731
  <a name="gtk-toolbar-get-style"></a><h3>gtk_toolbar_get_style ()</h3>
712
732
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="returnvalue">GtkToolbarStyle</span></a> gtk_toolbar_get_style (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
713
733
  <p>
@@ -724,14 +744,14 @@ Retrieves whether the toolbar has text, icons, or both . See
724
744
  </tr>
725
745
  <tr>
726
746
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
727
- <td>the current style of <em class="parameter"><code>toolbar</code></em>
747
+ <td> the current style of <em class="parameter"><code>toolbar</code></em>
728
748
  </td>
729
749
  </tr>
730
750
  </tbody>
731
751
  </table></div>
732
752
  </div>
733
753
  <hr>
734
- <div class="refsect2">
754
+ <div class="refsect2" title="gtk_toolbar_get_icon_size ()">
735
755
  <a name="gtk-toolbar-get-icon-size"></a><h3>gtk_toolbar_get_icon_size ()</h3>
736
756
  <pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="returnvalue">GtkIconSize</span></a> gtk_toolbar_get_icon_size (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
737
757
  <p>
@@ -747,18 +767,18 @@ Retrieves the icon size for the toolbar. See <a class="link" href="GtkToolbar.ht
747
767
  </tr>
748
768
  <tr>
749
769
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
750
- <td>the current icon size for the icons on
751
- the toolbar. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
770
+ <td> the current icon size for the icons on
771
+ the toolbar. <span class="annotation">[type int]</span>
752
772
  </td>
753
773
  </tr>
754
774
  </tbody>
755
775
  </table></div>
756
776
  </div>
757
777
  <hr>
758
- <div class="refsect2">
778
+ <div class="refsect2" title="gtk_toolbar_get_tooltips ()">
759
779
  <a name="gtk-toolbar-get-tooltips"></a><h3>gtk_toolbar_get_tooltips ()</h3>
760
780
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_toolbar_get_tooltips (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
761
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
781
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
762
782
  <h3 class="title">Warning</h3>
763
783
  <p><code class="literal">gtk_toolbar_get_tooltips</code> has been deprecated since version 2.14 and should not be used in newly-written code. The toolkit-wide <a class="link" href="GtkSettings.html#GtkSettings--gtk-enable-tooltips" title='The "gtk-enable-tooltips" property'><span class="type">"gtk-enable-tooltips"</span></a> property
764
784
  is now used instead.</p>
@@ -777,14 +797,15 @@ Retrieves whether tooltips are enabled. See
777
797
  </tr>
778
798
  <tr>
779
799
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
780
- <td>
781
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if tooltips are enabled</td>
800
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if tooltips are enabled
801
+
802
+ </td>
782
803
  </tr>
783
804
  </tbody>
784
805
  </table></div>
785
806
  </div>
786
807
  <hr>
787
- <div class="refsect2">
808
+ <div class="refsect2" title="gtk_toolbar_get_relief_style ()">
788
809
  <a name="gtk-toolbar-get-relief-style"></a><h3>gtk_toolbar_get_relief_style ()</h3>
789
810
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="returnvalue">GtkReliefStyle</span></a> gtk_toolbar_get_relief_style (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
790
811
  <p>
@@ -801,23 +822,25 @@ Returns the relief style of buttons on <em class="parameter"><code>toolbar</code
801
822
  </tr>
802
823
  <tr>
803
824
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
804
- <td>The relief style of buttons on <em class="parameter"><code>toolbar</code></em>.</td>
825
+ <td> The relief style of buttons on <em class="parameter"><code>toolbar</code></em>.
826
+
827
+ </td>
805
828
  </tr>
806
829
  </tbody>
807
830
  </table></div>
808
831
  <p class="since">Since 2.4</p>
809
832
  </div>
810
833
  <hr>
811
- <div class="refsect2">
834
+ <div class="refsect2" title="gtk_toolbar_append_item ()">
812
835
  <a name="gtk-toolbar-append-item"></a><h3>gtk_toolbar_append_item ()</h3>
813
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_toolbar_append_item (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
836
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_toolbar_append_item (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
814
837
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
815
838
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
816
839
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
817
840
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
818
841
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
819
842
  <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>
820
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
843
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
821
844
  <h3 class="title">Warning</h3>
822
845
  <p><code class="literal">gtk_toolbar_append_item</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
823
846
  </div>
@@ -834,50 +857,59 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-
834
857
  <tbody>
835
858
  <tr>
836
859
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
837
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
860
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
861
+ </td>
838
862
  </tr>
839
863
  <tr>
840
864
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
841
- <td>give your toolbar button a label.</td>
865
+ <td>give your toolbar button a label.
866
+ </td>
842
867
  </tr>
843
868
  <tr>
844
869
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
845
- <td>a string that appears when the user holds the mouse over this item.</td>
870
+ <td>a string that appears when the user holds the mouse over this item.
871
+ </td>
846
872
  </tr>
847
873
  <tr>
848
874
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
849
- <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a>.</td>
875
+ <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a>.
876
+ </td>
850
877
  </tr>
851
878
  <tr>
852
879
  <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
853
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that should be used as the button's icon.</td>
880
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that should be used as the button's icon.
881
+ </td>
854
882
  </tr>
855
883
  <tr>
856
884
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
857
- <td>the function to be executed when the button is pressed.</td>
885
+ <td>the function to be executed when the button is pressed.
886
+ </td>
858
887
  </tr>
859
888
  <tr>
860
889
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
861
- <td>a pointer to any data you wish to be passed to the callback.</td>
890
+ <td>a pointer to any data you wish to be passed to the callback.
891
+ </td>
862
892
  </tr>
863
893
  <tr>
864
894
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
865
- <td>the new toolbar item as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
895
+ <td> the new toolbar item as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.
896
+
897
+ </td>
866
898
  </tr>
867
899
  </tbody>
868
900
  </table></div>
869
901
  </div>
870
902
  <hr>
871
- <div class="refsect2">
903
+ <div class="refsect2" title="gtk_toolbar_prepend_item ()">
872
904
  <a name="gtk-toolbar-prepend-item"></a><h3>gtk_toolbar_prepend_item ()</h3>
873
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_toolbar_prepend_item (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
905
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_toolbar_prepend_item (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
874
906
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
875
907
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
876
908
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
877
909
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
878
910
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
879
911
  <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>
880
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
912
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
881
913
  <h3 class="title">Warning</h3>
882
914
  <p><code class="literal">gtk_toolbar_prepend_item</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
883
915
  </div>
@@ -893,43 +925,52 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-
893
925
  <tbody>
894
926
  <tr>
895
927
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
896
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
928
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
929
+ </td>
897
930
  </tr>
898
931
  <tr>
899
932
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
900
- <td>give your toolbar button a label.</td>
933
+ <td>give your toolbar button a label.
934
+ </td>
901
935
  </tr>
902
936
  <tr>
903
937
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
904
- <td>a string that appears when the user holds the mouse over this item.</td>
938
+ <td>a string that appears when the user holds the mouse over this item.
939
+ </td>
905
940
  </tr>
906
941
  <tr>
907
942
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
908
- <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a>.</td>
943
+ <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a>.
944
+ </td>
909
945
  </tr>
910
946
  <tr>
911
947
  <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
912
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that should be used as the button's icon.</td>
948
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that should be used as the button's icon.
949
+ </td>
913
950
  </tr>
914
951
  <tr>
915
952
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
916
- <td>the function to be executed when the button is pressed.</td>
953
+ <td>the function to be executed when the button is pressed.
954
+ </td>
917
955
  </tr>
918
956
  <tr>
919
957
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
920
- <td>a pointer to any data you wish to be passed to the callback.</td>
958
+ <td>a pointer to any data you wish to be passed to the callback.
959
+ </td>
921
960
  </tr>
922
961
  <tr>
923
962
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
924
- <td>the new toolbar item as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
963
+ <td> the new toolbar item as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.
964
+
965
+ </td>
925
966
  </tr>
926
967
  </tbody>
927
968
  </table></div>
928
969
  </div>
929
970
  <hr>
930
- <div class="refsect2">
971
+ <div class="refsect2" title="gtk_toolbar_insert_item ()">
931
972
  <a name="gtk-toolbar-insert-item"></a><h3>gtk_toolbar_insert_item ()</h3>
932
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_toolbar_insert_item (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
973
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_toolbar_insert_item (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
933
974
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
934
975
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
935
976
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
@@ -937,7 +978,7 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-
937
978
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
938
979
  <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>,
939
980
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
940
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
981
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
941
982
  <h3 class="title">Warning</h3>
942
983
  <p><code class="literal">gtk_toolbar_insert_item</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
943
984
  </div>
@@ -954,48 +995,58 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-
954
995
  <tbody>
955
996
  <tr>
956
997
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
957
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
998
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
999
+ </td>
958
1000
  </tr>
959
1001
  <tr>
960
1002
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
961
- <td>give your toolbar button a label.</td>
1003
+ <td>give your toolbar button a label.
1004
+ </td>
962
1005
  </tr>
963
1006
  <tr>
964
1007
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
965
- <td>a string that appears when the user holds the mouse over this item.</td>
1008
+ <td>a string that appears when the user holds the mouse over this item.
1009
+ </td>
966
1010
  </tr>
967
1011
  <tr>
968
1012
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
969
- <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a>.</td>
1013
+ <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a>.
1014
+ </td>
970
1015
  </tr>
971
1016
  <tr>
972
1017
  <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
973
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that should be used as the button's icon.</td>
1018
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that should be used as the button's icon.
1019
+ </td>
974
1020
  </tr>
975
1021
  <tr>
976
1022
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
977
- <td>the function to be executed when the button is pressed.</td>
1023
+ <td>the function to be executed when the button is pressed.
1024
+ </td>
978
1025
  </tr>
979
1026
  <tr>
980
1027
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
981
- <td>a pointer to any data you wish to be passed to the callback.</td>
1028
+ <td>a pointer to any data you wish to be passed to the callback.
1029
+ </td>
982
1030
  </tr>
983
1031
  <tr>
984
1032
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
985
- <td>the number of widgets to insert this item after.</td>
1033
+ <td>the number of widgets to insert this item after.
1034
+ </td>
986
1035
  </tr>
987
1036
  <tr>
988
1037
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
989
- <td>the new toolbar item as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
1038
+ <td> the new toolbar item as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.
1039
+
1040
+ </td>
990
1041
  </tr>
991
1042
  </tbody>
992
1043
  </table></div>
993
1044
  </div>
994
1045
  <hr>
995
- <div class="refsect2">
1046
+ <div class="refsect2" title="gtk_toolbar_append_space ()">
996
1047
  <a name="gtk-toolbar-append-space"></a><h3>gtk_toolbar_append_space ()</h3>
997
1048
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_append_space (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
998
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1049
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
999
1050
  <h3 class="title">Warning</h3>
1000
1051
  <p><code class="literal">gtk_toolbar_append_space</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1001
1052
  </div>
@@ -1006,15 +1057,16 @@ Adds a new space to the end of the toolbar.
1006
1057
  <col align="left" valign="top">
1007
1058
  <tbody><tr>
1008
1059
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1009
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1060
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1061
+ </td>
1010
1062
  </tr></tbody>
1011
1063
  </table></div>
1012
1064
  </div>
1013
1065
  <hr>
1014
- <div class="refsect2">
1066
+ <div class="refsect2" title="gtk_toolbar_prepend_space ()">
1015
1067
  <a name="gtk-toolbar-prepend-space"></a><h3>gtk_toolbar_prepend_space ()</h3>
1016
1068
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_prepend_space (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
1017
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1069
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1018
1070
  <h3 class="title">Warning</h3>
1019
1071
  <p><code class="literal">gtk_toolbar_prepend_space</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1020
1072
  </div>
@@ -1025,16 +1077,17 @@ Adds a new space to the beginning of the toolbar.
1025
1077
  <col align="left" valign="top">
1026
1078
  <tbody><tr>
1027
1079
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1028
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1080
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1081
+ </td>
1029
1082
  </tr></tbody>
1030
1083
  </table></div>
1031
1084
  </div>
1032
1085
  <hr>
1033
- <div class="refsect2">
1086
+ <div class="refsect2" title="gtk_toolbar_insert_space ()">
1034
1087
  <a name="gtk-toolbar-insert-space"></a><h3>gtk_toolbar_insert_space ()</h3>
1035
1088
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_insert_space (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1036
1089
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
1037
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1090
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1038
1091
  <h3 class="title">Warning</h3>
1039
1092
  <p><code class="literal">gtk_toolbar_insert_space</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1040
1093
  </div>
@@ -1051,15 +1104,16 @@ Inserts a new space in the toolbar at the specified position.
1051
1104
  </tr>
1052
1105
  <tr>
1053
1106
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
1054
- <td>the number of widgets after which a space should be inserted.</td>
1107
+ <td>the number of widgets after which a space should be inserted.
1108
+ </td>
1055
1109
  </tr>
1056
1110
  </tbody>
1057
1111
  </table></div>
1058
1112
  </div>
1059
1113
  <hr>
1060
- <div class="refsect2">
1114
+ <div class="refsect2" title="gtk_toolbar_append_element ()">
1061
1115
  <a name="gtk-toolbar-append-element"></a><h3>gtk_toolbar_append_element ()</h3>
1062
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_toolbar_append_element (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1116
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_toolbar_append_element (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1063
1117
  <em class="parameter"><code><a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> type</code></em>,
1064
1118
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1065
1119
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
@@ -1068,7 +1122,7 @@ Inserts a new space in the toolbar at the specified position.
1068
1122
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
1069
1123
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
1070
1124
  <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>
1071
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1125
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1072
1126
  <h3 class="title">Warning</h3>
1073
1127
  <p><code class="literal">gtk_toolbar_append_element</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1074
1128
  </div>
@@ -1085,61 +1139,67 @@ be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht
1085
1139
  <em class="parameter"><code>callback</code></em> must be a pointer to a function taking a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> and a gpointer as
1086
1140
  arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#G-CALLBACK:CAPS"><code class="function">G_CALLBACK()</code></a> to cast the function to <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a>.
1087
1141
  </p>
1088
- <p>
1089
- </p>
1090
- <p>
1091
- </p>
1092
1142
  <div class="variablelist"><table border="0">
1093
1143
  <col align="left" valign="top">
1094
1144
  <tbody>
1095
1145
  <tr>
1096
1146
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1097
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1147
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1148
+ </td>
1098
1149
  </tr>
1099
1150
  <tr>
1100
1151
  <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
1101
- <td>a value of type <a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> that determines what <em class="parameter"><code>widget</code></em> will be.</td>
1152
+ <td>a value of type <a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> that determines what <em class="parameter"><code>widget</code></em> will be.
1153
+ </td>
1102
1154
  </tr>
1103
1155
  <tr>
1104
1156
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1105
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</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>
1157
+ <td> a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</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>
1106
1158
  </td>
1107
1159
  </tr>
1108
1160
  <tr>
1109
1161
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
1110
- <td>the element's label.</td>
1162
+ <td>the element's label.
1163
+ </td>
1111
1164
  </tr>
1112
1165
  <tr>
1113
1166
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
1114
- <td>the element's tooltip.</td>
1167
+ <td>the element's tooltip.
1168
+ </td>
1115
1169
  </tr>
1116
1170
  <tr>
1117
1171
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
1118
- <td>used for context-sensitive help about this toolbar element.</td>
1172
+ <td>used for context-sensitive help about this toolbar element.
1173
+ </td>
1119
1174
  </tr>
1120
1175
  <tr>
1121
1176
  <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
1122
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that provides pictorial representation of the element's function.</td>
1177
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that provides pictorial representation of the element's function.
1178
+ </td>
1123
1179
  </tr>
1124
1180
  <tr>
1125
1181
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1126
- <td>the function to be executed when the button is pressed.</td>
1182
+ <td>the function to be executed when the button is pressed.
1183
+ </td>
1127
1184
  </tr>
1128
1185
  <tr>
1129
1186
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1130
- <td>any data you wish to pass to the callback.</td>
1187
+ <td>any data you wish to pass to the callback.
1188
+ </td>
1131
1189
  </tr>
1132
1190
  <tr>
1133
1191
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1134
- <td>the new toolbar element as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
1192
+ <td> the new toolbar element as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.
1193
+
1194
+ </td>
1135
1195
  </tr>
1136
1196
  </tbody>
1137
1197
  </table></div>
1138
1198
  </div>
1139
1199
  <hr>
1140
- <div class="refsect2">
1200
+ <div class="refsect2" title="gtk_toolbar_prepend_element ()">
1141
1201
  <a name="gtk-toolbar-prepend-element"></a><h3>gtk_toolbar_prepend_element ()</h3>
1142
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_toolbar_prepend_element (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1202
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_toolbar_prepend_element (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1143
1203
  <em class="parameter"><code><a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> type</code></em>,
1144
1204
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1145
1205
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
@@ -1148,7 +1208,7 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-
1148
1208
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
1149
1209
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
1150
1210
  <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>
1151
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1211
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1152
1212
  <h3 class="title">Warning</h3>
1153
1213
  <p><code class="literal">gtk_toolbar_prepend_element</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1154
1214
  </div>
@@ -1170,52 +1230,62 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-
1170
1230
  <tbody>
1171
1231
  <tr>
1172
1232
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1173
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1233
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1234
+ </td>
1174
1235
  </tr>
1175
1236
  <tr>
1176
1237
  <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
1177
- <td>a value of type <a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> that determines what <em class="parameter"><code>widget</code></em> will be.</td>
1238
+ <td>a value of type <a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> that determines what <em class="parameter"><code>widget</code></em> will be.
1239
+ </td>
1178
1240
  </tr>
1179
1241
  <tr>
1180
1242
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1181
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</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>
1243
+ <td> a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</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>
1182
1244
  </td>
1183
1245
  </tr>
1184
1246
  <tr>
1185
1247
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
1186
- <td>the element's label.</td>
1248
+ <td>the element's label.
1249
+ </td>
1187
1250
  </tr>
1188
1251
  <tr>
1189
1252
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
1190
- <td>the element's tooltip.</td>
1253
+ <td>the element's tooltip.
1254
+ </td>
1191
1255
  </tr>
1192
1256
  <tr>
1193
1257
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
1194
- <td>used for context-sensitive help about this toolbar element.</td>
1258
+ <td>used for context-sensitive help about this toolbar element.
1259
+ </td>
1195
1260
  </tr>
1196
1261
  <tr>
1197
1262
  <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
1198
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that provides pictorial representation of the element's function.</td>
1263
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that provides pictorial representation of the element's function.
1264
+ </td>
1199
1265
  </tr>
1200
1266
  <tr>
1201
1267
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1202
- <td>the function to be executed when the button is pressed.</td>
1268
+ <td>the function to be executed when the button is pressed.
1269
+ </td>
1203
1270
  </tr>
1204
1271
  <tr>
1205
1272
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1206
- <td>any data you wish to pass to the callback.</td>
1273
+ <td>any data you wish to pass to the callback.
1274
+ </td>
1207
1275
  </tr>
1208
1276
  <tr>
1209
1277
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1210
- <td>the new toolbar element as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
1278
+ <td> the new toolbar element as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.
1279
+
1280
+ </td>
1211
1281
  </tr>
1212
1282
  </tbody>
1213
1283
  </table></div>
1214
1284
  </div>
1215
1285
  <hr>
1216
- <div class="refsect2">
1286
+ <div class="refsect2" title="gtk_toolbar_insert_element ()">
1217
1287
  <a name="gtk-toolbar-insert-element"></a><h3>gtk_toolbar_insert_element ()</h3>
1218
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_toolbar_insert_element (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1288
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_toolbar_insert_element (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1219
1289
  <em class="parameter"><code><a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> type</code></em>,
1220
1290
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1221
1291
  <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
@@ -1225,7 +1295,7 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-
1225
1295
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
1226
1296
  <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>,
1227
1297
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
1228
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1298
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1229
1299
  <h3 class="title">Warning</h3>
1230
1300
  <p><code class="literal">gtk_toolbar_insert_element</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1231
1301
  </div>
@@ -1247,61 +1317,72 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-
1247
1317
  <tbody>
1248
1318
  <tr>
1249
1319
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1250
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1320
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1321
+ </td>
1251
1322
  </tr>
1252
1323
  <tr>
1253
1324
  <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
1254
1325
  <td>a value of type <a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> that determines what <em class="parameter"><code>widget</code></em>
1255
- will be.</td>
1326
+ will be.
1327
+ </td>
1256
1328
  </tr>
1257
1329
  <tr>
1258
1330
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1259
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</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>
1331
+ <td> a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</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>
1260
1332
  </td>
1261
1333
  </tr>
1262
1334
  <tr>
1263
1335
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
1264
- <td>the element's label.</td>
1336
+ <td>the element's label.
1337
+ </td>
1265
1338
  </tr>
1266
1339
  <tr>
1267
1340
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
1268
- <td>the element's tooltip.</td>
1341
+ <td>the element's tooltip.
1342
+ </td>
1269
1343
  </tr>
1270
1344
  <tr>
1271
1345
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
1272
- <td>used for context-sensitive help about this toolbar element.</td>
1346
+ <td>used for context-sensitive help about this toolbar element.
1347
+ </td>
1273
1348
  </tr>
1274
1349
  <tr>
1275
1350
  <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
1276
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that provides pictorial representation of the element's function.</td>
1351
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that provides pictorial representation of the element's function.
1352
+ </td>
1277
1353
  </tr>
1278
1354
  <tr>
1279
1355
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1280
- <td>the function to be executed when the button is pressed.</td>
1356
+ <td>the function to be executed when the button is pressed.
1357
+ </td>
1281
1358
  </tr>
1282
1359
  <tr>
1283
1360
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1284
- <td>any data you wish to pass to the callback.</td>
1361
+ <td>any data you wish to pass to the callback.
1362
+ </td>
1285
1363
  </tr>
1286
1364
  <tr>
1287
1365
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
1288
- <td>the number of widgets to insert this element after.</td>
1366
+ <td>the number of widgets to insert this element after.
1367
+ </td>
1289
1368
  </tr>
1290
1369
  <tr>
1291
1370
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1292
- <td>the new toolbar element as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
1371
+ <td> the new toolbar element as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.
1372
+
1373
+ </td>
1293
1374
  </tr>
1294
1375
  </tbody>
1295
1376
  </table></div>
1296
1377
  </div>
1297
1378
  <hr>
1298
- <div class="refsect2">
1379
+ <div class="refsect2" title="gtk_toolbar_append_widget ()">
1299
1380
  <a name="gtk-toolbar-append-widget"></a><h3>gtk_toolbar_append_widget ()</h3>
1300
1381
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_append_widget (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1301
1382
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1302
1383
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
1303
1384
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>);</pre>
1304
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1385
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1305
1386
  <h3 class="title">Warning</h3>
1306
1387
  <p><code class="literal">gtk_toolbar_append_widget</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1307
1388
  </div>
@@ -1313,33 +1394,35 @@ Adds a widget to the end of the given toolbar.
1313
1394
  <tbody>
1314
1395
  <tr>
1315
1396
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1316
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1397
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1398
+ </td>
1317
1399
  </tr>
1318
1400
  <tr>
1319
1401
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1320
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to add to the toolbar.</td>
1402
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to add to the toolbar.
1403
+ </td>
1321
1404
  </tr>
1322
1405
  <tr>
1323
1406
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
1324
- <td>the element's tooltip. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1407
+ <td> the element's tooltip. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1325
1408
  </td>
1326
1409
  </tr>
1327
1410
  <tr>
1328
1411
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
1329
- <td>used for context-sensitive help about this toolbar element. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1412
+ <td> used for context-sensitive help about this toolbar element. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1330
1413
  </td>
1331
1414
  </tr>
1332
1415
  </tbody>
1333
1416
  </table></div>
1334
1417
  </div>
1335
1418
  <hr>
1336
- <div class="refsect2">
1419
+ <div class="refsect2" title="gtk_toolbar_prepend_widget ()">
1337
1420
  <a name="gtk-toolbar-prepend-widget"></a><h3>gtk_toolbar_prepend_widget ()</h3>
1338
1421
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_prepend_widget (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1339
1422
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1340
1423
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
1341
1424
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>);</pre>
1342
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1425
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1343
1426
  <h3 class="title">Warning</h3>
1344
1427
  <p><code class="literal">gtk_toolbar_prepend_widget</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1345
1428
  </div>
@@ -1351,34 +1434,36 @@ Adds a widget to the beginning of the given toolbar.
1351
1434
  <tbody>
1352
1435
  <tr>
1353
1436
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1354
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1437
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1438
+ </td>
1355
1439
  </tr>
1356
1440
  <tr>
1357
1441
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1358
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to add to the toolbar.</td>
1442
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to add to the toolbar.
1443
+ </td>
1359
1444
  </tr>
1360
1445
  <tr>
1361
1446
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
1362
- <td>the element's tooltip. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1447
+ <td> the element's tooltip. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1363
1448
  </td>
1364
1449
  </tr>
1365
1450
  <tr>
1366
1451
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
1367
- <td>used for context-sensitive help about this toolbar element. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1452
+ <td> used for context-sensitive help about this toolbar element. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1368
1453
  </td>
1369
1454
  </tr>
1370
1455
  </tbody>
1371
1456
  </table></div>
1372
1457
  </div>
1373
1458
  <hr>
1374
- <div class="refsect2">
1459
+ <div class="refsect2" title="gtk_toolbar_insert_widget ()">
1375
1460
  <a name="gtk-toolbar-insert-widget"></a><h3>gtk_toolbar_insert_widget ()</h3>
1376
1461
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_insert_widget (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1377
1462
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1378
1463
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
1379
1464
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
1380
1465
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
1381
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1466
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1382
1467
  <h3 class="title">Warning</h3>
1383
1468
  <p><code class="literal">gtk_toolbar_insert_widget</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1384
1469
  </div>
@@ -1390,31 +1475,34 @@ Inserts a widget in the toolbar at the given position.
1390
1475
  <tbody>
1391
1476
  <tr>
1392
1477
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1393
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1478
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1479
+ </td>
1394
1480
  </tr>
1395
1481
  <tr>
1396
1482
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1397
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to add to the toolbar.</td>
1483
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to add to the toolbar.
1484
+ </td>
1398
1485
  </tr>
1399
1486
  <tr>
1400
1487
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
1401
- <td>the element's tooltip. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1488
+ <td> the element's tooltip. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1402
1489
  </td>
1403
1490
  </tr>
1404
1491
  <tr>
1405
1492
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
1406
- <td>used for context-sensitive help about this toolbar element. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1493
+ <td> used for context-sensitive help about this toolbar element. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1407
1494
  </td>
1408
1495
  </tr>
1409
1496
  <tr>
1410
1497
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
1411
- <td>the number of widgets to insert this widget after.</td>
1498
+ <td>the number of widgets to insert this widget after.
1499
+ </td>
1412
1500
  </tr>
1413
1501
  </tbody>
1414
1502
  </table></div>
1415
1503
  </div>
1416
1504
  <hr>
1417
- <div class="refsect2">
1505
+ <div class="refsect2" title="gtk_toolbar_set_style ()">
1418
1506
  <a name="gtk-toolbar-set-style"></a><h3>gtk_toolbar_set_style ()</h3>
1419
1507
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_set_style (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1420
1508
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="type">GtkToolbarStyle</span></a> style</code></em>);</pre>
@@ -1426,26 +1514,28 @@ Alters the view of <em class="parameter"><code>toolbar</code></em> to display ei
1426
1514
  <tbody>
1427
1515
  <tr>
1428
1516
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1429
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1517
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1518
+ </td>
1430
1519
  </tr>
1431
1520
  <tr>
1432
1521
  <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1433
- <td>the new style for <em class="parameter"><code>toolbar</code></em>.</td>
1522
+ <td>the new style for <em class="parameter"><code>toolbar</code></em>.
1523
+ </td>
1434
1524
  </tr>
1435
1525
  </tbody>
1436
1526
  </table></div>
1437
1527
  </div>
1438
1528
  <hr>
1439
- <div class="refsect2">
1529
+ <div class="refsect2" title="gtk_toolbar_insert_stock ()">
1440
1530
  <a name="gtk-toolbar-insert-stock"></a><h3>gtk_toolbar_insert_stock ()</h3>
1441
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_toolbar_insert_stock (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1531
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_toolbar_insert_stock (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1442
1532
  <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> *stock_id</code></em>,
1443
1533
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
1444
1534
  <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
1445
1535
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> callback</code></em>,
1446
1536
  <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>,
1447
1537
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
1448
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1538
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1449
1539
  <h3 class="title">Warning</h3>
1450
1540
  <p><code class="literal">gtk_toolbar_insert_stock</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1451
1541
  </div>
@@ -1468,38 +1558,46 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-
1468
1558
  </tr>
1469
1559
  <tr>
1470
1560
  <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
1471
- <td>The id of the stock item you want to insert</td>
1561
+ <td>The id of the stock item you want to insert
1562
+ </td>
1472
1563
  </tr>
1473
1564
  <tr>
1474
1565
  <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
1475
- <td>The text in the tooltip of the toolbar button</td>
1566
+ <td>The text in the tooltip of the toolbar button
1567
+ </td>
1476
1568
  </tr>
1477
1569
  <tr>
1478
1570
  <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
1479
- <td>The private text of the tooltip</td>
1571
+ <td>The private text of the tooltip
1572
+ </td>
1480
1573
  </tr>
1481
1574
  <tr>
1482
1575
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1483
- <td>The callback called when the toolbar button is clicked.</td>
1576
+ <td>The callback called when the toolbar button is clicked.
1577
+ </td>
1484
1578
  </tr>
1485
1579
  <tr>
1486
1580
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1487
- <td>user data passed to callback</td>
1581
+ <td>user data passed to callback
1582
+ </td>
1488
1583
  </tr>
1489
1584
  <tr>
1490
1585
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
1491
1586
  <td>The position the button shall be inserted at.
1492
- -1 means at the end.</td>
1587
+ -1 means at the end.
1588
+ </td>
1493
1589
  </tr>
1494
1590
  <tr>
1495
1591
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1496
- <td>the inserted widget</td>
1592
+ <td> the inserted widget
1593
+
1594
+ </td>
1497
1595
  </tr>
1498
1596
  </tbody>
1499
1597
  </table></div>
1500
1598
  </div>
1501
1599
  <hr>
1502
- <div class="refsect2">
1600
+ <div class="refsect2" title="gtk_toolbar_set_icon_size ()">
1503
1601
  <a name="gtk-toolbar-set-icon-size"></a><h3>gtk_toolbar_set_icon_size ()</h3>
1504
1602
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_set_icon_size (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1505
1603
  <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> icon_size</code></em>);</pre>
@@ -1524,19 +1622,19 @@ size of icons.
1524
1622
  </tr>
1525
1623
  <tr>
1526
1624
  <td><p><span class="term"><em class="parameter"><code>icon_size</code></em> :</span></p></td>
1527
- <td>The <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> that stock icons in the
1528
- toolbar shall have. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
1625
+ <td> The <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> that stock icons in the
1626
+ toolbar shall have. <span class="annotation">[type int]</span>
1529
1627
  </td>
1530
1628
  </tr>
1531
1629
  </tbody>
1532
1630
  </table></div>
1533
1631
  </div>
1534
1632
  <hr>
1535
- <div class="refsect2">
1633
+ <div class="refsect2" title="gtk_toolbar_remove_space ()">
1536
1634
  <a name="gtk-toolbar-remove-space"></a><h3>gtk_toolbar_remove_space ()</h3>
1537
1635
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_remove_space (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>,
1538
1636
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
1539
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1637
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1540
1638
  <h3 class="title">Warning</h3>
1541
1639
  <p><code class="literal">gtk_toolbar_remove_space</code> has been deprecated since version 2.4 and should not be used in newly-written code. Use <a class="link" href="GtkToolbar.html#gtk-toolbar-insert" title="gtk_toolbar_insert ()"><code class="function">gtk_toolbar_insert()</code></a> instead.</p>
1542
1640
  </div>
@@ -1548,17 +1646,19 @@ Removes a space from the specified position.
1548
1646
  <tbody>
1549
1647
  <tr>
1550
1648
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1551
- <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
1649
+ <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.
1650
+ </td>
1552
1651
  </tr>
1553
1652
  <tr>
1554
1653
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
1555
- <td>the index of the space to remove.</td>
1654
+ <td>the index of the space to remove.
1655
+ </td>
1556
1656
  </tr>
1557
1657
  </tbody>
1558
1658
  </table></div>
1559
1659
  </div>
1560
1660
  <hr>
1561
- <div class="refsect2">
1661
+ <div class="refsect2" title="gtk_toolbar_unset_style ()">
1562
1662
  <a name="gtk-toolbar-unset-style"></a><h3>gtk_toolbar_unset_style ()</h3>
1563
1663
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_toolbar_unset_style (<em class="parameter"><code><a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar</code></em>);</pre>
1564
1664
  <p>
@@ -1575,9 +1675,9 @@ user preferences will be used to determine the toolbar style.
1575
1675
  </table></div>
1576
1676
  </div>
1577
1677
  </div>
1578
- <div class="refsect1">
1678
+ <div class="refsect1" title="Property Details">
1579
1679
  <a name="GtkToolbar.property-details"></a><h2>Property Details</h2>
1580
- <div class="refsect2">
1680
+ <div class="refsect2" title='The "icon-size" property'>
1581
1681
  <a name="GtkToolbar--icon-size"></a><h3>The <code class="literal">"icon-size"</code> property</h3>
1582
1682
  <pre class="programlisting"> "icon-size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1583
1683
  <p>
@@ -1595,7 +1695,7 @@ size of icons.
1595
1695
  <p class="since">Since 2.10</p>
1596
1696
  </div>
1597
1697
  <hr>
1598
- <div class="refsect2">
1698
+ <div class="refsect2" title='The "icon-size-set" property'>
1599
1699
  <a name="GtkToolbar--icon-size-set"></a><h3>The <code class="literal">"icon-size-set"</code> property</h3>
1600
1700
  <pre class="programlisting"> "icon-size-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1601
1701
  <p>
@@ -1605,21 +1705,21 @@ Is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht
1605
1705
  <p class="since">Since 2.10</p>
1606
1706
  </div>
1607
1707
  <hr>
1608
- <div class="refsect2">
1708
+ <div class="refsect2" title='The "show-arrow" property'>
1609
1709
  <a name="GtkToolbar--show-arrow"></a><h3>The <code class="literal">"show-arrow"</code> property</h3>
1610
1710
  <pre class="programlisting"> "show-arrow" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1611
1711
  <p>If an arrow should be shown if the toolbar doesn't fit.</p>
1612
1712
  <p>Default value: TRUE</p>
1613
1713
  </div>
1614
1714
  <hr>
1615
- <div class="refsect2">
1715
+ <div class="refsect2" title='The "toolbar-style" property'>
1616
1716
  <a name="GtkToolbar--toolbar-style"></a><h3>The <code class="literal">"toolbar-style"</code> property</h3>
1617
1717
  <pre class="programlisting"> "toolbar-style" <a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="type">GtkToolbarStyle</span></a> : Read / Write</pre>
1618
1718
  <p>How to draw the toolbar.</p>
1619
1719
  <p>Default value: GTK_TOOLBAR_BOTH</p>
1620
1720
  </div>
1621
1721
  <hr>
1622
- <div class="refsect2">
1722
+ <div class="refsect2" title='The "tooltips" property'>
1623
1723
  <a name="GtkToolbar--tooltips"></a><h3>The <code class="literal">"tooltips"</code> property</h3>
1624
1724
  <pre class="programlisting"> "tooltips" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1625
1725
  <p>
@@ -1629,32 +1729,32 @@ If the tooltips of the toolbar should be active or not.
1629
1729
  <p class="since">Since 2.8</p>
1630
1730
  </div>
1631
1731
  </div>
1632
- <div class="refsect1">
1732
+ <div class="refsect1" title="Child Property Details">
1633
1733
  <a name="GtkToolbar.child-property-details"></a><h2>Child Property Details</h2>
1634
- <div class="refsect2">
1734
+ <div class="refsect2" title='The "expand" child property'>
1635
1735
  <a name="GtkToolbar--c-expand"></a><h3>The <code class="literal">"expand"</code> child property</h3>
1636
1736
  <pre class="programlisting"> "expand" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1637
1737
  <p>Whether the item should receive extra space when the toolbar grows.</p>
1638
1738
  <p>Default value: FALSE</p>
1639
1739
  </div>
1640
1740
  <hr>
1641
- <div class="refsect2">
1741
+ <div class="refsect2" title='The "homogeneous" child property'>
1642
1742
  <a name="GtkToolbar--c-homogeneous"></a><h3>The <code class="literal">"homogeneous"</code> child property</h3>
1643
1743
  <pre class="programlisting"> "homogeneous" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1644
1744
  <p>Whether the item should be the same size as other homogeneous items.</p>
1645
1745
  <p>Default value: FALSE</p>
1646
1746
  </div>
1647
1747
  </div>
1648
- <div class="refsect1">
1748
+ <div class="refsect1" title="Style Property Details">
1649
1749
  <a name="GtkToolbar.style-property-details"></a><h2>Style Property Details</h2>
1650
- <div class="refsect2">
1750
+ <div class="refsect2" title='The "button-relief" style property'>
1651
1751
  <a name="GtkToolbar--s-button-relief"></a><h3>The <code class="literal">"button-relief"</code> style property</h3>
1652
1752
  <pre class="programlisting"> "button-relief" <a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="type">GtkReliefStyle</span></a> : Read</pre>
1653
1753
  <p>Type of bevel around toolbar buttons.</p>
1654
1754
  <p>Default value: GTK_RELIEF_NONE</p>
1655
1755
  </div>
1656
1756
  <hr>
1657
- <div class="refsect2">
1757
+ <div class="refsect2" title='The "internal-padding" style property'>
1658
1758
  <a name="GtkToolbar--s-internal-padding"></a><h3>The <code class="literal">"internal-padding"</code> style property</h3>
1659
1759
  <pre class="programlisting"> "internal-padding" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1660
1760
  <p>Amount of border space between the toolbar shadow and the buttons.</p>
@@ -1662,7 +1762,7 @@ If the tooltips of the toolbar should be active or not.
1662
1762
  <p>Default value: 0</p>
1663
1763
  </div>
1664
1764
  <hr>
1665
- <div class="refsect2">
1765
+ <div class="refsect2" title='The "max-child-expand" style property'>
1666
1766
  <a name="GtkToolbar--s-max-child-expand"></a><h3>The <code class="literal">"max-child-expand"</code> style property</h3>
1667
1767
  <pre class="programlisting"> "max-child-expand" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1668
1768
  <p>Maximum amount of space an expandable item will be given.</p>
@@ -1670,14 +1770,14 @@ If the tooltips of the toolbar should be active or not.
1670
1770
  <p>Default value: 2147483647</p>
1671
1771
  </div>
1672
1772
  <hr>
1673
- <div class="refsect2">
1773
+ <div class="refsect2" title='The "shadow-type" style property'>
1674
1774
  <a name="GtkToolbar--s-shadow-type"></a><h3>The <code class="literal">"shadow-type"</code> style property</h3>
1675
1775
  <pre class="programlisting"> "shadow-type" <a class="link" href="gtk-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read</pre>
1676
1776
  <p>Style of bevel around the toolbar.</p>
1677
1777
  <p>Default value: GTK_SHADOW_OUT</p>
1678
1778
  </div>
1679
1779
  <hr>
1680
- <div class="refsect2">
1780
+ <div class="refsect2" title='The "space-size" style property'>
1681
1781
  <a name="GtkToolbar--s-space-size"></a><h3>The <code class="literal">"space-size"</code> style property</h3>
1682
1782
  <pre class="programlisting"> "space-size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1683
1783
  <p>Size of spacers.</p>
@@ -1685,20 +1785,20 @@ If the tooltips of the toolbar should be active or not.
1685
1785
  <p>Default value: 12</p>
1686
1786
  </div>
1687
1787
  <hr>
1688
- <div class="refsect2">
1788
+ <div class="refsect2" title='The "space-style" style property'>
1689
1789
  <a name="GtkToolbar--s-space-style"></a><h3>The <code class="literal">"space-style"</code> style property</h3>
1690
1790
  <pre class="programlisting"> "space-style" <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" title="enum GtkToolbarSpaceStyle"><span class="type">GtkToolbarSpaceStyle</span></a> : Read</pre>
1691
1791
  <p>Whether spacers are vertical lines or just blank.</p>
1692
1792
  <p>Default value: GTK_TOOLBAR_SPACE_LINE</p>
1693
1793
  </div>
1694
1794
  </div>
1695
- <div class="refsect1">
1795
+ <div class="refsect1" title="Signal Details">
1696
1796
  <a name="GtkToolbar.signal-details"></a><h2>Signal Details</h2>
1697
- <div class="refsect2">
1797
+ <div class="refsect2" title='The "focus-home-or-end" signal'>
1698
1798
  <a name="GtkToolbar-focus-home-or-end"></a><h3>The <code class="literal">"focus-home-or-end"</code> signal</h3>
1699
1799
  <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="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar,
1700
1800
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> focus_home,
1701
- <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>
1801
+ <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>
1702
1802
  <p>
1703
1803
  A keybinding signal used internally by GTK+. This signal can't
1704
1804
  be used in application code
@@ -1708,12 +1808,14 @@ be used in application code
1708
1808
  <tbody>
1709
1809
  <tr>
1710
1810
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1711
- <td>the <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal</td>
1811
+ <td>the <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal
1812
+ </td>
1712
1813
  </tr>
1713
1814
  <tr>
1714
1815
  <td><p><span class="term"><em class="parameter"><code>focus_home</code></em> :</span></p></td>
1715
1816
  <td>
1716
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the first item should be focused</td>
1817
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the first item should be focused
1818
+ </td>
1717
1819
  </tr>
1718
1820
  <tr>
1719
1821
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1721,18 +1823,18 @@ be used in application code
1721
1823
  </tr>
1722
1824
  <tr>
1723
1825
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1724
- <td>
1725
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the signal was handled, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if not</td>
1826
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the signal was handled, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if not
1827
+ </td>
1726
1828
  </tr>
1727
1829
  </tbody>
1728
1830
  </table></div>
1729
1831
  </div>
1730
1832
  <hr>
1731
- <div class="refsect2">
1833
+ <div class="refsect2" title='The "orientation-changed" signal'>
1732
1834
  <a name="GtkToolbar-orientation-changed"></a><h3>The <code class="literal">"orientation-changed"</code> signal</h3>
1733
1835
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar,
1734
1836
  <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation,
1735
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
1837
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
1736
1838
  <p>
1737
1839
  Emitted when the orientation of the toolbar changes.
1738
1840
  </p>
@@ -1741,11 +1843,13 @@ Emitted when the orientation of the toolbar changes.
1741
1843
  <tbody>
1742
1844
  <tr>
1743
1845
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1744
- <td>the object which emitted the signal</td>
1846
+ <td>the object which emitted the signal
1847
+ </td>
1745
1848
  </tr>
1746
1849
  <tr>
1747
1850
  <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
1748
- <td>the new <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> of the toolbar</td>
1851
+ <td>the new <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> of the toolbar
1852
+ </td>
1749
1853
  </tr>
1750
1854
  <tr>
1751
1855
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1755,13 +1859,13 @@ Emitted when the orientation of the toolbar changes.
1755
1859
  </table></div>
1756
1860
  </div>
1757
1861
  <hr>
1758
- <div class="refsect2">
1862
+ <div class="refsect2" title='The "popup-context-menu" signal'>
1759
1863
  <a name="GtkToolbar-popup-context-menu"></a><h3>The <code class="literal">"popup-context-menu"</code> signal</h3>
1760
1864
  <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="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar,
1761
1865
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x,
1762
1866
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y,
1763
1867
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> button,
1764
- <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>
1868
+ <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>
1765
1869
  <p>
1766
1870
  Emitted when the user right-clicks the toolbar or uses the
1767
1871
  keybinding to display a popup menu.
@@ -1778,19 +1882,23 @@ up using the keybaord, <em class="parameter"><code>button</code></em> is -1.
1778
1882
  <tbody>
1779
1883
  <tr>
1780
1884
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1781
- <td>the <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal</td>
1885
+ <td>the <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal
1886
+ </td>
1782
1887
  </tr>
1783
1888
  <tr>
1784
1889
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1785
- <td>the x coordinate of the point where the menu should appear</td>
1890
+ <td>the x coordinate of the point where the menu should appear
1891
+ </td>
1786
1892
  </tr>
1787
1893
  <tr>
1788
1894
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1789
- <td>the y coordinate of the point where the menu should appear</td>
1895
+ <td>the y coordinate of the point where the menu should appear
1896
+ </td>
1790
1897
  </tr>
1791
1898
  <tr>
1792
1899
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
1793
- <td>the mouse button the user pressed, or -1</td>
1900
+ <td>the mouse button the user pressed, or -1
1901
+ </td>
1794
1902
  </tr>
1795
1903
  <tr>
1796
1904
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1798,17 +1906,18 @@ up using the keybaord, <em class="parameter"><code>button</code></em> is -1.
1798
1906
  </tr>
1799
1907
  <tr>
1800
1908
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1801
- <td>return <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the signal was handled, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if not</td>
1909
+ <td> return <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the signal was handled, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if not
1910
+ </td>
1802
1911
  </tr>
1803
1912
  </tbody>
1804
1913
  </table></div>
1805
1914
  </div>
1806
1915
  <hr>
1807
- <div class="refsect2">
1916
+ <div class="refsect2" title='The "style-changed" signal'>
1808
1917
  <a name="GtkToolbar-style-changed"></a><h3>The <code class="literal">"style-changed"</code> signal</h3>
1809
1918
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> *toolbar,
1810
1919
  <a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="type">GtkToolbarStyle</span></a> style,
1811
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
1920
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
1812
1921
  <p>
1813
1922
  Emitted when the style of the toolbar changes.
1814
1923
  </p>
@@ -1817,11 +1926,13 @@ Emitted when the style of the toolbar changes.
1817
1926
  <tbody>
1818
1927
  <tr>
1819
1928
  <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
1820
- <td>The <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal</td>
1929
+ <td>The <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal
1930
+ </td>
1821
1931
  </tr>
1822
1932
  <tr>
1823
1933
  <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1824
- <td>the new <a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="type">GtkToolbarStyle</span></a> of the toolbar</td>
1934
+ <td>the new <a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="type">GtkToolbarStyle</span></a> of the toolbar
1935
+ </td>
1825
1936
  </tr>
1826
1937
  <tr>
1827
1938
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1831,7 +1942,7 @@ Emitted when the style of the toolbar changes.
1831
1942
  </table></div>
1832
1943
  </div>
1833
1944
  </div>
1834
- <div class="refsect1">
1945
+ <div class="refsect1" title="See Also">
1835
1946
  <a name="GtkToolbar.see-also"></a><h2>See Also</h2>
1836
1947
  <p>
1837
1948
  </p>
@@ -1848,6 +1959,6 @@ Emitted when the style of the toolbar changes.
1848
1959
  </div>
1849
1960
  <div class="footer">
1850
1961
  <hr>
1851
- Generated by GTK-Doc V1.16.1</div>
1962
+ Generated by GTK-Doc V1.15</div>
1852
1963
  </body>
1853
1964
  </html>