gtk2 1.0.3-x86-mingw32 → 1.1.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- 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>GtkActivatable</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="Actions.html" title="Action-based menus and toolbars">
|
9
9
|
<link rel="prev" href="GtkRecentAction.html" title="GtkRecentAction">
|
10
10
|
<link rel="next" href="SelectorWidgets.html" title="Selectors (File/Font/Color/Input Devices)">
|
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="GtkRecentAction.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="Actions.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="SelectorWidgets.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="#GtkActivatable.properties" class="shortcut">Properties</a>
|
35
35
|
</td></tr>
|
36
36
|
</table>
|
37
|
-
<div class="refentry"
|
37
|
+
<div class="refentry">
|
38
38
|
<a name="GtkActivatable"></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="GtkActivatable.synopsis"></a><h2>Synopsis</h2>
|
48
48
|
<pre class="synopsis">
|
49
49
|
#include <gtk/gtk.h>
|
50
50
|
|
51
51
|
<a class="link" href="GtkActivatable.html#GtkActivatable-struct" title="GtkActivatable">GtkActivatable</a>;
|
52
|
-
|
52
|
+
struct <a class="link" href="GtkActivatable.html#GtkActivatableIface" title="struct GtkActivatableIface">GtkActivatableIface</a>;
|
53
53
|
<span class="returnvalue">void</span> <a class="link" href="GtkActivatable.html#gtk-activatable-do-set-related-action" title="gtk_activatable_do_set_related_action ()">gtk_activatable_do_set_related_action</a>
|
54
54
|
(<em class="parameter"><code><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> *activatable</code></em>,
|
55
55
|
<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);
|
@@ -66,33 +66,33 @@
|
|
66
66
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_appearance</code></em>);
|
67
67
|
</pre>
|
68
68
|
</div>
|
69
|
-
<div class="refsect1"
|
69
|
+
<div class="refsect1">
|
70
70
|
<a name="GtkActivatable.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
71
71
|
<pre class="synopsis">
|
72
72
|
GInterface
|
73
73
|
+----GtkActivatable
|
74
74
|
</pre>
|
75
75
|
</div>
|
76
|
-
<div class="refsect1"
|
76
|
+
<div class="refsect1">
|
77
77
|
<a name="GtkActivatable.prerequisites"></a><h2>Prerequisites</h2>
|
78
78
|
<p>
|
79
79
|
GtkActivatable requires
|
80
80
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>.</p>
|
81
81
|
</div>
|
82
|
-
<div class="refsect1"
|
82
|
+
<div class="refsect1">
|
83
83
|
<a name="GtkActivatable.implementations"></a><h2>Known Implementations</h2>
|
84
84
|
<p>
|
85
85
|
GtkActivatable is implemented by
|
86
86
|
<a class="link" href="GtkButton.html" title="GtkButton">GtkButton</a>, <a class="link" href="GtkCheckButton.html" title="GtkCheckButton">GtkCheckButton</a>, <a class="link" href="gtk-gtkcheckmenuitem.html#GtkCheckMenuItem">GtkCheckMenuItem</a>, <a class="link" href="GtkColorButton.html" title="GtkColorButton">GtkColorButton</a>, <a class="link" href="GtkFontButton.html" title="GtkFontButton">GtkFontButton</a>, <a class="link" href="GtkImageMenuItem.html" title="GtkImageMenuItem">GtkImageMenuItem</a>, <a class="link" href="GtkLinkButton.html" title="GtkLinkButton">GtkLinkButton</a>, <a class="link" href="GtkMenuItem.html" title="GtkMenuItem">GtkMenuItem</a>, <a class="link" href="GtkMenuToolButton.html" title="GtkMenuToolButton">GtkMenuToolButton</a>, <a class="link" href="GtkOptionMenu.html" title="GtkOptionMenu">GtkOptionMenu</a>, <a class="link" href="GtkRadioButton.html" title="GtkRadioButton">GtkRadioButton</a>, <a class="link" href="GtkRadioMenuItem.html" title="GtkRadioMenuItem">GtkRadioMenuItem</a>, <a class="link" href="GtkRadioToolButton.html" title="GtkRadioToolButton">GtkRadioToolButton</a>, <a class="link" href="GtkRecentChooserMenu.html" title="GtkRecentChooserMenu">GtkRecentChooserMenu</a>, <a class="link" href="GtkScaleButton.html" title="GtkScaleButton">GtkScaleButton</a>, <a class="link" href="GtkSeparatorMenuItem.html" title="GtkSeparatorMenuItem">GtkSeparatorMenuItem</a>, <a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem">GtkSeparatorToolItem</a>, <a class="link" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem">GtkTearoffMenuItem</a>, <a class="link" href="GtkToggleButton.html" title="GtkToggleButton">GtkToggleButton</a>, <a class="link" href="GtkToggleToolButton.html" title="GtkToggleToolButton">GtkToggleToolButton</a>, <a class="link" href="GtkToolButton.html" title="GtkToolButton">GtkToolButton</a>, <a class="link" href="GtkToolItem.html" title="GtkToolItem">GtkToolItem</a> and <a class="link" href="GtkVolumeButton.html" title="GtkVolumeButton">GtkVolumeButton</a>.</p>
|
87
87
|
</div>
|
88
|
-
<div class="refsect1"
|
88
|
+
<div class="refsect1">
|
89
89
|
<a name="GtkActivatable.properties"></a><h2>Properties</h2>
|
90
90
|
<pre class="synopsis">
|
91
91
|
"<a class="link" href="GtkActivatable.html#GtkActivatable--related-action" title='The "related-action" property'>related-action</a>" <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a>* : Read / Write
|
92
92
|
"<a class="link" href="GtkActivatable.html#GtkActivatable--use-action-appearance" title='The "use-action-appearance" property'>use-action-appearance</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
93
93
|
</pre>
|
94
94
|
</div>
|
95
|
-
<div class="refsect1"
|
95
|
+
<div class="refsect1">
|
96
96
|
<a name="GtkActivatable.description"></a><h2>Description</h2>
|
97
97
|
<p>
|
98
98
|
Activatable widgets can be connected to a <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> and reflects
|
@@ -100,8 +100,10 @@ the state of its action. A <a class="link" href="GtkActivatable.html" title="Gtk
|
|
100
100
|
through its action, as they are responsible for activating their
|
101
101
|
related actions.
|
102
102
|
</p>
|
103
|
-
<
|
104
|
-
|
103
|
+
<p>
|
104
|
+
</p>
|
105
|
+
<div class="refsect2">
|
106
|
+
<a name="id1172732"></a><h3>Implementing GtkActivatable</h3>
|
105
107
|
<p>
|
106
108
|
When extending a class that is already <a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a>; it is only
|
107
109
|
necessary to implement the <a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a>-><code class="function">sync_action_properties()</code>
|
@@ -115,7 +117,7 @@ the action pointer and boolean flag on your instance, and calling
|
|
115
117
|
<a class="link" href="GtkActivatable.html#gtk-activatable-sync-action-properties" title="gtk_activatable_sync_action_properties ()"><code class="function">gtk_activatable_sync_action_properties()</code></a> at the appropriate times.
|
116
118
|
</p>
|
117
119
|
<div class="example">
|
118
|
-
<a name="
|
120
|
+
<a name="id1202715"></a><p class="title"><b>Example 39. A class fragment implementing <a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a></b></p>
|
119
121
|
<div class="example-contents">
|
120
122
|
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
121
123
|
<tbody>
|
@@ -550,19 +552,21 @@ the action pointer and boolean flag on your instance, and calling
|
|
550
552
|
</div>
|
551
553
|
<br class="example-break">
|
552
554
|
</div>
|
555
|
+
<p>
|
556
|
+
</p>
|
553
557
|
</div>
|
554
|
-
<div class="refsect1"
|
558
|
+
<div class="refsect1">
|
555
559
|
<a name="GtkActivatable.details"></a><h2>Details</h2>
|
556
|
-
<div class="refsect2"
|
560
|
+
<div class="refsect2">
|
557
561
|
<a name="GtkActivatable-struct"></a><h3>GtkActivatable</h3>
|
558
562
|
<pre class="programlisting">typedef struct _GtkActivatable GtkActivatable;</pre>
|
559
563
|
<p>
|
560
564
|
</p>
|
561
565
|
</div>
|
562
566
|
<hr>
|
563
|
-
<div class="refsect2"
|
564
|
-
<a name="GtkActivatableIface"></a><h3>GtkActivatableIface</h3>
|
565
|
-
<pre class="programlisting">
|
567
|
+
<div class="refsect2">
|
568
|
+
<a name="GtkActivatableIface"></a><h3>struct GtkActivatableIface</h3>
|
569
|
+
<pre class="programlisting">struct GtkActivatableIface {
|
566
570
|
GTypeInterface g_iface;
|
567
571
|
|
568
572
|
/* virtual table */
|
@@ -571,28 +575,26 @@ the action pointer and boolean flag on your instance, and calling
|
|
571
575
|
const gchar *property_name);
|
572
576
|
void (* sync_action_properties) (GtkActivatable *activatable,
|
573
577
|
GtkAction *action);
|
574
|
-
}
|
578
|
+
};
|
575
579
|
</pre>
|
576
580
|
<div class="variablelist"><table border="0">
|
577
581
|
<col align="left" valign="top">
|
578
582
|
<tbody>
|
579
583
|
<tr>
|
580
584
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GTypeInterface"><span class="type">GTypeInterface</span></a> <em class="structfield"><code><a name="GtkActivatableIface.g-iface"></a>g_iface</code></em>;</span></p></td>
|
581
|
-
<td>
|
582
|
-
</td>
|
585
|
+
<td></td>
|
583
586
|
</tr>
|
584
587
|
<tr>
|
585
588
|
<td><p><span class="term"><em class="structfield"><code><a name="GtkActivatableIface.update"></a>update</code></em> ()</span></p></td>
|
586
589
|
<td>Called to update the activatable when its related action's properties change.
|
587
590
|
You must check the <a class="link" href="GtkActivatable.html#GtkActivatable--use-action-appearance" title='The "use-action-appearance" property'><span class="type">"use-action-appearance"</span></a> property only apply action
|
588
|
-
properties that are meant to effect the appearance accordingly
|
589
|
-
</td>
|
591
|
+
properties that are meant to effect the appearance accordingly.</td>
|
590
592
|
</tr>
|
591
593
|
<tr>
|
592
594
|
<td><p><span class="term"><em class="structfield"><code><a name="GtkActivatableIface.sync-action-properties"></a>sync_action_properties</code></em> ()</span></p></td>
|
593
595
|
<td>Called to update the activatable completely, this is called internally when
|
594
596
|
<span class="type">"related-action"</span> property is set or unset and by the implementor when
|
595
|
-
<span class="type">"use-action-appearance"</span> changes.<div class="note"
|
597
|
+
<span class="type">"use-action-appearance"</span> changes.<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
596
598
|
<h3 class="title">Note</h3>
|
597
599
|
<p>This method can be called
|
598
600
|
with a <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> action at times</p>
|
@@ -604,7 +606,7 @@ with a <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macro
|
|
604
606
|
<p class="since">Since 2.16</p>
|
605
607
|
</div>
|
606
608
|
<hr>
|
607
|
-
<div class="refsect2"
|
609
|
+
<div class="refsect2">
|
608
610
|
<a name="gtk-activatable-do-set-related-action"></a><h3>gtk_activatable_do_set_related_action ()</h3>
|
609
611
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_activatable_do_set_related_action
|
610
612
|
(<em class="parameter"><code><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> *activatable</code></em>,
|
@@ -625,7 +627,7 @@ and registers to the action's proxy list.
|
|
625
627
|
</p>
|
626
628
|
<p>
|
627
629
|
</p>
|
628
|
-
<div class="note"
|
630
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
629
631
|
<h3 class="title">Note</h3>
|
630
632
|
<p>Be careful to call this before setting the local
|
631
633
|
copy of the <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> property, since this function uses
|
@@ -643,15 +645,14 @@ copy of the <a class="link" href="GtkAction.html" title="GtkAction"><span class=
|
|
643
645
|
</tr>
|
644
646
|
<tr>
|
645
647
|
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
|
646
|
-
<td>the <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> to set
|
647
|
-
</td>
|
648
|
+
<td>the <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> to set</td>
|
648
649
|
</tr>
|
649
650
|
</tbody>
|
650
651
|
</table></div>
|
651
652
|
<p class="since">Since 2.16</p>
|
652
653
|
</div>
|
653
654
|
<hr>
|
654
|
-
<div class="refsect2"
|
655
|
+
<div class="refsect2">
|
655
656
|
<a name="gtk-activatable-get-related-action"></a><h3>gtk_activatable_get_related_action ()</h3>
|
656
657
|
<pre class="programlisting"><a class="link" href="GtkAction.html" title="GtkAction"><span class="returnvalue">GtkAction</span></a> * gtk_activatable_get_related_action (<em class="parameter"><code><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> *activatable</code></em>);</pre>
|
657
658
|
<p>
|
@@ -667,8 +668,7 @@ Gets the related <a class="link" href="GtkAction.html" title="GtkAction"><span c
|
|
667
668
|
</tr>
|
668
669
|
<tr>
|
669
670
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
670
|
-
<td>
|
671
|
-
|
671
|
+
<td>the related <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> if one is set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
672
672
|
</td>
|
673
673
|
</tr>
|
674
674
|
</tbody>
|
@@ -676,7 +676,7 @@ Gets the related <a class="link" href="GtkAction.html" title="GtkAction"><span c
|
|
676
676
|
<p class="since">Since 2.16</p>
|
677
677
|
</div>
|
678
678
|
<hr>
|
679
|
-
<div class="refsect2"
|
679
|
+
<div class="refsect2">
|
680
680
|
<a name="gtk-activatable-get-use-action-appearance"></a><h3>gtk_activatable_get_use_action_appearance ()</h3>
|
681
681
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_activatable_get_use_action_appearance
|
682
682
|
(<em class="parameter"><code><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> *activatable</code></em>);</pre>
|
@@ -695,16 +695,14 @@ the action changes appearance.
|
|
695
695
|
</tr>
|
696
696
|
<tr>
|
697
697
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
698
|
-
<td>
|
699
|
-
|
700
|
-
</td>
|
698
|
+
<td>whether <em class="parameter"><code>activatable</code></em> uses its actions appearance.</td>
|
701
699
|
</tr>
|
702
700
|
</tbody>
|
703
701
|
</table></div>
|
704
702
|
<p class="since">Since 2.16</p>
|
705
703
|
</div>
|
706
704
|
<hr>
|
707
|
-
<div class="refsect2"
|
705
|
+
<div class="refsect2">
|
708
706
|
<a name="gtk-activatable-sync-action-properties"></a><h3>gtk_activatable_sync_action_properties ()</h3>
|
709
707
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_activatable_sync_action_properties
|
710
708
|
(<em class="parameter"><code><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> *activatable</code></em>,
|
@@ -725,7 +723,7 @@ or unset and by the implementing class when
|
|
725
723
|
</tr>
|
726
724
|
<tr>
|
727
725
|
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
|
728
|
-
<td>
|
726
|
+
<td>the related <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
729
727
|
</td>
|
730
728
|
</tr>
|
731
729
|
</tbody>
|
@@ -733,7 +731,7 @@ or unset and by the implementing class when
|
|
733
731
|
<p class="since">Since 2.16</p>
|
734
732
|
</div>
|
735
733
|
<hr>
|
736
|
-
<div class="refsect2"
|
734
|
+
<div class="refsect2">
|
737
735
|
<a name="gtk-activatable-set-related-action"></a><h3>gtk_activatable_set_related_action ()</h3>
|
738
736
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_activatable_set_related_action (<em class="parameter"><code><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> *activatable</code></em>,
|
739
737
|
<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
|
@@ -742,7 +740,7 @@ Sets the related action on the <em class="parameter"><code>activatable</code></e
|
|
742
740
|
</p>
|
743
741
|
<p>
|
744
742
|
</p>
|
745
|
-
<div class="note"
|
743
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
746
744
|
<h3 class="title">Note</h3>
|
747
745
|
<p><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> implementors need to handle the <a class="link" href="GtkActivatable.html#GtkActivatable--related-action" title='The "related-action" property'><span class="type">"related-action"</span></a>
|
748
746
|
property and call <a class="link" href="GtkActivatable.html#gtk-activatable-do-set-related-action" title="gtk_activatable_do_set_related_action ()"><code class="function">gtk_activatable_do_set_related_action()</code></a> when it changes.</p>
|
@@ -759,15 +757,14 @@ property and call <a class="link" href="GtkActivatable.html#gtk-activatable-do-s
|
|
759
757
|
</tr>
|
760
758
|
<tr>
|
761
759
|
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
|
762
|
-
<td>the <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> to set
|
763
|
-
</td>
|
760
|
+
<td>the <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> to set</td>
|
764
761
|
</tr>
|
765
762
|
</tbody>
|
766
763
|
</table></div>
|
767
764
|
<p class="since">Since 2.16</p>
|
768
765
|
</div>
|
769
766
|
<hr>
|
770
|
-
<div class="refsect2"
|
767
|
+
<div class="refsect2">
|
771
768
|
<a name="gtk-activatable-set-use-action-appearance"></a><h3>gtk_activatable_set_use_action_appearance ()</h3>
|
772
769
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_activatable_set_use_action_appearance
|
773
770
|
(<em class="parameter"><code><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> *activatable</code></em>,
|
@@ -778,7 +775,7 @@ when setting the related action or when the action changes appearance
|
|
778
775
|
</p>
|
779
776
|
<p>
|
780
777
|
</p>
|
781
|
-
<div class="note"
|
778
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
782
779
|
<h3 class="title">Note</h3>
|
783
780
|
<p><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> implementors need to handle the
|
784
781
|
<a class="link" href="GtkActivatable.html#GtkActivatable--use-action-appearance" title='The "use-action-appearance" property'><span class="type">"use-action-appearance"</span></a> property and call
|
@@ -797,17 +794,16 @@ if needed.</p>
|
|
797
794
|
</tr>
|
798
795
|
<tr>
|
799
796
|
<td><p><span class="term"><em class="parameter"><code>use_appearance</code></em> :</span></p></td>
|
800
|
-
<td>whether to use the actions appearance
|
801
|
-
</td>
|
797
|
+
<td>whether to use the actions appearance</td>
|
802
798
|
</tr>
|
803
799
|
</tbody>
|
804
800
|
</table></div>
|
805
801
|
<p class="since">Since 2.16</p>
|
806
802
|
</div>
|
807
803
|
</div>
|
808
|
-
<div class="refsect1"
|
804
|
+
<div class="refsect1">
|
809
805
|
<a name="GtkActivatable.property-details"></a><h2>Property Details</h2>
|
810
|
-
<div class="refsect2"
|
806
|
+
<div class="refsect2">
|
811
807
|
<a name="GtkActivatable--related-action"></a><h3>The <code class="literal">"related-action"</code> property</h3>
|
812
808
|
<pre class="programlisting"> "related-action" <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a>* : Read / Write</pre>
|
813
809
|
<p>
|
@@ -816,7 +812,7 @@ updates from for various states and possibly appearance.
|
|
816
812
|
</p>
|
817
813
|
<p>
|
818
814
|
</p>
|
819
|
-
<div class="note"
|
815
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
820
816
|
<h3 class="title">Note</h3>
|
821
817
|
<p><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> implementors need to handle the this property and
|
822
818
|
call <a class="link" href="GtkActivatable.html#gtk-activatable-do-set-related-action" title="gtk_activatable_do_set_related_action ()"><code class="function">gtk_activatable_do_set_related_action()</code></a> when it changes.</p>
|
@@ -826,7 +822,7 @@ call <a class="link" href="GtkActivatable.html#gtk-activatable-do-set-related-ac
|
|
826
822
|
<p class="since">Since 2.16</p>
|
827
823
|
</div>
|
828
824
|
<hr>
|
829
|
-
<div class="refsect2"
|
825
|
+
<div class="refsect2">
|
830
826
|
<a name="GtkActivatable--use-action-appearance"></a><h3>The <code class="literal">"use-action-appearance"</code> property</h3>
|
831
827
|
<pre class="programlisting"> "use-action-appearance" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
832
828
|
<p>
|
@@ -840,7 +836,7 @@ should be ignored by the <a class="link" href="GtkActivatable.html" title="GtkAc
|
|
840
836
|
</p>
|
841
837
|
<p>
|
842
838
|
</p>
|
843
|
-
<div class="note"
|
839
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
844
840
|
<h3 class="title">Note</h3>
|
845
841
|
<p><a class="link" href="GtkActivatable.html" title="GtkActivatable"><span class="type">GtkActivatable</span></a> implementors need to handle this property
|
846
842
|
and call <a class="link" href="GtkActivatable.html#gtk-activatable-sync-action-properties" title="gtk_activatable_sync_action_properties ()"><code class="function">gtk_activatable_sync_action_properties()</code></a> on the activatable
|
@@ -855,6 +851,6 @@ widget when it changes.</p>
|
|
855
851
|
</div>
|
856
852
|
<div class="footer">
|
857
853
|
<hr>
|
858
|
-
Generated by GTK-Doc V1.
|
854
|
+
Generated by GTK-Doc V1.17</div>
|
859
855
|
</body>
|
860
856
|
</html>
|
@@ -4,11 +4,11 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkAdjustment</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="MiscObjects.html" title="Miscellaneous">
|
9
9
|
<link rel="prev" href="MiscObjects.html" title="Miscellaneous">
|
10
10
|
<link rel="next" href="GtkArrow.html" title="GtkArrow">
|
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="MiscObjects.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="MiscObjects.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="GtkArrow.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="#GtkAdjustment.signals" class="shortcut">Signals</a>
|
33
33
|
</td></tr>
|
34
34
|
</table>
|
35
|
-
<div class="refentry"
|
35
|
+
<div class="refentry">
|
36
36
|
<a name="GtkAdjustment"></a><div class="titlepage"></div>
|
37
37
|
<div class="refnamediv"><table width="100%"><tr>
|
38
38
|
<td valign="top">
|
@@ -41,13 +41,13 @@
|
|
41
41
|
</td>
|
42
42
|
<td valign="top" align="right"></td>
|
43
43
|
</tr></table></div>
|
44
|
-
<div class="refsynopsisdiv"
|
44
|
+
<div class="refsynopsisdiv">
|
45
45
|
<a name="GtkAdjustment.synopsis"></a><h2>Synopsis</h2>
|
46
46
|
<pre class="synopsis">
|
47
47
|
#include <gtk/gtk.h>
|
48
48
|
|
49
|
-
|
50
|
-
<a class="link" href="GtkObject.html" title="GtkObject"><span class="returnvalue">GtkObject</span></a
|
49
|
+
struct <a class="link" href="GtkAdjustment.html#GtkAdjustment-struct" title="struct GtkAdjustment">GtkAdjustment</a>;
|
50
|
+
<a class="link" href="GtkObject.html" title="GtkObject"><span class="returnvalue">GtkObject</span></a> * <a class="link" href="GtkAdjustment.html#gtk-adjustment-new" title="gtk_adjustment_new ()">gtk_adjustment_new</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> value</code></em>,
|
51
51
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> lower</code></em>,
|
52
52
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> upper</code></em>,
|
53
53
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> step_increment</code></em>,
|
@@ -85,7 +85,7 @@
|
|
85
85
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> upper</code></em>);
|
86
86
|
</pre>
|
87
87
|
</div>
|
88
|
-
<div class="refsect1"
|
88
|
+
<div class="refsect1">
|
89
89
|
<a name="GtkAdjustment.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
90
90
|
<pre class="synopsis">
|
91
91
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
@@ -94,7 +94,7 @@
|
|
94
94
|
+----GtkAdjustment
|
95
95
|
</pre>
|
96
96
|
</div>
|
97
|
-
<div class="refsect1"
|
97
|
+
<div class="refsect1">
|
98
98
|
<a name="GtkAdjustment.properties"></a><h2>Properties</h2>
|
99
99
|
<pre class="synopsis">
|
100
100
|
"<a class="link" href="GtkAdjustment.html#GtkAdjustment--lower" title='The "lower" property'>lower</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write
|
@@ -105,14 +105,14 @@
|
|
105
105
|
"<a class="link" href="GtkAdjustment.html#GtkAdjustment--value" title='The "value" property'>value</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write
|
106
106
|
</pre>
|
107
107
|
</div>
|
108
|
-
<div class="refsect1"
|
108
|
+
<div class="refsect1">
|
109
109
|
<a name="GtkAdjustment.signals"></a><h2>Signals</h2>
|
110
110
|
<pre class="synopsis">
|
111
|
-
"<a class="link" href="GtkAdjustment.html#GtkAdjustment-changed" title='The "changed" signal'>changed</a>" :
|
112
|
-
"<a class="link" href="GtkAdjustment.html#GtkAdjustment-value-changed" title='The "value-changed" signal'>value-changed</a>" :
|
111
|
+
"<a class="link" href="GtkAdjustment.html#GtkAdjustment-changed" title='The "changed" signal'>changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-NO-RECURSE:CAPS"><code class="literal">No Recursion</code></a>
|
112
|
+
"<a class="link" href="GtkAdjustment.html#GtkAdjustment-value-changed" title='The "value-changed" signal'>value-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-NO-RECURSE:CAPS"><code class="literal">No Recursion</code></a>
|
113
113
|
</pre>
|
114
114
|
</div>
|
115
|
-
<div class="refsect1"
|
115
|
+
<div class="refsect1">
|
116
116
|
<a name="GtkAdjustment.description"></a><h2>Description</h2>
|
117
117
|
<p>
|
118
118
|
The <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> object represents a value which has an associated lower
|
@@ -132,13 +132,13 @@ after changing the value and its bounds. This results in the emission of the
|
|
132
132
|
"value_changed" or "changed" signal respectively.
|
133
133
|
</p>
|
134
134
|
</div>
|
135
|
-
<div class="refsect1"
|
135
|
+
<div class="refsect1">
|
136
136
|
<a name="GtkAdjustment.details"></a><h2>Details</h2>
|
137
|
-
<div class="refsect2"
|
138
|
-
<a name="GtkAdjustment-struct"></a><h3>GtkAdjustment</h3>
|
139
|
-
<pre class="programlisting">
|
137
|
+
<div class="refsect2">
|
138
|
+
<a name="GtkAdjustment-struct"></a><h3>struct GtkAdjustment</h3>
|
139
|
+
<pre class="programlisting">struct GtkAdjustment;</pre>
|
140
140
|
<p>
|
141
|
-
The <a class="link" href="GtkAdjustment.html#GtkAdjustment-struct" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> struct contains the following fields.
|
141
|
+
The <a class="link" href="GtkAdjustment.html#GtkAdjustment-struct" title="struct GtkAdjustment"><span class="type">GtkAdjustment</span></a> struct contains the following fields.
|
142
142
|
</p>
|
143
143
|
<div class="informaltable"><table width="100%" border="0">
|
144
144
|
<colgroup>
|
@@ -190,9 +190,9 @@ In a <a class="link" href="GtkScrollbar.html" title="GtkScrollbar"><span class="
|
|
190
190
|
</p>
|
191
191
|
</div>
|
192
192
|
<hr>
|
193
|
-
<div class="refsect2"
|
193
|
+
<div class="refsect2">
|
194
194
|
<a name="gtk-adjustment-new"></a><h3>gtk_adjustment_new ()</h3>
|
195
|
-
<pre class="programlisting"><a class="link" href="GtkObject.html" title="GtkObject"><span class="returnvalue">GtkObject</span></a
|
195
|
+
<pre class="programlisting"><a class="link" href="GtkObject.html" title="GtkObject"><span class="returnvalue">GtkObject</span></a> * gtk_adjustment_new (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> value</code></em>,
|
196
196
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> lower</code></em>,
|
197
197
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> upper</code></em>,
|
198
198
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> step_increment</code></em>,
|
@@ -206,44 +206,37 @@ Creates a new <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><s
|
|
206
206
|
<tbody>
|
207
207
|
<tr>
|
208
208
|
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
209
|
-
<td>the initial value
|
210
|
-
</td>
|
209
|
+
<td>the initial value.</td>
|
211
210
|
</tr>
|
212
211
|
<tr>
|
213
212
|
<td><p><span class="term"><em class="parameter"><code>lower</code></em> :</span></p></td>
|
214
|
-
<td>the minimum value
|
215
|
-
</td>
|
213
|
+
<td>the minimum value.</td>
|
216
214
|
</tr>
|
217
215
|
<tr>
|
218
216
|
<td><p><span class="term"><em class="parameter"><code>upper</code></em> :</span></p></td>
|
219
|
-
<td>the maximum value
|
220
|
-
</td>
|
217
|
+
<td>the maximum value.</td>
|
221
218
|
</tr>
|
222
219
|
<tr>
|
223
220
|
<td><p><span class="term"><em class="parameter"><code>step_increment</code></em> :</span></p></td>
|
224
|
-
<td>the step increment
|
225
|
-
</td>
|
221
|
+
<td>the step increment.</td>
|
226
222
|
</tr>
|
227
223
|
<tr>
|
228
224
|
<td><p><span class="term"><em class="parameter"><code>page_increment</code></em> :</span></p></td>
|
229
|
-
<td>the page increment
|
230
|
-
</td>
|
225
|
+
<td>the page increment.</td>
|
231
226
|
</tr>
|
232
227
|
<tr>
|
233
228
|
<td><p><span class="term"><em class="parameter"><code>page_size</code></em> :</span></p></td>
|
234
|
-
<td>the page size
|
235
|
-
</td>
|
229
|
+
<td>the page size.</td>
|
236
230
|
</tr>
|
237
231
|
<tr>
|
238
232
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
239
|
-
<td>a new <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a
|
240
|
-
</td>
|
233
|
+
<td>a new <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>.</td>
|
241
234
|
</tr>
|
242
235
|
</tbody>
|
243
236
|
</table></div>
|
244
237
|
</div>
|
245
238
|
<hr>
|
246
|
-
<div class="refsect2"
|
239
|
+
<div class="refsect2">
|
247
240
|
<a name="gtk-adjustment-get-value"></a><h3>gtk_adjustment_get_value ()</h3>
|
248
241
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_adjustment_get_value (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
249
242
|
<p>
|
@@ -260,14 +253,13 @@ Gets the current value of the adjustment. See
|
|
260
253
|
</tr>
|
261
254
|
<tr>
|
262
255
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
263
|
-
<td>
|
264
|
-
</td>
|
256
|
+
<td>The current value of the adjustment.</td>
|
265
257
|
</tr>
|
266
258
|
</tbody>
|
267
259
|
</table></div>
|
268
260
|
</div>
|
269
261
|
<hr>
|
270
|
-
<div class="refsect2"
|
262
|
+
<div class="refsect2">
|
271
263
|
<a name="gtk-adjustment-set-value"></a><h3>gtk_adjustment_set_value ()</h3>
|
272
264
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_set_value (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>,
|
273
265
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> value</code></em>);</pre>
|
@@ -286,19 +278,17 @@ range of allowed values goes from <code class="literal">adjustment->lower</co
|
|
286
278
|
<tbody>
|
287
279
|
<tr>
|
288
280
|
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
289
|
-
<td>a <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a
|
290
|
-
</td>
|
281
|
+
<td>a <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>.</td>
|
291
282
|
</tr>
|
292
283
|
<tr>
|
293
284
|
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
294
|
-
<td>the new value
|
295
|
-
</td>
|
285
|
+
<td>the new value.</td>
|
296
286
|
</tr>
|
297
287
|
</tbody>
|
298
288
|
</table></div>
|
299
289
|
</div>
|
300
290
|
<hr>
|
301
|
-
<div class="refsect2"
|
291
|
+
<div class="refsect2">
|
302
292
|
<a name="gtk-adjustment-clamp-page"></a><h3>gtk_adjustment_clamp_page ()</h3>
|
303
293
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_clamp_page (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>,
|
304
294
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> lower</code></em>,
|
@@ -316,24 +306,21 @@ A "changed" signal will be emitted if the value is changed.
|
|
316
306
|
<tbody>
|
317
307
|
<tr>
|
318
308
|
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
319
|
-
<td>a <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a
|
320
|
-
</td>
|
309
|
+
<td>a <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>.</td>
|
321
310
|
</tr>
|
322
311
|
<tr>
|
323
312
|
<td><p><span class="term"><em class="parameter"><code>lower</code></em> :</span></p></td>
|
324
|
-
<td>the lower value
|
325
|
-
</td>
|
313
|
+
<td>the lower value.</td>
|
326
314
|
</tr>
|
327
315
|
<tr>
|
328
316
|
<td><p><span class="term"><em class="parameter"><code>upper</code></em> :</span></p></td>
|
329
|
-
<td>the upper value
|
330
|
-
</td>
|
317
|
+
<td>the upper value.</td>
|
331
318
|
</tr>
|
332
319
|
</tbody>
|
333
320
|
</table></div>
|
334
321
|
</div>
|
335
322
|
<hr>
|
336
|
-
<div class="refsect2"
|
323
|
+
<div class="refsect2">
|
337
324
|
<a name="gtk-adjustment-changed"></a><h3>gtk_adjustment_changed ()</h3>
|
338
325
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_changed (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
339
326
|
<p>
|
@@ -351,7 +338,7 @@ changed any of the <a class="link" href="GtkAdjustment.html" title="GtkAdjustmen
|
|
351
338
|
</table></div>
|
352
339
|
</div>
|
353
340
|
<hr>
|
354
|
-
<div class="refsect2"
|
341
|
+
<div class="refsect2">
|
355
342
|
<a name="gtk-adjustment-value-changed"></a><h3>gtk_adjustment_value_changed ()</h3>
|
356
343
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_value_changed (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
357
344
|
<p>
|
@@ -369,7 +356,7 @@ changed the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><spa
|
|
369
356
|
</table></div>
|
370
357
|
</div>
|
371
358
|
<hr>
|
372
|
-
<div class="refsect2"
|
359
|
+
<div class="refsect2">
|
373
360
|
<a name="gtk-adjustment-configure"></a><h3>gtk_adjustment_configure ()</h3>
|
374
361
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_configure (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>,
|
375
362
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> value</code></em>,
|
@@ -396,40 +383,34 @@ of compressing multiple emissions of "changed" into one.
|
|
396
383
|
</tr>
|
397
384
|
<tr>
|
398
385
|
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
399
|
-
<td>the new value
|
400
|
-
</td>
|
386
|
+
<td>the new value</td>
|
401
387
|
</tr>
|
402
388
|
<tr>
|
403
389
|
<td><p><span class="term"><em class="parameter"><code>lower</code></em> :</span></p></td>
|
404
|
-
<td>the new minimum value
|
405
|
-
</td>
|
390
|
+
<td>the new minimum value</td>
|
406
391
|
</tr>
|
407
392
|
<tr>
|
408
393
|
<td><p><span class="term"><em class="parameter"><code>upper</code></em> :</span></p></td>
|
409
|
-
<td>the new maximum value
|
410
|
-
</td>
|
394
|
+
<td>the new maximum value</td>
|
411
395
|
</tr>
|
412
396
|
<tr>
|
413
397
|
<td><p><span class="term"><em class="parameter"><code>step_increment</code></em> :</span></p></td>
|
414
|
-
<td>the new step increment
|
415
|
-
</td>
|
398
|
+
<td>the new step increment</td>
|
416
399
|
</tr>
|
417
400
|
<tr>
|
418
401
|
<td><p><span class="term"><em class="parameter"><code>page_increment</code></em> :</span></p></td>
|
419
|
-
<td>the new page increment
|
420
|
-
</td>
|
402
|
+
<td>the new page increment</td>
|
421
403
|
</tr>
|
422
404
|
<tr>
|
423
405
|
<td><p><span class="term"><em class="parameter"><code>page_size</code></em> :</span></p></td>
|
424
|
-
<td>the new page size
|
425
|
-
</td>
|
406
|
+
<td>the new page size</td>
|
426
407
|
</tr>
|
427
408
|
</tbody>
|
428
409
|
</table></div>
|
429
410
|
<p class="since">Since 2.14</p>
|
430
411
|
</div>
|
431
412
|
<hr>
|
432
|
-
<div class="refsect2"
|
413
|
+
<div class="refsect2">
|
433
414
|
<a name="gtk-adjustment-get-lower"></a><h3>gtk_adjustment_get_lower ()</h3>
|
434
415
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_adjustment_get_lower (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
435
416
|
<p>
|
@@ -445,16 +426,14 @@ Retrieves the minimum value of the adjustment.
|
|
445
426
|
</tr>
|
446
427
|
<tr>
|
447
428
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
448
|
-
<td>
|
449
|
-
|
450
|
-
</td>
|
429
|
+
<td>The current minimum value of the adjustment.</td>
|
451
430
|
</tr>
|
452
431
|
</tbody>
|
453
432
|
</table></div>
|
454
433
|
<p class="since">Since 2.14</p>
|
455
434
|
</div>
|
456
435
|
<hr>
|
457
|
-
<div class="refsect2"
|
436
|
+
<div class="refsect2">
|
458
437
|
<a name="gtk-adjustment-get-page-increment"></a><h3>gtk_adjustment_get_page_increment ()</h3>
|
459
438
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_adjustment_get_page_increment (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
460
439
|
<p>
|
@@ -470,16 +449,14 @@ Retrieves the page increment of the adjustment.
|
|
470
449
|
</tr>
|
471
450
|
<tr>
|
472
451
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
473
|
-
<td>
|
474
|
-
|
475
|
-
</td>
|
452
|
+
<td>The current page increment of the adjustment.</td>
|
476
453
|
</tr>
|
477
454
|
</tbody>
|
478
455
|
</table></div>
|
479
456
|
<p class="since">Since 2.14</p>
|
480
457
|
</div>
|
481
458
|
<hr>
|
482
|
-
<div class="refsect2"
|
459
|
+
<div class="refsect2">
|
483
460
|
<a name="gtk-adjustment-get-page-size"></a><h3>gtk_adjustment_get_page_size ()</h3>
|
484
461
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_adjustment_get_page_size (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
485
462
|
<p>
|
@@ -495,16 +472,14 @@ Retrieves the page size of the adjustment.
|
|
495
472
|
</tr>
|
496
473
|
<tr>
|
497
474
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
498
|
-
<td>
|
499
|
-
|
500
|
-
</td>
|
475
|
+
<td>The current page size of the adjustment.</td>
|
501
476
|
</tr>
|
502
477
|
</tbody>
|
503
478
|
</table></div>
|
504
479
|
<p class="since">Since 2.14</p>
|
505
480
|
</div>
|
506
481
|
<hr>
|
507
|
-
<div class="refsect2"
|
482
|
+
<div class="refsect2">
|
508
483
|
<a name="gtk-adjustment-get-step-increment"></a><h3>gtk_adjustment_get_step_increment ()</h3>
|
509
484
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_adjustment_get_step_increment (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
510
485
|
<p>
|
@@ -520,16 +495,14 @@ Retrieves the step increment of the adjustment.
|
|
520
495
|
</tr>
|
521
496
|
<tr>
|
522
497
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
523
|
-
<td>
|
524
|
-
|
525
|
-
</td>
|
498
|
+
<td>The current step increment of the adjustment.</td>
|
526
499
|
</tr>
|
527
500
|
</tbody>
|
528
501
|
</table></div>
|
529
502
|
<p class="since">Since 2.14</p>
|
530
503
|
</div>
|
531
504
|
<hr>
|
532
|
-
<div class="refsect2"
|
505
|
+
<div class="refsect2">
|
533
506
|
<a name="gtk-adjustment-get-upper"></a><h3>gtk_adjustment_get_upper ()</h3>
|
534
507
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_adjustment_get_upper (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
535
508
|
<p>
|
@@ -545,16 +518,14 @@ Retrieves the maximum value of the adjustment.
|
|
545
518
|
</tr>
|
546
519
|
<tr>
|
547
520
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
548
|
-
<td>
|
549
|
-
|
550
|
-
</td>
|
521
|
+
<td>The current maximum value of the adjustment.</td>
|
551
522
|
</tr>
|
552
523
|
</tbody>
|
553
524
|
</table></div>
|
554
525
|
<p class="since">Since 2.14</p>
|
555
526
|
</div>
|
556
527
|
<hr>
|
557
|
-
<div class="refsect2"
|
528
|
+
<div class="refsect2">
|
558
529
|
<a name="gtk-adjustment-set-lower"></a><h3>gtk_adjustment_set_lower ()</h3>
|
559
530
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_set_lower (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>,
|
560
531
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> lower</code></em>);</pre>
|
@@ -585,15 +556,14 @@ of compressing "changed" emissions.
|
|
585
556
|
</tr>
|
586
557
|
<tr>
|
587
558
|
<td><p><span class="term"><em class="parameter"><code>lower</code></em> :</span></p></td>
|
588
|
-
<td>the new minimum value
|
589
|
-
</td>
|
559
|
+
<td>the new minimum value</td>
|
590
560
|
</tr>
|
591
561
|
</tbody>
|
592
562
|
</table></div>
|
593
563
|
<p class="since">Since 2.14</p>
|
594
564
|
</div>
|
595
565
|
<hr>
|
596
|
-
<div class="refsect2"
|
566
|
+
<div class="refsect2">
|
597
567
|
<a name="gtk-adjustment-set-page-increment"></a><h3>gtk_adjustment_set_page_increment ()</h3>
|
598
568
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_set_page_increment (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>,
|
599
569
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> page_increment</code></em>);</pre>
|
@@ -615,15 +585,14 @@ properties.
|
|
615
585
|
</tr>
|
616
586
|
<tr>
|
617
587
|
<td><p><span class="term"><em class="parameter"><code>page_increment</code></em> :</span></p></td>
|
618
|
-
<td>the new page increment
|
619
|
-
</td>
|
588
|
+
<td>the new page increment</td>
|
620
589
|
</tr>
|
621
590
|
</tbody>
|
622
591
|
</table></div>
|
623
592
|
<p class="since">Since 2.14</p>
|
624
593
|
</div>
|
625
594
|
<hr>
|
626
|
-
<div class="refsect2"
|
595
|
+
<div class="refsect2">
|
627
596
|
<a name="gtk-adjustment-set-page-size"></a><h3>gtk_adjustment_set_page_size ()</h3>
|
628
597
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_set_page_size (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>,
|
629
598
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> page_size</code></em>);</pre>
|
@@ -645,15 +614,14 @@ properties.
|
|
645
614
|
</tr>
|
646
615
|
<tr>
|
647
616
|
<td><p><span class="term"><em class="parameter"><code>page_size</code></em> :</span></p></td>
|
648
|
-
<td>the new page size
|
649
|
-
</td>
|
617
|
+
<td>the new page size</td>
|
650
618
|
</tr>
|
651
619
|
</tbody>
|
652
620
|
</table></div>
|
653
621
|
<p class="since">Since 2.14</p>
|
654
622
|
</div>
|
655
623
|
<hr>
|
656
|
-
<div class="refsect2"
|
624
|
+
<div class="refsect2">
|
657
625
|
<a name="gtk-adjustment-set-step-increment"></a><h3>gtk_adjustment_set_step_increment ()</h3>
|
658
626
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_set_step_increment (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>,
|
659
627
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> step_increment</code></em>);</pre>
|
@@ -675,15 +643,14 @@ properties.
|
|
675
643
|
</tr>
|
676
644
|
<tr>
|
677
645
|
<td><p><span class="term"><em class="parameter"><code>step_increment</code></em> :</span></p></td>
|
678
|
-
<td>the new step increment
|
679
|
-
</td>
|
646
|
+
<td>the new step increment</td>
|
680
647
|
</tr>
|
681
648
|
</tbody>
|
682
649
|
</table></div>
|
683
650
|
<p class="since">Since 2.14</p>
|
684
651
|
</div>
|
685
652
|
<hr>
|
686
|
-
<div class="refsect2"
|
653
|
+
<div class="refsect2">
|
687
654
|
<a name="gtk-adjustment-set-upper"></a><h3>gtk_adjustment_set_upper ()</h3>
|
688
655
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_adjustment_set_upper (<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>,
|
689
656
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> upper</code></em>);</pre>
|
@@ -710,17 +677,16 @@ properties.
|
|
710
677
|
</tr>
|
711
678
|
<tr>
|
712
679
|
<td><p><span class="term"><em class="parameter"><code>upper</code></em> :</span></p></td>
|
713
|
-
<td>the new maximum value
|
714
|
-
</td>
|
680
|
+
<td>the new maximum value</td>
|
715
681
|
</tr>
|
716
682
|
</tbody>
|
717
683
|
</table></div>
|
718
684
|
<p class="since">Since 2.14</p>
|
719
685
|
</div>
|
720
686
|
</div>
|
721
|
-
<div class="refsect1"
|
687
|
+
<div class="refsect1">
|
722
688
|
<a name="GtkAdjustment.property-details"></a><h2>Property Details</h2>
|
723
|
-
<div class="refsect2"
|
689
|
+
<div class="refsect2">
|
724
690
|
<a name="GtkAdjustment--lower"></a><h3>The <code class="literal">"lower"</code> property</h3>
|
725
691
|
<pre class="programlisting"> "lower" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
726
692
|
<p>
|
@@ -730,7 +696,7 @@ The minimum value of the adjustment.
|
|
730
696
|
<p class="since">Since 2.4</p>
|
731
697
|
</div>
|
732
698
|
<hr>
|
733
|
-
<div class="refsect2"
|
699
|
+
<div class="refsect2">
|
734
700
|
<a name="GtkAdjustment--page-increment"></a><h3>The <code class="literal">"page-increment"</code> property</h3>
|
735
701
|
<pre class="programlisting"> "page-increment" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
736
702
|
<p>
|
@@ -740,7 +706,7 @@ The page increment of the adjustment.
|
|
740
706
|
<p class="since">Since 2.4</p>
|
741
707
|
</div>
|
742
708
|
<hr>
|
743
|
-
<div class="refsect2"
|
709
|
+
<div class="refsect2">
|
744
710
|
<a name="GtkAdjustment--page-size"></a><h3>The <code class="literal">"page-size"</code> property</h3>
|
745
711
|
<pre class="programlisting"> "page-size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
746
712
|
<p>
|
@@ -753,7 +719,7 @@ if the adjustment is used for a simple scalar value, e.g. in a
|
|
753
719
|
<p class="since">Since 2.4</p>
|
754
720
|
</div>
|
755
721
|
<hr>
|
756
|
-
<div class="refsect2"
|
722
|
+
<div class="refsect2">
|
757
723
|
<a name="GtkAdjustment--step-increment"></a><h3>The <code class="literal">"step-increment"</code> property</h3>
|
758
724
|
<pre class="programlisting"> "step-increment" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
759
725
|
<p>
|
@@ -763,7 +729,7 @@ The step increment of the adjustment.
|
|
763
729
|
<p class="since">Since 2.4</p>
|
764
730
|
</div>
|
765
731
|
<hr>
|
766
|
-
<div class="refsect2"
|
732
|
+
<div class="refsect2">
|
767
733
|
<a name="GtkAdjustment--upper"></a><h3>The <code class="literal">"upper"</code> property</h3>
|
768
734
|
<pre class="programlisting"> "upper" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
769
735
|
<p>
|
@@ -776,7 +742,7 @@ property is nonzero.
|
|
776
742
|
<p class="since">Since 2.4</p>
|
777
743
|
</div>
|
778
744
|
<hr>
|
779
|
-
<div class="refsect2"
|
745
|
+
<div class="refsect2">
|
780
746
|
<a name="GtkAdjustment--value"></a><h3>The <code class="literal">"value"</code> property</h3>
|
781
747
|
<pre class="programlisting"> "value" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
782
748
|
<p>
|
@@ -786,12 +752,12 @@ The value of the adjustment.
|
|
786
752
|
<p class="since">Since 2.4</p>
|
787
753
|
</div>
|
788
754
|
</div>
|
789
|
-
<div class="refsect1"
|
755
|
+
<div class="refsect1">
|
790
756
|
<a name="GtkAdjustment.signal-details"></a><h2>Signal Details</h2>
|
791
|
-
<div class="refsect2"
|
757
|
+
<div class="refsect2">
|
792
758
|
<a name="GtkAdjustment-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
|
793
759
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment,
|
794
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
760
|
+
<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-NO-RECURSE:CAPS"><code class="literal">No Recursion</code></a></pre>
|
795
761
|
<p>
|
796
762
|
Emitted when one or more of the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> fields have been changed,
|
797
763
|
other than the value field.
|
@@ -801,8 +767,7 @@ other than the value field.
|
|
801
767
|
<tbody>
|
802
768
|
<tr>
|
803
769
|
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
804
|
-
<td>the object which received the signal
|
805
|
-
</td>
|
770
|
+
<td>the object which received the signal.</td>
|
806
771
|
</tr>
|
807
772
|
<tr>
|
808
773
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -812,10 +777,10 @@ other than the value field.
|
|
812
777
|
</table></div>
|
813
778
|
</div>
|
814
779
|
<hr>
|
815
|
-
<div class="refsect2"
|
780
|
+
<div class="refsect2">
|
816
781
|
<a name="GtkAdjustment-value-changed"></a><h3>The <code class="literal">"value-changed"</code> signal</h3>
|
817
782
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment,
|
818
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
783
|
+
<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-NO-RECURSE:CAPS"><code class="literal">No Recursion</code></a></pre>
|
819
784
|
<p>
|
820
785
|
Emitted when the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> value field has been changed.
|
821
786
|
</p>
|
@@ -824,8 +789,7 @@ Emitted when the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"
|
|
824
789
|
<tbody>
|
825
790
|
<tr>
|
826
791
|
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
827
|
-
<td>the object which received the signal
|
828
|
-
</td>
|
792
|
+
<td>the object which received the signal.</td>
|
829
793
|
</tr>
|
830
794
|
<tr>
|
831
795
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -838,6 +802,6 @@ Emitted when the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"
|
|
838
802
|
</div>
|
839
803
|
<div class="footer">
|
840
804
|
<hr>
|
841
|
-
Generated by GTK-Doc V1.
|
805
|
+
Generated by GTK-Doc V1.17</div>
|
842
806
|
</body>
|
843
807
|
</html>
|