gtk2 1.0.3-x86-mingw32 → 1.1.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +66 -1
- data/ext/gtk2/extconf.rb +0 -96
- data/ext/gtk2/global.h +274 -13
- data/ext/gtk2/gtk2.def +5 -3
- data/ext/gtk2/init.c +263 -19
- data/ext/gtk2/rbgdk.c +245 -89
- data/ext/gtk2/rbgdk.h +32 -6
- data/ext/gtk2/rbgdkatom.c +38 -28
- data/ext/gtk2/rbgdkcairo.c +32 -42
- data/ext/gtk2/rbgdkcolor.c +52 -42
- data/ext/gtk2/rbgdkcolormap.c +42 -37
- data/ext/gtk2/rbgdkconst.c +23 -13
- data/ext/gtk2/rbgdkconversions.h +19 -6
- data/ext/gtk2/rbgdkcursor.c +37 -25
- data/ext/gtk2/rbgdkdevice.c +77 -67
- data/ext/gtk2/rbgdkdisplay.c +158 -150
- data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
- data/ext/gtk2/rbgdkdragcontext.c +121 -70
- data/ext/gtk2/rbgdkdraw.c +252 -160
- data/ext/gtk2/rbgdkevent.c +30 -20
- data/ext/gtk2/rbgdkgc.c +123 -116
- data/ext/gtk2/rbgdkgeometry.c +77 -68
- data/ext/gtk2/rbgdkimage.c +58 -47
- data/ext/gtk2/rbgdkinput.c +33 -26
- data/ext/gtk2/rbgdkkeymap.c +38 -27
- data/ext/gtk2/rbgdkkeyval.c +44 -32
- data/ext/gtk2/rbgdkpango.c +66 -39
- data/ext/gtk2/rbgdkpangorenderer.c +63 -35
- data/ext/gtk2/rbgdkpixbuf.c +36 -25
- data/ext/gtk2/rbgdkpixmap.c +65 -49
- data/ext/gtk2/rbgdkproperty.c +66 -60
- data/ext/gtk2/rbgdkrectangle.c +54 -46
- data/ext/gtk2/rbgdkregion.c +144 -79
- data/ext/gtk2/rbgdkrgb.c +74 -58
- data/ext/gtk2/rbgdkscreen.c +103 -97
- data/ext/gtk2/rbgdkselection.c +49 -39
- data/ext/gtk2/rbgdkthreads.c +32 -19
- data/ext/gtk2/rbgdktimecoord.c +60 -38
- data/ext/gtk2/rbgdkvisual.c +79 -71
- data/ext/gtk2/rbgdkwindow.c +284 -305
- data/ext/gtk2/rbgdkwindowattr.c +69 -58
- data/ext/gtk2/rbgdkx11.c +41 -28
- data/ext/gtk2/rbgtk.c +498 -19
- data/ext/gtk2/rbgtk.h +35 -20
- data/ext/gtk2/rbgtkaboutdialog.c +33 -80
- data/ext/gtk2/rbgtkaccelerator.c +36 -23
- data/ext/gtk2/rbgtkaccelgroup.c +50 -40
- data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
- data/ext/gtk2/rbgtkaccelkey.c +40 -28
- data/ext/gtk2/rbgtkaccellabel.c +30 -18
- data/ext/gtk2/rbgtkaccelmap.c +55 -42
- data/ext/gtk2/rbgtkaccessible.c +25 -14
- data/ext/gtk2/rbgtkaction.c +68 -68
- data/ext/gtk2/rbgtkactiongroup.c +317 -195
- data/ext/gtk2/rbgtkadjustment.c +33 -46
- data/ext/gtk2/rbgtkalignment.c +36 -24
- data/ext/gtk2/rbgtkallocation.c +53 -42
- data/ext/gtk2/rbgtkarrow.c +34 -22
- data/ext/gtk2/rbgtkaspectframe.c +32 -20
- data/ext/gtk2/rbgtkassistant.c +81 -61
- data/ext/gtk2/rbgtkbbox.c +32 -20
- data/ext/gtk2/rbgtkbin.c +28 -16
- data/ext/gtk2/rbgtkbindingset.c +42 -35
- data/ext/gtk2/rbgtkborder.c +34 -23
- data/ext/gtk2/rbgtkbox.c +40 -29
- data/ext/gtk2/rbgtkbuildable.c +57 -45
- data/ext/gtk2/rbgtkbuilder.c +53 -38
- data/ext/gtk2/rbgtkbutton.c +41 -55
- data/ext/gtk2/rbgtkcalendar.c +51 -40
- data/ext/gtk2/rbgtkcelleditable.c +28 -17
- data/ext/gtk2/rbgtkcelllayout.c +41 -30
- data/ext/gtk2/rbgtkcellrenderer.c +43 -32
- data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
- data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
- data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
- data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
- data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
- data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
- data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
- data/ext/gtk2/rbgtkcellview.c +34 -33
- data/ext/gtk2/rbgtkcheckbutton.c +28 -16
- data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
- data/ext/gtk2/rbgtkclipboard.c +123 -77
- data/ext/gtk2/rbgtkcolorbutton.c +26 -31
- data/ext/gtk2/rbgtkcolorsel.c +109 -55
- data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
- data/ext/gtk2/rbgtkcombo.c +43 -32
- data/ext/gtk2/rbgtkcombobox.c +44 -83
- data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
- data/ext/gtk2/rbgtkconst.c +23 -13
- data/ext/gtk2/rbgtkcontainer.c +153 -100
- data/ext/gtk2/rbgtkconversions.h +19 -6
- data/ext/gtk2/rbgtkcurve.c +46 -36
- data/ext/gtk2/rbgtkdialog.c +104 -70
- data/ext/gtk2/rbgtkdrag.c +173 -121
- data/ext/gtk2/rbgtkdrawingarea.c +28 -16
- data/ext/gtk2/rbgtkeditable.c +63 -51
- data/ext/gtk2/rbgtkentry.c +48 -85
- data/ext/gtk2/rbgtkentrycompletion.c +42 -55
- data/ext/gtk2/rbgtkeventbox.c +28 -16
- data/ext/gtk2/rbgtkexpander.c +26 -35
- data/ext/gtk2/rbgtkfilechooser.c +87 -143
- data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
- data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
- data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
- data/ext/gtk2/rbgtkfilefilter.c +45 -35
- data/ext/gtk2/rbgtkfilesel.c +54 -43
- data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
- data/ext/gtk2/rbgtkfixed.c +36 -25
- data/ext/gtk2/rbgtkfontbutton.c +26 -37
- data/ext/gtk2/rbgtkfontselection.c +27 -15
- data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
- data/ext/gtk2/rbgtkframe.c +39 -28
- data/ext/gtk2/rbgtkgamma.c +32 -20
- data/ext/gtk2/rbgtkhandlebox.c +31 -19
- data/ext/gtk2/rbgtkhbbox.c +28 -16
- data/ext/gtk2/rbgtkhbox.c +29 -17
- data/ext/gtk2/rbgtkhpaned.c +28 -16
- data/ext/gtk2/rbgtkhruler.c +28 -16
- data/ext/gtk2/rbgtkhscale.c +28 -16
- data/ext/gtk2/rbgtkhscrollbar.c +28 -16
- data/ext/gtk2/rbgtkhseparator.c +28 -16
- data/ext/gtk2/rbgtkiconfactory.c +35 -23
- data/ext/gtk2/rbgtkiconinfo.c +42 -30
- data/ext/gtk2/rbgtkiconset.c +31 -19
- data/ext/gtk2/rbgtkiconsize.c +38 -25
- data/ext/gtk2/rbgtkiconsource.c +62 -50
- data/ext/gtk2/rbgtkicontheme.c +95 -95
- data/ext/gtk2/rbgtkiconview.c +87 -121
- data/ext/gtk2/rbgtkimage.c +31 -40
- data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
- data/ext/gtk2/rbgtkimcontext.c +46 -34
- data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
- data/ext/gtk2/rbgtkimmulticontext.c +26 -14
- data/ext/gtk2/rbgtkinputdialog.c +28 -16
- data/ext/gtk2/rbgtkinvisible.c +24 -18
- data/ext/gtk2/rbgtkitem.c +32 -20
- data/ext/gtk2/rbgtkitemfactory.c +65 -57
- data/ext/gtk2/rbgtklabel.c +46 -57
- data/ext/gtk2/rbgtklayout.c +40 -29
- data/ext/gtk2/rbgtklinkbutton.c +26 -15
- data/ext/gtk2/rbgtkliststore.c +145 -102
- data/ext/gtk2/rbgtkmacros.h +19 -6
- data/ext/gtk2/rbgtkmenu.c +47 -59
- data/ext/gtk2/rbgtkmenubar.c +30 -30
- data/ext/gtk2/rbgtkmenuitem.c +34 -41
- data/ext/gtk2/rbgtkmenushell.c +43 -42
- data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
- data/ext/gtk2/rbgtkmessagedialog.c +31 -25
- data/ext/gtk2/rbgtkmisc.c +33 -22
- data/ext/gtk2/rbgtknotebook.c +98 -134
- data/ext/gtk2/rbgtkobject.c +46 -81
- data/ext/gtk2/rbgtkoptionmenu.c +35 -23
- data/ext/gtk2/rbgtkpagesetup.c +64 -54
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
- data/ext/gtk2/rbgtkpaned.c +46 -36
- data/ext/gtk2/rbgtkpapersize.c +60 -54
- data/ext/gtk2/rbgtkplug.c +32 -20
- data/ext/gtk2/rbgtkprintcontext.c +43 -35
- data/ext/gtk2/rbgtkprinter.c +36 -37
- data/ext/gtk2/rbgtkprintjob.c +36 -37
- data/ext/gtk2/rbgtkprintoperation.c +44 -33
- data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
- data/ext/gtk2/rbgtkprintsettings.c +248 -192
- data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
- data/ext/gtk2/rbgtkprogress.c +23 -13
- data/ext/gtk2/rbgtkprogressbar.c +47 -46
- data/ext/gtk2/rbgtkradioaction.c +84 -39
- data/ext/gtk2/rbgtkradiobutton.c +33 -21
- data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
- data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
- data/ext/gtk2/rbgtkrange.c +36 -56
- data/ext/gtk2/rbgtkrc.c +61 -49
- data/ext/gtk2/rbgtkrcstyle.c +59 -48
- data/ext/gtk2/rbgtkrecentaction.c +28 -16
- data/ext/gtk2/rbgtkrecentchooser.c +58 -92
- data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
- data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
- data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
- data/ext/gtk2/rbgtkrecentdata.c +47 -36
- data/ext/gtk2/rbgtkrecentfilter.c +55 -46
- data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
- data/ext/gtk2/rbgtkrecentinfo.c +66 -56
- data/ext/gtk2/rbgtkrecentmanager.c +47 -43
- data/ext/gtk2/rbgtkruler.c +35 -30
- data/ext/gtk2/rbgtkscale.c +29 -18
- data/ext/gtk2/rbgtkscalebutton.c +27 -27
- data/ext/gtk2/rbgtkscrollbar.c +23 -13
- data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
- data/ext/gtk2/rbgtkselection.c +87 -67
- data/ext/gtk2/rbgtkselectiondata.c +74 -65
- data/ext/gtk2/rbgtkseparator.c +23 -13
- data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
- data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
- data/ext/gtk2/rbgtksettings.c +123 -103
- data/ext/gtk2/rbgtksizegroup.c +33 -30
- data/ext/gtk2/rbgtksocket.c +32 -20
- data/ext/gtk2/rbgtkspinbutton.c +48 -38
- data/ext/gtk2/rbgtkspinner.c +27 -14
- data/ext/gtk2/rbgtkstatusbar.c +36 -31
- data/ext/gtk2/rbgtkstatusicon.c +31 -44
- data/ext/gtk2/rbgtkstock.c +137 -125
- data/ext/gtk2/rbgtkstyle.c +177 -161
- data/ext/gtk2/rbgtktable.c +58 -47
- data/ext/gtk2/rbgtktargetlist.c +56 -36
- data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
- data/ext/gtk2/rbgtktextappearance.c +44 -34
- data/ext/gtk2/rbgtktextattributes.c +54 -42
- data/ext/gtk2/rbgtktextbuffer.c +188 -191
- data/ext/gtk2/rbgtktextchild.c +29 -18
- data/ext/gtk2/rbgtktextiter.c +153 -145
- data/ext/gtk2/rbgtktextmark.c +33 -30
- data/ext/gtk2/rbgtktexttag.c +34 -22
- data/ext/gtk2/rbgtktexttagtable.c +36 -25
- data/ext/gtk2/rbgtktextview.c +85 -73
- data/ext/gtk2/rbgtktoggleaction.c +27 -22
- data/ext/gtk2/rbgtktogglebutton.c +37 -26
- data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
- data/ext/gtk2/rbgtktoolbar.c +66 -69
- data/ext/gtk2/rbgtktoolbutton.c +27 -40
- data/ext/gtk2/rbgtktoolitem.c +60 -62
- data/ext/gtk2/rbgtktooltip.c +36 -25
- data/ext/gtk2/rbgtktooltips.c +42 -34
- data/ext/gtk2/rbgtktreedragdest.c +20 -11
- data/ext/gtk2/rbgtktreedragsource.c +20 -11
- data/ext/gtk2/rbgtktreeiter.c +58 -47
- data/ext/gtk2/rbgtktreemodel.c +83 -65
- data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
- data/ext/gtk2/rbgtktreemodelsort.c +38 -27
- data/ext/gtk2/rbgtktreepath.c +55 -44
- data/ext/gtk2/rbgtktreerowreference.c +60 -42
- data/ext/gtk2/rbgtktreeselection.c +61 -52
- data/ext/gtk2/rbgtktreesortable.c +52 -42
- data/ext/gtk2/rbgtktreestore.c +88 -67
- data/ext/gtk2/rbgtktreeview.c +157 -185
- data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
- data/ext/gtk2/rbgtkuimanager.c +61 -61
- data/ext/gtk2/rbgtkvbbox.c +28 -16
- data/ext/gtk2/rbgtkvbox.c +29 -17
- data/ext/gtk2/rbgtkviewport.c +28 -16
- data/ext/gtk2/rbgtkvolumebutton.c +28 -16
- data/ext/gtk2/rbgtkvpaned.c +28 -16
- data/ext/gtk2/rbgtkvruler.c +28 -16
- data/ext/gtk2/rbgtkvscale.c +28 -16
- data/ext/gtk2/rbgtkvscrollbar.c +28 -16
- data/ext/gtk2/rbgtkvseparator.c +28 -16
- data/ext/gtk2/rbgtkwidget.c +284 -296
- data/ext/gtk2/rbgtkwindow.c +156 -214
- data/ext/gtk2/rbgtkwindowgroup.c +35 -24
- data/lib/1.8/gtk2.so +0 -0
- data/lib/1.9/gtk2.so +0 -0
- data/sample/testgtk/labels.rb +1 -0
- data/sample/testgtk/testgtk.rb +2 -0
- data/vendor/local/bin/gtk-builder-convert +29 -2
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
- data/vendor/local/lib/gailutil.lib +0 -0
- data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gail.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
- data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
- data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
- data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
- data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
- data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
- data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
- data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
- data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
- data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
- data/vendor/local/share/icons/hicolor/index.theme +1662 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
- data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
- metadata +29 -31
- data/ChangeLog +0 -6902
- data/ext/gtk2/rbgtkmain.c +0 -493
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
@@ -1,30 +1,42 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2006 Ruby-GNOME2 Project Team
|
5
|
+
*
|
6
|
+
* This library is free software; you can redistribute it and/or
|
7
|
+
* modify it under the terms of the GNU Lesser General Public
|
8
|
+
* License as published by the Free Software Foundation; either
|
9
|
+
* version 2.1 of the License, or (at your option) any later version.
|
10
|
+
*
|
11
|
+
* This library is distributed in the hope that it will be useful,
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
+
* Lesser General Public License for more details.
|
15
|
+
*
|
16
|
+
* You should have received a copy of the GNU Lesser General Public
|
17
|
+
* License along with this library; if not, write to the Free Software
|
18
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
+
* MA 02110-1301 USA
|
20
|
+
*/
|
11
21
|
|
12
22
|
#include "global.h"
|
13
23
|
|
14
24
|
#if GTK_CHECK_VERSION(2,10,0)
|
25
|
+
|
26
|
+
#define RG_TARGET_NAMESPACE cPrintOperation
|
15
27
|
#define _SELF(s) (GTK_PRINT_OPERATION(RVAL2GOBJ(s)))
|
16
28
|
|
17
|
-
static VALUE
|
29
|
+
static VALUE RG_TARGET_NAMESPACE;
|
18
30
|
|
19
31
|
static VALUE
|
20
|
-
|
32
|
+
rg_initialize(VALUE self)
|
21
33
|
{
|
22
34
|
G_INITIALIZE(self, gtk_print_operation_new());
|
23
35
|
return Qnil;
|
24
36
|
}
|
25
37
|
|
26
38
|
static VALUE
|
27
|
-
|
39
|
+
rg_run(int argc, VALUE *argv, VALUE self)
|
28
40
|
{
|
29
41
|
VALUE action, parent, rb_result;
|
30
42
|
GtkPrintOperationResult result;
|
@@ -47,7 +59,7 @@ po_run(int argc, VALUE *argv, VALUE self)
|
|
47
59
|
}
|
48
60
|
|
49
61
|
static VALUE
|
50
|
-
|
62
|
+
rg_error(VALUE self)
|
51
63
|
{
|
52
64
|
GError *error = NULL;
|
53
65
|
gtk_print_operation_get_error(_SELF(self), &error);
|
@@ -55,13 +67,13 @@ po_get_error(VALUE self)
|
|
55
67
|
}
|
56
68
|
|
57
69
|
static VALUE
|
58
|
-
|
70
|
+
rg_finished_p(VALUE self)
|
59
71
|
{
|
60
72
|
return CBOOL2RVAL(gtk_print_operation_is_finished(_SELF(self)));
|
61
73
|
}
|
62
74
|
|
63
75
|
static VALUE
|
64
|
-
|
76
|
+
rg_cancel(VALUE self)
|
65
77
|
{
|
66
78
|
gtk_print_operation_cancel(_SELF(self));
|
67
79
|
return self;
|
@@ -86,7 +98,7 @@ page_setup_done_cb(GtkPageSetup *page_setup, gpointer data)
|
|
86
98
|
VALUE callback = (VALUE)data;
|
87
99
|
struct callback_arg arg;
|
88
100
|
|
89
|
-
G_CHILD_UNSET(
|
101
|
+
G_CHILD_UNSET(RG_TARGET_NAMESPACE, rb_intern("setup_done_cb"));
|
90
102
|
|
91
103
|
arg.callback = callback;
|
92
104
|
arg.page_setup = GOBJ2RVAL(page_setup);
|
@@ -95,14 +107,14 @@ page_setup_done_cb(GtkPageSetup *page_setup, gpointer data)
|
|
95
107
|
}
|
96
108
|
|
97
109
|
static VALUE
|
98
|
-
|
110
|
+
rg_s_run_page_setup_dialog(int argc, VALUE *argv, G_GNUC_UNUSED VALUE self)
|
99
111
|
{
|
100
112
|
VALUE parent, page_setup, settings;
|
101
113
|
rb_scan_args(argc, argv, "03", &parent, &page_setup, &settings);
|
102
114
|
|
103
115
|
if (rb_block_given_p()) {
|
104
116
|
volatile VALUE func = rb_block_proc();
|
105
|
-
G_CHILD_SET(
|
117
|
+
G_CHILD_SET(RG_TARGET_NAMESPACE, rb_intern("setup_done_cb"), func);
|
106
118
|
gtk_print_run_page_setup_dialog_async(RVAL2GOBJ(parent),
|
107
119
|
RVAL2GOBJ(page_setup),
|
108
120
|
RVAL2GOBJ(settings),
|
@@ -118,33 +130,32 @@ po_run_page_setup_dialog(int argc, VALUE *argv, VALUE self)
|
|
118
130
|
#endif
|
119
131
|
|
120
132
|
void
|
121
|
-
Init_gtk_print_operation()
|
133
|
+
Init_gtk_print_operation(VALUE mGtk)
|
122
134
|
{
|
123
135
|
#if GTK_CHECK_VERSION(2,10,0)
|
124
|
-
|
136
|
+
RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_PRINT_OPERATION, "PrintOperation", mGtk);
|
125
137
|
|
126
138
|
G_DEF_ERROR(GTK_PRINT_ERROR, "PrintError", mGtk, rb_eRuntimeError,
|
127
139
|
GTK_TYPE_PRINT_ERROR);
|
128
140
|
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
141
|
+
RG_DEF_METHOD(initialize, 0);
|
142
|
+
RG_DEF_METHOD(run, -1);
|
143
|
+
RG_DEF_METHOD(error, 0);
|
144
|
+
RG_DEF_METHOD_P(finished, 0);
|
145
|
+
RG_DEF_METHOD(cancel, 0);
|
134
146
|
|
135
|
-
|
136
|
-
po_run_page_setup_dialog, -1);
|
147
|
+
RG_DEF_SMETHOD(run_page_setup_dialog, -1);
|
137
148
|
|
138
149
|
/* GtkPrintStatus */
|
139
|
-
G_DEF_CLASS(GTK_TYPE_PRINT_STATUS, "Status",
|
140
|
-
G_DEF_CONSTANTS(
|
150
|
+
G_DEF_CLASS(GTK_TYPE_PRINT_STATUS, "Status", RG_TARGET_NAMESPACE);
|
151
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_PRINT_STATUS, "GTK_PRINT_");
|
141
152
|
|
142
153
|
/* GtkPrintOperationAction */
|
143
|
-
G_DEF_CLASS(GTK_TYPE_PRINT_OPERATION_ACTION,"Action",
|
144
|
-
G_DEF_CONSTANTS(
|
154
|
+
G_DEF_CLASS(GTK_TYPE_PRINT_OPERATION_ACTION,"Action", RG_TARGET_NAMESPACE);
|
155
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_PRINT_OPERATION_ACTION, "GTK_PRINT_OPERATION_");
|
145
156
|
|
146
157
|
/* GtkPrintOperationResult */
|
147
|
-
G_DEF_CLASS(GTK_TYPE_PRINT_OPERATION_RESULT, "Result",
|
148
|
-
G_DEF_CONSTANTS(
|
158
|
+
G_DEF_CLASS(GTK_TYPE_PRINT_OPERATION_RESULT, "Result", RG_TARGET_NAMESPACE);
|
159
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_PRINT_OPERATION_RESULT, "GTK_PRINT_OPERATION_");
|
149
160
|
#endif
|
150
161
|
}
|
@@ -1,35 +1,47 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2006 Ruby-GNOME2 Project Team
|
5
|
+
*
|
6
|
+
* This library is free software; you can redistribute it and/or
|
7
|
+
* modify it under the terms of the GNU Lesser General Public
|
8
|
+
* License as published by the Free Software Foundation; either
|
9
|
+
* version 2.1 of the License, or (at your option) any later version.
|
10
|
+
*
|
11
|
+
* This library is distributed in the hope that it will be useful,
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
+
* Lesser General Public License for more details.
|
15
|
+
*
|
16
|
+
* You should have received a copy of the GNU Lesser General Public
|
17
|
+
* License along with this library; if not, write to the Free Software
|
18
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
+
* MA 02110-1301 USA
|
20
|
+
*/
|
11
21
|
|
12
22
|
#include "global.h"
|
13
23
|
|
14
24
|
#if GTK_CHECK_VERSION(2,10,0)
|
25
|
+
|
26
|
+
#define RG_TARGET_NAMESPACE cPrintOperationPreview
|
15
27
|
#define _SELF(s) (GTK_PRINT_OPERATION_PREVIEW(RVAL2GOBJ(s)))
|
16
28
|
|
17
29
|
static VALUE
|
18
|
-
|
30
|
+
rg_render_page(VALUE self, VALUE page_number)
|
19
31
|
{
|
20
32
|
gtk_print_operation_preview_render_page(_SELF(self), NUM2INT(page_number));
|
21
33
|
return self;
|
22
34
|
}
|
23
35
|
|
24
36
|
static VALUE
|
25
|
-
|
37
|
+
rg_end_preview(VALUE self)
|
26
38
|
{
|
27
39
|
gtk_print_operation_preview_end_preview(_SELF(self));
|
28
40
|
return self;
|
29
41
|
}
|
30
42
|
|
31
43
|
static VALUE
|
32
|
-
|
44
|
+
rg_selected_p(VALUE self, VALUE page_number)
|
33
45
|
{
|
34
46
|
gboolean selected;
|
35
47
|
selected = gtk_print_operation_preview_is_selected(_SELF(self),
|
@@ -39,16 +51,16 @@ pop_is_selected(VALUE self, VALUE page_number)
|
|
39
51
|
#endif
|
40
52
|
|
41
53
|
void
|
42
|
-
Init_gtk_print_operation_preview()
|
54
|
+
Init_gtk_print_operation_preview(VALUE mGtk)
|
43
55
|
{
|
44
56
|
#if GTK_CHECK_VERSION(2,10,0)
|
45
|
-
VALUE
|
57
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_PRINT_OPERATION_PREVIEW,
|
46
58
|
"PrintOperationPreview", mGtk);
|
47
59
|
|
48
|
-
|
49
|
-
|
50
|
-
|
60
|
+
RG_DEF_METHOD(render_page, 1);
|
61
|
+
RG_DEF_METHOD(end_preview, 0);
|
62
|
+
RG_DEF_METHOD_P(selected, 1);
|
51
63
|
|
52
|
-
G_DEF_SETTERS(
|
64
|
+
G_DEF_SETTERS(RG_TARGET_NAMESPACE);
|
53
65
|
#endif
|
54
66
|
}
|
@@ -1,18 +1,29 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2006 Ruby-GNOME2 Project Team
|
5
|
+
*
|
6
|
+
* This library is free software; you can redistribute it and/or
|
7
|
+
* modify it under the terms of the GNU Lesser General Public
|
8
|
+
* License as published by the Free Software Foundation; either
|
9
|
+
* version 2.1 of the License, or (at your option) any later version.
|
10
|
+
*
|
11
|
+
* This library is distributed in the hope that it will be useful,
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
+
* Lesser General Public License for more details.
|
15
|
+
*
|
16
|
+
* You should have received a copy of the GNU Lesser General Public
|
17
|
+
* License along with this library; if not, write to the Free Software
|
18
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
+
* MA 02110-1301 USA
|
20
|
+
*/
|
11
21
|
|
12
22
|
#include "global.h"
|
13
23
|
|
14
24
|
#if GTK_CHECK_VERSION(2,10,0)
|
15
25
|
|
26
|
+
#define RG_TARGET_NAMESPACE cPrintSettings
|
16
27
|
#define _SELF(s) (GTK_PRINT_SETTINGS(RVAL2GOBJ(s)))
|
17
28
|
|
18
29
|
#define RVAL2UNIT(o) (RVAL2GENUM(o, GTK_TYPE_UNIT))
|
@@ -21,7 +32,7 @@ static VALUE s_string, s_bool, s_double, s_length, s_int;
|
|
21
32
|
|
22
33
|
#if GTK_CHECK_VERSION(2,12,0)
|
23
34
|
static VALUE
|
24
|
-
|
35
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
25
36
|
{
|
26
37
|
VALUE arg1, arg2;
|
27
38
|
GtkPrintSettings* settings = NULL;
|
@@ -55,13 +66,13 @@ ps_initialize(VALUE self)
|
|
55
66
|
#endif
|
56
67
|
|
57
68
|
static VALUE
|
58
|
-
|
69
|
+
rg_dup(VALUE self)
|
59
70
|
{
|
60
71
|
return GOBJ2RVALU(gtk_print_settings_copy(_SELF(self)));
|
61
72
|
}
|
62
73
|
|
63
74
|
static VALUE
|
64
|
-
|
75
|
+
rg_has_key_p(VALUE self, VALUE key)
|
65
76
|
{
|
66
77
|
return CBOOL2RVAL(gtk_print_settings_has_key(_SELF(self), RVAL2CSTR(key)));
|
67
78
|
}
|
@@ -80,7 +91,7 @@ ps_set(VALUE self, VALUE key, VALUE value)
|
|
80
91
|
}
|
81
92
|
|
82
93
|
static VALUE
|
83
|
-
|
94
|
+
rg_unset(VALUE self, VALUE key)
|
84
95
|
{
|
85
96
|
gtk_print_settings_unset(_SELF(self), RVAL2CSTR(key));
|
86
97
|
return self;
|
@@ -93,7 +104,7 @@ ps_foreach_cb(const gchar *key, const gchar *value, gpointer data)
|
|
93
104
|
}
|
94
105
|
|
95
106
|
static VALUE
|
96
|
-
|
107
|
+
rg_each(VALUE self)
|
97
108
|
{
|
98
109
|
gtk_print_settings_foreach(_SELF(self), ps_foreach_cb,
|
99
110
|
(gpointer)rb_block_proc());
|
@@ -101,7 +112,7 @@ ps_foreach(VALUE self)
|
|
101
112
|
}
|
102
113
|
|
103
114
|
static VALUE
|
104
|
-
|
115
|
+
rg_get_bool(VALUE self, VALUE key)
|
105
116
|
{
|
106
117
|
return CBOOL2RVAL(gtk_print_settings_get_bool(_SELF(self), RVAL2CSTR(key)));
|
107
118
|
}
|
@@ -114,7 +125,7 @@ ps_set_bool(VALUE self, VALUE key, VALUE value)
|
|
114
125
|
}
|
115
126
|
|
116
127
|
static VALUE
|
117
|
-
|
128
|
+
rg_get_double(int argc, VALUE *argv, VALUE self)
|
118
129
|
{
|
119
130
|
VALUE key, default_value;
|
120
131
|
gdouble value;
|
@@ -138,7 +149,7 @@ ps_set_double(VALUE self, VALUE key, VALUE value)
|
|
138
149
|
}
|
139
150
|
|
140
151
|
static VALUE
|
141
|
-
|
152
|
+
rg_get_length(VALUE self, VALUE key, VALUE unit)
|
142
153
|
{
|
143
154
|
return rb_float_new(gtk_print_settings_get_length(_SELF(self),
|
144
155
|
RVAL2CSTR(key),
|
@@ -154,7 +165,7 @@ ps_set_length(VALUE self, VALUE key, VALUE value, VALUE unit)
|
|
154
165
|
}
|
155
166
|
|
156
167
|
static VALUE
|
157
|
-
|
168
|
+
rg_get_int(int argc, VALUE *argv, VALUE self)
|
158
169
|
{
|
159
170
|
VALUE key, default_value;
|
160
171
|
gint value;
|
@@ -178,7 +189,7 @@ ps_set_int(VALUE self, VALUE key, VALUE value)
|
|
178
189
|
}
|
179
190
|
|
180
191
|
static VALUE
|
181
|
-
|
192
|
+
rg_get(int argc, VALUE *argv, VALUE self)
|
182
193
|
{
|
183
194
|
VALUE key, type, unit_or_default, result;
|
184
195
|
|
@@ -187,19 +198,19 @@ ps_get_generic(int argc, VALUE *argv, VALUE self)
|
|
187
198
|
if (NIL_P(type) || (RVAL2CBOOL(rb_equal(type, s_string)))) {
|
188
199
|
result = ps_get(self, key);
|
189
200
|
} else if (RVAL2CBOOL(rb_equal(type, s_bool))) {
|
190
|
-
result =
|
201
|
+
result = rg_get_bool(self, key);
|
191
202
|
} else if (RVAL2CBOOL(rb_equal(type, s_double))) {
|
192
203
|
VALUE double_argv[2];
|
193
204
|
double_argv[0] = key;
|
194
205
|
double_argv[1] = unit_or_default;
|
195
|
-
result =
|
206
|
+
result = rg_get_double(2, double_argv, self);
|
196
207
|
} else if (RVAL2CBOOL(rb_equal(type, s_length))) {
|
197
|
-
result =
|
208
|
+
result = rg_get_length(self, key, unit_or_default);
|
198
209
|
} else if (RVAL2CBOOL(rb_equal(type, s_int))) {
|
199
210
|
VALUE int_argv[2];
|
200
211
|
int_argv[0] = key;
|
201
212
|
int_argv[1] = unit_or_default;
|
202
|
-
result =
|
213
|
+
result = rg_get_int(2, int_argv, self);
|
203
214
|
} else {
|
204
215
|
VALUE inspected_type;
|
205
216
|
inspected_type = rb_inspect(type);
|
@@ -212,7 +223,7 @@ ps_get_generic(int argc, VALUE *argv, VALUE self)
|
|
212
223
|
}
|
213
224
|
|
214
225
|
static VALUE
|
215
|
-
|
226
|
+
rg_set(int argc, VALUE *argv, VALUE self)
|
216
227
|
{
|
217
228
|
VALUE key, value, unit;
|
218
229
|
|
@@ -237,7 +248,7 @@ ps_set_generic(int argc, VALUE *argv, VALUE self)
|
|
237
248
|
}
|
238
249
|
break;
|
239
250
|
case T_NIL:
|
240
|
-
|
251
|
+
rg_unset(self, key);
|
241
252
|
break;
|
242
253
|
default:
|
243
254
|
{
|
@@ -253,48 +264,47 @@ ps_set_generic(int argc, VALUE *argv, VALUE self)
|
|
253
264
|
}
|
254
265
|
|
255
266
|
static VALUE
|
256
|
-
|
267
|
+
rg_operator_ps_set_generic_indexer(int argc, VALUE *argv, VALUE self)
|
257
268
|
{
|
258
269
|
if (argc == 3) {
|
259
270
|
VALUE swapped_argv[3];
|
260
271
|
swapped_argv[0] = argv[0];
|
261
272
|
swapped_argv[1] = argv[2];
|
262
273
|
swapped_argv[2] = argv[1];
|
263
|
-
|
274
|
+
rg_set(argc, swapped_argv, self);
|
264
275
|
} else if (argc == 2) {
|
265
|
-
|
276
|
+
rg_set(argc, argv, self);
|
266
277
|
} else {
|
267
|
-
|
278
|
+
rb_raise(rb_eArgError,
|
268
279
|
"wrong number of arguments (%d for 2 or 3)", argc);
|
269
280
|
}
|
270
281
|
|
271
282
|
return argv[2];
|
272
283
|
}
|
273
284
|
|
274
|
-
|
275
285
|
/* Helpers: */
|
276
286
|
static VALUE
|
277
|
-
|
287
|
+
rg_printer(VALUE self)
|
278
288
|
{
|
279
289
|
return CSTR2RVAL(gtk_print_settings_get_printer(_SELF(self)));
|
280
290
|
}
|
281
291
|
|
282
292
|
static VALUE
|
283
|
-
|
293
|
+
rg_set_printer(VALUE self, VALUE printer)
|
284
294
|
{
|
285
295
|
gtk_print_settings_set_printer(_SELF(self), RVAL2CSTR_ACCEPT_NIL(printer));
|
286
296
|
return self;
|
287
297
|
}
|
288
298
|
|
289
299
|
static VALUE
|
290
|
-
|
300
|
+
rg_orientation(VALUE self)
|
291
301
|
{
|
292
302
|
return GENUM2RVAL(gtk_print_settings_get_orientation(_SELF(self)),
|
293
303
|
GTK_TYPE_PAGE_ORIENTATION);
|
294
304
|
}
|
295
305
|
|
296
306
|
static VALUE
|
297
|
-
|
307
|
+
rg_set_orientation(VALUE self, VALUE orientation)
|
298
308
|
{
|
299
309
|
gtk_print_settings_set_orientation(_SELF(self),
|
300
310
|
RVAL2GENUM(orientation, GTK_TYPE_PAGE_ORIENTATION));
|
@@ -302,13 +312,13 @@ ps_set_orientation(VALUE self, VALUE orientation)
|
|
302
312
|
}
|
303
313
|
|
304
314
|
static VALUE
|
305
|
-
|
315
|
+
rg_paper_size(VALUE self)
|
306
316
|
{
|
307
317
|
return GOBJ2RVAL(gtk_print_settings_get_paper_size(_SELF(self)));
|
308
318
|
}
|
309
319
|
|
310
320
|
static VALUE
|
311
|
-
|
321
|
+
rg_set_paper_size(VALUE self, VALUE paper_size)
|
312
322
|
{
|
313
323
|
gtk_print_settings_set_paper_size(_SELF(self),
|
314
324
|
RVAL2BOXED(paper_size, GTK_TYPE_PAPER_SIZE));
|
@@ -316,14 +326,14 @@ ps_set_paper_size(VALUE self, VALUE paper_size)
|
|
316
326
|
}
|
317
327
|
|
318
328
|
static VALUE
|
319
|
-
|
329
|
+
rg_paper_width(VALUE self, VALUE unit)
|
320
330
|
{
|
321
331
|
return rb_float_new(gtk_print_settings_get_paper_width(_SELF(self),
|
322
332
|
RVAL2UNIT(unit)));
|
323
333
|
}
|
324
334
|
|
325
335
|
static VALUE
|
326
|
-
|
336
|
+
rg_set_paper_width(VALUE self, VALUE paper_width, VALUE unit)
|
327
337
|
{
|
328
338
|
gtk_print_settings_set_paper_width(_SELF(self), NUM2DBL(paper_width),
|
329
339
|
RVAL2UNIT(unit));
|
@@ -331,14 +341,14 @@ ps_set_paper_width(VALUE self, VALUE paper_width, VALUE unit)
|
|
331
341
|
}
|
332
342
|
|
333
343
|
static VALUE
|
334
|
-
|
344
|
+
rg_paper_height(VALUE self, VALUE unit)
|
335
345
|
{
|
336
346
|
return rb_float_new(gtk_print_settings_get_paper_height(_SELF(self),
|
337
347
|
RVAL2UNIT(unit)));
|
338
348
|
}
|
339
349
|
|
340
350
|
static VALUE
|
341
|
-
|
351
|
+
rg_set_paper_height(VALUE self, VALUE paper_height, VALUE unit)
|
342
352
|
{
|
343
353
|
gtk_print_settings_set_paper_height(_SELF(self), NUM2DBL(paper_height),
|
344
354
|
RVAL2UNIT(unit));
|
@@ -346,53 +356,53 @@ ps_set_paper_height(VALUE self, VALUE paper_height, VALUE unit)
|
|
346
356
|
}
|
347
357
|
|
348
358
|
static VALUE
|
349
|
-
|
359
|
+
rg_use_color_p(VALUE self)
|
350
360
|
{
|
351
361
|
return CBOOL2RVAL(gtk_print_settings_get_use_color(_SELF(self)));
|
352
362
|
}
|
353
363
|
|
354
364
|
static VALUE
|
355
|
-
|
365
|
+
rg_set_use_color(VALUE self, VALUE use_color)
|
356
366
|
{
|
357
367
|
gtk_print_settings_set_use_color(_SELF(self), RVAL2CBOOL(use_color));
|
358
368
|
return self;
|
359
369
|
}
|
360
370
|
|
361
371
|
static VALUE
|
362
|
-
|
372
|
+
rg_collate_p(VALUE self)
|
363
373
|
{
|
364
374
|
return CBOOL2RVAL(gtk_print_settings_get_collate(_SELF(self)));
|
365
375
|
}
|
366
376
|
|
367
377
|
static VALUE
|
368
|
-
|
378
|
+
rg_set_collate(VALUE self, VALUE collate)
|
369
379
|
{
|
370
380
|
gtk_print_settings_set_collate(_SELF(self), RVAL2CBOOL(collate));
|
371
381
|
return self;
|
372
382
|
}
|
373
383
|
|
374
384
|
static VALUE
|
375
|
-
|
385
|
+
rg_reverse_p(VALUE self)
|
376
386
|
{
|
377
387
|
return CBOOL2RVAL(gtk_print_settings_get_reverse(_SELF(self)));
|
378
388
|
}
|
379
389
|
|
380
390
|
static VALUE
|
381
|
-
|
391
|
+
rg_set_reverse(VALUE self, VALUE reverse)
|
382
392
|
{
|
383
393
|
gtk_print_settings_set_reverse(_SELF(self), RVAL2CBOOL(reverse));
|
384
394
|
return self;
|
385
395
|
}
|
386
396
|
|
387
397
|
static VALUE
|
388
|
-
|
398
|
+
rg_duplex(VALUE self)
|
389
399
|
{
|
390
400
|
return GENUM2RVAL(gtk_print_settings_get_duplex(_SELF(self)),
|
391
401
|
GTK_TYPE_PRINT_DUPLEX);
|
392
402
|
}
|
393
403
|
|
394
404
|
static VALUE
|
395
|
-
|
405
|
+
rg_set_duplex(VALUE self, VALUE duplex)
|
396
406
|
{
|
397
407
|
gtk_print_settings_set_duplex(_SELF(self),
|
398
408
|
RVAL2GENUM(duplex, GTK_TYPE_PRINT_DUPLEX));
|
@@ -400,14 +410,14 @@ ps_set_duplex(VALUE self, VALUE duplex)
|
|
400
410
|
}
|
401
411
|
|
402
412
|
static VALUE
|
403
|
-
|
413
|
+
rg_quality(VALUE self)
|
404
414
|
{
|
405
415
|
return GENUM2RVAL(gtk_print_settings_get_quality(_SELF(self)),
|
406
416
|
GTK_TYPE_PRINT_QUALITY);
|
407
417
|
}
|
408
418
|
|
409
419
|
static VALUE
|
410
|
-
|
420
|
+
rg_set_quality(VALUE self, VALUE quality)
|
411
421
|
{
|
412
422
|
gtk_print_settings_set_quality(_SELF(self),
|
413
423
|
RVAL2GENUM(quality, GTK_TYPE_PRINT_QUALITY));
|
@@ -415,73 +425,73 @@ ps_set_quality(VALUE self, VALUE quality)
|
|
415
425
|
}
|
416
426
|
|
417
427
|
static VALUE
|
418
|
-
|
428
|
+
rg_n_copies(VALUE self)
|
419
429
|
{
|
420
430
|
return INT2NUM(gtk_print_settings_get_n_copies(_SELF(self)));
|
421
431
|
}
|
422
432
|
|
423
433
|
static VALUE
|
424
|
-
|
434
|
+
rg_set_n_copies(VALUE self, VALUE n_copies)
|
425
435
|
{
|
426
436
|
gtk_print_settings_set_n_copies(_SELF(self), NUM2INT(n_copies));
|
427
437
|
return self;
|
428
438
|
}
|
429
439
|
|
430
440
|
static VALUE
|
431
|
-
|
441
|
+
rg_number_up(VALUE self)
|
432
442
|
{
|
433
443
|
return INT2NUM(gtk_print_settings_get_number_up(_SELF(self)));
|
434
444
|
}
|
435
445
|
|
436
446
|
static VALUE
|
437
|
-
|
447
|
+
rg_set_number_up(VALUE self, VALUE number_up)
|
438
448
|
{
|
439
449
|
gtk_print_settings_set_number_up(_SELF(self), NUM2INT(number_up));
|
440
450
|
return self;
|
441
451
|
}
|
442
452
|
|
443
453
|
static VALUE
|
444
|
-
|
454
|
+
rg_resolution(VALUE self)
|
445
455
|
{
|
446
456
|
return INT2NUM(gtk_print_settings_get_resolution(_SELF(self)));
|
447
457
|
}
|
448
458
|
|
449
459
|
static VALUE
|
450
|
-
|
460
|
+
rg_set_resolution(VALUE self, VALUE resolution)
|
451
461
|
{
|
452
462
|
gtk_print_settings_set_resolution(_SELF(self), NUM2INT(resolution));
|
453
463
|
return self;
|
454
464
|
}
|
455
465
|
|
456
466
|
static VALUE
|
457
|
-
|
467
|
+
rg_scale(VALUE self)
|
458
468
|
{
|
459
469
|
return rb_float_new(gtk_print_settings_get_scale(_SELF(self)));
|
460
470
|
}
|
461
471
|
|
462
472
|
static VALUE
|
463
|
-
|
473
|
+
rg_set_scale(VALUE self, VALUE scale)
|
464
474
|
{
|
465
475
|
gtk_print_settings_set_scale(_SELF(self), NUM2DBL(scale));
|
466
476
|
return self;
|
467
477
|
}
|
468
478
|
|
469
479
|
static VALUE
|
470
|
-
|
480
|
+
rg_print_pages(VALUE self)
|
471
481
|
{
|
472
482
|
return GENUM2RVAL(gtk_print_settings_get_print_pages(_SELF(self)),
|
473
483
|
GTK_TYPE_PRINT_PAGES);
|
474
484
|
}
|
475
485
|
|
476
486
|
static VALUE
|
477
|
-
|
487
|
+
rg_set_print_pages(VALUE self, VALUE print_pages)
|
478
488
|
{
|
479
489
|
gtk_print_settings_set_print_pages(_SELF(self), RVAL2GENUM(print_pages, GTK_TYPE_PRINT_PAGES));
|
480
490
|
return self;
|
481
491
|
}
|
482
492
|
|
483
493
|
static VALUE
|
484
|
-
|
494
|
+
rg_page_ranges(VALUE self)
|
485
495
|
{
|
486
496
|
VALUE rb_ranges;
|
487
497
|
GtkPageRange *ranges;
|
@@ -500,33 +510,82 @@ ps_get_page_ranges(VALUE self)
|
|
500
510
|
return rb_ranges;
|
501
511
|
}
|
502
512
|
|
513
|
+
struct rbgtk_rval2gtkpageranges_args {
|
514
|
+
VALUE ary;
|
515
|
+
long n;
|
516
|
+
GtkPageRange *result;
|
517
|
+
};
|
518
|
+
|
503
519
|
static VALUE
|
504
|
-
|
520
|
+
rbgtk_rval2gtkpageranges_body(VALUE value)
|
505
521
|
{
|
506
|
-
|
507
|
-
|
522
|
+
long i;
|
523
|
+
struct rbgtk_rval2gtkpageranges_args *args = (struct rbgtk_rval2gtkpageranges_args *)value;
|
508
524
|
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
525
|
+
for (i = 0; i < args->n; i++) {
|
526
|
+
VALUE ary = rb_ary_to_ary(RARRAY_PTR(args->ary)[i]);
|
527
|
+
|
528
|
+
if (RARRAY_LEN(ary) != 2)
|
529
|
+
rb_raise(rb_eArgError, "range %ld should be array of size 2", i);
|
530
|
+
|
531
|
+
args->result[i].start = NUM2INT(RARRAY_PTR(ary)[0]);
|
532
|
+
args->result[i].end = NUM2INT(RARRAY_PTR(ary)[1]);
|
516
533
|
}
|
517
|
-
|
534
|
+
|
535
|
+
return Qnil;
|
536
|
+
}
|
537
|
+
|
538
|
+
static G_GNUC_NORETURN VALUE
|
539
|
+
rbgtk_rval2gtkpageranges_rescue(VALUE value)
|
540
|
+
{
|
541
|
+
g_free(((struct rbgtk_rval2gtkpageranges_args *)value)->result);
|
542
|
+
|
543
|
+
rb_exc_raise(rb_errinfo());
|
544
|
+
}
|
545
|
+
|
546
|
+
static GtkPageRange *
|
547
|
+
rbgtk_rval2gtkpageranges(VALUE value, long *n)
|
548
|
+
{
|
549
|
+
struct rbgtk_rval2gtkpageranges_args args;
|
550
|
+
|
551
|
+
args.ary = rb_ary_to_ary(value);
|
552
|
+
args.n = RARRAY_LEN(args.ary);
|
553
|
+
args.result = g_new(GtkPageRange, args.n + 1);
|
554
|
+
|
555
|
+
rb_rescue(rbgtk_rval2gtkpageranges_body, (VALUE)&args,
|
556
|
+
rbgtk_rval2gtkpageranges_rescue, (VALUE)&args);
|
557
|
+
|
558
|
+
if (n != NULL)
|
559
|
+
*n = args.n;
|
560
|
+
|
561
|
+
return args.result;
|
562
|
+
}
|
563
|
+
|
564
|
+
#define RVAL2GTKPAGERANGES(value, n) rbgtk_rval2gtkpageranges(value, n)
|
565
|
+
|
566
|
+
static VALUE
|
567
|
+
rg_set_page_ranges(VALUE self, VALUE rbpage_ranges)
|
568
|
+
{
|
569
|
+
GtkPrintSettings *settings = _SELF(self);
|
570
|
+
long n;
|
571
|
+
GtkPageRange *page_ranges = RVAL2GTKPAGERANGES(rbpage_ranges, &n);
|
572
|
+
|
573
|
+
gtk_print_settings_set_page_ranges(settings, page_ranges, n);
|
574
|
+
|
575
|
+
g_free(page_ranges);
|
576
|
+
|
518
577
|
return self;
|
519
578
|
}
|
520
579
|
|
521
580
|
static VALUE
|
522
|
-
|
581
|
+
rg_page_set(VALUE self)
|
523
582
|
{
|
524
583
|
return GENUM2RVAL(gtk_print_settings_get_page_set(_SELF(self)),
|
525
584
|
GTK_TYPE_PAGE_SET);
|
526
585
|
}
|
527
586
|
|
528
587
|
static VALUE
|
529
|
-
|
588
|
+
rg_set_page_set(VALUE self, VALUE page_set)
|
530
589
|
{
|
531
590
|
gtk_print_settings_set_page_set(_SELF(self),
|
532
591
|
RVAL2GENUM(page_set, GTK_TYPE_PAGE_SET));
|
@@ -534,13 +593,13 @@ ps_set_page_set(VALUE self, VALUE page_set)
|
|
534
593
|
}
|
535
594
|
|
536
595
|
static VALUE
|
537
|
-
|
596
|
+
rg_default_source(VALUE self)
|
538
597
|
{
|
539
598
|
return CSTR2RVAL(gtk_print_settings_get_default_source(_SELF(self)));
|
540
599
|
}
|
541
600
|
|
542
601
|
static VALUE
|
543
|
-
|
602
|
+
rg_set_default_source(VALUE self, VALUE default_source)
|
544
603
|
{
|
545
604
|
gtk_print_settings_set_default_source(_SELF(self),
|
546
605
|
RVAL2CSTR_ACCEPT_NIL(default_source));
|
@@ -548,52 +607,52 @@ ps_set_default_source(VALUE self, VALUE default_source)
|
|
548
607
|
}
|
549
608
|
|
550
609
|
static VALUE
|
551
|
-
|
610
|
+
rg_media_type(VALUE self)
|
552
611
|
{
|
553
612
|
return CSTR2RVAL(gtk_print_settings_get_media_type(_SELF(self)));
|
554
613
|
}
|
555
614
|
|
556
615
|
static VALUE
|
557
|
-
|
616
|
+
rg_set_media_type(VALUE self, VALUE media_type)
|
558
617
|
{
|
559
618
|
gtk_print_settings_set_media_type(_SELF(self), RVAL2CSTR_ACCEPT_NIL(media_type));
|
560
619
|
return self;
|
561
620
|
}
|
562
621
|
|
563
622
|
static VALUE
|
564
|
-
|
623
|
+
rg_dither(VALUE self)
|
565
624
|
{
|
566
625
|
return CSTR2RVAL(gtk_print_settings_get_dither(_SELF(self)));
|
567
626
|
}
|
568
627
|
|
569
628
|
static VALUE
|
570
|
-
|
629
|
+
rg_set_dither(VALUE self, VALUE dither)
|
571
630
|
{
|
572
631
|
gtk_print_settings_set_dither(_SELF(self), RVAL2CSTR_ACCEPT_NIL(dither));
|
573
632
|
return self;
|
574
633
|
}
|
575
634
|
|
576
635
|
static VALUE
|
577
|
-
|
636
|
+
rg_finishings(VALUE self)
|
578
637
|
{
|
579
638
|
return CSTR2RVAL(gtk_print_settings_get_finishings(_SELF(self)));
|
580
639
|
}
|
581
640
|
|
582
641
|
static VALUE
|
583
|
-
|
642
|
+
rg_set_finishings(VALUE self, VALUE finishings)
|
584
643
|
{
|
585
644
|
gtk_print_settings_set_finishings(_SELF(self), RVAL2CSTR_ACCEPT_NIL(finishings));
|
586
645
|
return self;
|
587
646
|
}
|
588
647
|
|
589
648
|
static VALUE
|
590
|
-
|
649
|
+
rg_output_bin(VALUE self)
|
591
650
|
{
|
592
651
|
return CSTR2RVAL(gtk_print_settings_get_output_bin(_SELF(self)));
|
593
652
|
}
|
594
653
|
|
595
654
|
static VALUE
|
596
|
-
|
655
|
+
rg_set_output_bin(VALUE self, VALUE output_bin)
|
597
656
|
{
|
598
657
|
gtk_print_settings_set_output_bin(_SELF(self), RVAL2CSTR_ACCEPT_NIL(output_bin));
|
599
658
|
return self;
|
@@ -602,7 +661,7 @@ ps_set_output_bin(VALUE self, VALUE output_bin)
|
|
602
661
|
|
603
662
|
#if GTK_CHECK_VERSION(2,12,0)
|
604
663
|
static VALUE
|
605
|
-
|
664
|
+
rg_to_file(VALUE self, VALUE file_name)
|
606
665
|
{
|
607
666
|
GError *error = NULL;
|
608
667
|
if (!gtk_print_settings_to_file(_SELF(self), RVAL2CSTR(file_name), &error)) {
|
@@ -611,7 +670,7 @@ ps_to_file(VALUE self, VALUE file_name)
|
|
611
670
|
return self;
|
612
671
|
}
|
613
672
|
static VALUE
|
614
|
-
|
673
|
+
rg_to_key_file(int argc, VALUE *argv, VALUE self)
|
615
674
|
{
|
616
675
|
VALUE key_file, group_name;
|
617
676
|
rb_scan_args(argc, argv, "11", &key_file, &group_name);
|
@@ -623,10 +682,10 @@ ps_to_key_file(int argc, VALUE *argv, VALUE self)
|
|
623
682
|
#endif
|
624
683
|
|
625
684
|
void
|
626
|
-
Init_gtk_print_settings()
|
685
|
+
Init_gtk_print_settings(VALUE mGtk)
|
627
686
|
{
|
628
687
|
#if GTK_CHECK_VERSION(2,10,0)
|
629
|
-
VALUE
|
688
|
+
VALUE RG_TARGET_NAMESPACE;
|
630
689
|
|
631
690
|
s_string = ID2SYM(rb_intern("string"));
|
632
691
|
s_bool = ID2SYM(rb_intern("bool"));
|
@@ -634,158 +693,155 @@ Init_gtk_print_settings()
|
|
634
693
|
s_length = ID2SYM(rb_intern("length"));
|
635
694
|
s_int = ID2SYM(rb_intern("int"));
|
636
695
|
|
637
|
-
|
696
|
+
RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_PRINT_SETTINGS,
|
638
697
|
"PrintSettings", mGtk);
|
639
698
|
|
640
|
-
rb_include_module(
|
699
|
+
rb_include_module(RG_TARGET_NAMESPACE, rb_mEnumerable);
|
641
700
|
|
642
701
|
#if GTK_CHECK_VERSION(2,12,0)
|
643
|
-
|
702
|
+
RG_DEF_METHOD(initialize, -1);
|
644
703
|
#else
|
645
|
-
|
704
|
+
RG_DEF_METHOD(initialize, 0);
|
646
705
|
#endif
|
647
|
-
|
648
|
-
|
706
|
+
RG_DEF_METHOD(dup, 0);
|
707
|
+
RG_DEF_METHOD_P(has_key, 1);
|
649
708
|
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
709
|
+
RG_DEF_METHOD(get, -1);
|
710
|
+
RG_DEF_ALIAS("[]", "get");
|
711
|
+
RG_DEF_METHOD(get_bool, 1);
|
712
|
+
RG_DEF_METHOD(get_double, -1);
|
713
|
+
RG_DEF_METHOD(get_length, 2);
|
714
|
+
RG_DEF_METHOD(get_int, -1);
|
656
715
|
|
657
|
-
|
658
|
-
|
716
|
+
RG_DEF_METHOD(set, -1);
|
717
|
+
RG_DEF_METHOD_OPERATOR("[]=", ps_set_generic_indexer, -1);
|
659
718
|
|
660
|
-
|
661
|
-
|
719
|
+
RG_DEF_METHOD(unset, -1);
|
720
|
+
RG_DEF_ALIAS("delete", "unset");
|
662
721
|
|
663
|
-
|
722
|
+
RG_DEF_METHOD(each, 0);
|
664
723
|
|
665
|
-
rb_define_const(
|
724
|
+
rb_define_const(RG_TARGET_NAMESPACE, "PRINTER",
|
666
725
|
CSTR2RVAL(GTK_PRINT_SETTINGS_PRINTER));
|
667
|
-
rb_define_const(
|
726
|
+
rb_define_const(RG_TARGET_NAMESPACE, "ORIENTATION",
|
668
727
|
CSTR2RVAL(GTK_PRINT_SETTINGS_ORIENTATION));
|
669
|
-
rb_define_const(
|
728
|
+
rb_define_const(RG_TARGET_NAMESPACE, "PAPER_FORMAT",
|
670
729
|
CSTR2RVAL(GTK_PRINT_SETTINGS_PAPER_FORMAT));
|
671
|
-
rb_define_const(
|
730
|
+
rb_define_const(RG_TARGET_NAMESPACE, "PAPER_WIDTH",
|
672
731
|
CSTR2RVAL(GTK_PRINT_SETTINGS_PAPER_WIDTH));
|
673
|
-
rb_define_const(
|
732
|
+
rb_define_const(RG_TARGET_NAMESPACE, "PAPER_HEIGHT",
|
674
733
|
CSTR2RVAL(GTK_PRINT_SETTINGS_PAPER_HEIGHT));
|
675
|
-
rb_define_const(
|
734
|
+
rb_define_const(RG_TARGET_NAMESPACE, "N_COPIES",
|
676
735
|
CSTR2RVAL(GTK_PRINT_SETTINGS_N_COPIES));
|
677
|
-
rb_define_const(
|
736
|
+
rb_define_const(RG_TARGET_NAMESPACE, "DEFAULT_SOURCE",
|
678
737
|
CSTR2RVAL(GTK_PRINT_SETTINGS_DEFAULT_SOURCE));
|
679
|
-
rb_define_const(
|
738
|
+
rb_define_const(RG_TARGET_NAMESPACE, "QUALITY",
|
680
739
|
CSTR2RVAL(GTK_PRINT_SETTINGS_QUALITY));
|
681
|
-
rb_define_const(
|
740
|
+
rb_define_const(RG_TARGET_NAMESPACE, "RESOLUTION",
|
682
741
|
CSTR2RVAL(GTK_PRINT_SETTINGS_RESOLUTION));
|
683
|
-
rb_define_const(
|
742
|
+
rb_define_const(RG_TARGET_NAMESPACE, "USE_COLOR",
|
684
743
|
CSTR2RVAL(GTK_PRINT_SETTINGS_USE_COLOR));
|
685
|
-
rb_define_const(
|
744
|
+
rb_define_const(RG_TARGET_NAMESPACE, "DUPLEX",
|
686
745
|
CSTR2RVAL(GTK_PRINT_SETTINGS_DUPLEX));
|
687
|
-
rb_define_const(
|
746
|
+
rb_define_const(RG_TARGET_NAMESPACE, "COLLATE",
|
688
747
|
CSTR2RVAL(GTK_PRINT_SETTINGS_COLLATE));
|
689
|
-
rb_define_const(
|
748
|
+
rb_define_const(RG_TARGET_NAMESPACE, "REVERSE",
|
690
749
|
CSTR2RVAL(GTK_PRINT_SETTINGS_REVERSE));
|
691
|
-
rb_define_const(
|
750
|
+
rb_define_const(RG_TARGET_NAMESPACE, "MEDIA_TYPE",
|
692
751
|
CSTR2RVAL(GTK_PRINT_SETTINGS_MEDIA_TYPE));
|
693
|
-
rb_define_const(
|
752
|
+
rb_define_const(RG_TARGET_NAMESPACE, "DITHER",
|
694
753
|
CSTR2RVAL(GTK_PRINT_SETTINGS_DITHER));
|
695
|
-
rb_define_const(
|
754
|
+
rb_define_const(RG_TARGET_NAMESPACE, "SCALE",
|
696
755
|
CSTR2RVAL(GTK_PRINT_SETTINGS_SCALE));
|
697
|
-
rb_define_const(
|
756
|
+
rb_define_const(RG_TARGET_NAMESPACE, "PRINT_PAGES",
|
698
757
|
CSTR2RVAL(GTK_PRINT_SETTINGS_PRINT_PAGES));
|
699
|
-
rb_define_const(
|
758
|
+
rb_define_const(RG_TARGET_NAMESPACE, "PAGE_RANGES",
|
700
759
|
CSTR2RVAL(GTK_PRINT_SETTINGS_PAGE_RANGES));
|
701
|
-
rb_define_const(
|
760
|
+
rb_define_const(RG_TARGET_NAMESPACE, "PAGE_SET",
|
702
761
|
CSTR2RVAL(GTK_PRINT_SETTINGS_PAGE_SET));
|
703
|
-
rb_define_const(
|
762
|
+
rb_define_const(RG_TARGET_NAMESPACE, "FINISHINGS",
|
704
763
|
CSTR2RVAL(GTK_PRINT_SETTINGS_FINISHINGS));
|
705
|
-
rb_define_const(
|
764
|
+
rb_define_const(RG_TARGET_NAMESPACE, "NUMBER_UP",
|
706
765
|
CSTR2RVAL(GTK_PRINT_SETTINGS_NUMBER_UP));
|
707
|
-
rb_define_const(
|
766
|
+
rb_define_const(RG_TARGET_NAMESPACE, "OUTPUT_BIN",
|
708
767
|
CSTR2RVAL(GTK_PRINT_SETTINGS_OUTPUT_BIN));
|
709
768
|
|
710
|
-
rb_define_const(
|
769
|
+
rb_define_const(RG_TARGET_NAMESPACE, "OUTPUT_FILE_FORMAT",
|
711
770
|
CSTR2RVAL(GTK_PRINT_SETTINGS_OUTPUT_FILE_FORMAT));
|
712
|
-
rb_define_const(
|
771
|
+
rb_define_const(RG_TARGET_NAMESPACE, "OUTPUT_URI",
|
713
772
|
CSTR2RVAL(GTK_PRINT_SETTINGS_OUTPUT_URI));
|
714
773
|
|
715
|
-
rb_define_const(
|
774
|
+
rb_define_const(RG_TARGET_NAMESPACE, "WIN32_DRIVER_VERSION",
|
716
775
|
CSTR2RVAL(GTK_PRINT_SETTINGS_WIN32_DRIVER_VERSION));
|
717
|
-
rb_define_const(
|
776
|
+
rb_define_const(RG_TARGET_NAMESPACE, "WIN32_DRIVER_EXTRA",
|
718
777
|
CSTR2RVAL(GTK_PRINT_SETTINGS_WIN32_DRIVER_EXTRA));
|
719
778
|
|
720
779
|
/* Helpers: */
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
rb_define_method(gPrintSettings, "set_output_bin", ps_set_output_bin, 1);
|
768
|
-
|
769
|
-
G_DEF_SETTERS(gPrintSettings);
|
780
|
+
RG_DEF_METHOD(printer, 0);
|
781
|
+
RG_DEF_METHOD(set_printer, 1);
|
782
|
+
RG_DEF_METHOD(orientation, 0);
|
783
|
+
RG_DEF_METHOD(set_orientation, 1);
|
784
|
+
RG_DEF_METHOD(paper_size, 0);
|
785
|
+
RG_DEF_METHOD(set_paper_size, 1);
|
786
|
+
RG_DEF_METHOD(paper_width, 1);
|
787
|
+
RG_DEF_METHOD(set_paper_width, 2);
|
788
|
+
RG_DEF_METHOD(paper_height, 1);
|
789
|
+
RG_DEF_METHOD(set_paper_height, 2);
|
790
|
+
RG_DEF_METHOD_P(use_color, 0);
|
791
|
+
RG_DEF_METHOD(set_use_color, 1);
|
792
|
+
RG_DEF_METHOD_P(collate, 0);
|
793
|
+
RG_DEF_METHOD(set_collate, 1);
|
794
|
+
RG_DEF_METHOD_P(reverse, 0);
|
795
|
+
RG_DEF_METHOD(set_reverse, 1);
|
796
|
+
RG_DEF_METHOD(duplex, 0);
|
797
|
+
RG_DEF_METHOD(set_duplex, 1);
|
798
|
+
RG_DEF_METHOD(quality, 0);
|
799
|
+
RG_DEF_METHOD(set_quality, 1);
|
800
|
+
RG_DEF_METHOD(n_copies, 0);
|
801
|
+
RG_DEF_METHOD(set_n_copies, 1);
|
802
|
+
RG_DEF_METHOD(number_up, 0);
|
803
|
+
RG_DEF_METHOD(set_number_up, 1);
|
804
|
+
RG_DEF_METHOD(resolution, 0);
|
805
|
+
RG_DEF_METHOD(set_resolution, 1);
|
806
|
+
RG_DEF_METHOD(scale, 0);
|
807
|
+
RG_DEF_METHOD(set_scale, 1);
|
808
|
+
RG_DEF_METHOD(print_pages, 0);
|
809
|
+
RG_DEF_METHOD(set_print_pages, 1);
|
810
|
+
RG_DEF_METHOD(page_ranges, 0);
|
811
|
+
RG_DEF_METHOD(set_page_ranges, 1);
|
812
|
+
RG_DEF_METHOD(page_set, 0);
|
813
|
+
RG_DEF_METHOD(set_page_set, 1);
|
814
|
+
RG_DEF_METHOD(default_source, 0);
|
815
|
+
RG_DEF_METHOD(set_default_source, 1);
|
816
|
+
RG_DEF_METHOD(media_type, 0);
|
817
|
+
RG_DEF_METHOD(set_media_type, 1);
|
818
|
+
RG_DEF_METHOD(dither, 0);
|
819
|
+
RG_DEF_METHOD(set_dither, 1);
|
820
|
+
RG_DEF_METHOD(finishings, 0);
|
821
|
+
RG_DEF_METHOD(set_finishings, 1);
|
822
|
+
RG_DEF_METHOD(output_bin, 0);
|
823
|
+
RG_DEF_METHOD(set_output_bin, 1);
|
824
|
+
|
825
|
+
G_DEF_SETTERS(RG_TARGET_NAMESPACE);
|
770
826
|
|
771
827
|
/* GtkPageOrientation */
|
772
|
-
G_DEF_CLASS(GTK_TYPE_PAGE_ORIENTATION, "PageOrientation",
|
773
|
-
G_DEF_CONSTANTS(
|
828
|
+
G_DEF_CLASS(GTK_TYPE_PAGE_ORIENTATION, "PageOrientation", RG_TARGET_NAMESPACE);
|
829
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_PAGE_ORIENTATION, "GTK_PAGE_");
|
774
830
|
/* GtkPrintDuplex */
|
775
|
-
G_DEF_CLASS(GTK_TYPE_PRINT_DUPLEX, "PrintDuplex",
|
776
|
-
G_DEF_CONSTANTS(
|
831
|
+
G_DEF_CLASS(GTK_TYPE_PRINT_DUPLEX, "PrintDuplex", RG_TARGET_NAMESPACE);
|
832
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_PRINT_DUPLEX, "GTK_PRINT_");
|
777
833
|
/* GtkPrintQuality */
|
778
|
-
G_DEF_CLASS(GTK_TYPE_PRINT_QUALITY, "PrintQuality",
|
779
|
-
G_DEF_CONSTANTS(
|
834
|
+
G_DEF_CLASS(GTK_TYPE_PRINT_QUALITY, "PrintQuality", RG_TARGET_NAMESPACE);
|
835
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_PRINT_QUALITY, "GTK_PRINT_");
|
780
836
|
/* GtkPrintPages */
|
781
|
-
G_DEF_CLASS(GTK_TYPE_PRINT_PAGES, "PrintPages",
|
782
|
-
G_DEF_CONSTANTS(
|
837
|
+
G_DEF_CLASS(GTK_TYPE_PRINT_PAGES, "PrintPages", RG_TARGET_NAMESPACE);
|
838
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_PRINT_PAGES, "GTK_PRINT_");
|
783
839
|
/* GtkPageSet */
|
784
|
-
G_DEF_CLASS(GTK_TYPE_PAGE_SET, "PageSet",
|
785
|
-
G_DEF_CONSTANTS(
|
840
|
+
G_DEF_CLASS(GTK_TYPE_PAGE_SET, "PageSet", RG_TARGET_NAMESPACE);
|
841
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_PAGE_SET, "GTK_");
|
786
842
|
#endif
|
787
843
|
#if GTK_CHECK_VERSION(2,12,0)
|
788
|
-
|
789
|
-
|
844
|
+
RG_DEF_METHOD(to_file, 1);
|
845
|
+
RG_DEF_METHOD(to_key_file, -1);
|
790
846
|
#endif
|
791
847
|
}
|