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>GtkSpinner</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="DisplayWidgets.html" title="Display Widgets">
         | 
| 9 9 | 
             
            <link rel="prev" href="GtkStatusIcon.html" title="GtkStatusIcon">
         | 
| 10 10 | 
             
            <link rel="next" href="ButtonWidgets.html" title="Buttons and Toggles">
         | 
| 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="GtkStatusIcon.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="DisplayWidgets.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="ButtonWidgets.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">
         | 
| @@ -34,7 +34,7 @@ | |
| 34 34 | 
             
                              <a href="#GtkSpinner.style-properties" class="shortcut">Style Properties</a>
         | 
| 35 35 | 
             
            </td></tr>
         | 
| 36 36 | 
             
            </table>
         | 
| 37 | 
            -
            <div class="refentry" | 
| 37 | 
            +
            <div class="refentry">
         | 
| 38 38 | 
             
            <a name="GtkSpinner"></a><div class="titlepage"></div>
         | 
| 39 39 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 40 40 | 
             
            <td valign="top">
         | 
| @@ -43,18 +43,18 @@ | |
| 43 43 | 
             
            </td>
         | 
| 44 44 | 
             
            <td valign="top" align="right"><img src="spinner.png"></td>
         | 
| 45 45 | 
             
            </tr></table></div>
         | 
| 46 | 
            -
            <div class="refsynopsisdiv" | 
| 46 | 
            +
            <div class="refsynopsisdiv">
         | 
| 47 47 | 
             
            <a name="GtkSpinner.synopsis"></a><h2>Synopsis</h2>
         | 
| 48 48 | 
             
            <pre class="synopsis">
         | 
| 49 49 | 
             
            #include <gtk/gtk.h>
         | 
| 50 50 |  | 
| 51 | 
            -
             | 
| 51 | 
            +
            struct              <a class="link" href="GtkSpinner.html#GtkSpinner-struct" title="struct GtkSpinner">GtkSpinner</a>;
         | 
| 52 52 | 
             
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkSpinner.html#gtk-spinner-new" title="gtk_spinner_new ()">gtk_spinner_new</a>                     (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 53 53 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkSpinner.html#gtk-spinner-start" title="gtk_spinner_start ()">gtk_spinner_start</a>                   (<em class="parameter"><code><a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a> *spinner</code></em>);
         | 
| 54 54 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkSpinner.html#gtk-spinner-stop" title="gtk_spinner_stop ()">gtk_spinner_stop</a>                    (<em class="parameter"><code><a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a> *spinner</code></em>);
         | 
| 55 55 | 
             
            </pre>
         | 
| 56 56 | 
             
            </div>
         | 
| 57 | 
            -
            <div class="refsect1" | 
| 57 | 
            +
            <div class="refsect1">
         | 
| 58 58 | 
             
            <a name="GtkSpinner.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 59 59 | 
             
            <pre class="synopsis">
         | 
| 60 60 | 
             
              <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| @@ -65,26 +65,26 @@ | |
| 65 65 | 
             
                                       +----GtkSpinner
         | 
| 66 66 | 
             
            </pre>
         | 
| 67 67 | 
             
            </div>
         | 
| 68 | 
            -
            <div class="refsect1" | 
| 68 | 
            +
            <div class="refsect1">
         | 
| 69 69 | 
             
            <a name="GtkSpinner.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
         | 
| 70 70 | 
             
            <p>
         | 
| 71 71 | 
             
            GtkSpinner implements
         | 
| 72 72 | 
             
             AtkImplementorIface and  <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
         | 
| 73 73 | 
             
            </div>
         | 
| 74 | 
            -
            <div class="refsect1" | 
| 74 | 
            +
            <div class="refsect1">
         | 
| 75 75 | 
             
            <a name="GtkSpinner.properties"></a><h2>Properties</h2>
         | 
| 76 76 | 
             
            <pre class="synopsis">
         | 
| 77 77 | 
             
              "<a class="link" href="GtkSpinner.html#GtkSpinner--active" title='The "active" property'>active</a>"                   <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
         | 
| 78 78 | 
             
            </pre>
         | 
| 79 79 | 
             
            </div>
         | 
| 80 | 
            -
            <div class="refsect1" | 
| 80 | 
            +
            <div class="refsect1">
         | 
| 81 81 | 
             
            <a name="GtkSpinner.style-properties"></a><h2>Style Properties</h2>
         | 
| 82 82 | 
             
            <pre class="synopsis">
         | 
| 83 83 | 
             
              "<a class="link" href="GtkSpinner.html#GtkSpinner--s-cycle-duration" title='The "cycle-duration" style property'>cycle-duration</a>"           <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>                 : Read
         | 
| 84 84 | 
             
              "<a class="link" href="GtkSpinner.html#GtkSpinner--s-num-steps" title='The "num-steps" style property'>num-steps</a>"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>                 : Read
         | 
| 85 85 | 
             
            </pre>
         | 
| 86 86 | 
             
            </div>
         | 
| 87 | 
            -
            <div class="refsect1" | 
| 87 | 
            +
            <div class="refsect1">
         | 
| 88 88 | 
             
            <a name="GtkSpinner.description"></a><h2>Description</h2>
         | 
| 89 89 | 
             
            <p>
         | 
| 90 90 | 
             
            A GtkSpinner widget displays an icon-size spinning animation.
         | 
| @@ -96,16 +96,16 @@ To start the animation, use <a class="link" href="GtkSpinner.html#gtk-spinner-st | |
| 96 96 | 
             
            use <a class="link" href="GtkSpinner.html#gtk-spinner-stop" title="gtk_spinner_stop ()"><code class="function">gtk_spinner_stop()</code></a>.
         | 
| 97 97 | 
             
            </p>
         | 
| 98 98 | 
             
            </div>
         | 
| 99 | 
            -
            <div class="refsect1" | 
| 99 | 
            +
            <div class="refsect1">
         | 
| 100 100 | 
             
            <a name="GtkSpinner.details"></a><h2>Details</h2>
         | 
| 101 | 
            -
            <div class="refsect2" | 
| 102 | 
            -
            <a name="GtkSpinner-struct"></a><h3>GtkSpinner</h3>
         | 
| 103 | 
            -
            <pre class="programlisting"> | 
| 101 | 
            +
            <div class="refsect2">
         | 
| 102 | 
            +
            <a name="GtkSpinner-struct"></a><h3>struct GtkSpinner</h3>
         | 
| 103 | 
            +
            <pre class="programlisting">struct GtkSpinner;</pre>
         | 
| 104 104 | 
             
            <p>
         | 
| 105 105 | 
             
            </p>
         | 
| 106 106 | 
             
            </div>
         | 
| 107 107 | 
             
            <hr>
         | 
| 108 | 
            -
            <div class="refsect2" | 
| 108 | 
            +
            <div class="refsect2">
         | 
| 109 109 | 
             
            <a name="gtk-spinner-new"></a><h3>gtk_spinner_new ()</h3>
         | 
| 110 110 | 
             
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_spinner_new                     (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 111 111 | 
             
            <p>
         | 
| @@ -115,15 +115,14 @@ Returns a new spinner widget. Not yet started. | |
| 115 115 | 
             
            <col align="left" valign="top">
         | 
| 116 116 | 
             
            <tbody><tr>
         | 
| 117 117 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 118 | 
            -
            <td> | 
| 119 | 
            -
             | 
| 118 | 
            +
            <td>a new <a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a>
         | 
| 120 119 | 
             
            </td>
         | 
| 121 120 | 
             
            </tr></tbody>
         | 
| 122 121 | 
             
            </table></div>
         | 
| 123 122 | 
             
            <p class="since">Since 2.20</p>
         | 
| 124 123 | 
             
            </div>
         | 
| 125 124 | 
             
            <hr>
         | 
| 126 | 
            -
            <div class="refsect2" | 
| 125 | 
            +
            <div class="refsect2">
         | 
| 127 126 | 
             
            <a name="gtk-spinner-start"></a><h3>gtk_spinner_start ()</h3>
         | 
| 128 127 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_spinner_start                   (<em class="parameter"><code><a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a> *spinner</code></em>);</pre>
         | 
| 129 128 | 
             
            <p>
         | 
| @@ -140,7 +139,7 @@ Starts the animation of the spinner. | |
| 140 139 | 
             
            <p class="since">Since 2.20</p>
         | 
| 141 140 | 
             
            </div>
         | 
| 142 141 | 
             
            <hr>
         | 
| 143 | 
            -
            <div class="refsect2" | 
| 142 | 
            +
            <div class="refsect2">
         | 
| 144 143 | 
             
            <a name="gtk-spinner-stop"></a><h3>gtk_spinner_stop ()</h3>
         | 
| 145 144 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_spinner_stop                    (<em class="parameter"><code><a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a> *spinner</code></em>);</pre>
         | 
| 146 145 | 
             
            <p>
         | 
| @@ -157,18 +156,18 @@ Stops the animation of the spinner. | |
| 157 156 | 
             
            <p class="since">Since 2.20</p>
         | 
| 158 157 | 
             
            </div>
         | 
| 159 158 | 
             
            </div>
         | 
| 160 | 
            -
            <div class="refsect1" | 
| 159 | 
            +
            <div class="refsect1">
         | 
| 161 160 | 
             
            <a name="GtkSpinner.property-details"></a><h2>Property Details</h2>
         | 
| 162 | 
            -
            <div class="refsect2" | 
| 161 | 
            +
            <div class="refsect2">
         | 
| 163 162 | 
             
            <a name="GtkSpinner--active"></a><h3>The <code class="literal">"active"</code> property</h3>
         | 
| 164 163 | 
             
            <pre class="programlisting">  "active"                   <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 165 164 | 
             
            <p>Whether the spinner is active.</p>
         | 
| 166 165 | 
             
            <p>Default value: FALSE</p>
         | 
| 167 166 | 
             
            </div>
         | 
| 168 167 | 
             
            </div>
         | 
| 169 | 
            -
            <div class="refsect1" | 
| 168 | 
            +
            <div class="refsect1">
         | 
| 170 169 | 
             
            <a name="GtkSpinner.style-property-details"></a><h2>Style Property Details</h2>
         | 
| 171 | 
            -
            <div class="refsect2" | 
| 170 | 
            +
            <div class="refsect2">
         | 
| 172 171 | 
             
            <a name="GtkSpinner--s-cycle-duration"></a><h3>The <code class="literal">"cycle-duration"</code> style property</h3>
         | 
| 173 172 | 
             
            <pre class="programlisting">  "cycle-duration"           <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>                 : Read</pre>
         | 
| 174 173 | 
             
            <p>
         | 
| @@ -179,7 +178,7 @@ The duration in milliseconds for the spinner to complete a full cycle. | |
| 179 178 | 
             
            <p class="since">Since 2.20</p>
         | 
| 180 179 | 
             
            </div>
         | 
| 181 180 | 
             
            <hr>
         | 
| 182 | 
            -
            <div class="refsect2" | 
| 181 | 
            +
            <div class="refsect2">
         | 
| 183 182 | 
             
            <a name="GtkSpinner--s-num-steps"></a><h3>The <code class="literal">"num-steps"</code> style property</h3>
         | 
| 184 183 | 
             
            <pre class="programlisting">  "num-steps"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>                 : Read</pre>
         | 
| 185 184 | 
             
            <p>
         | 
| @@ -192,13 +191,13 @@ The animation will complete a full cycle in one second by default | |
| 192 191 | 
             
            <p class="since">Since 2.20</p>
         | 
| 193 192 | 
             
            </div>
         | 
| 194 193 | 
             
            </div>
         | 
| 195 | 
            -
            <div class="refsect1" | 
| 194 | 
            +
            <div class="refsect1">
         | 
| 196 195 | 
             
            <a name="GtkSpinner.see-also"></a><h2>See Also</h2>
         | 
| 197 196 | 
             
            <a class="link" href="GtkCellRendererSpinner.html" title="GtkCellRendererSpinner"><span class="type">GtkCellRendererSpinner</span></a>, <a class="link" href="GtkProgressBar.html" title="GtkProgressBar"><span class="type">GtkProgressBar</span></a>
         | 
| 198 197 | 
             
            </div>
         | 
| 199 198 | 
             
            </div>
         | 
| 200 199 | 
             
            <div class="footer">
         | 
| 201 200 | 
             
            <hr>
         | 
| 202 | 
            -
                      Generated by GTK-Doc V1. | 
| 201 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 203 202 | 
             
            </body>
         | 
| 204 203 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>GtkStatusIcon</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="DisplayWidgets.html" title="Display Widgets">
         | 
| 9 9 | 
             
            <link rel="prev" href="GtkInfoBar.html" title="GtkInfoBar">
         | 
| 10 10 | 
             
            <link rel="next" href="GtkSpinner.html" title="GtkSpinner">
         | 
| 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="GtkInfoBar.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="DisplayWidgets.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="GtkSpinner.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="#GtkStatusIcon.signals" class="shortcut">Signals</a>
         | 
| 33 33 | 
             
            </td></tr>
         | 
| 34 34 | 
             
            </table>
         | 
| 35 | 
            -
            <div class="refentry" | 
| 35 | 
            +
            <div class="refentry">
         | 
| 36 36 | 
             
            <a name="GtkStatusIcon"></a><div class="titlepage"></div>
         | 
| 37 37 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 38 38 | 
             
            <td valign="top">
         | 
| @@ -41,20 +41,20 @@ | |
| 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="GtkStatusIcon.synopsis"></a><h2>Synopsis</h2>
         | 
| 46 46 | 
             
            <pre class="synopsis">
         | 
| 47 47 | 
             
            #include <gtk/gtk.h>
         | 
| 48 48 |  | 
| 49 | 
            -
             | 
| 49 | 
            +
            struct              <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-struct" title="struct GtkStatusIcon">GtkStatusIcon</a>;
         | 
| 50 50 | 
             
            <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new" title="gtk_status_icon_new ()">gtk_status_icon_new</a>                 (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 51 | 
            -
            <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" title="gtk_status_icon_new_from_pixbuf ()">gtk_status_icon_new_from_pixbuf</a>     (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 51 | 
            +
            <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" title="gtk_status_icon_new_from_pixbuf ()">gtk_status_icon_new_from_pixbuf</a>     (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
         | 
| 52 52 | 
             
            <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-file" title="gtk_status_icon_new_from_file ()">gtk_status_icon_new_from_file</a>       (<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> *filename</code></em>);
         | 
| 53 53 | 
             
            <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-stock" title="gtk_status_icon_new_from_stock ()">gtk_status_icon_new_from_stock</a>      (<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>);
         | 
| 54 54 | 
             
            <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-icon-name" title="gtk_status_icon_new_from_icon_name ()">gtk_status_icon_new_from_icon_name</a>  (<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> *icon_name</code></em>);
         | 
| 55 55 | 
             
            <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-gicon" title="gtk_status_icon_new_from_gicon ()">gtk_status_icon_new_from_gicon</a>      (<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);
         | 
| 56 56 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-from-pixbuf" title="gtk_status_icon_set_from_pixbuf ()">gtk_status_icon_set_from_pixbuf</a>     (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 57 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 57 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
         | 
| 58 58 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-from-file" title="gtk_status_icon_set_from_file ()">gtk_status_icon_set_from_file</a>       (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 59 59 | 
             
                                                                     <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> *filename</code></em>);
         | 
| 60 60 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-from-stock" title="gtk_status_icon_set_from_stock ()">gtk_status_icon_set_from_stock</a>      (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| @@ -64,14 +64,14 @@ | |
| 64 64 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-from-gicon" title="gtk_status_icon_set_from_gicon ()">gtk_status_icon_set_from_gicon</a>      (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 65 65 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);
         | 
| 66 66 | 
             
            <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a>        <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-storage-type" title="gtk_status_icon_get_storage_type ()">gtk_status_icon_get_storage_type</a>    (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 67 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 68 | 
            -
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 69 | 
            -
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 67 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-pixbuf" title="gtk_status_icon_get_pixbuf ()">gtk_status_icon_get_pixbuf</a>          (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 68 | 
            +
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-stock" title="gtk_status_icon_get_stock ()">gtk_status_icon_get_stock</a>        (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 69 | 
            +
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-icon-name" title="gtk_status_icon_get_icon_name ()">gtk_status_icon_get_icon_name</a>    (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 70 70 | 
             
            <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="returnvalue">GIcon</span></a> *             <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-gicon" title="gtk_status_icon_get_gicon ()">gtk_status_icon_get_gicon</a>           (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 71 71 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-size" title="gtk_status_icon_get_size ()">gtk_status_icon_get_size</a>            (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 72 72 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-screen" title="gtk_status_icon_set_screen ()">gtk_status_icon_set_screen</a>          (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 73 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 74 | 
            -
            <a href="http://library.gnome.org/devel/ | 
| 73 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
         | 
| 74 | 
            +
            <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="returnvalue">GdkScreen</span></a> *         <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-screen" title="gtk_status_icon_get_screen ()">gtk_status_icon_get_screen</a>          (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 75 75 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-tooltip" title="gtk_status_icon_set_tooltip ()">gtk_status_icon_set_tooltip</a>         (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 76 76 | 
             
                                                                     <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> *tooltip_text</code></em>);
         | 
| 77 77 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-tooltip-text" title="gtk_status_icon_set_tooltip_text ()">gtk_status_icon_set_tooltip_text</a>    (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| @@ -85,7 +85,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm | |
| 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="GtkStatusIcon.html#gtk-status-icon-get-has-tooltip" title="gtk_status_icon_get_has_tooltip ()">gtk_status_icon_get_has_tooltip</a>     (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 86 86 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-title" title="gtk_status_icon_set_title ()">gtk_status_icon_set_title</a>           (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 87 87 | 
             
                                                                     <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> *title</code></em>);
         | 
| 88 | 
            -
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 88 | 
            +
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-title" title="gtk_status_icon_get_title ()">gtk_status_icon_get_title</a>        (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 89 89 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-name" title="gtk_status_icon_set_name ()">gtk_status_icon_set_name</a>            (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 90 90 | 
             
                                                                     <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> *name</code></em>);
         | 
| 91 91 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-visible" title="gtk_status_icon_set_visible ()">gtk_status_icon_set_visible</a>         (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| @@ -101,20 +101,20 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm | |
| 101 101 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *push_in</code></em>,
         | 
| 102 102 | 
             
                                                                     <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>);
         | 
| 103 103 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-geometry" title="gtk_status_icon_get_geometry ()">gtk_status_icon_get_geometry</a>        (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 104 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 105 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 104 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> **screen</code></em>,
         | 
| 105 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *area</code></em>,
         | 
| 106 106 | 
             
                                                                     <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>);
         | 
| 107 107 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>             <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-x11-window-id" title="gtk_status_icon_get_x11_window_id ()">gtk_status_icon_get_x11_window_id</a>   (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
         | 
| 108 108 | 
             
            </pre>
         | 
| 109 109 | 
             
            </div>
         | 
| 110 | 
            -
            <div class="refsect1" | 
| 110 | 
            +
            <div class="refsect1">
         | 
| 111 111 | 
             
            <a name="GtkStatusIcon.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 112 112 | 
             
            <pre class="synopsis">
         | 
| 113 113 | 
             
              <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| 114 114 | 
             
               +----GtkStatusIcon
         | 
| 115 115 | 
             
            </pre>
         | 
| 116 116 | 
             
            </div>
         | 
| 117 | 
            -
            <div class="refsect1" | 
| 117 | 
            +
            <div class="refsect1">
         | 
| 118 118 | 
             
            <a name="GtkStatusIcon.properties"></a><h2>Properties</h2>
         | 
| 119 119 | 
             
            <pre class="synopsis">
         | 
| 120 120 | 
             
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--blinking" title='The "blinking" property'>blinking</a>"                 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
         | 
| @@ -124,8 +124,8 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm | |
| 124 124 | 
             
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='The "has-tooltip" property'>has-tooltip</a>"              <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
         | 
| 125 125 | 
             
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--icon-name" title='The "icon-name" property'>icon-name</a>"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write
         | 
| 126 126 | 
             
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--orientation" title='The "orientation" property'>orientation</a>"              <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a>        : Read
         | 
| 127 | 
            -
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--pixbuf" title='The "pixbuf" property'>pixbuf</a>"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 128 | 
            -
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--screen" title='The "screen" property'>screen</a>"                   <a href="http://library.gnome.org/devel/ | 
| 127 | 
            +
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--pixbuf" title='The "pixbuf" property'>pixbuf</a>"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>*            : Read / Write
         | 
| 128 | 
            +
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--screen" title='The "screen" property'>screen</a>"                   <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>*            : Read / Write
         | 
| 129 129 | 
             
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--size" title='The "size" property'>size</a>"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read
         | 
| 130 130 | 
             
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--stock" title='The "stock" property'>stock</a>"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write
         | 
| 131 131 | 
             
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--storage-type" title='The "storage-type" property'>storage-type</a>"             <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a>          : Read
         | 
| @@ -135,19 +135,19 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm | |
| 135 135 | 
             
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--visible" title='The "visible" property'>visible</a>"                  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
         | 
| 136 136 | 
             
            </pre>
         | 
| 137 137 | 
             
            </div>
         | 
| 138 | 
            -
            <div class="refsect1" | 
| 138 | 
            +
            <div class="refsect1">
         | 
| 139 139 | 
             
            <a name="GtkStatusIcon.signals"></a><h2>Signals</h2>
         | 
| 140 140 | 
             
            <pre class="synopsis">
         | 
| 141 | 
            -
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-activate" title='The "activate" signal'>activate</a>"                                       :  | 
| 142 | 
            -
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-button-press-event" title='The "button-press-event" signal'>button-press-event</a>"                             : Run Last
         | 
| 143 | 
            -
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-button-release-event" title='The "button-release-event" signal'>button-release-event</a>"                           : Run Last
         | 
| 144 | 
            -
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-popup-menu" title='The "popup-menu" signal'>popup-menu</a>"                                     :  | 
| 145 | 
            -
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'>query-tooltip</a>"                                  : Run Last
         | 
| 146 | 
            -
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-scroll-event" title='The "scroll-event" signal'>scroll-event</a>"                                   : Run Last
         | 
| 147 | 
            -
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-size-changed" title='The "size-changed" signal'>size-changed</a>"                                   : Run Last
         | 
| 141 | 
            +
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-activate" title='The "activate" signal'>activate</a>"                                       : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
         | 
| 142 | 
            +
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-button-press-event" title='The "button-press-event" signal'>button-press-event</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>
         | 
| 143 | 
            +
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-button-release-event" title='The "button-release-event" signal'>button-release-event</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>
         | 
| 144 | 
            +
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-popup-menu" title='The "popup-menu" signal'>popup-menu</a>"                                     : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
         | 
| 145 | 
            +
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'>query-tooltip</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>
         | 
| 146 | 
            +
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-scroll-event" title='The "scroll-event" signal'>scroll-event</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>
         | 
| 147 | 
            +
              "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-size-changed" title='The "size-changed" signal'>size-changed</a>"                                   : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
         | 
| 148 148 | 
             
            </pre>
         | 
| 149 149 | 
             
            </div>
         | 
| 150 | 
            -
            <div class="refsect1" | 
| 150 | 
            +
            <div class="refsect1">
         | 
| 151 151 | 
             
            <a name="GtkStatusIcon.description"></a><h2>Description</h2>
         | 
| 152 152 | 
             
            <p>
         | 
| 153 153 | 
             
            The "system tray" or notification area is normally used for transient icons
         | 
| @@ -175,16 +175,16 @@ a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Obje | |
| 175 175 | 
             
            on Win32 doesn't allow to embed arbitrary widgets.
         | 
| 176 176 | 
             
            </p>
         | 
| 177 177 | 
             
            </div>
         | 
| 178 | 
            -
            <div class="refsect1" | 
| 178 | 
            +
            <div class="refsect1">
         | 
| 179 179 | 
             
            <a name="GtkStatusIcon.details"></a><h2>Details</h2>
         | 
| 180 | 
            -
            <div class="refsect2" | 
| 181 | 
            -
            <a name="GtkStatusIcon-struct"></a><h3>GtkStatusIcon</h3>
         | 
| 182 | 
            -
            <pre class="programlisting"> | 
| 180 | 
            +
            <div class="refsect2">
         | 
| 181 | 
            +
            <a name="GtkStatusIcon-struct"></a><h3>struct GtkStatusIcon</h3>
         | 
| 182 | 
            +
            <pre class="programlisting">struct GtkStatusIcon;</pre>
         | 
| 183 183 | 
             
            <p>
         | 
| 184 184 | 
             
            </p>
         | 
| 185 185 | 
             
            </div>
         | 
| 186 186 | 
             
            <hr>
         | 
| 187 | 
            -
            <div class="refsect2" | 
| 187 | 
            +
            <div class="refsect2">
         | 
| 188 188 | 
             
            <a name="gtk-status-icon-new"></a><h3>gtk_status_icon_new ()</h3>
         | 
| 189 189 | 
             
            <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     gtk_status_icon_new                 (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 190 190 | 
             
            <p>
         | 
| @@ -194,17 +194,16 @@ Creates an empty status icon object. | |
| 194 194 | 
             
            <col align="left" valign="top">
         | 
| 195 195 | 
             
            <tbody><tr>
         | 
| 196 196 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 197 | 
            -
            <td> | 
| 198 | 
            -
             | 
| 197 | 
            +
            <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
         | 
| 199 198 | 
             
            </td>
         | 
| 200 199 | 
             
            </tr></tbody>
         | 
| 201 200 | 
             
            </table></div>
         | 
| 202 201 | 
             
            <p class="since">Since 2.10</p>
         | 
| 203 202 | 
             
            </div>
         | 
| 204 203 | 
             
            <hr>
         | 
| 205 | 
            -
            <div class="refsect2" | 
| 204 | 
            +
            <div class="refsect2">
         | 
| 206 205 | 
             
            <a name="gtk-status-icon-new-from-pixbuf"></a><h3>gtk_status_icon_new_from_pixbuf ()</h3>
         | 
| 207 | 
            -
            <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     gtk_status_icon_new_from_pixbuf     (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 206 | 
            +
            <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     gtk_status_icon_new_from_pixbuf     (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
         | 
| 208 207 | 
             
            <p>
         | 
| 209 208 | 
             
            Creates a status icon displaying <em class="parameter"><code>pixbuf</code></em>. 
         | 
| 210 209 | 
             
            </p>
         | 
| @@ -217,13 +216,12 @@ space in the notification area, if necessary. | |
| 217 216 | 
             
            <tbody>
         | 
| 218 217 | 
             
            <tr>
         | 
| 219 218 | 
             
            <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
         | 
| 220 | 
            -
            <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 219 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
         | 
| 221 220 | 
             
            </td>
         | 
| 222 221 | 
             
            </tr>
         | 
| 223 222 | 
             
            <tr>
         | 
| 224 223 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 225 | 
            -
            <td> | 
| 226 | 
            -
             | 
| 224 | 
            +
            <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
         | 
| 227 225 | 
             
            </td>
         | 
| 228 226 | 
             
            </tr>
         | 
| 229 227 | 
             
            </tbody>
         | 
| @@ -231,7 +229,7 @@ space in the notification area, if necessary. | |
| 231 229 | 
             
            <p class="since">Since 2.10</p>
         | 
| 232 230 | 
             
            </div>
         | 
| 233 231 | 
             
            <hr>
         | 
| 234 | 
            -
            <div class="refsect2" | 
| 232 | 
            +
            <div class="refsect2">
         | 
| 235 233 | 
             
            <a name="gtk-status-icon-new-from-file"></a><h3>gtk_status_icon_new_from_file ()</h3>
         | 
| 236 234 | 
             
            <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     gtk_status_icon_new_from_file       (<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> *filename</code></em>);</pre>
         | 
| 237 235 | 
             
            <p>
         | 
| @@ -246,13 +244,11 @@ space in the notification area, if necessary. | |
| 246 244 | 
             
            <tbody>
         | 
| 247 245 | 
             
            <tr>
         | 
| 248 246 | 
             
            <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
         | 
| 249 | 
            -
            <td>a filename
         | 
| 250 | 
            -
            </td>
         | 
| 247 | 
            +
            <td>a filename</td>
         | 
| 251 248 | 
             
            </tr>
         | 
| 252 249 | 
             
            <tr>
         | 
| 253 250 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 254 | 
            -
            <td> | 
| 255 | 
            -
             | 
| 251 | 
            +
            <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
         | 
| 256 252 | 
             
            </td>
         | 
| 257 253 | 
             
            </tr>
         | 
| 258 254 | 
             
            </tbody>
         | 
| @@ -260,7 +256,7 @@ space in the notification area, if necessary. | |
| 260 256 | 
             
            <p class="since">Since 2.10</p>
         | 
| 261 257 | 
             
            </div>
         | 
| 262 258 | 
             
            <hr>
         | 
| 263 | 
            -
            <div class="refsect2" | 
| 259 | 
            +
            <div class="refsect2">
         | 
| 264 260 | 
             
            <a name="gtk-status-icon-new-from-stock"></a><h3>gtk_status_icon_new_from_stock ()</h3>
         | 
| 265 261 | 
             
            <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     gtk_status_icon_new_from_stock      (<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>);</pre>
         | 
| 266 262 | 
             
            <p>
         | 
| @@ -274,13 +270,11 @@ own stock icon names, see <a class="link" href="gtk-Themeable-Stock-Images.html# | |
| 274 270 | 
             
            <tbody>
         | 
| 275 271 | 
             
            <tr>
         | 
| 276 272 | 
             
            <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
         | 
| 277 | 
            -
            <td>a stock icon id
         | 
| 278 | 
            -
            </td>
         | 
| 273 | 
            +
            <td>a stock icon id</td>
         | 
| 279 274 | 
             
            </tr>
         | 
| 280 275 | 
             
            <tr>
         | 
| 281 276 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 282 | 
            -
            <td> | 
| 283 | 
            -
             | 
| 277 | 
            +
            <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
         | 
| 284 278 | 
             
            </td>
         | 
| 285 279 | 
             
            </tr>
         | 
| 286 280 | 
             
            </tbody>
         | 
| @@ -288,7 +282,7 @@ own stock icon names, see <a class="link" href="gtk-Themeable-Stock-Images.html# | |
| 288 282 | 
             
            <p class="since">Since 2.10</p>
         | 
| 289 283 | 
             
            </div>
         | 
| 290 284 | 
             
            <hr>
         | 
| 291 | 
            -
            <div class="refsect2" | 
| 285 | 
            +
            <div class="refsect2">
         | 
| 292 286 | 
             
            <a name="gtk-status-icon-new-from-icon-name"></a><h3>gtk_status_icon_new_from_icon_name ()</h3>
         | 
| 293 287 | 
             
            <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     gtk_status_icon_new_from_icon_name  (<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> *icon_name</code></em>);</pre>
         | 
| 294 288 | 
             
            <p>
         | 
| @@ -301,13 +295,11 @@ appropriately. | |
| 301 295 | 
             
            <tbody>
         | 
| 302 296 | 
             
            <tr>
         | 
| 303 297 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
         | 
| 304 | 
            -
            <td>an icon name
         | 
| 305 | 
            -
            </td>
         | 
| 298 | 
            +
            <td>an icon name</td>
         | 
| 306 299 | 
             
            </tr>
         | 
| 307 300 | 
             
            <tr>
         | 
| 308 301 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 309 | 
            -
            <td> | 
| 310 | 
            -
             | 
| 302 | 
            +
            <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
         | 
| 311 303 | 
             
            </td>
         | 
| 312 304 | 
             
            </tr>
         | 
| 313 305 | 
             
            </tbody>
         | 
| @@ -315,7 +307,7 @@ appropriately. | |
| 315 307 | 
             
            <p class="since">Since 2.10</p>
         | 
| 316 308 | 
             
            </div>
         | 
| 317 309 | 
             
            <hr>
         | 
| 318 | 
            -
            <div class="refsect2" | 
| 310 | 
            +
            <div class="refsect2">
         | 
| 319 311 | 
             
            <a name="gtk-status-icon-new-from-gicon"></a><h3>gtk_status_icon_new_from_gicon ()</h3>
         | 
| 320 312 | 
             
            <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> *     gtk_status_icon_new_from_gicon      (<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);</pre>
         | 
| 321 313 | 
             
            <p>
         | 
| @@ -332,8 +324,7 @@ themed icon, it will be updated when the theme changes. | |
| 332 324 | 
             
            </tr>
         | 
| 333 325 | 
             
            <tr>
         | 
| 334 326 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 335 | 
            -
            <td> | 
| 336 | 
            -
             | 
| 327 | 
            +
            <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
         | 
| 337 328 | 
             
            </td>
         | 
| 338 329 | 
             
            </tr>
         | 
| 339 330 | 
             
            </tbody>
         | 
| @@ -341,10 +332,10 @@ themed icon, it will be updated when the theme changes. | |
| 341 332 | 
             
            <p class="since">Since 2.14</p>
         | 
| 342 333 | 
             
            </div>
         | 
| 343 334 | 
             
            <hr>
         | 
| 344 | 
            -
            <div class="refsect2" | 
| 335 | 
            +
            <div class="refsect2">
         | 
| 345 336 | 
             
            <a name="gtk-status-icon-set-from-pixbuf"></a><h3>gtk_status_icon_set_from_pixbuf ()</h3>
         | 
| 346 337 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_from_pixbuf     (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 347 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 338 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
         | 
| 348 339 | 
             
            <p>
         | 
| 349 340 | 
             
            Makes <em class="parameter"><code>status_icon</code></em> display <em class="parameter"><code>pixbuf</code></em>.
         | 
| 350 341 | 
             
            See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" title="gtk_status_icon_new_from_pixbuf ()"><code class="function">gtk_status_icon_new_from_pixbuf()</code></a> for details.
         | 
| @@ -359,7 +350,7 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" ti | |
| 359 350 | 
             
            </tr>
         | 
| 360 351 | 
             
            <tr>
         | 
| 361 352 | 
             
            <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
         | 
| 362 | 
            -
            <td> | 
| 353 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</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>
         | 
| 363 354 | 
             
            </td>
         | 
| 364 355 | 
             
            </tr>
         | 
| 365 356 | 
             
            </tbody>
         | 
| @@ -367,7 +358,7 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" ti | |
| 367 358 | 
             
            <p class="since">Since 2.10</p>
         | 
| 368 359 | 
             
            </div>
         | 
| 369 360 | 
             
            <hr>
         | 
| 370 | 
            -
            <div class="refsect2" | 
| 361 | 
            +
            <div class="refsect2">
         | 
| 371 362 | 
             
            <a name="gtk-status-icon-set-from-file"></a><h3>gtk_status_icon_set_from_file ()</h3>
         | 
| 372 363 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_from_file       (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 373 364 | 
             
                                                                     <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> *filename</code></em>);</pre>
         | 
| @@ -385,15 +376,14 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-file" titl | |
| 385 376 | 
             
            </tr>
         | 
| 386 377 | 
             
            <tr>
         | 
| 387 378 | 
             
            <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
         | 
| 388 | 
            -
            <td>a filename
         | 
| 389 | 
            -
            </td>
         | 
| 379 | 
            +
            <td>a filename</td>
         | 
| 390 380 | 
             
            </tr>
         | 
| 391 381 | 
             
            </tbody>
         | 
| 392 382 | 
             
            </table></div>
         | 
| 393 383 | 
             
            <p class="since">Since 2.10</p>
         | 
| 394 384 | 
             
            </div>
         | 
| 395 385 | 
             
            <hr>
         | 
| 396 | 
            -
            <div class="refsect2" | 
| 386 | 
            +
            <div class="refsect2">
         | 
| 397 387 | 
             
            <a name="gtk-status-icon-set-from-stock"></a><h3>gtk_status_icon_set_from_stock ()</h3>
         | 
| 398 388 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_from_stock      (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 399 389 | 
             
                                                                     <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>);</pre>
         | 
| @@ -411,15 +401,14 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-stock" tit | |
| 411 401 | 
             
            </tr>
         | 
| 412 402 | 
             
            <tr>
         | 
| 413 403 | 
             
            <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
         | 
| 414 | 
            -
            <td>a stock icon id
         | 
| 415 | 
            -
            </td>
         | 
| 404 | 
            +
            <td>a stock icon id</td>
         | 
| 416 405 | 
             
            </tr>
         | 
| 417 406 | 
             
            </tbody>
         | 
| 418 407 | 
             
            </table></div>
         | 
| 419 408 | 
             
            <p class="since">Since 2.10</p>
         | 
| 420 409 | 
             
            </div>
         | 
| 421 410 | 
             
            <hr>
         | 
| 422 | 
            -
            <div class="refsect2" | 
| 411 | 
            +
            <div class="refsect2">
         | 
| 423 412 | 
             
            <a name="gtk-status-icon-set-from-icon-name"></a><h3>gtk_status_icon_set_from_icon_name ()</h3>
         | 
| 424 413 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_from_icon_name  (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 425 414 | 
             
                                                                     <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> *icon_name</code></em>);</pre>
         | 
| @@ -438,15 +427,14 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-icon-name" | |
| 438 427 | 
             
            </tr>
         | 
| 439 428 | 
             
            <tr>
         | 
| 440 429 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
         | 
| 441 | 
            -
            <td>an icon name
         | 
| 442 | 
            -
            </td>
         | 
| 430 | 
            +
            <td>an icon name</td>
         | 
| 443 431 | 
             
            </tr>
         | 
| 444 432 | 
             
            </tbody>
         | 
| 445 433 | 
             
            </table></div>
         | 
| 446 434 | 
             
            <p class="since">Since 2.10</p>
         | 
| 447 435 | 
             
            </div>
         | 
| 448 436 | 
             
            <hr>
         | 
| 449 | 
            -
            <div class="refsect2" | 
| 437 | 
            +
            <div class="refsect2">
         | 
| 450 438 | 
             
            <a name="gtk-status-icon-set-from-gicon"></a><h3>gtk_status_icon_set_from_gicon ()</h3>
         | 
| 451 439 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_from_gicon      (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 452 440 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);</pre>
         | 
| @@ -464,15 +452,14 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-gicon" tit | |
| 464 452 | 
             
            </tr>
         | 
| 465 453 | 
             
            <tr>
         | 
| 466 454 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
         | 
| 467 | 
            -
            <td>a GIcon
         | 
| 468 | 
            -
            </td>
         | 
| 455 | 
            +
            <td>a GIcon</td>
         | 
| 469 456 | 
             
            </tr>
         | 
| 470 457 | 
             
            </tbody>
         | 
| 471 458 | 
             
            </table></div>
         | 
| 472 459 | 
             
            <p class="since">Since 2.14</p>
         | 
| 473 460 | 
             
            </div>
         | 
| 474 461 | 
             
            <hr>
         | 
| 475 | 
            -
            <div class="refsect2" | 
| 462 | 
            +
            <div class="refsect2">
         | 
| 476 463 | 
             
            <a name="gtk-status-icon-get-storage-type"></a><h3>gtk_status_icon_get_storage_type ()</h3>
         | 
| 477 464 | 
             
            <pre class="programlisting"><a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a>        gtk_status_icon_get_storage_type    (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 478 465 | 
             
            <p>
         | 
| @@ -490,20 +477,18 @@ the return value will be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAP | |
| 490 477 | 
             
            </tr>
         | 
| 491 478 | 
             
            <tr>
         | 
| 492 479 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 493 | 
            -
            <td> | 
| 494 | 
            -
             | 
| 495 | 
            -
            </td>
         | 
| 480 | 
            +
            <td>the image representation being used</td>
         | 
| 496 481 | 
             
            </tr>
         | 
| 497 482 | 
             
            </tbody>
         | 
| 498 483 | 
             
            </table></div>
         | 
| 499 484 | 
             
            <p class="since">Since 2.10</p>
         | 
| 500 485 | 
             
            </div>
         | 
| 501 486 | 
             
            <hr>
         | 
| 502 | 
            -
            <div class="refsect2" | 
| 487 | 
            +
            <div class="refsect2">
         | 
| 503 488 | 
             
            <a name="gtk-status-icon-get-pixbuf"></a><h3>gtk_status_icon_get_pixbuf ()</h3>
         | 
| 504 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 489 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         gtk_status_icon_get_pixbuf          (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 505 490 | 
             
            <p>
         | 
| 506 | 
            -
            Gets the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 491 | 
            +
            Gets the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> being displayed by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>.
         | 
| 507 492 | 
             
            The storage type of the status icon must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
         | 
| 508 493 | 
             
            <a class="link" href="GtkImage.html#GTK-IMAGE-PIXBUF:CAPS"><code class="literal">GTK_IMAGE_PIXBUF</code></a> (see <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-storage-type" title="gtk_status_icon_get_storage_type ()"><code class="function">gtk_status_icon_get_storage_type()</code></a>).
         | 
| 509 494 | 
             
            The caller of this function does not own a reference to the
         | 
| @@ -519,8 +504,8 @@ returned pixbuf. | |
| 519 504 | 
             
            </tr>
         | 
| 520 505 | 
             
            <tr>
         | 
| 521 506 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 522 | 
            -
            <td> | 
| 523 | 
            -
             | 
| 507 | 
            +
            <td>the displayed pixbuf,
         | 
| 508 | 
            +
            or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the image is empty. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 524 509 | 
             
            </td>
         | 
| 525 510 | 
             
            </tr>
         | 
| 526 511 | 
             
            </tbody>
         | 
| @@ -528,9 +513,9 @@ returned pixbuf. | |
| 528 513 | 
             
            <p class="since">Since 2.10</p>
         | 
| 529 514 | 
             
            </div>
         | 
| 530 515 | 
             
            <hr>
         | 
| 531 | 
            -
            <div class="refsect2" | 
| 516 | 
            +
            <div class="refsect2">
         | 
| 532 517 | 
             
            <a name="gtk-status-icon-get-stock"></a><h3>gtk_status_icon_get_stock ()</h3>
         | 
| 533 | 
            -
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 518 | 
            +
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          gtk_status_icon_get_stock        (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 534 519 | 
             
            <p>
         | 
| 535 520 | 
             
            Gets the id of the stock icon being displayed by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>.
         | 
| 536 521 | 
             
            The storage type of the status icon must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
         | 
| @@ -548,19 +533,17 @@ be freed or modified. | |
| 548 533 | 
             
            </tr>
         | 
| 549 534 | 
             
            <tr>
         | 
| 550 535 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 551 | 
            -
            <td> | 
| 552 | 
            -
             | 
| 553 | 
            -
             | 
| 554 | 
            -
            </td>
         | 
| 536 | 
            +
            <td>stock id of the displayed stock icon,
         | 
| 537 | 
            +
            or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the image is empty.</td>
         | 
| 555 538 | 
             
            </tr>
         | 
| 556 539 | 
             
            </tbody>
         | 
| 557 540 | 
             
            </table></div>
         | 
| 558 541 | 
             
            <p class="since">Since 2.10</p>
         | 
| 559 542 | 
             
            </div>
         | 
| 560 543 | 
             
            <hr>
         | 
| 561 | 
            -
            <div class="refsect2" | 
| 544 | 
            +
            <div class="refsect2">
         | 
| 562 545 | 
             
            <a name="gtk-status-icon-get-icon-name"></a><h3>gtk_status_icon_get_icon_name ()</h3>
         | 
| 563 | 
            -
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 546 | 
            +
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          gtk_status_icon_get_icon_name    (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 564 547 | 
             
            <p>
         | 
| 565 548 | 
             
            Gets the name of the icon being displayed by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>.
         | 
| 566 549 | 
             
            The storage type of the status icon must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
         | 
| @@ -578,16 +561,14 @@ be freed or modified. | |
| 578 561 | 
             
            </tr>
         | 
| 579 562 | 
             
            <tr>
         | 
| 580 563 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 581 | 
            -
            <td> | 
| 582 | 
            -
             | 
| 583 | 
            -
            </td>
         | 
| 564 | 
            +
            <td>name of the displayed icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the image is empty.</td>
         | 
| 584 565 | 
             
            </tr>
         | 
| 585 566 | 
             
            </tbody>
         | 
| 586 567 | 
             
            </table></div>
         | 
| 587 568 | 
             
            <p class="since">Since 2.10</p>
         | 
| 588 569 | 
             
            </div>
         | 
| 589 570 | 
             
            <hr>
         | 
| 590 | 
            -
            <div class="refsect2" | 
| 571 | 
            +
            <div class="refsect2">
         | 
| 591 572 | 
             
            <a name="gtk-status-icon-get-gicon"></a><h3>gtk_status_icon_get_gicon ()</h3>
         | 
| 592 573 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="returnvalue">GIcon</span></a> *             gtk_status_icon_get_gicon           (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 593 574 | 
             
            <p>
         | 
| @@ -610,8 +591,7 @@ If this function fails, <em class="parameter"><code>icon</code></em> is left unc | |
| 610 591 | 
             
            </tr>
         | 
| 611 592 | 
             
            <tr>
         | 
| 612 593 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 613 | 
            -
            <td> | 
| 614 | 
            -
             | 
| 594 | 
            +
            <td>the displayed icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the image is empty. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 615 595 | 
             
            </td>
         | 
| 616 596 | 
             
            </tr>
         | 
| 617 597 | 
             
            </tbody>
         | 
| @@ -619,7 +599,7 @@ If this function fails, <em class="parameter"><code>icon</code></em> is left unc | |
| 619 599 | 
             
            <p class="since">Since 2.14</p>
         | 
| 620 600 | 
             
            </div>
         | 
| 621 601 | 
             
            <hr>
         | 
| 622 | 
            -
            <div class="refsect2" | 
| 602 | 
            +
            <div class="refsect2">
         | 
| 623 603 | 
             
            <a name="gtk-status-icon-get-size"></a><h3>gtk_status_icon_get_size ()</h3>
         | 
| 624 604 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                gtk_status_icon_get_size            (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 625 605 | 
             
            <p>
         | 
| @@ -643,21 +623,19 @@ status icon is embedded (see <a class="link" href="GtkStatusIcon.html#gtk-status | |
| 643 623 | 
             
            </tr>
         | 
| 644 624 | 
             
            <tr>
         | 
| 645 625 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 646 | 
            -
            <td> | 
| 647 | 
            -
             | 
| 648 | 
            -
            </td>
         | 
| 626 | 
            +
            <td>the size that is available for the image</td>
         | 
| 649 627 | 
             
            </tr>
         | 
| 650 628 | 
             
            </tbody>
         | 
| 651 629 | 
             
            </table></div>
         | 
| 652 630 | 
             
            <p class="since">Since 2.10</p>
         | 
| 653 631 | 
             
            </div>
         | 
| 654 632 | 
             
            <hr>
         | 
| 655 | 
            -
            <div class="refsect2" | 
| 633 | 
            +
            <div class="refsect2">
         | 
| 656 634 | 
             
            <a name="gtk-status-icon-set-screen"></a><h3>gtk_status_icon_set_screen ()</h3>
         | 
| 657 635 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_screen          (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 658 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 636 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
         | 
| 659 637 | 
             
            <p>
         | 
| 660 | 
            -
            Sets the <a href="http://library.gnome.org/devel/ | 
| 638 | 
            +
            Sets the <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> where <em class="parameter"><code>status_icon</code></em> is displayed; if
         | 
| 661 639 | 
             
            the icon is already mapped, it will be unmapped, and
         | 
| 662 640 | 
             
            then remapped on the new screen.
         | 
| 663 641 | 
             
            </p>
         | 
| @@ -671,7 +649,7 @@ then remapped on the new screen. | |
| 671 649 | 
             
            </tr>
         | 
| 672 650 | 
             
            <tr>
         | 
| 673 651 | 
             
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 674 | 
            -
            <td>a <a href="http://library.gnome.org/devel/ | 
| 652 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>
         | 
| 675 653 | 
             
            </td>
         | 
| 676 654 | 
             
            </tr>
         | 
| 677 655 | 
             
            </tbody>
         | 
| @@ -679,11 +657,11 @@ then remapped on the new screen. | |
| 679 657 | 
             
            <p class="since">Since 2.12</p>
         | 
| 680 658 | 
             
            </div>
         | 
| 681 659 | 
             
            <hr>
         | 
| 682 | 
            -
            <div class="refsect2" | 
| 660 | 
            +
            <div class="refsect2">
         | 
| 683 661 | 
             
            <a name="gtk-status-icon-get-screen"></a><h3>gtk_status_icon_get_screen ()</h3>
         | 
| 684 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/ | 
| 662 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="returnvalue">GdkScreen</span></a> *         gtk_status_icon_get_screen          (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 685 663 | 
             
            <p>
         | 
| 686 | 
            -
            Returns the <a href="http://library.gnome.org/devel/ | 
| 664 | 
            +
            Returns the <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> associated with <em class="parameter"><code>status_icon</code></em>.
         | 
| 687 665 | 
             
            </p>
         | 
| 688 666 | 
             
            <div class="variablelist"><table border="0">
         | 
| 689 667 | 
             
            <col align="left" valign="top">
         | 
| @@ -695,8 +673,7 @@ Returns the <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html" | |
| 695 673 | 
             
            </tr>
         | 
| 696 674 | 
             
            <tr>
         | 
| 697 675 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 698 | 
            -
            <td> | 
| 699 | 
            -
             | 
| 676 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 700 677 | 
             
            </td>
         | 
| 701 678 | 
             
            </tr>
         | 
| 702 679 | 
             
            </tbody>
         | 
| @@ -704,11 +681,11 @@ Returns the <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html" | |
| 704 681 | 
             
            <p class="since">Since 2.12</p>
         | 
| 705 682 | 
             
            </div>
         | 
| 706 683 | 
             
            <hr>
         | 
| 707 | 
            -
            <div class="refsect2" | 
| 684 | 
            +
            <div class="refsect2">
         | 
| 708 685 | 
             
            <a name="gtk-status-icon-set-tooltip"></a><h3>gtk_status_icon_set_tooltip ()</h3>
         | 
| 709 686 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_tooltip         (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 710 687 | 
             
                                                                     <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> *tooltip_text</code></em>);</pre>
         | 
| 711 | 
            -
            <div class="warning"  | 
| 688 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 712 689 | 
             
            <h3 class="title">Warning</h3>
         | 
| 713 690 | 
             
            <p><code class="literal">gtk_status_icon_set_tooltip</code> has been deprecated since version 2.16 and should not be used in newly-written code. Use <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-tooltip-text" title="gtk_status_icon_set_tooltip_text ()"><code class="function">gtk_status_icon_set_tooltip_text()</code></a> instead.</p>
         | 
| 714 691 | 
             
            </div>
         | 
| @@ -725,7 +702,7 @@ Sets the tooltip of the status icon. | |
| 725 702 | 
             
            </tr>
         | 
| 726 703 | 
             
            <tr>
         | 
| 727 704 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
         | 
| 728 | 
            -
            <td> | 
| 705 | 
            +
            <td>the tooltip text, 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>
         | 
| 729 706 | 
             
            </td>
         | 
| 730 707 | 
             
            </tr>
         | 
| 731 708 | 
             
            </tbody>
         | 
| @@ -733,7 +710,7 @@ Sets the tooltip of the status icon. | |
| 733 710 | 
             
            <p class="since">Since 2.10</p>
         | 
| 734 711 | 
             
            </div>
         | 
| 735 712 | 
             
            <hr>
         | 
| 736 | 
            -
            <div class="refsect2" | 
| 713 | 
            +
            <div class="refsect2">
         | 
| 737 714 | 
             
            <a name="gtk-status-icon-set-tooltip-text"></a><h3>gtk_status_icon_set_tooltip_text ()</h3>
         | 
| 738 715 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_tooltip_text    (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 739 716 | 
             
                                                                     <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> *text</code></em>);</pre>
         | 
| @@ -767,7 +744,7 @@ See also the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-tex | |
| 767 744 | 
             
            <p class="since">Since 2.16</p>
         | 
| 768 745 | 
             
            </div>
         | 
| 769 746 | 
             
            <hr>
         | 
| 770 | 
            -
            <div class="refsect2" | 
| 747 | 
            +
            <div class="refsect2">
         | 
| 771 748 | 
             
            <a name="gtk-status-icon-get-tooltip-text"></a><h3>gtk_status_icon_get_tooltip_text ()</h3>
         | 
| 772 749 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             gtk_status_icon_get_tooltip_text    (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 773 750 | 
             
            <p>
         | 
| @@ -783,17 +760,15 @@ Gets the contents of the tooltip for <em class="parameter"><code>status_icon</co | |
| 783 760 | 
             
            </tr>
         | 
| 784 761 | 
             
            <tr>
         | 
| 785 762 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 786 | 
            -
            <td> | 
| 787 | 
            -
             | 
| 788 | 
            -
             | 
| 789 | 
            -
            </td>
         | 
| 763 | 
            +
            <td>the tooltip text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. You should free the
         | 
| 764 | 
            +
            returned string with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</td>
         | 
| 790 765 | 
             
            </tr>
         | 
| 791 766 | 
             
            </tbody>
         | 
| 792 767 | 
             
            </table></div>
         | 
| 793 768 | 
             
            <p class="since">Since 2.16</p>
         | 
| 794 769 | 
             
            </div>
         | 
| 795 770 | 
             
            <hr>
         | 
| 796 | 
            -
            <div class="refsect2" | 
| 771 | 
            +
            <div class="refsect2">
         | 
| 797 772 | 
             
            <a name="gtk-status-icon-set-tooltip-markup"></a><h3>gtk_status_icon_set_tooltip_markup ()</h3>
         | 
| 798 773 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_tooltip_markup  (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 799 774 | 
             
                                                                     <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> *markup</code></em>);</pre>
         | 
| @@ -819,7 +794,7 @@ See also the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-mar | |
| 819 794 | 
             
            </tr>
         | 
| 820 795 | 
             
            <tr>
         | 
| 821 796 | 
             
            <td><p><span class="term"><em class="parameter"><code>markup</code></em> :</span></p></td>
         | 
| 822 | 
            -
            <td> | 
| 797 | 
            +
            <td>the contents of the tooltip for <em class="parameter"><code>status_icon</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 823 798 | 
             
            </td>
         | 
| 824 799 | 
             
            </tr>
         | 
| 825 800 | 
             
            </tbody>
         | 
| @@ -827,7 +802,7 @@ See also the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-mar | |
| 827 802 | 
             
            <p class="since">Since 2.16</p>
         | 
| 828 803 | 
             
            </div>
         | 
| 829 804 | 
             
            <hr>
         | 
| 830 | 
            -
            <div class="refsect2" | 
| 805 | 
            +
            <div class="refsect2">
         | 
| 831 806 | 
             
            <a name="gtk-status-icon-get-tooltip-markup"></a><h3>gtk_status_icon_get_tooltip_markup ()</h3>
         | 
| 832 807 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             gtk_status_icon_get_tooltip_markup  (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 833 808 | 
             
            <p>
         | 
| @@ -843,17 +818,15 @@ Gets the contents of the tooltip for <em class="parameter"><code>status_icon</co | |
| 843 818 | 
             
            </tr>
         | 
| 844 819 | 
             
            <tr>
         | 
| 845 820 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 846 | 
            -
            <td> | 
| 847 | 
            -
             | 
| 848 | 
            -
             | 
| 849 | 
            -
            </td>
         | 
| 821 | 
            +
            <td>the tooltip text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. You should free the
         | 
| 822 | 
            +
            returned string with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</td>
         | 
| 850 823 | 
             
            </tr>
         | 
| 851 824 | 
             
            </tbody>
         | 
| 852 825 | 
             
            </table></div>
         | 
| 853 826 | 
             
            <p class="since">Since 2.16</p>
         | 
| 854 827 | 
             
            </div>
         | 
| 855 828 | 
             
            <hr>
         | 
| 856 | 
            -
            <div class="refsect2" | 
| 829 | 
            +
            <div class="refsect2">
         | 
| 857 830 | 
             
            <a name="gtk-status-icon-set-has-tooltip"></a><h3>gtk_status_icon_set_has_tooltip ()</h3>
         | 
| 858 831 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_has_tooltip     (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 859 832 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> has_tooltip</code></em>);</pre>
         | 
| @@ -871,15 +844,14 @@ See <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title=' | |
| 871 844 | 
             
            </tr>
         | 
| 872 845 | 
             
            <tr>
         | 
| 873 846 | 
             
            <td><p><span class="term"><em class="parameter"><code>has_tooltip</code></em> :</span></p></td>
         | 
| 874 | 
            -
            <td>whether or not <em class="parameter"><code>status_icon</code></em> has a tooltip
         | 
| 875 | 
            -
            </td>
         | 
| 847 | 
            +
            <td>whether or not <em class="parameter"><code>status_icon</code></em> has a tooltip</td>
         | 
| 876 848 | 
             
            </tr>
         | 
| 877 849 | 
             
            </tbody>
         | 
| 878 850 | 
             
            </table></div>
         | 
| 879 851 | 
             
            <p class="since">Since 2.16</p>
         | 
| 880 852 | 
             
            </div>
         | 
| 881 853 | 
             
            <hr>
         | 
| 882 | 
            -
            <div class="refsect2" | 
| 854 | 
            +
            <div class="refsect2">
         | 
| 883 855 | 
             
            <a name="gtk-status-icon-get-has-tooltip"></a><h3>gtk_status_icon_get_has_tooltip ()</h3>
         | 
| 884 856 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_status_icon_get_has_tooltip     (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 885 857 | 
             
            <p>
         | 
| @@ -896,16 +868,14 @@ See <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title=' | |
| 896 868 | 
             
            </tr>
         | 
| 897 869 | 
             
            <tr>
         | 
| 898 870 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 899 | 
            -
            <td> | 
| 900 | 
            -
             | 
| 901 | 
            -
            </td>
         | 
| 871 | 
            +
            <td>current value of has-tooltip on <em class="parameter"><code>status_icon</code></em>.</td>
         | 
| 902 872 | 
             
            </tr>
         | 
| 903 873 | 
             
            </tbody>
         | 
| 904 874 | 
             
            </table></div>
         | 
| 905 875 | 
             
            <p class="since">Since 2.16</p>
         | 
| 906 876 | 
             
            </div>
         | 
| 907 877 | 
             
            <hr>
         | 
| 908 | 
            -
            <div class="refsect2" | 
| 878 | 
            +
            <div class="refsect2">
         | 
| 909 879 | 
             
            <a name="gtk-status-icon-set-title"></a><h3>gtk_status_icon_set_title ()</h3>
         | 
| 910 880 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_title           (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 911 881 | 
             
                                                                     <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> *title</code></em>);</pre>
         | 
| @@ -925,17 +895,16 @@ readers to render the tray icon. | |
| 925 895 | 
             
            </tr>
         | 
| 926 896 | 
             
            <tr>
         | 
| 927 897 | 
             
            <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
         | 
| 928 | 
            -
            <td>the title | 
| 929 | 
            -
            </td>
         | 
| 898 | 
            +
            <td>the title</td>
         | 
| 930 899 | 
             
            </tr>
         | 
| 931 900 | 
             
            </tbody>
         | 
| 932 901 | 
             
            </table></div>
         | 
| 933 902 | 
             
            <p class="since">Since 2.18</p>
         | 
| 934 903 | 
             
            </div>
         | 
| 935 904 | 
             
            <hr>
         | 
| 936 | 
            -
            <div class="refsect2" | 
| 905 | 
            +
            <div class="refsect2">
         | 
| 937 906 | 
             
            <a name="gtk-status-icon-get-title"></a><h3>gtk_status_icon_get_title ()</h3>
         | 
| 938 | 
            -
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 907 | 
            +
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          gtk_status_icon_get_title        (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 939 908 | 
             
            <p>
         | 
| 940 909 | 
             
            Gets the title of this tray icon. See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-title" title="gtk_status_icon_set_title ()"><code class="function">gtk_status_icon_set_title()</code></a>.
         | 
| 941 910 | 
             
            </p>
         | 
| @@ -949,16 +918,14 @@ Gets the title of this tray icon. See <a class="link" href="GtkStatusIcon.html#g | |
| 949 918 | 
             
            </tr>
         | 
| 950 919 | 
             
            <tr>
         | 
| 951 920 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 952 | 
            -
            <td> | 
| 953 | 
            -
             | 
| 954 | 
            -
            </td>
         | 
| 921 | 
            +
            <td>the title of the status icon</td>
         | 
| 955 922 | 
             
            </tr>
         | 
| 956 923 | 
             
            </tbody>
         | 
| 957 924 | 
             
            </table></div>
         | 
| 958 925 | 
             
            <p class="since">Since 2.18</p>
         | 
| 959 926 | 
             
            </div>
         | 
| 960 927 | 
             
            <hr>
         | 
| 961 | 
            -
            <div class="refsect2" | 
| 928 | 
            +
            <div class="refsect2">
         | 
| 962 929 | 
             
            <a name="gtk-status-icon-set-name"></a><h3>gtk_status_icon_set_name ()</h3>
         | 
| 963 930 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_name            (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 964 931 | 
             
                                                                     <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> *name</code></em>);</pre>
         | 
| @@ -978,15 +945,14 @@ the user. | |
| 978 945 | 
             
            </tr>
         | 
| 979 946 | 
             
            <tr>
         | 
| 980 947 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 981 | 
            -
            <td>the name
         | 
| 982 | 
            -
            </td>
         | 
| 948 | 
            +
            <td>the name</td>
         | 
| 983 949 | 
             
            </tr>
         | 
| 984 950 | 
             
            </tbody>
         | 
| 985 951 | 
             
            </table></div>
         | 
| 986 952 | 
             
            <p class="since">Since 2.20</p>
         | 
| 987 953 | 
             
            </div>
         | 
| 988 954 | 
             
            <hr>
         | 
| 989 | 
            -
            <div class="refsect2" | 
| 955 | 
            +
            <div class="refsect2">
         | 
| 990 956 | 
             
            <a name="gtk-status-icon-set-visible"></a><h3>gtk_status_icon_set_visible ()</h3>
         | 
| 991 957 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_visible         (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 992 958 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible</code></em>);</pre>
         | 
| @@ -1004,15 +970,14 @@ Shows or hides a status icon. | |
| 1004 970 | 
             
            <tr>
         | 
| 1005 971 | 
             
            <td><p><span class="term"><em class="parameter"><code>visible</code></em> :</span></p></td>
         | 
| 1006 972 | 
             
            <td>
         | 
| 1007 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to show the status icon, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to hide it
         | 
| 1008 | 
            -
            </td>
         | 
| 973 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to show the status icon, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to hide it</td>
         | 
| 1009 974 | 
             
            </tr>
         | 
| 1010 975 | 
             
            </tbody>
         | 
| 1011 976 | 
             
            </table></div>
         | 
| 1012 977 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1013 978 | 
             
            </div>
         | 
| 1014 979 | 
             
            <hr>
         | 
| 1015 | 
            -
            <div class="refsect2" | 
| 980 | 
            +
            <div class="refsect2">
         | 
| 1016 981 | 
             
            <a name="gtk-status-icon-get-visible"></a><h3>gtk_status_icon_get_visible ()</h3>
         | 
| 1017 982 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_status_icon_get_visible         (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 1018 983 | 
             
            <p>
         | 
| @@ -1031,20 +996,19 @@ the user can actually see the icon, see also | |
| 1031 996 | 
             
            </tr>
         | 
| 1032 997 | 
             
            <tr>
         | 
| 1033 998 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1034 | 
            -
            <td> | 
| 1035 | 
            -
             | 
| 1036 | 
            -
            </td>
         | 
| 999 | 
            +
            <td>
         | 
| 1000 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the status icon is visible</td>
         | 
| 1037 1001 | 
             
            </tr>
         | 
| 1038 1002 | 
             
            </tbody>
         | 
| 1039 1003 | 
             
            </table></div>
         | 
| 1040 1004 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1041 1005 | 
             
            </div>
         | 
| 1042 1006 | 
             
            <hr>
         | 
| 1043 | 
            -
            <div class="refsect2" | 
| 1007 | 
            +
            <div class="refsect2">
         | 
| 1044 1008 | 
             
            <a name="gtk-status-icon-set-blinking"></a><h3>gtk_status_icon_set_blinking ()</h3>
         | 
| 1045 1009 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_set_blinking        (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 1046 1010 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blinking</code></em>);</pre>
         | 
| 1047 | 
            -
            <div class="warning"  | 
| 1011 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1048 1012 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1049 1013 | 
             
            <p><code class="literal">gtk_status_icon_set_blinking</code> has been deprecated since version 2.22 and should not be used in newly-written code. This function will be removed in GTK+ 3</p>
         | 
| 1050 1014 | 
             
            </div>
         | 
| @@ -1065,18 +1029,17 @@ this setting has no effect. | |
| 1065 1029 | 
             
            <tr>
         | 
| 1066 1030 | 
             
            <td><p><span class="term"><em class="parameter"><code>blinking</code></em> :</span></p></td>
         | 
| 1067 1031 | 
             
            <td>
         | 
| 1068 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to turn blinking on, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to turn it off
         | 
| 1069 | 
            -
            </td>
         | 
| 1032 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to turn blinking on, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to turn it off</td>
         | 
| 1070 1033 | 
             
            </tr>
         | 
| 1071 1034 | 
             
            </tbody>
         | 
| 1072 1035 | 
             
            </table></div>
         | 
| 1073 1036 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1074 1037 | 
             
            </div>
         | 
| 1075 1038 | 
             
            <hr>
         | 
| 1076 | 
            -
            <div class="refsect2" | 
| 1039 | 
            +
            <div class="refsect2">
         | 
| 1077 1040 | 
             
            <a name="gtk-status-icon-get-blinking"></a><h3>gtk_status_icon_get_blinking ()</h3>
         | 
| 1078 1041 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_status_icon_get_blinking        (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 1079 | 
            -
            <div class="warning"  | 
| 1042 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1080 1043 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1081 1044 | 
             
            <p><code class="literal">gtk_status_icon_get_blinking</code> has been deprecated since version 2.22 and should not be used in newly-written code. This function will be removed in GTK+ 3</p>
         | 
| 1082 1045 | 
             
            </div>
         | 
| @@ -1094,16 +1057,15 @@ Returns whether the icon is blinking, see | |
| 1094 1057 | 
             
            </tr>
         | 
| 1095 1058 | 
             
            <tr>
         | 
| 1096 1059 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1097 | 
            -
            <td> | 
| 1098 | 
            -
             | 
| 1099 | 
            -
            </td>
         | 
| 1060 | 
            +
            <td>
         | 
| 1061 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon is blinking</td>
         | 
| 1100 1062 | 
             
            </tr>
         | 
| 1101 1063 | 
             
            </tbody>
         | 
| 1102 1064 | 
             
            </table></div>
         | 
| 1103 1065 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1104 1066 | 
             
            </div>
         | 
| 1105 1067 | 
             
            <hr>
         | 
| 1106 | 
            -
            <div class="refsect2" | 
| 1068 | 
            +
            <div class="refsect2">
         | 
| 1107 1069 | 
             
            <a name="gtk-status-icon-is-embedded"></a><h3>gtk_status_icon_is_embedded ()</h3>
         | 
| 1108 1070 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_status_icon_is_embedded         (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 1109 1071 | 
             
            <p>
         | 
| @@ -1120,17 +1082,16 @@ area. | |
| 1120 1082 | 
             
            </tr>
         | 
| 1121 1083 | 
             
            <tr>
         | 
| 1122 1084 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1123 | 
            -
            <td> | 
| 1124 | 
            -
             | 
| 1125 | 
            -
             | 
| 1126 | 
            -
            </td>
         | 
| 1085 | 
            +
            <td>
         | 
| 1086 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the status icon is embedded in
         | 
| 1087 | 
            +
            a notification area.</td>
         | 
| 1127 1088 | 
             
            </tr>
         | 
| 1128 1089 | 
             
            </tbody>
         | 
| 1129 1090 | 
             
            </table></div>
         | 
| 1130 1091 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1131 1092 | 
             
            </div>
         | 
| 1132 1093 | 
             
            <hr>
         | 
| 1133 | 
            -
            <div class="refsect2" | 
| 1094 | 
            +
            <div class="refsect2">
         | 
| 1134 1095 | 
             
            <a name="gtk-status-icon-position-menu"></a><h3>gtk_status_icon_position_menu ()</h3>
         | 
| 1135 1096 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_status_icon_position_menu       (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
         | 
| 1136 1097 | 
             
                                                                     <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>,
         | 
| @@ -1151,35 +1112,31 @@ to position <em class="parameter"><code>menu</code></em> aligned to the status i | |
| 1151 1112 | 
             
            </tr>
         | 
| 1152 1113 | 
             
            <tr>
         | 
| 1153 1114 | 
             
            <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
         | 
| 1154 | 
            -
            <td>return location for the x position
         | 
| 1155 | 
            -
            </td>
         | 
| 1115 | 
            +
            <td>return location for the x position</td>
         | 
| 1156 1116 | 
             
            </tr>
         | 
| 1157 1117 | 
             
            <tr>
         | 
| 1158 1118 | 
             
            <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
         | 
| 1159 | 
            -
            <td>return location for the y position
         | 
| 1160 | 
            -
            </td>
         | 
| 1119 | 
            +
            <td>return location for the y position</td>
         | 
| 1161 1120 | 
             
            </tr>
         | 
| 1162 1121 | 
             
            <tr>
         | 
| 1163 1122 | 
             
            <td><p><span class="term"><em class="parameter"><code>push_in</code></em> :</span></p></td>
         | 
| 1164 1123 | 
             
            <td>whether the first menu item should be offset (pushed in) to be
         | 
| 1165 | 
            -
             | 
| 1166 | 
            -
            </td>
         | 
| 1124 | 
            +
            aligned with the menu popup position (only useful for GtkOptionMenu).</td>
         | 
| 1167 1125 | 
             
            </tr>
         | 
| 1168 1126 | 
             
            <tr>
         | 
| 1169 1127 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 1170 | 
            -
            <td>the status icon to position the menu on
         | 
| 1171 | 
            -
            </td>
         | 
| 1128 | 
            +
            <td>the status icon to position the menu on</td>
         | 
| 1172 1129 | 
             
            </tr>
         | 
| 1173 1130 | 
             
            </tbody>
         | 
| 1174 1131 | 
             
            </table></div>
         | 
| 1175 1132 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1176 1133 | 
             
            </div>
         | 
| 1177 1134 | 
             
            <hr>
         | 
| 1178 | 
            -
            <div class="refsect2" | 
| 1135 | 
            +
            <div class="refsect2">
         | 
| 1179 1136 | 
             
            <a name="gtk-status-icon-get-geometry"></a><h3>gtk_status_icon_get_geometry ()</h3>
         | 
| 1180 1137 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_status_icon_get_geometry        (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
         | 
| 1181 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1182 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1138 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> **screen</code></em>,
         | 
| 1139 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *area</code></em>,
         | 
| 1183 1140 | 
             
                                                                     <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>
         | 
| 1184 1141 | 
             
            <p>
         | 
| 1185 1142 | 
             
            Obtains information about the location of the status icon
         | 
| @@ -1207,37 +1164,36 @@ is embedded in a notification area, see | |
| 1207 1164 | 
             
            </tr>
         | 
| 1208 1165 | 
             
            <tr>
         | 
| 1209 1166 | 
             
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 1210 | 
            -
            <td> | 
| 1211 | 
            -
             | 
| 1167 | 
            +
            <td>return location for the screen, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
         | 
| 1168 | 
            +
            information is not needed. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1212 1169 | 
             
            </td>
         | 
| 1213 1170 | 
             
            </tr>
         | 
| 1214 1171 | 
             
            <tr>
         | 
| 1215 1172 | 
             
            <td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
         | 
| 1216 | 
            -
            <td> | 
| 1217 | 
            -
             | 
| 1173 | 
            +
            <td>return location for the area occupied by the status
         | 
| 1174 | 
            +
            icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1218 1175 | 
             
            </td>
         | 
| 1219 1176 | 
             
            </tr>
         | 
| 1220 1177 | 
             
            <tr>
         | 
| 1221 1178 | 
             
            <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
         | 
| 1222 | 
            -
            <td> | 
| 1223 | 
            -
             | 
| 1224 | 
            -
             | 
| 1225 | 
            -
             | 
| 1179 | 
            +
            <td>return location for the orientation of the panel
         | 
| 1180 | 
            +
            in which the status icon is embedded, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. A panel
         | 
| 1181 | 
            +
            at the top or bottom of the screen is horizontal, a panel
         | 
| 1182 | 
            +
            at the left or right is vertical. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1226 1183 | 
             
            </td>
         | 
| 1227 1184 | 
             
            </tr>
         | 
| 1228 1185 | 
             
            <tr>
         | 
| 1229 1186 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1230 | 
            -
            <td> | 
| 1231 | 
            -
             | 
| 1232 | 
            -
             | 
| 1233 | 
            -
            </td>
         | 
| 1187 | 
            +
            <td>
         | 
| 1188 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the location information has
         | 
| 1189 | 
            +
            been filled in</td>
         | 
| 1234 1190 | 
             
            </tr>
         | 
| 1235 1191 | 
             
            </tbody>
         | 
| 1236 1192 | 
             
            </table></div>
         | 
| 1237 1193 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1238 1194 | 
             
            </div>
         | 
| 1239 1195 | 
             
            <hr>
         | 
| 1240 | 
            -
            <div class="refsect2" | 
| 1196 | 
            +
            <div class="refsect2">
         | 
| 1241 1197 | 
             
            <a name="gtk-status-icon-get-x11-window-id"></a><h3>gtk_status_icon_get_x11_window_id ()</h3>
         | 
| 1242 1198 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>             gtk_status_icon_get_x11_window_id   (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
         | 
| 1243 1199 | 
             
            <p>
         | 
| @@ -1263,22 +1219,20 @@ as <a class="link" href="GtkStatusIcon.html#gtk-status-icon-position-menu" title | |
| 1263 1219 | 
             
            </tr>
         | 
| 1264 1220 | 
             
            <tr>
         | 
| 1265 1221 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1266 | 
            -
            <td> | 
| 1267 | 
            -
            underlying X11 Window
         | 
| 1268 | 
            -
             | 
| 1269 | 
            -
            </td>
         | 
| 1222 | 
            +
            <td>An 32 bit unsigned integer identifier for the
         | 
| 1223 | 
            +
            underlying X11 Window</td>
         | 
| 1270 1224 | 
             
            </tr>
         | 
| 1271 1225 | 
             
            </tbody>
         | 
| 1272 1226 | 
             
            </table></div>
         | 
| 1273 1227 | 
             
            <p class="since">Since 2.14</p>
         | 
| 1274 1228 | 
             
            </div>
         | 
| 1275 1229 | 
             
            </div>
         | 
| 1276 | 
            -
            <div class="refsect1" | 
| 1230 | 
            +
            <div class="refsect1">
         | 
| 1277 1231 | 
             
            <a name="GtkStatusIcon.property-details"></a><h2>Property Details</h2>
         | 
| 1278 | 
            -
            <div class="refsect2" | 
| 1232 | 
            +
            <div class="refsect2">
         | 
| 1279 1233 | 
             
            <a name="GtkStatusIcon--blinking"></a><h3>The <code class="literal">"blinking"</code> property</h3>
         | 
| 1280 1234 | 
             
            <pre class="programlisting">  "blinking"                 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1281 | 
            -
            <div class="warning"  | 
| 1235 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1282 1236 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1283 1237 | 
             
            <p><code class="literal">GtkStatusIcon:blinking</code> has been deprecated since version 2.22 and should not be used in newly-written code. This property will be removed in GTK+ 3</p>
         | 
| 1284 1238 | 
             
            </div>
         | 
| @@ -1288,7 +1242,7 @@ Whether or not the status icon is blinking. | |
| 1288 1242 | 
             
            <p>Default value: FALSE</p>
         | 
| 1289 1243 | 
             
            </div>
         | 
| 1290 1244 | 
             
            <hr>
         | 
| 1291 | 
            -
            <div class="refsect2" | 
| 1245 | 
            +
            <div class="refsect2">
         | 
| 1292 1246 | 
             
            <a name="GtkStatusIcon--embedded"></a><h3>The <code class="literal">"embedded"</code> property</h3>
         | 
| 1293 1247 | 
             
            <pre class="programlisting">  "embedded"                 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read</pre>
         | 
| 1294 1248 | 
             
            <p>
         | 
| @@ -1298,14 +1252,14 @@ Whether or not the status icon is blinking. | |
| 1298 1252 | 
             
            <p class="since">Since 2.12</p>
         | 
| 1299 1253 | 
             
            </div>
         | 
| 1300 1254 | 
             
            <hr>
         | 
| 1301 | 
            -
            <div class="refsect2" | 
| 1255 | 
            +
            <div class="refsect2">
         | 
| 1302 1256 | 
             
            <a name="GtkStatusIcon--file"></a><h3>The <code class="literal">"file"</code> property</h3>
         | 
| 1303 1257 | 
             
            <pre class="programlisting">  "file"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Write</pre>
         | 
| 1304 1258 | 
             
            <p>Filename to load and display.</p>
         | 
| 1305 1259 | 
             
            <p>Default value: NULL</p>
         | 
| 1306 1260 | 
             
            </div>
         | 
| 1307 1261 | 
             
            <hr>
         | 
| 1308 | 
            -
            <div class="refsect2" | 
| 1262 | 
            +
            <div class="refsect2">
         | 
| 1309 1263 | 
             
            <a name="GtkStatusIcon--gicon"></a><h3>The <code class="literal">"gicon"</code> property</h3>
         | 
| 1310 1264 | 
             
            <pre class="programlisting">  "gicon"                    <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>*                : Read / Write</pre>
         | 
| 1311 1265 | 
             
            <p>
         | 
| @@ -1315,7 +1269,7 @@ the image will be updated automatically if the theme changes. | |
| 1315 1269 | 
             
            <p class="since">Since 2.14</p>
         | 
| 1316 1270 | 
             
            </div>
         | 
| 1317 1271 | 
             
            <hr>
         | 
| 1318 | 
            -
            <div class="refsect2" | 
| 1272 | 
            +
            <div class="refsect2">
         | 
| 1319 1273 | 
             
            <a name="GtkStatusIcon--has-tooltip"></a><h3>The <code class="literal">"has-tooltip"</code> property</h3>
         | 
| 1320 1274 | 
             
            <pre class="programlisting">  "has-tooltip"              <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1321 1275 | 
             
            <p>
         | 
| @@ -1339,14 +1293,14 @@ For plain text tooltips, use <a class="link" href="GtkStatusIcon.html#GtkStatusI | |
| 1339 1293 | 
             
            <p class="since">Since 2.16</p>
         | 
| 1340 1294 | 
             
            </div>
         | 
| 1341 1295 | 
             
            <hr>
         | 
| 1342 | 
            -
            <div class="refsect2" | 
| 1296 | 
            +
            <div class="refsect2">
         | 
| 1343 1297 | 
             
            <a name="GtkStatusIcon--icon-name"></a><h3>The <code class="literal">"icon-name"</code> property</h3>
         | 
| 1344 1298 | 
             
            <pre class="programlisting">  "icon-name"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1345 1299 | 
             
            <p>The name of the icon from the icon theme.</p>
         | 
| 1346 1300 | 
             
            <p>Default value: NULL</p>
         | 
| 1347 1301 | 
             
            </div>
         | 
| 1348 1302 | 
             
            <hr>
         | 
| 1349 | 
            -
            <div class="refsect2" | 
| 1303 | 
            +
            <div class="refsect2">
         | 
| 1350 1304 | 
             
            <a name="GtkStatusIcon--orientation"></a><h3>The <code class="literal">"orientation"</code> property</h3>
         | 
| 1351 1305 | 
             
            <pre class="programlisting">  "orientation"              <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a>        : Read</pre>
         | 
| 1352 1306 | 
             
            <p>
         | 
| @@ -1357,19 +1311,19 @@ is embedded. | |
| 1357 1311 | 
             
            <p class="since">Since 2.12</p>
         | 
| 1358 1312 | 
             
            </div>
         | 
| 1359 1313 | 
             
            <hr>
         | 
| 1360 | 
            -
            <div class="refsect2" | 
| 1314 | 
            +
            <div class="refsect2">
         | 
| 1361 1315 | 
             
            <a name="GtkStatusIcon--pixbuf"></a><h3>The <code class="literal">"pixbuf"</code> property</h3>
         | 
| 1362 | 
            -
            <pre class="programlisting">  "pixbuf"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 1316 | 
            +
            <pre class="programlisting">  "pixbuf"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>*            : Read / Write</pre>
         | 
| 1363 1317 | 
             
            <p>A GdkPixbuf to display.</p>
         | 
| 1364 1318 | 
             
            </div>
         | 
| 1365 1319 | 
             
            <hr>
         | 
| 1366 | 
            -
            <div class="refsect2" | 
| 1320 | 
            +
            <div class="refsect2">
         | 
| 1367 1321 | 
             
            <a name="GtkStatusIcon--screen"></a><h3>The <code class="literal">"screen"</code> property</h3>
         | 
| 1368 | 
            -
            <pre class="programlisting">  "screen"                   <a href="http://library.gnome.org/devel/ | 
| 1322 | 
            +
            <pre class="programlisting">  "screen"                   <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>*            : Read / Write</pre>
         | 
| 1369 1323 | 
             
            <p>The screen where this status icon will be displayed.</p>
         | 
| 1370 1324 | 
             
            </div>
         | 
| 1371 1325 | 
             
            <hr>
         | 
| 1372 | 
            -
            <div class="refsect2" | 
| 1326 | 
            +
            <div class="refsect2">
         | 
| 1373 1327 | 
             
            <a name="GtkStatusIcon--size"></a><h3>The <code class="literal">"size"</code> property</h3>
         | 
| 1374 1328 | 
             
            <pre class="programlisting">  "size"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read</pre>
         | 
| 1375 1329 | 
             
            <p>The size of the icon.</p>
         | 
| @@ -1377,21 +1331,21 @@ is embedded. | |
| 1377 1331 | 
             
            <p>Default value: 0</p>
         | 
| 1378 1332 | 
             
            </div>
         | 
| 1379 1333 | 
             
            <hr>
         | 
| 1380 | 
            -
            <div class="refsect2" | 
| 1334 | 
            +
            <div class="refsect2">
         | 
| 1381 1335 | 
             
            <a name="GtkStatusIcon--stock"></a><h3>The <code class="literal">"stock"</code> property</h3>
         | 
| 1382 1336 | 
             
            <pre class="programlisting">  "stock"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1383 1337 | 
             
            <p>Stock ID for a stock image to display.</p>
         | 
| 1384 1338 | 
             
            <p>Default value: NULL</p>
         | 
| 1385 1339 | 
             
            </div>
         | 
| 1386 1340 | 
             
            <hr>
         | 
| 1387 | 
            -
            <div class="refsect2" | 
| 1341 | 
            +
            <div class="refsect2">
         | 
| 1388 1342 | 
             
            <a name="GtkStatusIcon--storage-type"></a><h3>The <code class="literal">"storage-type"</code> property</h3>
         | 
| 1389 1343 | 
             
            <pre class="programlisting">  "storage-type"             <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a>          : Read</pre>
         | 
| 1390 1344 | 
             
            <p>The representation being used for image data.</p>
         | 
| 1391 1345 | 
             
            <p>Default value: GTK_IMAGE_EMPTY</p>
         | 
| 1392 1346 | 
             
            </div>
         | 
| 1393 1347 | 
             
            <hr>
         | 
| 1394 | 
            -
            <div class="refsect2" | 
| 1348 | 
            +
            <div class="refsect2">
         | 
| 1395 1349 | 
             
            <a name="GtkStatusIcon--title"></a><h3>The <code class="literal">"title"</code> property</h3>
         | 
| 1396 1350 | 
             
            <pre class="programlisting">  "title"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1397 1351 | 
             
            <p>
         | 
| @@ -1403,7 +1357,7 @@ like screen readers to render the tray icon. | |
| 1403 1357 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1404 1358 | 
             
            </div>
         | 
| 1405 1359 | 
             
            <hr>
         | 
| 1406 | 
            -
            <div class="refsect2" | 
| 1360 | 
            +
            <div class="refsect2">
         | 
| 1407 1361 | 
             
            <a name="GtkStatusIcon--tooltip-markup"></a><h3>The <code class="literal">"tooltip-markup"</code> property</h3>
         | 
| 1408 1362 | 
             
            <pre class="programlisting">  "tooltip-markup"           <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1409 1363 | 
             
            <p>
         | 
| @@ -1425,7 +1379,7 @@ On some platforms, embedded markup will be ignored. | |
| 1425 1379 | 
             
            <p class="since">Since 2.16</p>
         | 
| 1426 1380 | 
             
            </div>
         | 
| 1427 1381 | 
             
            <hr>
         | 
| 1428 | 
            -
            <div class="refsect2" | 
| 1382 | 
            +
            <div class="refsect2">
         | 
| 1429 1383 | 
             
            <a name="GtkStatusIcon--tooltip-text"></a><h3>The <code class="literal">"tooltip-text"</code> property</h3>
         | 
| 1430 1384 | 
             
            <pre class="programlisting">  "tooltip-text"             <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1431 1385 | 
             
            <p>
         | 
| @@ -1450,19 +1404,19 @@ that they allow on status icons, e.g. Windows only shows the first | |
| 1450 1404 | 
             
            <p class="since">Since 2.16</p>
         | 
| 1451 1405 | 
             
            </div>
         | 
| 1452 1406 | 
             
            <hr>
         | 
| 1453 | 
            -
            <div class="refsect2" | 
| 1407 | 
            +
            <div class="refsect2">
         | 
| 1454 1408 | 
             
            <a name="GtkStatusIcon--visible"></a><h3>The <code class="literal">"visible"</code> property</h3>
         | 
| 1455 1409 | 
             
            <pre class="programlisting">  "visible"                  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1456 1410 | 
             
            <p>Whether or not the status icon is visible.</p>
         | 
| 1457 1411 | 
             
            <p>Default value: TRUE</p>
         | 
| 1458 1412 | 
             
            </div>
         | 
| 1459 1413 | 
             
            </div>
         | 
| 1460 | 
            -
            <div class="refsect1" | 
| 1414 | 
            +
            <div class="refsect1">
         | 
| 1461 1415 | 
             
            <a name="GtkStatusIcon.signal-details"></a><h2>Signal Details</h2>
         | 
| 1462 | 
            -
            <div class="refsect2" | 
| 1416 | 
            +
            <div class="refsect2">
         | 
| 1463 1417 | 
             
            <a name="GtkStatusIcon-activate"></a><h3>The <code class="literal">"activate"</code> signal</h3>
         | 
| 1464 1418 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
         | 
| 1465 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>       user_data)        :  | 
| 1419 | 
            +
                                                                    <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>
         | 
| 1466 1420 | 
             
            <p>
         | 
| 1467 1421 | 
             
            Gets emitted when the user activates the status icon.
         | 
| 1468 1422 | 
             
            If and how status icons can activated is platform-dependent.
         | 
| @@ -1476,8 +1430,7 @@ be used by applications and should be wrapped by language bindings. | |
| 1476 1430 | 
             
            <tbody>
         | 
| 1477 1431 | 
             
            <tr>
         | 
| 1478 1432 | 
             
            <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
         | 
| 1479 | 
            -
            <td>the object which received the signal
         | 
| 1480 | 
            -
            </td>
         | 
| 1433 | 
            +
            <td>the object which received the signal</td>
         | 
| 1481 1434 | 
             
            </tr>
         | 
| 1482 1435 | 
             
            <tr>
         | 
| 1483 1436 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1488,11 +1441,11 @@ be used by applications and should be wrapped by language bindings. | |
| 1488 1441 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1489 1442 | 
             
            </div>
         | 
| 1490 1443 | 
             
            <hr>
         | 
| 1491 | 
            -
            <div class="refsect2" | 
| 1444 | 
            +
            <div class="refsect2">
         | 
| 1492 1445 | 
             
            <a name="GtkStatusIcon-button-press-event"></a><h3>The <code class="literal">"button-press-event"</code> signal</h3>
         | 
| 1493 | 
            -
            <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="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> | 
| 1494 | 
            -
                                                                    <a href="http://library.gnome.org/devel/ | 
| 1495 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> | 
| 1446 | 
            +
            <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="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
         | 
| 1447 | 
            +
                                                                    <a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a>      *event,
         | 
| 1448 | 
            +
                                                                    <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>
         | 
| 1496 1449 | 
             
            <p>
         | 
| 1497 1450 | 
             
            The ::button-press-event signal will be emitted when a button
         | 
| 1498 1451 | 
             
            (typically from a mouse) is pressed.
         | 
| @@ -1506,13 +1459,11 @@ and ::popup-menu signals in preference. | |
| 1506 1459 | 
             
            <tbody>
         | 
| 1507 1460 | 
             
            <tr>
         | 
| 1508 1461 | 
             
            <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
         | 
| 1509 | 
            -
            <td>the object which received the signal
         | 
| 1510 | 
            -
            </td>
         | 
| 1462 | 
            +
            <td>the object which received the signal</td>
         | 
| 1511 1463 | 
             
            </tr>
         | 
| 1512 1464 | 
             
            <tr>
         | 
| 1513 1465 | 
             
            <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
         | 
| 1514 | 
            -
            <td>the <a href="http://library.gnome.org/devel/ | 
| 1515 | 
            -
            </td>
         | 
| 1466 | 
            +
            <td>the <a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> which triggered this signal</td>
         | 
| 1516 1467 | 
             
            </tr>
         | 
| 1517 1468 | 
             
            <tr>
         | 
| 1518 1469 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1520,21 +1471,20 @@ and ::popup-menu signals in preference. | |
| 1520 1471 | 
             
            </tr>
         | 
| 1521 1472 | 
             
            <tr>
         | 
| 1522 1473 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1523 | 
            -
            <td> | 
| 1524 | 
            -
             | 
| 1525 | 
            -
             | 
| 1526 | 
            -
            </td>
         | 
| 1474 | 
            +
            <td>
         | 
| 1475 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop other handlers from being invoked
         | 
| 1476 | 
            +
            for the event. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to propagate the event further.</td>
         | 
| 1527 1477 | 
             
            </tr>
         | 
| 1528 1478 | 
             
            </tbody>
         | 
| 1529 1479 | 
             
            </table></div>
         | 
| 1530 1480 | 
             
            <p class="since">Since 2.14</p>
         | 
| 1531 1481 | 
             
            </div>
         | 
| 1532 1482 | 
             
            <hr>
         | 
| 1533 | 
            -
            <div class="refsect2" | 
| 1483 | 
            +
            <div class="refsect2">
         | 
| 1534 1484 | 
             
            <a name="GtkStatusIcon-button-release-event"></a><h3>The <code class="literal">"button-release-event"</code> signal</h3>
         | 
| 1535 | 
            -
            <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="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> | 
| 1536 | 
            -
                                                                    <a href="http://library.gnome.org/devel/ | 
| 1537 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> | 
| 1485 | 
            +
            <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="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
         | 
| 1486 | 
            +
                                                                    <a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a>      *event,
         | 
| 1487 | 
            +
                                                                    <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>
         | 
| 1538 1488 | 
             
            <p>
         | 
| 1539 1489 | 
             
            The ::button-release-event signal will be emitted when a button
         | 
| 1540 1490 | 
             
            (typically from a mouse) is released.
         | 
| @@ -1548,13 +1498,11 @@ and ::popup-menu signals in preference. | |
| 1548 1498 | 
             
            <tbody>
         | 
| 1549 1499 | 
             
            <tr>
         | 
| 1550 1500 | 
             
            <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
         | 
| 1551 | 
            -
            <td>the object which received the signal
         | 
| 1552 | 
            -
            </td>
         | 
| 1501 | 
            +
            <td>the object which received the signal</td>
         | 
| 1553 1502 | 
             
            </tr>
         | 
| 1554 1503 | 
             
            <tr>
         | 
| 1555 1504 | 
             
            <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
         | 
| 1556 | 
            -
            <td>the <a href="http://library.gnome.org/devel/ | 
| 1557 | 
            -
            </td>
         | 
| 1505 | 
            +
            <td>the <a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> which triggered this signal</td>
         | 
| 1558 1506 | 
             
            </tr>
         | 
| 1559 1507 | 
             
            <tr>
         | 
| 1560 1508 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1562,22 +1510,21 @@ and ::popup-menu signals in preference. | |
| 1562 1510 | 
             
            </tr>
         | 
| 1563 1511 | 
             
            <tr>
         | 
| 1564 1512 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1565 | 
            -
            <td> | 
| 1566 | 
            -
             | 
| 1567 | 
            -
             | 
| 1568 | 
            -
            </td>
         | 
| 1513 | 
            +
            <td>
         | 
| 1514 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop other handlers from being invoked
         | 
| 1515 | 
            +
            for the event. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to propagate the event further.</td>
         | 
| 1569 1516 | 
             
            </tr>
         | 
| 1570 1517 | 
             
            </tbody>
         | 
| 1571 1518 | 
             
            </table></div>
         | 
| 1572 1519 | 
             
            <p class="since">Since 2.14</p>
         | 
| 1573 1520 | 
             
            </div>
         | 
| 1574 1521 | 
             
            <hr>
         | 
| 1575 | 
            -
            <div class="refsect2" | 
| 1522 | 
            +
            <div class="refsect2">
         | 
| 1576 1523 | 
             
            <a name="GtkStatusIcon-popup-menu"></a><h3>The <code class="literal">"popup-menu"</code> signal</h3>
         | 
| 1577 1524 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
         | 
| 1578 1525 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>          button,
         | 
| 1579 1526 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>          activate_time,
         | 
| 1580 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>       user_data)          :  | 
| 1527 | 
            +
                                                                    <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>
         | 
| 1581 1528 | 
             
            <p>
         | 
| 1582 1529 | 
             
            Gets emitted when the user brings up the context menu
         | 
| 1583 1530 | 
             
            of the status icon. Whether status icons can have context 
         | 
| @@ -1596,20 +1543,17 @@ be used by applications and should be wrapped by language bindings. | |
| 1596 1543 | 
             
            <tbody>
         | 
| 1597 1544 | 
             
            <tr>
         | 
| 1598 1545 | 
             
            <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
         | 
| 1599 | 
            -
            <td>the object which received the signal
         | 
| 1600 | 
            -
            </td>
         | 
| 1546 | 
            +
            <td>the object which received the signal</td>
         | 
| 1601 1547 | 
             
            </tr>
         | 
| 1602 1548 | 
             
            <tr>
         | 
| 1603 1549 | 
             
            <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
         | 
| 1604 | 
            -
            <td>the button that was pressed, or 0 if the | 
| 1605 | 
            -
             | 
| 1606 | 
            -
            </td>
         | 
| 1550 | 
            +
            <td>the button that was pressed, or 0 if the
         | 
| 1551 | 
            +
            signal is not emitted in response to a button press event</td>
         | 
| 1607 1552 | 
             
            </tr>
         | 
| 1608 1553 | 
             
            <tr>
         | 
| 1609 1554 | 
             
            <td><p><span class="term"><em class="parameter"><code>activate_time</code></em> :</span></p></td>
         | 
| 1610 1555 | 
             
            <td>the timestamp of the event that
         | 
| 1611 | 
            -
             | 
| 1612 | 
            -
            </td>
         | 
| 1556 | 
            +
            triggered the signal emission</td>
         | 
| 1613 1557 | 
             
            </tr>
         | 
| 1614 1558 | 
             
            <tr>
         | 
| 1615 1559 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1620,14 +1564,14 @@ be used by applications and should be wrapped by language bindings. | |
| 1620 1564 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1621 1565 | 
             
            </div>
         | 
| 1622 1566 | 
             
            <hr>
         | 
| 1623 | 
            -
            <div class="refsect2" | 
| 1567 | 
            +
            <div class="refsect2">
         | 
| 1624 1568 | 
             
            <a name="GtkStatusIcon-query-tooltip"></a><h3>The <code class="literal">"query-tooltip"</code> signal</h3>
         | 
| 1625 1569 | 
             
            <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="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
         | 
| 1626 1570 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>           x,
         | 
| 1627 1571 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>           y,
         | 
| 1628 1572 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>       keyboard_mode,
         | 
| 1629 1573 | 
             
                                                                    <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>    *tooltip,
         | 
| 1630 | 
            -
                                                                    <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>
         | 
| 1574 | 
            +
                                                                    <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>
         | 
| 1631 1575 | 
             
            <p>
         | 
| 1632 1576 | 
             
            Emitted when the <a class="link" href="GtkSettings.html#GtkSettings--gtk-tooltip-timeout" title='The "gtk-tooltip-timeout" property'><span class="type">"gtk-tooltip-timeout"</span></a> has expired with the
         | 
| 1633 1577 | 
             
            cursor hovering above <em class="parameter"><code>status_icon</code></em>; or emitted when <em class="parameter"><code>status_icon</code></em> got
         | 
| @@ -1653,26 +1597,24 @@ For plain text tooltips, use <a class="link" href="GtkStatusIcon.html#GtkStatusI | |
| 1653 1597 | 
             
            <tbody>
         | 
| 1654 1598 | 
             
            <tr>
         | 
| 1655 1599 | 
             
            <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
         | 
| 1656 | 
            -
            <td>the object which received the signal
         | 
| 1657 | 
            -
            </td>
         | 
| 1600 | 
            +
            <td>the object which received the signal</td>
         | 
| 1658 1601 | 
             
            </tr>
         | 
| 1659 1602 | 
             
            <tr>
         | 
| 1660 1603 | 
             
            <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
         | 
| 1661 1604 | 
             
            <td>the x coordinate of the cursor position where the request has been
         | 
| 1662 | 
            -
             | 
| 1605 | 
            +
            emitted, relative to <em class="parameter"><code>status_icon</code></em>
         | 
| 1663 1606 | 
             
            </td>
         | 
| 1664 1607 | 
             
            </tr>
         | 
| 1665 1608 | 
             
            <tr>
         | 
| 1666 1609 | 
             
            <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
         | 
| 1667 1610 | 
             
            <td>the y coordinate of the cursor position where the request has been
         | 
| 1668 | 
            -
             | 
| 1611 | 
            +
            emitted, relative to <em class="parameter"><code>status_icon</code></em>
         | 
| 1669 1612 | 
             
            </td>
         | 
| 1670 1613 | 
             
            </tr>
         | 
| 1671 1614 | 
             
            <tr>
         | 
| 1672 1615 | 
             
            <td><p><span class="term"><em class="parameter"><code>keyboard_mode</code></em> :</span></p></td>
         | 
| 1673 1616 | 
             
            <td>
         | 
| 1674 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tooltip was trigged using the keyboard
         | 
| 1675 | 
            -
            </td>
         | 
| 1617 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tooltip was trigged using the keyboard</td>
         | 
| 1676 1618 | 
             
            </tr>
         | 
| 1677 1619 | 
             
            <tr>
         | 
| 1678 1620 | 
             
            <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
         | 
| @@ -1685,20 +1627,19 @@ For plain text tooltips, use <a class="link" href="GtkStatusIcon.html#GtkStatusI | |
| 1685 1627 | 
             
            </tr>
         | 
| 1686 1628 | 
             
            <tr>
         | 
| 1687 1629 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1688 | 
            -
            <td> | 
| 1689 | 
            -
             | 
| 1690 | 
            -
            </td>
         | 
| 1630 | 
            +
            <td>
         | 
| 1631 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>tooltip</code></em> should be shown right now, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
         | 
| 1691 1632 | 
             
            </tr>
         | 
| 1692 1633 | 
             
            </tbody>
         | 
| 1693 1634 | 
             
            </table></div>
         | 
| 1694 1635 | 
             
            <p class="since">Since 2.16</p>
         | 
| 1695 1636 | 
             
            </div>
         | 
| 1696 1637 | 
             
            <hr>
         | 
| 1697 | 
            -
            <div class="refsect2" | 
| 1638 | 
            +
            <div class="refsect2">
         | 
| 1698 1639 | 
             
            <a name="GtkStatusIcon-scroll-event"></a><h3>The <code class="literal">"scroll-event"</code> signal</h3>
         | 
| 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="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> | 
| 1700 | 
            -
                                                                    <a href="http://library.gnome.org/devel/ | 
| 1701 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> | 
| 1640 | 
            +
            <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="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
         | 
| 1641 | 
            +
                                                                    <a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a>      *event,
         | 
| 1642 | 
            +
                                                                    <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>
         | 
| 1702 1643 | 
             
            <p>
         | 
| 1703 1644 | 
             
            The ::scroll-event signal is emitted when a button in the 4 to 7
         | 
| 1704 1645 | 
             
            range is pressed. Wheel mice are usually configured to generate 
         | 
| @@ -1712,13 +1653,11 @@ Whether this event is emitted is platform-dependent. | |
| 1712 1653 | 
             
            <tbody>
         | 
| 1713 1654 | 
             
            <tr>
         | 
| 1714 1655 | 
             
            <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
         | 
| 1715 | 
            -
            <td>the object which received the signal | 
| 1716 | 
            -
            </td>
         | 
| 1656 | 
            +
            <td>the object which received the signal.</td>
         | 
| 1717 1657 | 
             
            </tr>
         | 
| 1718 1658 | 
             
            <tr>
         | 
| 1719 1659 | 
             
            <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
         | 
| 1720 | 
            -
            <td>the <a href="http://library.gnome.org/devel/ | 
| 1721 | 
            -
            </td>
         | 
| 1660 | 
            +
            <td>the <a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEventScroll"><span class="type">GdkEventScroll</span></a> which triggered this signal</td>
         | 
| 1722 1661 | 
             
            </tr>
         | 
| 1723 1662 | 
             
            <tr>
         | 
| 1724 1663 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1726,19 +1665,19 @@ Whether this event is emitted is platform-dependent. | |
| 1726 1665 | 
             
            </tr>
         | 
| 1727 1666 | 
             
            <tr>
         | 
| 1728 1667 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1729 | 
            -
            <td> | 
| 1730 | 
            -
             | 
| 1731 | 
            -
            </td>
         | 
| 1668 | 
            +
            <td>
         | 
| 1669 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop other handlers from being invoked for the event.
         | 
| 1670 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to propagate the event further.</td>
         | 
| 1732 1671 | 
             
            </tr>
         | 
| 1733 1672 | 
             
            </tbody>
         | 
| 1734 1673 | 
             
            </table></div>
         | 
| 1735 1674 | 
             
            </div>
         | 
| 1736 1675 | 
             
            <hr>
         | 
| 1737 | 
            -
            <div class="refsect2" | 
| 1676 | 
            +
            <div class="refsect2">
         | 
| 1738 1677 | 
             
            <a name="GtkStatusIcon-size-changed"></a><h3>The <code class="literal">"size-changed"</code> signal</h3>
         | 
| 1739 1678 | 
             
            <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="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
         | 
| 1740 1679 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>           size,
         | 
| 1741 | 
            -
                                                                    <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>
         | 
| 1680 | 
            +
                                                                    <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>
         | 
| 1742 1681 | 
             
            <p>
         | 
| 1743 1682 | 
             
            Gets emitted when the size available for the image
         | 
| 1744 1683 | 
             
            changes, e.g. because the notification area got resized.
         | 
| @@ -1748,13 +1687,11 @@ changes, e.g. because the notification area got resized. | |
| 1748 1687 | 
             
            <tbody>
         | 
| 1749 1688 | 
             
            <tr>
         | 
| 1750 1689 | 
             
            <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
         | 
| 1751 | 
            -
            <td>the object which received the signal
         | 
| 1752 | 
            -
            </td>
         | 
| 1690 | 
            +
            <td>the object which received the signal</td>
         | 
| 1753 1691 | 
             
            </tr>
         | 
| 1754 1692 | 
             
            <tr>
         | 
| 1755 1693 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 1756 | 
            -
            <td>the new size
         | 
| 1757 | 
            -
            </td>
         | 
| 1694 | 
            +
            <td>the new size</td>
         | 
| 1758 1695 | 
             
            </tr>
         | 
| 1759 1696 | 
             
            <tr>
         | 
| 1760 1697 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1762,10 +1699,9 @@ changes, e.g. because the notification area got resized. | |
| 1762 1699 | 
             
            </tr>
         | 
| 1763 1700 | 
             
            <tr>
         | 
| 1764 1701 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1765 | 
            -
            <td> | 
| 1766 | 
            -
             | 
| 1767 | 
            -
             | 
| 1768 | 
            -
            </td>
         | 
| 1702 | 
            +
            <td>
         | 
| 1703 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon was updated for the new
         | 
| 1704 | 
            +
            size. Otherwise, GTK+ will scale the icon as necessary.</td>
         | 
| 1769 1705 | 
             
            </tr>
         | 
| 1770 1706 | 
             
            </tbody>
         | 
| 1771 1707 | 
             
            </table></div>
         | 
| @@ -1775,6 +1711,6 @@ size. Otherwise, GTK+ will scale the icon as necessary. | |
| 1775 1711 | 
             
            </div>
         | 
| 1776 1712 | 
             
            <div class="footer">
         | 
| 1777 1713 | 
             
            <hr>
         | 
| 1778 | 
            -
                      Generated by GTK-Doc V1. | 
| 1714 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 1779 1715 | 
             
            </body>
         | 
| 1780 1716 | 
             
            </html>
         |