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>GtkCurve</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="SpecialObjects.html" title="Special-purpose features">
|
9
9
|
<link rel="prev" href="SpecialObjects.html" title="Special-purpose features">
|
10
10
|
<link rel="next" href="GtkGammaCurve.html" title="GtkGammaCurve">
|
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="SpecialObjects.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="SpecialObjects.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="GtkGammaCurve.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="#GtkCurve.signals" class="shortcut">Signals</a>
|
35
35
|
</td></tr>
|
36
36
|
</table>
|
37
|
-
<div class="refentry"
|
37
|
+
<div class="refentry">
|
38
38
|
<a name="GtkCurve"></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="GtkCurve.synopsis"></a><h2>Synopsis</h2>
|
48
48
|
<pre class="synopsis">
|
49
49
|
#include <gtk/gtk.h>
|
50
50
|
|
51
|
-
|
52
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
51
|
+
struct <a class="link" href="GtkCurve.html#GtkCurve-struct" title="struct GtkCurve">GtkCurve</a>;
|
52
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkCurve.html#gtk-curve-new" title="gtk_curve_new ()">gtk_curve_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
53
53
|
<span class="returnvalue">void</span> <a class="link" href="GtkCurve.html#gtk-curve-reset" title="gtk_curve_reset ()">gtk_curve_reset</a> (<em class="parameter"><code><a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> *curve</code></em>);
|
54
54
|
<span class="returnvalue">void</span> <a class="link" href="GtkCurve.html#gtk-curve-set-gamma" title="gtk_curve_set_gamma ()">gtk_curve_set_gamma</a> (<em class="parameter"><code><a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> *curve</code></em>,
|
55
55
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> gamma_</code></em>);
|
@@ -68,7 +68,7 @@
|
|
68
68
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkCurveType" title="enum GtkCurveType"><span class="type">GtkCurveType</span></a> type</code></em>);
|
69
69
|
</pre>
|
70
70
|
</div>
|
71
|
-
<div class="refsect1"
|
71
|
+
<div class="refsect1">
|
72
72
|
<a name="GtkCurve.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
73
73
|
<pre class="synopsis">
|
74
74
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
@@ -79,13 +79,13 @@
|
|
79
79
|
+----GtkCurve
|
80
80
|
</pre>
|
81
81
|
</div>
|
82
|
-
<div class="refsect1"
|
82
|
+
<div class="refsect1">
|
83
83
|
<a name="GtkCurve.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
84
84
|
<p>
|
85
85
|
GtkCurve implements
|
86
86
|
AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
87
87
|
</div>
|
88
|
-
<div class="refsect1"
|
88
|
+
<div class="refsect1">
|
89
89
|
<a name="GtkCurve.properties"></a><h2>Properties</h2>
|
90
90
|
<pre class="synopsis">
|
91
91
|
"<a class="link" href="GtkCurve.html#GtkCurve--curve-type" title='The "curve-type" property'>curve-type</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkCurveType" title="enum GtkCurveType"><span class="type">GtkCurveType</span></a> : Read / Write
|
@@ -95,13 +95,13 @@ GtkCurve implements
|
|
95
95
|
"<a class="link" href="GtkCurve.html#GtkCurve--min-y" title='The "min-y" property'>min-y</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write
|
96
96
|
</pre>
|
97
97
|
</div>
|
98
|
-
<div class="refsect1"
|
98
|
+
<div class="refsect1">
|
99
99
|
<a name="GtkCurve.signals"></a><h2>Signals</h2>
|
100
100
|
<pre class="synopsis">
|
101
|
-
"<a class="link" href="GtkCurve.html#GtkCurve-curve-type-changed" title='The "curve-type-changed" signal'>curve-type-changed</a>" : Run First
|
101
|
+
"<a class="link" href="GtkCurve.html#GtkCurve-curve-type-changed" title='The "curve-type-changed" signal'>curve-type-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
|
102
102
|
</pre>
|
103
103
|
</div>
|
104
|
-
<div class="refsect1"
|
104
|
+
<div class="refsect1">
|
105
105
|
<a name="GtkCurve.description"></a><h2>Description</h2>
|
106
106
|
<p>
|
107
107
|
The <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> widget allows the user to edit a curve covering a range of
|
@@ -119,25 +119,25 @@ draw the points of the curve freely, and they are not connected at all.
|
|
119
119
|
As of GTK+ 2.20, <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> has been deprecated since it is too specialized.
|
120
120
|
</p>
|
121
121
|
</div>
|
122
|
-
<div class="refsect1"
|
122
|
+
<div class="refsect1">
|
123
123
|
<a name="GtkCurve.details"></a><h2>Details</h2>
|
124
|
-
<div class="refsect2"
|
125
|
-
<a name="GtkCurve-struct"></a><h3>GtkCurve</h3>
|
126
|
-
<pre class="programlisting">
|
127
|
-
<div class="warning"
|
124
|
+
<div class="refsect2">
|
125
|
+
<a name="GtkCurve-struct"></a><h3>struct GtkCurve</h3>
|
126
|
+
<pre class="programlisting">struct GtkCurve;</pre>
|
127
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
128
128
|
<h3 class="title">Warning</h3>
|
129
129
|
<p><code class="literal">GtkCurve</code> is deprecated and should not be used in newly-written code.</p>
|
130
130
|
</div>
|
131
131
|
<p>
|
132
|
-
The <a class="link" href="GtkCurve.html#GtkCurve-struct" title="GtkCurve"><span class="type">GtkCurve</span></a> struct contains private data only, and
|
132
|
+
The <a class="link" href="GtkCurve.html#GtkCurve-struct" title="struct GtkCurve"><span class="type">GtkCurve</span></a> struct contains private data only, and
|
133
133
|
should be accessed using the functions below.
|
134
134
|
</p>
|
135
135
|
</div>
|
136
136
|
<hr>
|
137
|
-
<div class="refsect2"
|
137
|
+
<div class="refsect2">
|
138
138
|
<a name="gtk-curve-new"></a><h3>gtk_curve_new ()</h3>
|
139
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
140
|
-
<div class="warning"
|
139
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_curve_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
140
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
141
141
|
<h3 class="title">Warning</h3>
|
142
142
|
<p><code class="literal">gtk_curve_new</code> has been deprecated since version 2.20 and should not be used in newly-written code. Don't use this widget anymore.</p>
|
143
143
|
</div>
|
@@ -148,16 +148,15 @@ Creates a new <a class="link" href="GtkCurve.html" title="GtkCurve"><span class=
|
|
148
148
|
<col align="left" valign="top">
|
149
149
|
<tbody><tr>
|
150
150
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
151
|
-
<td>a new <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a
|
152
|
-
</td>
|
151
|
+
<td>a new <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a>.</td>
|
153
152
|
</tr></tbody>
|
154
153
|
</table></div>
|
155
154
|
</div>
|
156
155
|
<hr>
|
157
|
-
<div class="refsect2"
|
156
|
+
<div class="refsect2">
|
158
157
|
<a name="gtk-curve-reset"></a><h3>gtk_curve_reset ()</h3>
|
159
158
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_curve_reset (<em class="parameter"><code><a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> *curve</code></em>);</pre>
|
160
|
-
<div class="warning"
|
159
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
161
160
|
<h3 class="title">Warning</h3>
|
162
161
|
<p><code class="literal">gtk_curve_reset</code> has been deprecated since version 2.20 and should not be used in newly-written code. Don't use this widget anymore.</p>
|
163
162
|
</div>
|
@@ -170,17 +169,16 @@ The curve type is not changed.
|
|
170
169
|
<col align="left" valign="top">
|
171
170
|
<tbody><tr>
|
172
171
|
<td><p><span class="term"><em class="parameter"><code>curve</code></em> :</span></p></td>
|
173
|
-
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a
|
174
|
-
</td>
|
172
|
+
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a>.</td>
|
175
173
|
</tr></tbody>
|
176
174
|
</table></div>
|
177
175
|
</div>
|
178
176
|
<hr>
|
179
|
-
<div class="refsect2"
|
177
|
+
<div class="refsect2">
|
180
178
|
<a name="gtk-curve-set-gamma"></a><h3>gtk_curve_set_gamma ()</h3>
|
181
179
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_curve_set_gamma (<em class="parameter"><code><a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> *curve</code></em>,
|
182
180
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> gamma_</code></em>);</pre>
|
183
|
-
<div class="warning"
|
181
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
184
182
|
<h3 class="title">Warning</h3>
|
185
183
|
<p><code class="literal">gtk_curve_set_gamma</code> has been deprecated since version 2.20 and should not be used in newly-written code. Don't use this widget anymore.</p>
|
186
184
|
</div>
|
@@ -196,26 +194,24 @@ FIXME: Needs a more precise definition of gamma.
|
|
196
194
|
<tbody>
|
197
195
|
<tr>
|
198
196
|
<td><p><span class="term"><em class="parameter"><code>curve</code></em> :</span></p></td>
|
199
|
-
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a
|
200
|
-
</td>
|
197
|
+
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a>.</td>
|
201
198
|
</tr>
|
202
199
|
<tr>
|
203
200
|
<td><p><span class="term"><em class="parameter"><code>gamma_</code></em> :</span></p></td>
|
204
|
-
<td>the gamma value
|
205
|
-
</td>
|
201
|
+
<td>the gamma value.</td>
|
206
202
|
</tr>
|
207
203
|
</tbody>
|
208
204
|
</table></div>
|
209
205
|
</div>
|
210
206
|
<hr>
|
211
|
-
<div class="refsect2"
|
207
|
+
<div class="refsect2">
|
212
208
|
<a name="gtk-curve-set-range"></a><h3>gtk_curve_set_range ()</h3>
|
213
209
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_curve_set_range (<em class="parameter"><code><a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> *curve</code></em>,
|
214
210
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> min_x</code></em>,
|
215
211
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> max_x</code></em>,
|
216
212
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> min_y</code></em>,
|
217
213
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> max_y</code></em>);</pre>
|
218
|
-
<div class="warning"
|
214
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
219
215
|
<h3 class="title">Warning</h3>
|
220
216
|
<p><code class="literal">gtk_curve_set_range</code> has been deprecated since version 2.20 and should not be used in newly-written code. Don't use this widget anymore.</p>
|
221
217
|
</div>
|
@@ -228,39 +224,34 @@ The curve is also reset with a call to <a class="link" href="GtkCurve.html#gtk-c
|
|
228
224
|
<tbody>
|
229
225
|
<tr>
|
230
226
|
<td><p><span class="term"><em class="parameter"><code>curve</code></em> :</span></p></td>
|
231
|
-
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a
|
232
|
-
</td>
|
227
|
+
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a>.</td>
|
233
228
|
</tr>
|
234
229
|
<tr>
|
235
230
|
<td><p><span class="term"><em class="parameter"><code>min_x</code></em> :</span></p></td>
|
236
|
-
<td>the minimum x value
|
237
|
-
</td>
|
231
|
+
<td>the minimum x value.</td>
|
238
232
|
</tr>
|
239
233
|
<tr>
|
240
234
|
<td><p><span class="term"><em class="parameter"><code>max_x</code></em> :</span></p></td>
|
241
|
-
<td>the maximum x value
|
242
|
-
</td>
|
235
|
+
<td>the maximum x value.</td>
|
243
236
|
</tr>
|
244
237
|
<tr>
|
245
238
|
<td><p><span class="term"><em class="parameter"><code>min_y</code></em> :</span></p></td>
|
246
|
-
<td>the minimum y value
|
247
|
-
</td>
|
239
|
+
<td>the minimum y value.</td>
|
248
240
|
</tr>
|
249
241
|
<tr>
|
250
242
|
<td><p><span class="term"><em class="parameter"><code>max_y</code></em> :</span></p></td>
|
251
|
-
<td>the maximum y value
|
252
|
-
</td>
|
243
|
+
<td>the maximum y value.</td>
|
253
244
|
</tr>
|
254
245
|
</tbody>
|
255
246
|
</table></div>
|
256
247
|
</div>
|
257
248
|
<hr>
|
258
|
-
<div class="refsect2"
|
249
|
+
<div class="refsect2">
|
259
250
|
<a name="gtk-curve-get-vector"></a><h3>gtk_curve_get_vector ()</h3>
|
260
251
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_curve_get_vector (<em class="parameter"><code><a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> *curve</code></em>,
|
261
252
|
<em class="parameter"><code><span class="type">int</span> veclen</code></em>,
|
262
253
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> vector[]</code></em>);</pre>
|
263
|
-
<div class="warning"
|
254
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
264
255
|
<h3 class="title">Warning</h3>
|
265
256
|
<p><code class="literal">gtk_curve_get_vector</code> has been deprecated since version 2.20 and should not be used in newly-written code. Don't use this widget anymore.</p>
|
266
257
|
</div>
|
@@ -272,29 +263,26 @@ Returns a vector of points representing the curve.
|
|
272
263
|
<tbody>
|
273
264
|
<tr>
|
274
265
|
<td><p><span class="term"><em class="parameter"><code>curve</code></em> :</span></p></td>
|
275
|
-
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a
|
276
|
-
</td>
|
266
|
+
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a>.</td>
|
277
267
|
</tr>
|
278
268
|
<tr>
|
279
269
|
<td><p><span class="term"><em class="parameter"><code>veclen</code></em> :</span></p></td>
|
280
|
-
<td>the number of points to calculate
|
281
|
-
</td>
|
270
|
+
<td>the number of points to calculate.</td>
|
282
271
|
</tr>
|
283
272
|
<tr>
|
284
273
|
<td><p><span class="term"><em class="parameter"><code>vector</code></em> :</span></p></td>
|
285
|
-
<td>returns the points
|
286
|
-
</td>
|
274
|
+
<td>returns the points.</td>
|
287
275
|
</tr>
|
288
276
|
</tbody>
|
289
277
|
</table></div>
|
290
278
|
</div>
|
291
279
|
<hr>
|
292
|
-
<div class="refsect2"
|
280
|
+
<div class="refsect2">
|
293
281
|
<a name="gtk-curve-set-vector"></a><h3>gtk_curve_set_vector ()</h3>
|
294
282
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_curve_set_vector (<em class="parameter"><code><a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> *curve</code></em>,
|
295
283
|
<em class="parameter"><code><span class="type">int</span> veclen</code></em>,
|
296
284
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> vector[]</code></em>);</pre>
|
297
|
-
<div class="warning"
|
285
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
298
286
|
<h3 class="title">Warning</h3>
|
299
287
|
<p><code class="literal">gtk_curve_set_vector</code> has been deprecated since version 2.20 and should not be used in newly-written code. Don't use this widget anymore.</p>
|
300
288
|
</div>
|
@@ -307,28 +295,25 @@ The curve type is set to <code class="literal">GTK_CURVE_TYPE_FREE</code>.
|
|
307
295
|
<tbody>
|
308
296
|
<tr>
|
309
297
|
<td><p><span class="term"><em class="parameter"><code>curve</code></em> :</span></p></td>
|
310
|
-
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a
|
311
|
-
</td>
|
298
|
+
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a>.</td>
|
312
299
|
</tr>
|
313
300
|
<tr>
|
314
301
|
<td><p><span class="term"><em class="parameter"><code>veclen</code></em> :</span></p></td>
|
315
|
-
<td>the number of points
|
316
|
-
</td>
|
302
|
+
<td>the number of points.</td>
|
317
303
|
</tr>
|
318
304
|
<tr>
|
319
305
|
<td><p><span class="term"><em class="parameter"><code>vector</code></em> :</span></p></td>
|
320
|
-
<td>the points on the curve
|
321
|
-
</td>
|
306
|
+
<td>the points on the curve.</td>
|
322
307
|
</tr>
|
323
308
|
</tbody>
|
324
309
|
</table></div>
|
325
310
|
</div>
|
326
311
|
<hr>
|
327
|
-
<div class="refsect2"
|
312
|
+
<div class="refsect2">
|
328
313
|
<a name="gtk-curve-set-curve-type"></a><h3>gtk_curve_set_curve_type ()</h3>
|
329
314
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_curve_set_curve_type (<em class="parameter"><code><a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> *curve</code></em>,
|
330
315
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkCurveType" title="enum GtkCurveType"><span class="type">GtkCurveType</span></a> type</code></em>);</pre>
|
331
|
-
<div class="warning"
|
316
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
332
317
|
<h3 class="title">Warning</h3>
|
333
318
|
<p><code class="literal">gtk_curve_set_curve_type</code> has been deprecated since version 2.20 and should not be used in newly-written code. Don't use this widget anymore.</p>
|
334
319
|
</div>
|
@@ -342,61 +327,59 @@ curve will be changed as little as possible.
|
|
342
327
|
<tbody>
|
343
328
|
<tr>
|
344
329
|
<td><p><span class="term"><em class="parameter"><code>curve</code></em> :</span></p></td>
|
345
|
-
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a
|
346
|
-
</td>
|
330
|
+
<td>a <a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a>.</td>
|
347
331
|
</tr>
|
348
332
|
<tr>
|
349
333
|
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
350
|
-
<td>the type of the curve
|
351
|
-
</td>
|
334
|
+
<td>the type of the curve.</td>
|
352
335
|
</tr>
|
353
336
|
</tbody>
|
354
337
|
</table></div>
|
355
338
|
</div>
|
356
339
|
</div>
|
357
|
-
<div class="refsect1"
|
340
|
+
<div class="refsect1">
|
358
341
|
<a name="GtkCurve.property-details"></a><h2>Property Details</h2>
|
359
|
-
<div class="refsect2"
|
342
|
+
<div class="refsect2">
|
360
343
|
<a name="GtkCurve--curve-type"></a><h3>The <code class="literal">"curve-type"</code> property</h3>
|
361
344
|
<pre class="programlisting"> "curve-type" <a class="link" href="gtk-Standard-Enumerations.html#GtkCurveType" title="enum GtkCurveType"><span class="type">GtkCurveType</span></a> : Read / Write</pre>
|
362
345
|
<p>Is this curve linear, spline interpolated, or free-form.</p>
|
363
346
|
<p>Default value: GTK_CURVE_TYPE_SPLINE</p>
|
364
347
|
</div>
|
365
348
|
<hr>
|
366
|
-
<div class="refsect2"
|
349
|
+
<div class="refsect2">
|
367
350
|
<a name="GtkCurve--max-x"></a><h3>The <code class="literal">"max-x"</code> property</h3>
|
368
351
|
<pre class="programlisting"> "max-x" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write</pre>
|
369
352
|
<p>Maximum possible X value.</p>
|
370
353
|
<p>Default value: 1</p>
|
371
354
|
</div>
|
372
355
|
<hr>
|
373
|
-
<div class="refsect2"
|
356
|
+
<div class="refsect2">
|
374
357
|
<a name="GtkCurve--max-y"></a><h3>The <code class="literal">"max-y"</code> property</h3>
|
375
358
|
<pre class="programlisting"> "max-y" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write</pre>
|
376
359
|
<p>Maximum possible value for Y.</p>
|
377
360
|
<p>Default value: 1</p>
|
378
361
|
</div>
|
379
362
|
<hr>
|
380
|
-
<div class="refsect2"
|
363
|
+
<div class="refsect2">
|
381
364
|
<a name="GtkCurve--min-x"></a><h3>The <code class="literal">"min-x"</code> property</h3>
|
382
365
|
<pre class="programlisting"> "min-x" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write</pre>
|
383
366
|
<p>Minimum possible value for X.</p>
|
384
367
|
<p>Default value: 0</p>
|
385
368
|
</div>
|
386
369
|
<hr>
|
387
|
-
<div class="refsect2"
|
370
|
+
<div class="refsect2">
|
388
371
|
<a name="GtkCurve--min-y"></a><h3>The <code class="literal">"min-y"</code> property</h3>
|
389
372
|
<pre class="programlisting"> "min-y" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write</pre>
|
390
373
|
<p>Minimum possible value for Y.</p>
|
391
374
|
<p>Default value: 0</p>
|
392
375
|
</div>
|
393
376
|
</div>
|
394
|
-
<div class="refsect1"
|
377
|
+
<div class="refsect1">
|
395
378
|
<a name="GtkCurve.signal-details"></a><h2>Signal Details</h2>
|
396
|
-
<div class="refsect2"
|
379
|
+
<div class="refsect2">
|
397
380
|
<a name="GtkCurve-curve-type-changed"></a><h3>The <code class="literal">"curve-type-changed"</code> signal</h3>
|
398
381
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCurve.html" title="GtkCurve"><span class="type">GtkCurve</span></a> *curve,
|
399
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
|
382
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
|
400
383
|
<p>
|
401
384
|
Emitted when the curve type has been changed.
|
402
385
|
The curve type can be changed explicitly with a call to
|
@@ -408,8 +391,7 @@ calling <a class="link" href="GtkCurve.html#gtk-curve-reset" title="gtk_curve_re
|
|
408
391
|
<tbody>
|
409
392
|
<tr>
|
410
393
|
<td><p><span class="term"><em class="parameter"><code>curve</code></em> :</span></p></td>
|
411
|
-
<td>the object which received the signal
|
412
|
-
</td>
|
394
|
+
<td>the object which received the signal.</td>
|
413
395
|
</tr>
|
414
396
|
<tr>
|
415
397
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -419,7 +401,7 @@ calling <a class="link" href="GtkCurve.html#gtk-curve-reset" title="gtk_curve_re
|
|
419
401
|
</table></div>
|
420
402
|
</div>
|
421
403
|
</div>
|
422
|
-
<div class="refsect1"
|
404
|
+
<div class="refsect1">
|
423
405
|
<a name="GtkCurve.see-also"></a><h2>See Also</h2>
|
424
406
|
<p>
|
425
407
|
</p>
|
@@ -436,6 +418,6 @@ calling <a class="link" href="GtkCurve.html#gtk-curve-reset" title="gtk_curve_re
|
|
436
418
|
</div>
|
437
419
|
<div class="footer">
|
438
420
|
<hr>
|
439
|
-
Generated by GTK-Doc V1.
|
421
|
+
Generated by GTK-Doc V1.17</div>
|
440
422
|
</body>
|
441
423
|
</html>
|
@@ -4,11 +4,11 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkDialog</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="WindowWidgets.html" title="Windows">
|
9
9
|
<link rel="prev" href="WindowWidgets.html" title="Windows">
|
10
10
|
<link rel="next" href="GtkInvisible.html" title="GtkInvisible">
|
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="WindowWidgets.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="WindowWidgets.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="GtkInvisible.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">
|
@@ -36,7 +36,7 @@
|
|
36
36
|
<a href="#GtkDialog.signals" class="shortcut">Signals</a>
|
37
37
|
</td></tr>
|
38
38
|
</table>
|
39
|
-
<div class="refentry"
|
39
|
+
<div class="refentry">
|
40
40
|
<a name="GtkDialog"></a><div class="titlepage"></div>
|
41
41
|
<div class="refnamediv"><table width="100%"><tr>
|
42
42
|
<td valign="top">
|
@@ -45,16 +45,16 @@
|
|
45
45
|
</td>
|
46
46
|
<td valign="top" align="right"></td>
|
47
47
|
</tr></table></div>
|
48
|
-
<div class="refsynopsisdiv"
|
48
|
+
<div class="refsynopsisdiv">
|
49
49
|
<a name="GtkDialog.synopsis"></a><h2>Synopsis</h2>
|
50
50
|
<pre class="synopsis">
|
51
51
|
#include <gtk/gtk.h>
|
52
52
|
|
53
|
-
|
53
|
+
struct <a class="link" href="GtkDialog.html#GtkDialog-struct" title="struct GtkDialog">GtkDialog</a>;
|
54
54
|
enum <a class="link" href="GtkDialog.html#GtkDialogFlags" title="enum GtkDialogFlags">GtkDialogFlags</a>;
|
55
55
|
enum <a class="link" href="GtkDialog.html#GtkResponseType" title="enum GtkResponseType">GtkResponseType</a>;
|
56
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
57
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
56
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkDialog.html#gtk-dialog-new" title="gtk_dialog_new ()">gtk_dialog_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
57
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkDialog.html#gtk-dialog-new-with-buttons" title="gtk_dialog_new_with_buttons ()">gtk_dialog_new_with_buttons</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *title</code></em>,
|
58
58
|
<em class="parameter"><code><a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a> *parent</code></em>,
|
59
59
|
<em class="parameter"><code><a class="link" href="GtkDialog.html#GtkDialogFlags" title="enum GtkDialogFlags"><span class="type">GtkDialogFlags</span></a> flags</code></em>,
|
60
60
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_button_text</code></em>,
|
@@ -62,7 +62,7 @@ enum <a class="link" href="GtkDialog.html#GtkResponseType" title=
|
|
62
62
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkDialog.html#gtk-dialog-run" title="gtk_dialog_run ()">gtk_dialog_run</a> (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>);
|
63
63
|
<span class="returnvalue">void</span> <a class="link" href="GtkDialog.html#gtk-dialog-response" title="gtk_dialog_response ()">gtk_dialog_response</a> (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
64
64
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response_id</code></em>);
|
65
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
65
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkDialog.html#gtk-dialog-add-button" title="gtk_dialog_add_button ()">gtk_dialog_add_button</a> (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
66
66
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *button_text</code></em>,
|
67
67
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response_id</code></em>);
|
68
68
|
<span class="returnvalue">void</span> <a class="link" href="GtkDialog.html#gtk-dialog-add-buttons" title="gtk_dialog_add_buttons ()">gtk_dialog_add_buttons</a> (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
@@ -81,12 +81,12 @@ enum <a class="link" href="GtkDialog.html#GtkResponseType" title=
|
|
81
81
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);
|
82
82
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkDialog.html#gtk-dialog-get-response-for-widget" title="gtk_dialog_get_response_for_widget ()">gtk_dialog_get_response_for_widget</a> (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
83
83
|
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
|
84
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
84
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkDialog.html#gtk-dialog-get-widget-for-response" title="gtk_dialog_get_widget_for_response ()">gtk_dialog_get_widget_for_response</a> (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
85
85
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response_id</code></em>);
|
86
86
|
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkDialog.html#gtk-dialog-get-action-area" title="gtk_dialog_get_action_area ()">gtk_dialog_get_action_area</a> (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>);
|
87
87
|
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkDialog.html#gtk-dialog-get-content-area" title="gtk_dialog_get_content_area ()">gtk_dialog_get_content_area</a> (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>);
|
88
88
|
|
89
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkDialog.html#gtk-alternative-dialog-button-order" title="gtk_alternative_dialog_button_order ()">gtk_alternative_dialog_button_order</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
89
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkDialog.html#gtk-alternative-dialog-button-order" title="gtk_alternative_dialog_button_order ()">gtk_alternative_dialog_button_order</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
|
90
90
|
<span class="returnvalue">void</span> <a class="link" href="GtkDialog.html#gtk-dialog-set-alternative-button-order" title="gtk_dialog_set_alternative_button_order ()">gtk_dialog_set_alternative_button_order</a>
|
91
91
|
(<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
92
92
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> first_response_id</code></em>,
|
@@ -97,7 +97,7 @@ enum <a class="link" href="GtkDialog.html#GtkResponseType" title=
|
|
97
97
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *new_order</code></em>);
|
98
98
|
</pre>
|
99
99
|
</div>
|
100
|
-
<div class="refsect1"
|
100
|
+
<div class="refsect1">
|
101
101
|
<a name="GtkDialog.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
102
102
|
<pre class="synopsis">
|
103
103
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
@@ -120,19 +120,19 @@ enum <a class="link" href="GtkDialog.html#GtkResponseType" title=
|
|
120
120
|
+----<a class="link" href="GtkRecentChooserDialog.html" title="GtkRecentChooserDialog">GtkRecentChooserDialog</a>
|
121
121
|
</pre>
|
122
122
|
</div>
|
123
|
-
<div class="refsect1"
|
123
|
+
<div class="refsect1">
|
124
124
|
<a name="GtkDialog.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
125
125
|
<p>
|
126
126
|
GtkDialog implements
|
127
127
|
AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
128
128
|
</div>
|
129
|
-
<div class="refsect1"
|
129
|
+
<div class="refsect1">
|
130
130
|
<a name="GtkDialog.properties"></a><h2>Properties</h2>
|
131
131
|
<pre class="synopsis">
|
132
132
|
"<a class="link" href="GtkDialog.html#GtkDialog--has-separator" title='The "has-separator" property'>has-separator</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
133
133
|
</pre>
|
134
134
|
</div>
|
135
|
-
<div class="refsect1"
|
135
|
+
<div class="refsect1">
|
136
136
|
<a name="GtkDialog.style-properties"></a><h2>Style Properties</h2>
|
137
137
|
<pre class="synopsis">
|
138
138
|
"<a class="link" href="GtkDialog.html#GtkDialog--s-action-area-border" title='The "action-area-border" style property'>action-area-border</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
|
@@ -141,14 +141,14 @@ GtkDialog implements
|
|
141
141
|
"<a class="link" href="GtkDialog.html#GtkDialog--s-content-area-spacing" title='The "content-area-spacing" style property'>content-area-spacing</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
|
142
142
|
</pre>
|
143
143
|
</div>
|
144
|
-
<div class="refsect1"
|
144
|
+
<div class="refsect1">
|
145
145
|
<a name="GtkDialog.signals"></a><h2>Signals</h2>
|
146
146
|
<pre class="synopsis">
|
147
|
-
"<a class="link" href="GtkDialog.html#GtkDialog-close" title='The "close" signal'>close</a>" :
|
148
|
-
"<a class="link" href="GtkDialog.html#GtkDialog-response" title='The "response" signal'>response</a>" : Run Last
|
147
|
+
"<a class="link" href="GtkDialog.html#GtkDialog-close" title='The "close" signal'>close</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
148
|
+
"<a class="link" href="GtkDialog.html#GtkDialog-response" title='The "response" signal'>response</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
149
149
|
</pre>
|
150
150
|
</div>
|
151
|
-
<div class="refsect1"
|
151
|
+
<div class="refsect1">
|
152
152
|
<a name="GtkDialog.description"></a><h2>Description</h2>
|
153
153
|
<p>
|
154
154
|
Dialog boxes are a convenient way to prompt the user for a small amount of
|
@@ -203,7 +203,7 @@ For the simple dialog in the following example, in reality you'd probably use
|
|
203
203
|
dialog contents manually if you had more than a simple message in the dialog.
|
204
204
|
</p>
|
205
205
|
<div class="example">
|
206
|
-
<a name="
|
206
|
+
<a name="id705951"></a><p class="title"><b>Example 6. Simple <span class="structname">GtkDialog</span> usage.</b></p>
|
207
207
|
<div class="example-contents">
|
208
208
|
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
209
209
|
<tbody>
|
@@ -258,7 +258,7 @@ dialog contents manually if you had more than a simple message in the dialog.
|
|
258
258
|
</div>
|
259
259
|
<p><br class="example-break">
|
260
260
|
</p>
|
261
|
-
<div class="refsect2"
|
261
|
+
<div class="refsect2">
|
262
262
|
<a name="GtkDialog-BUILDER-UI"></a><h3>GtkDialog as GtkBuildable</h3>
|
263
263
|
<p>
|
264
264
|
The GtkDialog implementation of the GtkBuildable interface exposes the
|
@@ -272,7 +272,7 @@ attribute specifies a numeric response, and the content of the element
|
|
272
272
|
is the id of widget (which should be a child of the dialogs <em class="parameter"><code>action_area</code></em>).
|
273
273
|
</p>
|
274
274
|
<div class="example">
|
275
|
-
<a name="
|
275
|
+
<a name="id706015"></a><p class="title"><b>Example 7. A <span class="structname">GtkDialog</span> UI definition fragment.</b></p>
|
276
276
|
<div class="example-contents">
|
277
277
|
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
278
278
|
<tbody>
|
@@ -326,14 +326,14 @@ is the id of widget (which should be a child of the dialogs <em class="parameter
|
|
326
326
|
<br class="example-break">
|
327
327
|
</div>
|
328
328
|
</div>
|
329
|
-
<div class="refsect1"
|
329
|
+
<div class="refsect1">
|
330
330
|
<a name="GtkDialog.details"></a><h2>Details</h2>
|
331
|
-
<div class="refsect2"
|
332
|
-
<a name="GtkDialog-struct"></a><h3>GtkDialog</h3>
|
333
|
-
<pre class="programlisting">
|
331
|
+
<div class="refsect2">
|
332
|
+
<a name="GtkDialog-struct"></a><h3>struct GtkDialog</h3>
|
333
|
+
<pre class="programlisting">struct GtkDialog {
|
334
334
|
GtkWidget *GSEAL (vbox);
|
335
335
|
GtkWidget *GSEAL (action_area);
|
336
|
-
}
|
336
|
+
};
|
337
337
|
</pre>
|
338
338
|
<p>
|
339
339
|
<em class="structfield"><code>vbox</code></em> is a <a class="link" href="GtkVBox.html" title="GtkVBox"><span class="type">GtkVBox</span></a> - the main part of the
|
@@ -346,7 +346,7 @@ as any other <a class="link" href="GtkHButtonBox.html" title="GtkHButtonBox"><sp
|
|
346
346
|
</p>
|
347
347
|
</div>
|
348
348
|
<hr>
|
349
|
-
<div class="refsect2"
|
349
|
+
<div class="refsect2">
|
350
350
|
<a name="GtkDialogFlags"></a><h3>enum GtkDialogFlags</h3>
|
351
351
|
<pre class="programlisting">typedef enum
|
352
352
|
{
|
@@ -383,7 +383,7 @@ Flags used to influence dialog construction.
|
|
383
383
|
</table></div>
|
384
384
|
</div>
|
385
385
|
<hr>
|
386
|
-
<div class="refsect2"
|
386
|
+
<div class="refsect2">
|
387
387
|
<a name="GtkResponseType"></a><h3>enum GtkResponseType</h3>
|
388
388
|
<pre class="programlisting">typedef enum
|
389
389
|
{
|
@@ -482,9 +482,9 @@ application-defined response ids.
|
|
482
482
|
</table></div>
|
483
483
|
</div>
|
484
484
|
<hr>
|
485
|
-
<div class="refsect2"
|
485
|
+
<div class="refsect2">
|
486
486
|
<a name="gtk-dialog-new"></a><h3>gtk_dialog_new ()</h3>
|
487
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
487
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_dialog_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
488
488
|
<p>
|
489
489
|
Creates a new dialog box. Widgets should not be packed into this <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a>
|
490
490
|
directly, but into the <em class="parameter"><code>vbox</code></em> and <em class="parameter"><code>action_area</code></em>, as described above.
|
@@ -493,15 +493,14 @@ directly, but into the <em class="parameter"><code>vbox</code></em> and <em clas
|
|
493
493
|
<col align="left" valign="top">
|
494
494
|
<tbody><tr>
|
495
495
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
496
|
-
<td>a new <a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a
|
497
|
-
</td>
|
496
|
+
<td>a new <a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a>.</td>
|
498
497
|
</tr></tbody>
|
499
498
|
</table></div>
|
500
499
|
</div>
|
501
500
|
<hr>
|
502
|
-
<div class="refsect2"
|
501
|
+
<div class="refsect2">
|
503
502
|
<a name="gtk-dialog-new-with-buttons"></a><h3>gtk_dialog_new_with_buttons ()</h3>
|
504
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
503
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_dialog_new_with_buttons (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *title</code></em>,
|
505
504
|
<em class="parameter"><code><a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a> *parent</code></em>,
|
506
505
|
<em class="parameter"><code><a class="link" href="GtkDialog.html#GtkDialogFlags" title="enum GtkDialogFlags"><span class="type">GtkDialogFlags</span></a> flags</code></em>,
|
507
506
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_button_text</code></em>,
|
@@ -561,12 +560,12 @@ Here's a simple example:
|
|
561
560
|
<tbody>
|
562
561
|
<tr>
|
563
562
|
<td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
|
564
|
-
<td>
|
563
|
+
<td>Title of the dialog, 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>
|
565
564
|
</td>
|
566
565
|
</tr>
|
567
566
|
<tr>
|
568
567
|
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
|
569
|
-
<td>
|
568
|
+
<td>Transient parent of the dialog, 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>
|
570
569
|
</td>
|
571
570
|
</tr>
|
572
571
|
<tr>
|
@@ -576,7 +575,7 @@ Here's a simple example:
|
|
576
575
|
</tr>
|
577
576
|
<tr>
|
578
577
|
<td><p><span class="term"><em class="parameter"><code>first_button_text</code></em> :</span></p></td>
|
579
|
-
<td>
|
578
|
+
<td>stock ID or text to go in first button, 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>
|
580
579
|
</td>
|
581
580
|
</tr>
|
582
581
|
<tr>
|
@@ -586,14 +585,14 @@ Here's a simple example:
|
|
586
585
|
</tr>
|
587
586
|
<tr>
|
588
587
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
589
|
-
<td>
|
588
|
+
<td>a new <a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a>
|
590
589
|
</td>
|
591
590
|
</tr>
|
592
591
|
</tbody>
|
593
592
|
</table></div>
|
594
593
|
</div>
|
595
594
|
<hr>
|
596
|
-
<div class="refsect2"
|
595
|
+
<div class="refsect2">
|
597
596
|
<a name="gtk-dialog-run"></a><h3>gtk_dialog_run ()</h3>
|
598
597
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_dialog_run (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>);</pre>
|
599
598
|
<p>
|
@@ -675,14 +674,13 @@ be triggered during a <a class="link" href="GtkDialog.html#gtk-dialog-run" title
|
|
675
674
|
</tr>
|
676
675
|
<tr>
|
677
676
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
678
|
-
<td>
|
679
|
-
</td>
|
677
|
+
<td>response ID</td>
|
680
678
|
</tr>
|
681
679
|
</tbody>
|
682
680
|
</table></div>
|
683
681
|
</div>
|
684
682
|
<hr>
|
685
|
-
<div class="refsect2"
|
683
|
+
<div class="refsect2">
|
686
684
|
<a name="gtk-dialog-response"></a><h3>gtk_dialog_response ()</h3>
|
687
685
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_dialog_response (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
688
686
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response_id</code></em>);</pre>
|
@@ -702,16 +700,15 @@ typically either you or <a class="link" href="GtkDialog.html#gtk-dialog-run" tit
|
|
702
700
|
</tr>
|
703
701
|
<tr>
|
704
702
|
<td><p><span class="term"><em class="parameter"><code>response_id</code></em> :</span></p></td>
|
705
|
-
<td>response ID
|
706
|
-
</td>
|
703
|
+
<td>response ID</td>
|
707
704
|
</tr>
|
708
705
|
</tbody>
|
709
706
|
</table></div>
|
710
707
|
</div>
|
711
708
|
<hr>
|
712
|
-
<div class="refsect2"
|
709
|
+
<div class="refsect2">
|
713
710
|
<a name="gtk-dialog-add-button"></a><h3>gtk_dialog_add_button ()</h3>
|
714
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
711
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_dialog_add_button (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
715
712
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *button_text</code></em>,
|
716
713
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response_id</code></em>);</pre>
|
717
714
|
<p>
|
@@ -731,24 +728,22 @@ returned, but usually you don't need it.
|
|
731
728
|
</tr>
|
732
729
|
<tr>
|
733
730
|
<td><p><span class="term"><em class="parameter"><code>button_text</code></em> :</span></p></td>
|
734
|
-
<td>text of button, or stock ID
|
735
|
-
</td>
|
731
|
+
<td>text of button, or stock ID</td>
|
736
732
|
</tr>
|
737
733
|
<tr>
|
738
734
|
<td><p><span class="term"><em class="parameter"><code>response_id</code></em> :</span></p></td>
|
739
|
-
<td>response ID for the button
|
740
|
-
</td>
|
735
|
+
<td>response ID for the button</td>
|
741
736
|
</tr>
|
742
737
|
<tr>
|
743
738
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
744
|
-
<td>
|
739
|
+
<td>the button widget that was added. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
745
740
|
</td>
|
746
741
|
</tr>
|
747
742
|
</tbody>
|
748
743
|
</table></div>
|
749
744
|
</div>
|
750
745
|
<hr>
|
751
|
-
<div class="refsect2"
|
746
|
+
<div class="refsect2">
|
752
747
|
<a name="gtk-dialog-add-buttons"></a><h3>gtk_dialog_add_buttons ()</h3>
|
753
748
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_dialog_add_buttons (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
754
749
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *first_button_text</code></em>,
|
@@ -769,19 +764,17 @@ text and response ID.
|
|
769
764
|
</tr>
|
770
765
|
<tr>
|
771
766
|
<td><p><span class="term"><em class="parameter"><code>first_button_text</code></em> :</span></p></td>
|
772
|
-
<td>button text or stock ID
|
773
|
-
</td>
|
767
|
+
<td>button text or stock ID</td>
|
774
768
|
</tr>
|
775
769
|
<tr>
|
776
770
|
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
777
|
-
<td>response ID for first button, then more text-response_id pairs
|
778
|
-
</td>
|
771
|
+
<td>response ID for first button, then more text-response_id pairs</td>
|
779
772
|
</tr>
|
780
773
|
</tbody>
|
781
774
|
</table></div>
|
782
775
|
</div>
|
783
776
|
<hr>
|
784
|
-
<div class="refsect2"
|
777
|
+
<div class="refsect2">
|
785
778
|
<a name="gtk-dialog-add-action-widget"></a><h3>gtk_dialog_add_action_widget ()</h3>
|
786
779
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_dialog_add_action_widget (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
787
780
|
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
@@ -804,8 +797,7 @@ of the <a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type
|
|
804
797
|
</tr>
|
805
798
|
<tr>
|
806
799
|
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
807
|
-
<td>an activatable widget
|
808
|
-
</td>
|
800
|
+
<td>an activatable widget</td>
|
809
801
|
</tr>
|
810
802
|
<tr>
|
811
803
|
<td><p><span class="term"><em class="parameter"><code>response_id</code></em> :</span></p></td>
|
@@ -816,10 +808,10 @@ of the <a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type
|
|
816
808
|
</table></div>
|
817
809
|
</div>
|
818
810
|
<hr>
|
819
|
-
<div class="refsect2"
|
811
|
+
<div class="refsect2">
|
820
812
|
<a name="gtk-dialog-get-has-separator"></a><h3>gtk_dialog_get_has_separator ()</h3>
|
821
813
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_dialog_get_has_separator (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>);</pre>
|
822
|
-
<div class="warning"
|
814
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
823
815
|
<h3 class="title">Warning</h3>
|
824
816
|
<p><code class="literal">gtk_dialog_get_has_separator</code> has been deprecated since version 2.22 and should not be used in newly-written code. This function will be removed in GTK+ 3</p>
|
825
817
|
</div>
|
@@ -836,15 +828,14 @@ Accessor for whether the dialog has a separator.
|
|
836
828
|
</tr>
|
837
829
|
<tr>
|
838
830
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
839
|
-
<td>
|
840
|
-
|
841
|
-
</td>
|
831
|
+
<td>
|
832
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the dialog has a separator</td>
|
842
833
|
</tr>
|
843
834
|
</tbody>
|
844
835
|
</table></div>
|
845
836
|
</div>
|
846
837
|
<hr>
|
847
|
-
<div class="refsect2"
|
838
|
+
<div class="refsect2">
|
848
839
|
<a name="gtk-dialog-set-default-response"></a><h3>gtk_dialog_set_default_response ()</h3>
|
849
840
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_dialog_set_default_response (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
850
841
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response_id</code></em>);</pre>
|
@@ -863,18 +854,17 @@ the default widget.
|
|
863
854
|
</tr>
|
864
855
|
<tr>
|
865
856
|
<td><p><span class="term"><em class="parameter"><code>response_id</code></em> :</span></p></td>
|
866
|
-
<td>a response ID
|
867
|
-
</td>
|
857
|
+
<td>a response ID</td>
|
868
858
|
</tr>
|
869
859
|
</tbody>
|
870
860
|
</table></div>
|
871
861
|
</div>
|
872
862
|
<hr>
|
873
|
-
<div class="refsect2"
|
863
|
+
<div class="refsect2">
|
874
864
|
<a name="gtk-dialog-set-has-separator"></a><h3>gtk_dialog_set_has_separator ()</h3>
|
875
865
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_dialog_set_has_separator (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
876
866
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
|
877
|
-
<div class="warning"
|
867
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
878
868
|
<h3 class="title">Warning</h3>
|
879
869
|
<p><code class="literal">gtk_dialog_set_has_separator</code> has been deprecated since version 2.22 and should not be used in newly-written code. This function will be removed in GTK+ 3</p>
|
880
870
|
</div>
|
@@ -892,14 +882,13 @@ Sets whether the dialog has a separator above the buttons.
|
|
892
882
|
<tr>
|
893
883
|
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
894
884
|
<td>
|
895
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to have a separator
|
896
|
-
</td>
|
885
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to have a separator</td>
|
897
886
|
</tr>
|
898
887
|
</tbody>
|
899
888
|
</table></div>
|
900
889
|
</div>
|
901
890
|
<hr>
|
902
|
-
<div class="refsect2"
|
891
|
+
<div class="refsect2">
|
903
892
|
<a name="gtk-dialog-set-response-sensitive"></a><h3>gtk_dialog_set_response_sensitive ()</h3>
|
904
893
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_dialog_set_response_sensitive (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
905
894
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response_id</code></em>,
|
@@ -919,20 +908,18 @@ A convenient way to sensitize/desensitize dialog buttons.
|
|
919
908
|
</tr>
|
920
909
|
<tr>
|
921
910
|
<td><p><span class="term"><em class="parameter"><code>response_id</code></em> :</span></p></td>
|
922
|
-
<td>a response ID
|
923
|
-
</td>
|
911
|
+
<td>a response ID</td>
|
924
912
|
</tr>
|
925
913
|
<tr>
|
926
914
|
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
927
915
|
<td>
|
928
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for sensitive
|
929
|
-
</td>
|
916
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for sensitive</td>
|
930
917
|
</tr>
|
931
918
|
</tbody>
|
932
919
|
</table></div>
|
933
920
|
</div>
|
934
921
|
<hr>
|
935
|
-
<div class="refsect2"
|
922
|
+
<div class="refsect2">
|
936
923
|
<a name="gtk-dialog-get-response-for-widget"></a><h3>gtk_dialog_get_response_for_widget ()</h3>
|
937
924
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_dialog_get_response_for_widget (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
938
925
|
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
|
@@ -955,19 +942,17 @@ of a dialog.
|
|
955
942
|
</tr>
|
956
943
|
<tr>
|
957
944
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
958
|
-
<td>
|
959
|
-
|
960
|
-
|
961
|
-
</td>
|
945
|
+
<td>the response id of <em class="parameter"><code>widget</code></em>, or <a class="link" href="GtkDialog.html#GTK-RESPONSE-NONE:CAPS"><code class="literal">GTK_RESPONSE_NONE</code></a>
|
946
|
+
if <em class="parameter"><code>widget</code></em> doesn't have a response id set.</td>
|
962
947
|
</tr>
|
963
948
|
</tbody>
|
964
949
|
</table></div>
|
965
950
|
<p class="since">Since 2.8</p>
|
966
951
|
</div>
|
967
952
|
<hr>
|
968
|
-
<div class="refsect2"
|
953
|
+
<div class="refsect2">
|
969
954
|
<a name="gtk-dialog-get-widget-for-response"></a><h3>gtk_dialog_get_widget_for_response ()</h3>
|
970
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
955
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_dialog_get_widget_for_response (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
971
956
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response_id</code></em>);</pre>
|
972
957
|
<p>
|
973
958
|
Gets the widget button that uses the given response ID in the action area
|
@@ -983,13 +968,11 @@ of a dialog.
|
|
983
968
|
</tr>
|
984
969
|
<tr>
|
985
970
|
<td><p><span class="term"><em class="parameter"><code>response_id</code></em> :</span></p></td>
|
986
|
-
<td>the response ID used by the <em class="parameter"><code>dialog</code></em> widget
|
987
|
-
</td>
|
971
|
+
<td>the response ID used by the <em class="parameter"><code>dialog</code></em> widget</td>
|
988
972
|
</tr>
|
989
973
|
<tr>
|
990
974
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
991
|
-
<td>
|
992
|
-
|
975
|
+
<td>the <em class="parameter"><code>widget</code></em> button that uses the given <em class="parameter"><code>response_id</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
993
976
|
</td>
|
994
977
|
</tr>
|
995
978
|
</tbody>
|
@@ -997,7 +980,7 @@ of a dialog.
|
|
997
980
|
<p class="since">Since 2.20</p>
|
998
981
|
</div>
|
999
982
|
<hr>
|
1000
|
-
<div class="refsect2"
|
983
|
+
<div class="refsect2">
|
1001
984
|
<a name="gtk-dialog-get-action-area"></a><h3>gtk_dialog_get_action_area ()</h3>
|
1002
985
|
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_dialog_get_action_area (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>);</pre>
|
1003
986
|
<p>
|
@@ -1013,7 +996,7 @@ Returns the action area of <em class="parameter"><code>dialog</code></em>.
|
|
1013
996
|
</tr>
|
1014
997
|
<tr>
|
1015
998
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1016
|
-
<td>
|
999
|
+
<td>the action area. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1017
1000
|
</td>
|
1018
1001
|
</tr>
|
1019
1002
|
</tbody>
|
@@ -1021,7 +1004,7 @@ Returns the action area of <em class="parameter"><code>dialog</code></em>.
|
|
1021
1004
|
<p class="since">Since 2.14</p>
|
1022
1005
|
</div>
|
1023
1006
|
<hr>
|
1024
|
-
<div class="refsect2"
|
1007
|
+
<div class="refsect2">
|
1025
1008
|
<a name="gtk-dialog-get-content-area"></a><h3>gtk_dialog_get_content_area ()</h3>
|
1026
1009
|
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_dialog_get_content_area (<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>);</pre>
|
1027
1010
|
<p>
|
@@ -1037,7 +1020,7 @@ Returns the content area of <em class="parameter"><code>dialog</code></em>.
|
|
1037
1020
|
</tr>
|
1038
1021
|
<tr>
|
1039
1022
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1040
|
-
<td>
|
1023
|
+
<td>the content area <a class="link" href="GtkVBox.html" title="GtkVBox"><span class="type">GtkVBox</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1041
1024
|
</td>
|
1042
1025
|
</tr>
|
1043
1026
|
</tbody>
|
@@ -1045,9 +1028,9 @@ Returns the content area of <em class="parameter"><code>dialog</code></em>.
|
|
1045
1028
|
<p class="since">Since 2.14</p>
|
1046
1029
|
</div>
|
1047
1030
|
<hr>
|
1048
|
-
<div class="refsect2"
|
1031
|
+
<div class="refsect2">
|
1049
1032
|
<a name="gtk-alternative-dialog-button-order"></a><h3>gtk_alternative_dialog_button_order ()</h3>
|
1050
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_alternative_dialog_button_order (<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
1033
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_alternative_dialog_button_order (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
|
1051
1034
|
<p>
|
1052
1035
|
Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if dialogs are expected to use an alternative
|
1053
1036
|
button order on the screen <em class="parameter"><code>screen</code></em>. See
|
@@ -1065,21 +1048,19 @@ notified if the button order setting changes.
|
|
1065
1048
|
<tbody>
|
1066
1049
|
<tr>
|
1067
1050
|
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
1068
|
-
<td>
|
1051
|
+
<td>a <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default screen. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1069
1052
|
</td>
|
1070
1053
|
</tr>
|
1071
1054
|
<tr>
|
1072
1055
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1073
|
-
<td>
|
1074
|
-
|
1075
|
-
</td>
|
1056
|
+
<td>Whether the alternative button order should be used</td>
|
1076
1057
|
</tr>
|
1077
1058
|
</tbody>
|
1078
1059
|
</table></div>
|
1079
1060
|
<p class="since">Since 2.6</p>
|
1080
1061
|
</div>
|
1081
1062
|
<hr>
|
1082
|
-
<div class="refsect2"
|
1063
|
+
<div class="refsect2">
|
1083
1064
|
<a name="gtk-dialog-set-alternative-button-order"></a><h3>gtk_dialog_set_alternative_button_order ()</h3>
|
1084
1065
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_dialog_set_alternative_button_order
|
1085
1066
|
(<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
@@ -1162,20 +1143,18 @@ following example shows:
|
|
1162
1143
|
</tr>
|
1163
1144
|
<tr>
|
1164
1145
|
<td><p><span class="term"><em class="parameter"><code>first_response_id</code></em> :</span></p></td>
|
1165
|
-
<td>a response id used by one <em class="parameter"><code>dialog</code></em>'s buttons
|
1166
|
-
</td>
|
1146
|
+
<td>a response id used by one <em class="parameter"><code>dialog</code></em>'s buttons</td>
|
1167
1147
|
</tr>
|
1168
1148
|
<tr>
|
1169
1149
|
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1170
|
-
<td>a list of more response ids of <em class="parameter"><code>dialog</code></em>'s buttons, terminated by -1
|
1171
|
-
</td>
|
1150
|
+
<td>a list of more response ids of <em class="parameter"><code>dialog</code></em>'s buttons, terminated by -1</td>
|
1172
1151
|
</tr>
|
1173
1152
|
</tbody>
|
1174
1153
|
</table></div>
|
1175
1154
|
<p class="since">Since 2.6</p>
|
1176
1155
|
</div>
|
1177
1156
|
<hr>
|
1178
|
-
<div class="refsect2"
|
1157
|
+
<div class="refsect2">
|
1179
1158
|
<a name="gtk-dialog-set-alternative-button-order-from-array"></a><h3>gtk_dialog_set_alternative_button_order_from_array ()</h3>
|
1180
1159
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_dialog_set_alternative_button_order_from_array
|
1181
1160
|
(<em class="parameter"><code><a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog</code></em>,
|
@@ -1208,7 +1187,8 @@ This function is for use by language bindings.
|
|
1208
1187
|
</tr>
|
1209
1188
|
<tr>
|
1210
1189
|
<td><p><span class="term"><em class="parameter"><code>new_order</code></em> :</span></p></td>
|
1211
|
-
<td>an array of response ids of
|
1190
|
+
<td>an array of response ids of
|
1191
|
+
<em class="parameter"><code>dialog</code></em>'s buttons. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_params]</span>
|
1212
1192
|
</td>
|
1213
1193
|
</tr>
|
1214
1194
|
</tbody>
|
@@ -1216,12 +1196,12 @@ This function is for use by language bindings.
|
|
1216
1196
|
<p class="since">Since 2.6</p>
|
1217
1197
|
</div>
|
1218
1198
|
</div>
|
1219
|
-
<div class="refsect1"
|
1199
|
+
<div class="refsect1">
|
1220
1200
|
<a name="GtkDialog.property-details"></a><h2>Property Details</h2>
|
1221
|
-
<div class="refsect2"
|
1201
|
+
<div class="refsect2">
|
1222
1202
|
<a name="GtkDialog--has-separator"></a><h3>The <code class="literal">"has-separator"</code> property</h3>
|
1223
1203
|
<pre class="programlisting"> "has-separator" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1224
|
-
<div class="warning"
|
1204
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1225
1205
|
<h3 class="title">Warning</h3>
|
1226
1206
|
<p><code class="literal">GtkDialog:has-separator</code> has been deprecated since version 2.22 and should not be used in newly-written code. This property will be removed in GTK+ 3.</p>
|
1227
1207
|
</div>
|
@@ -1231,9 +1211,9 @@ When <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.
|
|
1231
1211
|
<p>Default value: FALSE</p>
|
1232
1212
|
</div>
|
1233
1213
|
</div>
|
1234
|
-
<div class="refsect1"
|
1214
|
+
<div class="refsect1">
|
1235
1215
|
<a name="GtkDialog.style-property-details"></a><h2>Style Property Details</h2>
|
1236
|
-
<div class="refsect2"
|
1216
|
+
<div class="refsect2">
|
1237
1217
|
<a name="GtkDialog--s-action-area-border"></a><h3>The <code class="literal">"action-area-border"</code> style property</h3>
|
1238
1218
|
<pre class="programlisting"> "action-area-border" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
|
1239
1219
|
<p>Width of border around the button area at the bottom of the dialog.</p>
|
@@ -1241,7 +1221,7 @@ When <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.
|
|
1241
1221
|
<p>Default value: 5</p>
|
1242
1222
|
</div>
|
1243
1223
|
<hr>
|
1244
|
-
<div class="refsect2"
|
1224
|
+
<div class="refsect2">
|
1245
1225
|
<a name="GtkDialog--s-button-spacing"></a><h3>The <code class="literal">"button-spacing"</code> style property</h3>
|
1246
1226
|
<pre class="programlisting"> "button-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
|
1247
1227
|
<p>Spacing between buttons.</p>
|
@@ -1249,7 +1229,7 @@ When <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.
|
|
1249
1229
|
<p>Default value: 6</p>
|
1250
1230
|
</div>
|
1251
1231
|
<hr>
|
1252
|
-
<div class="refsect2"
|
1232
|
+
<div class="refsect2">
|
1253
1233
|
<a name="GtkDialog--s-content-area-border"></a><h3>The <code class="literal">"content-area-border"</code> style property</h3>
|
1254
1234
|
<pre class="programlisting"> "content-area-border" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
|
1255
1235
|
<p>Width of border around the main dialog area.</p>
|
@@ -1257,7 +1237,7 @@ When <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.
|
|
1257
1237
|
<p>Default value: 2</p>
|
1258
1238
|
</div>
|
1259
1239
|
<hr>
|
1260
|
-
<div class="refsect2"
|
1240
|
+
<div class="refsect2">
|
1261
1241
|
<a name="GtkDialog--s-content-area-spacing"></a><h3>The <code class="literal">"content-area-spacing"</code> style property</h3>
|
1262
1242
|
<pre class="programlisting"> "content-area-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
|
1263
1243
|
<p>
|
@@ -1271,12 +1251,12 @@ was called on that widget directly.
|
|
1271
1251
|
<p class="since">Since 2.16</p>
|
1272
1252
|
</div>
|
1273
1253
|
</div>
|
1274
|
-
<div class="refsect1"
|
1254
|
+
<div class="refsect1">
|
1275
1255
|
<a name="GtkDialog.signal-details"></a><h2>Signal Details</h2>
|
1276
|
-
<div class="refsect2"
|
1256
|
+
<div class="refsect2">
|
1277
1257
|
<a name="GtkDialog-close"></a><h3>The <code class="literal">"close"</code> signal</h3>
|
1278
1258
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *arg0,
|
1279
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
1259
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
1280
1260
|
<p>
|
1281
1261
|
The ::close signal is a
|
1282
1262
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -1295,11 +1275,11 @@ The default binding for this signal is the Escape key.
|
|
1295
1275
|
</table></div>
|
1296
1276
|
</div>
|
1297
1277
|
<hr>
|
1298
|
-
<div class="refsect2"
|
1278
|
+
<div class="refsect2">
|
1299
1279
|
<a name="GtkDialog-response"></a><h3>The <code class="literal">"response"</code> signal</h3>
|
1300
1280
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkDialog.html" title="GtkDialog"><span class="type">GtkDialog</span></a> *dialog,
|
1301
1281
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response_id,
|
1302
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
|
1282
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
1303
1283
|
<p>
|
1304
1284
|
Emitted when an action widget is clicked, the dialog receives a
|
1305
1285
|
delete event, or the application programmer calls <a class="link" href="GtkDialog.html#gtk-dialog-response" title="gtk_dialog_response ()"><code class="function">gtk_dialog_response()</code></a>.
|
@@ -1311,13 +1291,11 @@ Otherwise, it depends on which action widget was clicked.
|
|
1311
1291
|
<tbody>
|
1312
1292
|
<tr>
|
1313
1293
|
<td><p><span class="term"><em class="parameter"><code>dialog</code></em> :</span></p></td>
|
1314
|
-
<td>the object on which the signal is emitted
|
1315
|
-
</td>
|
1294
|
+
<td>the object on which the signal is emitted</td>
|
1316
1295
|
</tr>
|
1317
1296
|
<tr>
|
1318
1297
|
<td><p><span class="term"><em class="parameter"><code>response_id</code></em> :</span></p></td>
|
1319
|
-
<td>the response ID
|
1320
|
-
</td>
|
1298
|
+
<td>the response ID</td>
|
1321
1299
|
</tr>
|
1322
1300
|
<tr>
|
1323
1301
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -1327,7 +1305,7 @@ Otherwise, it depends on which action widget was clicked.
|
|
1327
1305
|
</table></div>
|
1328
1306
|
</div>
|
1329
1307
|
</div>
|
1330
|
-
<div class="refsect1"
|
1308
|
+
<div class="refsect1">
|
1331
1309
|
<a name="GtkDialog.see-also"></a><h2>See Also</h2>
|
1332
1310
|
<p>
|
1333
1311
|
</p>
|
@@ -1355,6 +1333,6 @@ response from the user.</p></td>
|
|
1355
1333
|
</div>
|
1356
1334
|
<div class="footer">
|
1357
1335
|
<hr>
|
1358
|
-
Generated by GTK-Doc V1.
|
1336
|
+
Generated by GTK-Doc V1.17</div>
|
1359
1337
|
</body>
|
1360
1338
|
</html>
|