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
    
        data/ext/gtk2/rbgtkstock.c
    CHANGED
    
    | @@ -1,16 +1,28 @@ | |
| 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) 2002,2003 KUBO Takehiro
         | 
| 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 |  | 
| 24 | 
            +
            #define RG_TARGET_NAMESPACE mStock
         | 
| 25 | 
            +
             | 
| 14 26 | 
             
            #define Check_Symbol(sym) do { \
         | 
| 15 27 | 
             
                if (!SYMBOL_P(sym)) \
         | 
| 16 28 | 
             
                    rb_raise(rb_eArgError, "invalid argument %s (expect Symbol)", \
         | 
| @@ -22,7 +34,7 @@ | |
| 22 34 | 
             
            #define CSTR2SYM(str) ID2SYM(rb_intern(str))
         | 
| 23 35 |  | 
| 24 36 | 
             
            static VALUE
         | 
| 25 | 
            -
             | 
| 37 | 
            +
            rg_s_add(int argc, VALUE *argv, G_GNUC_UNUSED VALUE self)
         | 
| 26 38 | 
             
            {
         | 
| 27 39 | 
             
                VALUE stock_id, label, modifier, keyval, translation_domain;
         | 
| 28 40 | 
             
                GtkStockItem item;
         | 
| @@ -39,7 +51,7 @@ stock_m_add(int argc, VALUE *argv, VALUE klass) | |
| 39 51 | 
             
            }
         | 
| 40 52 |  | 
| 41 53 | 
             
            static VALUE
         | 
| 42 | 
            -
             | 
| 54 | 
            +
            rg_s_lookup(G_GNUC_UNUSED VALUE self, VALUE stock_id)
         | 
| 43 55 | 
             
            {
         | 
| 44 56 | 
             
                GtkStockItem item;
         | 
| 45 57 |  | 
| @@ -56,7 +68,7 @@ stock_m_lookup(VALUE klass, VALUE stock_id) | |
| 56 68 | 
             
            }
         | 
| 57 69 |  | 
| 58 70 | 
             
            static VALUE
         | 
| 59 | 
            -
             | 
| 71 | 
            +
            rg_s_ids(G_GNUC_UNUSED VALUE self)
         | 
| 60 72 | 
             
            {
         | 
| 61 73 | 
             
                GSList *ids = gtk_stock_list_ids();
         | 
| 62 74 | 
             
                GSList *l;
         | 
| @@ -78,7 +90,7 @@ translate_func(const gchar *path, gpointer func) | |
| 78 90 | 
             
            }
         | 
| 79 91 |  | 
| 80 92 | 
             
            static VALUE
         | 
| 81 | 
            -
             | 
| 93 | 
            +
            rg_s_set_translate_func(VALUE klass, VALUE domain)
         | 
| 82 94 | 
             
            {
         | 
| 83 95 | 
             
                VALUE func = rb_block_proc();
         | 
| 84 96 | 
             
                G_RELATIVE(klass, func);
         | 
| @@ -91,166 +103,166 @@ stock_m_set_translate_func(VALUE klass, VALUE domain) | |
| 91 103 | 
             
            #endif
         | 
| 92 104 |  | 
| 93 105 | 
             
            void
         | 
| 94 | 
            -
            Init_gtk_stock()
         | 
| 106 | 
            +
            Init_gtk_stock(VALUE mGtk)
         | 
| 95 107 | 
             
            {
         | 
| 96 | 
            -
                VALUE  | 
| 108 | 
            +
                VALUE RG_TARGET_NAMESPACE = rb_define_module_under(mGtk, "Stock");
         | 
| 97 109 |  | 
| 98 | 
            -
                rb_undef_method( | 
| 99 | 
            -
                 | 
| 100 | 
            -
                 | 
| 101 | 
            -
                 | 
| 110 | 
            +
                rb_undef_method(RG_TARGET_NAMESPACE, "new");
         | 
| 111 | 
            +
                RG_DEF_SMETHOD(add, -1);
         | 
| 112 | 
            +
                RG_DEF_SMETHOD(lookup, 1);
         | 
| 113 | 
            +
                RG_DEF_SMETHOD(ids, 0);
         | 
| 102 114 | 
             
            #if GTK_CHECK_VERSION(2,8,0)
         | 
| 103 | 
            -
                 | 
| 115 | 
            +
                RG_DEF_SMETHOD(set_translate_func, 1);
         | 
| 104 116 | 
             
            #endif
         | 
| 105 117 |  | 
| 106 118 | 
             
                /* Stock IDs (not all are stock items; some are images only) */
         | 
| 107 119 | 
             
            #if GTK_CHECK_VERSION(2,6,0)
         | 
| 108 | 
            -
                rb_define_const( | 
| 120 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ABOUT", CSTR2SYM(GTK_STOCK_ABOUT));
         | 
| 109 121 | 
             
            #endif
         | 
| 110 | 
            -
                rb_define_const( | 
| 111 | 
            -
                rb_define_const( | 
| 112 | 
            -
                rb_define_const( | 
| 113 | 
            -
                rb_define_const( | 
| 122 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ADD", CSTR2SYM(GTK_STOCK_ADD));
         | 
| 123 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "APPLY", CSTR2SYM(GTK_STOCK_APPLY));
         | 
| 124 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "BOLD", CSTR2SYM(GTK_STOCK_BOLD));
         | 
| 125 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "CANCEL", CSTR2SYM(GTK_STOCK_CANCEL));
         | 
| 114 126 | 
             
            #if GTK_CHECK_VERSION(2,16,0)
         | 
| 115 | 
            -
                rb_define_const( | 
| 127 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "CAPS_LOCK_WARNING", CSTR2SYM(GTK_STOCK_CAPS_LOCK_WARNING));
         | 
| 116 128 | 
             
            #endif
         | 
| 117 | 
            -
                rb_define_const( | 
| 118 | 
            -
                rb_define_const( | 
| 119 | 
            -
                rb_define_const( | 
| 129 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "CDROM", CSTR2SYM(GTK_STOCK_CDROM));
         | 
| 130 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "CLEAR", CSTR2SYM(GTK_STOCK_CLEAR));
         | 
| 131 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "CLOSE", CSTR2SYM(GTK_STOCK_CLOSE));
         | 
| 120 132 | 
             
            #if GTK_CHECK_VERSION(2,2,0)
         | 
| 121 | 
            -
                rb_define_const( | 
| 133 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "COLOR_PICKER", CSTR2SYM(GTK_STOCK_COLOR_PICKER));
         | 
| 122 134 | 
             
            #endif
         | 
| 123 | 
            -
                rb_define_const( | 
| 135 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "CONVERT", CSTR2SYM(GTK_STOCK_CONVERT));
         | 
| 124 136 | 
             
            #if GTK_CHECK_VERSION(2,6,0)
         | 
| 125 | 
            -
                rb_define_const( | 
| 137 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "CONNECT", CSTR2SYM(GTK_STOCK_CONNECT));
         | 
| 126 138 | 
             
            #endif
         | 
| 127 | 
            -
                rb_define_const( | 
| 128 | 
            -
                rb_define_const( | 
| 129 | 
            -
                rb_define_const( | 
| 139 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "COPY", CSTR2SYM(GTK_STOCK_COPY));
         | 
| 140 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "CUT", CSTR2SYM(GTK_STOCK_CUT));
         | 
| 141 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DELETE", CSTR2SYM(GTK_STOCK_DELETE));
         | 
| 130 142 | 
             
            #if GTK_CHECK_VERSION(2,4,0)
         | 
| 131 | 
            -
                rb_define_const( | 
| 143 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DIALOG_AUTHENTICATION", CSTR2SYM(GTK_STOCK_DIALOG_AUTHENTICATION));
         | 
| 132 144 | 
             
            #endif
         | 
| 133 | 
            -
                rb_define_const( | 
| 134 | 
            -
                rb_define_const( | 
| 135 | 
            -
                rb_define_const( | 
| 136 | 
            -
                rb_define_const( | 
| 145 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DIALOG_ERROR", CSTR2SYM(GTK_STOCK_DIALOG_ERROR));
         | 
| 146 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DIALOG_INFO", CSTR2SYM(GTK_STOCK_DIALOG_INFO));
         | 
| 147 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DIALOG_QUESTION", CSTR2SYM(GTK_STOCK_DIALOG_QUESTION));
         | 
| 148 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DIALOG_WARNING", CSTR2SYM(GTK_STOCK_DIALOG_WARNING));
         | 
| 137 149 | 
             
            #if GTK_CHECK_VERSION(2,6,0)
         | 
| 138 | 
            -
                rb_define_const( | 
| 150 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DIRECTORY", CSTR2SYM(GTK_STOCK_DIRECTORY));
         | 
| 139 151 | 
             
            #endif
         | 
| 140 152 | 
             
            #if GTK_CHECK_VERSION(2,12,0)
         | 
| 141 | 
            -
                rb_define_const( | 
| 153 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DISCARD", CSTR2SYM(GTK_STOCK_DISCARD));
         | 
| 142 154 | 
             
            #endif
         | 
| 143 155 | 
             
            #if GTK_CHECK_VERSION(2,6,0)
         | 
| 144 | 
            -
                rb_define_const( | 
| 156 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DISCONNECT", CSTR2SYM(GTK_STOCK_DISCONNECT));
         | 
| 145 157 | 
             
            #endif
         | 
| 146 | 
            -
                rb_define_const( | 
| 147 | 
            -
                rb_define_const( | 
| 158 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DND", CSTR2SYM(GTK_STOCK_DND));
         | 
| 159 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "DND_MULTIPLE", CSTR2SYM(GTK_STOCK_DND_MULTIPLE));
         | 
| 148 160 | 
             
            #if GTK_CHECK_VERSION(2,6,0)
         | 
| 149 | 
            -
                rb_define_const( | 
| 150 | 
            -
                rb_define_const( | 
| 161 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "EDIT", CSTR2SYM(GTK_STOCK_EDIT));
         | 
| 162 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "FILE", CSTR2SYM(GTK_STOCK_FILE));
         | 
| 151 163 | 
             
            #endif
         | 
| 152 | 
            -
                rb_define_const( | 
| 153 | 
            -
                rb_define_const( | 
| 154 | 
            -
                rb_define_const( | 
| 155 | 
            -
                rb_define_const( | 
| 164 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "EXECUTE", CSTR2SYM(GTK_STOCK_EXECUTE));
         | 
| 165 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "FIND", CSTR2SYM(GTK_STOCK_FIND));
         | 
| 166 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "FIND_AND_REPLACE", CSTR2SYM(GTK_STOCK_FIND_AND_REPLACE));
         | 
| 167 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "FLOPPY", CSTR2SYM(GTK_STOCK_FLOPPY));
         | 
| 156 168 | 
             
            #if GTK_CHECK_VERSION(2,8,0)
         | 
| 157 | 
            -
                rb_define_const( | 
| 169 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "FULLSCREEN", CSTR2SYM(GTK_STOCK_FULLSCREEN));
         | 
| 158 170 | 
             
            #endif
         | 
| 159 | 
            -
                rb_define_const( | 
| 160 | 
            -
                rb_define_const( | 
| 161 | 
            -
                rb_define_const( | 
| 162 | 
            -
                rb_define_const( | 
| 163 | 
            -
                rb_define_const( | 
| 164 | 
            -
                rb_define_const( | 
| 165 | 
            -
                rb_define_const( | 
| 166 | 
            -
                rb_define_const( | 
| 171 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "GOTO_BOTTOM", CSTR2SYM(GTK_STOCK_GOTO_BOTTOM));
         | 
| 172 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "GOTO_FIRST", CSTR2SYM(GTK_STOCK_GOTO_FIRST));
         | 
| 173 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "GOTO_LAST", CSTR2SYM(GTK_STOCK_GOTO_LAST));
         | 
| 174 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "GOTO_TOP", CSTR2SYM(GTK_STOCK_GOTO_TOP));
         | 
| 175 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "GO_BACK", CSTR2SYM(GTK_STOCK_GO_BACK));
         | 
| 176 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "GO_DOWN", CSTR2SYM(GTK_STOCK_GO_DOWN));
         | 
| 177 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "GO_FORWARD", CSTR2SYM(GTK_STOCK_GO_FORWARD));
         | 
| 178 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "GO_UP", CSTR2SYM(GTK_STOCK_GO_UP));
         | 
| 167 179 | 
             
            #if GTK_CHECK_VERSION(2,4,0)
         | 
| 168 | 
            -
                rb_define_const( | 
| 180 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "HARDDISK", CSTR2SYM(GTK_STOCK_HARDDISK));
         | 
| 169 181 | 
             
            #endif
         | 
| 170 | 
            -
                rb_define_const( | 
| 171 | 
            -
                rb_define_const( | 
| 182 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "HELP", CSTR2SYM(GTK_STOCK_HELP));
         | 
| 183 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "HOME", CSTR2SYM(GTK_STOCK_HOME));
         | 
| 172 184 | 
             
            #if GTK_CHECK_VERSION(2,4,0)
         | 
| 173 | 
            -
                rb_define_const( | 
| 185 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "INDENT", CSTR2SYM(GTK_STOCK_INDENT));
         | 
| 174 186 | 
             
            #endif
         | 
| 175 187 | 
             
            #if GTK_CHECK_VERSION(2,8,0)
         | 
| 176 | 
            -
                rb_define_const( | 
| 188 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "INFO", CSTR2SYM(GTK_STOCK_INFO));
         | 
| 177 189 | 
             
            #endif
         | 
| 178 | 
            -
                rb_define_const( | 
| 179 | 
            -
                rb_define_const( | 
| 180 | 
            -
                rb_define_const( | 
| 181 | 
            -
                rb_define_const( | 
| 182 | 
            -
                rb_define_const( | 
| 183 | 
            -
                rb_define_const( | 
| 184 | 
            -
                rb_define_const( | 
| 190 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "INDEX", CSTR2SYM(GTK_STOCK_INDEX));
         | 
| 191 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ITALIC", CSTR2SYM(GTK_STOCK_ITALIC));
         | 
| 192 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "JUMP_TO", CSTR2SYM(GTK_STOCK_JUMP_TO));
         | 
| 193 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "JUSTIFY_CENTER", CSTR2SYM(GTK_STOCK_JUSTIFY_CENTER));
         | 
| 194 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "JUSTIFY_FILL", CSTR2SYM(GTK_STOCK_JUSTIFY_FILL));
         | 
| 195 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "JUSTIFY_LEFT", CSTR2SYM(GTK_STOCK_JUSTIFY_LEFT));
         | 
| 196 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "JUSTIFY_RIGHT", CSTR2SYM(GTK_STOCK_JUSTIFY_RIGHT));
         | 
| 185 197 | 
             
            #if GTK_CHECK_VERSION(2,8,0)
         | 
| 186 | 
            -
                rb_define_const( | 
| 198 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "LEAVE_FULLSCREEN", CSTR2SYM(GTK_STOCK_LEAVE_FULLSCREEN));
         | 
| 187 199 | 
             
            #endif
         | 
| 188 200 | 
             
            #if GTK_CHECK_VERSION(2,6,0)
         | 
| 189 | 
            -
                rb_define_const( | 
| 190 | 
            -
                rb_define_const( | 
| 191 | 
            -
                rb_define_const( | 
| 192 | 
            -
                rb_define_const( | 
| 193 | 
            -
                rb_define_const( | 
| 194 | 
            -
                rb_define_const( | 
| 195 | 
            -
                rb_define_const( | 
| 196 | 
            -
                rb_define_const( | 
| 201 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "MEDIA_FORWARD", CSTR2SYM(GTK_STOCK_MEDIA_FORWARD));
         | 
| 202 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "MEDIA_NEXT", CSTR2SYM(GTK_STOCK_MEDIA_NEXT));
         | 
| 203 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "MEDIA_PAUSE", CSTR2SYM(GTK_STOCK_MEDIA_PAUSE));
         | 
| 204 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "MEDIA_PLAY", CSTR2SYM(GTK_STOCK_MEDIA_PLAY));
         | 
| 205 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "MEDIA_PREVIOUS", CSTR2SYM(GTK_STOCK_MEDIA_PREVIOUS));
         | 
| 206 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "MEDIA_RECORD", CSTR2SYM(GTK_STOCK_MEDIA_RECORD));
         | 
| 207 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "MEDIA_REWIND", CSTR2SYM(GTK_STOCK_MEDIA_REWIND));
         | 
| 208 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "MEDIA_STOP", CSTR2SYM(GTK_STOCK_MEDIA_STOP));
         | 
| 197 209 | 
             
            #endif
         | 
| 198 | 
            -
                rb_define_const( | 
| 210 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "MISSING_IMAGE", CSTR2SYM(GTK_STOCK_MISSING_IMAGE));
         | 
| 199 211 | 
             
            #if GTK_CHECK_VERSION(2,4,0)
         | 
| 200 | 
            -
                rb_define_const( | 
| 212 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "NETWORK", CSTR2SYM(GTK_STOCK_NETWORK));
         | 
| 201 213 | 
             
            #endif
         | 
| 202 | 
            -
                rb_define_const( | 
| 203 | 
            -
                rb_define_const( | 
| 204 | 
            -
                rb_define_const( | 
| 205 | 
            -
                rb_define_const( | 
| 214 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "NEW", CSTR2SYM(GTK_STOCK_NEW));
         | 
| 215 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "NO", CSTR2SYM(GTK_STOCK_NO));
         | 
| 216 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "OK", CSTR2SYM(GTK_STOCK_OK));
         | 
| 217 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "OPEN", CSTR2SYM(GTK_STOCK_OPEN));
         | 
| 206 218 | 
             
            #if GTK_CHECK_VERSION(2,10,0)
         | 
| 207 | 
            -
                rb_define_const( | 
| 208 | 
            -
                rb_define_const( | 
| 209 | 
            -
                rb_define_const( | 
| 210 | 
            -
                rb_define_const( | 
| 219 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ORIENTATION_LANDSCAPE", CSTR2SYM(GTK_STOCK_ORIENTATION_LANDSCAPE));
         | 
| 220 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ORIENTATION_PORTRAIT", CSTR2SYM(GTK_STOCK_ORIENTATION_PORTRAIT));
         | 
| 221 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ORIENTATION_REVERSE_LANDSCAPE", CSTR2SYM(GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE));
         | 
| 222 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ORIENTATION_REVERSE_PORTRAIT", CSTR2SYM(GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT));
         | 
| 211 223 | 
             
            #endif
         | 
| 212 224 | 
             
            #if GTK_CHECK_VERSION(2,14,0)
         | 
| 213 | 
            -
                rb_define_const( | 
| 225 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PAGE_SETUP", CSTR2SYM(GTK_STOCK_PAGE_SETUP));
         | 
| 214 226 | 
             
            #endif
         | 
| 215 | 
            -
                rb_define_const( | 
| 216 | 
            -
                rb_define_const( | 
| 217 | 
            -
                rb_define_const( | 
| 227 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PASTE", CSTR2SYM(GTK_STOCK_PASTE));
         | 
| 228 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PREFERENCES", CSTR2SYM(GTK_STOCK_PREFERENCES));
         | 
| 229 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PRINT", CSTR2SYM(GTK_STOCK_PRINT));
         | 
| 218 230 | 
             
            #if GTK_CHECK_VERSION(2,14,0)
         | 
| 219 | 
            -
                rb_define_const( | 
| 220 | 
            -
                rb_define_const( | 
| 231 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PRINT_ERROR", CSTR2SYM(GTK_STOCK_PRINT_ERROR));
         | 
| 232 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PRINT_PAUSED", CSTR2SYM(GTK_STOCK_PRINT_PAUSED));
         | 
| 221 233 | 
             
            #endif
         | 
| 222 | 
            -
                rb_define_const( | 
| 234 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PRINT_PREVIEW", CSTR2SYM(GTK_STOCK_PRINT_PREVIEW));
         | 
| 223 235 | 
             
            #if GTK_CHECK_VERSION(2,14,0)
         | 
| 224 | 
            -
                rb_define_const( | 
| 225 | 
            -
                rb_define_const( | 
| 236 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PRINT_REPORT", CSTR2SYM(GTK_STOCK_PRINT_REPORT));
         | 
| 237 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PRINT_WARNING", CSTR2SYM(GTK_STOCK_PRINT_WARNING));
         | 
| 226 238 | 
             
            #endif
         | 
| 227 | 
            -
                rb_define_const( | 
| 228 | 
            -
                rb_define_const( | 
| 229 | 
            -
                rb_define_const( | 
| 230 | 
            -
                rb_define_const( | 
| 231 | 
            -
                rb_define_const( | 
| 232 | 
            -
                rb_define_const( | 
| 233 | 
            -
                rb_define_const( | 
| 234 | 
            -
                rb_define_const( | 
| 239 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "PROPERTIES", CSTR2SYM(GTK_STOCK_PROPERTIES));
         | 
| 240 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "QUIT", CSTR2SYM(GTK_STOCK_QUIT));
         | 
| 241 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "REDO", CSTR2SYM(GTK_STOCK_REDO));
         | 
| 242 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "REFRESH", CSTR2SYM(GTK_STOCK_REFRESH));
         | 
| 243 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "REMOVE", CSTR2SYM(GTK_STOCK_REMOVE));
         | 
| 244 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "REVERT_TO_SAVED", CSTR2SYM(GTK_STOCK_REVERT_TO_SAVED));
         | 
| 245 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "SAVE", CSTR2SYM(GTK_STOCK_SAVE));
         | 
| 246 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "SAVE_AS", CSTR2SYM(GTK_STOCK_SAVE_AS));
         | 
| 235 247 | 
             
            #if GTK_CHECK_VERSION(2,10,0)
         | 
| 236 | 
            -
                rb_define_const( | 
| 248 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "SELECT_ALL", CSTR2SYM(GTK_STOCK_SELECT_ALL));
         | 
| 237 249 | 
             
            #endif
         | 
| 238 | 
            -
                rb_define_const( | 
| 239 | 
            -
                rb_define_const( | 
| 240 | 
            -
                rb_define_const( | 
| 241 | 
            -
                rb_define_const( | 
| 242 | 
            -
                rb_define_const( | 
| 243 | 
            -
                rb_define_const( | 
| 244 | 
            -
                rb_define_const( | 
| 245 | 
            -
                rb_define_const( | 
| 246 | 
            -
                rb_define_const( | 
| 247 | 
            -
                rb_define_const( | 
| 250 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "SELECT_COLOR", CSTR2SYM(GTK_STOCK_SELECT_COLOR));
         | 
| 251 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "SELECT_FONT", CSTR2SYM(GTK_STOCK_SELECT_FONT));
         | 
| 252 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "SORT_ASCENDING", CSTR2SYM(GTK_STOCK_SORT_ASCENDING));
         | 
| 253 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "SORT_DESCENDING", CSTR2SYM(GTK_STOCK_SORT_DESCENDING));
         | 
| 254 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "SPELL_CHECK", CSTR2SYM(GTK_STOCK_SPELL_CHECK));
         | 
| 255 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "STOP", CSTR2SYM(GTK_STOCK_STOP));
         | 
| 256 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "STRIKETHROUGH", CSTR2SYM(GTK_STOCK_STRIKETHROUGH));
         | 
| 257 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "UNDELETE", CSTR2SYM(GTK_STOCK_UNDELETE));
         | 
| 258 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "UNDERLINE", CSTR2SYM(GTK_STOCK_UNDERLINE));
         | 
| 259 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "UNDO", CSTR2SYM(GTK_STOCK_UNDO));
         | 
| 248 260 | 
             
            #if GTK_CHECK_VERSION(2,4,0)
         | 
| 249 | 
            -
                rb_define_const( | 
| 261 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "UNINDENT", CSTR2SYM(GTK_STOCK_UNINDENT));
         | 
| 250 262 | 
             
            #endif
         | 
| 251 | 
            -
                rb_define_const( | 
| 252 | 
            -
                rb_define_const( | 
| 253 | 
            -
                rb_define_const( | 
| 254 | 
            -
                rb_define_const( | 
| 255 | 
            -
                rb_define_const( | 
| 263 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "YES", CSTR2SYM(GTK_STOCK_YES));
         | 
| 264 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ZOOM_100", CSTR2SYM(GTK_STOCK_ZOOM_100));
         | 
| 265 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ZOOM_FIT", CSTR2SYM(GTK_STOCK_ZOOM_FIT));
         | 
| 266 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ZOOM_IN", CSTR2SYM(GTK_STOCK_ZOOM_IN));
         | 
| 267 | 
            +
                rb_define_const(RG_TARGET_NAMESPACE, "ZOOM_OUT", CSTR2SYM(GTK_STOCK_ZOOM_OUT));
         | 
| 256 268 | 
             
            }
         | 
    
        data/ext/gtk2/rbgtkstyle.c
    CHANGED
    
    | @@ -1,19 +1,30 @@ | |
| 1 1 | 
             
            /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
         | 
| 2 | 
            -
             | 
| 3 | 
            -
             | 
| 4 | 
            -
               | 
| 5 | 
            -
             | 
| 6 | 
            -
             | 
| 7 | 
            -
             | 
| 8 | 
            -
             | 
| 9 | 
            -
               | 
| 10 | 
            -
               | 
| 11 | 
            -
             | 
| 12 | 
            -
             | 
| 13 | 
            -
             | 
| 2 | 
            +
            /*
         | 
| 3 | 
            +
             *  Copyright (C) 2011  Ruby-GNOME2 Project Team
         | 
| 4 | 
            +
             *  Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
         | 
| 5 | 
            +
             *  Copyright (C) 1998-2000 Yukihiro Matsumoto,
         | 
| 6 | 
            +
             *                          Daisuke Kanda,
         | 
| 7 | 
            +
             *                          Hiroshi Igarashi
         | 
| 8 | 
            +
             *
         | 
| 9 | 
            +
             *  This library is free software; you can redistribute it and/or
         | 
| 10 | 
            +
             *  modify it under the terms of the GNU Lesser General Public
         | 
| 11 | 
            +
             *  License as published by the Free Software Foundation; either
         | 
| 12 | 
            +
             *  version 2.1 of the License, or (at your option) any later version.
         | 
| 13 | 
            +
             *
         | 
| 14 | 
            +
             *  This library is distributed in the hope that it will be useful,
         | 
| 15 | 
            +
             *  but WITHOUT ANY WARRANTY; without even the implied warranty of
         | 
| 16 | 
            +
             *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
         | 
| 17 | 
            +
             *  Lesser General Public License for more details.
         | 
| 18 | 
            +
             *
         | 
| 19 | 
            +
             *  You should have received a copy of the GNU Lesser General Public
         | 
| 20 | 
            +
             *  License along with this library; if not, write to the Free Software
         | 
| 21 | 
            +
             *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
         | 
| 22 | 
            +
             *  MA  02110-1301  USA
         | 
| 23 | 
            +
             */
         | 
| 14 24 |  | 
| 15 25 | 
             
            #include "global.h"
         | 
| 16 26 |  | 
| 27 | 
            +
            #define RG_TARGET_NAMESPACE cStyle
         | 
| 17 28 | 
             
            #define _SELF(w) GTK_STYLE(RVAL2GOBJ(w))
         | 
| 18 29 | 
             
            #define RVAL2REC(r) (NIL_P(r) ? NULL : (GdkRectangle*)RVAL2BOXED(r, GDK_TYPE_RECTANGLE))
         | 
| 19 30 | 
             
            #define RVAL2ICONSOURCE(s) ((GtkIconSource*)RVAL2BOXED(s, GTK_TYPE_ICON_SOURCE))
         | 
| @@ -24,40 +35,40 @@ | |
| 24 35 | 
             
            #define RVAL2ORI(s) (RVAL2GENUM(s, GTK_TYPE_ORIENTATION))
         | 
| 25 36 |  | 
| 26 37 | 
             
            static VALUE
         | 
| 27 | 
            -
             | 
| 38 | 
            +
            rg_initialize(VALUE self)
         | 
| 28 39 | 
             
            {
         | 
| 29 40 | 
             
                G_INITIALIZE(self, gtk_style_new());
         | 
| 30 41 | 
             
                return Qnil;
         | 
| 31 42 | 
             
            }
         | 
| 32 43 |  | 
| 33 44 | 
             
            static VALUE
         | 
| 34 | 
            -
             | 
| 45 | 
            +
            rg_attached_p(VALUE self)
         | 
| 35 46 | 
             
            {
         | 
| 36 47 | 
             
                return CBOOL2RVAL(GTK_STYLE_ATTACHED(_SELF(self)));
         | 
| 37 48 | 
             
            }
         | 
| 38 49 |  | 
| 39 50 | 
             
            static VALUE
         | 
| 40 | 
            -
             | 
| 51 | 
            +
            rg_copy(VALUE self)
         | 
| 41 52 | 
             
            {
         | 
| 42 53 | 
             
                return GOBJ2RVAL(gtk_style_copy(_SELF(self)));
         | 
| 43 54 | 
             
            }
         | 
| 44 55 |  | 
| 45 56 | 
             
            static VALUE
         | 
| 46 | 
            -
             | 
| 57 | 
            +
            rg_attach(VALUE self, VALUE win)
         | 
| 47 58 | 
             
            {
         | 
| 48 59 | 
             
                return GOBJ2RVAL(gtk_style_attach(_SELF(self),
         | 
| 49 60 | 
             
                                                  GDK_WINDOW(RVAL2GOBJ(win))));
         | 
| 50 61 | 
             
            }
         | 
| 51 62 |  | 
| 52 63 | 
             
            static VALUE
         | 
| 53 | 
            -
             | 
| 64 | 
            +
            rg_detach(VALUE self)
         | 
| 54 65 | 
             
            {
         | 
| 55 66 | 
             
                gtk_style_detach(_SELF(self));
         | 
| 56 67 | 
             
                return self;
         | 
| 57 68 | 
             
            }
         | 
| 58 69 |  | 
| 59 70 | 
             
            static VALUE
         | 
| 60 | 
            -
             | 
| 71 | 
            +
            rg_set_background(VALUE self, VALUE win, VALUE state_type)
         | 
| 61 72 | 
             
            {
         | 
| 62 73 | 
             
                gtk_style_set_background(_SELF(self), GDK_WINDOW(RVAL2GOBJ(win)),
         | 
| 63 74 | 
             
                                         RVAL2STATE(state_type));
         | 
| @@ -65,7 +76,7 @@ style_set_background(VALUE self, VALUE win, VALUE state_type) | |
| 65 76 | 
             
            }
         | 
| 66 77 |  | 
| 67 78 | 
             
            static VALUE
         | 
| 68 | 
            -
             | 
| 79 | 
            +
            rg_apply_default_background(VALUE self, VALUE gdkwindow, VALUE set_bg, VALUE state_type, VALUE area, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 69 80 | 
             
            {
         | 
| 70 81 | 
             
                gtk_style_apply_default_background(_SELF(self), 
         | 
| 71 82 | 
             
                                                   GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| @@ -78,7 +89,7 @@ style_apply_default_background(VALUE self, VALUE gdkwindow, VALUE set_bg, VALUE | |
| 78 89 |  | 
| 79 90 | 
             
            #if GTK_CHECK_VERSION(2,10,0)
         | 
| 80 91 | 
             
            static VALUE
         | 
| 81 | 
            -
             | 
| 92 | 
            +
            rg_lookup_color(VALUE self, VALUE color_name)
         | 
| 82 93 | 
             
            {
         | 
| 83 94 | 
             
                GdkColor color;
         | 
| 84 95 | 
             
                if (gtk_style_lookup_color(_SELF(self), RVAL2CSTR(color_name), &color)){
         | 
| @@ -90,7 +101,7 @@ style_lookup_color(VALUE self, VALUE color_name) | |
| 90 101 | 
             
            #endif
         | 
| 91 102 |  | 
| 92 103 | 
             
            static VALUE
         | 
| 93 | 
            -
             | 
| 104 | 
            +
            rg_lookup_icon_set(VALUE self, VALUE stock_id)
         | 
| 94 105 | 
             
            {
         | 
| 95 106 | 
             
                const gchar *id;
         | 
| 96 107 | 
             
                GtkIconSet *ret;
         | 
| @@ -99,13 +110,13 @@ style_lookup_icon_set(VALUE self, VALUE stock_id) | |
| 99 110 | 
             
                } else {
         | 
| 100 111 | 
             
                    id = rb_id2name(SYM2ID(stock_id));
         | 
| 101 112 | 
             
                }
         | 
| 102 | 
            -
             | 
| 113 | 
            +
             | 
| 103 114 | 
             
                ret = gtk_style_lookup_icon_set(_SELF(self), id);
         | 
| 104 115 | 
             
                return BOXED2RVAL(ret, GTK_TYPE_ICON_SET);
         | 
| 105 116 | 
             
            }
         | 
| 106 117 |  | 
| 107 118 | 
             
            static VALUE
         | 
| 108 | 
            -
             | 
| 119 | 
            +
            rg_render_icon(VALUE self, VALUE source, VALUE direction, VALUE state, VALUE size, VALUE widget, VALUE detail)
         | 
| 109 120 | 
             
            {
         | 
| 110 121 | 
             
                return GOBJ2RVAL(gtk_style_render_icon(_SELF(self), RVAL2ICONSOURCE(source),
         | 
| 111 122 | 
             
                                                       RVAL2GENUM(direction, GTK_TYPE_TEXT_DIRECTION), 
         | 
| @@ -116,7 +127,7 @@ style_render_icon(VALUE self, VALUE source, VALUE direction, VALUE state, VALUE | |
| 116 127 | 
             
            }
         | 
| 117 128 |  | 
| 118 129 | 
             
            static VALUE
         | 
| 119 | 
            -
             | 
| 130 | 
            +
            rg_paint_arrow(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE arrow_type, VALUE fill, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 120 131 | 
             
            {
         | 
| 121 132 | 
             
                gtk_paint_arrow(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 122 133 | 
             
                                RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -127,7 +138,7 @@ style_paint_arrow(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_ty | |
| 127 138 | 
             
            }
         | 
| 128 139 |  | 
| 129 140 | 
             
            static VALUE
         | 
| 130 | 
            -
             | 
| 141 | 
            +
            rg_paint_box(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 131 142 | 
             
            {
         | 
| 132 143 | 
             
                gtk_paint_box(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 133 144 | 
             
                                RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -137,7 +148,7 @@ style_paint_box(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type | |
| 137 148 | 
             
            }
         | 
| 138 149 |  | 
| 139 150 | 
             
            static VALUE
         | 
| 140 | 
            -
             | 
| 151 | 
            +
            rg_paint_box_gap(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height, VALUE gap_side, VALUE gap_x, VALUE gap_width)
         | 
| 141 152 | 
             
            {
         | 
| 142 153 | 
             
                gtk_paint_box_gap(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 143 154 | 
             
                                  RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -148,7 +159,7 @@ style_paint_box_gap(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_ | |
| 148 159 | 
             
            }
         | 
| 149 160 |  | 
| 150 161 | 
             
            static VALUE
         | 
| 151 | 
            -
             | 
| 162 | 
            +
            rg_paint_check(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 152 163 | 
             
            {
         | 
| 153 164 | 
             
                gtk_paint_check(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 154 165 | 
             
                                RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -158,7 +169,7 @@ style_paint_check(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_ty | |
| 158 169 | 
             
            }
         | 
| 159 170 |  | 
| 160 171 | 
             
            static VALUE
         | 
| 161 | 
            -
             | 
| 172 | 
            +
            rg_paint_diamond(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 162 173 | 
             
            {
         | 
| 163 174 | 
             
                gtk_paint_diamond(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 164 175 | 
             
                                RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -168,7 +179,7 @@ style_paint_diamond(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_ | |
| 168 179 | 
             
            }
         | 
| 169 180 |  | 
| 170 181 | 
             
            static VALUE
         | 
| 171 | 
            -
             | 
| 182 | 
            +
            rg_paint_extension(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height, VALUE gap_side)
         | 
| 172 183 | 
             
            {
         | 
| 173 184 | 
             
                gtk_paint_extension(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 174 185 | 
             
                                    RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -179,7 +190,7 @@ style_paint_extension(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shado | |
| 179 190 | 
             
            }
         | 
| 180 191 |  | 
| 181 192 | 
             
            static VALUE
         | 
| 182 | 
            -
             | 
| 193 | 
            +
            rg_paint_flat_box(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 183 194 | 
             
            {
         | 
| 184 195 | 
             
                gtk_paint_flat_box(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 185 196 | 
             
                                RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -189,7 +200,7 @@ style_paint_flat_box(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow | |
| 189 200 | 
             
            }
         | 
| 190 201 |  | 
| 191 202 | 
             
            static VALUE
         | 
| 192 | 
            -
             | 
| 203 | 
            +
            rg_paint_focus(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 193 204 | 
             
            {
         | 
| 194 205 | 
             
                gtk_paint_focus(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 195 206 | 
             
                                RVAL2STATE(state_type), RVAL2REC(area),
         | 
| @@ -199,7 +210,7 @@ style_paint_focus(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE area, VAL | |
| 199 210 | 
             
            }
         | 
| 200 211 |  | 
| 201 212 | 
             
            static VALUE
         | 
| 202 | 
            -
             | 
| 213 | 
            +
            rg_paint_handle(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height, VALUE orientation)
         | 
| 203 214 | 
             
            {
         | 
| 204 215 | 
             
                gtk_paint_handle(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 205 216 | 
             
                                 RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -210,7 +221,7 @@ style_paint_handle(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_t | |
| 210 221 | 
             
            }
         | 
| 211 222 |  | 
| 212 223 | 
             
            static VALUE
         | 
| 213 | 
            -
             | 
| 224 | 
            +
            rg_paint_hline(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE area, VALUE widget, VALUE detail, VALUE x1, VALUE x2, VALUE y)
         | 
| 214 225 | 
             
            {
         | 
| 215 226 | 
             
                gtk_paint_hline(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 216 227 | 
             
                                RVAL2STATE(state_type), RVAL2REC(area),
         | 
| @@ -220,7 +231,7 @@ style_paint_hline(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE area, VAL | |
| 220 231 | 
             
            }
         | 
| 221 232 |  | 
| 222 233 | 
             
            static VALUE
         | 
| 223 | 
            -
             | 
| 234 | 
            +
            rg_paint_option(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 224 235 | 
             
            {
         | 
| 225 236 | 
             
                gtk_paint_option(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 226 237 | 
             
                                 RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -231,25 +242,30 @@ style_paint_option(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_t | |
| 231 242 | 
             
            }
         | 
| 232 243 |  | 
| 233 244 | 
             
            static VALUE
         | 
| 234 | 
            -
             | 
| 245 | 
            +
            rg_paint_polygon(VALUE self, VALUE rbwindow, VALUE rbstate_type,
         | 
| 246 | 
            +
                                VALUE rbshadow_type, VALUE rbarea, VALUE rbwidget,
         | 
| 247 | 
            +
                                VALUE rbdetail, VALUE rbpoints, VALUE rbfill)
         | 
| 235 248 | 
             
            {
         | 
| 236 | 
            -
                 | 
| 237 | 
            -
                 | 
| 249 | 
            +
                GtkStyle *style = _SELF(self);
         | 
| 250 | 
            +
                GdkWindow *window = GDK_WINDOW(RVAL2GOBJ(rbwindow));
         | 
| 251 | 
            +
                GtkStateType state_type = RVAL2STATE(rbstate_type);
         | 
| 252 | 
            +
                GtkShadowType shadow_type = RVAL2SHADOW(rbshadow_type);
         | 
| 253 | 
            +
                GdkRectangle *area = RVAL2REC(rbarea);
         | 
| 254 | 
            +
                GtkWidget *widget = GTK_WIDGET(RVAL2GOBJ(rbwidget));
         | 
| 255 | 
            +
                const gchar *detail = RVAL2CSTR_ACCEPT_NIL(rbdetail);
         | 
| 256 | 
            +
                gboolean fill = RVAL2CBOOL(rbfill);
         | 
| 257 | 
            +
                long n;
         | 
| 258 | 
            +
                GdkPoint *points = RVAL2GDKPOINTS(rbpoints, &n);
         | 
| 259 | 
            +
             | 
| 260 | 
            +
                gtk_paint_polygon(style, window, state_type, shadow_type, area, widget, detail, points, n, fill);
         | 
| 261 | 
            +
             | 
| 262 | 
            +
                g_free(points);
         | 
| 238 263 |  | 
| 239 | 
            -
                for (i = 0; i < RARRAY_LEN(points); i++){
         | 
| 240 | 
            -
                    gpoints[i].x = RARRAY_PTR(RARRAY_PTR(points)[i])[0];
         | 
| 241 | 
            -
                    gpoints[i].y = RARRAY_PTR(RARRAY_PTR(points)[i])[1];
         | 
| 242 | 
            -
                }
         | 
| 243 | 
            -
                gtk_paint_polygon(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 244 | 
            -
                                  RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| 245 | 
            -
                                  GTK_WIDGET(RVAL2GOBJ(widget)), 
         | 
| 246 | 
            -
                                  NIL_P(detail) ? NULL : RVAL2CSTR(detail), gpoints,
         | 
| 247 | 
            -
                                  RARRAY_LEN(points), RVAL2CBOOL(fill));
         | 
| 248 264 | 
             
                return self;
         | 
| 249 265 | 
             
            }
         | 
| 250 266 |  | 
| 251 267 | 
             
            static VALUE
         | 
| 252 | 
            -
             | 
| 268 | 
            +
            rg_paint_shadow(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 253 269 | 
             
            {
         | 
| 254 270 | 
             
                gtk_paint_shadow(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 255 271 | 
             
                                 RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -260,7 +276,7 @@ style_paint_shadow(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_t | |
| 260 276 | 
             
            }
         | 
| 261 277 |  | 
| 262 278 | 
             
            static VALUE
         | 
| 263 | 
            -
             | 
| 279 | 
            +
            rg_paint_shadow_gap(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height, VALUE gap_side, VALUE gap_x, VALUE gap_width)
         | 
| 264 280 | 
             
            {
         | 
| 265 281 | 
             
                gtk_paint_shadow_gap(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 266 282 | 
             
                                     RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -272,7 +288,7 @@ style_paint_shadow_gap(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shad | |
| 272 288 | 
             
            }
         | 
| 273 289 |  | 
| 274 290 | 
             
            static VALUE
         | 
| 275 | 
            -
             | 
| 291 | 
            +
            rg_paint_slider(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height, VALUE orientation)
         | 
| 276 292 | 
             
            {
         | 
| 277 293 | 
             
                gtk_paint_slider(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 278 294 | 
             
                                 RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -284,7 +300,7 @@ style_paint_slider(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_t | |
| 284 300 | 
             
            }
         | 
| 285 301 |  | 
| 286 302 | 
             
            static VALUE
         | 
| 287 | 
            -
             | 
| 303 | 
            +
            rg_paint_tab(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 288 304 | 
             
            {
         | 
| 289 305 | 
             
                gtk_paint_tab(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 290 306 | 
             
                              RVAL2STATE(state_type), RVAL2SHADOW(shadow_type), RVAL2REC(area),
         | 
| @@ -295,7 +311,7 @@ style_paint_tab(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE shadow_type | |
| 295 311 | 
             
            }
         | 
| 296 312 |  | 
| 297 313 | 
             
            static VALUE
         | 
| 298 | 
            -
             | 
| 314 | 
            +
            rg_paint_vline(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE area, VALUE widget, VALUE detail, VALUE y1, VALUE y2, VALUE x)
         | 
| 299 315 | 
             
            {
         | 
| 300 316 | 
             
                gtk_paint_vline(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 301 317 | 
             
                                RVAL2STATE(state_type), RVAL2REC(area),
         | 
| @@ -306,7 +322,7 @@ style_paint_vline(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE area, VAL | |
| 306 322 | 
             
            }
         | 
| 307 323 |  | 
| 308 324 | 
             
            static VALUE
         | 
| 309 | 
            -
             | 
| 325 | 
            +
            rg_paint_expander(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE expander_style)
         | 
| 310 326 | 
             
            {
         | 
| 311 327 | 
             
                gtk_paint_expander(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 312 328 | 
             
                                   RVAL2STATE(state_type), RVAL2REC(area),
         | 
| @@ -317,7 +333,7 @@ style_paint_expander(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE area, | |
| 317 333 | 
             
            }
         | 
| 318 334 |  | 
| 319 335 | 
             
            static VALUE
         | 
| 320 | 
            -
             | 
| 336 | 
            +
            rg_paint_layout(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE use_text, VALUE area, VALUE widget, VALUE detail, VALUE x, VALUE y, VALUE layout)
         | 
| 321 337 | 
             
            {
         | 
| 322 338 | 
             
                gtk_paint_layout(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 323 339 | 
             
                                 RVAL2STATE(state_type), RVAL2CBOOL(use_text), RVAL2REC(area),
         | 
| @@ -328,7 +344,7 @@ style_paint_layout(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE use_text | |
| 328 344 | 
             
            }
         | 
| 329 345 |  | 
| 330 346 | 
             
            static VALUE
         | 
| 331 | 
            -
             | 
| 347 | 
            +
            rg_paint_resize_grip(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE area, VALUE widget, VALUE detail, VALUE edge, VALUE x, VALUE y, VALUE width, VALUE height)
         | 
| 332 348 | 
             
            {
         | 
| 333 349 | 
             
                gtk_paint_resize_grip(_SELF(self), GDK_WINDOW(RVAL2GOBJ(gdkwindow)),
         | 
| 334 350 | 
             
                                      RVAL2STATE(state_type), RVAL2REC(area),
         | 
| @@ -341,7 +357,7 @@ style_paint_resize_grip(VALUE self, VALUE gdkwindow, VALUE state_type, VALUE are | |
| 341 357 | 
             
            }
         | 
| 342 358 | 
             
            #if GTK_CHECK_VERSION(2,4,0)
         | 
| 343 359 | 
             
            static VALUE
         | 
| 344 | 
            -
             | 
| 360 | 
            +
            rg_s_draw_insertion_cursor(VALUE self, VALUE widget, VALUE drawable, VALUE area, VALUE location, VALUE is_primary, VALUE direction, VALUE draw_arrow)
         | 
| 345 361 | 
             
            {
         | 
| 346 362 | 
             
                gtk_draw_insertion_cursor(GTK_WIDGET(RVAL2GOBJ(widget)),
         | 
| 347 363 | 
             
                                          GDK_WINDOW(RVAL2GOBJ(drawable)),
         | 
| @@ -386,30 +402,30 @@ DEFINE_STYLE_COLOR(base); | |
| 386 402 | 
             
            DEFINE_STYLE_COLOR(text_aa);
         | 
| 387 403 |  | 
| 388 404 | 
             
            static VALUE
         | 
| 389 | 
            -
             | 
| 405 | 
            +
            rg_black(VALUE self)
         | 
| 390 406 | 
             
            {
         | 
| 391 407 | 
             
                return BOXED2RVAL(&_SELF(self)->black, GDK_TYPE_COLOR);
         | 
| 392 408 | 
             
            }
         | 
| 393 409 |  | 
| 394 410 | 
             
            static VALUE
         | 
| 395 | 
            -
             | 
| 411 | 
            +
            rg_set_black(VALUE self, VALUE r, VALUE g, VALUE b)
         | 
| 396 412 | 
             
            {
         | 
| 397 413 | 
             
               GdkColor* color =  &(_SELF(self)->black);
         | 
| 398 414 | 
             
               color->red   = NUM2INT(r); 
         | 
| 399 415 | 
             
               color->green = NUM2INT(g); 
         | 
| 400 416 | 
             
               color->blue  = NUM2INT(b); 
         | 
| 401 | 
            -
             | 
| 417 | 
            +
             | 
| 402 418 | 
             
               return self;
         | 
| 403 419 | 
             
            }
         | 
| 404 420 |  | 
| 405 421 | 
             
            static VALUE
         | 
| 406 | 
            -
             | 
| 422 | 
            +
            rg_white(VALUE self)
         | 
| 407 423 | 
             
            {
         | 
| 408 424 | 
             
                return BOXED2RVAL(&_SELF(self)->white, GDK_TYPE_COLOR);
         | 
| 409 425 | 
             
            }
         | 
| 410 426 |  | 
| 411 427 | 
             
            static VALUE
         | 
| 412 | 
            -
             | 
| 428 | 
            +
            rg_set_white(VALUE self, VALUE r, VALUE g, VALUE b)
         | 
| 413 429 | 
             
            {
         | 
| 414 430 | 
             
                GdkColor* color =  &(_SELF(self)->white);
         | 
| 415 431 | 
             
                color->red   = NUM2INT(r); 
         | 
| @@ -419,14 +435,14 @@ style_set_white(VALUE self, VALUE r, VALUE g, VALUE b) | |
| 419 435 | 
             
            }
         | 
| 420 436 |  | 
| 421 437 | 
             
            static VALUE
         | 
| 422 | 
            -
             | 
| 438 | 
            +
            rg_font_desc(VALUE self)
         | 
| 423 439 | 
             
            {
         | 
| 424 440 | 
             
                PangoFontDescription* desc = _SELF(self)->font_desc;
         | 
| 425 441 | 
             
                return BOXED2RVAL(desc, PANGO_TYPE_FONT_DESCRIPTION);
         | 
| 426 442 | 
             
            }
         | 
| 427 443 |  | 
| 428 444 | 
             
            static VALUE
         | 
| 429 | 
            -
             | 
| 445 | 
            +
            rg_set_font_desc(VALUE self, VALUE font_desc)
         | 
| 430 446 | 
             
            {
         | 
| 431 447 | 
             
                GtkStyle *style = _SELF(self);
         | 
| 432 448 | 
             
                if (style->font_desc)
         | 
| @@ -436,26 +452,26 @@ style_set_font_desc(VALUE self, VALUE font_desc) | |
| 436 452 | 
             
            }
         | 
| 437 453 |  | 
| 438 454 | 
             
            static VALUE
         | 
| 439 | 
            -
             | 
| 455 | 
            +
            rg_xthickness(VALUE self)
         | 
| 440 456 | 
             
            {
         | 
| 441 457 | 
             
                return INT2NUM(_SELF(self)->xthickness);
         | 
| 442 458 | 
             
            }
         | 
| 443 459 |  | 
| 444 460 | 
             
            static VALUE
         | 
| 445 | 
            -
             | 
| 461 | 
            +
            rg_set_xthickness(VALUE self, VALUE xthickness)
         | 
| 446 462 | 
             
            {
         | 
| 447 463 | 
             
                _SELF(self)->xthickness = NUM2INT(xthickness);
         | 
| 448 464 | 
             
                return self;
         | 
| 449 465 | 
             
            }
         | 
| 450 466 |  | 
| 451 467 | 
             
            static VALUE
         | 
| 452 | 
            -
             | 
| 468 | 
            +
            rg_ythickness(VALUE self)
         | 
| 453 469 | 
             
            {
         | 
| 454 470 | 
             
                return INT2NUM(_SELF(self)->ythickness);
         | 
| 455 471 | 
             
            }
         | 
| 456 472 |  | 
| 457 473 | 
             
            static VALUE
         | 
| 458 | 
            -
             | 
| 474 | 
            +
            rg_set_ythickness(VALUE self, VALUE ythickness)
         | 
| 459 475 | 
             
            {
         | 
| 460 476 | 
             
                _SELF(self)->ythickness = NUM2INT(ythickness);
         | 
| 461 477 | 
             
                return self;
         | 
| @@ -490,33 +506,33 @@ DEFINE_STYLE_GC(base_gc); | |
| 490 506 | 
             
            DEFINE_STYLE_GC(text_aa_gc);
         | 
| 491 507 |  | 
| 492 508 | 
             
            static VALUE
         | 
| 493 | 
            -
             | 
| 509 | 
            +
            rg_black_gc(VALUE self)
         | 
| 494 510 | 
             
            {
         | 
| 495 511 | 
             
                return GOBJ2RVAL(_SELF(self)->black_gc);
         | 
| 496 512 | 
             
            }
         | 
| 497 513 |  | 
| 498 514 | 
             
            static VALUE
         | 
| 499 | 
            -
             | 
| 515 | 
            +
            rg_set_black_gc(VALUE self, VALUE gc)
         | 
| 500 516 | 
             
            {
         | 
| 501 517 | 
             
                _SELF(self)->black_gc = GDK_GC(RVAL2GOBJ(gc));
         | 
| 502 518 | 
             
                return self;
         | 
| 503 519 | 
             
            }
         | 
| 504 520 |  | 
| 505 521 | 
             
            static VALUE
         | 
| 506 | 
            -
             | 
| 522 | 
            +
            rg_white_gc(VALUE self)
         | 
| 507 523 | 
             
            {
         | 
| 508 524 | 
             
                return GOBJ2RVAL(_SELF(self)->white_gc);
         | 
| 509 525 | 
             
            }
         | 
| 510 526 |  | 
| 511 527 | 
             
            static VALUE
         | 
| 512 | 
            -
             | 
| 528 | 
            +
            rg_set_white_gc(VALUE self, VALUE gc)
         | 
| 513 529 | 
             
            {
         | 
| 514 530 | 
             
                _SELF(self)->white_gc = GDK_GC(RVAL2GOBJ(gc));
         | 
| 515 531 | 
             
                return self;
         | 
| 516 532 | 
             
            }
         | 
| 517 533 |  | 
| 518 534 | 
             
            static VALUE
         | 
| 519 | 
            -
             | 
| 535 | 
            +
            rg_bg_pixmap(VALUE self, VALUE idx)
         | 
| 520 536 | 
             
            {
         | 
| 521 537 | 
             
                int i = NUM2INT(idx);
         | 
| 522 538 |  | 
| @@ -526,7 +542,7 @@ style_bg_pixmap(VALUE self, VALUE idx) | |
| 526 542 | 
             
            }
         | 
| 527 543 |  | 
| 528 544 | 
             
            static VALUE
         | 
| 529 | 
            -
             | 
| 545 | 
            +
            rg_set_bg_pixmap(VALUE self, VALUE idx, VALUE bg_pixmap)
         | 
| 530 546 | 
             
            {
         | 
| 531 547 | 
             
                int i = NUM2INT(idx);
         | 
| 532 548 | 
             
                GdkPixmap* pixmap = RVAL2GOBJ(bg_pixmap);
         | 
| @@ -538,97 +554,97 @@ style_set_bg_pixmap(VALUE self, VALUE idx, VALUE bg_pixmap) | |
| 538 554 | 
             
            }
         | 
| 539 555 |  | 
| 540 556 | 
             
            void 
         | 
| 541 | 
            -
            Init_gtk_style()
         | 
| 542 | 
            -
            {
         | 
| 543 | 
            -
                VALUE  | 
| 544 | 
            -
             | 
| 545 | 
            -
                 | 
| 546 | 
            -
                 | 
| 547 | 
            -
                 | 
| 548 | 
            -
                 | 
| 549 | 
            -
                 | 
| 550 | 
            -
                 | 
| 551 | 
            -
                 | 
| 552 | 
            -
                 | 
| 553 | 
            -
                 | 
| 557 | 
            +
            Init_gtk_style(VALUE mGtk)
         | 
| 558 | 
            +
            {
         | 
| 559 | 
            +
                VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_STYLE, "Style", mGtk);
         | 
| 560 | 
            +
             | 
| 561 | 
            +
                RG_DEF_METHOD(initialize, 0);
         | 
| 562 | 
            +
                RG_DEF_METHOD_P(attached, 0);
         | 
| 563 | 
            +
                RG_DEF_METHOD(copy, 0);
         | 
| 564 | 
            +
                RG_DEF_ALIAS("clone", "copy");
         | 
| 565 | 
            +
                RG_DEF_ALIAS("dup", "copy");
         | 
| 566 | 
            +
                RG_DEF_METHOD(attach, 1);
         | 
| 567 | 
            +
                RG_DEF_METHOD(detach, 0);
         | 
| 568 | 
            +
                RG_DEF_METHOD(set_background, 2);
         | 
| 569 | 
            +
                RG_DEF_METHOD(apply_default_background, 8);
         | 
| 554 570 | 
             
            #if GTK_CHECK_VERSION(2,10,0)
         | 
| 555 | 
            -
                 | 
| 571 | 
            +
                RG_DEF_METHOD(lookup_color, 1);
         | 
| 556 572 | 
             
            #endif
         | 
| 557 | 
            -
                 | 
| 558 | 
            -
                 | 
| 559 | 
            -
                 | 
| 560 | 
            -
                 | 
| 561 | 
            -
                 | 
| 562 | 
            -
                 | 
| 563 | 
            -
                 | 
| 564 | 
            -
                 | 
| 565 | 
            -
                 | 
| 566 | 
            -
                 | 
| 567 | 
            -
                 | 
| 568 | 
            -
                 | 
| 569 | 
            -
                 | 
| 570 | 
            -
                 | 
| 571 | 
            -
                 | 
| 572 | 
            -
                 | 
| 573 | 
            -
                 | 
| 574 | 
            -
                 | 
| 575 | 
            -
                 | 
| 576 | 
            -
                 | 
| 577 | 
            -
                 | 
| 578 | 
            -
                 | 
| 573 | 
            +
                RG_DEF_METHOD(lookup_icon_set, 1);
         | 
| 574 | 
            +
                RG_DEF_METHOD(render_icon, 6);
         | 
| 575 | 
            +
                RG_DEF_METHOD(paint_arrow, 12);
         | 
| 576 | 
            +
                RG_DEF_METHOD(paint_box, 10);
         | 
| 577 | 
            +
                RG_DEF_METHOD(paint_box_gap, 13);
         | 
| 578 | 
            +
                RG_DEF_METHOD(paint_check, 10);
         | 
| 579 | 
            +
                RG_DEF_METHOD(paint_diamond, 10);
         | 
| 580 | 
            +
                RG_DEF_METHOD(paint_extension, 10);
         | 
| 581 | 
            +
                RG_DEF_METHOD(paint_flat_box, 10);
         | 
| 582 | 
            +
                RG_DEF_METHOD(paint_focus, 9);
         | 
| 583 | 
            +
                RG_DEF_METHOD(paint_handle, 11);
         | 
| 584 | 
            +
                RG_DEF_METHOD(paint_hline, 8);
         | 
| 585 | 
            +
                RG_DEF_METHOD(paint_option, 10);
         | 
| 586 | 
            +
                RG_DEF_METHOD(paint_polygon, 8);
         | 
| 587 | 
            +
                RG_DEF_METHOD(paint_shadow, 10);
         | 
| 588 | 
            +
                RG_DEF_METHOD(paint_shadow_gap, 13);
         | 
| 589 | 
            +
                RG_DEF_METHOD(paint_slider, 11);
         | 
| 590 | 
            +
                RG_DEF_METHOD(paint_tab, 10);
         | 
| 591 | 
            +
                RG_DEF_METHOD(paint_vline, 9);
         | 
| 592 | 
            +
                RG_DEF_METHOD(paint_expander, 8);
         | 
| 593 | 
            +
                RG_DEF_METHOD(paint_layout, 9);
         | 
| 594 | 
            +
                RG_DEF_METHOD(paint_resize_grip, 10);
         | 
| 579 595 | 
             
            #if GTK_CHECK_VERSION(2,4,0)
         | 
| 580 | 
            -
                 | 
| 596 | 
            +
                RG_DEF_SMETHOD(draw_insertion_cursor, 7);
         | 
| 581 597 | 
             
            #endif
         | 
| 582 | 
            -
                rb_define_method( | 
| 583 | 
            -
                rb_define_method( | 
| 584 | 
            -
                rb_define_method( | 
| 585 | 
            -
                rb_define_method( | 
| 586 | 
            -
                rb_define_method( | 
| 587 | 
            -
                rb_define_method( | 
| 588 | 
            -
                rb_define_method( | 
| 589 | 
            -
                rb_define_method( | 
| 590 | 
            -
                rb_define_method( | 
| 591 | 
            -
                rb_define_method( | 
| 592 | 
            -
                rb_define_method( | 
| 593 | 
            -
                rb_define_method( | 
| 594 | 
            -
                rb_define_method( | 
| 595 | 
            -
                rb_define_method( | 
| 596 | 
            -
                rb_define_method( | 
| 597 | 
            -
                rb_define_method( | 
| 598 | 
            -
             | 
| 599 | 
            -
                 | 
| 600 | 
            -
                 | 
| 601 | 
            -
                 | 
| 602 | 
            -
                 | 
| 603 | 
            -
                 | 
| 604 | 
            -
                 | 
| 605 | 
            -
                 | 
| 606 | 
            -
                 | 
| 607 | 
            -
                 | 
| 608 | 
            -
                 | 
| 609 | 
            -
             | 
| 610 | 
            -
                rb_define_method( | 
| 611 | 
            -
                rb_define_method( | 
| 612 | 
            -
                rb_define_method( | 
| 613 | 
            -
                rb_define_method( | 
| 614 | 
            -
                rb_define_method( | 
| 615 | 
            -
                rb_define_method( | 
| 616 | 
            -
                rb_define_method( | 
| 617 | 
            -
                rb_define_method( | 
| 618 | 
            -
                 | 
| 619 | 
            -
                 | 
| 620 | 
            -
                 | 
| 621 | 
            -
                rb_define_method( | 
| 622 | 
            -
                rb_define_method( | 
| 623 | 
            -
                rb_define_method( | 
| 624 | 
            -
                rb_define_method( | 
| 625 | 
            -
                rb_define_method( | 
| 626 | 
            -
                rb_define_method( | 
| 627 | 
            -
                rb_define_method( | 
| 628 | 
            -
                rb_define_method( | 
| 629 | 
            -
                 | 
| 630 | 
            -
                 | 
| 631 | 
            -
                 | 
| 632 | 
            -
             | 
| 633 | 
            -
                G_DEF_SETTERS( | 
| 598 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "fg", style_fg, 1);
         | 
| 599 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "bg", style_bg, 1);
         | 
| 600 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "light", style_light, 1);
         | 
| 601 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "dark", style_dark, 1);
         | 
| 602 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "mid", style_mid, 1);
         | 
| 603 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "text", style_text, 1);
         | 
| 604 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "base", style_base, 1);
         | 
| 605 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "text_aa", style_text_aa, 1);
         | 
| 606 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_fg", style_set_fg, 4);
         | 
| 607 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_bg", style_set_bg, 4);
         | 
| 608 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_light", style_set_light, 4);
         | 
| 609 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_dark", style_set_dark, 4);
         | 
| 610 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_mid", style_set_mid, 4);
         | 
| 611 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_text", style_set_text, 4);
         | 
| 612 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_base", style_set_base, 4);
         | 
| 613 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_text_aa", style_set_text_aa, 4);
         | 
| 614 | 
            +
             | 
| 615 | 
            +
                RG_DEF_METHOD(black, 0);
         | 
| 616 | 
            +
                RG_DEF_METHOD(set_black, 3);
         | 
| 617 | 
            +
                RG_DEF_METHOD(white, 0);
         | 
| 618 | 
            +
                RG_DEF_METHOD(set_white, 3);
         | 
| 619 | 
            +
                RG_DEF_METHOD(font_desc, 0);
         | 
| 620 | 
            +
                RG_DEF_METHOD(set_font_desc, 1);
         | 
| 621 | 
            +
                RG_DEF_METHOD(xthickness, 0);
         | 
| 622 | 
            +
                RG_DEF_METHOD(ythickness, 0);
         | 
| 623 | 
            +
                RG_DEF_METHOD(set_xthickness, 1);
         | 
| 624 | 
            +
                RG_DEF_METHOD(set_ythickness, 1);
         | 
| 625 | 
            +
             | 
| 626 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "fg_gc", style_fg_gc, 1);
         | 
| 627 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "bg_gc", style_bg_gc, 1);
         | 
| 628 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "light_gc", style_light_gc, 1);
         | 
| 629 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "dark_gc", style_dark_gc, 1);
         | 
| 630 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "mid_gc", style_mid_gc, 1);
         | 
| 631 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "text_gc", style_text_gc, 1);
         | 
| 632 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "base_gc", style_base_gc, 1);
         | 
| 633 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "text_aa_gc", style_text_aa_gc, 1);
         | 
| 634 | 
            +
                RG_DEF_METHOD(black_gc, 0);
         | 
| 635 | 
            +
                RG_DEF_METHOD(white_gc, 0);
         | 
| 636 | 
            +
                RG_DEF_METHOD(bg_pixmap, 1);
         | 
| 637 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_fg_gc", style_set_fg_gc, 2);
         | 
| 638 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_bg_gc", style_set_bg_gc, 2);
         | 
| 639 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_light_gc", style_set_light_gc, 2);
         | 
| 640 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_dark_gc", style_set_dark_gc, 2);
         | 
| 641 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_mid_gc", style_set_mid_gc, 2);
         | 
| 642 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_text_gc", style_set_text_gc, 2);
         | 
| 643 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_base_gc", style_set_base_gc, 2);
         | 
| 644 | 
            +
                rb_define_method(RG_TARGET_NAMESPACE, "set_text_aa_gc", style_set_text_aa_gc, 2);
         | 
| 645 | 
            +
                RG_DEF_METHOD(set_black_gc, 1);
         | 
| 646 | 
            +
                RG_DEF_METHOD(set_white_gc, 1);
         | 
| 647 | 
            +
                RG_DEF_METHOD(set_bg_pixmap, 2);
         | 
| 648 | 
            +
             | 
| 649 | 
            +
                G_DEF_SETTERS(RG_TARGET_NAMESPACE);
         | 
| 634 650 | 
             
            }
         |