gtk2 1.0.3-x86-mingw32 → 1.1.0-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.
- data/Rakefile +66 -1
- data/ext/gtk2/extconf.rb +0 -96
- data/ext/gtk2/global.h +274 -13
- data/ext/gtk2/gtk2.def +5 -3
- data/ext/gtk2/init.c +263 -19
- data/ext/gtk2/rbgdk.c +245 -89
- data/ext/gtk2/rbgdk.h +32 -6
- data/ext/gtk2/rbgdkatom.c +38 -28
- data/ext/gtk2/rbgdkcairo.c +32 -42
- data/ext/gtk2/rbgdkcolor.c +52 -42
- data/ext/gtk2/rbgdkcolormap.c +42 -37
- data/ext/gtk2/rbgdkconst.c +23 -13
- data/ext/gtk2/rbgdkconversions.h +19 -6
- data/ext/gtk2/rbgdkcursor.c +37 -25
- data/ext/gtk2/rbgdkdevice.c +77 -67
- data/ext/gtk2/rbgdkdisplay.c +158 -150
- data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
- data/ext/gtk2/rbgdkdragcontext.c +121 -70
- data/ext/gtk2/rbgdkdraw.c +252 -160
- data/ext/gtk2/rbgdkevent.c +30 -20
- data/ext/gtk2/rbgdkgc.c +123 -116
- data/ext/gtk2/rbgdkgeometry.c +77 -68
- data/ext/gtk2/rbgdkimage.c +58 -47
- data/ext/gtk2/rbgdkinput.c +33 -26
- data/ext/gtk2/rbgdkkeymap.c +38 -27
- data/ext/gtk2/rbgdkkeyval.c +44 -32
- data/ext/gtk2/rbgdkpango.c +66 -39
- data/ext/gtk2/rbgdkpangorenderer.c +63 -35
- data/ext/gtk2/rbgdkpixbuf.c +36 -25
- data/ext/gtk2/rbgdkpixmap.c +65 -49
- data/ext/gtk2/rbgdkproperty.c +66 -60
- data/ext/gtk2/rbgdkrectangle.c +54 -46
- data/ext/gtk2/rbgdkregion.c +144 -79
- data/ext/gtk2/rbgdkrgb.c +74 -58
- data/ext/gtk2/rbgdkscreen.c +103 -97
- data/ext/gtk2/rbgdkselection.c +49 -39
- data/ext/gtk2/rbgdkthreads.c +32 -19
- data/ext/gtk2/rbgdktimecoord.c +60 -38
- data/ext/gtk2/rbgdkvisual.c +79 -71
- data/ext/gtk2/rbgdkwindow.c +284 -305
- data/ext/gtk2/rbgdkwindowattr.c +69 -58
- data/ext/gtk2/rbgdkx11.c +41 -28
- data/ext/gtk2/rbgtk.c +498 -19
- data/ext/gtk2/rbgtk.h +35 -20
- data/ext/gtk2/rbgtkaboutdialog.c +33 -80
- data/ext/gtk2/rbgtkaccelerator.c +36 -23
- data/ext/gtk2/rbgtkaccelgroup.c +50 -40
- data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
- data/ext/gtk2/rbgtkaccelkey.c +40 -28
- data/ext/gtk2/rbgtkaccellabel.c +30 -18
- data/ext/gtk2/rbgtkaccelmap.c +55 -42
- data/ext/gtk2/rbgtkaccessible.c +25 -14
- data/ext/gtk2/rbgtkaction.c +68 -68
- data/ext/gtk2/rbgtkactiongroup.c +317 -195
- data/ext/gtk2/rbgtkadjustment.c +33 -46
- data/ext/gtk2/rbgtkalignment.c +36 -24
- data/ext/gtk2/rbgtkallocation.c +53 -42
- data/ext/gtk2/rbgtkarrow.c +34 -22
- data/ext/gtk2/rbgtkaspectframe.c +32 -20
- data/ext/gtk2/rbgtkassistant.c +81 -61
- data/ext/gtk2/rbgtkbbox.c +32 -20
- data/ext/gtk2/rbgtkbin.c +28 -16
- data/ext/gtk2/rbgtkbindingset.c +42 -35
- data/ext/gtk2/rbgtkborder.c +34 -23
- data/ext/gtk2/rbgtkbox.c +40 -29
- data/ext/gtk2/rbgtkbuildable.c +57 -45
- data/ext/gtk2/rbgtkbuilder.c +53 -38
- data/ext/gtk2/rbgtkbutton.c +41 -55
- data/ext/gtk2/rbgtkcalendar.c +51 -40
- data/ext/gtk2/rbgtkcelleditable.c +28 -17
- data/ext/gtk2/rbgtkcelllayout.c +41 -30
- data/ext/gtk2/rbgtkcellrenderer.c +43 -32
- data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
- data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
- data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
- data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
- data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
- data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
- data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
- data/ext/gtk2/rbgtkcellview.c +34 -33
- data/ext/gtk2/rbgtkcheckbutton.c +28 -16
- data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
- data/ext/gtk2/rbgtkclipboard.c +123 -77
- data/ext/gtk2/rbgtkcolorbutton.c +26 -31
- data/ext/gtk2/rbgtkcolorsel.c +109 -55
- data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
- data/ext/gtk2/rbgtkcombo.c +43 -32
- data/ext/gtk2/rbgtkcombobox.c +44 -83
- data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
- data/ext/gtk2/rbgtkconst.c +23 -13
- data/ext/gtk2/rbgtkcontainer.c +153 -100
- data/ext/gtk2/rbgtkconversions.h +19 -6
- data/ext/gtk2/rbgtkcurve.c +46 -36
- data/ext/gtk2/rbgtkdialog.c +104 -70
- data/ext/gtk2/rbgtkdrag.c +173 -121
- data/ext/gtk2/rbgtkdrawingarea.c +28 -16
- data/ext/gtk2/rbgtkeditable.c +63 -51
- data/ext/gtk2/rbgtkentry.c +48 -85
- data/ext/gtk2/rbgtkentrycompletion.c +42 -55
- data/ext/gtk2/rbgtkeventbox.c +28 -16
- data/ext/gtk2/rbgtkexpander.c +26 -35
- data/ext/gtk2/rbgtkfilechooser.c +87 -143
- data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
- data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
- data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
- data/ext/gtk2/rbgtkfilefilter.c +45 -35
- data/ext/gtk2/rbgtkfilesel.c +54 -43
- data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
- data/ext/gtk2/rbgtkfixed.c +36 -25
- data/ext/gtk2/rbgtkfontbutton.c +26 -37
- data/ext/gtk2/rbgtkfontselection.c +27 -15
- data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
- data/ext/gtk2/rbgtkframe.c +39 -28
- data/ext/gtk2/rbgtkgamma.c +32 -20
- data/ext/gtk2/rbgtkhandlebox.c +31 -19
- data/ext/gtk2/rbgtkhbbox.c +28 -16
- data/ext/gtk2/rbgtkhbox.c +29 -17
- data/ext/gtk2/rbgtkhpaned.c +28 -16
- data/ext/gtk2/rbgtkhruler.c +28 -16
- data/ext/gtk2/rbgtkhscale.c +28 -16
- data/ext/gtk2/rbgtkhscrollbar.c +28 -16
- data/ext/gtk2/rbgtkhseparator.c +28 -16
- data/ext/gtk2/rbgtkiconfactory.c +35 -23
- data/ext/gtk2/rbgtkiconinfo.c +42 -30
- data/ext/gtk2/rbgtkiconset.c +31 -19
- data/ext/gtk2/rbgtkiconsize.c +38 -25
- data/ext/gtk2/rbgtkiconsource.c +62 -50
- data/ext/gtk2/rbgtkicontheme.c +95 -95
- data/ext/gtk2/rbgtkiconview.c +87 -121
- data/ext/gtk2/rbgtkimage.c +31 -40
- data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
- data/ext/gtk2/rbgtkimcontext.c +46 -34
- data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
- data/ext/gtk2/rbgtkimmulticontext.c +26 -14
- data/ext/gtk2/rbgtkinputdialog.c +28 -16
- data/ext/gtk2/rbgtkinvisible.c +24 -18
- data/ext/gtk2/rbgtkitem.c +32 -20
- data/ext/gtk2/rbgtkitemfactory.c +65 -57
- data/ext/gtk2/rbgtklabel.c +46 -57
- data/ext/gtk2/rbgtklayout.c +40 -29
- data/ext/gtk2/rbgtklinkbutton.c +26 -15
- data/ext/gtk2/rbgtkliststore.c +145 -102
- data/ext/gtk2/rbgtkmacros.h +19 -6
- data/ext/gtk2/rbgtkmenu.c +47 -59
- data/ext/gtk2/rbgtkmenubar.c +30 -30
- data/ext/gtk2/rbgtkmenuitem.c +34 -41
- data/ext/gtk2/rbgtkmenushell.c +43 -42
- data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
- data/ext/gtk2/rbgtkmessagedialog.c +31 -25
- data/ext/gtk2/rbgtkmisc.c +33 -22
- data/ext/gtk2/rbgtknotebook.c +98 -134
- data/ext/gtk2/rbgtkobject.c +46 -81
- data/ext/gtk2/rbgtkoptionmenu.c +35 -23
- data/ext/gtk2/rbgtkpagesetup.c +64 -54
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
- data/ext/gtk2/rbgtkpaned.c +46 -36
- data/ext/gtk2/rbgtkpapersize.c +60 -54
- data/ext/gtk2/rbgtkplug.c +32 -20
- data/ext/gtk2/rbgtkprintcontext.c +43 -35
- data/ext/gtk2/rbgtkprinter.c +36 -37
- data/ext/gtk2/rbgtkprintjob.c +36 -37
- data/ext/gtk2/rbgtkprintoperation.c +44 -33
- data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
- data/ext/gtk2/rbgtkprintsettings.c +248 -192
- data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
- data/ext/gtk2/rbgtkprogress.c +23 -13
- data/ext/gtk2/rbgtkprogressbar.c +47 -46
- data/ext/gtk2/rbgtkradioaction.c +84 -39
- data/ext/gtk2/rbgtkradiobutton.c +33 -21
- data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
- data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
- data/ext/gtk2/rbgtkrange.c +36 -56
- data/ext/gtk2/rbgtkrc.c +61 -49
- data/ext/gtk2/rbgtkrcstyle.c +59 -48
- data/ext/gtk2/rbgtkrecentaction.c +28 -16
- data/ext/gtk2/rbgtkrecentchooser.c +58 -92
- data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
- data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
- data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
- data/ext/gtk2/rbgtkrecentdata.c +47 -36
- data/ext/gtk2/rbgtkrecentfilter.c +55 -46
- data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
- data/ext/gtk2/rbgtkrecentinfo.c +66 -56
- data/ext/gtk2/rbgtkrecentmanager.c +47 -43
- data/ext/gtk2/rbgtkruler.c +35 -30
- data/ext/gtk2/rbgtkscale.c +29 -18
- data/ext/gtk2/rbgtkscalebutton.c +27 -27
- data/ext/gtk2/rbgtkscrollbar.c +23 -13
- data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
- data/ext/gtk2/rbgtkselection.c +87 -67
- data/ext/gtk2/rbgtkselectiondata.c +74 -65
- data/ext/gtk2/rbgtkseparator.c +23 -13
- data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
- data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
- data/ext/gtk2/rbgtksettings.c +123 -103
- data/ext/gtk2/rbgtksizegroup.c +33 -30
- data/ext/gtk2/rbgtksocket.c +32 -20
- data/ext/gtk2/rbgtkspinbutton.c +48 -38
- data/ext/gtk2/rbgtkspinner.c +27 -14
- data/ext/gtk2/rbgtkstatusbar.c +36 -31
- data/ext/gtk2/rbgtkstatusicon.c +31 -44
- data/ext/gtk2/rbgtkstock.c +137 -125
- data/ext/gtk2/rbgtkstyle.c +177 -161
- data/ext/gtk2/rbgtktable.c +58 -47
- data/ext/gtk2/rbgtktargetlist.c +56 -36
- data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
- data/ext/gtk2/rbgtktextappearance.c +44 -34
- data/ext/gtk2/rbgtktextattributes.c +54 -42
- data/ext/gtk2/rbgtktextbuffer.c +188 -191
- data/ext/gtk2/rbgtktextchild.c +29 -18
- data/ext/gtk2/rbgtktextiter.c +153 -145
- data/ext/gtk2/rbgtktextmark.c +33 -30
- data/ext/gtk2/rbgtktexttag.c +34 -22
- data/ext/gtk2/rbgtktexttagtable.c +36 -25
- data/ext/gtk2/rbgtktextview.c +85 -73
- data/ext/gtk2/rbgtktoggleaction.c +27 -22
- data/ext/gtk2/rbgtktogglebutton.c +37 -26
- data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
- data/ext/gtk2/rbgtktoolbar.c +66 -69
- data/ext/gtk2/rbgtktoolbutton.c +27 -40
- data/ext/gtk2/rbgtktoolitem.c +60 -62
- data/ext/gtk2/rbgtktooltip.c +36 -25
- data/ext/gtk2/rbgtktooltips.c +42 -34
- data/ext/gtk2/rbgtktreedragdest.c +20 -11
- data/ext/gtk2/rbgtktreedragsource.c +20 -11
- data/ext/gtk2/rbgtktreeiter.c +58 -47
- data/ext/gtk2/rbgtktreemodel.c +83 -65
- data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
- data/ext/gtk2/rbgtktreemodelsort.c +38 -27
- data/ext/gtk2/rbgtktreepath.c +55 -44
- data/ext/gtk2/rbgtktreerowreference.c +60 -42
- data/ext/gtk2/rbgtktreeselection.c +61 -52
- data/ext/gtk2/rbgtktreesortable.c +52 -42
- data/ext/gtk2/rbgtktreestore.c +88 -67
- data/ext/gtk2/rbgtktreeview.c +157 -185
- data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
- data/ext/gtk2/rbgtkuimanager.c +61 -61
- data/ext/gtk2/rbgtkvbbox.c +28 -16
- data/ext/gtk2/rbgtkvbox.c +29 -17
- data/ext/gtk2/rbgtkviewport.c +28 -16
- data/ext/gtk2/rbgtkvolumebutton.c +28 -16
- data/ext/gtk2/rbgtkvpaned.c +28 -16
- data/ext/gtk2/rbgtkvruler.c +28 -16
- data/ext/gtk2/rbgtkvscale.c +28 -16
- data/ext/gtk2/rbgtkvscrollbar.c +28 -16
- data/ext/gtk2/rbgtkvseparator.c +28 -16
- data/ext/gtk2/rbgtkwidget.c +284 -296
- data/ext/gtk2/rbgtkwindow.c +156 -214
- data/ext/gtk2/rbgtkwindowgroup.c +35 -24
- data/lib/1.8/gtk2.so +0 -0
- data/lib/1.9/gtk2.so +0 -0
- data/sample/testgtk/labels.rb +1 -0
- data/sample/testgtk/testgtk.rb +2 -0
- data/vendor/local/bin/gtk-builder-convert +29 -2
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
- data/vendor/local/lib/gailutil.lib +0 -0
- data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gail.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
- data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
- data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
- data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
- data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
- data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
- data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
- data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
- data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
- data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
- data/vendor/local/share/icons/hicolor/index.theme +1662 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
- data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
- metadata +29 -31
- data/ChangeLog +0 -6902
- data/ext/gtk2/rbgtkmain.c +0 -493
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>GtkToolShell</title>
         | 
| 6 6 | 
             
            <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
         | 
| 7 | 
            -
            <link rel="home" href="index.html" title="GTK+ Reference Manual">
         | 
| 7 | 
            +
            <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
         | 
| 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. | 
| 11 | 
            +
            <meta name="generator" content="GTK-Doc V1.17 (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">
         | 
| @@ -17,7 +17,7 @@ | |
| 17 17 | 
             
            <td><a accesskey="p" href="GtkTearoffMenuItem.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="MenusAndCombos.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 19 19 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 20 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 20 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 21 21 | 
             
            <td><a accesskey="n" href="GtkToolbar.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 22 22 | 
             
            </tr>
         | 
| 23 23 | 
             
            <tr><td colspan="5" class="shortcuts">
         | 
| @@ -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">
         | 
| 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">
         | 
| 45 45 | 
             
            <a name="GtkToolShell.synopsis"></a><h2>Synopsis</h2>
         | 
| 46 46 | 
             
            <pre class="synopsis">
         | 
| 47 47 | 
             
            #include <gtk/gtk.h>
         | 
| 48 48 |  | 
| 49 49 | 
             
                                <a class="link" href="GtkToolShell.html#GtkToolShell-struct" title="GtkToolShell">GtkToolShell</a>;
         | 
| 50 | 
            -
             | 
| 50 | 
            +
            struct              <a class="link" href="GtkToolShell.html#GtkToolShellIface" title="struct 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 @@ | |
| 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">
         | 
| 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">
         | 
| 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">
         | 
| 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">
         | 
| 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">
         | 
| 92 92 | 
             
            <a name="GtkToolShell.details"></a><h2>Details</h2>
         | 
| 93 | 
            -
            <div class="refsect2" | 
| 93 | 
            +
            <div class="refsect2">
         | 
| 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="GtkToolShellIface"><span class="type">GtkToolShellIface</span></a>.
         | 
| 97 | 
            +
            Dummy structure for accessing instances of <a class="link" href="GtkToolShell.html#GtkToolShellIface" title="struct 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>GtkToolShellIface</h3>
         | 
| 103 | 
            -
            <pre class="programlisting"> | 
| 101 | 
            +
            <div class="refsect2">
         | 
| 102 | 
            +
            <a name="GtkToolShellIface"></a><h3>struct GtkToolShellIface</h3>
         | 
| 103 | 
            +
            <pre class="programlisting">struct GtkToolShellIface {
         | 
| 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 | 
            +
            };
         | 
| 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,54 +120,45 @@ 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 | 
| 124 | 
            -
            </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>
         | 
| 125 124 | 
             
            </tr>
         | 
| 126 125 | 
             
            <tr>
         | 
| 127 126 | 
             
            <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-orientation"></a>get_orientation</code></em> ()</span></p></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>
         | 
| 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>
         | 
| 130 128 | 
             
            </tr>
         | 
| 131 129 | 
             
            <tr>
         | 
| 132 130 | 
             
            <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-style"></a>get_style</code></em> ()</span></p></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>
         | 
| 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>
         | 
| 135 132 | 
             
            </tr>
         | 
| 136 133 | 
             
            <tr>
         | 
| 137 134 | 
             
            <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-relief-style"></a>get_relief_style</code></em> ()</span></p></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>
         | 
| 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>
         | 
| 140 136 | 
             
            </tr>
         | 
| 141 137 | 
             
            <tr>
         | 
| 142 138 | 
             
            <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.rebuild-menu"></a>rebuild_menu</code></em> ()</span></p></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>
         | 
| 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>
         | 
| 145 140 | 
             
            </tr>
         | 
| 146 141 | 
             
            <tr>
         | 
| 147 142 | 
             
            <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-text-orientation"></a>get_text_orientation</code></em> ()</span></p></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>
         | 
| 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>
         | 
| 150 144 | 
             
            </tr>
         | 
| 151 145 | 
             
            <tr>
         | 
| 152 146 | 
             
            <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-text-alignment"></a>get_text_alignment</code></em> ()</span></p></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>
         | 
| 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>
         | 
| 155 148 | 
             
            </tr>
         | 
| 156 149 | 
             
            <tr>
         | 
| 157 150 | 
             
            <td><p><span class="term"><em class="structfield"><code><a name="GtkToolShellIface.get-ellipsize-mode"></a>get_ellipsize_mode</code></em> ()</span></p></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>
         | 
| 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>
         | 
| 160 152 | 
             
            </tr>
         | 
| 161 153 | 
             
            <tr>
         | 
| 162 154 | 
             
            <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>
         | 
| 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>
         | 
| 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>
         | 
| 165 156 | 
             
            </tr>
         | 
| 166 157 | 
             
            </tbody>
         | 
| 167 158 | 
             
            </table></div>
         | 
| 168 159 | 
             
            </div>
         | 
| 169 160 | 
             
            <hr>
         | 
| 170 | 
            -
            <div class="refsect2" | 
| 161 | 
            +
            <div class="refsect2">
         | 
| 171 162 | 
             
            <a name="gtk-tool-shell-get-ellipsize-mode"></a><h3>gtk_tool_shell_get_ellipsize_mode ()</h3>
         | 
| 172 163 | 
             
            <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>
         | 
| 173 164 | 
             
            <p>
         | 
| @@ -185,8 +176,7 @@ instead. | |
| 185 176 | 
             
            </tr>
         | 
| 186 177 | 
             
            <tr>
         | 
| 187 178 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 188 | 
            -
            <td> | 
| 189 | 
            -
             | 
| 179 | 
            +
            <td>the current ellipsize mode of <em class="parameter"><code>shell</code></em>
         | 
| 190 180 | 
             
            </td>
         | 
| 191 181 | 
             
            </tr>
         | 
| 192 182 | 
             
            </tbody>
         | 
| @@ -194,7 +184,7 @@ instead. | |
| 194 184 | 
             
            <p class="since">Since 2.20</p>
         | 
| 195 185 | 
             
            </div>
         | 
| 196 186 | 
             
            <hr>
         | 
| 197 | 
            -
            <div class="refsect2" | 
| 187 | 
            +
            <div class="refsect2">
         | 
| 198 188 | 
             
            <a name="gtk-tool-shell-get-icon-size"></a><h3>gtk_tool_shell_get_icon_size ()</h3>
         | 
| 199 189 | 
             
            <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>
         | 
| 200 190 | 
             
            <p>
         | 
| @@ -211,7 +201,7 @@ function directly, but rely on <a class="link" href="GtkToolItem.html#gtk-tool-i | |
| 211 201 | 
             
            </tr>
         | 
| 212 202 | 
             
            <tr>
         | 
| 213 203 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 214 | 
            -
            <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>
         | 
| 215 205 | 
             
            </td>
         | 
| 216 206 | 
             
            </tr>
         | 
| 217 207 | 
             
            </tbody>
         | 
| @@ -219,7 +209,7 @@ function directly, but rely on <a class="link" href="GtkToolItem.html#gtk-tool-i | |
| 219 209 | 
             
            <p class="since">Since 2.14</p>
         | 
| 220 210 | 
             
            </div>
         | 
| 221 211 | 
             
            <hr>
         | 
| 222 | 
            -
            <div class="refsect2" | 
| 212 | 
            +
            <div class="refsect2">
         | 
| 223 213 | 
             
            <a name="gtk-tool-shell-get-orientation"></a><h3>gtk_tool_shell_get_orientation ()</h3>
         | 
| 224 214 | 
             
            <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>
         | 
| 225 215 | 
             
            <p>
         | 
| @@ -237,8 +227,7 @@ instead. | |
| 237 227 | 
             
            </tr>
         | 
| 238 228 | 
             
            <tr>
         | 
| 239 229 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 240 | 
            -
            <td> | 
| 241 | 
            -
             | 
| 230 | 
            +
            <td>the current orientation of <em class="parameter"><code>shell</code></em>
         | 
| 242 231 | 
             
            </td>
         | 
| 243 232 | 
             
            </tr>
         | 
| 244 233 | 
             
            </tbody>
         | 
| @@ -246,7 +235,7 @@ instead. | |
| 246 235 | 
             
            <p class="since">Since 2.14</p>
         | 
| 247 236 | 
             
            </div>
         | 
| 248 237 | 
             
            <hr>
         | 
| 249 | 
            -
            <div class="refsect2" | 
| 238 | 
            +
            <div class="refsect2">
         | 
| 250 239 | 
             
            <a name="gtk-tool-shell-get-relief-style"></a><h3>gtk_tool_shell_get_relief_style ()</h3>
         | 
| 251 240 | 
             
            <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>
         | 
| 252 241 | 
             
            <p>
         | 
| @@ -263,16 +252,14 @@ function directly, but rely on <a class="link" href="GtkToolItem.html#gtk-tool-i | |
| 263 252 | 
             
            </tr>
         | 
| 264 253 | 
             
            <tr>
         | 
| 265 254 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 266 | 
            -
            <td> | 
| 267 | 
            -
             | 
| 268 | 
            -
            </td>
         | 
| 255 | 
            +
            <td>The relief style of buttons on <em class="parameter"><code>shell</code></em>.</td>
         | 
| 269 256 | 
             
            </tr>
         | 
| 270 257 | 
             
            </tbody>
         | 
| 271 258 | 
             
            </table></div>
         | 
| 272 259 | 
             
            <p class="since">Since 2.14</p>
         | 
| 273 260 | 
             
            </div>
         | 
| 274 261 | 
             
            <hr>
         | 
| 275 | 
            -
            <div class="refsect2" | 
| 262 | 
            +
            <div class="refsect2">
         | 
| 276 263 | 
             
            <a name="gtk-tool-shell-get-style"></a><h3>gtk_tool_shell_get_style ()</h3>
         | 
| 277 264 | 
             
            <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>
         | 
| 278 265 | 
             
            <p>
         | 
| @@ -290,8 +277,7 @@ instead. | |
| 290 277 | 
             
            </tr>
         | 
| 291 278 | 
             
            <tr>
         | 
| 292 279 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 293 | 
            -
            <td> | 
| 294 | 
            -
             | 
| 280 | 
            +
            <td>the current style of <em class="parameter"><code>shell</code></em>
         | 
| 295 281 | 
             
            </td>
         | 
| 296 282 | 
             
            </tr>
         | 
| 297 283 | 
             
            </tbody>
         | 
| @@ -299,7 +285,7 @@ instead. | |
| 299 285 | 
             
            <p class="since">Since 2.14</p>
         | 
| 300 286 | 
             
            </div>
         | 
| 301 287 | 
             
            <hr>
         | 
| 302 | 
            -
            <div class="refsect2" | 
| 288 | 
            +
            <div class="refsect2">
         | 
| 303 289 | 
             
            <a name="gtk-tool-shell-get-text-alignment"></a><h3>gtk_tool_shell_get_text_alignment ()</h3>
         | 
| 304 290 | 
             
            <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>
         | 
| 305 291 | 
             
            <p>
         | 
| @@ -317,8 +303,7 @@ instead. | |
| 317 303 | 
             
            </tr>
         | 
| 318 304 | 
             
            <tr>
         | 
| 319 305 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 320 | 
            -
            <td> | 
| 321 | 
            -
             | 
| 306 | 
            +
            <td>the current text alignment of <em class="parameter"><code>shell</code></em>
         | 
| 322 307 | 
             
            </td>
         | 
| 323 308 | 
             
            </tr>
         | 
| 324 309 | 
             
            </tbody>
         | 
| @@ -326,7 +311,7 @@ instead. | |
| 326 311 | 
             
            <p class="since">Since 2.20</p>
         | 
| 327 312 | 
             
            </div>
         | 
| 328 313 | 
             
            <hr>
         | 
| 329 | 
            -
            <div class="refsect2" | 
| 314 | 
            +
            <div class="refsect2">
         | 
| 330 315 | 
             
            <a name="gtk-tool-shell-get-text-orientation"></a><h3>gtk_tool_shell_get_text_orientation ()</h3>
         | 
| 331 316 | 
             
            <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>
         | 
| 332 317 | 
             
            <p>
         | 
| @@ -344,8 +329,7 @@ instead. | |
| 344 329 | 
             
            </tr>
         | 
| 345 330 | 
             
            <tr>
         | 
| 346 331 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 347 | 
            -
            <td> | 
| 348 | 
            -
             | 
| 332 | 
            +
            <td>the current text orientation of <em class="parameter"><code>shell</code></em>
         | 
| 349 333 | 
             
            </td>
         | 
| 350 334 | 
             
            </tr>
         | 
| 351 335 | 
             
            </tbody>
         | 
| @@ -353,7 +337,7 @@ instead. | |
| 353 337 | 
             
            <p class="since">Since 2.20</p>
         | 
| 354 338 | 
             
            </div>
         | 
| 355 339 | 
             
            <hr>
         | 
| 356 | 
            -
            <div class="refsect2" | 
| 340 | 
            +
            <div class="refsect2">
         | 
| 357 341 | 
             
            <a name="gtk-tool-shell-rebuild-menu"></a><h3>gtk_tool_shell_rebuild_menu ()</h3>
         | 
| 358 342 | 
             
            <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>
         | 
| 359 343 | 
             
            <p>
         | 
| @@ -376,7 +360,7 @@ Tool items must not call this function directly, but rely on | |
| 376 360 | 
             
            <p class="since">Since 2.14</p>
         | 
| 377 361 | 
             
            </div>
         | 
| 378 362 | 
             
            <hr>
         | 
| 379 | 
            -
            <div class="refsect2" | 
| 363 | 
            +
            <div class="refsect2">
         | 
| 380 364 | 
             
            <a name="gtk-tool-shell-get-text-size-group"></a><h3>gtk_tool_shell_get_text_size_group ()</h3>
         | 
| 381 365 | 
             
            <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>
         | 
| 382 366 | 
             
            <p>
         | 
| @@ -394,8 +378,7 @@ instead. | |
| 394 378 | 
             
            </tr>
         | 
| 395 379 | 
             
            <tr>
         | 
| 396 380 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 397 | 
            -
            <td> | 
| 398 | 
            -
             | 
| 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>
         | 
| 399 382 | 
             
            </td>
         | 
| 400 383 | 
             
            </tr>
         | 
| 401 384 | 
             
            </tbody>
         | 
| @@ -406,6 +389,6 @@ instead. | |
| 406 389 | 
             
            </div>
         | 
| 407 390 | 
             
            <div class="footer">
         | 
| 408 391 | 
             
            <hr>
         | 
| 409 | 
            -
                      Generated by GTK-Doc V1. | 
| 392 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 410 393 | 
             
            </body>
         | 
| 411 394 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>GtkToolbar</title>
         | 
| 6 6 | 
             
            <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
         | 
| 7 | 
            -
            <link rel="home" href="index.html" title="GTK+ Reference Manual">
         | 
| 7 | 
            +
            <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
         | 
| 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. | 
| 11 | 
            +
            <meta name="generator" content="GTK-Doc V1.17 (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">
         | 
| @@ -17,7 +17,7 @@ | |
| 17 17 | 
             
            <td><a accesskey="p" href="GtkToolShell.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="MenusAndCombos.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 19 19 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 20 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 20 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 21 21 | 
             
            <td><a accesskey="n" href="GtkToolItem.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 22 22 | 
             
            </tr>
         | 
| 23 23 | 
             
            <tr><td colspan="5" class="shortcuts">
         | 
| @@ -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">
         | 
| 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">
         | 
| 51 51 | 
             
            <a name="GtkToolbar.synopsis"></a><h2>Synopsis</h2>
         | 
| 52 52 | 
             
            <pre class="synopsis">
         | 
| 53 53 | 
             
            #include <gtk/gtk.h>
         | 
| 54 54 |  | 
| 55 | 
            -
             | 
| 55 | 
            +
            struct              <a class="link" href="GtkToolbar.html#GtkToolbar-struct" title="struct 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 | 
            -
             | 
| 58 | 
            +
            struct              <a class="link" href="GtkToolbar.html#GtkToolbarChild" title="struct 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 @@ enum                <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" | |
| 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 | 
| 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 | 
| 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 | 
| 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 @@ enum                <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" | |
| 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 | 
| 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 @@ enum                <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" | |
| 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 | 
| 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 @@ enum                <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" | |
| 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 | 
| 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 @@ enum                <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" | |
| 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 | 
| 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 @@ enum                <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" | |
| 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">
         | 
| 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 @@ enum                <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" | |
| 178 178 | 
             
                                       +----GtkToolbar
         | 
| 179 179 | 
             
            </pre>
         | 
| 180 180 | 
             
            </div>
         | 
| 181 | 
            -
            <div class="refsect1" | 
| 181 | 
            +
            <div class="refsect1">
         | 
| 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">
         | 
| 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">
         | 
| 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">
         | 
| 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">
         | 
| 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>"                              :  | 
| 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
         | 
| 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>
         | 
| 222 222 | 
             
            </pre>
         | 
| 223 223 | 
             
            </div>
         | 
| 224 | 
            -
            <div class="refsect1" | 
| 224 | 
            +
            <div class="refsect1">
         | 
| 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">
         | 
| 248 248 | 
             
            <a name="GtkToolbar.details"></a><h2>Details</h2>
         | 
| 249 | 
            -
            <div class="refsect2" | 
| 250 | 
            -
            <a name="GtkToolbar-struct"></a><h3>GtkToolbar</h3>
         | 
| 251 | 
            -
            <pre class="programlisting"> | 
| 249 | 
            +
            <div class="refsect2">
         | 
| 250 | 
            +
            <a name="GtkToolbar-struct"></a><h3>struct GtkToolbar</h3>
         | 
| 251 | 
            +
            <pre class="programlisting">struct GtkToolbar {
         | 
| 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 | 
            +
            };
         | 
| 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">
         | 
| 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"  | 
| 282 | 
            +
            <div class="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">
         | 
| 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>GtkToolbarChild</h3>
         | 
| 336 | 
            -
            <pre class="programlisting"> | 
| 334 | 
            +
            <div class="refsect2">
         | 
| 335 | 
            +
            <a name="GtkToolbarChild"></a><h3>struct GtkToolbarChild</h3>
         | 
| 336 | 
            +
            <pre class="programlisting">struct GtkToolbarChild {
         | 
| 337 337 | 
             
              GtkToolbarChildType type;
         | 
| 338 338 | 
             
              GtkWidget *widget;
         | 
| 339 339 | 
             
              GtkWidget *icon;
         | 
| 340 340 | 
             
              GtkWidget *label;
         | 
| 341 | 
            -
            } | 
| 341 | 
            +
            };
         | 
| 342 342 | 
             
            </pre>
         | 
| 343 | 
            -
            <div class="warning"  | 
| 343 | 
            +
            <div class="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">
         | 
| 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,13 +358,12 @@ 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> | 
| 362 | 
            -
            </td>
         | 
| 361 | 
            +
            <td>the newly-created toolbar.</td>
         | 
| 363 362 | 
             
            </tr></tbody>
         | 
| 364 363 | 
             
            </table></div>
         | 
| 365 364 | 
             
            </div>
         | 
| 366 365 | 
             
            <hr>
         | 
| 367 | 
            -
            <div class="refsect2" | 
| 366 | 
            +
            <div class="refsect2">
         | 
| 368 367 | 
             
            <a name="gtk-toolbar-insert"></a><h3>gtk_toolbar_insert ()</h3>
         | 
| 369 368 | 
             
            <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>,
         | 
| 370 369 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> *item</code></em>,
         | 
| @@ -389,15 +388,14 @@ negative, the item is appended to the end of the toolbar. | |
| 389 388 | 
             
            </tr>
         | 
| 390 389 | 
             
            <tr>
         | 
| 391 390 | 
             
            <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
         | 
| 392 | 
            -
            <td>the position of the new item
         | 
| 393 | 
            -
            </td>
         | 
| 391 | 
            +
            <td>the position of the new item</td>
         | 
| 394 392 | 
             
            </tr>
         | 
| 395 393 | 
             
            </tbody>
         | 
| 396 394 | 
             
            </table></div>
         | 
| 397 395 | 
             
            <p class="since">Since 2.4</p>
         | 
| 398 396 | 
             
            </div>
         | 
| 399 397 | 
             
            <hr>
         | 
| 400 | 
            -
            <div class="refsect2" | 
| 398 | 
            +
            <div class="refsect2">
         | 
| 401 399 | 
             
            <a name="gtk-toolbar-get-item-index"></a><h3>gtk_toolbar_get_item_index ()</h3>
         | 
| 402 400 | 
             
            <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>,
         | 
| 403 401 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> *item</code></em>);</pre>
         | 
| @@ -420,16 +418,14 @@ It is an error if <em class="parameter"><code>item</code></em> is not a child of | |
| 420 418 | 
             
            </tr>
         | 
| 421 419 | 
             
            <tr>
         | 
| 422 420 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 423 | 
            -
            <td> | 
| 424 | 
            -
             | 
| 425 | 
            -
            </td>
         | 
| 421 | 
            +
            <td>the position of item on the toolbar.</td>
         | 
| 426 422 | 
             
            </tr>
         | 
| 427 423 | 
             
            </tbody>
         | 
| 428 424 | 
             
            </table></div>
         | 
| 429 425 | 
             
            <p class="since">Since 2.4</p>
         | 
| 430 426 | 
             
            </div>
         | 
| 431 427 | 
             
            <hr>
         | 
| 432 | 
            -
            <div class="refsect2" | 
| 428 | 
            +
            <div class="refsect2">
         | 
| 433 429 | 
             
            <a name="gtk-toolbar-get-n-items"></a><h3>gtk_toolbar_get_n_items ()</h3>
         | 
| 434 430 | 
             
            <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>
         | 
| 435 431 | 
             
            <p>
         | 
| @@ -445,16 +441,14 @@ Returns the number of items on the toolbar. | |
| 445 441 | 
             
            </tr>
         | 
| 446 442 | 
             
            <tr>
         | 
| 447 443 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 448 | 
            -
            <td> | 
| 449 | 
            -
             | 
| 450 | 
            -
            </td>
         | 
| 444 | 
            +
            <td>the number of items on the toolbar</td>
         | 
| 451 445 | 
             
            </tr>
         | 
| 452 446 | 
             
            </tbody>
         | 
| 453 447 | 
             
            </table></div>
         | 
| 454 448 | 
             
            <p class="since">Since 2.4</p>
         | 
| 455 449 | 
             
            </div>
         | 
| 456 450 | 
             
            <hr>
         | 
| 457 | 
            -
            <div class="refsect2" | 
| 451 | 
            +
            <div class="refsect2">
         | 
| 458 452 | 
             
            <a name="gtk-toolbar-get-nth-item"></a><h3>gtk_toolbar_get_nth_item ()</h3>
         | 
| 459 453 | 
             
            <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>,
         | 
| 460 454 | 
             
                                                                     <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>
         | 
| @@ -472,14 +466,12 @@ toolbar does not contain an <em class="parameter"><code>n</code></em>'th item. | |
| 472 466 | 
             
            </tr>
         | 
| 473 467 | 
             
            <tr>
         | 
| 474 468 | 
             
            <td><p><span class="term"><em class="parameter"><code>n</code></em> :</span></p></td>
         | 
| 475 | 
            -
            <td>A position on the toolbar
         | 
| 476 | 
            -
            </td>
         | 
| 469 | 
            +
            <td>A position on the toolbar</td>
         | 
| 477 470 | 
             
            </tr>
         | 
| 478 471 | 
             
            <tr>
         | 
| 479 472 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 480 | 
            -
            <td> | 
| 481 | 
            -
            isn't an <em class="parameter"><code>n</code></em>'th item.
         | 
| 482 | 
            -
             | 
| 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>
         | 
| 483 475 | 
             
            </td>
         | 
| 484 476 | 
             
            </tr>
         | 
| 485 477 | 
             
            </tbody>
         | 
| @@ -487,7 +479,7 @@ isn't an <em class="parameter"><code>n</code></em>'th item. | |
| 487 479 | 
             
            <p class="since">Since 2.4</p>
         | 
| 488 480 | 
             
            </div>
         | 
| 489 481 | 
             
            <hr>
         | 
| 490 | 
            -
            <div class="refsect2" | 
| 482 | 
            +
            <div class="refsect2">
         | 
| 491 483 | 
             
            <a name="gtk-toolbar-get-drop-index"></a><h3>gtk_toolbar_get_drop_index ()</h3>
         | 
| 492 484 | 
             
            <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>,
         | 
| 493 485 | 
             
                                                                     <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>,
         | 
| @@ -511,26 +503,22 @@ inserted. | |
| 511 503 | 
             
            </tr>
         | 
| 512 504 | 
             
            <tr>
         | 
| 513 505 | 
             
            <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
         | 
| 514 | 
            -
            <td>x coordinate of a point on the toolbar
         | 
| 515 | 
            -
            </td>
         | 
| 506 | 
            +
            <td>x coordinate of a point on the toolbar</td>
         | 
| 516 507 | 
             
            </tr>
         | 
| 517 508 | 
             
            <tr>
         | 
| 518 509 | 
             
            <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
         | 
| 519 | 
            -
            <td>y coordinate of a point on the toolbar
         | 
| 520 | 
            -
            </td>
         | 
| 510 | 
            +
            <td>y coordinate of a point on the toolbar</td>
         | 
| 521 511 | 
             
            </tr>
         | 
| 522 512 | 
             
            <tr>
         | 
| 523 513 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 524 | 
            -
            <td> | 
| 525 | 
            -
             | 
| 526 | 
            -
            </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>
         | 
| 527 515 | 
             
            </tr>
         | 
| 528 516 | 
             
            </tbody>
         | 
| 529 517 | 
             
            </table></div>
         | 
| 530 518 | 
             
            <p class="since">Since 2.4</p>
         | 
| 531 519 | 
             
            </div>
         | 
| 532 520 | 
             
            <hr>
         | 
| 533 | 
            -
            <div class="refsect2" | 
| 521 | 
            +
            <div class="refsect2">
         | 
| 534 522 | 
             
            <a name="gtk-toolbar-set-drop-highlight-item"></a><h3>gtk_toolbar_set_drop_highlight_item ()</h3>
         | 
| 535 523 | 
             
            <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>,
         | 
| 536 524 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> *tool_item</code></em>,
         | 
| @@ -557,7 +545,7 @@ toolbar. | |
| 557 545 | 
             
            </tr>
         | 
| 558 546 | 
             
            <tr>
         | 
| 559 547 | 
             
            <td><p><span class="term"><em class="parameter"><code>tool_item</code></em> :</span></p></td>
         | 
| 560 | 
            -
            <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>
         | 
| 561 549 | 
             
            </td>
         | 
| 562 550 | 
             
            </tr>
         | 
| 563 551 | 
             
            <tr>
         | 
| @@ -570,7 +558,7 @@ toolbar. | |
| 570 558 | 
             
            <p class="since">Since 2.4</p>
         | 
| 571 559 | 
             
            </div>
         | 
| 572 560 | 
             
            <hr>
         | 
| 573 | 
            -
            <div class="refsect2" | 
| 561 | 
            +
            <div class="refsect2">
         | 
| 574 562 | 
             
            <a name="gtk-toolbar-set-show-arrow"></a><h3>gtk_toolbar_set_show_arrow ()</h3>
         | 
| 575 563 | 
             
            <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>,
         | 
| 576 564 | 
             
                                                                     <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>
         | 
| @@ -590,19 +578,18 @@ overflow menu. | |
| 590 578 | 
             
            </tr>
         | 
| 591 579 | 
             
            <tr>
         | 
| 592 580 | 
             
            <td><p><span class="term"><em class="parameter"><code>show_arrow</code></em> :</span></p></td>
         | 
| 593 | 
            -
            <td>Whether to show an overflow menu
         | 
| 594 | 
            -
            </td>
         | 
| 581 | 
            +
            <td>Whether to show an overflow menu</td>
         | 
| 595 582 | 
             
            </tr>
         | 
| 596 583 | 
             
            </tbody>
         | 
| 597 584 | 
             
            </table></div>
         | 
| 598 585 | 
             
            <p class="since">Since 2.4</p>
         | 
| 599 586 | 
             
            </div>
         | 
| 600 587 | 
             
            <hr>
         | 
| 601 | 
            -
            <div class="refsect2" | 
| 588 | 
            +
            <div class="refsect2">
         | 
| 602 589 | 
             
            <a name="gtk-toolbar-set-orientation"></a><h3>gtk_toolbar_set_orientation ()</h3>
         | 
| 603 590 | 
             
            <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>,
         | 
| 604 591 | 
             
                                                                     <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>
         | 
| 605 | 
            -
            <div class="warning"  | 
| 592 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 606 593 | 
             
            <h3 class="title">Warning</h3>
         | 
| 607 594 | 
             
            <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>
         | 
| 608 595 | 
             
            </div>
         | 
| @@ -614,23 +601,21 @@ Sets whether a toolbar should appear horizontally or vertically. | |
| 614 601 | 
             
            <tbody>
         | 
| 615 602 | 
             
            <tr>
         | 
| 616 603 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 617 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 618 | 
            -
            </td>
         | 
| 604 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 619 605 | 
             
            </tr>
         | 
| 620 606 | 
             
            <tr>
         | 
| 621 607 | 
             
            <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></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>
         | 
| 608 | 
            +
            <td>a new <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a>.</td>
         | 
| 624 609 | 
             
            </tr>
         | 
| 625 610 | 
             
            </tbody>
         | 
| 626 611 | 
             
            </table></div>
         | 
| 627 612 | 
             
            </div>
         | 
| 628 613 | 
             
            <hr>
         | 
| 629 | 
            -
            <div class="refsect2" | 
| 614 | 
            +
            <div class="refsect2">
         | 
| 630 615 | 
             
            <a name="gtk-toolbar-set-tooltips"></a><h3>gtk_toolbar_set_tooltips ()</h3>
         | 
| 631 616 | 
             
            <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>,
         | 
| 632 617 | 
             
                                                                     <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>
         | 
| 633 | 
            -
            <div class="warning"  | 
| 618 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 634 619 | 
             
            <h3 class="title">Warning</h3>
         | 
| 635 620 | 
             
            <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
         | 
| 636 621 | 
             
            is now used instead.</p>
         | 
| @@ -643,19 +628,17 @@ Sets if the tooltips of a toolbar should be active or not. | |
| 643 628 | 
             
            <tbody>
         | 
| 644 629 | 
             
            <tr>
         | 
| 645 630 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 646 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 647 | 
            -
            </td>
         | 
| 631 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 648 632 | 
             
            </tr>
         | 
| 649 633 | 
             
            <tr>
         | 
| 650 634 | 
             
            <td><p><span class="term"><em class="parameter"><code>enable</code></em> :</span></p></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>
         | 
| 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>
         | 
| 653 636 | 
             
            </tr>
         | 
| 654 637 | 
             
            </tbody>
         | 
| 655 638 | 
             
            </table></div>
         | 
| 656 639 | 
             
            </div>
         | 
| 657 640 | 
             
            <hr>
         | 
| 658 | 
            -
            <div class="refsect2" | 
| 641 | 
            +
            <div class="refsect2">
         | 
| 659 642 | 
             
            <a name="gtk-toolbar-unset-icon-size"></a><h3>gtk_toolbar_unset_icon_size ()</h3>
         | 
| 660 643 | 
             
            <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>
         | 
| 661 644 | 
             
            <p>
         | 
| @@ -672,7 +655,7 @@ user preferences will be used to determine the icon size. | |
| 672 655 | 
             
            </table></div>
         | 
| 673 656 | 
             
            </div>
         | 
| 674 657 | 
             
            <hr>
         | 
| 675 | 
            -
            <div class="refsect2" | 
| 658 | 
            +
            <div class="refsect2">
         | 
| 676 659 | 
             
            <a name="gtk-toolbar-get-show-arrow"></a><h3>gtk_toolbar_get_show_arrow ()</h3>
         | 
| 677 660 | 
             
            <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>
         | 
| 678 661 | 
             
            <p>
         | 
| @@ -689,19 +672,18 @@ See <a class="link" href="GtkToolbar.html#gtk-toolbar-set-show-arrow" title="gtk | |
| 689 672 | 
             
            </tr>
         | 
| 690 673 | 
             
            <tr>
         | 
| 691 674 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 692 | 
            -
            <td> | 
| 693 | 
            -
             | 
| 694 | 
            -
            </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>
         | 
| 695 677 | 
             
            </tr>
         | 
| 696 678 | 
             
            </tbody>
         | 
| 697 679 | 
             
            </table></div>
         | 
| 698 680 | 
             
            <p class="since">Since 2.4</p>
         | 
| 699 681 | 
             
            </div>
         | 
| 700 682 | 
             
            <hr>
         | 
| 701 | 
            -
            <div class="refsect2" | 
| 683 | 
            +
            <div class="refsect2">
         | 
| 702 684 | 
             
            <a name="gtk-toolbar-get-orientation"></a><h3>gtk_toolbar_get_orientation ()</h3>
         | 
| 703 685 | 
             
            <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>
         | 
| 704 | 
            -
            <div class="warning"  | 
| 686 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 705 687 | 
             
            <h3 class="title">Warning</h3>
         | 
| 706 688 | 
             
            <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>
         | 
| 707 689 | 
             
            </div>
         | 
| @@ -719,15 +701,13 @@ Retrieves the current orientation of the toolbar. See | |
| 719 701 | 
             
            </tr>
         | 
| 720 702 | 
             
            <tr>
         | 
| 721 703 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 722 | 
            -
            <td> | 
| 723 | 
            -
             | 
| 724 | 
            -
            </td>
         | 
| 704 | 
            +
            <td>the orientation</td>
         | 
| 725 705 | 
             
            </tr>
         | 
| 726 706 | 
             
            </tbody>
         | 
| 727 707 | 
             
            </table></div>
         | 
| 728 708 | 
             
            </div>
         | 
| 729 709 | 
             
            <hr>
         | 
| 730 | 
            -
            <div class="refsect2" | 
| 710 | 
            +
            <div class="refsect2">
         | 
| 731 711 | 
             
            <a name="gtk-toolbar-get-style"></a><h3>gtk_toolbar_get_style ()</h3>
         | 
| 732 712 | 
             
            <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>
         | 
| 733 713 | 
             
            <p>
         | 
| @@ -744,14 +724,14 @@ Retrieves whether the toolbar has text, icons, or both . See | |
| 744 724 | 
             
            </tr>
         | 
| 745 725 | 
             
            <tr>
         | 
| 746 726 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 747 | 
            -
            <td> | 
| 727 | 
            +
            <td>the current style of <em class="parameter"><code>toolbar</code></em>
         | 
| 748 728 | 
             
            </td>
         | 
| 749 729 | 
             
            </tr>
         | 
| 750 730 | 
             
            </tbody>
         | 
| 751 731 | 
             
            </table></div>
         | 
| 752 732 | 
             
            </div>
         | 
| 753 733 | 
             
            <hr>
         | 
| 754 | 
            -
            <div class="refsect2" | 
| 734 | 
            +
            <div class="refsect2">
         | 
| 755 735 | 
             
            <a name="gtk-toolbar-get-icon-size"></a><h3>gtk_toolbar_get_icon_size ()</h3>
         | 
| 756 736 | 
             
            <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>
         | 
| 757 737 | 
             
            <p>
         | 
| @@ -767,18 +747,18 @@ Retrieves the icon size for the toolbar. See <a class="link" href="GtkToolbar.ht | |
| 767 747 | 
             
            </tr>
         | 
| 768 748 | 
             
            <tr>
         | 
| 769 749 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 770 | 
            -
            <td> | 
| 771 | 
            -
            the toolbar. <span class="annotation">[type int]</span>
         | 
| 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>
         | 
| 772 752 | 
             
            </td>
         | 
| 773 753 | 
             
            </tr>
         | 
| 774 754 | 
             
            </tbody>
         | 
| 775 755 | 
             
            </table></div>
         | 
| 776 756 | 
             
            </div>
         | 
| 777 757 | 
             
            <hr>
         | 
| 778 | 
            -
            <div class="refsect2" | 
| 758 | 
            +
            <div class="refsect2">
         | 
| 779 759 | 
             
            <a name="gtk-toolbar-get-tooltips"></a><h3>gtk_toolbar_get_tooltips ()</h3>
         | 
| 780 760 | 
             
            <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>
         | 
| 781 | 
            -
            <div class="warning"  | 
| 761 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 782 762 | 
             
            <h3 class="title">Warning</h3>
         | 
| 783 763 | 
             
            <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
         | 
| 784 764 | 
             
            is now used instead.</p>
         | 
| @@ -797,15 +777,14 @@ Retrieves whether tooltips are enabled. See | |
| 797 777 | 
             
            </tr>
         | 
| 798 778 | 
             
            <tr>
         | 
| 799 779 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 800 | 
            -
            <td> | 
| 801 | 
            -
             | 
| 802 | 
            -
            </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>
         | 
| 803 782 | 
             
            </tr>
         | 
| 804 783 | 
             
            </tbody>
         | 
| 805 784 | 
             
            </table></div>
         | 
| 806 785 | 
             
            </div>
         | 
| 807 786 | 
             
            <hr>
         | 
| 808 | 
            -
            <div class="refsect2" | 
| 787 | 
            +
            <div class="refsect2">
         | 
| 809 788 | 
             
            <a name="gtk-toolbar-get-relief-style"></a><h3>gtk_toolbar_get_relief_style ()</h3>
         | 
| 810 789 | 
             
            <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>
         | 
| 811 790 | 
             
            <p>
         | 
| @@ -822,25 +801,23 @@ Returns the relief style of buttons on <em class="parameter"><code>toolbar</code | |
| 822 801 | 
             
            </tr>
         | 
| 823 802 | 
             
            <tr>
         | 
| 824 803 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 825 | 
            -
            <td> | 
| 826 | 
            -
             | 
| 827 | 
            -
            </td>
         | 
| 804 | 
            +
            <td>The relief style of buttons on <em class="parameter"><code>toolbar</code></em>.</td>
         | 
| 828 805 | 
             
            </tr>
         | 
| 829 806 | 
             
            </tbody>
         | 
| 830 807 | 
             
            </table></div>
         | 
| 831 808 | 
             
            <p class="since">Since 2.4</p>
         | 
| 832 809 | 
             
            </div>
         | 
| 833 810 | 
             
            <hr>
         | 
| 834 | 
            -
            <div class="refsect2" | 
| 811 | 
            +
            <div class="refsect2">
         | 
| 835 812 | 
             
            <a name="gtk-toolbar-append-item"></a><h3>gtk_toolbar_append_item ()</h3>
         | 
| 836 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 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>,
         | 
| 837 814 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
         | 
| 838 815 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
         | 
| 839 816 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
         | 
| 840 817 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
         | 
| 841 818 | 
             
                                                                     <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>,
         | 
| 842 819 | 
             
                                                                     <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>
         | 
| 843 | 
            -
            <div class="warning"  | 
| 820 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 844 821 | 
             
            <h3 class="title">Warning</h3>
         | 
| 845 822 | 
             
            <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>
         | 
| 846 823 | 
             
            </div>
         | 
| @@ -857,59 +834,50 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject- | |
| 857 834 | 
             
            <tbody>
         | 
| 858 835 | 
             
            <tr>
         | 
| 859 836 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 860 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 861 | 
            -
            </td>
         | 
| 837 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 862 838 | 
             
            </tr>
         | 
| 863 839 | 
             
            <tr>
         | 
| 864 840 | 
             
            <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
         | 
| 865 | 
            -
            <td>give your toolbar button a label | 
| 866 | 
            -
            </td>
         | 
| 841 | 
            +
            <td>give your toolbar button a label.</td>
         | 
| 867 842 | 
             
            </tr>
         | 
| 868 843 | 
             
            <tr>
         | 
| 869 844 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 870 | 
            -
            <td>a string that appears when the user holds the mouse over this item | 
| 871 | 
            -
            </td>
         | 
| 845 | 
            +
            <td>a string that appears when the user holds the mouse over this item.</td>
         | 
| 872 846 | 
             
            </tr>
         | 
| 873 847 | 
             
            <tr>
         | 
| 874 848 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 875 | 
            -
            <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a | 
| 876 | 
            -
            </td>
         | 
| 849 | 
            +
            <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a>.</td>
         | 
| 877 850 | 
             
            </tr>
         | 
| 878 851 | 
             
            <tr>
         | 
| 879 852 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></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>
         | 
| 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>
         | 
| 882 854 | 
             
            </tr>
         | 
| 883 855 | 
             
            <tr>
         | 
| 884 856 | 
             
            <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
         | 
| 885 | 
            -
            <td>the function to be executed when the button is pressed | 
| 886 | 
            -
            </td>
         | 
| 857 | 
            +
            <td>the function to be executed when the button is pressed.</td>
         | 
| 887 858 | 
             
            </tr>
         | 
| 888 859 | 
             
            <tr>
         | 
| 889 860 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 890 | 
            -
            <td>a pointer to any data you wish to be passed to the callback | 
| 891 | 
            -
            </td>
         | 
| 861 | 
            +
            <td>a pointer to any data you wish to be passed to the callback.</td>
         | 
| 892 862 | 
             
            </tr>
         | 
| 893 863 | 
             
            <tr>
         | 
| 894 864 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 895 | 
            -
            <td> | 
| 896 | 
            -
             | 
| 897 | 
            -
            </td>
         | 
| 865 | 
            +
            <td>the new toolbar item as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
         | 
| 898 866 | 
             
            </tr>
         | 
| 899 867 | 
             
            </tbody>
         | 
| 900 868 | 
             
            </table></div>
         | 
| 901 869 | 
             
            </div>
         | 
| 902 870 | 
             
            <hr>
         | 
| 903 | 
            -
            <div class="refsect2" | 
| 871 | 
            +
            <div class="refsect2">
         | 
| 904 872 | 
             
            <a name="gtk-toolbar-prepend-item"></a><h3>gtk_toolbar_prepend_item ()</h3>
         | 
| 905 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 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>,
         | 
| 906 874 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
         | 
| 907 875 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
         | 
| 908 876 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
         | 
| 909 877 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
         | 
| 910 878 | 
             
                                                                     <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>,
         | 
| 911 879 | 
             
                                                                     <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>
         | 
| 912 | 
            -
            <div class="warning"  | 
| 880 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 913 881 | 
             
            <h3 class="title">Warning</h3>
         | 
| 914 882 | 
             
            <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>
         | 
| 915 883 | 
             
            </div>
         | 
| @@ -925,52 +893,43 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject- | |
| 925 893 | 
             
            <tbody>
         | 
| 926 894 | 
             
            <tr>
         | 
| 927 895 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 928 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 929 | 
            -
            </td>
         | 
| 896 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 930 897 | 
             
            </tr>
         | 
| 931 898 | 
             
            <tr>
         | 
| 932 899 | 
             
            <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
         | 
| 933 | 
            -
            <td>give your toolbar button a label | 
| 934 | 
            -
            </td>
         | 
| 900 | 
            +
            <td>give your toolbar button a label.</td>
         | 
| 935 901 | 
             
            </tr>
         | 
| 936 902 | 
             
            <tr>
         | 
| 937 903 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 938 | 
            -
            <td>a string that appears when the user holds the mouse over this item | 
| 939 | 
            -
            </td>
         | 
| 904 | 
            +
            <td>a string that appears when the user holds the mouse over this item.</td>
         | 
| 940 905 | 
             
            </tr>
         | 
| 941 906 | 
             
            <tr>
         | 
| 942 907 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 943 | 
            -
            <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a | 
| 944 | 
            -
            </td>
         | 
| 908 | 
            +
            <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a>.</td>
         | 
| 945 909 | 
             
            </tr>
         | 
| 946 910 | 
             
            <tr>
         | 
| 947 911 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></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>
         | 
| 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>
         | 
| 950 913 | 
             
            </tr>
         | 
| 951 914 | 
             
            <tr>
         | 
| 952 915 | 
             
            <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
         | 
| 953 | 
            -
            <td>the function to be executed when the button is pressed | 
| 954 | 
            -
            </td>
         | 
| 916 | 
            +
            <td>the function to be executed when the button is pressed.</td>
         | 
| 955 917 | 
             
            </tr>
         | 
| 956 918 | 
             
            <tr>
         | 
| 957 919 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 958 | 
            -
            <td>a pointer to any data you wish to be passed to the callback | 
| 959 | 
            -
            </td>
         | 
| 920 | 
            +
            <td>a pointer to any data you wish to be passed to the callback.</td>
         | 
| 960 921 | 
             
            </tr>
         | 
| 961 922 | 
             
            <tr>
         | 
| 962 923 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 963 | 
            -
            <td> | 
| 964 | 
            -
             | 
| 965 | 
            -
            </td>
         | 
| 924 | 
            +
            <td>the new toolbar item as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
         | 
| 966 925 | 
             
            </tr>
         | 
| 967 926 | 
             
            </tbody>
         | 
| 968 927 | 
             
            </table></div>
         | 
| 969 928 | 
             
            </div>
         | 
| 970 929 | 
             
            <hr>
         | 
| 971 | 
            -
            <div class="refsect2" | 
| 930 | 
            +
            <div class="refsect2">
         | 
| 972 931 | 
             
            <a name="gtk-toolbar-insert-item"></a><h3>gtk_toolbar_insert_item ()</h3>
         | 
| 973 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 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>,
         | 
| 974 933 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
         | 
| 975 934 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
         | 
| 976 935 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
         | 
| @@ -978,7 +937,7 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject- | |
| 978 937 | 
             
                                                                     <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>,
         | 
| 979 938 | 
             
                                                                     <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>,
         | 
| 980 939 | 
             
                                                                     <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>
         | 
| 981 | 
            -
            <div class="warning"  | 
| 940 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 982 941 | 
             
            <h3 class="title">Warning</h3>
         | 
| 983 942 | 
             
            <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>
         | 
| 984 943 | 
             
            </div>
         | 
| @@ -995,58 +954,48 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject- | |
| 995 954 | 
             
            <tbody>
         | 
| 996 955 | 
             
            <tr>
         | 
| 997 956 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 998 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 999 | 
            -
            </td>
         | 
| 957 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1000 958 | 
             
            </tr>
         | 
| 1001 959 | 
             
            <tr>
         | 
| 1002 960 | 
             
            <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
         | 
| 1003 | 
            -
            <td>give your toolbar button a label | 
| 1004 | 
            -
            </td>
         | 
| 961 | 
            +
            <td>give your toolbar button a label.</td>
         | 
| 1005 962 | 
             
            </tr>
         | 
| 1006 963 | 
             
            <tr>
         | 
| 1007 964 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 1008 | 
            -
            <td>a string that appears when the user holds the mouse over this item | 
| 1009 | 
            -
            </td>
         | 
| 965 | 
            +
            <td>a string that appears when the user holds the mouse over this item.</td>
         | 
| 1010 966 | 
             
            </tr>
         | 
| 1011 967 | 
             
            <tr>
         | 
| 1012 968 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 1013 | 
            -
            <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a | 
| 1014 | 
            -
            </td>
         | 
| 969 | 
            +
            <td>use with <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery"><span class="type">GtkTipsQuery</span></a>.</td>
         | 
| 1015 970 | 
             
            </tr>
         | 
| 1016 971 | 
             
            <tr>
         | 
| 1017 972 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></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>
         | 
| 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>
         | 
| 1020 974 | 
             
            </tr>
         | 
| 1021 975 | 
             
            <tr>
         | 
| 1022 976 | 
             
            <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
         | 
| 1023 | 
            -
            <td>the function to be executed when the button is pressed | 
| 1024 | 
            -
            </td>
         | 
| 977 | 
            +
            <td>the function to be executed when the button is pressed.</td>
         | 
| 1025 978 | 
             
            </tr>
         | 
| 1026 979 | 
             
            <tr>
         | 
| 1027 980 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 1028 | 
            -
            <td>a pointer to any data you wish to be passed to the callback | 
| 1029 | 
            -
            </td>
         | 
| 981 | 
            +
            <td>a pointer to any data you wish to be passed to the callback.</td>
         | 
| 1030 982 | 
             
            </tr>
         | 
| 1031 983 | 
             
            <tr>
         | 
| 1032 984 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 1033 | 
            -
            <td>the number of widgets to insert this item after | 
| 1034 | 
            -
            </td>
         | 
| 985 | 
            +
            <td>the number of widgets to insert this item after.</td>
         | 
| 1035 986 | 
             
            </tr>
         | 
| 1036 987 | 
             
            <tr>
         | 
| 1037 988 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1038 | 
            -
            <td> | 
| 1039 | 
            -
             | 
| 1040 | 
            -
            </td>
         | 
| 989 | 
            +
            <td>the new toolbar item as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
         | 
| 1041 990 | 
             
            </tr>
         | 
| 1042 991 | 
             
            </tbody>
         | 
| 1043 992 | 
             
            </table></div>
         | 
| 1044 993 | 
             
            </div>
         | 
| 1045 994 | 
             
            <hr>
         | 
| 1046 | 
            -
            <div class="refsect2" | 
| 995 | 
            +
            <div class="refsect2">
         | 
| 1047 996 | 
             
            <a name="gtk-toolbar-append-space"></a><h3>gtk_toolbar_append_space ()</h3>
         | 
| 1048 997 | 
             
            <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>
         | 
| 1049 | 
            -
            <div class="warning"  | 
| 998 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1050 999 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1051 1000 | 
             
            <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>
         | 
| 1052 1001 | 
             
            </div>
         | 
| @@ -1057,16 +1006,15 @@ Adds a new space to the end of the toolbar. | |
| 1057 1006 | 
             
            <col align="left" valign="top">
         | 
| 1058 1007 | 
             
            <tbody><tr>
         | 
| 1059 1008 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1060 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1061 | 
            -
            </td>
         | 
| 1009 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1062 1010 | 
             
            </tr></tbody>
         | 
| 1063 1011 | 
             
            </table></div>
         | 
| 1064 1012 | 
             
            </div>
         | 
| 1065 1013 | 
             
            <hr>
         | 
| 1066 | 
            -
            <div class="refsect2" | 
| 1014 | 
            +
            <div class="refsect2">
         | 
| 1067 1015 | 
             
            <a name="gtk-toolbar-prepend-space"></a><h3>gtk_toolbar_prepend_space ()</h3>
         | 
| 1068 1016 | 
             
            <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>
         | 
| 1069 | 
            -
            <div class="warning"  | 
| 1017 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1070 1018 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1071 1019 | 
             
            <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>
         | 
| 1072 1020 | 
             
            </div>
         | 
| @@ -1077,17 +1025,16 @@ Adds a new space to the beginning of the toolbar. | |
| 1077 1025 | 
             
            <col align="left" valign="top">
         | 
| 1078 1026 | 
             
            <tbody><tr>
         | 
| 1079 1027 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1080 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1081 | 
            -
            </td>
         | 
| 1028 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1082 1029 | 
             
            </tr></tbody>
         | 
| 1083 1030 | 
             
            </table></div>
         | 
| 1084 1031 | 
             
            </div>
         | 
| 1085 1032 | 
             
            <hr>
         | 
| 1086 | 
            -
            <div class="refsect2" | 
| 1033 | 
            +
            <div class="refsect2">
         | 
| 1087 1034 | 
             
            <a name="gtk-toolbar-insert-space"></a><h3>gtk_toolbar_insert_space ()</h3>
         | 
| 1088 1035 | 
             
            <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>,
         | 
| 1089 1036 | 
             
                                                                     <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>
         | 
| 1090 | 
            -
            <div class="warning"  | 
| 1037 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1091 1038 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1092 1039 | 
             
            <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>
         | 
| 1093 1040 | 
             
            </div>
         | 
| @@ -1104,16 +1051,15 @@ Inserts a new space in the toolbar at the specified position. | |
| 1104 1051 | 
             
            </tr>
         | 
| 1105 1052 | 
             
            <tr>
         | 
| 1106 1053 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 1107 | 
            -
            <td>the number of widgets after which a space should be inserted | 
| 1108 | 
            -
            </td>
         | 
| 1054 | 
            +
            <td>the number of widgets after which a space should be inserted.</td>
         | 
| 1109 1055 | 
             
            </tr>
         | 
| 1110 1056 | 
             
            </tbody>
         | 
| 1111 1057 | 
             
            </table></div>
         | 
| 1112 1058 | 
             
            </div>
         | 
| 1113 1059 | 
             
            <hr>
         | 
| 1114 | 
            -
            <div class="refsect2" | 
| 1060 | 
            +
            <div class="refsect2">
         | 
| 1115 1061 | 
             
            <a name="gtk-toolbar-append-element"></a><h3>gtk_toolbar_append_element ()</h3>
         | 
| 1116 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 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>,
         | 
| 1117 1063 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> type</code></em>,
         | 
| 1118 1064 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
         | 
| 1119 1065 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
         | 
| @@ -1122,7 +1068,7 @@ Inserts a new space in the toolbar at the specified position. | |
| 1122 1068 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
         | 
| 1123 1069 | 
             
                                                                     <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>,
         | 
| 1124 1070 | 
             
                                                                     <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>
         | 
| 1125 | 
            -
            <div class="warning"  | 
| 1071 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1126 1072 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1127 1073 | 
             
            <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>
         | 
| 1128 1074 | 
             
            </div>
         | 
| @@ -1139,67 +1085,61 @@ be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht | |
| 1139 1085 | 
             
            <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
         | 
| 1140 1086 | 
             
            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>.
         | 
| 1141 1087 | 
             
            </p>
         | 
| 1088 | 
            +
            <p>
         | 
| 1089 | 
            +
            </p>
         | 
| 1090 | 
            +
            <p>
         | 
| 1091 | 
            +
            </p>
         | 
| 1142 1092 | 
             
            <div class="variablelist"><table border="0">
         | 
| 1143 1093 | 
             
            <col align="left" valign="top">
         | 
| 1144 1094 | 
             
            <tbody>
         | 
| 1145 1095 | 
             
            <tr>
         | 
| 1146 1096 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1147 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1148 | 
            -
            </td>
         | 
| 1097 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1149 1098 | 
             
            </tr>
         | 
| 1150 1099 | 
             
            <tr>
         | 
| 1151 1100 | 
             
            <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></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>
         | 
| 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>
         | 
| 1154 1102 | 
             
            </tr>
         | 
| 1155 1103 | 
             
            <tr>
         | 
| 1156 1104 | 
             
            <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
         | 
| 1157 | 
            -
            <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>
         | 
| 1158 1106 | 
             
            </td>
         | 
| 1159 1107 | 
             
            </tr>
         | 
| 1160 1108 | 
             
            <tr>
         | 
| 1161 1109 | 
             
            <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
         | 
| 1162 | 
            -
            <td>the element's label | 
| 1163 | 
            -
            </td>
         | 
| 1110 | 
            +
            <td>the element's label.</td>
         | 
| 1164 1111 | 
             
            </tr>
         | 
| 1165 1112 | 
             
            <tr>
         | 
| 1166 1113 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 1167 | 
            -
            <td>the element's tooltip | 
| 1168 | 
            -
            </td>
         | 
| 1114 | 
            +
            <td>the element's tooltip.</td>
         | 
| 1169 1115 | 
             
            </tr>
         | 
| 1170 1116 | 
             
            <tr>
         | 
| 1171 1117 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 1172 | 
            -
            <td>used for context-sensitive help about this toolbar element | 
| 1173 | 
            -
            </td>
         | 
| 1118 | 
            +
            <td>used for context-sensitive help about this toolbar element.</td>
         | 
| 1174 1119 | 
             
            </tr>
         | 
| 1175 1120 | 
             
            <tr>
         | 
| 1176 1121 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></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>
         | 
| 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>
         | 
| 1179 1123 | 
             
            </tr>
         | 
| 1180 1124 | 
             
            <tr>
         | 
| 1181 1125 | 
             
            <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
         | 
| 1182 | 
            -
            <td>the function to be executed when the button is pressed | 
| 1183 | 
            -
            </td>
         | 
| 1126 | 
            +
            <td>the function to be executed when the button is pressed.</td>
         | 
| 1184 1127 | 
             
            </tr>
         | 
| 1185 1128 | 
             
            <tr>
         | 
| 1186 1129 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 1187 | 
            -
            <td>any data you wish to pass to the callback | 
| 1188 | 
            -
            </td>
         | 
| 1130 | 
            +
            <td>any data you wish to pass to the callback.</td>
         | 
| 1189 1131 | 
             
            </tr>
         | 
| 1190 1132 | 
             
            <tr>
         | 
| 1191 1133 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1192 | 
            -
            <td> | 
| 1193 | 
            -
             | 
| 1194 | 
            -
            </td>
         | 
| 1134 | 
            +
            <td>the new toolbar element as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
         | 
| 1195 1135 | 
             
            </tr>
         | 
| 1196 1136 | 
             
            </tbody>
         | 
| 1197 1137 | 
             
            </table></div>
         | 
| 1198 1138 | 
             
            </div>
         | 
| 1199 1139 | 
             
            <hr>
         | 
| 1200 | 
            -
            <div class="refsect2" | 
| 1140 | 
            +
            <div class="refsect2">
         | 
| 1201 1141 | 
             
            <a name="gtk-toolbar-prepend-element"></a><h3>gtk_toolbar_prepend_element ()</h3>
         | 
| 1202 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 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>,
         | 
| 1203 1143 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> type</code></em>,
         | 
| 1204 1144 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
         | 
| 1205 1145 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
         | 
| @@ -1208,7 +1148,7 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject- | |
| 1208 1148 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *icon</code></em>,
         | 
| 1209 1149 | 
             
                                                                     <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>,
         | 
| 1210 1150 | 
             
                                                                     <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>
         | 
| 1211 | 
            -
            <div class="warning"  | 
| 1151 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1212 1152 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1213 1153 | 
             
            <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>
         | 
| 1214 1154 | 
             
            </div>
         | 
| @@ -1230,62 +1170,52 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject- | |
| 1230 1170 | 
             
            <tbody>
         | 
| 1231 1171 | 
             
            <tr>
         | 
| 1232 1172 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1233 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1234 | 
            -
            </td>
         | 
| 1173 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1235 1174 | 
             
            </tr>
         | 
| 1236 1175 | 
             
            <tr>
         | 
| 1237 1176 | 
             
            <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></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>
         | 
| 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>
         | 
| 1240 1178 | 
             
            </tr>
         | 
| 1241 1179 | 
             
            <tr>
         | 
| 1242 1180 | 
             
            <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
         | 
| 1243 | 
            -
            <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>
         | 
| 1244 1182 | 
             
            </td>
         | 
| 1245 1183 | 
             
            </tr>
         | 
| 1246 1184 | 
             
            <tr>
         | 
| 1247 1185 | 
             
            <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
         | 
| 1248 | 
            -
            <td>the element's label | 
| 1249 | 
            -
            </td>
         | 
| 1186 | 
            +
            <td>the element's label.</td>
         | 
| 1250 1187 | 
             
            </tr>
         | 
| 1251 1188 | 
             
            <tr>
         | 
| 1252 1189 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 1253 | 
            -
            <td>the element's tooltip | 
| 1254 | 
            -
            </td>
         | 
| 1190 | 
            +
            <td>the element's tooltip.</td>
         | 
| 1255 1191 | 
             
            </tr>
         | 
| 1256 1192 | 
             
            <tr>
         | 
| 1257 1193 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 1258 | 
            -
            <td>used for context-sensitive help about this toolbar element | 
| 1259 | 
            -
            </td>
         | 
| 1194 | 
            +
            <td>used for context-sensitive help about this toolbar element.</td>
         | 
| 1260 1195 | 
             
            </tr>
         | 
| 1261 1196 | 
             
            <tr>
         | 
| 1262 1197 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></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>
         | 
| 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>
         | 
| 1265 1199 | 
             
            </tr>
         | 
| 1266 1200 | 
             
            <tr>
         | 
| 1267 1201 | 
             
            <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
         | 
| 1268 | 
            -
            <td>the function to be executed when the button is pressed | 
| 1269 | 
            -
            </td>
         | 
| 1202 | 
            +
            <td>the function to be executed when the button is pressed.</td>
         | 
| 1270 1203 | 
             
            </tr>
         | 
| 1271 1204 | 
             
            <tr>
         | 
| 1272 1205 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 1273 | 
            -
            <td>any data you wish to pass to the callback | 
| 1274 | 
            -
            </td>
         | 
| 1206 | 
            +
            <td>any data you wish to pass to the callback.</td>
         | 
| 1275 1207 | 
             
            </tr>
         | 
| 1276 1208 | 
             
            <tr>
         | 
| 1277 1209 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1278 | 
            -
            <td> | 
| 1279 | 
            -
             | 
| 1280 | 
            -
            </td>
         | 
| 1210 | 
            +
            <td>the new toolbar element as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
         | 
| 1281 1211 | 
             
            </tr>
         | 
| 1282 1212 | 
             
            </tbody>
         | 
| 1283 1213 | 
             
            </table></div>
         | 
| 1284 1214 | 
             
            </div>
         | 
| 1285 1215 | 
             
            <hr>
         | 
| 1286 | 
            -
            <div class="refsect2" | 
| 1216 | 
            +
            <div class="refsect2">
         | 
| 1287 1217 | 
             
            <a name="gtk-toolbar-insert-element"></a><h3>gtk_toolbar_insert_element ()</h3>
         | 
| 1288 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 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>,
         | 
| 1289 1219 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkToolbar.html#GtkToolbarChildType" title="enum GtkToolbarChildType"><span class="type">GtkToolbarChildType</span></a> type</code></em>,
         | 
| 1290 1220 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
         | 
| 1291 1221 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *text</code></em>,
         | 
| @@ -1295,7 +1225,7 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject- | |
| 1295 1225 | 
             
                                                                     <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>,
         | 
| 1296 1226 | 
             
                                                                     <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>,
         | 
| 1297 1227 | 
             
                                                                     <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>
         | 
| 1298 | 
            -
            <div class="warning"  | 
| 1228 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1299 1229 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1300 1230 | 
             
            <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>
         | 
| 1301 1231 | 
             
            </div>
         | 
| @@ -1317,72 +1247,61 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject- | |
| 1317 1247 | 
             
            <tbody>
         | 
| 1318 1248 | 
             
            <tr>
         | 
| 1319 1249 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1320 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1321 | 
            -
            </td>
         | 
| 1250 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1322 1251 | 
             
            </tr>
         | 
| 1323 1252 | 
             
            <tr>
         | 
| 1324 1253 | 
             
            <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
         | 
| 1325 1254 | 
             
            <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>
         | 
| 1326 | 
            -
             | 
| 1327 | 
            -
            </td>
         | 
| 1255 | 
            +
            will be.</td>
         | 
| 1328 1256 | 
             
            </tr>
         | 
| 1329 1257 | 
             
            <tr>
         | 
| 1330 1258 | 
             
            <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
         | 
| 1331 | 
            -
            <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>
         | 
| 1332 1260 | 
             
            </td>
         | 
| 1333 1261 | 
             
            </tr>
         | 
| 1334 1262 | 
             
            <tr>
         | 
| 1335 1263 | 
             
            <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
         | 
| 1336 | 
            -
            <td>the element's label | 
| 1337 | 
            -
            </td>
         | 
| 1264 | 
            +
            <td>the element's label.</td>
         | 
| 1338 1265 | 
             
            </tr>
         | 
| 1339 1266 | 
             
            <tr>
         | 
| 1340 1267 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 1341 | 
            -
            <td>the element's tooltip | 
| 1342 | 
            -
            </td>
         | 
| 1268 | 
            +
            <td>the element's tooltip.</td>
         | 
| 1343 1269 | 
             
            </tr>
         | 
| 1344 1270 | 
             
            <tr>
         | 
| 1345 1271 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 1346 | 
            -
            <td>used for context-sensitive help about this toolbar element | 
| 1347 | 
            -
            </td>
         | 
| 1272 | 
            +
            <td>used for context-sensitive help about this toolbar element.</td>
         | 
| 1348 1273 | 
             
            </tr>
         | 
| 1349 1274 | 
             
            <tr>
         | 
| 1350 1275 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></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>
         | 
| 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>
         | 
| 1353 1277 | 
             
            </tr>
         | 
| 1354 1278 | 
             
            <tr>
         | 
| 1355 1279 | 
             
            <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
         | 
| 1356 | 
            -
            <td>the function to be executed when the button is pressed | 
| 1357 | 
            -
            </td>
         | 
| 1280 | 
            +
            <td>the function to be executed when the button is pressed.</td>
         | 
| 1358 1281 | 
             
            </tr>
         | 
| 1359 1282 | 
             
            <tr>
         | 
| 1360 1283 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 1361 | 
            -
            <td>any data you wish to pass to the callback | 
| 1362 | 
            -
            </td>
         | 
| 1284 | 
            +
            <td>any data you wish to pass to the callback.</td>
         | 
| 1363 1285 | 
             
            </tr>
         | 
| 1364 1286 | 
             
            <tr>
         | 
| 1365 1287 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 1366 | 
            -
            <td>the number of widgets to insert this element after | 
| 1367 | 
            -
            </td>
         | 
| 1288 | 
            +
            <td>the number of widgets to insert this element after.</td>
         | 
| 1368 1289 | 
             
            </tr>
         | 
| 1369 1290 | 
             
            <tr>
         | 
| 1370 1291 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1371 | 
            -
            <td> | 
| 1372 | 
            -
             | 
| 1373 | 
            -
            </td>
         | 
| 1292 | 
            +
            <td>the new toolbar element as a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>.</td>
         | 
| 1374 1293 | 
             
            </tr>
         | 
| 1375 1294 | 
             
            </tbody>
         | 
| 1376 1295 | 
             
            </table></div>
         | 
| 1377 1296 | 
             
            </div>
         | 
| 1378 1297 | 
             
            <hr>
         | 
| 1379 | 
            -
            <div class="refsect2" | 
| 1298 | 
            +
            <div class="refsect2">
         | 
| 1380 1299 | 
             
            <a name="gtk-toolbar-append-widget"></a><h3>gtk_toolbar_append_widget ()</h3>
         | 
| 1381 1300 | 
             
            <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>,
         | 
| 1382 1301 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
         | 
| 1383 1302 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
         | 
| 1384 1303 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>);</pre>
         | 
| 1385 | 
            -
            <div class="warning"  | 
| 1304 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1386 1305 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1387 1306 | 
             
            <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>
         | 
| 1388 1307 | 
             
            </div>
         | 
| @@ -1394,35 +1313,33 @@ Adds a widget to the end of the given toolbar. | |
| 1394 1313 | 
             
            <tbody>
         | 
| 1395 1314 | 
             
            <tr>
         | 
| 1396 1315 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1397 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1398 | 
            -
            </td>
         | 
| 1316 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1399 1317 | 
             
            </tr>
         | 
| 1400 1318 | 
             
            <tr>
         | 
| 1401 1319 | 
             
            <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></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>
         | 
| 1320 | 
            +
            <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to add to the toolbar.</td>
         | 
| 1404 1321 | 
             
            </tr>
         | 
| 1405 1322 | 
             
            <tr>
         | 
| 1406 1323 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 1407 | 
            -
            <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>
         | 
| 1408 1325 | 
             
            </td>
         | 
| 1409 1326 | 
             
            </tr>
         | 
| 1410 1327 | 
             
            <tr>
         | 
| 1411 1328 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 1412 | 
            -
            <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>
         | 
| 1413 1330 | 
             
            </td>
         | 
| 1414 1331 | 
             
            </tr>
         | 
| 1415 1332 | 
             
            </tbody>
         | 
| 1416 1333 | 
             
            </table></div>
         | 
| 1417 1334 | 
             
            </div>
         | 
| 1418 1335 | 
             
            <hr>
         | 
| 1419 | 
            -
            <div class="refsect2" | 
| 1336 | 
            +
            <div class="refsect2">
         | 
| 1420 1337 | 
             
            <a name="gtk-toolbar-prepend-widget"></a><h3>gtk_toolbar_prepend_widget ()</h3>
         | 
| 1421 1338 | 
             
            <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>,
         | 
| 1422 1339 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
         | 
| 1423 1340 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
         | 
| 1424 1341 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>);</pre>
         | 
| 1425 | 
            -
            <div class="warning"  | 
| 1342 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1426 1343 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1427 1344 | 
             
            <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>
         | 
| 1428 1345 | 
             
            </div>
         | 
| @@ -1434,36 +1351,34 @@ Adds a widget to the beginning of the given toolbar. | |
| 1434 1351 | 
             
            <tbody>
         | 
| 1435 1352 | 
             
            <tr>
         | 
| 1436 1353 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1437 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1438 | 
            -
            </td>
         | 
| 1354 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1439 1355 | 
             
            </tr>
         | 
| 1440 1356 | 
             
            <tr>
         | 
| 1441 1357 | 
             
            <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></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>
         | 
| 1358 | 
            +
            <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to add to the toolbar.</td>
         | 
| 1444 1359 | 
             
            </tr>
         | 
| 1445 1360 | 
             
            <tr>
         | 
| 1446 1361 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 1447 | 
            -
            <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>
         | 
| 1448 1363 | 
             
            </td>
         | 
| 1449 1364 | 
             
            </tr>
         | 
| 1450 1365 | 
             
            <tr>
         | 
| 1451 1366 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 1452 | 
            -
            <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>
         | 
| 1453 1368 | 
             
            </td>
         | 
| 1454 1369 | 
             
            </tr>
         | 
| 1455 1370 | 
             
            </tbody>
         | 
| 1456 1371 | 
             
            </table></div>
         | 
| 1457 1372 | 
             
            </div>
         | 
| 1458 1373 | 
             
            <hr>
         | 
| 1459 | 
            -
            <div class="refsect2" | 
| 1374 | 
            +
            <div class="refsect2">
         | 
| 1460 1375 | 
             
            <a name="gtk-toolbar-insert-widget"></a><h3>gtk_toolbar_insert_widget ()</h3>
         | 
| 1461 1376 | 
             
            <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>,
         | 
| 1462 1377 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
         | 
| 1463 1378 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
         | 
| 1464 1379 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
         | 
| 1465 1380 | 
             
                                                                     <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>
         | 
| 1466 | 
            -
            <div class="warning"  | 
| 1381 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1467 1382 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1468 1383 | 
             
            <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>
         | 
| 1469 1384 | 
             
            </div>
         | 
| @@ -1475,34 +1390,31 @@ Inserts a widget in the toolbar at the given position. | |
| 1475 1390 | 
             
            <tbody>
         | 
| 1476 1391 | 
             
            <tr>
         | 
| 1477 1392 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1478 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1479 | 
            -
            </td>
         | 
| 1393 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1480 1394 | 
             
            </tr>
         | 
| 1481 1395 | 
             
            <tr>
         | 
| 1482 1396 | 
             
            <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></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>
         | 
| 1397 | 
            +
            <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to add to the toolbar.</td>
         | 
| 1485 1398 | 
             
            </tr>
         | 
| 1486 1399 | 
             
            <tr>
         | 
| 1487 1400 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 1488 | 
            -
            <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>
         | 
| 1489 1402 | 
             
            </td>
         | 
| 1490 1403 | 
             
            </tr>
         | 
| 1491 1404 | 
             
            <tr>
         | 
| 1492 1405 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 1493 | 
            -
            <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>
         | 
| 1494 1407 | 
             
            </td>
         | 
| 1495 1408 | 
             
            </tr>
         | 
| 1496 1409 | 
             
            <tr>
         | 
| 1497 1410 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 1498 | 
            -
            <td>the number of widgets to insert this widget after | 
| 1499 | 
            -
            </td>
         | 
| 1411 | 
            +
            <td>the number of widgets to insert this widget after.</td>
         | 
| 1500 1412 | 
             
            </tr>
         | 
| 1501 1413 | 
             
            </tbody>
         | 
| 1502 1414 | 
             
            </table></div>
         | 
| 1503 1415 | 
             
            </div>
         | 
| 1504 1416 | 
             
            <hr>
         | 
| 1505 | 
            -
            <div class="refsect2" | 
| 1417 | 
            +
            <div class="refsect2">
         | 
| 1506 1418 | 
             
            <a name="gtk-toolbar-set-style"></a><h3>gtk_toolbar_set_style ()</h3>
         | 
| 1507 1419 | 
             
            <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>,
         | 
| 1508 1420 | 
             
                                                                     <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>
         | 
| @@ -1514,28 +1426,26 @@ Alters the view of <em class="parameter"><code>toolbar</code></em> to display ei | |
| 1514 1426 | 
             
            <tbody>
         | 
| 1515 1427 | 
             
            <tr>
         | 
| 1516 1428 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1517 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1518 | 
            -
            </td>
         | 
| 1429 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1519 1430 | 
             
            </tr>
         | 
| 1520 1431 | 
             
            <tr>
         | 
| 1521 1432 | 
             
            <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
         | 
| 1522 | 
            -
            <td>the new style for <em class="parameter"><code>toolbar</code></em | 
| 1523 | 
            -
            </td>
         | 
| 1433 | 
            +
            <td>the new style for <em class="parameter"><code>toolbar</code></em>.</td>
         | 
| 1524 1434 | 
             
            </tr>
         | 
| 1525 1435 | 
             
            </tbody>
         | 
| 1526 1436 | 
             
            </table></div>
         | 
| 1527 1437 | 
             
            </div>
         | 
| 1528 1438 | 
             
            <hr>
         | 
| 1529 | 
            -
            <div class="refsect2" | 
| 1439 | 
            +
            <div class="refsect2">
         | 
| 1530 1440 | 
             
            <a name="gtk-toolbar-insert-stock"></a><h3>gtk_toolbar_insert_stock ()</h3>
         | 
| 1531 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 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>,
         | 
| 1532 1442 | 
             
                                                                     <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>,
         | 
| 1533 1443 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_text</code></em>,
         | 
| 1534 1444 | 
             
                                                                     <em class="parameter"><code>const <span class="type">char</span> *tooltip_private_text</code></em>,
         | 
| 1535 1445 | 
             
                                                                     <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>,
         | 
| 1536 1446 | 
             
                                                                     <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>,
         | 
| 1537 1447 | 
             
                                                                     <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>
         | 
| 1538 | 
            -
            <div class="warning"  | 
| 1448 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1539 1449 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1540 1450 | 
             
            <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>
         | 
| 1541 1451 | 
             
            </div>
         | 
| @@ -1558,46 +1468,38 @@ arguments. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject- | |
| 1558 1468 | 
             
            </tr>
         | 
| 1559 1469 | 
             
            <tr>
         | 
| 1560 1470 | 
             
            <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
         | 
| 1561 | 
            -
            <td>The id of the stock item you want to insert
         | 
| 1562 | 
            -
            </td>
         | 
| 1471 | 
            +
            <td>The id of the stock item you want to insert</td>
         | 
| 1563 1472 | 
             
            </tr>
         | 
| 1564 1473 | 
             
            <tr>
         | 
| 1565 1474 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 1566 | 
            -
            <td>The text in the tooltip of the toolbar button
         | 
| 1567 | 
            -
            </td>
         | 
| 1475 | 
            +
            <td>The text in the tooltip of the toolbar button</td>
         | 
| 1568 1476 | 
             
            </tr>
         | 
| 1569 1477 | 
             
            <tr>
         | 
| 1570 1478 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_private_text</code></em> :</span></p></td>
         | 
| 1571 | 
            -
            <td>The private text of the tooltip
         | 
| 1572 | 
            -
            </td>
         | 
| 1479 | 
            +
            <td>The private text of the tooltip</td>
         | 
| 1573 1480 | 
             
            </tr>
         | 
| 1574 1481 | 
             
            <tr>
         | 
| 1575 1482 | 
             
            <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
         | 
| 1576 | 
            -
            <td>The callback called when the toolbar button is clicked | 
| 1577 | 
            -
            </td>
         | 
| 1483 | 
            +
            <td>The callback called when the toolbar button is clicked.</td>
         | 
| 1578 1484 | 
             
            </tr>
         | 
| 1579 1485 | 
             
            <tr>
         | 
| 1580 1486 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 1581 | 
            -
            <td>user data passed to callback
         | 
| 1582 | 
            -
            </td>
         | 
| 1487 | 
            +
            <td>user data passed to callback</td>
         | 
| 1583 1488 | 
             
            </tr>
         | 
| 1584 1489 | 
             
            <tr>
         | 
| 1585 1490 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 1586 1491 | 
             
            <td>The position the button shall be inserted at.
         | 
| 1587 | 
            -
             | 
| 1588 | 
            -
            </td>
         | 
| 1492 | 
            +
            -1 means at the end.</td>
         | 
| 1589 1493 | 
             
            </tr>
         | 
| 1590 1494 | 
             
            <tr>
         | 
| 1591 1495 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1592 | 
            -
            <td> | 
| 1593 | 
            -
             | 
| 1594 | 
            -
            </td>
         | 
| 1496 | 
            +
            <td>the inserted widget</td>
         | 
| 1595 1497 | 
             
            </tr>
         | 
| 1596 1498 | 
             
            </tbody>
         | 
| 1597 1499 | 
             
            </table></div>
         | 
| 1598 1500 | 
             
            </div>
         | 
| 1599 1501 | 
             
            <hr>
         | 
| 1600 | 
            -
            <div class="refsect2" | 
| 1502 | 
            +
            <div class="refsect2">
         | 
| 1601 1503 | 
             
            <a name="gtk-toolbar-set-icon-size"></a><h3>gtk_toolbar_set_icon_size ()</h3>
         | 
| 1602 1504 | 
             
            <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>,
         | 
| 1603 1505 | 
             
                                                                     <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>
         | 
| @@ -1622,19 +1524,19 @@ size of icons. | |
| 1622 1524 | 
             
            </tr>
         | 
| 1623 1525 | 
             
            <tr>
         | 
| 1624 1526 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon_size</code></em> :</span></p></td>
         | 
| 1625 | 
            -
            <td> | 
| 1626 | 
            -
             | 
| 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>
         | 
| 1627 1529 | 
             
            </td>
         | 
| 1628 1530 | 
             
            </tr>
         | 
| 1629 1531 | 
             
            </tbody>
         | 
| 1630 1532 | 
             
            </table></div>
         | 
| 1631 1533 | 
             
            </div>
         | 
| 1632 1534 | 
             
            <hr>
         | 
| 1633 | 
            -
            <div class="refsect2" | 
| 1535 | 
            +
            <div class="refsect2">
         | 
| 1634 1536 | 
             
            <a name="gtk-toolbar-remove-space"></a><h3>gtk_toolbar_remove_space ()</h3>
         | 
| 1635 1537 | 
             
            <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>,
         | 
| 1636 1538 | 
             
                                                                     <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>
         | 
| 1637 | 
            -
            <div class="warning"  | 
| 1539 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1638 1540 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1639 1541 | 
             
            <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>
         | 
| 1640 1542 | 
             
            </div>
         | 
| @@ -1646,19 +1548,17 @@ Removes a space from the specified position. | |
| 1646 1548 | 
             
            <tbody>
         | 
| 1647 1549 | 
             
            <tr>
         | 
| 1648 1550 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1649 | 
            -
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a | 
| 1650 | 
            -
            </td>
         | 
| 1551 | 
            +
            <td>a <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a>.</td>
         | 
| 1651 1552 | 
             
            </tr>
         | 
| 1652 1553 | 
             
            <tr>
         | 
| 1653 1554 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 1654 | 
            -
            <td>the index of the space to remove | 
| 1655 | 
            -
            </td>
         | 
| 1555 | 
            +
            <td>the index of the space to remove.</td>
         | 
| 1656 1556 | 
             
            </tr>
         | 
| 1657 1557 | 
             
            </tbody>
         | 
| 1658 1558 | 
             
            </table></div>
         | 
| 1659 1559 | 
             
            </div>
         | 
| 1660 1560 | 
             
            <hr>
         | 
| 1661 | 
            -
            <div class="refsect2" | 
| 1561 | 
            +
            <div class="refsect2">
         | 
| 1662 1562 | 
             
            <a name="gtk-toolbar-unset-style"></a><h3>gtk_toolbar_unset_style ()</h3>
         | 
| 1663 1563 | 
             
            <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>
         | 
| 1664 1564 | 
             
            <p>
         | 
| @@ -1675,9 +1575,9 @@ user preferences will be used to determine the toolbar style. | |
| 1675 1575 | 
             
            </table></div>
         | 
| 1676 1576 | 
             
            </div>
         | 
| 1677 1577 | 
             
            </div>
         | 
| 1678 | 
            -
            <div class="refsect1" | 
| 1578 | 
            +
            <div class="refsect1">
         | 
| 1679 1579 | 
             
            <a name="GtkToolbar.property-details"></a><h2>Property Details</h2>
         | 
| 1680 | 
            -
            <div class="refsect2" | 
| 1580 | 
            +
            <div class="refsect2">
         | 
| 1681 1581 | 
             
            <a name="GtkToolbar--icon-size"></a><h3>The <code class="literal">"icon-size"</code> property</h3>
         | 
| 1682 1582 | 
             
            <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>
         | 
| 1683 1583 | 
             
            <p>
         | 
| @@ -1695,7 +1595,7 @@ size of icons. | |
| 1695 1595 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1696 1596 | 
             
            </div>
         | 
| 1697 1597 | 
             
            <hr>
         | 
| 1698 | 
            -
            <div class="refsect2" | 
| 1598 | 
            +
            <div class="refsect2">
         | 
| 1699 1599 | 
             
            <a name="GtkToolbar--icon-size-set"></a><h3>The <code class="literal">"icon-size-set"</code> property</h3>
         | 
| 1700 1600 | 
             
            <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>
         | 
| 1701 1601 | 
             
            <p>
         | 
| @@ -1705,21 +1605,21 @@ Is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht | |
| 1705 1605 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1706 1606 | 
             
            </div>
         | 
| 1707 1607 | 
             
            <hr>
         | 
| 1708 | 
            -
            <div class="refsect2" | 
| 1608 | 
            +
            <div class="refsect2">
         | 
| 1709 1609 | 
             
            <a name="GtkToolbar--show-arrow"></a><h3>The <code class="literal">"show-arrow"</code> property</h3>
         | 
| 1710 1610 | 
             
            <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>
         | 
| 1711 1611 | 
             
            <p>If an arrow should be shown if the toolbar doesn't fit.</p>
         | 
| 1712 1612 | 
             
            <p>Default value: TRUE</p>
         | 
| 1713 1613 | 
             
            </div>
         | 
| 1714 1614 | 
             
            <hr>
         | 
| 1715 | 
            -
            <div class="refsect2" | 
| 1615 | 
            +
            <div class="refsect2">
         | 
| 1716 1616 | 
             
            <a name="GtkToolbar--toolbar-style"></a><h3>The <code class="literal">"toolbar-style"</code> property</h3>
         | 
| 1717 1617 | 
             
            <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>
         | 
| 1718 1618 | 
             
            <p>How to draw the toolbar.</p>
         | 
| 1719 1619 | 
             
            <p>Default value: GTK_TOOLBAR_BOTH</p>
         | 
| 1720 1620 | 
             
            </div>
         | 
| 1721 1621 | 
             
            <hr>
         | 
| 1722 | 
            -
            <div class="refsect2" | 
| 1622 | 
            +
            <div class="refsect2">
         | 
| 1723 1623 | 
             
            <a name="GtkToolbar--tooltips"></a><h3>The <code class="literal">"tooltips"</code> property</h3>
         | 
| 1724 1624 | 
             
            <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>
         | 
| 1725 1625 | 
             
            <p>
         | 
| @@ -1729,32 +1629,32 @@ If the tooltips of the toolbar should be active or not. | |
| 1729 1629 | 
             
            <p class="since">Since 2.8</p>
         | 
| 1730 1630 | 
             
            </div>
         | 
| 1731 1631 | 
             
            </div>
         | 
| 1732 | 
            -
            <div class="refsect1" | 
| 1632 | 
            +
            <div class="refsect1">
         | 
| 1733 1633 | 
             
            <a name="GtkToolbar.child-property-details"></a><h2>Child Property Details</h2>
         | 
| 1734 | 
            -
            <div class="refsect2" | 
| 1634 | 
            +
            <div class="refsect2">
         | 
| 1735 1635 | 
             
            <a name="GtkToolbar--c-expand"></a><h3>The <code class="literal">"expand"</code> child property</h3>
         | 
| 1736 1636 | 
             
            <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>
         | 
| 1737 1637 | 
             
            <p>Whether the item should receive extra space when the toolbar grows.</p>
         | 
| 1738 1638 | 
             
            <p>Default value: FALSE</p>
         | 
| 1739 1639 | 
             
            </div>
         | 
| 1740 1640 | 
             
            <hr>
         | 
| 1741 | 
            -
            <div class="refsect2" | 
| 1641 | 
            +
            <div class="refsect2">
         | 
| 1742 1642 | 
             
            <a name="GtkToolbar--c-homogeneous"></a><h3>The <code class="literal">"homogeneous"</code> child property</h3>
         | 
| 1743 1643 | 
             
            <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>
         | 
| 1744 1644 | 
             
            <p>Whether the item should be the same size as other homogeneous items.</p>
         | 
| 1745 1645 | 
             
            <p>Default value: FALSE</p>
         | 
| 1746 1646 | 
             
            </div>
         | 
| 1747 1647 | 
             
            </div>
         | 
| 1748 | 
            -
            <div class="refsect1" | 
| 1648 | 
            +
            <div class="refsect1">
         | 
| 1749 1649 | 
             
            <a name="GtkToolbar.style-property-details"></a><h2>Style Property Details</h2>
         | 
| 1750 | 
            -
            <div class="refsect2" | 
| 1650 | 
            +
            <div class="refsect2">
         | 
| 1751 1651 | 
             
            <a name="GtkToolbar--s-button-relief"></a><h3>The <code class="literal">"button-relief"</code> style property</h3>
         | 
| 1752 1652 | 
             
            <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>
         | 
| 1753 1653 | 
             
            <p>Type of bevel around toolbar buttons.</p>
         | 
| 1754 1654 | 
             
            <p>Default value: GTK_RELIEF_NONE</p>
         | 
| 1755 1655 | 
             
            </div>
         | 
| 1756 1656 | 
             
            <hr>
         | 
| 1757 | 
            -
            <div class="refsect2" | 
| 1657 | 
            +
            <div class="refsect2">
         | 
| 1758 1658 | 
             
            <a name="GtkToolbar--s-internal-padding"></a><h3>The <code class="literal">"internal-padding"</code> style property</h3>
         | 
| 1759 1659 | 
             
            <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>
         | 
| 1760 1660 | 
             
            <p>Amount of border space between the toolbar shadow and the buttons.</p>
         | 
| @@ -1762,7 +1662,7 @@ If the tooltips of the toolbar should be active or not. | |
| 1762 1662 | 
             
            <p>Default value: 0</p>
         | 
| 1763 1663 | 
             
            </div>
         | 
| 1764 1664 | 
             
            <hr>
         | 
| 1765 | 
            -
            <div class="refsect2" | 
| 1665 | 
            +
            <div class="refsect2">
         | 
| 1766 1666 | 
             
            <a name="GtkToolbar--s-max-child-expand"></a><h3>The <code class="literal">"max-child-expand"</code> style property</h3>
         | 
| 1767 1667 | 
             
            <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>
         | 
| 1768 1668 | 
             
            <p>Maximum amount of space an expandable item will be given.</p>
         | 
| @@ -1770,14 +1670,14 @@ If the tooltips of the toolbar should be active or not. | |
| 1770 1670 | 
             
            <p>Default value: 2147483647</p>
         | 
| 1771 1671 | 
             
            </div>
         | 
| 1772 1672 | 
             
            <hr>
         | 
| 1773 | 
            -
            <div class="refsect2" | 
| 1673 | 
            +
            <div class="refsect2">
         | 
| 1774 1674 | 
             
            <a name="GtkToolbar--s-shadow-type"></a><h3>The <code class="literal">"shadow-type"</code> style property</h3>
         | 
| 1775 1675 | 
             
            <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>
         | 
| 1776 1676 | 
             
            <p>Style of bevel around the toolbar.</p>
         | 
| 1777 1677 | 
             
            <p>Default value: GTK_SHADOW_OUT</p>
         | 
| 1778 1678 | 
             
            </div>
         | 
| 1779 1679 | 
             
            <hr>
         | 
| 1780 | 
            -
            <div class="refsect2" | 
| 1680 | 
            +
            <div class="refsect2">
         | 
| 1781 1681 | 
             
            <a name="GtkToolbar--s-space-size"></a><h3>The <code class="literal">"space-size"</code> style property</h3>
         | 
| 1782 1682 | 
             
            <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>
         | 
| 1783 1683 | 
             
            <p>Size of spacers.</p>
         | 
| @@ -1785,20 +1685,20 @@ If the tooltips of the toolbar should be active or not. | |
| 1785 1685 | 
             
            <p>Default value: 12</p>
         | 
| 1786 1686 | 
             
            </div>
         | 
| 1787 1687 | 
             
            <hr>
         | 
| 1788 | 
            -
            <div class="refsect2" | 
| 1688 | 
            +
            <div class="refsect2">
         | 
| 1789 1689 | 
             
            <a name="GtkToolbar--s-space-style"></a><h3>The <code class="literal">"space-style"</code> style property</h3>
         | 
| 1790 1690 | 
             
            <pre class="programlisting">  "space-style"              <a class="link" href="GtkToolbar.html#GtkToolbarSpaceStyle" title="enum GtkToolbarSpaceStyle"><span class="type">GtkToolbarSpaceStyle</span></a>  : Read</pre>
         | 
| 1791 1691 | 
             
            <p>Whether spacers are vertical lines or just blank.</p>
         | 
| 1792 1692 | 
             
            <p>Default value: GTK_TOOLBAR_SPACE_LINE</p>
         | 
| 1793 1693 | 
             
            </div>
         | 
| 1794 1694 | 
             
            </div>
         | 
| 1795 | 
            -
            <div class="refsect1" | 
| 1695 | 
            +
            <div class="refsect1">
         | 
| 1796 1696 | 
             
            <a name="GtkToolbar.signal-details"></a><h2>Signal Details</h2>
         | 
| 1797 | 
            -
            <div class="refsect2" | 
| 1697 | 
            +
            <div class="refsect2">
         | 
| 1798 1698 | 
             
            <a name="GtkToolbar-focus-home-or-end"></a><h3>The <code class="literal">"focus-home-or-end"</code> signal</h3>
         | 
| 1799 1699 | 
             
            <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,
         | 
| 1800 1700 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>    focus_home,
         | 
| 1801 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>    user_data)       :  | 
| 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>
         | 
| 1802 1702 | 
             
            <p>
         | 
| 1803 1703 | 
             
            A keybinding signal used internally by GTK+. This signal can't
         | 
| 1804 1704 | 
             
            be used in application code
         | 
| @@ -1808,14 +1708,12 @@ be used in application code | |
| 1808 1708 | 
             
            <tbody>
         | 
| 1809 1709 | 
             
            <tr>
         | 
| 1810 1710 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1811 | 
            -
            <td>the <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal
         | 
| 1812 | 
            -
            </td>
         | 
| 1711 | 
            +
            <td>the <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal</td>
         | 
| 1813 1712 | 
             
            </tr>
         | 
| 1814 1713 | 
             
            <tr>
         | 
| 1815 1714 | 
             
            <td><p><span class="term"><em class="parameter"><code>focus_home</code></em> :</span></p></td>
         | 
| 1816 1715 | 
             
            <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>
         | 
| 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>
         | 
| 1819 1717 | 
             
            </tr>
         | 
| 1820 1718 | 
             
            <tr>
         | 
| 1821 1719 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1823,18 +1721,18 @@ be used in application code | |
| 1823 1721 | 
             
            </tr>
         | 
| 1824 1722 | 
             
            <tr>
         | 
| 1825 1723 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1826 | 
            -
            <td> | 
| 1827 | 
            -
            </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>
         | 
| 1828 1726 | 
             
            </tr>
         | 
| 1829 1727 | 
             
            </tbody>
         | 
| 1830 1728 | 
             
            </table></div>
         | 
| 1831 1729 | 
             
            </div>
         | 
| 1832 1730 | 
             
            <hr>
         | 
| 1833 | 
            -
            <div class="refsect2" | 
| 1731 | 
            +
            <div class="refsect2">
         | 
| 1834 1732 | 
             
            <a name="GtkToolbar-orientation-changed"></a><h3>The <code class="literal">"orientation-changed"</code> signal</h3>
         | 
| 1835 1733 | 
             
            <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,
         | 
| 1836 1734 | 
             
                                                                    <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation,
         | 
| 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>
         | 
| 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>
         | 
| 1838 1736 | 
             
            <p>
         | 
| 1839 1737 | 
             
            Emitted when the orientation of the toolbar changes.
         | 
| 1840 1738 | 
             
            </p>
         | 
| @@ -1843,13 +1741,11 @@ Emitted when the orientation of the toolbar changes. | |
| 1843 1741 | 
             
            <tbody>
         | 
| 1844 1742 | 
             
            <tr>
         | 
| 1845 1743 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1846 | 
            -
            <td>the object which emitted the signal
         | 
| 1847 | 
            -
            </td>
         | 
| 1744 | 
            +
            <td>the object which emitted the signal</td>
         | 
| 1848 1745 | 
             
            </tr>
         | 
| 1849 1746 | 
             
            <tr>
         | 
| 1850 1747 | 
             
            <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></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>
         | 
| 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>
         | 
| 1853 1749 | 
             
            </tr>
         | 
| 1854 1750 | 
             
            <tr>
         | 
| 1855 1751 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1859,13 +1755,13 @@ Emitted when the orientation of the toolbar changes. | |
| 1859 1755 | 
             
            </table></div>
         | 
| 1860 1756 | 
             
            </div>
         | 
| 1861 1757 | 
             
            <hr>
         | 
| 1862 | 
            -
            <div class="refsect2" | 
| 1758 | 
            +
            <div class="refsect2">
         | 
| 1863 1759 | 
             
            <a name="GtkToolbar-popup-context-menu"></a><h3>The <code class="literal">"popup-context-menu"</code> signal</h3>
         | 
| 1864 1760 | 
             
            <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,
         | 
| 1865 1761 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>        x,
         | 
| 1866 1762 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>        y,
         | 
| 1867 1763 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>        button,
         | 
| 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>
         | 
| 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>
         | 
| 1869 1765 | 
             
            <p>
         | 
| 1870 1766 | 
             
            Emitted when the user right-clicks the toolbar or uses the
         | 
| 1871 1767 | 
             
            keybinding to display a popup menu.
         | 
| @@ -1882,23 +1778,19 @@ up using the keybaord, <em class="parameter"><code>button</code></em> is -1. | |
| 1882 1778 | 
             
            <tbody>
         | 
| 1883 1779 | 
             
            <tr>
         | 
| 1884 1780 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1885 | 
            -
            <td>the <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal
         | 
| 1886 | 
            -
            </td>
         | 
| 1781 | 
            +
            <td>the <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal</td>
         | 
| 1887 1782 | 
             
            </tr>
         | 
| 1888 1783 | 
             
            <tr>
         | 
| 1889 1784 | 
             
            <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
         | 
| 1890 | 
            -
            <td>the x coordinate of the point where the menu should appear
         | 
| 1891 | 
            -
            </td>
         | 
| 1785 | 
            +
            <td>the x coordinate of the point where the menu should appear</td>
         | 
| 1892 1786 | 
             
            </tr>
         | 
| 1893 1787 | 
             
            <tr>
         | 
| 1894 1788 | 
             
            <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
         | 
| 1895 | 
            -
            <td>the y coordinate of the point where the menu should appear
         | 
| 1896 | 
            -
            </td>
         | 
| 1789 | 
            +
            <td>the y coordinate of the point where the menu should appear</td>
         | 
| 1897 1790 | 
             
            </tr>
         | 
| 1898 1791 | 
             
            <tr>
         | 
| 1899 1792 | 
             
            <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
         | 
| 1900 | 
            -
            <td>the mouse button the user pressed, or -1
         | 
| 1901 | 
            -
            </td>
         | 
| 1793 | 
            +
            <td>the mouse button the user pressed, or -1</td>
         | 
| 1902 1794 | 
             
            </tr>
         | 
| 1903 1795 | 
             
            <tr>
         | 
| 1904 1796 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1906,18 +1798,17 @@ up using the keybaord, <em class="parameter"><code>button</code></em> is -1. | |
| 1906 1798 | 
             
            </tr>
         | 
| 1907 1799 | 
             
            <tr>
         | 
| 1908 1800 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1909 | 
            -
            <td> | 
| 1910 | 
            -
            </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>
         | 
| 1911 1802 | 
             
            </tr>
         | 
| 1912 1803 | 
             
            </tbody>
         | 
| 1913 1804 | 
             
            </table></div>
         | 
| 1914 1805 | 
             
            </div>
         | 
| 1915 1806 | 
             
            <hr>
         | 
| 1916 | 
            -
            <div class="refsect2" | 
| 1807 | 
            +
            <div class="refsect2">
         | 
| 1917 1808 | 
             
            <a name="GtkToolbar-style-changed"></a><h3>The <code class="literal">"style-changed"</code> signal</h3>
         | 
| 1918 1809 | 
             
            <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,
         | 
| 1919 1810 | 
             
                                                                    <a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="type">GtkToolbarStyle</span></a> style,
         | 
| 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>
         | 
| 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>
         | 
| 1921 1812 | 
             
            <p>
         | 
| 1922 1813 | 
             
            Emitted when the style of the toolbar changes.
         | 
| 1923 1814 | 
             
            </p>
         | 
| @@ -1926,13 +1817,11 @@ Emitted when the style of the toolbar changes. | |
| 1926 1817 | 
             
            <tbody>
         | 
| 1927 1818 | 
             
            <tr>
         | 
| 1928 1819 | 
             
            <td><p><span class="term"><em class="parameter"><code>toolbar</code></em> :</span></p></td>
         | 
| 1929 | 
            -
            <td>The <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal
         | 
| 1930 | 
            -
            </td>
         | 
| 1820 | 
            +
            <td>The <a class="link" href="GtkToolbar.html" title="GtkToolbar"><span class="type">GtkToolbar</span></a> which emitted the signal</td>
         | 
| 1931 1821 | 
             
            </tr>
         | 
| 1932 1822 | 
             
            <tr>
         | 
| 1933 1823 | 
             
            <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></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>
         | 
| 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>
         | 
| 1936 1825 | 
             
            </tr>
         | 
| 1937 1826 | 
             
            <tr>
         | 
| 1938 1827 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1942,7 +1831,7 @@ Emitted when the style of the toolbar changes. | |
| 1942 1831 | 
             
            </table></div>
         | 
| 1943 1832 | 
             
            </div>
         | 
| 1944 1833 | 
             
            </div>
         | 
| 1945 | 
            -
            <div class="refsect1" | 
| 1834 | 
            +
            <div class="refsect1">
         | 
| 1946 1835 | 
             
            <a name="GtkToolbar.see-also"></a><h2>See Also</h2>
         | 
| 1947 1836 | 
             
            <p>
         | 
| 1948 1837 | 
             
            </p>
         | 
| @@ -1959,6 +1848,6 @@ Emitted when the style of the toolbar changes. | |
| 1959 1848 | 
             
            </div>
         | 
| 1960 1849 | 
             
            <div class="footer">
         | 
| 1961 1850 | 
             
            <hr>
         | 
| 1962 | 
            -
                      Generated by GTK-Doc V1. | 
| 1851 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 1963 1852 | 
             
            </body>
         | 
| 1964 1853 | 
             
            </html>
         |