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>GtkLinkButton</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="ButtonWidgets.html" title="Buttons and Toggles">
|
9
9
|
<link rel="prev" href="GtkToggleButton.html" title="GtkToggleButton">
|
10
10
|
<link rel="next" href="GtkScaleButton.html" title="GtkScaleButton">
|
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="GtkToggleButton.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="ButtonWidgets.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="GtkScaleButton.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
@@ -32,7 +32,7 @@
|
|
32
32
|
<a href="#GtkLinkButton.properties" class="shortcut">Properties</a>
|
33
33
|
</td></tr>
|
34
34
|
</table>
|
35
|
-
<div class="refentry"
|
35
|
+
<div class="refentry">
|
36
36
|
<a name="GtkLinkButton"></a><div class="titlepage"></div>
|
37
37
|
<div class="refnamediv"><table width="100%"><tr>
|
38
38
|
<td valign="top">
|
@@ -41,16 +41,16 @@
|
|
41
41
|
</td>
|
42
42
|
<td valign="top" align="right"><img src="link-button.png"></td>
|
43
43
|
</tr></table></div>
|
44
|
-
<div class="refsynopsisdiv"
|
44
|
+
<div class="refsynopsisdiv">
|
45
45
|
<a name="GtkLinkButton.synopsis"></a><h2>Synopsis</h2>
|
46
46
|
<pre class="synopsis">
|
47
47
|
#include <gtk/gtk.h>
|
48
48
|
|
49
|
-
|
50
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
51
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
49
|
+
struct <a class="link" href="GtkLinkButton.html#GtkLinkButton-struct" title="struct GtkLinkButton">GtkLinkButton</a>;
|
50
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkLinkButton.html#gtk-link-button-new" title="gtk_link_button_new ()">gtk_link_button_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> *uri</code></em>);
|
51
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkLinkButton.html#gtk-link-button-new-with-label" title="gtk_link_button_new_with_label ()">gtk_link_button_new_with_label</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> *uri</code></em>,
|
52
52
|
<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> *label</code></em>);
|
53
|
-
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
53
|
+
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="GtkLinkButton.html#gtk-link-button-get-uri" title="gtk_link_button_get_uri ()">gtk_link_button_get_uri</a> (<em class="parameter"><code><a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> *link_button</code></em>);
|
54
54
|
<span class="returnvalue">void</span> <a class="link" href="GtkLinkButton.html#gtk-link-button-set-uri" title="gtk_link_button_set_uri ()">gtk_link_button_set_uri</a> (<em class="parameter"><code><a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> *link_button</code></em>,
|
55
55
|
<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> *uri</code></em>);
|
56
56
|
<span class="returnvalue">void</span> (<a class="link" href="GtkLinkButton.html#GtkLinkButtonUriFunc" title="GtkLinkButtonUriFunc ()">*GtkLinkButtonUriFunc</a>) (<em class="parameter"><code><a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> *button</code></em>,
|
@@ -64,7 +64,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
|
|
64
64
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visited</code></em>);
|
65
65
|
</pre>
|
66
66
|
</div>
|
67
|
-
<div class="refsect1"
|
67
|
+
<div class="refsect1">
|
68
68
|
<a name="GtkLinkButton.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
69
69
|
<pre class="synopsis">
|
70
70
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
@@ -77,20 +77,20 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
|
|
77
77
|
+----GtkLinkButton
|
78
78
|
</pre>
|
79
79
|
</div>
|
80
|
-
<div class="refsect1"
|
80
|
+
<div class="refsect1">
|
81
81
|
<a name="GtkLinkButton.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
82
82
|
<p>
|
83
83
|
GtkLinkButton implements
|
84
84
|
AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="GtkActivatable.html" title="GtkActivatable">GtkActivatable</a>.</p>
|
85
85
|
</div>
|
86
|
-
<div class="refsect1"
|
86
|
+
<div class="refsect1">
|
87
87
|
<a name="GtkLinkButton.properties"></a><h2>Properties</h2>
|
88
88
|
<pre class="synopsis">
|
89
89
|
"<a class="link" href="GtkLinkButton.html#GtkLinkButton--uri" title='The "uri" property'>uri</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
90
90
|
"<a class="link" href="GtkLinkButton.html#GtkLinkButton--visited" title='The "visited" property'>visited</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
91
91
|
</pre>
|
92
92
|
</div>
|
93
|
-
<div class="refsect1"
|
93
|
+
<div class="refsect1">
|
94
94
|
<a name="GtkLinkButton.description"></a><h2>Description</h2>
|
95
95
|
<p>
|
96
96
|
A <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> is a <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> with a hyperlink, similar to the one
|
@@ -114,20 +114,20 @@ on it: see <a class="link" href="GtkLinkButton.html#gtk-link-button-set-uri-hook
|
|
114
114
|
<a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> was added in GTK+ 2.10.
|
115
115
|
</p>
|
116
116
|
</div>
|
117
|
-
<div class="refsect1"
|
117
|
+
<div class="refsect1">
|
118
118
|
<a name="GtkLinkButton.details"></a><h2>Details</h2>
|
119
|
-
<div class="refsect2"
|
120
|
-
<a name="GtkLinkButton-struct"></a><h3>GtkLinkButton</h3>
|
121
|
-
<pre class="programlisting">
|
119
|
+
<div class="refsect2">
|
120
|
+
<a name="GtkLinkButton-struct"></a><h3>struct GtkLinkButton</h3>
|
121
|
+
<pre class="programlisting">struct GtkLinkButton;</pre>
|
122
122
|
<p>
|
123
123
|
The <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> struct contains private data only, and should be
|
124
124
|
manipulated using the functions below.
|
125
125
|
</p>
|
126
126
|
</div>
|
127
127
|
<hr>
|
128
|
-
<div class="refsect2"
|
128
|
+
<div class="refsect2">
|
129
129
|
<a name="gtk-link-button-new"></a><h3>gtk_link_button_new ()</h3>
|
130
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
130
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_link_button_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> *uri</code></em>);</pre>
|
131
131
|
<p>
|
132
132
|
Creates a new <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> with the URI as its text.
|
133
133
|
</p>
|
@@ -136,23 +136,20 @@ Creates a new <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><s
|
|
136
136
|
<tbody>
|
137
137
|
<tr>
|
138
138
|
<td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
|
139
|
-
<td>a valid URI
|
140
|
-
</td>
|
139
|
+
<td>a valid URI</td>
|
141
140
|
</tr>
|
142
141
|
<tr>
|
143
142
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
144
|
-
<td>
|
145
|
-
|
146
|
-
</td>
|
143
|
+
<td>a new link button widget.</td>
|
147
144
|
</tr>
|
148
145
|
</tbody>
|
149
146
|
</table></div>
|
150
147
|
<p class="since">Since 2.10</p>
|
151
148
|
</div>
|
152
149
|
<hr>
|
153
|
-
<div class="refsect2"
|
150
|
+
<div class="refsect2">
|
154
151
|
<a name="gtk-link-button-new-with-label"></a><h3>gtk_link_button_new_with_label ()</h3>
|
155
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
152
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_link_button_new_with_label (<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> *uri</code></em>,
|
156
153
|
<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> *label</code></em>);</pre>
|
157
154
|
<p>
|
158
155
|
Creates a new <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> containing a label.
|
@@ -162,17 +159,16 @@ Creates a new <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><s
|
|
162
159
|
<tbody>
|
163
160
|
<tr>
|
164
161
|
<td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
|
165
|
-
<td>a valid URI
|
166
|
-
</td>
|
162
|
+
<td>a valid URI</td>
|
167
163
|
</tr>
|
168
164
|
<tr>
|
169
165
|
<td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
|
170
|
-
<td>
|
166
|
+
<td>the text of the button. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
171
167
|
</td>
|
172
168
|
</tr>
|
173
169
|
<tr>
|
174
170
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
175
|
-
<td>
|
171
|
+
<td>a new link button widget. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
176
172
|
</td>
|
177
173
|
</tr>
|
178
174
|
</tbody>
|
@@ -180,9 +176,9 @@ Creates a new <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><s
|
|
180
176
|
<p class="since">Since 2.10</p>
|
181
177
|
</div>
|
182
178
|
<hr>
|
183
|
-
<div class="refsect2"
|
179
|
+
<div class="refsect2">
|
184
180
|
<a name="gtk-link-button-get-uri"></a><h3>gtk_link_button_get_uri ()</h3>
|
185
|
-
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
181
|
+
<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_link_button_get_uri (<em class="parameter"><code><a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> *link_button</code></em>);</pre>
|
186
182
|
<p>
|
187
183
|
Retrieves the URI set using <a class="link" href="GtkLinkButton.html#gtk-link-button-set-uri" title="gtk_link_button_set_uri ()"><code class="function">gtk_link_button_set_uri()</code></a>.
|
188
184
|
</p>
|
@@ -196,17 +192,15 @@ Retrieves the URI set using <a class="link" href="GtkLinkButton.html#gtk-link-bu
|
|
196
192
|
</tr>
|
197
193
|
<tr>
|
198
194
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
199
|
-
<td>
|
200
|
-
|
201
|
-
|
202
|
-
</td>
|
195
|
+
<td>a valid URI. The returned string is owned by the link button
|
196
|
+
and should not be modified or freed.</td>
|
203
197
|
</tr>
|
204
198
|
</tbody>
|
205
199
|
</table></div>
|
206
200
|
<p class="since">Since 2.10</p>
|
207
201
|
</div>
|
208
202
|
<hr>
|
209
|
-
<div class="refsect2"
|
203
|
+
<div class="refsect2">
|
210
204
|
<a name="gtk-link-button-set-uri"></a><h3>gtk_link_button_set_uri ()</h3>
|
211
205
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_link_button_set_uri (<em class="parameter"><code><a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> *link_button</code></em>,
|
212
206
|
<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> *uri</code></em>);</pre>
|
@@ -224,15 +218,14 @@ this unsets the 'visited' state of the button.
|
|
224
218
|
</tr>
|
225
219
|
<tr>
|
226
220
|
<td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
|
227
|
-
<td>a valid URI
|
228
|
-
</td>
|
221
|
+
<td>a valid URI</td>
|
229
222
|
</tr>
|
230
223
|
</tbody>
|
231
224
|
</table></div>
|
232
225
|
<p class="since">Since 2.10</p>
|
233
226
|
</div>
|
234
227
|
<hr>
|
235
|
-
<div class="refsect2"
|
228
|
+
<div class="refsect2">
|
236
229
|
<a name="GtkLinkButtonUriFunc"></a><h3>GtkLinkButtonUriFunc ()</h3>
|
237
230
|
<pre class="programlisting"><span class="returnvalue">void</span> (*GtkLinkButtonUriFunc) (<em class="parameter"><code><a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> *button</code></em>,
|
238
231
|
<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> *link_</code></em>,
|
@@ -246,29 +239,31 @@ clicked.
|
|
246
239
|
<tbody>
|
247
240
|
<tr>
|
248
241
|
<td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
|
249
|
-
<td>the <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> which was clicked
|
250
|
-
</td>
|
242
|
+
<td>the <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> which was clicked</td>
|
251
243
|
</tr>
|
252
244
|
<tr>
|
253
245
|
<td><p><span class="term"><em class="parameter"><code>link_</code></em> :</span></p></td>
|
254
|
-
<td>the URI to which the clicked <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> points
|
255
|
-
</td>
|
246
|
+
<td>the URI to which the clicked <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> points</td>
|
256
247
|
</tr>
|
257
248
|
<tr>
|
258
249
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
259
250
|
<td>user data that was passed when the function was registered
|
260
|
-
|
251
|
+
with <a class="link" href="GtkLinkButton.html#gtk-link-button-set-uri-hook" title="gtk_link_button_set_uri_hook ()"><code class="function">gtk_link_button_set_uri_hook()</code></a>
|
261
252
|
</td>
|
262
253
|
</tr>
|
263
254
|
</tbody>
|
264
255
|
</table></div>
|
265
256
|
</div>
|
266
257
|
<hr>
|
267
|
-
<div class="refsect2"
|
258
|
+
<div class="refsect2">
|
268
259
|
<a name="gtk-link-button-set-uri-hook"></a><h3>gtk_link_button_set_uri_hook ()</h3>
|
269
260
|
<pre class="programlisting"><a class="link" href="GtkLinkButton.html#GtkLinkButtonUriFunc" title="GtkLinkButtonUriFunc ()"><span class="returnvalue">GtkLinkButtonUriFunc</span></a> gtk_link_button_set_uri_hook (<em class="parameter"><code><a class="link" href="GtkLinkButton.html#GtkLinkButtonUriFunc" title="GtkLinkButtonUriFunc ()"><span class="type">GtkLinkButtonUriFunc</span></a> func</code></em>,
|
270
261
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
271
262
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
|
263
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
264
|
+
<h3 class="title">Warning</h3>
|
265
|
+
<p><code class="literal">gtk_link_button_set_uri_hook</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use the <a class="link" href="GtkButton.html#GtkButton-clicked" title='The "clicked" signal'><span class="type">"clicked"</span></a> signal instead</p>
|
266
|
+
</div>
|
272
267
|
<p>
|
273
268
|
Sets <em class="parameter"><code>func</code></em> as the function that should be invoked every time a user clicks
|
274
269
|
a <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a>. This function is called before every callback registered
|
@@ -282,31 +277,29 @@ If no uri hook has been set, GTK+ defaults to calling <a class="link" href="gtk-
|
|
282
277
|
<tbody>
|
283
278
|
<tr>
|
284
279
|
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
285
|
-
<td>
|
280
|
+
<td>a function called each time a <a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> is clicked, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
286
281
|
</td>
|
287
282
|
</tr>
|
288
283
|
<tr>
|
289
284
|
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
290
|
-
<td>
|
285
|
+
<td>user data to be passed to <em class="parameter"><code>func</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
291
286
|
</td>
|
292
287
|
</tr>
|
293
288
|
<tr>
|
294
289
|
<td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
|
295
|
-
<td>
|
290
|
+
<td>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> that gets called when <em class="parameter"><code>data</code></em> is no longer needed, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
296
291
|
</td>
|
297
292
|
</tr>
|
298
293
|
<tr>
|
299
294
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
300
|
-
<td>
|
301
|
-
|
302
|
-
</td>
|
295
|
+
<td>the previously set hook function.</td>
|
303
296
|
</tr>
|
304
297
|
</tbody>
|
305
298
|
</table></div>
|
306
299
|
<p class="since">Since 2.10</p>
|
307
300
|
</div>
|
308
301
|
<hr>
|
309
|
-
<div class="refsect2"
|
302
|
+
<div class="refsect2">
|
310
303
|
<a name="gtk-link-button-get-visited"></a><h3>gtk_link_button_get_visited ()</h3>
|
311
304
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_link_button_get_visited (<em class="parameter"><code><a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> *link_button</code></em>);</pre>
|
312
305
|
<p>
|
@@ -327,16 +320,15 @@ The state may also be changed using <a class="link" href="GtkLinkButton.html#gtk
|
|
327
320
|
</tr>
|
328
321
|
<tr>
|
329
322
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
330
|
-
<td>
|
331
|
-
|
332
|
-
</td>
|
323
|
+
<td>
|
324
|
+
<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 visited, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
|
333
325
|
</tr>
|
334
326
|
</tbody>
|
335
327
|
</table></div>
|
336
328
|
<p class="since">Since 2.14</p>
|
337
329
|
</div>
|
338
330
|
<hr>
|
339
|
-
<div class="refsect2"
|
331
|
+
<div class="refsect2">
|
340
332
|
<a name="gtk-link-button-set-visited"></a><h3>gtk_link_button_set_visited ()</h3>
|
341
333
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_link_button_set_visited (<em class="parameter"><code><a class="link" href="GtkLinkButton.html" title="GtkLinkButton"><span class="type">GtkLinkButton</span></a> *link_button</code></em>,
|
342
334
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visited</code></em>);</pre>
|
@@ -354,17 +346,16 @@ points. See <a class="link" href="GtkLinkButton.html#gtk-link-button-get-visite
|
|
354
346
|
</tr>
|
355
347
|
<tr>
|
356
348
|
<td><p><span class="term"><em class="parameter"><code>visited</code></em> :</span></p></td>
|
357
|
-
<td>the new 'visited' state
|
358
|
-
</td>
|
349
|
+
<td>the new 'visited' state</td>
|
359
350
|
</tr>
|
360
351
|
</tbody>
|
361
352
|
</table></div>
|
362
353
|
<p class="since">Since 2.14</p>
|
363
354
|
</div>
|
364
355
|
</div>
|
365
|
-
<div class="refsect1"
|
356
|
+
<div class="refsect1">
|
366
357
|
<a name="GtkLinkButton.property-details"></a><h2>Property Details</h2>
|
367
|
-
<div class="refsect2"
|
358
|
+
<div class="refsect2">
|
368
359
|
<a name="GtkLinkButton--uri"></a><h3>The <code class="literal">"uri"</code> property</h3>
|
369
360
|
<pre class="programlisting"> "uri" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
370
361
|
<p>
|
@@ -374,7 +365,7 @@ The URI bound to this button.
|
|
374
365
|
<p class="since">Since 2.10</p>
|
375
366
|
</div>
|
376
367
|
<hr>
|
377
|
-
<div class="refsect2"
|
368
|
+
<div class="refsect2">
|
378
369
|
<a name="GtkLinkButton--visited"></a><h3>The <code class="literal">"visited"</code> property</h3>
|
379
370
|
<pre class="programlisting"> "visited" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
380
371
|
<p>
|
@@ -385,7 +376,7 @@ different color.
|
|
385
376
|
<p class="since">Since 2.14</p>
|
386
377
|
</div>
|
387
378
|
</div>
|
388
|
-
<div class="refsect1"
|
379
|
+
<div class="refsect1">
|
389
380
|
<a name="GtkLinkButton.see-also"></a><h2>See Also</h2>
|
390
381
|
<p>
|
391
382
|
<a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>
|
@@ -394,6 +385,6 @@ different color.
|
|
394
385
|
</div>
|
395
386
|
<div class="footer">
|
396
387
|
<hr>
|
397
|
-
Generated by GTK-Doc V1.
|
388
|
+
Generated by GTK-Doc V1.17</div>
|
398
389
|
</body>
|
399
390
|
</html>
|
@@ -4,11 +4,11 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkList</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="DeprecatedObjects.html" title="Deprecated">
|
9
9
|
<link rel="prev" href="GtkItemFactory.html" title="GtkItemFactory">
|
10
10
|
<link rel="next" href="GtkListItem.html" title="GtkListItem">
|
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="GtkItemFactory.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="DeprecatedObjects.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="GtkListItem.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="#GtkList.signals" class="shortcut">Signals</a>
|
35
35
|
</td></tr>
|
36
36
|
</table>
|
37
|
-
<div class="refentry"
|
37
|
+
<div class="refentry">
|
38
38
|
<a name="GtkList"></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"></td>
|
45
45
|
</tr></table></div>
|
46
|
-
<div class="refsynopsisdiv"
|
46
|
+
<div class="refsynopsisdiv">
|
47
47
|
<a name="GtkList.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="GtkList.html#GtkList-struct" title="struct GtkList">GtkList</a>;
|
52
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkList.html#gtk-list-new" title="gtk_list_new ()">gtk_list_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
53
53
|
<span class="returnvalue">void</span> <a class="link" href="GtkList.html#gtk-list-insert-items" title="gtk_list_insert_items ()">gtk_list_insert_items</a> (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
54
54
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *items</code></em>,
|
55
55
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);
|
@@ -98,7 +98,7 @@
|
|
98
98
|
<span class="returnvalue">void</span> <a class="link" href="GtkList.html#gtk-list-end-drag-selection" title="gtk_list_end_drag_selection ()">gtk_list_end_drag_selection</a> (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>);
|
99
99
|
</pre>
|
100
100
|
</div>
|
101
|
-
<div class="refsect1"
|
101
|
+
<div class="refsect1">
|
102
102
|
<a name="GtkList.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
103
103
|
<pre class="synopsis">
|
104
104
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
@@ -109,27 +109,27 @@
|
|
109
109
|
+----GtkList
|
110
110
|
</pre>
|
111
111
|
</div>
|
112
|
-
<div class="refsect1"
|
112
|
+
<div class="refsect1">
|
113
113
|
<a name="GtkList.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
114
114
|
<p>
|
115
115
|
GtkList implements
|
116
116
|
AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
117
117
|
</div>
|
118
|
-
<div class="refsect1"
|
118
|
+
<div class="refsect1">
|
119
119
|
<a name="GtkList.properties"></a><h2>Properties</h2>
|
120
120
|
<pre class="synopsis">
|
121
121
|
"<a class="link" href="GtkList.html#GtkList--selection-mode" title='The "selection-mode" property'>selection-mode</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> : Read / Write
|
122
122
|
</pre>
|
123
123
|
</div>
|
124
|
-
<div class="refsect1"
|
124
|
+
<div class="refsect1">
|
125
125
|
<a name="GtkList.signals"></a><h2>Signals</h2>
|
126
126
|
<pre class="synopsis">
|
127
|
-
"<a class="link" href="GtkList.html#GtkList-select-child" title='The "select-child" signal'>select-child</a>" : Run First
|
128
|
-
"<a class="link" href="GtkList.html#GtkList-selection-changed" title='The "selection-changed" signal'>selection-changed</a>" : Run First
|
129
|
-
"<a class="link" href="GtkList.html#GtkList-unselect-child" title='The "unselect-child" signal'>unselect-child</a>" : Run First
|
127
|
+
"<a class="link" href="GtkList.html#GtkList-select-child" title='The "select-child" signal'>select-child</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
|
128
|
+
"<a class="link" href="GtkList.html#GtkList-selection-changed" title='The "selection-changed" signal'>selection-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
|
129
|
+
"<a class="link" href="GtkList.html#GtkList-unselect-child" title='The "unselect-child" signal'>unselect-child</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
|
130
130
|
</pre>
|
131
131
|
</div>
|
132
|
-
<div class="refsect1"
|
132
|
+
<div class="refsect1">
|
133
133
|
<a name="GtkList.description"></a><h2>Description</h2>
|
134
134
|
<p>
|
135
135
|
The <a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> widget is a container whose children are displayed
|
@@ -142,12 +142,12 @@ GtkList has been deprecated since GTK+ 2.0 and should not be used
|
|
142
142
|
in newly written code. Use <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> instead.
|
143
143
|
</p>
|
144
144
|
</div>
|
145
|
-
<div class="refsect1"
|
145
|
+
<div class="refsect1">
|
146
146
|
<a name="GtkList.details"></a><h2>Details</h2>
|
147
|
-
<div class="refsect2"
|
148
|
-
<a name="GtkList-struct"></a><h3>GtkList</h3>
|
149
|
-
<pre class="programlisting">
|
150
|
-
<div class="warning"
|
147
|
+
<div class="refsect2">
|
148
|
+
<a name="GtkList-struct"></a><h3>struct GtkList</h3>
|
149
|
+
<pre class="programlisting">struct GtkList;</pre>
|
150
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
151
151
|
<h3 class="title">Warning</h3>
|
152
152
|
<p><code class="literal">GtkList</code> is deprecated and should not be used in newly-written code.</p>
|
153
153
|
</div>
|
@@ -155,10 +155,10 @@ in newly written code. Use <a class="link" href="GtkTreeView.html" title="GtkTre
|
|
155
155
|
</p>
|
156
156
|
</div>
|
157
157
|
<hr>
|
158
|
-
<div class="refsect2"
|
158
|
+
<div class="refsect2">
|
159
159
|
<a name="gtk-list-new"></a><h3>gtk_list_new ()</h3>
|
160
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
161
|
-
<div class="warning"
|
160
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_list_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
161
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
162
162
|
<h3 class="title">Warning</h3>
|
163
163
|
<p><code class="literal">gtk_list_new</code> is deprecated and should not be used in newly-written code.</p>
|
164
164
|
</div>
|
@@ -175,12 +175,12 @@ Creates a new <a class="link" href="GtkList.html" title="GtkList"><span class="t
|
|
175
175
|
</table></div>
|
176
176
|
</div>
|
177
177
|
<hr>
|
178
|
-
<div class="refsect2"
|
178
|
+
<div class="refsect2">
|
179
179
|
<a name="gtk-list-insert-items"></a><h3>gtk_list_insert_items ()</h3>
|
180
180
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_insert_items (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
181
181
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *items</code></em>,
|
182
182
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
|
183
|
-
<div class="warning"
|
183
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
184
184
|
<h3 class="title">Warning</h3>
|
185
185
|
<p><code class="literal">gtk_list_insert_items</code> is deprecated and should not be used in newly-written code.</p>
|
186
186
|
</div>
|
@@ -193,28 +193,25 @@ must not be freed after.
|
|
193
193
|
<tbody>
|
194
194
|
<tr>
|
195
195
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
196
|
-
<td>the list widget
|
197
|
-
</td>
|
196
|
+
<td>the list widget.</td>
|
198
197
|
</tr>
|
199
198
|
<tr>
|
200
199
|
<td><p><span class="term"><em class="parameter"><code>items</code></em> :</span></p></td>
|
201
|
-
<td>the items
|
202
|
-
</td>
|
200
|
+
<td>the items.</td>
|
203
201
|
</tr>
|
204
202
|
<tr>
|
205
203
|
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
206
|
-
<td>the position to insert <em class="parameter"><code>items</code></em>, starting at 0
|
207
|
-
</td>
|
204
|
+
<td>the position to insert <em class="parameter"><code>items</code></em>, starting at 0.</td>
|
208
205
|
</tr>
|
209
206
|
</tbody>
|
210
207
|
</table></div>
|
211
208
|
</div>
|
212
209
|
<hr>
|
213
|
-
<div class="refsect2"
|
210
|
+
<div class="refsect2">
|
214
211
|
<a name="gtk-list-append-items"></a><h3>gtk_list_append_items ()</h3>
|
215
212
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_append_items (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
216
213
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *items</code></em>);</pre>
|
217
|
-
<div class="warning"
|
214
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
218
215
|
<h3 class="title">Warning</h3>
|
219
216
|
<p><code class="literal">gtk_list_append_items</code> is deprecated and should not be used in newly-written code.</p>
|
220
217
|
</div>
|
@@ -226,23 +223,21 @@ Adds <em class="parameter"><code>items</code></em> to the end of the <em class="
|
|
226
223
|
<tbody>
|
227
224
|
<tr>
|
228
225
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
229
|
-
<td>the list widget
|
230
|
-
</td>
|
226
|
+
<td>the list widget.</td>
|
231
227
|
</tr>
|
232
228
|
<tr>
|
233
229
|
<td><p><span class="term"><em class="parameter"><code>items</code></em> :</span></p></td>
|
234
|
-
<td>the items
|
235
|
-
</td>
|
230
|
+
<td>the items.</td>
|
236
231
|
</tr>
|
237
232
|
</tbody>
|
238
233
|
</table></div>
|
239
234
|
</div>
|
240
235
|
<hr>
|
241
|
-
<div class="refsect2"
|
236
|
+
<div class="refsect2">
|
242
237
|
<a name="gtk-list-prepend-items"></a><h3>gtk_list_prepend_items ()</h3>
|
243
238
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_prepend_items (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
244
239
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *items</code></em>);</pre>
|
245
|
-
<div class="warning"
|
240
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
246
241
|
<h3 class="title">Warning</h3>
|
247
242
|
<p><code class="literal">gtk_list_prepend_items</code> is deprecated and should not be used in newly-written code.</p>
|
248
243
|
</div>
|
@@ -254,23 +249,21 @@ Inserts <em class="parameter"><code>items</code></em> at the beginning of the <e
|
|
254
249
|
<tbody>
|
255
250
|
<tr>
|
256
251
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
257
|
-
<td>the list widget
|
258
|
-
</td>
|
252
|
+
<td>the list widget.</td>
|
259
253
|
</tr>
|
260
254
|
<tr>
|
261
255
|
<td><p><span class="term"><em class="parameter"><code>items</code></em> :</span></p></td>
|
262
|
-
<td>the items
|
263
|
-
</td>
|
256
|
+
<td>the items.</td>
|
264
257
|
</tr>
|
265
258
|
</tbody>
|
266
259
|
</table></div>
|
267
260
|
</div>
|
268
261
|
<hr>
|
269
|
-
<div class="refsect2"
|
262
|
+
<div class="refsect2">
|
270
263
|
<a name="gtk-list-remove-items"></a><h3>gtk_list_remove_items ()</h3>
|
271
264
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_remove_items (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
272
265
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *items</code></em>);</pre>
|
273
|
-
<div class="warning"
|
266
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
274
267
|
<h3 class="title">Warning</h3>
|
275
268
|
<p><code class="literal">gtk_list_remove_items</code> is deprecated and should not be used in newly-written code.</p>
|
276
269
|
</div>
|
@@ -282,23 +275,21 @@ Removes the <em class="parameter"><code>items</code></em> from the <em class="pa
|
|
282
275
|
<tbody>
|
283
276
|
<tr>
|
284
277
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
285
|
-
<td>the list widget
|
286
|
-
</td>
|
278
|
+
<td>the list widget.</td>
|
287
279
|
</tr>
|
288
280
|
<tr>
|
289
281
|
<td><p><span class="term"><em class="parameter"><code>items</code></em> :</span></p></td>
|
290
|
-
<td>the items to remove
|
291
|
-
</td>
|
282
|
+
<td>the items to remove.</td>
|
292
283
|
</tr>
|
293
284
|
</tbody>
|
294
285
|
</table></div>
|
295
286
|
</div>
|
296
287
|
<hr>
|
297
|
-
<div class="refsect2"
|
288
|
+
<div class="refsect2">
|
298
289
|
<a name="gtk-list-remove-items-no-unref"></a><h3>gtk_list_remove_items_no_unref ()</h3>
|
299
290
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_remove_items_no_unref (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
300
291
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *items</code></em>);</pre>
|
301
|
-
<div class="warning"
|
292
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
302
293
|
<h3 class="title">Warning</h3>
|
303
294
|
<p><code class="literal">gtk_list_remove_items_no_unref</code> is deprecated and should not be used in newly-written code.</p>
|
304
295
|
</div>
|
@@ -311,24 +302,22 @@ may be useful if you want to move the items from one list to another.
|
|
311
302
|
<tbody>
|
312
303
|
<tr>
|
313
304
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
314
|
-
<td>the list widget
|
315
|
-
</td>
|
305
|
+
<td>the list widget.</td>
|
316
306
|
</tr>
|
317
307
|
<tr>
|
318
308
|
<td><p><span class="term"><em class="parameter"><code>items</code></em> :</span></p></td>
|
319
|
-
<td>the items
|
320
|
-
</td>
|
309
|
+
<td>the items.</td>
|
321
310
|
</tr>
|
322
311
|
</tbody>
|
323
312
|
</table></div>
|
324
313
|
</div>
|
325
314
|
<hr>
|
326
|
-
<div class="refsect2"
|
315
|
+
<div class="refsect2">
|
327
316
|
<a name="gtk-list-clear-items"></a><h3>gtk_list_clear_items ()</h3>
|
328
317
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_clear_items (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
329
318
|
<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>,
|
330
319
|
<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</code></em>);</pre>
|
331
|
-
<div class="warning"
|
320
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
332
321
|
<h3 class="title">Warning</h3>
|
333
322
|
<p><code class="literal">gtk_list_clear_items</code> is deprecated and should not be used in newly-written code.</p>
|
334
323
|
</div>
|
@@ -344,28 +333,25 @@ done.
|
|
344
333
|
<tbody>
|
345
334
|
<tr>
|
346
335
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
347
|
-
<td>the list widget
|
348
|
-
</td>
|
336
|
+
<td>the list widget.</td>
|
349
337
|
</tr>
|
350
338
|
<tr>
|
351
339
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
352
|
-
<td>the index of the first item to remove
|
353
|
-
</td>
|
340
|
+
<td>the index of the first item to remove.</td>
|
354
341
|
</tr>
|
355
342
|
<tr>
|
356
343
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
357
|
-
<td>the index of the lest item to remove plus one
|
358
|
-
</td>
|
344
|
+
<td>the index of the lest item to remove plus one.</td>
|
359
345
|
</tr>
|
360
346
|
</tbody>
|
361
347
|
</table></div>
|
362
348
|
</div>
|
363
349
|
<hr>
|
364
|
-
<div class="refsect2"
|
350
|
+
<div class="refsect2">
|
365
351
|
<a name="gtk-list-select-item"></a><h3>gtk_list_select_item ()</h3>
|
366
352
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_select_item (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
367
353
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item</code></em>);</pre>
|
368
|
-
<div class="warning"
|
354
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
369
355
|
<h3 class="title">Warning</h3>
|
370
356
|
<p><code class="literal">gtk_list_select_item</code> is deprecated and should not be used in newly-written code.</p>
|
371
357
|
</div>
|
@@ -378,23 +364,21 @@ is out of bounds. The signal GtkList::select-child will be emitted.
|
|
378
364
|
<tbody>
|
379
365
|
<tr>
|
380
366
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
381
|
-
<td>the list widget
|
382
|
-
</td>
|
367
|
+
<td>the list widget.</td>
|
383
368
|
</tr>
|
384
369
|
<tr>
|
385
370
|
<td><p><span class="term"><em class="parameter"><code>item</code></em> :</span></p></td>
|
386
|
-
<td>the index of the child to select
|
387
|
-
</td>
|
371
|
+
<td>the index of the child to select.</td>
|
388
372
|
</tr>
|
389
373
|
</tbody>
|
390
374
|
</table></div>
|
391
375
|
</div>
|
392
376
|
<hr>
|
393
|
-
<div class="refsect2"
|
377
|
+
<div class="refsect2">
|
394
378
|
<a name="gtk-list-unselect-item"></a><h3>gtk_list_unselect_item ()</h3>
|
395
379
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_unselect_item (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
396
380
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item</code></em>);</pre>
|
397
|
-
<div class="warning"
|
381
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
398
382
|
<h3 class="title">Warning</h3>
|
399
383
|
<p><code class="literal">gtk_list_unselect_item</code> is deprecated and should not be used in newly-written code.</p>
|
400
384
|
</div>
|
@@ -408,23 +392,21 @@ emitted.
|
|
408
392
|
<tbody>
|
409
393
|
<tr>
|
410
394
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
411
|
-
<td>the list widget
|
412
|
-
</td>
|
395
|
+
<td>the list widget.</td>
|
413
396
|
</tr>
|
414
397
|
<tr>
|
415
398
|
<td><p><span class="term"><em class="parameter"><code>item</code></em> :</span></p></td>
|
416
|
-
<td>the index of the child to unselect
|
417
|
-
</td>
|
399
|
+
<td>the index of the child to unselect.</td>
|
418
400
|
</tr>
|
419
401
|
</tbody>
|
420
402
|
</table></div>
|
421
403
|
</div>
|
422
404
|
<hr>
|
423
|
-
<div class="refsect2"
|
405
|
+
<div class="refsect2">
|
424
406
|
<a name="gtk-list-select-child"></a><h3>gtk_list_select_child ()</h3>
|
425
407
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_select_child (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
426
408
|
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
|
427
|
-
<div class="warning"
|
409
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
428
410
|
<h3 class="title">Warning</h3>
|
429
411
|
<p><code class="literal">gtk_list_select_child</code> is deprecated and should not be used in newly-written code.</p>
|
430
412
|
</div>
|
@@ -437,23 +419,21 @@ emitted.
|
|
437
419
|
<tbody>
|
438
420
|
<tr>
|
439
421
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
440
|
-
<td>the list widget
|
441
|
-
</td>
|
422
|
+
<td>the list widget</td>
|
442
423
|
</tr>
|
443
424
|
<tr>
|
444
425
|
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
445
|
-
<td>the child to select
|
446
|
-
</td>
|
426
|
+
<td>the child to select.</td>
|
447
427
|
</tr>
|
448
428
|
</tbody>
|
449
429
|
</table></div>
|
450
430
|
</div>
|
451
431
|
<hr>
|
452
|
-
<div class="refsect2"
|
432
|
+
<div class="refsect2">
|
453
433
|
<a name="gtk-list-unselect-child"></a><h3>gtk_list_unselect_child ()</h3>
|
454
434
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_unselect_child (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
455
435
|
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
|
456
|
-
<div class="warning"
|
436
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
457
437
|
<h3 class="title">Warning</h3>
|
458
438
|
<p><code class="literal">gtk_list_unselect_child</code> is deprecated and should not be used in newly-written code.</p>
|
459
439
|
</div>
|
@@ -466,23 +446,21 @@ emitted.
|
|
466
446
|
<tbody>
|
467
447
|
<tr>
|
468
448
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
469
|
-
<td>the list widget
|
470
|
-
</td>
|
449
|
+
<td>the list widget.</td>
|
471
450
|
</tr>
|
472
451
|
<tr>
|
473
452
|
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
474
|
-
<td>the child to unselect
|
475
|
-
</td>
|
453
|
+
<td>the child to unselect.</td>
|
476
454
|
</tr>
|
477
455
|
</tbody>
|
478
456
|
</table></div>
|
479
457
|
</div>
|
480
458
|
<hr>
|
481
|
-
<div class="refsect2"
|
459
|
+
<div class="refsect2">
|
482
460
|
<a name="gtk-list-child-position"></a><h3>gtk_list_child_position ()</h3>
|
483
461
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_list_child_position (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
484
462
|
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
|
485
|
-
<div class="warning"
|
463
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
486
464
|
<h3 class="title">Warning</h3>
|
487
465
|
<p><code class="literal">gtk_list_child_position</code> is deprecated and should not be used in newly-written code.</p>
|
488
466
|
</div>
|
@@ -494,28 +472,25 @@ Searches the children of <em class="parameter"><code>list</code></em> for the in
|
|
494
472
|
<tbody>
|
495
473
|
<tr>
|
496
474
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
497
|
-
<td>the list widget
|
498
|
-
</td>
|
475
|
+
<td>the list widget.</td>
|
499
476
|
</tr>
|
500
477
|
<tr>
|
501
478
|
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
502
|
-
<td>the child to look for
|
503
|
-
</td>
|
479
|
+
<td>the child to look for.</td>
|
504
480
|
</tr>
|
505
481
|
<tr>
|
506
482
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
507
|
-
<td>the index of the child, -1 if not found
|
508
|
-
</td>
|
483
|
+
<td>the index of the child, -1 if not found.</td>
|
509
484
|
</tr>
|
510
485
|
</tbody>
|
511
486
|
</table></div>
|
512
487
|
</div>
|
513
488
|
<hr>
|
514
|
-
<div class="refsect2"
|
489
|
+
<div class="refsect2">
|
515
490
|
<a name="gtk-list-set-selection-mode"></a><h3>gtk_list_set_selection_mode ()</h3>
|
516
491
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_set_selection_mode (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
517
492
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> mode</code></em>);</pre>
|
518
|
-
<div class="warning"
|
493
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
519
494
|
<h3 class="title">Warning</h3>
|
520
495
|
<p><code class="literal">gtk_list_set_selection_mode</code> is deprecated and should not be used in newly-written code.</p>
|
521
496
|
</div>
|
@@ -563,25 +538,23 @@ Shift key to select between the focus and the child pointed to.
|
|
563
538
|
<tbody>
|
564
539
|
<tr>
|
565
540
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
566
|
-
<td>the list widget
|
567
|
-
</td>
|
541
|
+
<td>the list widget.</td>
|
568
542
|
</tr>
|
569
543
|
<tr>
|
570
544
|
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
571
|
-
<td>the new selection mode
|
572
|
-
</td>
|
545
|
+
<td>the new selection mode.</td>
|
573
546
|
</tr>
|
574
547
|
</tbody>
|
575
548
|
</table></div>
|
576
549
|
</div>
|
577
550
|
<hr>
|
578
|
-
<div class="refsect2"
|
551
|
+
<div class="refsect2">
|
579
552
|
<a name="gtk-list-extend-selection"></a><h3>gtk_list_extend_selection ()</h3>
|
580
553
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_extend_selection (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
581
554
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> scroll_type</code></em>,
|
582
555
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> position</code></em>,
|
583
556
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> auto_start_selection</code></em>);</pre>
|
584
|
-
<div class="warning"
|
557
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
585
558
|
<h3 class="title">Warning</h3>
|
586
559
|
<p><code class="literal">gtk_list_extend_selection</code> is deprecated and should not be used in newly-written code.</p>
|
587
560
|
</div>
|
@@ -594,33 +567,29 @@ in <a class="link" href="gtk-Standard-Enumerations.html#GTK-SELECTION-EXTENDED:C
|
|
594
567
|
<tbody>
|
595
568
|
<tr>
|
596
569
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
597
|
-
<td>the list widget
|
598
|
-
</td>
|
570
|
+
<td>the list widget.</td>
|
599
571
|
</tr>
|
600
572
|
<tr>
|
601
573
|
<td><p><span class="term"><em class="parameter"><code>scroll_type</code></em> :</span></p></td>
|
602
|
-
<td>the direction and length
|
603
|
-
</td>
|
574
|
+
<td>the direction and length.</td>
|
604
575
|
</tr>
|
605
576
|
<tr>
|
606
577
|
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
607
|
-
<td>the position if <em class="parameter"><code>scroll_type</code></em> is <span class="type">GTK_SCROLL_JUMP</span
|
608
|
-
</td>
|
578
|
+
<td>the position if <em class="parameter"><code>scroll_type</code></em> is <span class="type">GTK_SCROLL_JUMP</span>.</td>
|
609
579
|
</tr>
|
610
580
|
<tr>
|
611
581
|
<td><p><span class="term"><em class="parameter"><code>auto_start_selection</code></em> :</span></p></td>
|
612
582
|
<td>if <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, <a class="link" href="GtkList.html#gtk-list-start-selection" title="gtk_list_start_selection ()"><code class="function">gtk_list_start_selection()</code></a> is automatically
|
613
|
-
carried out before extending the selection
|
614
|
-
</td>
|
583
|
+
carried out before extending the selection.</td>
|
615
584
|
</tr>
|
616
585
|
</tbody>
|
617
586
|
</table></div>
|
618
587
|
</div>
|
619
588
|
<hr>
|
620
|
-
<div class="refsect2"
|
589
|
+
<div class="refsect2">
|
621
590
|
<a name="gtk-list-start-selection"></a><h3>gtk_list_start_selection ()</h3>
|
622
591
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_start_selection (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>);</pre>
|
623
|
-
<div class="warning"
|
592
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
624
593
|
<h3 class="title">Warning</h3>
|
625
594
|
<p><code class="literal">gtk_list_start_selection</code> is deprecated and should not be used in newly-written code.</p>
|
626
595
|
</div>
|
@@ -632,16 +601,15 @@ Starts a selection (or part of selection) at the focused child. Only in
|
|
632
601
|
<col align="left" valign="top">
|
633
602
|
<tbody><tr>
|
634
603
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
635
|
-
<td>the list widget
|
636
|
-
</td>
|
604
|
+
<td>the list widget.</td>
|
637
605
|
</tr></tbody>
|
638
606
|
</table></div>
|
639
607
|
</div>
|
640
608
|
<hr>
|
641
|
-
<div class="refsect2"
|
609
|
+
<div class="refsect2">
|
642
610
|
<a name="gtk-list-end-selection"></a><h3>gtk_list_end_selection ()</h3>
|
643
611
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_end_selection (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>);</pre>
|
644
|
-
<div class="warning"
|
612
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
645
613
|
<h3 class="title">Warning</h3>
|
646
614
|
<p><code class="literal">gtk_list_end_selection</code> is deprecated and should not be used in newly-written code.</p>
|
647
615
|
</div>
|
@@ -653,16 +621,15 @@ Ends the selection. Used with <a class="link" href="GtkList.html#gtk-list-extend
|
|
653
621
|
<col align="left" valign="top">
|
654
622
|
<tbody><tr>
|
655
623
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
656
|
-
<td>the list widget
|
657
|
-
</td>
|
624
|
+
<td>the list widget.</td>
|
658
625
|
</tr></tbody>
|
659
626
|
</table></div>
|
660
627
|
</div>
|
661
628
|
<hr>
|
662
|
-
<div class="refsect2"
|
629
|
+
<div class="refsect2">
|
663
630
|
<a name="gtk-list-select-all"></a><h3>gtk_list_select_all ()</h3>
|
664
631
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_select_all (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>);</pre>
|
665
|
-
<div class="warning"
|
632
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
666
633
|
<h3 class="title">Warning</h3>
|
667
634
|
<p><code class="literal">gtk_list_select_all</code> is deprecated and should not be used in newly-written code.</p>
|
668
635
|
</div>
|
@@ -674,16 +641,15 @@ newly selected child.
|
|
674
641
|
<col align="left" valign="top">
|
675
642
|
<tbody><tr>
|
676
643
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
677
|
-
<td>the list widget
|
678
|
-
</td>
|
644
|
+
<td>the list widget.</td>
|
679
645
|
</tr></tbody>
|
680
646
|
</table></div>
|
681
647
|
</div>
|
682
648
|
<hr>
|
683
|
-
<div class="refsect2"
|
649
|
+
<div class="refsect2">
|
684
650
|
<a name="gtk-list-unselect-all"></a><h3>gtk_list_unselect_all ()</h3>
|
685
651
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_unselect_all (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>);</pre>
|
686
|
-
<div class="warning"
|
652
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
687
653
|
<h3 class="title">Warning</h3>
|
688
654
|
<p><code class="literal">gtk_list_unselect_all</code> is deprecated and should not be used in newly-written code.</p>
|
689
655
|
</div>
|
@@ -695,18 +661,17 @@ newly unselected child.
|
|
695
661
|
<col align="left" valign="top">
|
696
662
|
<tbody><tr>
|
697
663
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
698
|
-
<td>the list widget
|
699
|
-
</td>
|
664
|
+
<td>the list widget.</td>
|
700
665
|
</tr></tbody>
|
701
666
|
</table></div>
|
702
667
|
</div>
|
703
668
|
<hr>
|
704
|
-
<div class="refsect2"
|
669
|
+
<div class="refsect2">
|
705
670
|
<a name="gtk-list-scroll-horizontal"></a><h3>gtk_list_scroll_horizontal ()</h3>
|
706
671
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_scroll_horizontal (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
707
672
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> scroll_type</code></em>,
|
708
673
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> position</code></em>);</pre>
|
709
|
-
<div class="warning"
|
674
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
710
675
|
<h3 class="title">Warning</h3>
|
711
676
|
<p><code class="literal">gtk_list_scroll_horizontal</code> is deprecated and should not be used in newly-written code.</p>
|
712
677
|
</div>
|
@@ -725,13 +690,11 @@ scrolls to the ratio <em class="parameter"><code>position</code></em>: 0 is full
|
|
725
690
|
<tbody>
|
726
691
|
<tr>
|
727
692
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
728
|
-
<td>the list widget
|
729
|
-
</td>
|
693
|
+
<td>the list widget.</td>
|
730
694
|
</tr>
|
731
695
|
<tr>
|
732
696
|
<td><p><span class="term"><em class="parameter"><code>scroll_type</code></em> :</span></p></td>
|
733
|
-
<td>the scrolling type
|
734
|
-
</td>
|
697
|
+
<td>the scrolling type.</td>
|
735
698
|
</tr>
|
736
699
|
<tr>
|
737
700
|
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
@@ -742,12 +705,12 @@ scrolls to the ratio <em class="parameter"><code>position</code></em>: 0 is full
|
|
742
705
|
</table></div>
|
743
706
|
</div>
|
744
707
|
<hr>
|
745
|
-
<div class="refsect2"
|
708
|
+
<div class="refsect2">
|
746
709
|
<a name="gtk-list-scroll-vertical"></a><h3>gtk_list_scroll_vertical ()</h3>
|
747
710
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_scroll_vertical (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
748
711
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> scroll_type</code></em>,
|
749
712
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> position</code></em>);</pre>
|
750
|
-
<div class="warning"
|
713
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
751
714
|
<h3 class="title">Warning</h3>
|
752
715
|
<p><code class="literal">gtk_list_scroll_vertical</code> is deprecated and should not be used in newly-written code.</p>
|
753
716
|
</div>
|
@@ -766,13 +729,11 @@ scrolls to the ratio <em class="parameter"><code>position</code></em>: 0 is top,
|
|
766
729
|
<tbody>
|
767
730
|
<tr>
|
768
731
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
769
|
-
<td>the list widget
|
770
|
-
</td>
|
732
|
+
<td>the list widget.</td>
|
771
733
|
</tr>
|
772
734
|
<tr>
|
773
735
|
<td><p><span class="term"><em class="parameter"><code>scroll_type</code></em> :</span></p></td>
|
774
|
-
<td>the scrolling type
|
775
|
-
</td>
|
736
|
+
<td>the scrolling type.</td>
|
776
737
|
</tr>
|
777
738
|
<tr>
|
778
739
|
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
@@ -783,10 +744,10 @@ scrolls to the ratio <em class="parameter"><code>position</code></em>: 0 is top,
|
|
783
744
|
</table></div>
|
784
745
|
</div>
|
785
746
|
<hr>
|
786
|
-
<div class="refsect2"
|
747
|
+
<div class="refsect2">
|
787
748
|
<a name="gtk-list-toggle-add-mode"></a><h3>gtk_list_toggle_add_mode ()</h3>
|
788
749
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_toggle_add_mode (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>);</pre>
|
789
|
-
<div class="warning"
|
750
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
790
751
|
<h3 class="title">Warning</h3>
|
791
752
|
<p><code class="literal">gtk_list_toggle_add_mode</code> is deprecated and should not be used in newly-written code.</p>
|
792
753
|
</div>
|
@@ -798,16 +759,15 @@ in <a class="link" href="gtk-Standard-Enumerations.html#GTK-SELECTION-EXTENDED:C
|
|
798
759
|
<col align="left" valign="top">
|
799
760
|
<tbody><tr>
|
800
761
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
801
|
-
<td>the list widget
|
802
|
-
</td>
|
762
|
+
<td>the list widget.</td>
|
803
763
|
</tr></tbody>
|
804
764
|
</table></div>
|
805
765
|
</div>
|
806
766
|
<hr>
|
807
|
-
<div class="refsect2"
|
767
|
+
<div class="refsect2">
|
808
768
|
<a name="gtk-list-toggle-focus-row"></a><h3>gtk_list_toggle_focus_row ()</h3>
|
809
769
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_toggle_focus_row (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>);</pre>
|
810
|
-
<div class="warning"
|
770
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
811
771
|
<h3 class="title">Warning</h3>
|
812
772
|
<p><code class="literal">gtk_list_toggle_focus_row</code> is deprecated and should not be used in newly-written code.</p>
|
813
773
|
</div>
|
@@ -821,17 +781,16 @@ as the selection is always at the focus row.
|
|
821
781
|
<col align="left" valign="top">
|
822
782
|
<tbody><tr>
|
823
783
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
824
|
-
<td>the list widget
|
825
|
-
</td>
|
784
|
+
<td>the list widget.</td>
|
826
785
|
</tr></tbody>
|
827
786
|
</table></div>
|
828
787
|
</div>
|
829
788
|
<hr>
|
830
|
-
<div class="refsect2"
|
789
|
+
<div class="refsect2">
|
831
790
|
<a name="gtk-list-toggle-row"></a><h3>gtk_list_toggle_row ()</h3>
|
832
791
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_toggle_row (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>,
|
833
792
|
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *item</code></em>);</pre>
|
834
|
-
<div class="warning"
|
793
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
835
794
|
<h3 class="title">Warning</h3>
|
836
795
|
<p><code class="literal">gtk_list_toggle_row</code> is deprecated and should not be used in newly-written code.</p>
|
837
796
|
</div>
|
@@ -845,22 +804,20 @@ unselected.
|
|
845
804
|
<tbody>
|
846
805
|
<tr>
|
847
806
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
848
|
-
<td>the list widget
|
849
|
-
</td>
|
807
|
+
<td>the list widget.</td>
|
850
808
|
</tr>
|
851
809
|
<tr>
|
852
810
|
<td><p><span class="term"><em class="parameter"><code>item</code></em> :</span></p></td>
|
853
|
-
<td>the child to toggle
|
854
|
-
</td>
|
811
|
+
<td>the child to toggle.</td>
|
855
812
|
</tr>
|
856
813
|
</tbody>
|
857
814
|
</table></div>
|
858
815
|
</div>
|
859
816
|
<hr>
|
860
|
-
<div class="refsect2"
|
817
|
+
<div class="refsect2">
|
861
818
|
<a name="gtk-list-undo-selection"></a><h3>gtk_list_undo_selection ()</h3>
|
862
819
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_undo_selection (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>);</pre>
|
863
|
-
<div class="warning"
|
820
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
864
821
|
<h3 class="title">Warning</h3>
|
865
822
|
<p><code class="literal">gtk_list_undo_selection</code> is deprecated and should not be used in newly-written code.</p>
|
866
823
|
</div>
|
@@ -873,16 +830,15 @@ cleared. This function sometimes gives stranges "last states".
|
|
873
830
|
<col align="left" valign="top">
|
874
831
|
<tbody><tr>
|
875
832
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
876
|
-
<td>the list widget
|
877
|
-
</td>
|
833
|
+
<td>the list widget.</td>
|
878
834
|
</tr></tbody>
|
879
835
|
</table></div>
|
880
836
|
</div>
|
881
837
|
<hr>
|
882
|
-
<div class="refsect2"
|
838
|
+
<div class="refsect2">
|
883
839
|
<a name="gtk-list-end-drag-selection"></a><h3>gtk_list_end_drag_selection ()</h3>
|
884
840
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_list_end_drag_selection (<em class="parameter"><code><a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list</code></em>);</pre>
|
885
|
-
<div class="warning"
|
841
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
886
842
|
<h3 class="title">Warning</h3>
|
887
843
|
<p><code class="literal">gtk_list_end_drag_selection</code> is deprecated and should not be used in newly-written code.</p>
|
888
844
|
</div>
|
@@ -894,28 +850,27 @@ effect if a drag selection is not active.
|
|
894
850
|
<col align="left" valign="top">
|
895
851
|
<tbody><tr>
|
896
852
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
897
|
-
<td>the list widget
|
898
|
-
</td>
|
853
|
+
<td>the list widget.</td>
|
899
854
|
</tr></tbody>
|
900
855
|
</table></div>
|
901
856
|
</div>
|
902
857
|
</div>
|
903
|
-
<div class="refsect1"
|
858
|
+
<div class="refsect1">
|
904
859
|
<a name="GtkList.property-details"></a><h2>Property Details</h2>
|
905
|
-
<div class="refsect2"
|
860
|
+
<div class="refsect2">
|
906
861
|
<a name="GtkList--selection-mode"></a><h3>The <code class="literal">"selection-mode"</code> property</h3>
|
907
862
|
<pre class="programlisting"> "selection-mode" <a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> : Read / Write</pre>
|
908
863
|
<p></p>
|
909
864
|
<p>Default value: GTK_SELECTION_NONE</p>
|
910
865
|
</div>
|
911
866
|
</div>
|
912
|
-
<div class="refsect1"
|
867
|
+
<div class="refsect1">
|
913
868
|
<a name="GtkList.signal-details"></a><h2>Signal Details</h2>
|
914
|
-
<div class="refsect2"
|
869
|
+
<div class="refsect2">
|
915
870
|
<a name="GtkList-select-child"></a><h3>The <code class="literal">"select-child"</code> signal</h3>
|
916
871
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list,
|
917
872
|
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget,
|
918
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
|
873
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
|
919
874
|
<p>
|
920
875
|
The child <em class="parameter"><code>widget</code></em> has just been selected.
|
921
876
|
</p>
|
@@ -924,13 +879,11 @@ The child <em class="parameter"><code>widget</code></em> has just been selected.
|
|
924
879
|
<tbody>
|
925
880
|
<tr>
|
926
881
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
927
|
-
<td>the object which received the signal
|
928
|
-
</td>
|
882
|
+
<td>the object which received the signal.</td>
|
929
883
|
</tr>
|
930
884
|
<tr>
|
931
885
|
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
932
|
-
<td>the newly selected child
|
933
|
-
</td>
|
886
|
+
<td>the newly selected child.</td>
|
934
887
|
</tr>
|
935
888
|
<tr>
|
936
889
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -940,10 +893,10 @@ The child <em class="parameter"><code>widget</code></em> has just been selected.
|
|
940
893
|
</table></div>
|
941
894
|
</div>
|
942
895
|
<hr>
|
943
|
-
<div class="refsect2"
|
896
|
+
<div class="refsect2">
|
944
897
|
<a name="GtkList-selection-changed"></a><h3>The <code class="literal">"selection-changed"</code> signal</h3>
|
945
898
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list,
|
946
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
|
899
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
|
947
900
|
<p>
|
948
901
|
The selection of the widget has just changed.
|
949
902
|
</p>
|
@@ -952,8 +905,7 @@ The selection of the widget has just changed.
|
|
952
905
|
<tbody>
|
953
906
|
<tr>
|
954
907
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
955
|
-
<td>the object which received the signal
|
956
|
-
</td>
|
908
|
+
<td>the object which received the signal.</td>
|
957
909
|
</tr>
|
958
910
|
<tr>
|
959
911
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -963,11 +915,11 @@ The selection of the widget has just changed.
|
|
963
915
|
</table></div>
|
964
916
|
</div>
|
965
917
|
<hr>
|
966
|
-
<div class="refsect2"
|
918
|
+
<div class="refsect2">
|
967
919
|
<a name="GtkList-unselect-child"></a><h3>The <code class="literal">"unselect-child"</code> signal</h3>
|
968
920
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkList.html" title="GtkList"><span class="type">GtkList</span></a> *list,
|
969
921
|
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget,
|
970
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
|
922
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
|
971
923
|
<p>
|
972
924
|
The child <em class="parameter"><code>widget</code></em> has just been unselected.
|
973
925
|
</p>
|
@@ -976,13 +928,11 @@ The child <em class="parameter"><code>widget</code></em> has just been unselecte
|
|
976
928
|
<tbody>
|
977
929
|
<tr>
|
978
930
|
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
979
|
-
<td>the object which received the signal
|
980
|
-
</td>
|
931
|
+
<td>the object which received the signal.</td>
|
981
932
|
</tr>
|
982
933
|
<tr>
|
983
934
|
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
984
|
-
<td>the newly unselected child
|
985
|
-
</td>
|
935
|
+
<td>the newly unselected child.</td>
|
986
936
|
</tr>
|
987
937
|
<tr>
|
988
938
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -992,7 +942,7 @@ The child <em class="parameter"><code>widget</code></em> has just been unselecte
|
|
992
942
|
</table></div>
|
993
943
|
</div>
|
994
944
|
</div>
|
995
|
-
<div class="refsect1"
|
945
|
+
<div class="refsect1">
|
996
946
|
<a name="GtkList.see-also"></a><h2>See Also</h2>
|
997
947
|
<p>
|
998
948
|
</p>
|
@@ -1017,6 +967,6 @@ type.</p></td>
|
|
1017
967
|
</div>
|
1018
968
|
<div class="footer">
|
1019
969
|
<hr>
|
1020
|
-
Generated by GTK-Doc V1.
|
970
|
+
Generated by GTK-Doc V1.17</div>
|
1021
971
|
</body>
|
1022
972
|
</html>
|