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>GtkLabel</title>
         | 
| 6 6 | 
             
            <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
         | 
| 7 | 
            -
            <link rel="home" href="index.html" title="GTK+ Reference Manual">
         | 
| 7 | 
            +
            <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
         | 
| 8 8 | 
             
            <link rel="up" href="DisplayWidgets.html" title="Display Widgets">
         | 
| 9 9 | 
             
            <link rel="prev" href="GtkImage.html" title="GtkImage">
         | 
| 10 10 | 
             
            <link rel="next" href="GtkProgressBar.html" title="GtkProgressBar">
         | 
| 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="GtkImage.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="DisplayWidgets.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 19 19 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 20 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 20 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 21 21 | 
             
            <td><a accesskey="n" href="GtkProgressBar.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 22 22 | 
             
            </tr>
         | 
| 23 23 | 
             
            <tr><td colspan="5" class="shortcuts">
         | 
| @@ -34,7 +34,7 @@ | |
| 34 34 | 
             
                              <a href="#GtkLabel.signals" class="shortcut">Signals</a>
         | 
| 35 35 | 
             
            </td></tr>
         | 
| 36 36 | 
             
            </table>
         | 
| 37 | 
            -
            <div class="refentry" | 
| 37 | 
            +
            <div class="refentry">
         | 
| 38 38 | 
             
            <a name="GtkLabel"></a><div class="titlepage"></div>
         | 
| 39 39 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 40 40 | 
             
            <td valign="top">
         | 
| @@ -43,13 +43,13 @@ | |
| 43 43 | 
             
            </td>
         | 
| 44 44 | 
             
            <td valign="top" align="right"><img src="label.png"></td>
         | 
| 45 45 | 
             
            </tr></table></div>
         | 
| 46 | 
            -
            <div class="refsynopsisdiv" | 
| 46 | 
            +
            <div class="refsynopsisdiv">
         | 
| 47 47 | 
             
            <a name="GtkLabel.synopsis"></a><h2>Synopsis</h2>
         | 
| 48 48 | 
             
            <pre class="synopsis">
         | 
| 49 49 | 
             
            #include <gtk/gtk.h>
         | 
| 50 50 |  | 
| 51 | 
            -
             | 
| 52 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 51 | 
            +
            struct              <a class="link" href="GtkLabel.html#GtkLabel-struct" title="struct GtkLabel">GtkLabel</a>;
         | 
| 52 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *             <a class="link" href="GtkLabel.html#gtk-label-new" title="gtk_label_new ()">gtk_label_new</a>                   (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);
         | 
| 53 53 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkLabel.html#gtk-label-set-text" title="gtk_label_set_text ()">gtk_label_set_text</a>                  (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 54 54 | 
             
                                                                     <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> *str</code></em>);
         | 
| 55 55 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkLabel.html#gtk-label-set-attributes" title="gtk_label_set_attributes ()">gtk_label_set_attributes</a>            (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| @@ -82,8 +82,8 @@ | |
| 82 82 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>);
         | 
| 83 83 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>               <a class="link" href="GtkLabel.html#gtk-label-get-mnemonic-keyval" title="gtk_label_get_mnemonic_keyval ()">gtk_label_get_mnemonic_keyval</a>       (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 84 84 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkLabel.html#gtk-label-get-selectable" title="gtk_label_get_selectable ()">gtk_label_get_selectable</a>            (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 85 | 
            -
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a | 
| 86 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 85 | 
            +
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          <a class="link" href="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()">gtk_label_get_text</a>               (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 86 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *             <a class="link" href="GtkLabel.html#gtk-label-new-with-mnemonic" title="gtk_label_new_with_mnemonic ()">gtk_label_new_with_mnemonic</a>     (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);
         | 
| 87 87 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkLabel.html#gtk-label-select-region" title="gtk_label_select_region ()">gtk_label_select_region</a>             (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 88 88 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> start_offset</code></em>,
         | 
| 89 89 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> end_offset</code></em>);
         | 
| @@ -98,7 +98,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm | |
| 98 98 | 
             
            <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="returnvalue">PangoEllipsizeMode</span></a>  <a class="link" href="GtkLabel.html#gtk-label-get-ellipsize" title="gtk_label_get_ellipsize ()">gtk_label_get_ellipsize</a>             (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 99 99 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkLabel.html#gtk-label-get-width-chars" title="gtk_label_get_width_chars ()">gtk_label_get_width_chars</a>           (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 100 100 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkLabel.html#gtk-label-get-max-width-chars" title="gtk_label_get_max_width_chars ()">gtk_label_get_max_width_chars</a>       (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 101 | 
            -
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 101 | 
            +
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          <a class="link" href="GtkLabel.html#gtk-label-get-label" title="gtk_label_get_label ()">gtk_label_get_label</a>              (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 102 102 | 
             
            <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="returnvalue">PangoLayout</span></a> *       <a class="link" href="GtkLabel.html#gtk-label-get-layout" title="gtk_label_get_layout ()">gtk_label_get_layout</a>                (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 103 103 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkLabel.html#gtk-label-get-line-wrap" title="gtk_label_get_line_wrap ()">gtk_label_get_line_wrap</a>             (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 104 104 | 
             
            <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="returnvalue">PangoWrapMode</span></a>       <a class="link" href="GtkLabel.html#gtk-label-get-line-wrap-mode" title="gtk_label_get_line_wrap_mode ()">gtk_label_get_line_wrap_mode</a>        (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| @@ -126,7 +126,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm | |
| 126 126 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkLabel.html#gtk-label-get-track-visited-links" title="gtk_label_get_track_visited_links ()">gtk_label_get_track_visited_links</a>   (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
         | 
| 127 127 | 
             
            </pre>
         | 
| 128 128 | 
             
            </div>
         | 
| 129 | 
            -
            <div class="refsect1" | 
| 129 | 
            +
            <div class="refsect1">
         | 
| 130 130 | 
             
            <a name="GtkLabel.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 131 131 | 
             
            <pre class="synopsis">
         | 
| 132 132 | 
             
              <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| @@ -139,13 +139,13 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm | |
| 139 139 | 
             
                                             +----<a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery">GtkTipsQuery</a>
         | 
| 140 140 | 
             
            </pre>
         | 
| 141 141 | 
             
            </div>
         | 
| 142 | 
            -
            <div class="refsect1" | 
| 142 | 
            +
            <div class="refsect1">
         | 
| 143 143 | 
             
            <a name="GtkLabel.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
         | 
| 144 144 | 
             
            <p>
         | 
| 145 145 | 
             
            GtkLabel implements
         | 
| 146 146 | 
             
             AtkImplementorIface and  <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
         | 
| 147 147 | 
             
            </div>
         | 
| 148 | 
            -
            <div class="refsect1" | 
| 148 | 
            +
            <div class="refsect1">
         | 
| 149 149 | 
             
            <a name="GtkLabel.properties"></a><h2>Properties</h2>
         | 
| 150 150 | 
             
            <pre class="synopsis">
         | 
| 151 151 | 
             
              "<a class="link" href="GtkLabel.html#GtkLabel--angle" title='The "angle" property'>angle</a>"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a>               : Read / Write
         | 
| @@ -169,24 +169,24 @@ GtkLabel implements | |
| 169 169 | 
             
              "<a class="link" href="GtkLabel.html#GtkLabel--wrap-mode" title='The "wrap-mode" property'>wrap-mode</a>"                <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a>         : Read / Write
         | 
| 170 170 | 
             
            </pre>
         | 
| 171 171 | 
             
            </div>
         | 
| 172 | 
            -
            <div class="refsect1" | 
| 172 | 
            +
            <div class="refsect1">
         | 
| 173 173 | 
             
            <a name="GtkLabel.signals"></a><h2>Signals</h2>
         | 
| 174 174 | 
             
            <pre class="synopsis">
         | 
| 175 | 
            -
              "<a class="link" href="GtkLabel.html#GtkLabel-activate-current-link" title='The "activate-current-link" signal'>activate-current-link</a>"                          :  | 
| 176 | 
            -
              "<a class="link" href="GtkLabel.html#GtkLabel-activate-link" title='The "activate-link" signal'>activate-link</a>"                                  : Run Last
         | 
| 177 | 
            -
              "<a class="link" href="GtkLabel.html#GtkLabel-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>"                                 :  | 
| 178 | 
            -
              "<a class="link" href="GtkLabel.html#GtkLabel-move-cursor" title='The "move-cursor" signal'>move-cursor</a>"                                    :  | 
| 179 | 
            -
              "<a class="link" href="GtkLabel.html#GtkLabel-populate-popup" title='The "populate-popup" signal'>populate-popup</a>"                                 : Run Last
         | 
| 175 | 
            +
              "<a class="link" href="GtkLabel.html#GtkLabel-activate-current-link" title='The "activate-current-link" signal'>activate-current-link</a>"                          : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
         | 
| 176 | 
            +
              "<a class="link" href="GtkLabel.html#GtkLabel-activate-link" title='The "activate-link" signal'>activate-link</a>"                                  : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
         | 
| 177 | 
            +
              "<a class="link" href="GtkLabel.html#GtkLabel-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>"                                 : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
         | 
| 178 | 
            +
              "<a class="link" href="GtkLabel.html#GtkLabel-move-cursor" title='The "move-cursor" signal'>move-cursor</a>"                                    : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
         | 
| 179 | 
            +
              "<a class="link" href="GtkLabel.html#GtkLabel-populate-popup" title='The "populate-popup" signal'>populate-popup</a>"                                 : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
         | 
| 180 180 | 
             
            </pre>
         | 
| 181 181 | 
             
            </div>
         | 
| 182 | 
            -
            <div class="refsect1" | 
| 182 | 
            +
            <div class="refsect1">
         | 
| 183 183 | 
             
            <a name="GtkLabel.description"></a><h2>Description</h2>
         | 
| 184 184 | 
             
            <p>
         | 
| 185 185 | 
             
            The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget displays a small amount of text. As the name
         | 
| 186 186 | 
             
            implies, most labels are used to label another widget such as a
         | 
| 187 187 | 
             
            <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>, a <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a>, or a <a class="link" href="GtkOptionMenu.html" title="GtkOptionMenu"><span class="type">GtkOptionMenu</span></a>.
         | 
| 188 188 | 
             
            </p>
         | 
| 189 | 
            -
            <div class="refsect2" | 
| 189 | 
            +
            <div class="refsect2">
         | 
| 190 190 | 
             
            <a name="GtkLabel-BUILDER-UI"></a><h3>GtkLabel as GtkBuildable</h3>
         | 
| 191 191 | 
             
            <p>
         | 
| 192 192 | 
             
            The GtkLabel implementation of the GtkBuildable interface supports a
         | 
| @@ -195,7 +195,7 @@ elements. the <attribute> element has attributes named name, value, | |
| 195 195 | 
             
            start and end and allows you to specify <a href="/usr/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttribute"><span class="type">PangoAttribute</span></a> values for this label.
         | 
| 196 196 | 
             
            </p>
         | 
| 197 197 | 
             
            <div class="example">
         | 
| 198 | 
            -
            <a name=" | 
| 198 | 
            +
            <a name="id778868"></a><p class="title"><b>Example 13. A UI definition fragment specifying Pango attributes</b></p>
         | 
| 199 199 | 
             
            <div class="example-contents">
         | 
| 200 200 | 
             
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| 201 201 | 
             
                <tbody>
         | 
| @@ -227,8 +227,8 @@ content instead. | |
| 227 227 | 
             
            </p>
         | 
| 228 228 | 
             
            </div>
         | 
| 229 229 | 
             
            <hr>
         | 
| 230 | 
            -
            <div class="refsect2" | 
| 231 | 
            -
            <a name=" | 
| 230 | 
            +
            <div class="refsect2">
         | 
| 231 | 
            +
            <a name="id778891"></a><h3>Mnemonics</h3>
         | 
| 232 232 | 
             
            <p>
         | 
| 233 233 | 
             
            Labels may contain <em class="firstterm">mnemonics</em>. Mnemonics are
         | 
| 234 234 | 
             
            underlined characters in the label, used for keyboard navigation.
         | 
| @@ -304,8 +304,8 @@ To create a mnemonic for a widget alongside the label, such as a | |
| 304 304 | 
             
            </p>
         | 
| 305 305 | 
             
            </div>
         | 
| 306 306 | 
             
            <hr>
         | 
| 307 | 
            -
            <div class="refsect2" | 
| 308 | 
            -
            <a name=" | 
| 307 | 
            +
            <div class="refsect2">
         | 
| 308 | 
            +
            <a name="id779012"></a><h3>Markup (styled text)</h3>
         | 
| 309 309 | 
             
            <p>
         | 
| 310 310 | 
             
            To make it easy to format text in a label (changing colors, fonts,
         | 
| 311 311 | 
             
            etc.), label text can be provided in a simple <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">markup format</a>.
         | 
| @@ -347,8 +347,8 @@ being displayed, so translations will cause problems. | |
| 347 347 | 
             
            </p>
         | 
| 348 348 | 
             
            </div>
         | 
| 349 349 | 
             
            <hr>
         | 
| 350 | 
            -
            <div class="refsect2" | 
| 351 | 
            -
            <a name=" | 
| 350 | 
            +
            <div class="refsect2">
         | 
| 351 | 
            +
            <a name="id779129"></a><h3>Selectable labels</h3>
         | 
| 352 352 | 
             
            <p>
         | 
| 353 353 | 
             
            Labels can be made selectable with <a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()"><code class="function">gtk_label_set_selectable()</code></a>.
         | 
| 354 354 | 
             
            Selectable labels allow the user to copy the label contents to
         | 
| @@ -357,8 +357,8 @@ the clipboard. Only labels that contain useful-to-copy information | |
| 357 357 | 
             
            </p>
         | 
| 358 358 | 
             
            </div>
         | 
| 359 359 | 
             
            <hr>
         | 
| 360 | 
            -
            <div class="refsect2" | 
| 361 | 
            -
            <a name=" | 
| 360 | 
            +
            <div class="refsect2">
         | 
| 361 | 
            +
            <a name="id779152"></a><h3>Text layout</h3>
         | 
| 362 362 | 
             
            <p>
         | 
| 363 363 | 
             
            A label can contain any number of paragraphs, but will have
         | 
| 364 364 | 
             
            performance problems if it contains more than a small number.
         | 
| @@ -376,8 +376,8 @@ aligns in its available space, see <a class="link" href="GtkMisc.html#gtk-misc-s | |
| 376 376 | 
             
            </p>
         | 
| 377 377 | 
             
            </div>
         | 
| 378 378 | 
             
            <hr>
         | 
| 379 | 
            -
            <div class="refsect2" | 
| 380 | 
            -
            <a name=" | 
| 379 | 
            +
            <div class="refsect2">
         | 
| 380 | 
            +
            <a name="id779204"></a><h3>Links</h3>
         | 
| 381 381 | 
             
            <p>
         | 
| 382 382 | 
             
            Since 2.18, GTK+ supports markup for clickable hyperlinks in addition
         | 
| 383 383 | 
             
            to regular Pango markup. The markup for links is borrowed from HTML, using the
         | 
| @@ -402,20 +402,20 @@ the <a class="link" href="GtkLabel.html#GtkLabel-activate-link" title='The "acti | |
| 402 402 | 
             
            </p>
         | 
| 403 403 | 
             
            </div>
         | 
| 404 404 | 
             
            </div>
         | 
| 405 | 
            -
            <div class="refsect1" | 
| 405 | 
            +
            <div class="refsect1">
         | 
| 406 406 | 
             
            <a name="GtkLabel.details"></a><h2>Details</h2>
         | 
| 407 | 
            -
            <div class="refsect2" | 
| 408 | 
            -
            <a name="GtkLabel-struct"></a><h3>GtkLabel</h3>
         | 
| 409 | 
            -
            <pre class="programlisting"> | 
| 407 | 
            +
            <div class="refsect2">
         | 
| 408 | 
            +
            <a name="GtkLabel-struct"></a><h3>struct GtkLabel</h3>
         | 
| 409 | 
            +
            <pre class="programlisting">struct GtkLabel;</pre>
         | 
| 410 410 | 
             
            <p>
         | 
| 411 411 | 
             
            This should not be accessed directly.  Use the accessor functions as
         | 
| 412 412 | 
             
            described below.
         | 
| 413 413 | 
             
            </p>
         | 
| 414 414 | 
             
            </div>
         | 
| 415 415 | 
             
            <hr>
         | 
| 416 | 
            -
            <div class="refsect2" | 
| 416 | 
            +
            <div class="refsect2">
         | 
| 417 417 | 
             
            <a name="gtk-label-new"></a><h3>gtk_label_new ()</h3>
         | 
| 418 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 418 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *             gtk_label_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> *str</code></em>);</pre>
         | 
| 419 419 | 
             
            <p>
         | 
| 420 420 | 
             
            Creates a new label with the given text inside it. You can
         | 
| 421 421 | 
             
            pass <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get an empty label widget.
         | 
| @@ -425,19 +425,18 @@ pass <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros. | |
| 425 425 | 
             
            <tbody>
         | 
| 426 426 | 
             
            <tr>
         | 
| 427 427 | 
             
            <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
         | 
| 428 | 
            -
            <td>The text of the label
         | 
| 429 | 
            -
            </td>
         | 
| 428 | 
            +
            <td>The text of the label</td>
         | 
| 430 429 | 
             
            </tr>
         | 
| 431 430 | 
             
            <tr>
         | 
| 432 431 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 433 | 
            -
            <td> | 
| 432 | 
            +
            <td>the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
         | 
| 434 433 | 
             
            </td>
         | 
| 435 434 | 
             
            </tr>
         | 
| 436 435 | 
             
            </tbody>
         | 
| 437 436 | 
             
            </table></div>
         | 
| 438 437 | 
             
            </div>
         | 
| 439 438 | 
             
            <hr>
         | 
| 440 | 
            -
            <div class="refsect2" | 
| 439 | 
            +
            <div class="refsect2">
         | 
| 441 440 | 
             
            <a name="gtk-label-set-text"></a><h3>gtk_label_set_text ()</h3>
         | 
| 442 441 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_text                  (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 443 442 | 
             
                                                                     <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> *str</code></em>);</pre>
         | 
| @@ -458,14 +457,13 @@ This will also clear any previously set mnemonic accelerators. | |
| 458 457 | 
             
            </tr>
         | 
| 459 458 | 
             
            <tr>
         | 
| 460 459 | 
             
            <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
         | 
| 461 | 
            -
            <td>The text you want to set
         | 
| 462 | 
            -
            </td>
         | 
| 460 | 
            +
            <td>The text you want to set</td>
         | 
| 463 461 | 
             
            </tr>
         | 
| 464 462 | 
             
            </tbody>
         | 
| 465 463 | 
             
            </table></div>
         | 
| 466 464 | 
             
            </div>
         | 
| 467 465 | 
             
            <hr>
         | 
| 468 | 
            -
            <div class="refsect2" | 
| 466 | 
            +
            <div class="refsect2">
         | 
| 469 467 | 
             
            <a name="gtk-label-set-attributes"></a><h3>gtk_label_set_attributes ()</h3>
         | 
| 470 468 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_attributes            (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 471 469 | 
             
                                                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a> *attrs</code></em>);</pre>
         | 
| @@ -475,7 +473,7 @@ label text. | |
| 475 473 | 
             
            </p>
         | 
| 476 474 | 
             
            <p>
         | 
| 477 475 | 
             
            </p>
         | 
| 478 | 
            -
            <div class="note"  | 
| 476 | 
            +
            <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 479 477 | 
             
            <h3 class="title">Note</h3>
         | 
| 480 478 | 
             
            <p>The attributes set with this function will be applied
         | 
| 481 479 | 
             
            and merged with any other attributes previously effected by way
         | 
| @@ -503,7 +501,7 @@ to the label after the markup string is parsed.</p> | |
| 503 501 | 
             
            </table></div>
         | 
| 504 502 | 
             
            </div>
         | 
| 505 503 | 
             
            <hr>
         | 
| 506 | 
            -
            <div class="refsect2" | 
| 504 | 
            +
            <div class="refsect2">
         | 
| 507 505 | 
             
            <a name="gtk-label-set-markup"></a><h3>gtk_label_set_markup ()</h3>
         | 
| 508 506 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_markup                (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 509 507 | 
             
                                                                     <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> *str</code></em>);</pre>
         | 
| @@ -544,14 +542,13 @@ external data, you may need to escape it with <a href="http://library.gnome.org/ | |
| 544 542 | 
             
            </tr>
         | 
| 545 543 | 
             
            <tr>
         | 
| 546 544 | 
             
            <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
         | 
| 547 | 
            -
            <td>a markup string (see <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)
         | 
| 548 | 
            -
            </td>
         | 
| 545 | 
            +
            <td>a markup string (see <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)</td>
         | 
| 549 546 | 
             
            </tr>
         | 
| 550 547 | 
             
            </tbody>
         | 
| 551 548 | 
             
            </table></div>
         | 
| 552 549 | 
             
            </div>
         | 
| 553 550 | 
             
            <hr>
         | 
| 554 | 
            -
            <div class="refsect2" | 
| 551 | 
            +
            <div class="refsect2">
         | 
| 555 552 | 
             
            <a name="gtk-label-set-markup-with-mnemonic"></a><h3>gtk_label_set_markup_with_mnemonic ()</h3>
         | 
| 556 553 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_markup_with_mnemonic  (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 557 554 | 
             
                                                                     <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> *str</code></em>);</pre>
         | 
| @@ -575,14 +572,13 @@ automatically, or explicitly using <a class="link" href="GtkLabel.html#gtk-label | |
| 575 572 | 
             
            </tr>
         | 
| 576 573 | 
             
            <tr>
         | 
| 577 574 | 
             
            <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
         | 
| 578 | 
            -
            <td>a markup string (see <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)
         | 
| 579 | 
            -
            </td>
         | 
| 575 | 
            +
            <td>a markup string (see <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)</td>
         | 
| 580 576 | 
             
            </tr>
         | 
| 581 577 | 
             
            </tbody>
         | 
| 582 578 | 
             
            </table></div>
         | 
| 583 579 | 
             
            </div>
         | 
| 584 580 | 
             
            <hr>
         | 
| 585 | 
            -
            <div class="refsect2" | 
| 581 | 
            +
            <div class="refsect2">
         | 
| 586 582 | 
             
            <a name="gtk-label-set-pattern"></a><h3>gtk_label_set_pattern ()</h3>
         | 
| 587 583 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_pattern               (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 588 584 | 
             
                                                                     <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> *pattern</code></em>);</pre>
         | 
| @@ -597,19 +593,17 @@ The pattern of underlines you want under the existing text within the | |
| 597 593 | 
             
            <tbody>
         | 
| 598 594 | 
             
            <tr>
         | 
| 599 595 | 
             
            <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
         | 
| 600 | 
            -
            <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to set the pattern to | 
| 601 | 
            -
            </td>
         | 
| 596 | 
            +
            <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to set the pattern to.</td>
         | 
| 602 597 | 
             
            </tr>
         | 
| 603 598 | 
             
            <tr>
         | 
| 604 599 | 
             
            <td><p><span class="term"><em class="parameter"><code>pattern</code></em> :</span></p></td>
         | 
| 605 | 
            -
            <td>The pattern as described above | 
| 606 | 
            -
            </td>
         | 
| 600 | 
            +
            <td>The pattern as described above.</td>
         | 
| 607 601 | 
             
            </tr>
         | 
| 608 602 | 
             
            </tbody>
         | 
| 609 603 | 
             
            </table></div>
         | 
| 610 604 | 
             
            </div>
         | 
| 611 605 | 
             
            <hr>
         | 
| 612 | 
            -
            <div class="refsect2" | 
| 606 | 
            +
            <div class="refsect2">
         | 
| 613 607 | 
             
            <a name="gtk-label-set-justify"></a><h3>gtk_label_set_justify ()</h3>
         | 
| 614 608 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_justify               (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 615 609 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> jtype</code></em>);</pre>
         | 
| @@ -638,7 +632,7 @@ effect on labels containing only a single line. | |
| 638 632 | 
             
            </table></div>
         | 
| 639 633 | 
             
            </div>
         | 
| 640 634 | 
             
            <hr>
         | 
| 641 | 
            -
            <div class="refsect2" | 
| 635 | 
            +
            <div class="refsect2">
         | 
| 642 636 | 
             
            <a name="gtk-label-set-ellipsize"></a><h3>gtk_label_set_ellipsize ()</h3>
         | 
| 643 637 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_ellipsize             (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 644 638 | 
             
                                                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a> mode</code></em>);</pre>
         | 
| @@ -664,7 +658,7 @@ if there is not enough space to render the entire string. | |
| 664 658 | 
             
            <p class="since">Since 2.6</p>
         | 
| 665 659 | 
             
            </div>
         | 
| 666 660 | 
             
            <hr>
         | 
| 667 | 
            -
            <div class="refsect2" | 
| 661 | 
            +
            <div class="refsect2">
         | 
| 668 662 | 
             
            <a name="gtk-label-set-width-chars"></a><h3>gtk_label_set_width_chars ()</h3>
         | 
| 669 663 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_width_chars           (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 670 664 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_chars</code></em>);</pre>
         | 
| @@ -681,15 +675,14 @@ Sets the desired width in characters of <em class="parameter"><code>label</code> | |
| 681 675 | 
             
            </tr>
         | 
| 682 676 | 
             
            <tr>
         | 
| 683 677 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
         | 
| 684 | 
            -
            <td>the new desired width, in characters | 
| 685 | 
            -
            </td>
         | 
| 678 | 
            +
            <td>the new desired width, in characters.</td>
         | 
| 686 679 | 
             
            </tr>
         | 
| 687 680 | 
             
            </tbody>
         | 
| 688 681 | 
             
            </table></div>
         | 
| 689 682 | 
             
            <p class="since">Since 2.6</p>
         | 
| 690 683 | 
             
            </div>
         | 
| 691 684 | 
             
            <hr>
         | 
| 692 | 
            -
            <div class="refsect2" | 
| 685 | 
            +
            <div class="refsect2">
         | 
| 693 686 | 
             
            <a name="gtk-label-set-max-width-chars"></a><h3>gtk_label_set_max_width_chars ()</h3>
         | 
| 694 687 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_max_width_chars       (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 695 688 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_chars</code></em>);</pre>
         | 
| @@ -706,19 +699,18 @@ Sets the desired maximum width in characters of <em class="parameter"><code>labe | |
| 706 699 | 
             
            </tr>
         | 
| 707 700 | 
             
            <tr>
         | 
| 708 701 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
         | 
| 709 | 
            -
            <td>the new desired maximum width, in characters | 
| 710 | 
            -
            </td>
         | 
| 702 | 
            +
            <td>the new desired maximum width, in characters.</td>
         | 
| 711 703 | 
             
            </tr>
         | 
| 712 704 | 
             
            </tbody>
         | 
| 713 705 | 
             
            </table></div>
         | 
| 714 706 | 
             
            <p class="since">Since 2.6</p>
         | 
| 715 707 | 
             
            </div>
         | 
| 716 708 | 
             
            <hr>
         | 
| 717 | 
            -
            <div class="refsect2" | 
| 709 | 
            +
            <div class="refsect2">
         | 
| 718 710 | 
             
            <a name="gtk-label-get"></a><h3>gtk_label_get ()</h3>
         | 
| 719 711 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_get                       (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 720 712 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **str</code></em>);</pre>
         | 
| 721 | 
            -
            <div class="warning"  | 
| 713 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 722 714 | 
             
            <h3 class="title">Warning</h3>
         | 
| 723 715 | 
             
            <p><code class="literal">gtk_label_get</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()"><code class="function">gtk_label_get_text()</code></a> instead.</p>
         | 
| 724 716 | 
             
            </div>
         | 
| @@ -732,23 +724,21 @@ must not write to it. | |
| 732 724 | 
             
            <tbody>
         | 
| 733 725 | 
             
            <tr>
         | 
| 734 726 | 
             
            <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
         | 
| 735 | 
            -
            <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget you want to get the text from | 
| 736 | 
            -
            </td>
         | 
| 727 | 
            +
            <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget you want to get the text from.</td>
         | 
| 737 728 | 
             
            </tr>
         | 
| 738 729 | 
             
            <tr>
         | 
| 739 730 | 
             
            <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
         | 
| 740 | 
            -
            <td>The reference to the pointer you want to point to the text | 
| 741 | 
            -
            </td>
         | 
| 731 | 
            +
            <td>The reference to the pointer you want to point to the text.</td>
         | 
| 742 732 | 
             
            </tr>
         | 
| 743 733 | 
             
            </tbody>
         | 
| 744 734 | 
             
            </table></div>
         | 
| 745 735 | 
             
            </div>
         | 
| 746 736 | 
             
            <hr>
         | 
| 747 | 
            -
            <div class="refsect2" | 
| 737 | 
            +
            <div class="refsect2">
         | 
| 748 738 | 
             
            <a name="gtk-label-parse-uline"></a><h3>gtk_label_parse_uline ()</h3>
         | 
| 749 739 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>               gtk_label_parse_uline               (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 750 740 | 
             
                                                                     <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> *string</code></em>);</pre>
         | 
| 751 | 
            -
            <div class="warning"  | 
| 741 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 752 742 | 
             
            <h3 class="title">Warning</h3>
         | 
| 753 743 | 
             
            <p><code class="literal">gtk_label_parse_uline</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkLabel.html#gtk-label-set-use-underline" title="gtk_label_set_use_underline ()"><code class="function">gtk_label_set_use_underline()</code></a> instead.</p>
         | 
| 754 744 | 
             
            </div>
         | 
| @@ -764,24 +754,21 @@ probably only used within the GTK+ library itself for menu items and such. | |
| 764 754 | 
             
            <tbody>
         | 
| 765 755 | 
             
            <tr>
         | 
| 766 756 | 
             
            <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
         | 
| 767 | 
            -
            <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to affect | 
| 768 | 
            -
            </td>
         | 
| 757 | 
            +
            <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to affect.</td>
         | 
| 769 758 | 
             
            </tr>
         | 
| 770 759 | 
             
            <tr>
         | 
| 771 760 | 
             
            <td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
         | 
| 772 | 
            -
            <td>The string you want to parse for underlines | 
| 773 | 
            -
            </td>
         | 
| 761 | 
            +
            <td>The string you want to parse for underlines.</td>
         | 
| 774 762 | 
             
            </tr>
         | 
| 775 763 | 
             
            <tr>
         | 
| 776 764 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 777 | 
            -
            <td>The lowercase keyval of the last character underlined | 
| 778 | 
            -
            </td>
         | 
| 765 | 
            +
            <td>The lowercase keyval of the last character underlined.</td>
         | 
| 779 766 | 
             
            </tr>
         | 
| 780 767 | 
             
            </tbody>
         | 
| 781 768 | 
             
            </table></div>
         | 
| 782 769 | 
             
            </div>
         | 
| 783 770 | 
             
            <hr>
         | 
| 784 | 
            -
            <div class="refsect2" | 
| 771 | 
            +
            <div class="refsect2">
         | 
| 785 772 | 
             
            <a name="gtk-label-set-line-wrap"></a><h3>gtk_label_set_line_wrap ()</h3>
         | 
| 786 773 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_line_wrap             (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 787 774 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> wrap</code></em>);</pre>
         | 
| @@ -807,14 +794,13 @@ set the label's width using <a class="link" href="GtkWidget.html#gtk-widget-set- | |
| 807 794 | 
             
            </tr>
         | 
| 808 795 | 
             
            <tr>
         | 
| 809 796 | 
             
            <td><p><span class="term"><em class="parameter"><code>wrap</code></em> :</span></p></td>
         | 
| 810 | 
            -
            <td>the setting
         | 
| 811 | 
            -
            </td>
         | 
| 797 | 
            +
            <td>the setting</td>
         | 
| 812 798 | 
             
            </tr>
         | 
| 813 799 | 
             
            </tbody>
         | 
| 814 800 | 
             
            </table></div>
         | 
| 815 801 | 
             
            </div>
         | 
| 816 802 | 
             
            <hr>
         | 
| 817 | 
            -
            <div class="refsect2" | 
| 803 | 
            +
            <div class="refsect2">
         | 
| 818 804 | 
             
            <a name="gtk-label-set-line-wrap-mode"></a><h3>gtk_label_set_line_wrap_mode ()</h3>
         | 
| 819 805 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_line_wrap_mode        (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 820 806 | 
             
                                                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a> wrap_mode</code></em>);</pre>
         | 
| @@ -833,19 +819,18 @@ wrap on word boundaries. | |
| 833 819 | 
             
            </tr>
         | 
| 834 820 | 
             
            <tr>
         | 
| 835 821 | 
             
            <td><p><span class="term"><em class="parameter"><code>wrap_mode</code></em> :</span></p></td>
         | 
| 836 | 
            -
            <td>the line wrapping mode
         | 
| 837 | 
            -
            </td>
         | 
| 822 | 
            +
            <td>the line wrapping mode</td>
         | 
| 838 823 | 
             
            </tr>
         | 
| 839 824 | 
             
            </tbody>
         | 
| 840 825 | 
             
            </table></div>
         | 
| 841 826 | 
             
            <p class="since">Since 2.10</p>
         | 
| 842 827 | 
             
            </div>
         | 
| 843 828 | 
             
            <hr>
         | 
| 844 | 
            -
            <div class="refsect2" | 
| 829 | 
            +
            <div class="refsect2">
         | 
| 845 830 | 
             
            <a name="gtk-label-set"></a><h3>gtk_label_set</h3>
         | 
| 846 831 | 
             
            <pre class="programlisting">#define  gtk_label_set           gtk_label_set_text
         | 
| 847 832 | 
             
            </pre>
         | 
| 848 | 
            -
            <div class="warning"  | 
| 833 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 849 834 | 
             
            <h3 class="title">Warning</h3>
         | 
| 850 835 | 
             
            <p><code class="literal">gtk_label_set</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkLabel.html#gtk-label-set-text" title="gtk_label_set_text ()"><code class="function">gtk_label_set_text()</code></a> instead.</p>
         | 
| 851 836 | 
             
            </div>
         | 
| @@ -854,7 +839,7 @@ Sets the text within the GtkLabel widget. | |
| 854 839 | 
             
            </p>
         | 
| 855 840 | 
             
            </div>
         | 
| 856 841 | 
             
            <hr>
         | 
| 857 | 
            -
            <div class="refsect2" | 
| 842 | 
            +
            <div class="refsect2">
         | 
| 858 843 | 
             
            <a name="gtk-label-get-layout-offsets"></a><h3>gtk_label_get_layout_offsets ()</h3>
         | 
| 859 844 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_get_layout_offsets        (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 860 845 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
         | 
| @@ -879,19 +864,19 @@ and from pixels using <a href="/usr/share/gtk-doc/html/pango/pango-Glyph-Storage | |
| 879 864 | 
             
            </tr>
         | 
| 880 865 | 
             
            <tr>
         | 
| 881 866 | 
             
            <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
         | 
| 882 | 
            -
            <td> | 
| 867 | 
            +
            <td>location to store X offset of layout, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 883 868 | 
             
            </td>
         | 
| 884 869 | 
             
            </tr>
         | 
| 885 870 | 
             
            <tr>
         | 
| 886 871 | 
             
            <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
         | 
| 887 | 
            -
            <td> | 
| 872 | 
            +
            <td>location to store Y offset of layout, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 888 873 | 
             
            </td>
         | 
| 889 874 | 
             
            </tr>
         | 
| 890 875 | 
             
            </tbody>
         | 
| 891 876 | 
             
            </table></div>
         | 
| 892 877 | 
             
            </div>
         | 
| 893 878 | 
             
            <hr>
         | 
| 894 | 
            -
            <div class="refsect2" | 
| 879 | 
            +
            <div class="refsect2">
         | 
| 895 880 | 
             
            <a name="gtk-label-get-mnemonic-keyval"></a><h3>gtk_label_get_mnemonic_keyval ()</h3>
         | 
| 896 881 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>               gtk_label_get_mnemonic_keyval       (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 897 882 | 
             
            <p>
         | 
| @@ -909,14 +894,14 @@ mnemonic set up it returns <span class="type">GDK_VoidSymbol</span>. | |
| 909 894 | 
             
            </tr>
         | 
| 910 895 | 
             
            <tr>
         | 
| 911 896 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 912 | 
            -
            <td> | 
| 897 | 
            +
            <td>GDK keyval usable for accelerators, or <span class="type">GDK_VoidSymbol</span>
         | 
| 913 898 | 
             
            </td>
         | 
| 914 899 | 
             
            </tr>
         | 
| 915 900 | 
             
            </tbody>
         | 
| 916 901 | 
             
            </table></div>
         | 
| 917 902 | 
             
            </div>
         | 
| 918 903 | 
             
            <hr>
         | 
| 919 | 
            -
            <div class="refsect2" | 
| 904 | 
            +
            <div class="refsect2">
         | 
| 920 905 | 
             
            <a name="gtk-label-get-selectable"></a><h3>gtk_label_get_selectable ()</h3>
         | 
| 921 906 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_label_get_selectable            (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 922 907 | 
             
            <p>
         | 
| @@ -932,16 +917,16 @@ Gets the value set by <a class="link" href="GtkLabel.html#gtk-label-set-selectab | |
| 932 917 | 
             
            </tr>
         | 
| 933 918 | 
             
            <tr>
         | 
| 934 919 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 935 | 
            -
            <td> | 
| 936 | 
            -
            </td>
         | 
| 920 | 
            +
            <td>
         | 
| 921 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user can copy text from the label</td>
         | 
| 937 922 | 
             
            </tr>
         | 
| 938 923 | 
             
            </tbody>
         | 
| 939 924 | 
             
            </table></div>
         | 
| 940 925 | 
             
            </div>
         | 
| 941 926 | 
             
            <hr>
         | 
| 942 | 
            -
            <div class="refsect2" | 
| 927 | 
            +
            <div class="refsect2">
         | 
| 943 928 | 
             
            <a name="gtk-label-get-text"></a><h3>gtk_label_get_text ()</h3>
         | 
| 944 | 
            -
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a | 
| 929 | 
            +
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          gtk_label_get_text               (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 945 930 | 
             
            <p>
         | 
| 946 931 | 
             
            Fetches the text from a label widget, as displayed on the
         | 
| 947 932 | 
             
            screen. This does not include any embedded underlines
         | 
| @@ -957,17 +942,16 @@ indicating mnemonics or Pango markup. (See <a class="link" href="GtkLabel.html#g | |
| 957 942 | 
             
            </tr>
         | 
| 958 943 | 
             
            <tr>
         | 
| 959 944 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 960 | 
            -
            <td> | 
| 961 | 
            -
             | 
| 962 | 
            -
            </td>
         | 
| 945 | 
            +
            <td>the text in the label widget. This is the internal
         | 
| 946 | 
            +
            string used by the label, and must not be modified.</td>
         | 
| 963 947 | 
             
            </tr>
         | 
| 964 948 | 
             
            </tbody>
         | 
| 965 949 | 
             
            </table></div>
         | 
| 966 950 | 
             
            </div>
         | 
| 967 951 | 
             
            <hr>
         | 
| 968 | 
            -
            <div class="refsect2" | 
| 952 | 
            +
            <div class="refsect2">
         | 
| 969 953 | 
             
            <a name="gtk-label-new-with-mnemonic"></a><h3>gtk_label_new_with_mnemonic ()</h3>
         | 
| 970 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 954 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *             gtk_label_new_with_mnemonic     (<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> *str</code></em>);</pre>
         | 
| 971 955 | 
             
            <p>
         | 
| 972 956 | 
             
            Creates a new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, containing the text in <em class="parameter"><code>str</code></em>.
         | 
| 973 957 | 
             
            </p>
         | 
| @@ -992,19 +976,18 @@ and be activated by the mnemonic. | |
| 992 976 | 
             
            <tr>
         | 
| 993 977 | 
             
            <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
         | 
| 994 978 | 
             
            <td>The text of the label, with an underscore in front of the
         | 
| 995 | 
            -
             | 
| 996 | 
            -
            </td>
         | 
| 979 | 
            +
            mnemonic character</td>
         | 
| 997 980 | 
             
            </tr>
         | 
| 998 981 | 
             
            <tr>
         | 
| 999 982 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1000 | 
            -
            <td> | 
| 983 | 
            +
            <td>the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
         | 
| 1001 984 | 
             
            </td>
         | 
| 1002 985 | 
             
            </tr>
         | 
| 1003 986 | 
             
            </tbody>
         | 
| 1004 987 | 
             
            </table></div>
         | 
| 1005 988 | 
             
            </div>
         | 
| 1006 989 | 
             
            <hr>
         | 
| 1007 | 
            -
            <div class="refsect2" | 
| 990 | 
            +
            <div class="refsect2">
         | 
| 1008 991 | 
             
            <a name="gtk-label-select-region"></a><h3>gtk_label_select_region ()</h3>
         | 
| 1009 992 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_select_region             (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1010 993 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> start_offset</code></em>,
         | 
| @@ -1025,19 +1008,17 @@ this function has no effect. If <em class="parameter"><code>start_offset</code>< | |
| 1025 1008 | 
             
            </tr>
         | 
| 1026 1009 | 
             
            <tr>
         | 
| 1027 1010 | 
             
            <td><p><span class="term"><em class="parameter"><code>start_offset</code></em> :</span></p></td>
         | 
| 1028 | 
            -
            <td>start offset (in characters not bytes)
         | 
| 1029 | 
            -
            </td>
         | 
| 1011 | 
            +
            <td>start offset (in characters not bytes)</td>
         | 
| 1030 1012 | 
             
            </tr>
         | 
| 1031 1013 | 
             
            <tr>
         | 
| 1032 1014 | 
             
            <td><p><span class="term"><em class="parameter"><code>end_offset</code></em> :</span></p></td>
         | 
| 1033 | 
            -
            <td>end offset (in characters not bytes)
         | 
| 1034 | 
            -
            </td>
         | 
| 1015 | 
            +
            <td>end offset (in characters not bytes)</td>
         | 
| 1035 1016 | 
             
            </tr>
         | 
| 1036 1017 | 
             
            </tbody>
         | 
| 1037 1018 | 
             
            </table></div>
         | 
| 1038 1019 | 
             
            </div>
         | 
| 1039 1020 | 
             
            <hr>
         | 
| 1040 | 
            -
            <div class="refsect2" | 
| 1021 | 
            +
            <div class="refsect2">
         | 
| 1041 1022 | 
             
            <a name="gtk-label-set-mnemonic-widget"></a><h3>gtk_label_set_mnemonic_widget ()</h3>
         | 
| 1042 1023 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_mnemonic_widget       (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1043 1024 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
         | 
| @@ -1068,14 +1049,14 @@ and toggle focus between the colliding widgets otherwise. | |
| 1068 1049 | 
             
            </tr>
         | 
| 1069 1050 | 
             
            <tr>
         | 
| 1070 1051 | 
             
            <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
         | 
| 1071 | 
            -
            <td> | 
| 1052 | 
            +
            <td>the target <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1072 1053 | 
             
            </td>
         | 
| 1073 1054 | 
             
            </tr>
         | 
| 1074 1055 | 
             
            </tbody>
         | 
| 1075 1056 | 
             
            </table></div>
         | 
| 1076 1057 | 
             
            </div>
         | 
| 1077 1058 | 
             
            <hr>
         | 
| 1078 | 
            -
            <div class="refsect2" | 
| 1059 | 
            +
            <div class="refsect2">
         | 
| 1079 1060 | 
             
            <a name="gtk-label-set-selectable"></a><h3>gtk_label_set_selectable ()</h3>
         | 
| 1080 1061 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_selectable            (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1081 1062 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
         | 
| @@ -1094,14 +1075,13 @@ copy-and-paste. | |
| 1094 1075 | 
             
            <tr>
         | 
| 1095 1076 | 
             
            <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
         | 
| 1096 1077 | 
             
            <td>
         | 
| 1097 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to allow selecting text in the label
         | 
| 1098 | 
            -
            </td>
         | 
| 1078 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to allow selecting text in the label</td>
         | 
| 1099 1079 | 
             
            </tr>
         | 
| 1100 1080 | 
             
            </tbody>
         | 
| 1101 1081 | 
             
            </table></div>
         | 
| 1102 1082 | 
             
            </div>
         | 
| 1103 1083 | 
             
            <hr>
         | 
| 1104 | 
            -
            <div class="refsect2" | 
| 1084 | 
            +
            <div class="refsect2">
         | 
| 1105 1085 | 
             
            <a name="gtk-label-set-text-with-mnemonic"></a><h3>gtk_label_set_text_with_mnemonic ()</h3>
         | 
| 1106 1086 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_text_with_mnemonic    (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1107 1087 | 
             
                                                                     <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> *str</code></em>);</pre>
         | 
| @@ -1122,14 +1102,13 @@ automatically, or explicitly using <a class="link" href="GtkLabel.html#gtk-label | |
| 1122 1102 | 
             
            </tr>
         | 
| 1123 1103 | 
             
            <tr>
         | 
| 1124 1104 | 
             
            <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
         | 
| 1125 | 
            -
            <td>a string
         | 
| 1126 | 
            -
            </td>
         | 
| 1105 | 
            +
            <td>a string</td>
         | 
| 1127 1106 | 
             
            </tr>
         | 
| 1128 1107 | 
             
            </tbody>
         | 
| 1129 1108 | 
             
            </table></div>
         | 
| 1130 1109 | 
             
            </div>
         | 
| 1131 1110 | 
             
            <hr>
         | 
| 1132 | 
            -
            <div class="refsect2" | 
| 1111 | 
            +
            <div class="refsect2">
         | 
| 1133 1112 | 
             
            <a name="gtk-label-get-attributes"></a><h3>gtk_label_get_attributes ()</h3>
         | 
| 1134 1113 | 
             
            <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *     gtk_label_get_attributes            (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1135 1114 | 
             
            <p>
         | 
| @@ -1150,14 +1129,15 @@ pango_layout_get_attribute (gtk_label_get_layout (label)). | |
| 1150 1129 | 
             
            </tr>
         | 
| 1151 1130 | 
             
            <tr>
         | 
| 1152 1131 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1153 | 
            -
            <td> | 
| 1132 | 
            +
            <td>the attribute list, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
         | 
| 1133 | 
            +
            if none was set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 1154 1134 | 
             
            </td>
         | 
| 1155 1135 | 
             
            </tr>
         | 
| 1156 1136 | 
             
            </tbody>
         | 
| 1157 1137 | 
             
            </table></div>
         | 
| 1158 1138 | 
             
            </div>
         | 
| 1159 1139 | 
             
            <hr>
         | 
| 1160 | 
            -
            <div class="refsect2" | 
| 1140 | 
            +
            <div class="refsect2">
         | 
| 1161 1141 | 
             
            <a name="gtk-label-get-justify"></a><h3>gtk_label_get_justify ()</h3>
         | 
| 1162 1142 | 
             
            <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a>    gtk_label_get_justify               (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1163 1143 | 
             
            <p>
         | 
| @@ -1173,14 +1153,13 @@ Returns the justification of the label. See <a class="link" href="GtkLabel.html# | |
| 1173 1153 | 
             
            </tr>
         | 
| 1174 1154 | 
             
            <tr>
         | 
| 1175 1155 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1176 | 
            -
            <td | 
| 1177 | 
            -
            </td>
         | 
| 1156 | 
            +
            <td><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a></td>
         | 
| 1178 1157 | 
             
            </tr>
         | 
| 1179 1158 | 
             
            </tbody>
         | 
| 1180 1159 | 
             
            </table></div>
         | 
| 1181 1160 | 
             
            </div>
         | 
| 1182 1161 | 
             
            <hr>
         | 
| 1183 | 
            -
            <div class="refsect2" | 
| 1162 | 
            +
            <div class="refsect2">
         | 
| 1184 1163 | 
             
            <a name="gtk-label-get-ellipsize"></a><h3>gtk_label_get_ellipsize ()</h3>
         | 
| 1185 1164 | 
             
            <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="returnvalue">PangoEllipsizeMode</span></a>  gtk_label_get_ellipsize             (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1186 1165 | 
             
            <p>
         | 
| @@ -1196,16 +1175,14 @@ Returns the ellipsizing position of the label. See <a class="link" href="GtkLabe | |
| 1196 1175 | 
             
            </tr>
         | 
| 1197 1176 | 
             
            <tr>
         | 
| 1198 1177 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1199 | 
            -
            <td | 
| 1200 | 
            -
             | 
| 1201 | 
            -
            </td>
         | 
| 1178 | 
            +
            <td><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a></td>
         | 
| 1202 1179 | 
             
            </tr>
         | 
| 1203 1180 | 
             
            </tbody>
         | 
| 1204 1181 | 
             
            </table></div>
         | 
| 1205 1182 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1206 1183 | 
             
            </div>
         | 
| 1207 1184 | 
             
            <hr>
         | 
| 1208 | 
            -
            <div class="refsect2" | 
| 1185 | 
            +
            <div class="refsect2">
         | 
| 1209 1186 | 
             
            <a name="gtk-label-get-width-chars"></a><h3>gtk_label_get_width_chars ()</h3>
         | 
| 1210 1187 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                gtk_label_get_width_chars           (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1211 1188 | 
             
            <p>
         | 
| @@ -1222,16 +1199,14 @@ Retrieves the desired width of <em class="parameter"><code>label</code></em>, in | |
| 1222 1199 | 
             
            </tr>
         | 
| 1223 1200 | 
             
            <tr>
         | 
| 1224 1201 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1225 | 
            -
            <td> | 
| 1226 | 
            -
             | 
| 1227 | 
            -
            </td>
         | 
| 1202 | 
            +
            <td>the width of the label in characters.</td>
         | 
| 1228 1203 | 
             
            </tr>
         | 
| 1229 1204 | 
             
            </tbody>
         | 
| 1230 1205 | 
             
            </table></div>
         | 
| 1231 1206 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1232 1207 | 
             
            </div>
         | 
| 1233 1208 | 
             
            <hr>
         | 
| 1234 | 
            -
            <div class="refsect2" | 
| 1209 | 
            +
            <div class="refsect2">
         | 
| 1235 1210 | 
             
            <a name="gtk-label-get-max-width-chars"></a><h3>gtk_label_get_max_width_chars ()</h3>
         | 
| 1236 1211 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                gtk_label_get_max_width_chars       (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1237 1212 | 
             
            <p>
         | 
| @@ -1248,18 +1223,16 @@ Retrieves the desired maximum width of <em class="parameter"><code>label</code>< | |
| 1248 1223 | 
             
            </tr>
         | 
| 1249 1224 | 
             
            <tr>
         | 
| 1250 1225 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1251 | 
            -
            <td> | 
| 1252 | 
            -
             | 
| 1253 | 
            -
            </td>
         | 
| 1226 | 
            +
            <td>the maximum width of the label in characters.</td>
         | 
| 1254 1227 | 
             
            </tr>
         | 
| 1255 1228 | 
             
            </tbody>
         | 
| 1256 1229 | 
             
            </table></div>
         | 
| 1257 1230 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1258 1231 | 
             
            </div>
         | 
| 1259 1232 | 
             
            <hr>
         | 
| 1260 | 
            -
            <div class="refsect2" | 
| 1233 | 
            +
            <div class="refsect2">
         | 
| 1261 1234 | 
             
            <a name="gtk-label-get-label"></a><h3>gtk_label_get_label ()</h3>
         | 
| 1262 | 
            -
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 1235 | 
            +
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *          gtk_label_get_label              (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1263 1236 | 
             
            <p>
         | 
| 1264 1237 | 
             
            Fetches the text from a label widget including any embedded
         | 
| 1265 1238 | 
             
            underlines indicating mnemonics and Pango markup. (See
         | 
| @@ -1275,15 +1248,14 @@ underlines indicating mnemonics and Pango markup. (See | |
| 1275 1248 | 
             
            </tr>
         | 
| 1276 1249 | 
             
            <tr>
         | 
| 1277 1250 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1278 | 
            -
            <td> | 
| 1279 | 
            -
             | 
| 1280 | 
            -
            </td>
         | 
| 1251 | 
            +
            <td>the text of the label widget. This string is
         | 
| 1252 | 
            +
            owned by the widget and must not be modified or freed.</td>
         | 
| 1281 1253 | 
             
            </tr>
         | 
| 1282 1254 | 
             
            </tbody>
         | 
| 1283 1255 | 
             
            </table></div>
         | 
| 1284 1256 | 
             
            </div>
         | 
| 1285 1257 | 
             
            <hr>
         | 
| 1286 | 
            -
            <div class="refsect2" | 
| 1258 | 
            +
            <div class="refsect2">
         | 
| 1287 1259 | 
             
            <a name="gtk-label-get-layout"></a><h3>gtk_label_get_layout ()</h3>
         | 
| 1288 1260 | 
             
            <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="returnvalue">PangoLayout</span></a> *       gtk_label_get_layout                (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1289 1261 | 
             
            <p>
         | 
| @@ -1303,14 +1275,14 @@ freed by the caller. | |
| 1303 1275 | 
             
            </tr>
         | 
| 1304 1276 | 
             
            <tr>
         | 
| 1305 1277 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1306 | 
            -
            <td> | 
| 1278 | 
            +
            <td>the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> for this label. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 1307 1279 | 
             
            </td>
         | 
| 1308 1280 | 
             
            </tr>
         | 
| 1309 1281 | 
             
            </tbody>
         | 
| 1310 1282 | 
             
            </table></div>
         | 
| 1311 1283 | 
             
            </div>
         | 
| 1312 1284 | 
             
            <hr>
         | 
| 1313 | 
            -
            <div class="refsect2" | 
| 1285 | 
            +
            <div class="refsect2">
         | 
| 1314 1286 | 
             
            <a name="gtk-label-get-line-wrap"></a><h3>gtk_label_get_line_wrap ()</h3>
         | 
| 1315 1287 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_label_get_line_wrap             (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1316 1288 | 
             
            <p>
         | 
| @@ -1327,14 +1299,14 @@ See <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_labe | |
| 1327 1299 | 
             
            </tr>
         | 
| 1328 1300 | 
             
            <tr>
         | 
| 1329 1301 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1330 | 
            -
            <td> | 
| 1331 | 
            -
            </td>
         | 
| 1302 | 
            +
            <td>
         | 
| 1303 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the lines of the label are automatically wrapped.</td>
         | 
| 1332 1304 | 
             
            </tr>
         | 
| 1333 1305 | 
             
            </tbody>
         | 
| 1334 1306 | 
             
            </table></div>
         | 
| 1335 1307 | 
             
            </div>
         | 
| 1336 1308 | 
             
            <hr>
         | 
| 1337 | 
            -
            <div class="refsect2" | 
| 1309 | 
            +
            <div class="refsect2">
         | 
| 1338 1310 | 
             
            <a name="gtk-label-get-line-wrap-mode"></a><h3>gtk_label_get_line_wrap_mode ()</h3>
         | 
| 1339 1311 | 
             
            <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="returnvalue">PangoWrapMode</span></a>       gtk_label_get_line_wrap_mode        (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1340 1312 | 
             
            <p>
         | 
| @@ -1350,16 +1322,15 @@ Returns line wrap mode used by the label. See <a class="link" href="GtkLabel.htm | |
| 1350 1322 | 
             
            </tr>
         | 
| 1351 1323 | 
             
            <tr>
         | 
| 1352 1324 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1353 | 
            -
            <td> | 
| 1354 | 
            -
             | 
| 1355 | 
            -
            </td>
         | 
| 1325 | 
            +
            <td>
         | 
| 1326 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the lines of the label are automatically wrapped.</td>
         | 
| 1356 1327 | 
             
            </tr>
         | 
| 1357 1328 | 
             
            </tbody>
         | 
| 1358 1329 | 
             
            </table></div>
         | 
| 1359 1330 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1360 1331 | 
             
            </div>
         | 
| 1361 1332 | 
             
            <hr>
         | 
| 1362 | 
            -
            <div class="refsect2" | 
| 1333 | 
            +
            <div class="refsect2">
         | 
| 1363 1334 | 
             
            <a name="gtk-label-get-mnemonic-widget"></a><h3>gtk_label_get_mnemonic_widget ()</h3>
         | 
| 1364 1335 | 
             
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_label_get_mnemonic_widget       (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1365 1336 | 
             
            <p>
         | 
| @@ -1376,15 +1347,15 @@ label. See <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" ti | |
| 1376 1347 | 
             
            </tr>
         | 
| 1377 1348 | 
             
            <tr>
         | 
| 1378 1349 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1379 | 
            -
            <td> | 
| 1380 | 
            -
             | 
| 1350 | 
            +
            <td>the target of the label's mnemonic,
         | 
| 1351 | 
            +
            or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none has been set and the default algorithm will be used. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 1381 1352 | 
             
            </td>
         | 
| 1382 1353 | 
             
            </tr>
         | 
| 1383 1354 | 
             
            </tbody>
         | 
| 1384 1355 | 
             
            </table></div>
         | 
| 1385 1356 | 
             
            </div>
         | 
| 1386 1357 | 
             
            <hr>
         | 
| 1387 | 
            -
            <div class="refsect2" | 
| 1358 | 
            +
            <div class="refsect2">
         | 
| 1388 1359 | 
             
            <a name="gtk-label-get-selection-bounds"></a><h3>gtk_label_get_selection_bounds ()</h3>
         | 
| 1389 1360 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_label_get_selection_bounds      (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1390 1361 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *start</code></em>,
         | 
| @@ -1403,24 +1374,24 @@ if there's a selection. | |
| 1403 1374 | 
             
            </tr>
         | 
| 1404 1375 | 
             
            <tr>
         | 
| 1405 1376 | 
             
            <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
         | 
| 1406 | 
            -
            <td>return location for start of selection, as a character offset
         | 
| 1377 | 
            +
            <td>return location for start of selection, as a character offset. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 1407 1378 | 
             
            </td>
         | 
| 1408 1379 | 
             
            </tr>
         | 
| 1409 1380 | 
             
            <tr>
         | 
| 1410 1381 | 
             
            <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
         | 
| 1411 | 
            -
            <td>return location for end of selection, as a character offset
         | 
| 1382 | 
            +
            <td>return location for end of selection, as a character offset. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 1412 1383 | 
             
            </td>
         | 
| 1413 1384 | 
             
            </tr>
         | 
| 1414 1385 | 
             
            <tr>
         | 
| 1415 1386 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1416 | 
            -
            <td> | 
| 1417 | 
            -
            </td>
         | 
| 1387 | 
            +
            <td>
         | 
| 1388 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if selection is non-empty</td>
         | 
| 1418 1389 | 
             
            </tr>
         | 
| 1419 1390 | 
             
            </tbody>
         | 
| 1420 1391 | 
             
            </table></div>
         | 
| 1421 1392 | 
             
            </div>
         | 
| 1422 1393 | 
             
            <hr>
         | 
| 1423 | 
            -
            <div class="refsect2" | 
| 1394 | 
            +
            <div class="refsect2">
         | 
| 1424 1395 | 
             
            <a name="gtk-label-get-use-markup"></a><h3>gtk_label_get_use_markup ()</h3>
         | 
| 1425 1396 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_label_get_use_markup            (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1426 1397 | 
             
            <p>
         | 
| @@ -1438,14 +1409,14 @@ language</GTKDOCLINK>. See <a class="link" href="GtkLabel.html#gtk-label-set-use | |
| 1438 1409 | 
             
            </tr>
         | 
| 1439 1410 | 
             
            <tr>
         | 
| 1440 1411 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1441 | 
            -
            <td> | 
| 1442 | 
            -
            </td>
         | 
| 1412 | 
            +
            <td>
         | 
| 1413 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label's text will be parsed for markup.</td>
         | 
| 1443 1414 | 
             
            </tr>
         | 
| 1444 1415 | 
             
            </tbody>
         | 
| 1445 1416 | 
             
            </table></div>
         | 
| 1446 1417 | 
             
            </div>
         | 
| 1447 1418 | 
             
            <hr>
         | 
| 1448 | 
            -
            <div class="refsect2" | 
| 1419 | 
            +
            <div class="refsect2">
         | 
| 1449 1420 | 
             
            <a name="gtk-label-get-use-underline"></a><h3>gtk_label_get_use_underline ()</h3>
         | 
| 1450 1421 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_label_get_use_underline         (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1451 1422 | 
             
            <p>
         | 
| @@ -1462,15 +1433,15 @@ mnemonic. See <a class="link" href="GtkLabel.html#gtk-label-set-use-underline" t | |
| 1462 1433 | 
             
            </tr>
         | 
| 1463 1434 | 
             
            <tr>
         | 
| 1464 1435 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1465 | 
            -
            <td> | 
| 1466 | 
            -
             | 
| 1467 | 
            -
             | 
| 1436 | 
            +
            <td>
         | 
| 1437 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> whether an embedded underline in the label indicates
         | 
| 1438 | 
            +
            the mnemonic accelerator keys.</td>
         | 
| 1468 1439 | 
             
            </tr>
         | 
| 1469 1440 | 
             
            </tbody>
         | 
| 1470 1441 | 
             
            </table></div>
         | 
| 1471 1442 | 
             
            </div>
         | 
| 1472 1443 | 
             
            <hr>
         | 
| 1473 | 
            -
            <div class="refsect2" | 
| 1444 | 
            +
            <div class="refsect2">
         | 
| 1474 1445 | 
             
            <a name="gtk-label-get-single-line-mode"></a><h3>gtk_label_get_single_line_mode ()</h3>
         | 
| 1475 1446 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_label_get_single_line_mode      (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1476 1447 | 
             
            <p>
         | 
| @@ -1486,16 +1457,15 @@ Returns whether the label is in single line mode. | |
| 1486 1457 | 
             
            </tr>
         | 
| 1487 1458 | 
             
            <tr>
         | 
| 1488 1459 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1489 | 
            -
            <td> | 
| 1490 | 
            -
             | 
| 1491 | 
            -
            </td>
         | 
| 1460 | 
            +
            <td>
         | 
| 1461 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the label is in single line mode.</td>
         | 
| 1492 1462 | 
             
            </tr>
         | 
| 1493 1463 | 
             
            </tbody>
         | 
| 1494 1464 | 
             
            </table></div>
         | 
| 1495 1465 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1496 1466 | 
             
            </div>
         | 
| 1497 1467 | 
             
            <hr>
         | 
| 1498 | 
            -
            <div class="refsect2" | 
| 1468 | 
            +
            <div class="refsect2">
         | 
| 1499 1469 | 
             
            <a name="gtk-label-get-angle"></a><h3>gtk_label_get_angle ()</h3>
         | 
| 1500 1470 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>             gtk_label_get_angle                 (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1501 1471 | 
             
            <p>
         | 
| @@ -1512,16 +1482,14 @@ Gets the angle of rotation for the label. See | |
| 1512 1482 | 
             
            </tr>
         | 
| 1513 1483 | 
             
            <tr>
         | 
| 1514 1484 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1515 | 
            -
            <td> | 
| 1516 | 
            -
             | 
| 1517 | 
            -
            </td>
         | 
| 1485 | 
            +
            <td>the angle of rotation for the label</td>
         | 
| 1518 1486 | 
             
            </tr>
         | 
| 1519 1487 | 
             
            </tbody>
         | 
| 1520 1488 | 
             
            </table></div>
         | 
| 1521 1489 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1522 1490 | 
             
            </div>
         | 
| 1523 1491 | 
             
            <hr>
         | 
| 1524 | 
            -
            <div class="refsect2" | 
| 1492 | 
            +
            <div class="refsect2">
         | 
| 1525 1493 | 
             
            <a name="gtk-label-set-label"></a><h3>gtk_label_set_label ()</h3>
         | 
| 1526 1494 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_label                 (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1527 1495 | 
             
                                                                     <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> *str</code></em>);</pre>
         | 
| @@ -1541,14 +1509,13 @@ on the values of the <a class="link" href="GtkLabel.html#GtkLabel--use-underline | |
| 1541 1509 | 
             
            </tr>
         | 
| 1542 1510 | 
             
            <tr>
         | 
| 1543 1511 | 
             
            <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
         | 
| 1544 | 
            -
            <td>the new text to set for the label
         | 
| 1545 | 
            -
            </td>
         | 
| 1512 | 
            +
            <td>the new text to set for the label</td>
         | 
| 1546 1513 | 
             
            </tr>
         | 
| 1547 1514 | 
             
            </tbody>
         | 
| 1548 1515 | 
             
            </table></div>
         | 
| 1549 1516 | 
             
            </div>
         | 
| 1550 1517 | 
             
            <hr>
         | 
| 1551 | 
            -
            <div class="refsect2" | 
| 1518 | 
            +
            <div class="refsect2">
         | 
| 1552 1519 | 
             
            <a name="gtk-label-set-use-markup"></a><h3>gtk_label_set_use_markup ()</h3>
         | 
| 1553 1520 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_use_markup            (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1554 1521 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
         | 
| @@ -1567,14 +1534,13 @@ language</GTKDOCLINK>. See <a class="link" href="GtkLabel.html#gtk-label-set-mar | |
| 1567 1534 | 
             
            <tr>
         | 
| 1568 1535 | 
             
            <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
         | 
| 1569 1536 | 
             
            <td>
         | 
| 1570 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label's text should be parsed for markup | 
| 1571 | 
            -
            </td>
         | 
| 1537 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label's text should be parsed for markup.</td>
         | 
| 1572 1538 | 
             
            </tr>
         | 
| 1573 1539 | 
             
            </tbody>
         | 
| 1574 1540 | 
             
            </table></div>
         | 
| 1575 1541 | 
             
            </div>
         | 
| 1576 1542 | 
             
            <hr>
         | 
| 1577 | 
            -
            <div class="refsect2" | 
| 1543 | 
            +
            <div class="refsect2">
         | 
| 1578 1544 | 
             
            <a name="gtk-label-set-use-underline"></a><h3>gtk_label_set_use_underline ()</h3>
         | 
| 1579 1545 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_use_underline         (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1580 1546 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
         | 
| @@ -1593,14 +1559,13 @@ used for the mnemonic accelerator key. | |
| 1593 1559 | 
             
            <tr>
         | 
| 1594 1560 | 
             
            <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
         | 
| 1595 1561 | 
             
            <td>
         | 
| 1596 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if underlines in the text indicate mnemonics
         | 
| 1597 | 
            -
            </td>
         | 
| 1562 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if underlines in the text indicate mnemonics</td>
         | 
| 1598 1563 | 
             
            </tr>
         | 
| 1599 1564 | 
             
            </tbody>
         | 
| 1600 1565 | 
             
            </table></div>
         | 
| 1601 1566 | 
             
            </div>
         | 
| 1602 1567 | 
             
            <hr>
         | 
| 1603 | 
            -
            <div class="refsect2" | 
| 1568 | 
            +
            <div class="refsect2">
         | 
| 1604 1569 | 
             
            <a name="gtk-label-set-single-line-mode"></a><h3>gtk_label_set_single_line_mode ()</h3>
         | 
| 1605 1570 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_single_line_mode      (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1606 1571 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> single_line_mode</code></em>);</pre>
         | 
| @@ -1618,15 +1583,14 @@ Sets whether the label is in single line mode. | |
| 1618 1583 | 
             
            <tr>
         | 
| 1619 1584 | 
             
            <td><p><span class="term"><em class="parameter"><code>single_line_mode</code></em> :</span></p></td>
         | 
| 1620 1585 | 
             
            <td>
         | 
| 1621 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label should be in single line mode
         | 
| 1622 | 
            -
            </td>
         | 
| 1586 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label should be in single line mode</td>
         | 
| 1623 1587 | 
             
            </tr>
         | 
| 1624 1588 | 
             
            </tbody>
         | 
| 1625 1589 | 
             
            </table></div>
         | 
| 1626 1590 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1627 1591 | 
             
            </div>
         | 
| 1628 1592 | 
             
            <hr>
         | 
| 1629 | 
            -
            <div class="refsect2" | 
| 1593 | 
            +
            <div class="refsect2">
         | 
| 1630 1594 | 
             
            <a name="gtk-label-set-angle"></a><h3>gtk_label_set_angle ()</h3>
         | 
| 1631 1595 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_angle                 (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1632 1596 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> angle</code></em>);</pre>
         | 
| @@ -1647,15 +1611,14 @@ wrapped, or ellipsized. | |
| 1647 1611 | 
             
            <tr>
         | 
| 1648 1612 | 
             
            <td><p><span class="term"><em class="parameter"><code>angle</code></em> :</span></p></td>
         | 
| 1649 1613 | 
             
            <td>the angle that the baseline of the label makes with
         | 
| 1650 | 
            -
             | 
| 1651 | 
            -
            </td>
         | 
| 1614 | 
            +
            the horizontal, in degrees, measured counterclockwise</td>
         | 
| 1652 1615 | 
             
            </tr>
         | 
| 1653 1616 | 
             
            </tbody>
         | 
| 1654 1617 | 
             
            </table></div>
         | 
| 1655 1618 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1656 1619 | 
             
            </div>
         | 
| 1657 1620 | 
             
            <hr>
         | 
| 1658 | 
            -
            <div class="refsect2" | 
| 1621 | 
            +
            <div class="refsect2">
         | 
| 1659 1622 | 
             
            <a name="gtk-label-get-current-uri"></a><h3>gtk_label_get_current_uri ()</h3>
         | 
| 1660 1623 | 
             
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       gtk_label_get_current_uri           (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1661 1624 | 
             
            <p>
         | 
| @@ -1678,17 +1641,15 @@ or for use in a <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" ti | |
| 1678 1641 | 
             
            </tr>
         | 
| 1679 1642 | 
             
            <tr>
         | 
| 1680 1643 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1681 | 
            -
            <td> | 
| 1682 | 
            -
             | 
| 1683 | 
            -
             | 
| 1684 | 
            -
            </td>
         | 
| 1644 | 
            +
            <td>the currently active URI. The string is owned by GTK+ and must
         | 
| 1645 | 
            +
            not be freed or modified.</td>
         | 
| 1685 1646 | 
             
            </tr>
         | 
| 1686 1647 | 
             
            </tbody>
         | 
| 1687 1648 | 
             
            </table></div>
         | 
| 1688 1649 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1689 1650 | 
             
            </div>
         | 
| 1690 1651 | 
             
            <hr>
         | 
| 1691 | 
            -
            <div class="refsect2" | 
| 1652 | 
            +
            <div class="refsect2">
         | 
| 1692 1653 | 
             
            <a name="gtk-label-set-track-visited-links"></a><h3>gtk_label_set_track_visited_links ()</h3>
         | 
| 1693 1654 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_label_set_track_visited_links   (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
         | 
| 1694 1655 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> track_links</code></em>);</pre>
         | 
| @@ -1707,15 +1668,14 @@ links (and use a different color for them). | |
| 1707 1668 | 
             
            <tr>
         | 
| 1708 1669 | 
             
            <td><p><span class="term"><em class="parameter"><code>track_links</code></em> :</span></p></td>
         | 
| 1709 1670 | 
             
            <td>
         | 
| 1710 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to track visited links
         | 
| 1711 | 
            -
            </td>
         | 
| 1671 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to track visited links</td>
         | 
| 1712 1672 | 
             
            </tr>
         | 
| 1713 1673 | 
             
            </tbody>
         | 
| 1714 1674 | 
             
            </table></div>
         | 
| 1715 1675 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1716 1676 | 
             
            </div>
         | 
| 1717 1677 | 
             
            <hr>
         | 
| 1718 | 
            -
            <div class="refsect2" | 
| 1678 | 
            +
            <div class="refsect2">
         | 
| 1719 1679 | 
             
            <a name="gtk-label-get-track-visited-links"></a><h3>gtk_label_get_track_visited_links ()</h3>
         | 
| 1720 1680 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_label_get_track_visited_links   (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
         | 
| 1721 1681 | 
             
            <p>
         | 
| @@ -1732,18 +1692,17 @@ of clicked links. | |
| 1732 1692 | 
             
            </tr>
         | 
| 1733 1693 | 
             
            <tr>
         | 
| 1734 1694 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1735 | 
            -
            <td> | 
| 1736 | 
            -
             | 
| 1737 | 
            -
            </td>
         | 
| 1695 | 
            +
            <td>
         | 
| 1696 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if clicked links are remembered</td>
         | 
| 1738 1697 | 
             
            </tr>
         | 
| 1739 1698 | 
             
            </tbody>
         | 
| 1740 1699 | 
             
            </table></div>
         | 
| 1741 1700 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1742 1701 | 
             
            </div>
         | 
| 1743 1702 | 
             
            </div>
         | 
| 1744 | 
            -
            <div class="refsect1" | 
| 1703 | 
            +
            <div class="refsect1">
         | 
| 1745 1704 | 
             
            <a name="GtkLabel.property-details"></a><h2>Property Details</h2>
         | 
| 1746 | 
            -
            <div class="refsect2" | 
| 1705 | 
            +
            <div class="refsect2">
         | 
| 1747 1706 | 
             
            <a name="GtkLabel--angle"></a><h3>The <code class="literal">"angle"</code> property</h3>
         | 
| 1748 1707 | 
             
            <pre class="programlisting">  "angle"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a>               : Read / Write</pre>
         | 
| 1749 1708 | 
             
            <p>
         | 
| @@ -1757,13 +1716,13 @@ if the label is selectable, wrapped, or ellipsized. | |
| 1757 1716 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1758 1717 | 
             
            </div>
         | 
| 1759 1718 | 
             
            <hr>
         | 
| 1760 | 
            -
            <div class="refsect2" | 
| 1719 | 
            +
            <div class="refsect2">
         | 
| 1761 1720 | 
             
            <a name="GtkLabel--attributes"></a><h3>The <code class="literal">"attributes"</code> property</h3>
         | 
| 1762 1721 | 
             
            <pre class="programlisting">  "attributes"               <a href="/usr/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a>*        : Read / Write</pre>
         | 
| 1763 1722 | 
             
            <p>A list of style attributes to apply to the text of the label.</p>
         | 
| 1764 1723 | 
             
            </div>
         | 
| 1765 1724 | 
             
            <hr>
         | 
| 1766 | 
            -
            <div class="refsect2" | 
| 1725 | 
            +
            <div class="refsect2">
         | 
| 1767 1726 | 
             
            <a name="GtkLabel--cursor-position"></a><h3>The <code class="literal">"cursor-position"</code> property</h3>
         | 
| 1768 1727 | 
             
            <pre class="programlisting">  "cursor-position"          <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read</pre>
         | 
| 1769 1728 | 
             
            <p>The current position of the insertion cursor in chars.</p>
         | 
| @@ -1771,7 +1730,7 @@ if the label is selectable, wrapped, or ellipsized. | |
| 1771 1730 | 
             
            <p>Default value: 0</p>
         | 
| 1772 1731 | 
             
            </div>
         | 
| 1773 1732 | 
             
            <hr>
         | 
| 1774 | 
            -
            <div class="refsect2" | 
| 1733 | 
            +
            <div class="refsect2">
         | 
| 1775 1734 | 
             
            <a name="GtkLabel--ellipsize"></a><h3>The <code class="literal">"ellipsize"</code> property</h3>
         | 
| 1776 1735 | 
             
            <pre class="programlisting">  "ellipsize"                <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a>    : Read / Write</pre>
         | 
| 1777 1736 | 
             
            <p>
         | 
| @@ -1792,21 +1751,21 @@ to set a label's width are <a class="link" href="GtkWidget.html#gtk-widget-set-s | |
| 1792 1751 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1793 1752 | 
             
            </div>
         | 
| 1794 1753 | 
             
            <hr>
         | 
| 1795 | 
            -
            <div class="refsect2" | 
| 1754 | 
            +
            <div class="refsect2">
         | 
| 1796 1755 | 
             
            <a name="GtkLabel--justify"></a><h3>The <code class="literal">"justify"</code> property</h3>
         | 
| 1797 1756 | 
             
            <pre class="programlisting">  "justify"                  <a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a>      : Read / Write</pre>
         | 
| 1798 1757 | 
             
            <p>The alignment of the lines in the text of the label relative to each other. This does NOT affect the alignment of the label within its allocation. See GtkMisc::xalign for that.</p>
         | 
| 1799 1758 | 
             
            <p>Default value: GTK_JUSTIFY_LEFT</p>
         | 
| 1800 1759 | 
             
            </div>
         | 
| 1801 1760 | 
             
            <hr>
         | 
| 1802 | 
            -
            <div class="refsect2" | 
| 1761 | 
            +
            <div class="refsect2">
         | 
| 1803 1762 | 
             
            <a name="GtkLabel--label"></a><h3>The <code class="literal">"label"</code> property</h3>
         | 
| 1804 1763 | 
             
            <pre class="programlisting">  "label"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1805 1764 | 
             
            <p>The text of the label.</p>
         | 
| 1806 1765 | 
             
            <p>Default value: ""</p>
         | 
| 1807 1766 | 
             
            </div>
         | 
| 1808 1767 | 
             
            <hr>
         | 
| 1809 | 
            -
            <div class="refsect2" | 
| 1768 | 
            +
            <div class="refsect2">
         | 
| 1810 1769 | 
             
            <a name="GtkLabel--max-width-chars"></a><h3>The <code class="literal">"max-width-chars"</code> property</h3>
         | 
| 1811 1770 | 
             
            <pre class="programlisting">  "max-width-chars"          <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write</pre>
         | 
| 1812 1771 | 
             
            <p>
         | 
| @@ -1821,34 +1780,34 @@ value, then the "max-width-chars" property is ignored. | |
| 1821 1780 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1822 1781 | 
             
            </div>
         | 
| 1823 1782 | 
             
            <hr>
         | 
| 1824 | 
            -
            <div class="refsect2" | 
| 1783 | 
            +
            <div class="refsect2">
         | 
| 1825 1784 | 
             
            <a name="GtkLabel--mnemonic-keyval"></a><h3>The <code class="literal">"mnemonic-keyval"</code> property</h3>
         | 
| 1826 1785 | 
             
            <pre class="programlisting">  "mnemonic-keyval"          <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>                 : Read</pre>
         | 
| 1827 1786 | 
             
            <p>The mnemonic accelerator key for this label.</p>
         | 
| 1828 1787 | 
             
            <p>Default value: 16777215</p>
         | 
| 1829 1788 | 
             
            </div>
         | 
| 1830 1789 | 
             
            <hr>
         | 
| 1831 | 
            -
            <div class="refsect2" | 
| 1790 | 
            +
            <div class="refsect2">
         | 
| 1832 1791 | 
             
            <a name="GtkLabel--mnemonic-widget"></a><h3>The <code class="literal">"mnemonic-widget"</code> property</h3>
         | 
| 1833 1792 | 
             
            <pre class="programlisting">  "mnemonic-widget"          <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>*            : Read / Write</pre>
         | 
| 1834 1793 | 
             
            <p>The widget to be activated when the label's mnemonic key is pressed.</p>
         | 
| 1835 1794 | 
             
            </div>
         | 
| 1836 1795 | 
             
            <hr>
         | 
| 1837 | 
            -
            <div class="refsect2" | 
| 1796 | 
            +
            <div class="refsect2">
         | 
| 1838 1797 | 
             
            <a name="GtkLabel--pattern"></a><h3>The <code class="literal">"pattern"</code> property</h3>
         | 
| 1839 1798 | 
             
            <pre class="programlisting">  "pattern"                  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Write</pre>
         | 
| 1840 1799 | 
             
            <p>A string with _ characters in positions correspond to characters in the text to underline.</p>
         | 
| 1841 1800 | 
             
            <p>Default value: NULL</p>
         | 
| 1842 1801 | 
             
            </div>
         | 
| 1843 1802 | 
             
            <hr>
         | 
| 1844 | 
            -
            <div class="refsect2" | 
| 1803 | 
            +
            <div class="refsect2">
         | 
| 1845 1804 | 
             
            <a name="GtkLabel--selectable"></a><h3>The <code class="literal">"selectable"</code> property</h3>
         | 
| 1846 1805 | 
             
            <pre class="programlisting">  "selectable"               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1847 1806 | 
             
            <p>Whether the label text can be selected with the mouse.</p>
         | 
| 1848 1807 | 
             
            <p>Default value: FALSE</p>
         | 
| 1849 1808 | 
             
            </div>
         | 
| 1850 1809 | 
             
            <hr>
         | 
| 1851 | 
            -
            <div class="refsect2" | 
| 1810 | 
            +
            <div class="refsect2">
         | 
| 1852 1811 | 
             
            <a name="GtkLabel--selection-bound"></a><h3>The <code class="literal">"selection-bound"</code> property</h3>
         | 
| 1853 1812 | 
             
            <pre class="programlisting">  "selection-bound"          <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read</pre>
         | 
| 1854 1813 | 
             
            <p>The position of the opposite end of the selection from the cursor in chars.</p>
         | 
| @@ -1856,7 +1815,7 @@ value, then the "max-width-chars" property is ignored. | |
| 1856 1815 | 
             
            <p>Default value: 0</p>
         | 
| 1857 1816 | 
             
            </div>
         | 
| 1858 1817 | 
             
            <hr>
         | 
| 1859 | 
            -
            <div class="refsect2" | 
| 1818 | 
            +
            <div class="refsect2">
         | 
| 1860 1819 | 
             
            <a name="GtkLabel--single-line-mode"></a><h3>The <code class="literal">"single-line-mode"</code> property</h3>
         | 
| 1861 1820 | 
             
            <pre class="programlisting">  "single-line-mode"         <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1862 1821 | 
             
            <p>
         | 
| @@ -1870,7 +1829,7 @@ changes would be distracting, e.g. in a statusbar. | |
| 1870 1829 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1871 1830 | 
             
            </div>
         | 
| 1872 1831 | 
             
            <hr>
         | 
| 1873 | 
            -
            <div class="refsect2" | 
| 1832 | 
            +
            <div class="refsect2">
         | 
| 1874 1833 | 
             
            <a name="GtkLabel--track-visited-links"></a><h3>The <code class="literal">"track-visited-links"</code> property</h3>
         | 
| 1875 1834 | 
             
            <pre class="programlisting">  "track-visited-links"      <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1876 1835 | 
             
            <p>
         | 
| @@ -1882,21 +1841,21 @@ color, instead of ::link-color. | |
| 1882 1841 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1883 1842 | 
             
            </div>
         | 
| 1884 1843 | 
             
            <hr>
         | 
| 1885 | 
            -
            <div class="refsect2" | 
| 1844 | 
            +
            <div class="refsect2">
         | 
| 1886 1845 | 
             
            <a name="GtkLabel--use-markup"></a><h3>The <code class="literal">"use-markup"</code> property</h3>
         | 
| 1887 1846 | 
             
            <pre class="programlisting">  "use-markup"               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1888 1847 | 
             
            <p>The text of the label includes XML markup. See pango_parse_markup().</p>
         | 
| 1889 1848 | 
             
            <p>Default value: FALSE</p>
         | 
| 1890 1849 | 
             
            </div>
         | 
| 1891 1850 | 
             
            <hr>
         | 
| 1892 | 
            -
            <div class="refsect2" | 
| 1851 | 
            +
            <div class="refsect2">
         | 
| 1893 1852 | 
             
            <a name="GtkLabel--use-underline"></a><h3>The <code class="literal">"use-underline"</code> property</h3>
         | 
| 1894 1853 | 
             
            <pre class="programlisting">  "use-underline"            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1895 1854 | 
             
            <p>If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key.</p>
         | 
| 1896 1855 | 
             
            <p>Default value: FALSE</p>
         | 
| 1897 1856 | 
             
            </div>
         | 
| 1898 1857 | 
             
            <hr>
         | 
| 1899 | 
            -
            <div class="refsect2" | 
| 1858 | 
            +
            <div class="refsect2">
         | 
| 1900 1859 | 
             
            <a name="GtkLabel--width-chars"></a><h3>The <code class="literal">"width-chars"</code> property</h3>
         | 
| 1901 1860 | 
             
            <pre class="programlisting">  "width-chars"              <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write</pre>
         | 
| 1902 1861 | 
             
            <p>
         | 
| @@ -1911,14 +1870,14 @@ If the "width-chars" property is set to a positive value, then the | |
| 1911 1870 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1912 1871 | 
             
            </div>
         | 
| 1913 1872 | 
             
            <hr>
         | 
| 1914 | 
            -
            <div class="refsect2" | 
| 1873 | 
            +
            <div class="refsect2">
         | 
| 1915 1874 | 
             
            <a name="GtkLabel--wrap"></a><h3>The <code class="literal">"wrap"</code> property</h3>
         | 
| 1916 1875 | 
             
            <pre class="programlisting">  "wrap"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1917 1876 | 
             
            <p>If set, wrap lines if the text becomes too wide.</p>
         | 
| 1918 1877 | 
             
            <p>Default value: FALSE</p>
         | 
| 1919 1878 | 
             
            </div>
         | 
| 1920 1879 | 
             
            <hr>
         | 
| 1921 | 
            -
            <div class="refsect2" | 
| 1880 | 
            +
            <div class="refsect2">
         | 
| 1922 1881 | 
             
            <a name="GtkLabel--wrap-mode"></a><h3>The <code class="literal">"wrap-mode"</code> property</h3>
         | 
| 1923 1882 | 
             
            <pre class="programlisting">  "wrap-mode"                <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a>         : Read / Write</pre>
         | 
| 1924 1883 | 
             
            <p>
         | 
| @@ -1930,12 +1889,12 @@ means wrap on word boundaries. | |
| 1930 1889 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1931 1890 | 
             
            </div>
         | 
| 1932 1891 | 
             
            </div>
         | 
| 1933 | 
            -
            <div class="refsect1" | 
| 1892 | 
            +
            <div class="refsect1">
         | 
| 1934 1893 | 
             
            <a name="GtkLabel.signal-details"></a><h2>Signal Details</h2>
         | 
| 1935 | 
            -
            <div class="refsect2" | 
| 1894 | 
            +
            <div class="refsect2">
         | 
| 1936 1895 | 
             
            <a name="GtkLabel-activate-current-link"></a><h3>The <code class="literal">"activate-current-link"</code> signal</h3>
         | 
| 1937 1896 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
         | 
| 1938 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>  user_data)      :  | 
| 1897 | 
            +
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>  user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
         | 
| 1939 1898 | 
             
            <p>
         | 
| 1940 1899 | 
             
            A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
         | 
| 1941 1900 | 
             
            which gets emitted when the user activates a link in the label.
         | 
| @@ -1952,8 +1911,7 @@ The default bindings for this signal are all forms of the Enter key. | |
| 1952 1911 | 
             
            <tbody>
         | 
| 1953 1912 | 
             
            <tr>
         | 
| 1954 1913 | 
             
            <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
         | 
| 1955 | 
            -
            <td>The label on which the signal was emitted
         | 
| 1956 | 
            -
            </td>
         | 
| 1914 | 
            +
            <td>The label on which the signal was emitted</td>
         | 
| 1957 1915 | 
             
            </tr>
         | 
| 1958 1916 | 
             
            <tr>
         | 
| 1959 1917 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1964,11 +1922,11 @@ The default bindings for this signal are all forms of the Enter key. | |
| 1964 1922 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1965 1923 | 
             
            </div>
         | 
| 1966 1924 | 
             
            <hr>
         | 
| 1967 | 
            -
            <div class="refsect2" | 
| 1925 | 
            +
            <div class="refsect2">
         | 
| 1968 1926 | 
             
            <a name="GtkLabel-activate-link"></a><h3>The <code class="literal">"activate-link"</code> signal</h3>
         | 
| 1969 1927 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            user_function                      (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
         | 
| 1970 1928 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>    *uri,
         | 
| 1971 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>  user_data)      : Run Last</pre>
         | 
| 1929 | 
            +
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>  user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
         | 
| 1972 1930 | 
             
            <p>
         | 
| 1973 1931 | 
             
            The signal which gets emitted to activate a URI.
         | 
| 1974 1932 | 
             
            Applications may connect to it to override the default behaviour,
         | 
| @@ -1979,13 +1937,11 @@ which is to call <a class="link" href="gtk-Filesystem-utilities.html#gtk-show-ur | |
| 1979 1937 | 
             
            <tbody>
         | 
| 1980 1938 | 
             
            <tr>
         | 
| 1981 1939 | 
             
            <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
         | 
| 1982 | 
            -
            <td>The label on which the signal was emitted
         | 
| 1983 | 
            -
            </td>
         | 
| 1940 | 
            +
            <td>The label on which the signal was emitted</td>
         | 
| 1984 1941 | 
             
            </tr>
         | 
| 1985 1942 | 
             
            <tr>
         | 
| 1986 1943 | 
             
            <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
         | 
| 1987 | 
            -
            <td>the URI that is activated
         | 
| 1988 | 
            -
            </td>
         | 
| 1944 | 
            +
            <td>the URI that is activated</td>
         | 
| 1989 1945 | 
             
            </tr>
         | 
| 1990 1946 | 
             
            <tr>
         | 
| 1991 1947 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -1993,18 +1949,18 @@ which is to call <a class="link" href="gtk-Filesystem-utilities.html#gtk-show-ur | |
| 1993 1949 | 
             
            </tr>
         | 
| 1994 1950 | 
             
            <tr>
         | 
| 1995 1951 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1996 | 
            -
            <td> | 
| 1997 | 
            -
            </td>
         | 
| 1952 | 
            +
            <td>
         | 
| 1953 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the link has been activated</td>
         | 
| 1998 1954 | 
             
            </tr>
         | 
| 1999 1955 | 
             
            </tbody>
         | 
| 2000 1956 | 
             
            </table></div>
         | 
| 2001 1957 | 
             
            <p class="since">Since 2.18</p>
         | 
| 2002 1958 | 
             
            </div>
         | 
| 2003 1959 | 
             
            <hr>
         | 
| 2004 | 
            -
            <div class="refsect2" | 
| 1960 | 
            +
            <div class="refsect2">
         | 
| 2005 1961 | 
             
            <a name="GtkLabel-copy-clipboard"></a><h3>The <code class="literal">"copy-clipboard"</code> signal</h3>
         | 
| 2006 1962 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
         | 
| 2007 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>  user_data)      :  | 
| 1963 | 
            +
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>  user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
         | 
| 2008 1964 | 
             
            <p>
         | 
| 2009 1965 | 
             
            The ::copy-clipboard signal is a
         | 
| 2010 1966 | 
             
            <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
         | 
| @@ -2018,8 +1974,7 @@ The default binding for this signal is Ctrl-c. | |
| 2018 1974 | 
             
            <tbody>
         | 
| 2019 1975 | 
             
            <tr>
         | 
| 2020 1976 | 
             
            <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
         | 
| 2021 | 
            -
            <td>the object which received the signal
         | 
| 2022 | 
            -
            </td>
         | 
| 1977 | 
            +
            <td>the object which received the signal</td>
         | 
| 2023 1978 | 
             
            </tr>
         | 
| 2024 1979 | 
             
            <tr>
         | 
| 2025 1980 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2029,13 +1984,13 @@ The default binding for this signal is Ctrl-c. | |
| 2029 1984 | 
             
            </table></div>
         | 
| 2030 1985 | 
             
            </div>
         | 
| 2031 1986 | 
             
            <hr>
         | 
| 2032 | 
            -
            <div class="refsect2" | 
| 1987 | 
            +
            <div class="refsect2">
         | 
| 2033 1988 | 
             
            <a name="GtkLabel-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
         | 
| 2034 1989 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>       *entry,
         | 
| 2035 1990 | 
             
                                                                    <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
         | 
| 2036 1991 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>            count,
         | 
| 2037 1992 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>        extend_selection,
         | 
| 2038 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>        user_data)             :  | 
| 1993 | 
            +
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>        user_data)             : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
         | 
| 2039 1994 | 
             
            <p>
         | 
| 2040 1995 | 
             
            The ::move-cursor signal is a
         | 
| 2041 1996 | 
             
            <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
         | 
| @@ -2066,8 +2021,7 @@ There are too many key combinations to list them all here. | |
| 2066 2021 | 
             
            <tbody>
         | 
| 2067 2022 | 
             
            <tr>
         | 
| 2068 2023 | 
             
            <td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
         | 
| 2069 | 
            -
            <td>the object which received the signal
         | 
| 2070 | 
            -
            </td>
         | 
| 2024 | 
            +
            <td>the object which received the signal</td>
         | 
| 2071 2025 | 
             
            </tr>
         | 
| 2072 2026 | 
             
            <tr>
         | 
| 2073 2027 | 
             
            <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
         | 
| @@ -2076,14 +2030,12 @@ There are too many key combinations to list them all here. | |
| 2076 2030 | 
             
            </tr>
         | 
| 2077 2031 | 
             
            <tr>
         | 
| 2078 2032 | 
             
            <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
         | 
| 2079 | 
            -
            <td>the number of <em class="parameter"><code>step</code></em> units to move
         | 
| 2080 | 
            -
            </td>
         | 
| 2033 | 
            +
            <td>the number of <em class="parameter"><code>step</code></em> units to move</td>
         | 
| 2081 2034 | 
             
            </tr>
         | 
| 2082 2035 | 
             
            <tr>
         | 
| 2083 2036 | 
             
            <td><p><span class="term"><em class="parameter"><code>extend_selection</code></em> :</span></p></td>
         | 
| 2084 2037 | 
             
            <td>
         | 
| 2085 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection
         | 
| 2086 | 
            -
            </td>
         | 
| 2038 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</td>
         | 
| 2087 2039 | 
             
            </tr>
         | 
| 2088 2040 | 
             
            <tr>
         | 
| 2089 2041 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2093,11 +2045,11 @@ There are too many key combinations to list them all here. | |
| 2093 2045 | 
             
            </table></div>
         | 
| 2094 2046 | 
             
            </div>
         | 
| 2095 2047 | 
             
            <hr>
         | 
| 2096 | 
            -
            <div class="refsect2" | 
| 2048 | 
            +
            <div class="refsect2">
         | 
| 2097 2049 | 
             
            <a name="GtkLabel-populate-popup"></a><h3>The <code class="literal">"populate-popup"</code> signal</h3>
         | 
| 2098 2050 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
         | 
| 2099 2051 | 
             
                                                                    <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>  *menu,
         | 
| 2100 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>  user_data)      : Run Last</pre>
         | 
| 2052 | 
            +
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>  user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
         | 
| 2101 2053 | 
             
            <p>
         | 
| 2102 2054 | 
             
            The ::populate-popup signal gets emitted before showing the
         | 
| 2103 2055 | 
             
            context menu of the label. Note that only selectable labels
         | 
| @@ -2112,13 +2064,11 @@ to this signal and append your menuitems to the <em class="parameter"><code>menu | |
| 2112 2064 | 
             
            <tbody>
         | 
| 2113 2065 | 
             
            <tr>
         | 
| 2114 2066 | 
             
            <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
         | 
| 2115 | 
            -
            <td>The label on which the signal is emitted
         | 
| 2116 | 
            -
            </td>
         | 
| 2067 | 
            +
            <td>The label on which the signal is emitted</td>
         | 
| 2117 2068 | 
             
            </tr>
         | 
| 2118 2069 | 
             
            <tr>
         | 
| 2119 2070 | 
             
            <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
         | 
| 2120 | 
            -
            <td>the menu that is being populated
         | 
| 2121 | 
            -
            </td>
         | 
| 2071 | 
            +
            <td>the menu that is being populated</td>
         | 
| 2122 2072 | 
             
            </tr>
         | 
| 2123 2073 | 
             
            <tr>
         | 
| 2124 2074 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2131,6 +2081,6 @@ to this signal and append your menuitems to the <em class="parameter"><code>menu | |
| 2131 2081 | 
             
            </div>
         | 
| 2132 2082 | 
             
            <div class="footer">
         | 
| 2133 2083 | 
             
            <hr>
         | 
| 2134 | 
            -
                      Generated by GTK-Doc V1. | 
| 2084 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 2135 2085 | 
             
            </body>
         | 
| 2136 2086 | 
             
            </html>
         |