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>Signals</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="gtkbase.html" title="Part II. GTK+ Core Reference">
         | 
| 9 9 | 
             
            <link rel="prev" href="gtk-Feature-Test-Macros.html" title="Version Information">
         | 
| 10 10 | 
             
            <link rel="next" href="gtk-Types.html" title="Types">
         | 
| 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="gtk-Feature-Test-Macros.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="gtkbase.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="gtk-Types.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">
         | 
| @@ -26,7 +26,7 @@ | |
| 26 26 | 
             
                              <a href="#gtk-Signals.description" class="shortcut">Description</a>
         | 
| 27 27 | 
             
            </td></tr>
         | 
| 28 28 | 
             
            </table>
         | 
| 29 | 
            -
            <div class="refentry" | 
| 29 | 
            +
            <div class="refentry">
         | 
| 30 30 | 
             
            <a name="gtk-Signals"></a><div class="titlepage"></div>
         | 
| 31 31 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 32 32 | 
             
            <td valign="top">
         | 
| @@ -35,7 +35,7 @@ | |
| 35 35 | 
             
            </td>
         | 
| 36 36 | 
             
            <td valign="top" align="right"></td>
         | 
| 37 37 | 
             
            </tr></table></div>
         | 
| 38 | 
            -
            <div class="refsynopsisdiv" | 
| 38 | 
            +
            <div class="refsynopsisdiv">
         | 
| 39 39 | 
             
            <a name="gtk-Signals.synopsis"></a><h2>Synopsis</h2>
         | 
| 40 40 | 
             
            <pre class="synopsis">
         | 
| 41 41 | 
             
            #include <gtk/gtk.h>
         | 
| @@ -69,10 +69,10 @@ enum                <a class="link" href="gtk-Signals.html#GtkSignalRunType" tit | |
| 69 69 | 
             
                                                                     <em class="parameter"><code>...</code></em>);
         | 
| 70 70 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-Signals.html#gtk-signal-emitv" title="gtk_signal_emitv ()">gtk_signal_emitv</a>                    (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 71 71 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> signal_id</code></em>,
         | 
| 72 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gtk-Types.html#GtkArg" title="GtkArg"><span class="type">GtkArg</span></a> *args</code></em>);
         | 
| 72 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="gtk-Types.html#GtkArg" title="struct GtkArg"><span class="type">GtkArg</span></a> *args</code></em>);
         | 
| 73 73 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-Signals.html#gtk-signal-emitv-by-name" title="gtk_signal_emitv_by_name ()">gtk_signal_emitv_by_name</a>            (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 74 74 | 
             
                                                                     <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>,
         | 
| 75 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gtk-Types.html#GtkArg" title="GtkArg"><span class="type">GtkArg</span></a> *args</code></em>);
         | 
| 75 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="gtk-Types.html#GtkArg" title="struct GtkArg"><span class="type">GtkArg</span></a> *args</code></em>);
         | 
| 76 76 | 
             
            #define             <a class="link" href="gtk-Signals.html#gtk-signal-emit-stop" title="gtk_signal_emit_stop()">gtk_signal_emit_stop</a>                (object,
         | 
| 77 77 | 
             
                                                                     signal_id)
         | 
| 78 78 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-Signals.html#gtk-signal-emit-stop-by-name" title="gtk_signal_emit_stop_by_name ()">gtk_signal_emit_stop_by_name</a>        (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| @@ -143,15 +143,15 @@ enum                <a class="link" href="gtk-Signals.html#GtkSignalRunType" tit | |
| 143 143 | 
             
            #define             <a class="link" href="gtk-Signals.html#gtk-signal-default-marshaller" title="gtk_signal_default_marshaller">gtk_signal_default_marshaller</a>
         | 
| 144 144 | 
             
            </pre>
         | 
| 145 145 | 
             
            </div>
         | 
| 146 | 
            -
            <div class="refsect1" | 
| 146 | 
            +
            <div class="refsect1">
         | 
| 147 147 | 
             
            <a name="gtk-Signals.description"></a><h2>Description</h2>
         | 
| 148 148 | 
             
            <p>
         | 
| 149 149 | 
             
            The GTK+ signal system merely proxies the GLib signal system now. For future
         | 
| 150 150 | 
             
            usage, direct use of the <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html">GSignal</a> API is recommended, this avoids significant
         | 
| 151 | 
            -
            performance hits where <a class="link" href="gtk-Types.html#GtkArg" title="GtkArg"><span class="type">GtkArg</span></a> structures have to be converted into <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a>s.
         | 
| 151 | 
            +
            performance hits where <a class="link" href="gtk-Types.html#GtkArg" title="struct GtkArg"><span class="type">GtkArg</span></a> structures have to be converted into <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a>s.
         | 
| 152 152 | 
             
            </p>
         | 
| 153 | 
            -
            <div class="refsect2" | 
| 154 | 
            -
            <a name=" | 
| 153 | 
            +
            <div class="refsect2">
         | 
| 154 | 
            +
            <a name="id679694"></a><h3>What are signals?</h3>
         | 
| 155 155 | 
             
            <p>
         | 
| 156 156 | 
             
            Signals are a way to get notification when something happens
         | 
| 157 157 | 
             
            and to customize object behavior according to the
         | 
| @@ -185,8 +185,8 @@ methods. | |
| 185 185 | 
             
            </p>
         | 
| 186 186 | 
             
            </div>
         | 
| 187 187 | 
             
            <hr>
         | 
| 188 | 
            -
            <div class="refsect2" | 
| 189 | 
            -
            <a name=" | 
| 188 | 
            +
            <div class="refsect2">
         | 
| 189 | 
            +
            <a name="id648927"></a><h3>How are signals used?</h3>
         | 
| 190 190 | 
             
            <p>
         | 
| 191 191 | 
             
            There are two basic actions in the signal handling game.
         | 
| 192 192 | 
             
            If you want notification of an event, you must <span class="emphasis"><em>connect</em></span>
         | 
| @@ -202,8 +202,8 @@ Functions that want to notify the user of certain actions, | |
| 202 202 | 
             
            </p>
         | 
| 203 203 | 
             
            </div>
         | 
| 204 204 | 
             
            <hr>
         | 
| 205 | 
            -
            <div class="refsect2" | 
| 206 | 
            -
            <a name=" | 
| 205 | 
            +
            <div class="refsect2">
         | 
| 206 | 
            +
            <a name="id718054"></a><h3>Basic Terminology</h3>
         | 
| 207 207 | 
             
            <div class="variablelist"><table border="0">
         | 
| 208 208 | 
             
            <col align="left" valign="top">
         | 
| 209 209 | 
             
            <tbody>
         | 
| @@ -261,8 +261,8 @@ maps to a unique connection id. | |
| 261 261 | 
             
            </table></div>
         | 
| 262 262 | 
             
            </div>
         | 
| 263 263 | 
             
            <hr>
         | 
| 264 | 
            -
            <div class="refsect2" | 
| 265 | 
            -
            <a name=" | 
| 264 | 
            +
            <div class="refsect2">
         | 
| 265 | 
            +
            <a name="id718171"></a><h3>A brief note on how they work.</h3>
         | 
| 266 266 | 
             
            <p>
         | 
| 267 267 | 
             
            The functions responsible for translating an array of <a href="gtk-Types.html#GtkArg"><span class="type">GtkArgs</span></a>
         | 
| 268 268 | 
             
            to your C compiler's normal semantics are called Marshallers.
         | 
| @@ -276,13 +276,13 @@ you might have to write a marshaller. | |
| 276 276 | 
             
            </p>
         | 
| 277 277 | 
             
            </div>
         | 
| 278 278 | 
             
            </div>
         | 
| 279 | 
            -
            <div class="refsect1" | 
| 279 | 
            +
            <div class="refsect1">
         | 
| 280 280 | 
             
            <a name="gtk-Signals.details"></a><h2>Details</h2>
         | 
| 281 | 
            -
            <div class="refsect2" | 
| 281 | 
            +
            <div class="refsect2">
         | 
| 282 282 | 
             
            <a name="GTK-SIGNAL-OFFSET:CAPS"></a><h3>GTK_SIGNAL_OFFSET</h3>
         | 
| 283 283 | 
             
            <pre class="programlisting">#define GTK_SIGNAL_OFFSET	                      G_STRUCT_OFFSET
         | 
| 284 284 | 
             
            </pre>
         | 
| 285 | 
            -
            <div class="warning"  | 
| 285 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 286 286 | 
             
            <h3 class="title">Warning</h3>
         | 
| 287 287 | 
             
            <p><code class="literal">GTK_SIGNAL_OFFSET</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 288 288 | 
             
            </div>
         | 
| @@ -291,7 +291,7 @@ Use in place of <code class="function"><code class="function">offsetof()</code>< | |
| 291 291 | 
             
            </p>
         | 
| 292 292 | 
             
            </div>
         | 
| 293 293 | 
             
            <hr>
         | 
| 294 | 
            -
            <div class="refsect2" | 
| 294 | 
            +
            <div class="refsect2">
         | 
| 295 295 | 
             
            <a name="GtkSignalRunType"></a><h3>enum GtkSignalRunType</h3>
         | 
| 296 296 | 
             
            <pre class="programlisting">typedef enum			/*< flags >*/
         | 
| 297 297 | 
             
            {
         | 
| @@ -303,7 +303,7 @@ Use in place of <code class="function"><code class="function">offsetof()</code>< | |
| 303 303 | 
             
              GTK_RUN_NO_HOOKS   = G_SIGNAL_NO_HOOKS
         | 
| 304 304 | 
             
            } GtkSignalRunType;
         | 
| 305 305 | 
             
            </pre>
         | 
| 306 | 
            -
            <div class="warning"  | 
| 306 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 307 307 | 
             
            <h3 class="title">Warning</h3>
         | 
| 308 308 | 
             
            <p><code class="literal">GtkSignalRunType</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 309 309 | 
             
            </div>
         | 
| @@ -373,7 +373,7 @@ to the signal. | |
| 373 373 | 
             
            </table></div>
         | 
| 374 374 | 
             
            </div>
         | 
| 375 375 | 
             
            <hr>
         | 
| 376 | 
            -
            <div class="refsect2" | 
| 376 | 
            +
            <div class="refsect2">
         | 
| 377 377 | 
             
            <a name="gtk-signal-new"></a><h3>gtk_signal_new ()</h3>
         | 
| 378 378 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>               gtk_signal_new                      (<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>,
         | 
| 379 379 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Signals.html#GtkSignalRunType" title="enum GtkSignalRunType"><span class="type">GtkSignalRunType</span></a> signal_flags</code></em>,
         | 
| @@ -383,7 +383,7 @@ to the signal. | |
| 383 383 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> return_val</code></em>,
         | 
| 384 384 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_args</code></em>,
         | 
| 385 385 | 
             
                                                                     <em class="parameter"><code>...</code></em>);</pre>
         | 
| 386 | 
            -
            <div class="warning"  | 
| 386 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 387 387 | 
             
            <h3 class="title">Warning</h3>
         | 
| 388 388 | 
             
            <p><code class="literal">gtk_signal_new</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-new"><code class="function">g_signal_new()</code></a> instead.</p>
         | 
| 389 389 | 
             
            </div>
         | 
| @@ -396,29 +396,25 @@ class initializer.) | |
| 396 396 | 
             
            <tbody>
         | 
| 397 397 | 
             
            <tr>
         | 
| 398 398 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 399 | 
            -
            <td>the event name for the signal, e.g. "clicked" | 
| 400 | 
            -
            </td>
         | 
| 399 | 
            +
            <td>the event name for the signal, e.g. "clicked".</td>
         | 
| 401 400 | 
             
            </tr>
         | 
| 402 401 | 
             
            <tr>
         | 
| 403 402 | 
             
            <td><p><span class="term"><em class="parameter"><code>signal_flags</code></em> :</span></p></td>
         | 
| 404 403 | 
             
            <td>a combination of <span class="type">GTK_RUN</span> flags
         | 
| 405 404 | 
             
            specifying detail of when the default handler is to be invoked.
         | 
| 406 405 | 
             
            You should at least specify <span class="type">GTK_RUN_FIRST</span>
         | 
| 407 | 
            -
            or <span class="type">GTK_RUN_LAST</span | 
| 408 | 
            -
            </td>
         | 
| 406 | 
            +
            or <span class="type">GTK_RUN_LAST</span>.</td>
         | 
| 409 407 | 
             
            </tr>
         | 
| 410 408 | 
             
            <tr>
         | 
| 411 409 | 
             
            <td><p><span class="term"><em class="parameter"><code>object_type</code></em> :</span></p></td>
         | 
| 412 410 | 
             
            <td>the type of object this signal pertains to.
         | 
| 413 | 
            -
            It will also pertain to derivers of this type automatically | 
| 414 | 
            -
            </td>
         | 
| 411 | 
            +
            It will also pertain to derivers of this type automatically.</td>
         | 
| 415 412 | 
             
            </tr>
         | 
| 416 413 | 
             
            <tr>
         | 
| 417 414 | 
             
            <td><p><span class="term"><em class="parameter"><code>function_offset</code></em> :</span></p></td>
         | 
| 418 415 | 
             
            <td>How many bytes the function pointer is in
         | 
| 419 416 | 
             
            the class structure for this type.  Used to invoke a class
         | 
| 420 | 
            -
            method generically | 
| 421 | 
            -
            </td>
         | 
| 417 | 
            +
            method generically.</td>
         | 
| 422 418 | 
             
            </tr>
         | 
| 423 419 | 
             
            <tr>
         | 
| 424 420 | 
             
            <td><p><span class="term"><em class="parameter"><code>marshaller</code></em> :</span></p></td>
         | 
| @@ -426,35 +422,30 @@ method generically. | |
| 426 422 | 
             
            of GtkArgs and the native calling convention.  Usually they
         | 
| 427 423 | 
             
            are identified just by the type of arguments they take:
         | 
| 428 424 | 
             
            for example, <code class="function">gtk_marshal_BOOL__STRING()</code> describes a marshaller
         | 
| 429 | 
            -
            which takes a string and returns a boolean value | 
| 430 | 
            -
            </td>
         | 
| 425 | 
            +
            which takes a string and returns a boolean value.</td>
         | 
| 431 426 | 
             
            </tr>
         | 
| 432 427 | 
             
            <tr>
         | 
| 433 428 | 
             
            <td><p><span class="term"><em class="parameter"><code>return_val</code></em> :</span></p></td>
         | 
| 434 429 | 
             
            <td>the type of return value, or <span class="type">GTK_TYPE_NONE</span> for a signal
         | 
| 435 | 
            -
            without a return value | 
| 436 | 
            -
            </td>
         | 
| 430 | 
            +
            without a return value.</td>
         | 
| 437 431 | 
             
            </tr>
         | 
| 438 432 | 
             
            <tr>
         | 
| 439 433 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_args</code></em> :</span></p></td>
         | 
| 440 | 
            -
            <td>the number of parameter the handlers may take | 
| 441 | 
            -
            </td>
         | 
| 434 | 
            +
            <td>the number of parameter the handlers may take.</td>
         | 
| 442 435 | 
             
            </tr>
         | 
| 443 436 | 
             
            <tr>
         | 
| 444 437 | 
             
            <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
         | 
| 445 | 
            -
            <td>a list of <span class="type">GTK_TYPE_</span>*, one for each parameter | 
| 446 | 
            -
            </td>
         | 
| 438 | 
            +
            <td>a list of <span class="type">GTK_TYPE_</span>*, one for each parameter.</td>
         | 
| 447 439 | 
             
            </tr>
         | 
| 448 440 | 
             
            <tr>
         | 
| 449 441 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 450 | 
            -
            <td>the signal id | 
| 451 | 
            -
            </td>
         | 
| 442 | 
            +
            <td>the signal id.</td>
         | 
| 452 443 | 
             
            </tr>
         | 
| 453 444 | 
             
            </tbody>
         | 
| 454 445 | 
             
            </table></div>
         | 
| 455 446 | 
             
            </div>
         | 
| 456 447 | 
             
            <hr>
         | 
| 457 | 
            -
            <div class="refsect2" | 
| 448 | 
            +
            <div class="refsect2">
         | 
| 458 449 | 
             
            <a name="gtk-signal-newv"></a><h3>gtk_signal_newv ()</h3>
         | 
| 459 450 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>               gtk_signal_newv                     (<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>,
         | 
| 460 451 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Signals.html#GtkSignalRunType" title="enum GtkSignalRunType"><span class="type">GtkSignalRunType</span></a> signal_flags</code></em>,
         | 
| @@ -464,7 +455,7 @@ without a return value. | |
| 464 455 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> return_val</code></em>,
         | 
| 465 456 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_args</code></em>,
         | 
| 466 457 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> *args</code></em>);</pre>
         | 
| 467 | 
            -
            <div class="warning"  | 
| 458 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 468 459 | 
             
            <h3 class="title">Warning</h3>
         | 
| 469 460 | 
             
            <p><code class="literal">gtk_signal_newv</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-newv"><code class="function">g_signal_newv()</code></a> instead.</p>
         | 
| 470 461 | 
             
            </div>
         | 
| @@ -481,60 +472,47 @@ following the arguments.  Otherwise the same as <a class="link" href="gtk-Signal | |
| 481 472 | 
             
            <tbody>
         | 
| 482 473 | 
             
            <tr>
         | 
| 483 474 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 484 | 
            -
            <td>the name of the signal to create | 
| 485 | 
            -
            </td>
         | 
| 475 | 
            +
            <td>the name of the signal to create.</td>
         | 
| 486 476 | 
             
            </tr>
         | 
| 487 477 | 
             
            <tr>
         | 
| 488 478 | 
             
            <td><p><span class="term"><em class="parameter"><code>signal_flags</code></em> :</span></p></td>
         | 
| 489 | 
            -
            <td>see <a class="link" href="gtk-Signals.html#gtk-signal-new" title="gtk_signal_new ()"><code class="function">gtk_signal_new()</code></a | 
| 490 | 
            -
            </td>
         | 
| 479 | 
            +
            <td>see <a class="link" href="gtk-Signals.html#gtk-signal-new" title="gtk_signal_new ()"><code class="function">gtk_signal_new()</code></a>.</td>
         | 
| 491 480 | 
             
            </tr>
         | 
| 492 481 | 
             
            <tr>
         | 
| 493 482 | 
             
            <td><p><span class="term"><em class="parameter"><code>object_type</code></em> :</span></p></td>
         | 
| 494 | 
            -
            <td>the type of <a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> to associate the signal with | 
| 495 | 
            -
            </td>
         | 
| 483 | 
            +
            <td>the type of <a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> to associate the signal with.</td>
         | 
| 496 484 | 
             
            </tr>
         | 
| 497 485 | 
             
            <tr>
         | 
| 498 486 | 
             
            <td><p><span class="term"><em class="parameter"><code>function_offset</code></em> :</span></p></td>
         | 
| 499 487 | 
             
            <td>how many bytes the function pointer is in
         | 
| 500 | 
            -
            the class structure for this type | 
| 501 | 
            -
            </td>
         | 
| 502 | 
            -
            </tr>
         | 
| 503 | 
            -
            <tr>
         | 
| 504 | 
            -
            <td><p><span class="term"><em class="parameter"><code>marshaller</code></em> :</span></p></td>
         | 
| 505 | 
            -
            <td>
         | 
| 506 | 
            -
            </td>
         | 
| 488 | 
            +
            the class structure for this type.</td>
         | 
| 507 489 | 
             
            </tr>
         | 
| 508 490 | 
             
            <tr>
         | 
| 509 491 | 
             
            <td><p><span class="term"><em class="parameter"><code>return_val</code></em> :</span></p></td>
         | 
| 510 492 | 
             
            <td>the type of the return value, or <span class="type">GTK_TYPE_NONE</span> if
         | 
| 511 | 
            -
            you don't want a return value | 
| 512 | 
            -
            </td>
         | 
| 493 | 
            +
            you don't want a return value.</td>
         | 
| 513 494 | 
             
            </tr>
         | 
| 514 495 | 
             
            <tr>
         | 
| 515 496 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_args</code></em> :</span></p></td>
         | 
| 516 | 
            -
            <td>the number of parameters to the user-defined handlers | 
| 517 | 
            -
            </td>
         | 
| 497 | 
            +
            <td>the number of parameters to the user-defined handlers.</td>
         | 
| 518 498 | 
             
            </tr>
         | 
| 519 499 | 
             
            <tr>
         | 
| 520 500 | 
             
            <td><p><span class="term"><em class="parameter"><code>args</code></em> :</span></p></td>
         | 
| 521 501 | 
             
            <td>an array of <a class="link" href="gtk-Types.html#GtkType" title="GtkType"><span class="type">GtkType</span></a>s, describing the prototype to
         | 
| 522 | 
            -
            the callbacks | 
| 523 | 
            -
            </td>
         | 
| 502 | 
            +
            the callbacks.</td>
         | 
| 524 503 | 
             
            </tr>
         | 
| 525 504 | 
             
            <tr>
         | 
| 526 505 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 527 | 
            -
            <td>the signal id | 
| 528 | 
            -
            </td>
         | 
| 506 | 
            +
            <td>the signal id.</td>
         | 
| 529 507 | 
             
            </tr>
         | 
| 530 508 | 
             
            </tbody>
         | 
| 531 509 | 
             
            </table></div>
         | 
| 532 510 | 
             
            </div>
         | 
| 533 511 | 
             
            <hr>
         | 
| 534 | 
            -
            <div class="refsect2" | 
| 512 | 
            +
            <div class="refsect2">
         | 
| 535 513 | 
             
            <a name="gtk-signal-lookup"></a><h3>gtk_signal_lookup()</h3>
         | 
| 536 514 | 
             
            <pre class="programlisting">#define             gtk_signal_lookup(name,object_type)</pre>
         | 
| 537 | 
            -
            <div class="warning"  | 
| 515 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 538 516 | 
             
            <h3 class="title">Warning</h3>
         | 
| 539 517 | 
             
            <p><code class="literal">gtk_signal_lookup</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-lookup"><code class="function">g_signal_lookup()</code></a> instead.</p>
         | 
| 540 518 | 
             
            </div>
         | 
| @@ -551,27 +529,24 @@ It also tries the ancestors of the given type. | |
| 551 529 | 
             
            <tbody>
         | 
| 552 530 | 
             
            <tr>
         | 
| 553 531 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 554 | 
            -
            <td>the signal's name, e.g. clicked | 
| 555 | 
            -
            </td>
         | 
| 532 | 
            +
            <td>the signal's name, e.g. clicked.</td>
         | 
| 556 533 | 
             
            </tr>
         | 
| 557 534 | 
             
            <tr>
         | 
| 558 535 | 
             
            <td><p><span class="term"><em class="parameter"><code>object_type</code></em> :</span></p></td>
         | 
| 559 | 
            -
            <td>the type that the signal operates on, e.g. <span class="type">GTK_TYPE_BUTTON</span | 
| 560 | 
            -
            </td>
         | 
| 536 | 
            +
            <td>the type that the signal operates on, e.g. <span class="type">GTK_TYPE_BUTTON</span>.</td>
         | 
| 561 537 | 
             
            </tr>
         | 
| 562 538 | 
             
            <tr>
         | 
| 563 539 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 564 | 
            -
            <td>the signal's identifying number, or 0 if no signal was found | 
| 565 | 
            -
            </td>
         | 
| 540 | 
            +
            <td>the signal's identifying number, or 0 if no signal was found.</td>
         | 
| 566 541 | 
             
            </tr>
         | 
| 567 542 | 
             
            </tbody>
         | 
| 568 543 | 
             
            </table></div>
         | 
| 569 544 | 
             
            </div>
         | 
| 570 545 | 
             
            <hr>
         | 
| 571 | 
            -
            <div class="refsect2" | 
| 546 | 
            +
            <div class="refsect2">
         | 
| 572 547 | 
             
            <a name="gtk-signal-name"></a><h3>gtk_signal_name()</h3>
         | 
| 573 548 | 
             
            <pre class="programlisting">#define             gtk_signal_name(signal_id)</pre>
         | 
| 574 | 
            -
            <div class="warning"  | 
| 549 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 575 550 | 
             
            <h3 class="title">Warning</h3>
         | 
| 576 551 | 
             
            <p><code class="literal">gtk_signal_name</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-name"><code class="function">g_signal_name()</code></a> instead.</p>
         | 
| 577 552 | 
             
            </div>
         | 
| @@ -586,24 +561,22 @@ Two different signals may have the same name, if they have differing types. | |
| 586 561 | 
             
            <tbody>
         | 
| 587 562 | 
             
            <tr>
         | 
| 588 563 | 
             
            <td><p><span class="term"><em class="parameter"><code>signal_id</code></em> :</span></p></td>
         | 
| 589 | 
            -
            <td>the signal's identifying number | 
| 590 | 
            -
            </td>
         | 
| 564 | 
            +
            <td>the signal's identifying number.</td>
         | 
| 591 565 | 
             
            </tr>
         | 
| 592 566 | 
             
            <tr>
         | 
| 593 567 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 594 | 
            -
            <td>the signal name, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the signal number was invalid | 
| 595 | 
            -
            </td>
         | 
| 568 | 
            +
            <td>the signal name, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the signal number was invalid.</td>
         | 
| 596 569 | 
             
            </tr>
         | 
| 597 570 | 
             
            </tbody>
         | 
| 598 571 | 
             
            </table></div>
         | 
| 599 572 | 
             
            </div>
         | 
| 600 573 | 
             
            <hr>
         | 
| 601 | 
            -
            <div class="refsect2" | 
| 574 | 
            +
            <div class="refsect2">
         | 
| 602 575 | 
             
            <a name="gtk-signal-emit"></a><h3>gtk_signal_emit ()</h3>
         | 
| 603 576 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_signal_emit                     (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 604 577 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> signal_id</code></em>,
         | 
| 605 578 | 
             
                                                                     <em class="parameter"><code>...</code></em>);</pre>
         | 
| 606 | 
            -
            <div class="warning"  | 
| 579 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 607 580 | 
             
            <h3 class="title">Warning</h3>
         | 
| 608 581 | 
             
            <p><code class="literal">gtk_signal_emit</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit"><code class="function">g_signal_emit()</code></a> instead.</p>
         | 
| 609 582 | 
             
            </div>
         | 
| @@ -627,30 +600,27 @@ The default handler will be called first if | |
| 627 600 | 
             
            <tbody>
         | 
| 628 601 | 
             
            <tr>
         | 
| 629 602 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 630 | 
            -
            <td>the object that emits the signal | 
| 631 | 
            -
            </td>
         | 
| 603 | 
            +
            <td>the object that emits the signal.</td>
         | 
| 632 604 | 
             
            </tr>
         | 
| 633 605 | 
             
            <tr>
         | 
| 634 606 | 
             
            <td><p><span class="term"><em class="parameter"><code>signal_id</code></em> :</span></p></td>
         | 
| 635 | 
            -
            <td>the signal identifier | 
| 636 | 
            -
            </td>
         | 
| 607 | 
            +
            <td>the signal identifier.</td>
         | 
| 637 608 | 
             
            </tr>
         | 
| 638 609 | 
             
            <tr>
         | 
| 639 610 | 
             
            <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
         | 
| 640 611 | 
             
            <td>the parameters to the function, followed
         | 
| 641 | 
            -
            by a pointer to the return type, if any | 
| 642 | 
            -
            </td>
         | 
| 612 | 
            +
            by a pointer to the return type, if any.</td>
         | 
| 643 613 | 
             
            </tr>
         | 
| 644 614 | 
             
            </tbody>
         | 
| 645 615 | 
             
            </table></div>
         | 
| 646 616 | 
             
            </div>
         | 
| 647 617 | 
             
            <hr>
         | 
| 648 | 
            -
            <div class="refsect2" | 
| 618 | 
            +
            <div class="refsect2">
         | 
| 649 619 | 
             
            <a name="gtk-signal-emit-by-name"></a><h3>gtk_signal_emit_by_name ()</h3>
         | 
| 650 620 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_signal_emit_by_name             (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 651 621 | 
             
                                                                     <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>,
         | 
| 652 622 | 
             
                                                                     <em class="parameter"><code>...</code></em>);</pre>
         | 
| 653 | 
            -
            <div class="warning"  | 
| 623 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 654 624 | 
             
            <h3 class="title">Warning</h3>
         | 
| 655 625 | 
             
            <p><code class="literal">gtk_signal_emit_by_name</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> instead.</p>
         | 
| 656 626 | 
             
            </div>
         | 
| @@ -663,30 +633,27 @@ handlers to be run. | |
| 663 633 | 
             
            <tbody>
         | 
| 664 634 | 
             
            <tr>
         | 
| 665 635 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 666 | 
            -
            <td>the object that emits the signal | 
| 667 | 
            -
            </td>
         | 
| 636 | 
            +
            <td>the object that emits the signal.</td>
         | 
| 668 637 | 
             
            </tr>
         | 
| 669 638 | 
             
            <tr>
         | 
| 670 639 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 671 | 
            -
            <td>the name of the signal | 
| 672 | 
            -
            </td>
         | 
| 640 | 
            +
            <td>the name of the signal.</td>
         | 
| 673 641 | 
             
            </tr>
         | 
| 674 642 | 
             
            <tr>
         | 
| 675 643 | 
             
            <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
         | 
| 676 644 | 
             
            <td>the parameters to the function, followed
         | 
| 677 | 
            -
            by a pointer to the return type, if any | 
| 678 | 
            -
            </td>
         | 
| 645 | 
            +
            by a pointer to the return type, if any.</td>
         | 
| 679 646 | 
             
            </tr>
         | 
| 680 647 | 
             
            </tbody>
         | 
| 681 648 | 
             
            </table></div>
         | 
| 682 649 | 
             
            </div>
         | 
| 683 650 | 
             
            <hr>
         | 
| 684 | 
            -
            <div class="refsect2" | 
| 651 | 
            +
            <div class="refsect2">
         | 
| 685 652 | 
             
            <a name="gtk-signal-emitv"></a><h3>gtk_signal_emitv ()</h3>
         | 
| 686 653 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_signal_emitv                    (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 687 654 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> signal_id</code></em>,
         | 
| 688 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gtk-Types.html#GtkArg" title="GtkArg"><span class="type">GtkArg</span></a> *args</code></em>);</pre>
         | 
| 689 | 
            -
            <div class="warning"  | 
| 655 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="gtk-Types.html#GtkArg" title="struct GtkArg"><span class="type">GtkArg</span></a> *args</code></em>);</pre>
         | 
| 656 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 690 657 | 
             
            <h3 class="title">Warning</h3>
         | 
| 691 658 | 
             
            <p><code class="literal">gtk_signal_emitv</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emitv"><code class="function">g_signal_emitv()</code></a> instead.</p>
         | 
| 692 659 | 
             
            </div>
         | 
| @@ -700,30 +667,27 @@ an array of GtkArgs instead of using C's varargs mechanism. | |
| 700 667 | 
             
            <tbody>
         | 
| 701 668 | 
             
            <tr>
         | 
| 702 669 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 703 | 
            -
            <td>the object to emit the signal to | 
| 704 | 
            -
            </td>
         | 
| 670 | 
            +
            <td>the object to emit the signal to.</td>
         | 
| 705 671 | 
             
            </tr>
         | 
| 706 672 | 
             
            <tr>
         | 
| 707 673 | 
             
            <td><p><span class="term"><em class="parameter"><code>signal_id</code></em> :</span></p></td>
         | 
| 708 | 
            -
            <td>the signal identifier | 
| 709 | 
            -
            </td>
         | 
| 674 | 
            +
            <td>the signal identifier.</td>
         | 
| 710 675 | 
             
            </tr>
         | 
| 711 676 | 
             
            <tr>
         | 
| 712 677 | 
             
            <td><p><span class="term"><em class="parameter"><code>args</code></em> :</span></p></td>
         | 
| 713 678 | 
             
            <td>an array of GtkArgs, one for each parameter,
         | 
| 714 | 
            -
            followed by one which is a pointer to the return type | 
| 715 | 
            -
            </td>
         | 
| 679 | 
            +
            followed by one which is a pointer to the return type.</td>
         | 
| 716 680 | 
             
            </tr>
         | 
| 717 681 | 
             
            </tbody>
         | 
| 718 682 | 
             
            </table></div>
         | 
| 719 683 | 
             
            </div>
         | 
| 720 684 | 
             
            <hr>
         | 
| 721 | 
            -
            <div class="refsect2" | 
| 685 | 
            +
            <div class="refsect2">
         | 
| 722 686 | 
             
            <a name="gtk-signal-emitv-by-name"></a><h3>gtk_signal_emitv_by_name ()</h3>
         | 
| 723 687 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_signal_emitv_by_name            (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 724 688 | 
             
                                                                     <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>,
         | 
| 725 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gtk-Types.html#GtkArg" title="GtkArg"><span class="type">GtkArg</span></a> *args</code></em>);</pre>
         | 
| 726 | 
            -
            <div class="warning"  | 
| 689 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="gtk-Types.html#GtkArg" title="struct GtkArg"><span class="type">GtkArg</span></a> *args</code></em>);</pre>
         | 
| 690 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 727 691 | 
             
            <h3 class="title">Warning</h3>
         | 
| 728 692 | 
             
            <p><code class="literal">gtk_signal_emitv_by_name</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emitv"><code class="function">g_signal_emitv()</code></a> and <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-lookup"><code class="function">g_signal_lookup()</code></a> instead.</p>
         | 
| 729 693 | 
             
            </div>
         | 
| @@ -737,28 +701,25 @@ an array of GtkArgs instead of using C's varargs mechanism. | |
| 737 701 | 
             
            <tbody>
         | 
| 738 702 | 
             
            <tr>
         | 
| 739 703 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 740 | 
            -
            <td>the object to emit the signal to | 
| 741 | 
            -
            </td>
         | 
| 704 | 
            +
            <td>the object to emit the signal to.</td>
         | 
| 742 705 | 
             
            </tr>
         | 
| 743 706 | 
             
            <tr>
         | 
| 744 707 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 745 | 
            -
            <td>the name of the signal | 
| 746 | 
            -
            </td>
         | 
| 708 | 
            +
            <td>the name of the signal.</td>
         | 
| 747 709 | 
             
            </tr>
         | 
| 748 710 | 
             
            <tr>
         | 
| 749 711 | 
             
            <td><p><span class="term"><em class="parameter"><code>args</code></em> :</span></p></td>
         | 
| 750 712 | 
             
            <td>an array of GtkArgs, one for each parameter,
         | 
| 751 | 
            -
            followed by one which is a pointer to the return type | 
| 752 | 
            -
            </td>
         | 
| 713 | 
            +
            followed by one which is a pointer to the return type.</td>
         | 
| 753 714 | 
             
            </tr>
         | 
| 754 715 | 
             
            </tbody>
         | 
| 755 716 | 
             
            </table></div>
         | 
| 756 717 | 
             
            </div>
         | 
| 757 718 | 
             
            <hr>
         | 
| 758 | 
            -
            <div class="refsect2" | 
| 719 | 
            +
            <div class="refsect2">
         | 
| 759 720 | 
             
            <a name="gtk-signal-emit-stop"></a><h3>gtk_signal_emit_stop()</h3>
         | 
| 760 721 | 
             
            <pre class="programlisting">#define             gtk_signal_emit_stop(object,signal_id)</pre>
         | 
| 761 | 
            -
            <div class="warning"  | 
| 722 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 762 723 | 
             
            <h3 class="title">Warning</h3>
         | 
| 763 724 | 
             
            <p><code class="literal">gtk_signal_emit_stop</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-stop-emission"><code class="function">g_signal_stop_emission()</code></a> instead.</p>
         | 
| 764 725 | 
             
            </div>
         | 
| @@ -779,23 +740,21 @@ isn't being emitted. | |
| 779 740 | 
             
            <tbody>
         | 
| 780 741 | 
             
            <tr>
         | 
| 781 742 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 782 | 
            -
            <td>the object whose signal handlers you wish to stop | 
| 783 | 
            -
            </td>
         | 
| 743 | 
            +
            <td>the object whose signal handlers you wish to stop.</td>
         | 
| 784 744 | 
             
            </tr>
         | 
| 785 745 | 
             
            <tr>
         | 
| 786 746 | 
             
            <td><p><span class="term"><em class="parameter"><code>signal_id</code></em> :</span></p></td>
         | 
| 787 | 
            -
            <td>the signal identifier, as returned by <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-lookup"><code class="function">g_signal_lookup()</code></a | 
| 788 | 
            -
            </td>
         | 
| 747 | 
            +
            <td>the signal identifier, as returned by <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-lookup"><code class="function">g_signal_lookup()</code></a>.</td>
         | 
| 789 748 | 
             
            </tr>
         | 
| 790 749 | 
             
            </tbody>
         | 
| 791 750 | 
             
            </table></div>
         | 
| 792 751 | 
             
            </div>
         | 
| 793 752 | 
             
            <hr>
         | 
| 794 | 
            -
            <div class="refsect2" | 
| 753 | 
            +
            <div class="refsect2">
         | 
| 795 754 | 
             
            <a name="gtk-signal-emit-stop-by-name"></a><h3>gtk_signal_emit_stop_by_name ()</h3>
         | 
| 796 755 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_signal_emit_stop_by_name        (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 797 756 | 
             
                                                                     <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>
         | 
| 798 | 
            -
            <div class="warning"  | 
| 757 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 799 758 | 
             
            <h3 class="title">Warning</h3>
         | 
| 800 759 | 
             
            <p><code class="literal">gtk_signal_emit_stop_by_name</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-stop-emission-by-name"><code class="function">g_signal_stop_emission_by_name()</code></a> instead.</p>
         | 
| 801 760 | 
             
            </div>
         | 
| @@ -811,22 +770,20 @@ except it will lookup the signal id for you. | |
| 811 770 | 
             
            <tbody>
         | 
| 812 771 | 
             
            <tr>
         | 
| 813 772 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 814 | 
            -
            <td>the object whose signal handlers you wish to stop | 
| 815 | 
            -
            </td>
         | 
| 773 | 
            +
            <td>the object whose signal handlers you wish to stop.</td>
         | 
| 816 774 | 
             
            </tr>
         | 
| 817 775 | 
             
            <tr>
         | 
| 818 776 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 819 | 
            -
            <td>the name of the signal you wish to stop | 
| 820 | 
            -
            </td>
         | 
| 777 | 
            +
            <td>the name of the signal you wish to stop.</td>
         | 
| 821 778 | 
             
            </tr>
         | 
| 822 779 | 
             
            </tbody>
         | 
| 823 780 | 
             
            </table></div>
         | 
| 824 781 | 
             
            </div>
         | 
| 825 782 | 
             
            <hr>
         | 
| 826 | 
            -
            <div class="refsect2" | 
| 783 | 
            +
            <div class="refsect2">
         | 
| 827 784 | 
             
            <a name="gtk-signal-connect"></a><h3>gtk_signal_connect()</h3>
         | 
| 828 785 | 
             
            <pre class="programlisting">#define             gtk_signal_connect(object,name,func,func_data)</pre>
         | 
| 829 | 
            -
            <div class="warning"  | 
| 786 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 830 787 | 
             
            <h3 class="title">Warning</h3>
         | 
| 831 788 | 
             
            <p><code class="literal">gtk_signal_connect</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-connect"><code class="function">g_signal_connect()</code></a> instead.</p>
         | 
| 832 789 | 
             
            </div>
         | 
| @@ -889,37 +846,32 @@ as parameter to your function: | |
| 889 846 | 
             
            <tr>
         | 
| 890 847 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 891 848 | 
             
            <td>the object associated with the signal, e.g. if a button
         | 
| 892 | 
            -
            is getting pressed, this is that button | 
| 893 | 
            -
            </td>
         | 
| 849 | 
            +
            is getting pressed, this is that button.</td>
         | 
| 894 850 | 
             
            </tr>
         | 
| 895 851 | 
             
            <tr>
         | 
| 896 852 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 897 | 
            -
            <td>name of the signal | 
| 898 | 
            -
            </td>
         | 
| 853 | 
            +
            <td>name of the signal.</td>
         | 
| 899 854 | 
             
            </tr>
         | 
| 900 855 | 
             
            <tr>
         | 
| 901 856 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 902 | 
            -
            <td>function pointer to attach to the signal | 
| 903 | 
            -
            </td>
         | 
| 857 | 
            +
            <td>function pointer to attach to the signal.</td>
         | 
| 904 858 | 
             
            </tr>
         | 
| 905 859 | 
             
            <tr>
         | 
| 906 860 | 
             
            <td><p><span class="term"><em class="parameter"><code>func_data</code></em> :</span></p></td>
         | 
| 907 | 
            -
            <td>value to pass as to your function (through the marshaller) | 
| 908 | 
            -
            </td>
         | 
| 861 | 
            +
            <td>value to pass as to your function (through the marshaller).</td>
         | 
| 909 862 | 
             
            </tr>
         | 
| 910 863 | 
             
            <tr>
         | 
| 911 864 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 912 | 
            -
            <td>the connection id | 
| 913 | 
            -
            </td>
         | 
| 865 | 
            +
            <td>the connection id.</td>
         | 
| 914 866 | 
             
            </tr>
         | 
| 915 867 | 
             
            </tbody>
         | 
| 916 868 | 
             
            </table></div>
         | 
| 917 869 | 
             
            </div>
         | 
| 918 870 | 
             
            <hr>
         | 
| 919 | 
            -
            <div class="refsect2" | 
| 871 | 
            +
            <div class="refsect2">
         | 
| 920 872 | 
             
            <a name="gtk-signal-connect-after"></a><h3>gtk_signal_connect_after()</h3>
         | 
| 921 873 | 
             
            <pre class="programlisting">#define             gtk_signal_connect_after(object,name,func,func_data)</pre>
         | 
| 922 | 
            -
            <div class="warning"  | 
| 874 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 923 875 | 
             
            <h3 class="title">Warning</h3>
         | 
| 924 876 | 
             
            <p><code class="literal">gtk_signal_connect_after</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-connect-after"><code class="function">g_signal_connect_after()</code></a> instead.</p>
         | 
| 925 877 | 
             
            </div>
         | 
| @@ -932,37 +884,32 @@ so that this handler will be called after the other handlers. | |
| 932 884 | 
             
            <tbody>
         | 
| 933 885 | 
             
            <tr>
         | 
| 934 886 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 935 | 
            -
            <td>the object associated with the signal | 
| 936 | 
            -
            </td>
         | 
| 887 | 
            +
            <td>the object associated with the signal.</td>
         | 
| 937 888 | 
             
            </tr>
         | 
| 938 889 | 
             
            <tr>
         | 
| 939 890 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 940 | 
            -
            <td>name of the signal | 
| 941 | 
            -
            </td>
         | 
| 891 | 
            +
            <td>name of the signal.</td>
         | 
| 942 892 | 
             
            </tr>
         | 
| 943 893 | 
             
            <tr>
         | 
| 944 894 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 945 | 
            -
            <td>function pointer to attach to the signal | 
| 946 | 
            -
            </td>
         | 
| 895 | 
            +
            <td>function pointer to attach to the signal.</td>
         | 
| 947 896 | 
             
            </tr>
         | 
| 948 897 | 
             
            <tr>
         | 
| 949 898 | 
             
            <td><p><span class="term"><em class="parameter"><code>func_data</code></em> :</span></p></td>
         | 
| 950 | 
            -
            <td>value to pass as to your function (through the marshaller) | 
| 951 | 
            -
            </td>
         | 
| 899 | 
            +
            <td>value to pass as to your function (through the marshaller).</td>
         | 
| 952 900 | 
             
            </tr>
         | 
| 953 901 | 
             
            <tr>
         | 
| 954 902 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 955 | 
            -
            <td>the unique identifier for this attachment:  the connection id | 
| 956 | 
            -
            </td>
         | 
| 903 | 
            +
            <td>the unique identifier for this attachment:  the connection id.</td>
         | 
| 957 904 | 
             
            </tr>
         | 
| 958 905 | 
             
            </tbody>
         | 
| 959 906 | 
             
            </table></div>
         | 
| 960 907 | 
             
            </div>
         | 
| 961 908 | 
             
            <hr>
         | 
| 962 | 
            -
            <div class="refsect2" | 
| 909 | 
            +
            <div class="refsect2">
         | 
| 963 910 | 
             
            <a name="gtk-signal-connect-object"></a><h3>gtk_signal_connect_object()</h3>
         | 
| 964 911 | 
             
            <pre class="programlisting">#define             gtk_signal_connect_object(object,name,func,slot_object)</pre>
         | 
| 965 | 
            -
            <div class="warning"  | 
| 912 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 966 913 | 
             
            <h3 class="title">Warning</h3>
         | 
| 967 914 | 
             
            <p><code class="literal">gtk_signal_connect_object</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-connect-swapped"><code class="function">g_signal_connect_swapped()</code></a> instead.</p>
         | 
| 968 915 | 
             
            </div>
         | 
| @@ -996,39 +943,34 @@ some widget, you could write: | |
| 996 943 | 
             
            <tbody>
         | 
| 997 944 | 
             
            <tr>
         | 
| 998 945 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 999 | 
            -
            <td>the object which emits the signal | 
| 1000 | 
            -
            </td>
         | 
| 946 | 
            +
            <td>the object which emits the signal.</td>
         | 
| 1001 947 | 
             
            </tr>
         | 
| 1002 948 | 
             
            <tr>
         | 
| 1003 949 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 1004 | 
            -
            <td>the name of the signal | 
| 1005 | 
            -
            </td>
         | 
| 950 | 
            +
            <td>the name of the signal.</td>
         | 
| 1006 951 | 
             
            </tr>
         | 
| 1007 952 | 
             
            <tr>
         | 
| 1008 953 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 1009 | 
            -
            <td>the function to callback | 
| 1010 | 
            -
            </td>
         | 
| 954 | 
            +
            <td>the function to callback.</td>
         | 
| 1011 955 | 
             
            </tr>
         | 
| 1012 956 | 
             
            <tr>
         | 
| 1013 957 | 
             
            <td><p><span class="term"><em class="parameter"><code>slot_object</code></em> :</span></p></td>
         | 
| 1014 958 | 
             
            <td>the object to pass as the first parameter to func.
         | 
| 1015 959 | 
             
            (Though it pretends to take an object, you can
         | 
| 1016 | 
            -
            really pass any gpointer as the <span class="type">slot_object</span> .)
         | 
| 1017 | 
            -
            </td>
         | 
| 960 | 
            +
            really pass any gpointer as the <span class="type">slot_object</span> .)</td>
         | 
| 1018 961 | 
             
            </tr>
         | 
| 1019 962 | 
             
            <tr>
         | 
| 1020 963 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1021 | 
            -
            <td>the connection id | 
| 1022 | 
            -
            </td>
         | 
| 964 | 
            +
            <td>the connection id.</td>
         | 
| 1023 965 | 
             
            </tr>
         | 
| 1024 966 | 
             
            </tbody>
         | 
| 1025 967 | 
             
            </table></div>
         | 
| 1026 968 | 
             
            </div>
         | 
| 1027 969 | 
             
            <hr>
         | 
| 1028 | 
            -
            <div class="refsect2" | 
| 970 | 
            +
            <div class="refsect2">
         | 
| 1029 971 | 
             
            <a name="gtk-signal-connect-object-after"></a><h3>gtk_signal_connect_object_after()</h3>
         | 
| 1030 972 | 
             
            <pre class="programlisting">#define             gtk_signal_connect_object_after(object,name,func,slot_object)</pre>
         | 
| 1031 | 
            -
            <div class="warning"  | 
| 973 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1032 974 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1033 975 | 
             
            <p><code class="literal">gtk_signal_connect_object_after</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-connect-data"><code class="function">g_signal_connect_data()</code></a> instead, passing
         | 
| 1034 976 | 
             
            <code class="literal">G_CONNECT_AFTER|G_CONNECT_SWAPPED</code> as <em class="parameter"><code>connect_flags</code></em>.</p>
         | 
| @@ -1044,34 +986,29 @@ handlers are called first. | |
| 1044 986 | 
             
            <tbody>
         | 
| 1045 987 | 
             
            <tr>
         | 
| 1046 988 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1047 | 
            -
            <td>the object associated with the signal | 
| 1048 | 
            -
            </td>
         | 
| 989 | 
            +
            <td>the object associated with the signal.</td>
         | 
| 1049 990 | 
             
            </tr>
         | 
| 1050 991 | 
             
            <tr>
         | 
| 1051 992 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 1052 | 
            -
            <td>name of the signal | 
| 1053 | 
            -
            </td>
         | 
| 993 | 
            +
            <td>name of the signal.</td>
         | 
| 1054 994 | 
             
            </tr>
         | 
| 1055 995 | 
             
            <tr>
         | 
| 1056 996 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 1057 | 
            -
            <td>function pointer to attach to the signal | 
| 1058 | 
            -
            </td>
         | 
| 997 | 
            +
            <td>function pointer to attach to the signal.</td>
         | 
| 1059 998 | 
             
            </tr>
         | 
| 1060 999 | 
             
            <tr>
         | 
| 1061 1000 | 
             
            <td><p><span class="term"><em class="parameter"><code>slot_object</code></em> :</span></p></td>
         | 
| 1062 | 
            -
            <td>the object to pass as the first parameter to <span class="type">func</span | 
| 1063 | 
            -
            </td>
         | 
| 1001 | 
            +
            <td>the object to pass as the first parameter to <span class="type">func</span>.</td>
         | 
| 1064 1002 | 
             
            </tr>
         | 
| 1065 1003 | 
             
            <tr>
         | 
| 1066 1004 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1067 | 
            -
            <td>the connection id | 
| 1068 | 
            -
            </td>
         | 
| 1005 | 
            +
            <td>the connection id.</td>
         | 
| 1069 1006 | 
             
            </tr>
         | 
| 1070 1007 | 
             
            </tbody>
         | 
| 1071 1008 | 
             
            </table></div>
         | 
| 1072 1009 | 
             
            </div>
         | 
| 1073 1010 | 
             
            <hr>
         | 
| 1074 | 
            -
            <div class="refsect2" | 
| 1011 | 
            +
            <div class="refsect2">
         | 
| 1075 1012 | 
             
            <a name="gtk-signal-connect-full"></a><h3>gtk_signal_connect_full ()</h3>
         | 
| 1076 1013 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gulong"><span class="returnvalue">gulong</span></a>              gtk_signal_connect_full             (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 1077 1014 | 
             
                                                                     <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>,
         | 
| @@ -1081,7 +1018,7 @@ handlers are called first. | |
| 1081 1018 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy_func</code></em>,
         | 
| 1082 1019 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> object_signal</code></em>,
         | 
| 1083 1020 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> after</code></em>);</pre>
         | 
| 1084 | 
            -
            <div class="warning"  | 
| 1021 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1085 1022 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1086 1023 | 
             
            <p><code class="literal">gtk_signal_connect_full</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-connect-data"><code class="function">g_signal_connect_data()</code></a> instead.</p>
         | 
| 1087 1024 | 
             
            </div>
         | 
| @@ -1095,67 +1032,54 @@ more control. | |
| 1095 1032 | 
             
            <tr>
         | 
| 1096 1033 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1097 1034 | 
             
            <td>the object which emits the signal.  For example, a button
         | 
| 1098 | 
            -
            in the button press signal | 
| 1099 | 
            -
            </td>
         | 
| 1035 | 
            +
            in the button press signal.</td>
         | 
| 1100 1036 | 
             
            </tr>
         | 
| 1101 1037 | 
             
            <tr>
         | 
| 1102 1038 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 1103 | 
            -
            <td>the name of the signal | 
| 1104 | 
            -
            </td>
         | 
| 1039 | 
            +
            <td>the name of the signal.</td>
         | 
| 1105 1040 | 
             
            </tr>
         | 
| 1106 1041 | 
             
            <tr>
         | 
| 1107 1042 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 1108 | 
            -
            <td>function pointer to attach to the signal | 
| 1109 | 
            -
            </td>
         | 
| 1110 | 
            -
            </tr>
         | 
| 1111 | 
            -
            <tr>
         | 
| 1112 | 
            -
            <td><p><span class="term"><em class="parameter"><code>unsupported</code></em> :</span></p></td>
         | 
| 1113 | 
            -
            <td>
         | 
| 1114 | 
            -
            </td>
         | 
| 1043 | 
            +
            <td>function pointer to attach to the signal.</td>
         | 
| 1115 1044 | 
             
            </tr>
         | 
| 1116 1045 | 
             
            <tr>
         | 
| 1117 1046 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 1118 | 
            -
            <td>the user data associated with the function | 
| 1119 | 
            -
            </td>
         | 
| 1047 | 
            +
            <td>the user data associated with the function.</td>
         | 
| 1120 1048 | 
             
            </tr>
         | 
| 1121 1049 | 
             
            <tr>
         | 
| 1122 1050 | 
             
            <td><p><span class="term"><em class="parameter"><code>destroy_func</code></em> :</span></p></td>
         | 
| 1123 | 
            -
            <td>function to call when this particular hook is | 
| 1124 | 
            -
            disconnected | 
| 1125 | 
            -
            </td>
         | 
| 1051 | 
            +
            <td>function to call when this particular hook is
         | 
| 1052 | 
            +
            disconnected.</td>
         | 
| 1126 1053 | 
             
            </tr>
         | 
| 1127 1054 | 
             
            <tr>
         | 
| 1128 1055 | 
             
            <td><p><span class="term"><em class="parameter"><code>object_signal</code></em> :</span></p></td>
         | 
| 1129 1056 | 
             
            <td>whether this is an object signal-- basically an "object
         | 
| 1130 1057 | 
             
            signal" is one that wants its user_data and object fields switched,
         | 
| 1131 1058 | 
             
            which is useful for calling functions which operate on another
         | 
| 1132 | 
            -
            object primarily | 
| 1133 | 
            -
            </td>
         | 
| 1059 | 
            +
            object primarily.</td>
         | 
| 1134 1060 | 
             
            </tr>
         | 
| 1135 1061 | 
             
            <tr>
         | 
| 1136 1062 | 
             
            <td><p><span class="term"><em class="parameter"><code>after</code></em> :</span></p></td>
         | 
| 1137 | 
            -
            <td>whether to invoke the user-defined handler after the signal, or to let | 
| 1063 | 
            +
            <td>whether to invoke the user-defined handler after the signal, or to let
         | 
| 1138 1064 | 
             
            the signal's default behavior preside (i.e. depending on <span class="type">GTK_RUN_FIRST</span>
         | 
| 1139 | 
            -
            and <span class="type">GTK_RUN_LAST</span>) | 
| 1140 | 
            -
            </td>
         | 
| 1065 | 
            +
            and <span class="type">GTK_RUN_LAST</span>).</td>
         | 
| 1141 1066 | 
             
            </tr>
         | 
| 1142 1067 | 
             
            <tr>
         | 
| 1143 1068 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1144 | 
            -
            <td>the connection id | 
| 1145 | 
            -
            </td>
         | 
| 1069 | 
            +
            <td>the connection id.</td>
         | 
| 1146 1070 | 
             
            </tr>
         | 
| 1147 1071 | 
             
            </tbody>
         | 
| 1148 1072 | 
             
            </table></div>
         | 
| 1149 1073 | 
             
            </div>
         | 
| 1150 1074 | 
             
            <hr>
         | 
| 1151 | 
            -
            <div class="refsect2" | 
| 1075 | 
            +
            <div class="refsect2">
         | 
| 1152 1076 | 
             
            <a name="gtk-signal-connect-while-alive"></a><h3>gtk_signal_connect_while_alive ()</h3>
         | 
| 1153 1077 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_signal_connect_while_alive      (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 1154 1078 | 
             
                                                                     <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>,
         | 
| 1155 1079 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> func</code></em>,
         | 
| 1156 1080 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> func_data</code></em>,
         | 
| 1157 1081 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *alive_object</code></em>);</pre>
         | 
| 1158 | 
            -
            <div class="warning"  | 
| 1082 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1159 1083 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1160 1084 | 
             
            <p><code class="literal">gtk_signal_connect_while_alive</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-connect-object"><code class="function">g_signal_connect_object()</code></a> instead.</p>
         | 
| 1161 1085 | 
             
            </div>
         | 
| @@ -1180,42 +1104,37 @@ with an integer masquerading as a pointer (through <a href="http://library.gnome | |
| 1180 1104 | 
             
            <tbody>
         | 
| 1181 1105 | 
             
            <tr>
         | 
| 1182 1106 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1183 | 
            -
            <td>the object that emits the signal | 
| 1184 | 
            -
            </td>
         | 
| 1107 | 
            +
            <td>the object that emits the signal.</td>
         | 
| 1185 1108 | 
             
            </tr>
         | 
| 1186 1109 | 
             
            <tr>
         | 
| 1187 1110 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 1188 | 
            -
            <td>name of the signal | 
| 1189 | 
            -
            </td>
         | 
| 1111 | 
            +
            <td>name of the signal.</td>
         | 
| 1190 1112 | 
             
            </tr>
         | 
| 1191 1113 | 
             
            <tr>
         | 
| 1192 1114 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 1193 | 
            -
            <td>function pointer to attach to the signal | 
| 1194 | 
            -
            </td>
         | 
| 1115 | 
            +
            <td>function pointer to attach to the signal.</td>
         | 
| 1195 1116 | 
             
            </tr>
         | 
| 1196 1117 | 
             
            <tr>
         | 
| 1197 1118 | 
             
            <td><p><span class="term"><em class="parameter"><code>func_data</code></em> :</span></p></td>
         | 
| 1198 | 
            -
            <td>pointer to pass to func | 
| 1199 | 
            -
            </td>
         | 
| 1119 | 
            +
            <td>pointer to pass to func.</td>
         | 
| 1200 1120 | 
             
            </tr>
         | 
| 1201 1121 | 
             
            <tr>
         | 
| 1202 1122 | 
             
            <td><p><span class="term"><em class="parameter"><code>alive_object</code></em> :</span></p></td>
         | 
| 1203 1123 | 
             
            <td>object whose death should cause the handler connection
         | 
| 1204 | 
            -
            to be destroyed | 
| 1205 | 
            -
            </td>
         | 
| 1124 | 
            +
            to be destroyed.</td>
         | 
| 1206 1125 | 
             
            </tr>
         | 
| 1207 1126 | 
             
            </tbody>
         | 
| 1208 1127 | 
             
            </table></div>
         | 
| 1209 1128 | 
             
            </div>
         | 
| 1210 1129 | 
             
            <hr>
         | 
| 1211 | 
            -
            <div class="refsect2" | 
| 1130 | 
            +
            <div class="refsect2">
         | 
| 1212 1131 | 
             
            <a name="gtk-signal-connect-object-while-alive"></a><h3>gtk_signal_connect_object_while_alive ()</h3>
         | 
| 1213 1132 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_signal_connect_object_while_alive
         | 
| 1214 1133 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>,
         | 
| 1215 1134 | 
             
                                                                     <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>,
         | 
| 1216 1135 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GCallback"><span class="type">GCallback</span></a> func</code></em>,
         | 
| 1217 1136 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *alive_object</code></em>);</pre>
         | 
| 1218 | 
            -
            <div class="warning"  | 
| 1137 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1219 1138 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1220 1139 | 
             
            <p><code class="literal">gtk_signal_connect_object_while_alive</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-connect-object"><code class="function">g_signal_connect_object()</code></a> instead, passing
         | 
| 1221 1140 | 
             
            <code class="literal">G_CONNECT_SWAPPED</code> as <em class="parameter"><code>connect_flags</code></em>.</p>
         | 
| @@ -1239,33 +1158,29 @@ clean up the handler. | |
| 1239 1158 | 
             
            <tbody>
         | 
| 1240 1159 | 
             
            <tr>
         | 
| 1241 1160 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1242 | 
            -
            <td>the object associated with the signal | 
| 1243 | 
            -
            </td>
         | 
| 1161 | 
            +
            <td>the object associated with the signal.</td>
         | 
| 1244 1162 | 
             
            </tr>
         | 
| 1245 1163 | 
             
            <tr>
         | 
| 1246 1164 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 1247 | 
            -
            <td>name of the signal | 
| 1248 | 
            -
            </td>
         | 
| 1165 | 
            +
            <td>name of the signal.</td>
         | 
| 1249 1166 | 
             
            </tr>
         | 
| 1250 1167 | 
             
            <tr>
         | 
| 1251 1168 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 1252 | 
            -
            <td>function pointer to attach to the signal | 
| 1253 | 
            -
            </td>
         | 
| 1169 | 
            +
            <td>function pointer to attach to the signal.</td>
         | 
| 1254 1170 | 
             
            </tr>
         | 
| 1255 1171 | 
             
            <tr>
         | 
| 1256 1172 | 
             
            <td><p><span class="term"><em class="parameter"><code>alive_object</code></em> :</span></p></td>
         | 
| 1257 1173 | 
             
            <td>the user data, which must be an object, whose destruction
         | 
| 1258 | 
            -
            should signal the removal of this signal | 
| 1259 | 
            -
            </td>
         | 
| 1174 | 
            +
            should signal the removal of this signal.</td>
         | 
| 1260 1175 | 
             
            </tr>
         | 
| 1261 1176 | 
             
            </tbody>
         | 
| 1262 1177 | 
             
            </table></div>
         | 
| 1263 1178 | 
             
            </div>
         | 
| 1264 1179 | 
             
            <hr>
         | 
| 1265 | 
            -
            <div class="refsect2" | 
| 1180 | 
            +
            <div class="refsect2">
         | 
| 1266 1181 | 
             
            <a name="gtk-signal-disconnect"></a><h3>gtk_signal_disconnect()</h3>
         | 
| 1267 1182 | 
             
            <pre class="programlisting">#define             gtk_signal_disconnect(object,handler_id)</pre>
         | 
| 1268 | 
            -
            <div class="warning"  | 
| 1183 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1269 1184 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1270 1185 | 
             
            <p><code class="literal">gtk_signal_disconnect</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-handler-disconnect"><code class="function">g_signal_handler_disconnect()</code></a> instead.</p>
         | 
| 1271 1186 | 
             
            </div>
         | 
| @@ -1277,22 +1192,20 @@ Destroys a user-defined handler connection. | |
| 1277 1192 | 
             
            <tbody>
         | 
| 1278 1193 | 
             
            <tr>
         | 
| 1279 1194 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1280 | 
            -
            <td>the object which the handler pertains to | 
| 1281 | 
            -
            </td>
         | 
| 1195 | 
            +
            <td>the object which the handler pertains to.</td>
         | 
| 1282 1196 | 
             
            </tr>
         | 
| 1283 1197 | 
             
            <tr>
         | 
| 1284 1198 | 
             
            <td><p><span class="term"><em class="parameter"><code>handler_id</code></em> :</span></p></td>
         | 
| 1285 | 
            -
            <td>the connection id | 
| 1286 | 
            -
            </td>
         | 
| 1199 | 
            +
            <td>the connection id.</td>
         | 
| 1287 1200 | 
             
            </tr>
         | 
| 1288 1201 | 
             
            </tbody>
         | 
| 1289 1202 | 
             
            </table></div>
         | 
| 1290 1203 | 
             
            </div>
         | 
| 1291 1204 | 
             
            <hr>
         | 
| 1292 | 
            -
            <div class="refsect2" | 
| 1205 | 
            +
            <div class="refsect2">
         | 
| 1293 1206 | 
             
            <a name="gtk-signal-disconnect-by-func"></a><h3>gtk_signal_disconnect_by_func()</h3>
         | 
| 1294 1207 | 
             
            <pre class="programlisting">#define             gtk_signal_disconnect_by_func(object,func,data)</pre>
         | 
| 1295 | 
            -
            <div class="warning"  | 
| 1208 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1296 1209 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1297 1210 | 
             
            <p><code class="literal">gtk_signal_disconnect_by_func</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-handlers-disconnect-by-func"><code class="function">g_signal_handlers_disconnect_by_func()</code></a> instead.</p>
         | 
| 1298 1211 | 
             
            </div>
         | 
| @@ -1305,27 +1218,24 @@ the given function-pointer and user-data. | |
| 1305 1218 | 
             
            <tbody>
         | 
| 1306 1219 | 
             
            <tr>
         | 
| 1307 1220 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1308 | 
            -
            <td>the object which emits the signal | 
| 1309 | 
            -
            </td>
         | 
| 1221 | 
            +
            <td>the object which emits the signal.</td>
         | 
| 1310 1222 | 
             
            </tr>
         | 
| 1311 1223 | 
             
            <tr>
         | 
| 1312 1224 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 1313 | 
            -
            <td>the function pointer to search for | 
| 1314 | 
            -
            </td>
         | 
| 1225 | 
            +
            <td>the function pointer to search for.</td>
         | 
| 1315 1226 | 
             
            </tr>
         | 
| 1316 1227 | 
             
            <tr>
         | 
| 1317 1228 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 1318 | 
            -
            <td>the user data to search for | 
| 1319 | 
            -
            </td>
         | 
| 1229 | 
            +
            <td>the user data to search for.</td>
         | 
| 1320 1230 | 
             
            </tr>
         | 
| 1321 1231 | 
             
            </tbody>
         | 
| 1322 1232 | 
             
            </table></div>
         | 
| 1323 1233 | 
             
            </div>
         | 
| 1324 1234 | 
             
            <hr>
         | 
| 1325 | 
            -
            <div class="refsect2" | 
| 1235 | 
            +
            <div class="refsect2">
         | 
| 1326 1236 | 
             
            <a name="gtk-signal-disconnect-by-data"></a><h3>gtk_signal_disconnect_by_data()</h3>
         | 
| 1327 1237 | 
             
            <pre class="programlisting">#define             gtk_signal_disconnect_by_data(object,data)</pre>
         | 
| 1328 | 
            -
            <div class="warning"  | 
| 1238 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1329 1239 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1330 1240 | 
             
            <p><code class="literal">gtk_signal_disconnect_by_data</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-handlers-disconnect-matched"><code class="function">g_signal_handlers_disconnect_matched()</code></a> instead.</p>
         | 
| 1331 1241 | 
             
            </div>
         | 
| @@ -1338,22 +1248,20 @@ the given user-data. | |
| 1338 1248 | 
             
            <tbody>
         | 
| 1339 1249 | 
             
            <tr>
         | 
| 1340 1250 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1341 | 
            -
            <td>the object which emits the signal | 
| 1342 | 
            -
            </td>
         | 
| 1251 | 
            +
            <td>the object which emits the signal.</td>
         | 
| 1343 1252 | 
             
            </tr>
         | 
| 1344 1253 | 
             
            <tr>
         | 
| 1345 1254 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 1346 | 
            -
            <td>the user data to search for | 
| 1347 | 
            -
            </td>
         | 
| 1255 | 
            +
            <td>the user data to search for.</td>
         | 
| 1348 1256 | 
             
            </tr>
         | 
| 1349 1257 | 
             
            </tbody>
         | 
| 1350 1258 | 
             
            </table></div>
         | 
| 1351 1259 | 
             
            </div>
         | 
| 1352 1260 | 
             
            <hr>
         | 
| 1353 | 
            -
            <div class="refsect2" | 
| 1261 | 
            +
            <div class="refsect2">
         | 
| 1354 1262 | 
             
            <a name="gtk-signal-handler-block"></a><h3>gtk_signal_handler_block()</h3>
         | 
| 1355 1263 | 
             
            <pre class="programlisting">#define             gtk_signal_handler_block(object,handler_id)</pre>
         | 
| 1356 | 
            -
            <div class="warning"  | 
| 1264 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1357 1265 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1358 1266 | 
             
            <p><code class="literal">gtk_signal_handler_block</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-handler-block"><code class="function">g_signal_handler_block()</code></a> instead.</p>
         | 
| 1359 1267 | 
             
            </div>
         | 
| @@ -1367,22 +1275,20 @@ handler will ignore it. | |
| 1367 1275 | 
             
            <tbody>
         | 
| 1368 1276 | 
             
            <tr>
         | 
| 1369 1277 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1370 | 
            -
            <td>the object which emits the signal to block | 
| 1371 | 
            -
            </td>
         | 
| 1278 | 
            +
            <td>the object which emits the signal to block.</td>
         | 
| 1372 1279 | 
             
            </tr>
         | 
| 1373 1280 | 
             
            <tr>
         | 
| 1374 1281 | 
             
            <td><p><span class="term"><em class="parameter"><code>handler_id</code></em> :</span></p></td>
         | 
| 1375 | 
            -
            <td>the connection id | 
| 1376 | 
            -
            </td>
         | 
| 1282 | 
            +
            <td>the connection id.</td>
         | 
| 1377 1283 | 
             
            </tr>
         | 
| 1378 1284 | 
             
            </tbody>
         | 
| 1379 1285 | 
             
            </table></div>
         | 
| 1380 1286 | 
             
            </div>
         | 
| 1381 1287 | 
             
            <hr>
         | 
| 1382 | 
            -
            <div class="refsect2" | 
| 1288 | 
            +
            <div class="refsect2">
         | 
| 1383 1289 | 
             
            <a name="gtk-signal-handler-block-by-func"></a><h3>gtk_signal_handler_block_by_func()</h3>
         | 
| 1384 1290 | 
             
            <pre class="programlisting">#define             gtk_signal_handler_block_by_func(object,func,data)</pre>
         | 
| 1385 | 
            -
            <div class="warning"  | 
| 1291 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1386 1292 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1387 1293 | 
             
            <p><code class="literal">gtk_signal_handler_block_by_func</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-handlers-block-by-func"><code class="function">g_signal_handlers_block_by_func()</code></a> instead.</p>
         | 
| 1388 1294 | 
             
            </div>
         | 
| @@ -1396,27 +1302,24 @@ multiple hooks being blocked, if you've called connect multiple times.) | |
| 1396 1302 | 
             
            <tbody>
         | 
| 1397 1303 | 
             
            <tr>
         | 
| 1398 1304 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1399 | 
            -
            <td>the object which emits the signal to block | 
| 1400 | 
            -
            </td>
         | 
| 1305 | 
            +
            <td>the object which emits the signal to block.</td>
         | 
| 1401 1306 | 
             
            </tr>
         | 
| 1402 1307 | 
             
            <tr>
         | 
| 1403 1308 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 1404 | 
            -
            <td>the function pointer of the handler to block | 
| 1405 | 
            -
            </td>
         | 
| 1309 | 
            +
            <td>the function pointer of the handler to block.</td>
         | 
| 1406 1310 | 
             
            </tr>
         | 
| 1407 1311 | 
             
            <tr>
         | 
| 1408 1312 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 1409 | 
            -
            <td>the user data of the handler to block | 
| 1410 | 
            -
            </td>
         | 
| 1313 | 
            +
            <td>the user data of the handler to block.</td>
         | 
| 1411 1314 | 
             
            </tr>
         | 
| 1412 1315 | 
             
            </tbody>
         | 
| 1413 1316 | 
             
            </table></div>
         | 
| 1414 1317 | 
             
            </div>
         | 
| 1415 1318 | 
             
            <hr>
         | 
| 1416 | 
            -
            <div class="refsect2" | 
| 1319 | 
            +
            <div class="refsect2">
         | 
| 1417 1320 | 
             
            <a name="gtk-signal-handler-block-by-data"></a><h3>gtk_signal_handler_block_by_data()</h3>
         | 
| 1418 1321 | 
             
            <pre class="programlisting">#define             gtk_signal_handler_block_by_data(object,data)</pre>
         | 
| 1419 | 
            -
            <div class="warning"  | 
| 1322 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1420 1323 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1421 1324 | 
             
            <p><code class="literal">gtk_signal_handler_block_by_data</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-handlers-block-matched"><code class="function">g_signal_handlers_block_matched()</code></a> instead.</p>
         | 
| 1422 1325 | 
             
            </div>
         | 
| @@ -1428,22 +1331,20 @@ Prevents all user-defined handlers with a certain user data from being invoked. | |
| 1428 1331 | 
             
            <tbody>
         | 
| 1429 1332 | 
             
            <tr>
         | 
| 1430 1333 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1431 | 
            -
            <td>the object which emits the signal we want to block | 
| 1432 | 
            -
            </td>
         | 
| 1334 | 
            +
            <td>the object which emits the signal we want to block.</td>
         | 
| 1433 1335 | 
             
            </tr>
         | 
| 1434 1336 | 
             
            <tr>
         | 
| 1435 1337 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 1436 | 
            -
            <td>the user data of the handlers to block | 
| 1437 | 
            -
            </td>
         | 
| 1338 | 
            +
            <td>the user data of the handlers to block.</td>
         | 
| 1438 1339 | 
             
            </tr>
         | 
| 1439 1340 | 
             
            </tbody>
         | 
| 1440 1341 | 
             
            </table></div>
         | 
| 1441 1342 | 
             
            </div>
         | 
| 1442 1343 | 
             
            <hr>
         | 
| 1443 | 
            -
            <div class="refsect2" | 
| 1344 | 
            +
            <div class="refsect2">
         | 
| 1444 1345 | 
             
            <a name="gtk-signal-handler-unblock"></a><h3>gtk_signal_handler_unblock()</h3>
         | 
| 1445 1346 | 
             
            <pre class="programlisting">#define             gtk_signal_handler_unblock(object,handler_id)</pre>
         | 
| 1446 | 
            -
            <div class="warning"  | 
| 1347 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1447 1348 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1448 1349 | 
             
            <p><code class="literal">gtk_signal_handler_unblock</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-handler-unblock"><code class="function">g_signal_handler_unblock()</code></a> instead.</p>
         | 
| 1449 1350 | 
             
            </div>
         | 
| @@ -1457,23 +1358,21 @@ hook twice, you must unblock it twice. | |
| 1457 1358 | 
             
            <tbody>
         | 
| 1458 1359 | 
             
            <tr>
         | 
| 1459 1360 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1460 | 
            -
            <td>the object which emits the signal we want to unblock | 
| 1461 | 
            -
            </td>
         | 
| 1361 | 
            +
            <td>the object which emits the signal we want to unblock.</td>
         | 
| 1462 1362 | 
             
            </tr>
         | 
| 1463 1363 | 
             
            <tr>
         | 
| 1464 1364 | 
             
            <td><p><span class="term"><em class="parameter"><code>handler_id</code></em> :</span></p></td>
         | 
| 1465 1365 | 
             
            <td>the emission handler identifier, as returned by
         | 
| 1466 | 
            -
            <a class="link" href="gtk-Signals.html#gtk-signal-connect" title="gtk_signal_connect()"><code class="function">gtk_signal_connect()</code></a>, etc | 
| 1467 | 
            -
            </td>
         | 
| 1366 | 
            +
            <a class="link" href="gtk-Signals.html#gtk-signal-connect" title="gtk_signal_connect()"><code class="function">gtk_signal_connect()</code></a>, etc.</td>
         | 
| 1468 1367 | 
             
            </tr>
         | 
| 1469 1368 | 
             
            </tbody>
         | 
| 1470 1369 | 
             
            </table></div>
         | 
| 1471 1370 | 
             
            </div>
         | 
| 1472 1371 | 
             
            <hr>
         | 
| 1473 | 
            -
            <div class="refsect2" | 
| 1372 | 
            +
            <div class="refsect2">
         | 
| 1474 1373 | 
             
            <a name="gtk-signal-handler-unblock-by-func"></a><h3>gtk_signal_handler_unblock_by_func()</h3>
         | 
| 1475 1374 | 
             
            <pre class="programlisting">#define             gtk_signal_handler_unblock_by_func(object,func,data)</pre>
         | 
| 1476 | 
            -
            <div class="warning"  | 
| 1375 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1477 1376 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1478 1377 | 
             
            <p><code class="literal">gtk_signal_handler_unblock_by_func</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-handlers-unblock-by-func"><code class="function">g_signal_handlers_unblock_by_func()</code></a> instead.</p>
         | 
| 1479 1378 | 
             
            </div>
         | 
| @@ -1488,27 +1387,24 @@ hook twice, you must unblock it twice. | |
| 1488 1387 | 
             
            <tbody>
         | 
| 1489 1388 | 
             
            <tr>
         | 
| 1490 1389 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1491 | 
            -
            <td>the object which emits the signal we want to unblock | 
| 1492 | 
            -
            </td>
         | 
| 1390 | 
            +
            <td>the object which emits the signal we want to unblock.</td>
         | 
| 1493 1391 | 
             
            </tr>
         | 
| 1494 1392 | 
             
            <tr>
         | 
| 1495 1393 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 1496 | 
            -
            <td>the function pointer to search for | 
| 1497 | 
            -
            </td>
         | 
| 1394 | 
            +
            <td>the function pointer to search for.</td>
         | 
| 1498 1395 | 
             
            </tr>
         | 
| 1499 1396 | 
             
            <tr>
         | 
| 1500 1397 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 1501 | 
            -
            <td>the user data to search for | 
| 1502 | 
            -
            </td>
         | 
| 1398 | 
            +
            <td>the user data to search for.</td>
         | 
| 1503 1399 | 
             
            </tr>
         | 
| 1504 1400 | 
             
            </tbody>
         | 
| 1505 1401 | 
             
            </table></div>
         | 
| 1506 1402 | 
             
            </div>
         | 
| 1507 1403 | 
             
            <hr>
         | 
| 1508 | 
            -
            <div class="refsect2" | 
| 1404 | 
            +
            <div class="refsect2">
         | 
| 1509 1405 | 
             
            <a name="gtk-signal-handler-unblock-by-data"></a><h3>gtk_signal_handler_unblock_by_data()</h3>
         | 
| 1510 1406 | 
             
            <pre class="programlisting">#define             gtk_signal_handler_unblock_by_data(object,data)</pre>
         | 
| 1511 | 
            -
            <div class="warning"  | 
| 1407 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1512 1408 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1513 1409 | 
             
            <p><code class="literal">gtk_signal_handler_unblock_by_data</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-handlers-unblock-matched"><code class="function">g_signal_handlers_unblock_matched()</code></a> instead.</p>
         | 
| 1514 1410 | 
             
            </div>
         | 
| @@ -1521,22 +1417,20 @@ with a particular user-data pointer | |
| 1521 1417 | 
             
            <tbody>
         | 
| 1522 1418 | 
             
            <tr>
         | 
| 1523 1419 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1524 | 
            -
            <td>the object which emits the signal we want to unblock | 
| 1525 | 
            -
            </td>
         | 
| 1420 | 
            +
            <td>the object which emits the signal we want to unblock.</td>
         | 
| 1526 1421 | 
             
            </tr>
         | 
| 1527 1422 | 
             
            <tr>
         | 
| 1528 1423 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 1529 | 
            -
            <td>the user data to search for | 
| 1530 | 
            -
            </td>
         | 
| 1424 | 
            +
            <td>the user data to search for.</td>
         | 
| 1531 1425 | 
             
            </tr>
         | 
| 1532 1426 | 
             
            </tbody>
         | 
| 1533 1427 | 
             
            </table></div>
         | 
| 1534 1428 | 
             
            </div>
         | 
| 1535 1429 | 
             
            <hr>
         | 
| 1536 | 
            -
            <div class="refsect2" | 
| 1430 | 
            +
            <div class="refsect2">
         | 
| 1537 1431 | 
             
            <a name="gtk-signal-handler-pending"></a><h3>gtk_signal_handler_pending()</h3>
         | 
| 1538 1432 | 
             
            <pre class="programlisting">#define             gtk_signal_handler_pending(object,signal_id,may_be_blocked)</pre>
         | 
| 1539 | 
            -
            <div class="warning"  | 
| 1433 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1540 1434 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1541 1435 | 
             
            <p><code class="literal">gtk_signal_handler_pending</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-has-handler-pending"><code class="function">g_signal_has_handler_pending()</code></a> instead.</p>
         | 
| 1542 1436 | 
             
            </div>
         | 
| @@ -1554,33 +1448,29 @@ thus saving the cost of building the arguments. | |
| 1554 1448 | 
             
            <tbody>
         | 
| 1555 1449 | 
             
            <tr>
         | 
| 1556 1450 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1557 | 
            -
            <td>the object to search for the desired user-defined handler | 
| 1558 | 
            -
            </td>
         | 
| 1451 | 
            +
            <td>the object to search for the desired user-defined handler.</td>
         | 
| 1559 1452 | 
             
            </tr>
         | 
| 1560 1453 | 
             
            <tr>
         | 
| 1561 1454 | 
             
            <td><p><span class="term"><em class="parameter"><code>signal_id</code></em> :</span></p></td>
         | 
| 1562 | 
            -
            <td>the number of the signal to search for | 
| 1563 | 
            -
            </td>
         | 
| 1455 | 
            +
            <td>the number of the signal to search for.</td>
         | 
| 1564 1456 | 
             
            </tr>
         | 
| 1565 1457 | 
             
            <tr>
         | 
| 1566 1458 | 
             
            <td><p><span class="term"><em class="parameter"><code>may_be_blocked</code></em> :</span></p></td>
         | 
| 1567 1459 | 
             
            <td>whether it is acceptable to return a blocked
         | 
| 1568 | 
            -
            handler | 
| 1569 | 
            -
            </td>
         | 
| 1460 | 
            +
            handler.</td>
         | 
| 1570 1461 | 
             
            </tr>
         | 
| 1571 1462 | 
             
            <tr>
         | 
| 1572 1463 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1573 | 
            -
            <td>the connection id, if a connection was found.  0 otherwise | 
| 1574 | 
            -
            </td>
         | 
| 1464 | 
            +
            <td>the connection id, if a connection was found.  0 otherwise.</td>
         | 
| 1575 1465 | 
             
            </tr>
         | 
| 1576 1466 | 
             
            </tbody>
         | 
| 1577 1467 | 
             
            </table></div>
         | 
| 1578 1468 | 
             
            </div>
         | 
| 1579 1469 | 
             
            <hr>
         | 
| 1580 | 
            -
            <div class="refsect2" | 
| 1470 | 
            +
            <div class="refsect2">
         | 
| 1581 1471 | 
             
            <a name="gtk-signal-handler-pending-by-func"></a><h3>gtk_signal_handler_pending_by_func()</h3>
         | 
| 1582 1472 | 
             
            <pre class="programlisting">#define             gtk_signal_handler_pending_by_func(object,signal_id,may_be_blocked,func,data)</pre>
         | 
| 1583 | 
            -
            <div class="warning"  | 
| 1473 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1584 1474 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1585 1475 | 
             
            <p><code class="literal">gtk_signal_handler_pending_by_func</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 1586 1476 | 
             
            </div>
         | 
| @@ -1593,44 +1483,38 @@ pointer and user data. | |
| 1593 1483 | 
             
            <tbody>
         | 
| 1594 1484 | 
             
            <tr>
         | 
| 1595 1485 | 
             
            <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
         | 
| 1596 | 
            -
            <td>the object to search for the desired handler | 
| 1597 | 
            -
            </td>
         | 
| 1486 | 
            +
            <td>the object to search for the desired handler.</td>
         | 
| 1598 1487 | 
             
            </tr>
         | 
| 1599 1488 | 
             
            <tr>
         | 
| 1600 1489 | 
             
            <td><p><span class="term"><em class="parameter"><code>signal_id</code></em> :</span></p></td>
         | 
| 1601 | 
            -
            <td>the number of the signal to search for | 
| 1602 | 
            -
            </td>
         | 
| 1490 | 
            +
            <td>the number of the signal to search for.</td>
         | 
| 1603 1491 | 
             
            </tr>
         | 
| 1604 1492 | 
             
            <tr>
         | 
| 1605 1493 | 
             
            <td><p><span class="term"><em class="parameter"><code>may_be_blocked</code></em> :</span></p></td>
         | 
| 1606 1494 | 
             
            <td>whether it is acceptable to return a blocked
         | 
| 1607 | 
            -
            handler | 
| 1608 | 
            -
            </td>
         | 
| 1495 | 
            +
            handler.</td>
         | 
| 1609 1496 | 
             
            </tr>
         | 
| 1610 1497 | 
             
            <tr>
         | 
| 1611 1498 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 1612 | 
            -
            <td>the function pointer to search for | 
| 1613 | 
            -
            </td>
         | 
| 1499 | 
            +
            <td>the function pointer to search for.</td>
         | 
| 1614 1500 | 
             
            </tr>
         | 
| 1615 1501 | 
             
            <tr>
         | 
| 1616 1502 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 1617 | 
            -
            <td>the user data to search for | 
| 1618 | 
            -
            </td>
         | 
| 1503 | 
            +
            <td>the user data to search for.</td>
         | 
| 1619 1504 | 
             
            </tr>
         | 
| 1620 1505 | 
             
            <tr>
         | 
| 1621 1506 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1622 | 
            -
            <td>the connection id, if a handler was found.  0 otherwise | 
| 1623 | 
            -
            </td>
         | 
| 1507 | 
            +
            <td>the connection id, if a handler was found.  0 otherwise.</td>
         | 
| 1624 1508 | 
             
            </tr>
         | 
| 1625 1509 | 
             
            </tbody>
         | 
| 1626 1510 | 
             
            </table></div>
         | 
| 1627 1511 | 
             
            </div>
         | 
| 1628 1512 | 
             
            <hr>
         | 
| 1629 | 
            -
            <div class="refsect2" | 
| 1513 | 
            +
            <div class="refsect2">
         | 
| 1630 1514 | 
             
            <a name="gtk-signal-default-marshaller"></a><h3>gtk_signal_default_marshaller</h3>
         | 
| 1631 1515 | 
             
            <pre class="programlisting">#define gtk_signal_default_marshaller g_cclosure_marshal_VOID__VOID
         | 
| 1632 1516 | 
             
            </pre>
         | 
| 1633 | 
            -
            <div class="warning"  | 
| 1517 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1634 1518 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1635 1519 | 
             
            <p><code class="literal">gtk_signal_default_marshaller</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 1636 1520 | 
             
            </div>
         | 
| @@ -1639,7 +1523,7 @@ A marshaller that returns void and takes no extra parameters. | |
| 1639 1523 | 
             
            </p>
         | 
| 1640 1524 | 
             
            </div>
         | 
| 1641 1525 | 
             
            </div>
         | 
| 1642 | 
            -
            <div class="refsect1" | 
| 1526 | 
            +
            <div class="refsect1">
         | 
| 1643 1527 | 
             
            <a name="gtk-Signals.see-also"></a><h2>See Also</h2>
         | 
| 1644 1528 | 
             
            <p>
         | 
| 1645 1529 | 
             
            </p>
         | 
| @@ -1662,6 +1546,6 @@ A marshaller that returns void and takes no extra parameters. | |
| 1662 1546 | 
             
            </div>
         | 
| 1663 1547 | 
             
            <div class="footer">
         | 
| 1664 1548 | 
             
            <hr>
         | 
| 1665 | 
            -
                      Generated by GTK-Doc V1. | 
| 1549 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 1666 1550 | 
             
            </body>
         | 
| 1667 1551 | 
             
            </html>
         |