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/rbgtktreestore.c
    CHANGED
    
    | @@ -1,20 +1,31 @@ | |
| 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-2006 Masao Mutoh
         | 
| 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 cTreeStore
         | 
| 14 25 | 
             
            #define _SELF(s) (GTK_TREE_STORE(RVAL2GOBJ(s)))
         | 
| 15 26 |  | 
| 16 27 | 
             
            static VALUE
         | 
| 17 | 
            -
             | 
| 28 | 
            +
            rg_initialize(int argc, VALUE *argv, VALUE self)
         | 
| 18 29 | 
             
            {
         | 
| 19 30 | 
             
                gint cnt;
         | 
| 20 31 | 
             
                GtkTreeStore* store;
         | 
| @@ -28,18 +39,18 @@ tstore_initialize(int argc, VALUE *argv, VALUE self) | |
| 28 39 | 
             
                }
         | 
| 29 40 |  | 
| 30 41 | 
             
                store = gtk_tree_store_newv(argc, buf);
         | 
| 31 | 
            -
             | 
| 42 | 
            +
             | 
| 32 43 | 
             
                G_INITIALIZE(self, store);
         | 
| 33 44 |  | 
| 34 45 | 
             
                return Qnil;
         | 
| 35 46 | 
             
            }
         | 
| 36 47 |  | 
| 37 48 | 
             
            static VALUE
         | 
| 38 | 
            -
             | 
| 49 | 
            +
            rg_set_column_types(int argc, VALUE *argv, VALUE self)
         | 
| 39 50 | 
             
            {
         | 
| 40 51 | 
             
                gint cnt;
         | 
| 41 52 | 
             
                GType* buf;
         | 
| 42 | 
            -
             | 
| 53 | 
            +
             | 
| 43 54 | 
             
                if (argc == 0) rb_raise(rb_eArgError, "need more than 1 class type.");
         | 
| 44 55 | 
             
                buf = ALLOCA_N(GType, argc);
         | 
| 45 56 | 
             
                for (cnt = 0; cnt < argc; cnt++) {
         | 
| @@ -52,10 +63,10 @@ tstore_set_column_types(int argc, VALUE *argv, VALUE self) | |
| 52 63 | 
             
            }
         | 
| 53 64 |  | 
| 54 65 | 
             
            static VALUE
         | 
| 55 | 
            -
             | 
| 66 | 
            +
            rg_set_value(VALUE self, VALUE iter, VALUE column, VALUE value)
         | 
| 56 67 | 
             
            {
         | 
| 57 68 | 
             
                GType gtype = gtk_tree_model_get_column_type(GTK_TREE_MODEL(RVAL2GOBJ(self)), NUM2INT(column));
         | 
| 58 | 
            -
                GValue gval =  | 
| 69 | 
            +
                GValue gval = G_VALUE_INIT;
         | 
| 59 70 | 
             
                g_value_init(&gval, gtype);
         | 
| 60 71 |  | 
| 61 72 | 
             
                rbgobj_rvalue_to_gvalue(value, &gval);
         | 
| @@ -72,15 +83,15 @@ tstore_set_value(VALUE self, VALUE iter, VALUE column, VALUE value) | |
| 72 83 | 
             
            /*
         | 
| 73 84 | 
             
              void        gtk_tree_store_set (GtkTreeStore *tree_store,
         | 
| 74 85 | 
             
                                                           GtkTreeIter *iter,
         | 
| 75 | 
            -
             | 
| 86 | 
            +
                                                                                    ...);
         | 
| 76 87 |  | 
| 77 88 | 
             
              void        gtk_tree_store_set_valist       (GtkTreeStore *tree_store,
         | 
| 78 89 | 
             
              GtkTreeIter *iter,
         | 
| 79 90 | 
             
              va_list var_args);
         | 
| 80 91 | 
             
            */
         | 
| 81 | 
            -
             | 
| 92 | 
            +
             | 
| 82 93 | 
             
            static VALUE
         | 
| 83 | 
            -
             | 
| 94 | 
            +
            rg_remove(VALUE self, VALUE iter)
         | 
| 84 95 | 
             
            {
         | 
| 85 96 | 
             
                G_CHILD_REMOVE(self, iter);
         | 
| 86 97 | 
             
            #if GTK_CHECK_VERSION(2,2,0)
         | 
| @@ -92,7 +103,7 @@ tstore_remove(VALUE self, VALUE iter) | |
| 92 103 | 
             
            }
         | 
| 93 104 |  | 
| 94 105 | 
             
            static VALUE
         | 
| 95 | 
            -
             | 
| 106 | 
            +
            rg_insert(int argc, VALUE *argv, VALUE self)
         | 
| 96 107 | 
             
            {
         | 
| 97 108 | 
             
                VALUE parent, position, values, ret;
         | 
| 98 109 | 
             
                GtkTreeIter iter;
         | 
| @@ -116,16 +127,16 @@ tstore_insert(int argc, VALUE *argv, VALUE self) | |
| 116 127 | 
             
                    size = NUM2INT(rb_funcall(values, rb_intern("size"), 0));
         | 
| 117 128 | 
             
                    c_columns = ALLOCA_N(gint, size);
         | 
| 118 129 | 
             
                    c_values = ALLOCA_N(GValue, size);
         | 
| 119 | 
            -
             | 
| 130 | 
            +
             | 
| 120 131 | 
             
                    if(TYPE(values)==T_ARRAY) {
         | 
| 121 132 | 
             
                        for(i=0; i<size; i++) {
         | 
| 122 133 | 
             
                            GType gtype;
         | 
| 123 | 
            -
                            GValue gval =  | 
| 134 | 
            +
                            GValue gval = G_VALUE_INIT;
         | 
| 124 135 |  | 
| 125 136 | 
             
                            c_columns[i] = i;
         | 
| 126 137 | 
             
                            gtype = gtk_tree_model_get_column_type(GTK_TREE_MODEL(RVAL2GOBJ(self)),
         | 
| 127 138 | 
             
                                                                   c_columns[i]);
         | 
| 128 | 
            -
             | 
| 139 | 
            +
             | 
| 129 140 | 
             
                            g_value_init(&gval, gtype);
         | 
| 130 141 | 
             
                            rbgobj_rvalue_to_gvalue(rb_ary_shift(values), &gval);
         | 
| 131 142 | 
             
                            c_values[i] = gval;
         | 
| @@ -133,15 +144,15 @@ tstore_insert(int argc, VALUE *argv, VALUE self) | |
| 133 144 | 
             
                    } else if(TYPE(values)==T_HASH) {
         | 
| 134 145 | 
             
                        VALUE r_columns;
         | 
| 135 146 | 
             
                        r_columns = rb_funcall(values, rb_intern("keys"), 0);
         | 
| 136 | 
            -
             | 
| 147 | 
            +
             | 
| 137 148 | 
             
                        for(i=0; i<size; i++) {
         | 
| 138 149 | 
             
                            GType gtype;
         | 
| 139 | 
            -
                            GValue gval =  | 
| 150 | 
            +
                            GValue gval = G_VALUE_INIT;
         | 
| 140 151 |  | 
| 141 152 | 
             
                            c_columns[i] = NUM2INT (rb_ary_entry(r_columns, i));
         | 
| 142 153 | 
             
                            gtype = gtk_tree_model_get_column_type(GTK_TREE_MODEL(RVAL2GOBJ(self)),
         | 
| 143 154 | 
             
                                                                   c_columns[i]);
         | 
| 144 | 
            -
             | 
| 155 | 
            +
             | 
| 145 156 | 
             
                            g_value_init(&gval, gtype);
         | 
| 146 157 | 
             
                            rbgobj_rvalue_to_gvalue(rb_hash_aref(values, INT2NUM(c_columns[i])), &gval);
         | 
| 147 158 | 
             
                            c_values[i] = gval;
         | 
| @@ -179,9 +190,8 @@ tstore_insert(int argc, VALUE *argv, VALUE self) | |
| 179 190 | 
             
                return ret;
         | 
| 180 191 | 
             
            }
         | 
| 181 192 |  | 
| 182 | 
            -
             | 
| 183 193 | 
             
            static VALUE
         | 
| 184 | 
            -
             | 
| 194 | 
            +
            rg_insert_before(VALUE self, VALUE parent, VALUE sibling)
         | 
| 185 195 | 
             
            {
         | 
| 186 196 | 
             
                VALUE ret;
         | 
| 187 197 | 
             
                GtkTreeIter iter;
         | 
| @@ -196,7 +206,7 @@ tstore_insert_before(VALUE self, VALUE parent, VALUE sibling) | |
| 196 206 | 
             
            }
         | 
| 197 207 |  | 
| 198 208 | 
             
            static VALUE
         | 
| 199 | 
            -
             | 
| 209 | 
            +
            rg_insert_after(VALUE self, VALUE parent, VALUE sibling)
         | 
| 200 210 | 
             
            { 
         | 
| 201 211 | 
             
                VALUE ret;
         | 
| 202 212 | 
             
                GtkTreeIter iter;
         | 
| @@ -233,7 +243,7 @@ void        gtk_tree_store_insert_with_valuesv | |
| 233 243 | 
             
            */
         | 
| 234 244 |  | 
| 235 245 | 
             
            static VALUE
         | 
| 236 | 
            -
             | 
| 246 | 
            +
            rg_prepend(VALUE self, VALUE parent)
         | 
| 237 247 | 
             
            {
         | 
| 238 248 | 
             
                VALUE ret;
         | 
| 239 249 | 
             
                GtkTreeIter iter;
         | 
| @@ -248,7 +258,7 @@ tstore_prepend(VALUE self, VALUE parent) | |
| 248 258 | 
             
            }
         | 
| 249 259 |  | 
| 250 260 | 
             
            static VALUE
         | 
| 251 | 
            -
             | 
| 261 | 
            +
            rg_append(VALUE self, VALUE parent)
         | 
| 252 262 | 
             
            {
         | 
| 253 263 | 
             
                VALUE ret;
         | 
| 254 264 | 
             
                GtkTreeIter iter;
         | 
| @@ -263,62 +273,75 @@ tstore_append(VALUE self, VALUE parent) | |
| 263 273 | 
             
            }
         | 
| 264 274 |  | 
| 265 275 | 
             
            static VALUE
         | 
| 266 | 
            -
             | 
| 276 | 
            +
            rg_ancestor_p(VALUE self, VALUE iter, VALUE descendant)
         | 
| 267 277 | 
             
            {
         | 
| 268 278 | 
             
                return gtk_tree_store_is_ancestor(_SELF(self), RVAL2GTKTREEITER(iter), 
         | 
| 269 279 | 
             
                                                  RVAL2GTKTREEITER(descendant));
         | 
| 270 280 | 
             
            }
         | 
| 271 281 |  | 
| 272 282 | 
             
            static VALUE
         | 
| 273 | 
            -
             | 
| 283 | 
            +
            rg_iter_depth(VALUE self, VALUE iter)
         | 
| 274 284 | 
             
            {
         | 
| 275 285 | 
             
                return INT2NUM(gtk_tree_store_iter_depth(_SELF(self), RVAL2GTKTREEITER(iter)));
         | 
| 276 286 | 
             
            }
         | 
| 277 287 |  | 
| 278 288 | 
             
            static VALUE
         | 
| 279 | 
            -
             | 
| 289 | 
            +
            rg_clear(VALUE self)
         | 
| 280 290 | 
             
            {
         | 
| 281 291 | 
             
                G_CHILD_REMOVE_ALL(self);
         | 
| 282 292 | 
             
                gtk_tree_store_clear(_SELF(self));
         | 
| 283 293 | 
             
                return self;
         | 
| 284 294 | 
             
            }
         | 
| 295 | 
            +
             | 
| 285 296 | 
             
            #if GTK_CHECK_VERSION(2,2,0)
         | 
| 286 297 | 
             
            static VALUE
         | 
| 287 | 
            -
             | 
| 298 | 
            +
            rg_iter_is_valid_p(VALUE self, VALUE iter)
         | 
| 288 299 | 
             
            {
         | 
| 289 300 | 
             
                return (NIL_P(iter)) ? Qfalse : 
         | 
| 290 301 | 
             
                    CBOOL2RVAL(gtk_tree_store_iter_is_valid(_SELF(self), RVAL2GTKTREEITER(iter)));
         | 
| 291 302 | 
             
            }
         | 
| 303 | 
            +
             | 
| 292 304 | 
             
            static VALUE
         | 
| 293 | 
            -
             | 
| 305 | 
            +
            rg_reorder(VALUE self, VALUE rbparent, VALUE rbnew_order)
         | 
| 294 306 | 
             
            {
         | 
| 295 | 
            -
                 | 
| 296 | 
            -
                 | 
| 297 | 
            -
                gint | 
| 298 | 
            -
             | 
| 299 | 
            -
                 | 
| 300 | 
            -
             | 
| 307 | 
            +
                GtkTreeStore *store = _SELF(self);
         | 
| 308 | 
            +
                GtkTreeIter *parent = RVAL2GTKTREEITER(rbparent);
         | 
| 309 | 
            +
                gint columns = gtk_tree_model_get_n_columns(GTK_TREE_MODEL(store));
         | 
| 310 | 
            +
                long n;
         | 
| 311 | 
            +
                gint *new_order = RVAL2GINTS(rbnew_order, n);
         | 
| 312 | 
            +
             | 
| 313 | 
            +
                if (n != columns) {
         | 
| 314 | 
            +
                    g_free(new_order);
         | 
| 315 | 
            +
             | 
| 316 | 
            +
                    rb_raise(rb_eArgError,
         | 
| 317 | 
            +
                             "new order array must contain same number of elements as the number of columns in the store: %ld != %d",
         | 
| 318 | 
            +
                             n, columns);
         | 
| 301 319 | 
             
                }
         | 
| 302 320 |  | 
| 303 | 
            -
                gtk_tree_store_reorder( | 
| 304 | 
            -
             | 
| 321 | 
            +
                gtk_tree_store_reorder(store, parent, new_order);
         | 
| 322 | 
            +
             | 
| 323 | 
            +
                g_free(new_order);
         | 
| 324 | 
            +
             | 
| 305 325 | 
             
                return self;
         | 
| 306 326 | 
             
            }
         | 
| 327 | 
            +
             | 
| 307 328 | 
             
            static VALUE
         | 
| 308 | 
            -
             | 
| 329 | 
            +
            rg_swap(VALUE self, VALUE iter1, VALUE iter2)
         | 
| 309 330 | 
             
            {
         | 
| 310 331 | 
             
                gtk_tree_store_swap(_SELF(self), RVAL2GTKTREEITER(iter1), RVAL2GTKTREEITER(iter2));
         | 
| 311 332 | 
             
                return self;
         | 
| 312 333 | 
             
            }
         | 
| 334 | 
            +
             | 
| 313 335 | 
             
            static VALUE
         | 
| 314 | 
            -
             | 
| 336 | 
            +
            rg_move_before(VALUE self, VALUE iter, VALUE position)
         | 
| 315 337 | 
             
            {
         | 
| 316 338 | 
             
                gtk_tree_store_move_before(_SELF(self), RVAL2GTKTREEITER(iter), 
         | 
| 317 339 | 
             
                                           NIL_P(position) ? NULL : RVAL2GTKTREEITER(position));
         | 
| 318 340 | 
             
                return self;
         | 
| 319 341 | 
             
            }
         | 
| 342 | 
            +
             | 
| 320 343 | 
             
            static VALUE
         | 
| 321 | 
            -
             | 
| 344 | 
            +
            rg_move_after(VALUE self, VALUE iter, VALUE position)
         | 
| 322 345 | 
             
            {
         | 
| 323 346 | 
             
                gtk_tree_store_move_after(_SELF(self), RVAL2GTKTREEITER(iter), 
         | 
| 324 347 | 
             
                                           NIL_P(position) ? NULL : RVAL2GTKTREEITER(position));
         | 
| @@ -327,33 +350,31 @@ tstore_move_after(VALUE self, VALUE iter, VALUE position) | |
| 327 350 | 
             
            #endif
         | 
| 328 351 |  | 
| 329 352 | 
             
            void
         | 
| 330 | 
            -
            Init_gtk_tree_store()
         | 
| 353 | 
            +
            Init_gtk_tree_store(VALUE mGtk)
         | 
| 331 354 | 
             
            {
         | 
| 332 | 
            -
                VALUE  | 
| 355 | 
            +
                VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_TREE_STORE, "TreeStore", mGtk);
         | 
| 333 356 |  | 
| 334 357 | 
             
                rbgtk_register_treeiter_set_value_func(GTK_TYPE_TREE_STORE, 
         | 
| 335 358 | 
             
                                                       (rbgtkiter_set_value_func)>k_tree_store_set_value);
         | 
| 336 359 |  | 
| 337 | 
            -
                 | 
| 338 | 
            -
                 | 
| 339 | 
            -
                 | 
| 340 | 
            -
                 | 
| 341 | 
            -
                 | 
| 342 | 
            -
                 | 
| 343 | 
            -
                 | 
| 344 | 
            -
                 | 
| 345 | 
            -
                 | 
| 346 | 
            -
                 | 
| 347 | 
            -
                 | 
| 348 | 
            -
                 | 
| 360 | 
            +
                RG_DEF_METHOD(initialize, -1);
         | 
| 361 | 
            +
                RG_DEF_METHOD(set_column_types, -1);
         | 
| 362 | 
            +
                RG_DEF_METHOD(set_value, 3);
         | 
| 363 | 
            +
                RG_DEF_METHOD(remove, 1);
         | 
| 364 | 
            +
                RG_DEF_METHOD(insert, -1);
         | 
| 365 | 
            +
                RG_DEF_METHOD(insert_before, 2);
         | 
| 366 | 
            +
                RG_DEF_METHOD(insert_after, 2);
         | 
| 367 | 
            +
                RG_DEF_METHOD(prepend, 1);
         | 
| 368 | 
            +
                RG_DEF_METHOD(append, 1);
         | 
| 369 | 
            +
                RG_DEF_METHOD_P(ancestor, 2);
         | 
| 370 | 
            +
                RG_DEF_METHOD(iter_depth, 1);
         | 
| 371 | 
            +
                RG_DEF_METHOD(clear, 0);
         | 
| 349 372 | 
             
            #if GTK_CHECK_VERSION(2,2,0)
         | 
| 350 | 
            -
                 | 
| 351 | 
            -
                 | 
| 352 | 
            -
                 | 
| 353 | 
            -
                 | 
| 354 | 
            -
                 | 
| 373 | 
            +
                RG_DEF_METHOD_P(iter_is_valid, 1);
         | 
| 374 | 
            +
                RG_DEF_METHOD(reorder, 2);
         | 
| 375 | 
            +
                RG_DEF_METHOD(swap, 2);
         | 
| 376 | 
            +
                RG_DEF_METHOD(move_before, 2);
         | 
| 377 | 
            +
                RG_DEF_METHOD(move_after, 2);
         | 
| 355 378 | 
             
            #endif
         | 
| 356 379 |  | 
| 357 380 | 
             
            }
         | 
| 358 | 
            -
             | 
| 359 | 
            -
             | 
    
        data/ext/gtk2/rbgtktreeview.c
    CHANGED
    
    | @@ -1,16 +1,27 @@ | |
| 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-2005 Masao Mutoh
         | 
| 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 cTreeView
         | 
| 14 25 | 
             
            #define _SELF(s) (GTK_TREE_VIEW(RVAL2GOBJ(s)))
         | 
| 15 26 | 
             
            #define TREEVIEW_COL(c) (GTK_TREE_VIEW_COLUMN(RVAL2GOBJ(c)))
         | 
| 16 27 | 
             
            #define RVAL2CELLRENDERER(c) (GTK_CELL_RENDERER(RVAL2GOBJ(c)))
         | 
| @@ -19,7 +30,7 @@ static ID id_model; | |
| 19 30 | 
             
            static ID id_selection;
         | 
| 20 31 |  | 
| 21 32 | 
             
            static VALUE
         | 
| 22 | 
            -
             | 
| 33 | 
            +
            rg_initialize(int argc, VALUE *argv, VALUE self)
         | 
| 23 34 | 
             
            {
         | 
| 24 35 | 
             
                VALUE model;
         | 
| 25 36 | 
             
                GtkWidget *widget;
         | 
| @@ -37,7 +48,7 @@ treeview_initialize(int argc, VALUE *argv, VALUE self) | |
| 37 48 | 
             
            }
         | 
| 38 49 |  | 
| 39 50 | 
             
            static VALUE
         | 
| 40 | 
            -
             | 
| 51 | 
            +
            rg_selection(VALUE self)
         | 
| 41 52 | 
             
            {
         | 
| 42 53 | 
             
                VALUE ret = GOBJ2RVAL(gtk_tree_view_get_selection(_SELF(self)));
         | 
| 43 54 | 
             
                G_CHILD_SET(self, id_selection, ret);
         | 
| @@ -45,14 +56,14 @@ treeview_get_selection(VALUE self) | |
| 45 56 | 
             
            }
         | 
| 46 57 |  | 
| 47 58 | 
             
            static VALUE
         | 
| 48 | 
            -
             | 
| 59 | 
            +
            rg_columns_autosize(VALUE self)
         | 
| 49 60 | 
             
            {
         | 
| 50 61 | 
             
                gtk_tree_view_columns_autosize(_SELF(self));
         | 
| 51 62 | 
             
                return self;
         | 
| 52 63 | 
             
            }
         | 
| 53 64 |  | 
| 54 65 | 
             
            static VALUE
         | 
| 55 | 
            -
             | 
| 66 | 
            +
            rg_append_column(VALUE self, VALUE column)
         | 
| 56 67 | 
             
            {
         | 
| 57 68 | 
             
                G_CHILD_ADD(self, column);
         | 
| 58 69 | 
             
                return INT2NUM(gtk_tree_view_append_column(_SELF(self), 
         | 
| @@ -60,7 +71,7 @@ treeview_append_column(VALUE self, VALUE column) | |
| 60 71 | 
             
            }
         | 
| 61 72 |  | 
| 62 73 | 
             
            static VALUE
         | 
| 63 | 
            -
             | 
| 74 | 
            +
            rg_remove_column(VALUE self, VALUE column)
         | 
| 64 75 | 
             
            {
         | 
| 65 76 | 
             
                G_CHILD_REMOVE(self, column);
         | 
| 66 77 | 
             
                return INT2NUM(gtk_tree_view_remove_column(_SELF(self), 
         | 
| @@ -77,7 +88,7 @@ cell_data_func(GtkTreeViewColumn *column, GtkCellRenderer *cell, GtkTreeModel *m | |
| 77 88 | 
             
            }
         | 
| 78 89 |  | 
| 79 90 | 
             
            static VALUE
         | 
| 80 | 
            -
             | 
| 91 | 
            +
            rg_insert_column(int argc, VALUE *argv, VALUE self)
         | 
| 81 92 | 
             
            {
         | 
| 82 93 | 
             
                VALUE args[4];
         | 
| 83 94 |  | 
| @@ -112,17 +123,19 @@ treeview_insert_column(int argc, VALUE *argv, VALUE self) | |
| 112 123 | 
             
                    const gchar *name;
         | 
| 113 124 | 
             
                    VALUE ary;
         | 
| 114 125 | 
             
                    GtkCellRenderer* renderer = RVAL2CELLRENDERER(args[2]);
         | 
| 115 | 
            -
             | 
| 126 | 
            +
             | 
| 116 127 | 
             
                    GtkTreeViewColumn* column = gtk_tree_view_column_new();
         | 
| 117 128 |  | 
| 118 129 | 
             
                    Check_Type(args[3], T_HASH);
         | 
| 119 130 |  | 
| 131 | 
            +
                    /* TODO: Should this really be done before we know that everything
         | 
| 132 | 
            +
                     * below worked without error? */
         | 
| 120 133 | 
             
                    G_CHILD_ADD(self, args[2]);
         | 
| 121 134 | 
             
                    G_CHILD_ADD(self, args[3]);
         | 
| 122 135 |  | 
| 123 136 | 
             
                    gtk_tree_view_column_set_title(column, RVAL2CSTR(args[1]));
         | 
| 124 137 | 
             
                    gtk_tree_view_column_pack_start(column, renderer, TRUE);
         | 
| 125 | 
            -
             | 
| 138 | 
            +
             | 
| 126 139 | 
             
                    ret = gtk_tree_view_insert_column(_SELF(self), column, NUM2INT(args[0]));
         | 
| 127 140 | 
             
                    ary = rb_funcall(args[3], rb_intern("to_a"), 0);
         | 
| 128 141 | 
             
                    for (i = 0; i < RARRAY_LEN(ary); i++) {
         | 
| @@ -139,26 +152,26 @@ treeview_insert_column(int argc, VALUE *argv, VALUE self) | |
| 139 152 | 
             
                    }
         | 
| 140 153 | 
             
                    return INT2NUM(ret);
         | 
| 141 154 | 
             
                } else {
         | 
| 142 | 
            -
             | 
| 155 | 
            +
                    rb_raise(rb_eArgError, "Wrong number of arguments: %d", argc);
         | 
| 143 156 | 
             
                }
         | 
| 144 157 |  | 
| 145 158 | 
             
                return Qnil;
         | 
| 146 159 | 
             
            }
         | 
| 147 160 |  | 
| 148 161 | 
             
            static VALUE
         | 
| 149 | 
            -
             | 
| 162 | 
            +
            rg_get_column(VALUE self, VALUE num)
         | 
| 150 163 | 
             
            {
         | 
| 151 164 | 
             
                return GOBJ2RVAL(gtk_tree_view_get_column(_SELF(self), NUM2INT(num)));
         | 
| 152 165 | 
             
            }
         | 
| 153 166 |  | 
| 154 167 | 
             
            static VALUE
         | 
| 155 | 
            -
             | 
| 168 | 
            +
            rg_columns(VALUE self)
         | 
| 156 169 | 
             
            {
         | 
| 157 170 | 
             
                return GLIST2ARYF(gtk_tree_view_get_columns(_SELF(self)));
         | 
| 158 171 | 
             
            }
         | 
| 159 172 |  | 
| 160 173 | 
             
            static VALUE
         | 
| 161 | 
            -
             | 
| 174 | 
            +
            rg_move_column_after(VALUE self, VALUE column, VALUE base_column)
         | 
| 162 175 | 
             
            {
         | 
| 163 176 | 
             
                gtk_tree_view_move_column_after(_SELF(self), TREEVIEW_COL(column),
         | 
| 164 177 | 
             
                                                NIL_P(base_column) ? NULL : TREEVIEW_COL(base_column));
         | 
| @@ -174,7 +187,7 @@ column_drop_func(GtkTreeView *treeview, GtkTreeViewColumn *column, GtkTreeViewCo | |
| 174 187 | 
             
            }
         | 
| 175 188 |  | 
| 176 189 | 
             
            static VALUE
         | 
| 177 | 
            -
             | 
| 190 | 
            +
            rg_set_column_drag_function(VALUE self)
         | 
| 178 191 | 
             
            {
         | 
| 179 192 | 
             
                VALUE func = rb_block_proc();
         | 
| 180 193 | 
             
                G_RELATIVE(self, func);
         | 
| @@ -185,14 +198,14 @@ treeview_set_column_drag_function(VALUE self) | |
| 185 198 | 
             
            }
         | 
| 186 199 |  | 
| 187 200 | 
             
            static VALUE
         | 
| 188 | 
            -
             | 
| 201 | 
            +
            rg_scroll_to_point(VALUE self, VALUE x, VALUE y)
         | 
| 189 202 | 
             
            {
         | 
| 190 203 | 
             
                gtk_tree_view_scroll_to_point(_SELF(self), NUM2INT(x), NUM2INT(y));
         | 
| 191 204 | 
             
                return self;
         | 
| 192 205 | 
             
            }
         | 
| 193 206 |  | 
| 194 207 | 
             
            static VALUE
         | 
| 195 | 
            -
             | 
| 208 | 
            +
            rg_scroll_to_cell(VALUE self, VALUE path, VALUE column, VALUE use_align, VALUE row_align, VALUE col_align)
         | 
| 196 209 | 
             
            {
         | 
| 197 210 | 
             
                gtk_tree_view_scroll_to_cell(_SELF(self),
         | 
| 198 211 | 
             
                                             NIL_P(path) ? NULL : RVAL2GTKTREEPATH(path),
         | 
| @@ -203,7 +216,7 @@ treeview_scroll_to_cell(VALUE self, VALUE path, VALUE column, VALUE use_align, V | |
| 203 216 | 
             
            }
         | 
| 204 217 |  | 
| 205 218 | 
             
            static VALUE
         | 
| 206 | 
            -
             | 
| 219 | 
            +
            rg_set_cursor(VALUE self, VALUE path, VALUE focus_column, VALUE start_editing)
         | 
| 207 220 | 
             
            {
         | 
| 208 221 | 
             
                gtk_tree_view_set_cursor(_SELF(self), RVAL2GTKTREEPATH(path),
         | 
| 209 222 | 
             
                                         NIL_P(focus_column) ? NULL : TREEVIEW_COL(focus_column), 
         | 
| @@ -212,7 +225,7 @@ treeview_set_cursor(VALUE self, VALUE path, VALUE focus_column, VALUE start_edit | |
| 212 225 | 
             
            }
         | 
| 213 226 |  | 
| 214 227 | 
             
            static VALUE
         | 
| 215 | 
            -
             | 
| 228 | 
            +
            rg_cursor(VALUE self)
         | 
| 216 229 | 
             
            {
         | 
| 217 230 | 
             
                GtkTreePath* path;
         | 
| 218 231 | 
             
                GtkTreeViewColumn* focus_column;
         | 
| @@ -222,28 +235,22 @@ treeview_get_cursor(VALUE self) | |
| 222 235 | 
             
                                   GOBJ2RVAL(focus_column));
         | 
| 223 236 | 
             
            }
         | 
| 224 237 |  | 
| 225 | 
            -
            /* Defined as Signals
         | 
| 226 | 
            -
            void                gtk_tree_view_row_activated         (GtkTreeView *tree_view,
         | 
| 227 | 
            -
                                                                     GtkTreePath *path,
         | 
| 228 | 
            -
                                                                     GtkTreeViewColumn *column);
         | 
| 229 | 
            -
            */
         | 
| 230 | 
            -
             | 
| 231 238 | 
             
            static VALUE
         | 
| 232 | 
            -
             | 
| 239 | 
            +
            rg_expand_all(VALUE self)
         | 
| 233 240 | 
             
            {
         | 
| 234 241 | 
             
                gtk_tree_view_expand_all(_SELF(self));
         | 
| 235 242 | 
             
                return self;
         | 
| 236 243 | 
             
            }
         | 
| 237 244 |  | 
| 238 245 | 
             
            static VALUE
         | 
| 239 | 
            -
             | 
| 246 | 
            +
            rg_collapse_all(VALUE self)
         | 
| 240 247 | 
             
            {
         | 
| 241 248 | 
             
                gtk_tree_view_collapse_all(_SELF(self));
         | 
| 242 249 | 
             
                return self;
         | 
| 243 250 | 
             
            }
         | 
| 244 251 |  | 
| 245 252 | 
             
            static VALUE
         | 
| 246 | 
            -
             | 
| 253 | 
            +
            rg_expand_row(VALUE self, VALUE path, VALUE open_all)
         | 
| 247 254 | 
             
            {
         | 
| 248 255 | 
             
                return CBOOL2RVAL(gtk_tree_view_expand_row(_SELF(self), 
         | 
| 249 256 | 
             
                                                           RVAL2GTKTREEPATH(path),
         | 
| @@ -252,7 +259,7 @@ treeview_expand_row(VALUE self, VALUE path, VALUE open_all) | |
| 252 259 |  | 
| 253 260 | 
             
            #if GTK_CHECK_VERSION(2,2,0)
         | 
| 254 261 | 
             
            static VALUE
         | 
| 255 | 
            -
             | 
| 262 | 
            +
            rg_expand_to_path(VALUE self, VALUE path)
         | 
| 256 263 | 
             
            {
         | 
| 257 264 | 
             
                gtk_tree_view_expand_to_path(_SELF(self), RVAL2GTKTREEPATH(path));
         | 
| 258 265 | 
             
                return self;
         | 
| @@ -260,7 +267,7 @@ treeview_expand_to_path(VALUE self, VALUE path) | |
| 260 267 | 
             
            #endif
         | 
| 261 268 |  | 
| 262 269 | 
             
            static VALUE
         | 
| 263 | 
            -
             | 
| 270 | 
            +
            rg_collapse_row(VALUE self, VALUE path)
         | 
| 264 271 | 
             
            {
         | 
| 265 272 | 
             
                return CBOOL2RVAL(gtk_tree_view_collapse_row(_SELF(self), 
         | 
| 266 273 | 
             
                                                             RVAL2GTKTREEPATH(path)));
         | 
| @@ -274,7 +281,7 @@ mapping_func(GtkTreeView *treeview, GtkTreePath *path, gpointer func) | |
| 274 281 | 
             
            }
         | 
| 275 282 |  | 
| 276 283 | 
             
            static VALUE
         | 
| 277 | 
            -
             | 
| 284 | 
            +
            rg_map_expanded_rows(VALUE self)
         | 
| 278 285 | 
             
            {
         | 
| 279 286 | 
             
                VALUE func = rb_block_proc();
         | 
| 280 287 | 
             
                G_RELATIVE(self, func);
         | 
| @@ -285,14 +292,14 @@ treeview_map_expanded_rows(VALUE self) | |
| 285 292 | 
             
            }
         | 
| 286 293 |  | 
| 287 294 | 
             
            static VALUE
         | 
| 288 | 
            -
             | 
| 295 | 
            +
            rg_row_expanded_p(VALUE self, VALUE path)
         | 
| 289 296 | 
             
            {
         | 
| 290 297 | 
             
                return CBOOL2RVAL(gtk_tree_view_row_expanded(_SELF(self), 
         | 
| 291 298 | 
             
                                                             RVAL2GTKTREEPATH(path)));
         | 
| 292 299 | 
             
            }
         | 
| 293 300 |  | 
| 294 301 | 
             
            static VALUE
         | 
| 295 | 
            -
             | 
| 302 | 
            +
            rg_get_path_at_pos(VALUE self, VALUE x, VALUE y)
         | 
| 296 303 | 
             
            {
         | 
| 297 304 | 
             
                GtkTreePath* path;
         | 
| 298 305 | 
             
                GtkTreeViewColumn* column;
         | 
| @@ -309,7 +316,7 @@ treeview_get_path_at_pos(VALUE self, VALUE x, VALUE y) | |
| 309 316 | 
             
            }
         | 
| 310 317 |  | 
| 311 318 | 
             
            static VALUE
         | 
| 312 | 
            -
             | 
| 319 | 
            +
            rg_get_cell_area(VALUE self, VALUE path, VALUE column)
         | 
| 313 320 | 
             
            {
         | 
| 314 321 | 
             
                GdkRectangle rect;
         | 
| 315 322 | 
             
                gtk_tree_view_get_cell_area(_SELF(self), 
         | 
| @@ -320,7 +327,7 @@ treeview_get_cell_area(VALUE self, VALUE path, VALUE column) | |
| 320 327 | 
             
            }
         | 
| 321 328 |  | 
| 322 329 | 
             
            static VALUE
         | 
| 323 | 
            -
             | 
| 330 | 
            +
            rg_get_background_area(VALUE self, VALUE path, VALUE column)
         | 
| 324 331 | 
             
            {
         | 
| 325 332 | 
             
                GdkRectangle rect;
         | 
| 326 333 | 
             
                gtk_tree_view_get_background_area(_SELF(self), 
         | 
| @@ -331,7 +338,7 @@ treeview_get_background_area(VALUE self, VALUE path, VALUE column) | |
| 331 338 | 
             
            }
         | 
| 332 339 |  | 
| 333 340 | 
             
            static VALUE
         | 
| 334 | 
            -
             | 
| 341 | 
            +
            rg_visible_rect(VALUE self)
         | 
| 335 342 | 
             
            {
         | 
| 336 343 | 
             
                GdkRectangle rect;
         | 
| 337 344 | 
             
                gtk_tree_view_get_visible_rect(_SELF(self), &rect);
         | 
| @@ -340,7 +347,7 @@ treeview_get_visible_rect(VALUE self) | |
| 340 347 |  | 
| 341 348 | 
             
            #if GTK_CHECK_VERSION(2,8,0)
         | 
| 342 349 | 
             
            static VALUE
         | 
| 343 | 
            -
             | 
| 350 | 
            +
            rg_visible_range(VALUE self)
         | 
| 344 351 | 
             
            {
         | 
| 345 352 | 
             
                GtkTreePath* start_path;
         | 
| 346 353 | 
             
                GtkTreePath* end_path;
         | 
| @@ -353,13 +360,13 @@ treeview_get_visible_range(VALUE self) | |
| 353 360 | 
             
            #endif
         | 
| 354 361 |  | 
| 355 362 | 
             
            static VALUE
         | 
| 356 | 
            -
             | 
| 363 | 
            +
            rg_bin_window(VALUE self)
         | 
| 357 364 | 
             
            {
         | 
| 358 365 | 
             
                return GOBJ2RVAL(gtk_tree_view_get_bin_window(_SELF(self)));
         | 
| 359 366 | 
             
            }
         | 
| 360 367 |  | 
| 361 368 | 
             
            static VALUE
         | 
| 362 | 
            -
             | 
| 369 | 
            +
            rg_widget_to_tree_coords(VALUE self, VALUE wx, VALUE wy)
         | 
| 363 370 | 
             
            {
         | 
| 364 371 | 
             
                gint tx, ty;
         | 
| 365 372 | 
             
                gtk_tree_view_widget_to_tree_coords(_SELF(self), 
         | 
| @@ -369,7 +376,7 @@ treeview_widget_to_tree_coords(VALUE self, VALUE wx, VALUE wy) | |
| 369 376 | 
             
            }
         | 
| 370 377 |  | 
| 371 378 | 
             
            static VALUE
         | 
| 372 | 
            -
             | 
| 379 | 
            +
            rg_tree_to_widget_coords(VALUE self, VALUE tx, VALUE ty)
         | 
| 373 380 | 
             
            {
         | 
| 374 381 | 
             
                gint wx, wy;
         | 
| 375 382 | 
             
                gtk_tree_view_tree_to_widget_coords(_SELF(self),
         | 
| @@ -380,7 +387,7 @@ treeview_tree_to_widget_coords(VALUE self, VALUE tx, VALUE ty) | |
| 380 387 |  | 
| 381 388 | 
             
            #if GTK_CHECK_VERSION(2,12,0)
         | 
| 382 389 | 
             
            static VALUE
         | 
| 383 | 
            -
             | 
| 390 | 
            +
            rg_convert_bin_window_to_tree_coords(VALUE self, VALUE bx, VALUE by)
         | 
| 384 391 | 
             
            {
         | 
| 385 392 | 
             
                gint tx, ty;
         | 
| 386 393 | 
             
                gtk_tree_view_convert_bin_window_to_tree_coords(_SELF(self),
         | 
| @@ -389,7 +396,7 @@ treeview_convert_bin_window_to_tree_coords(VALUE self, VALUE bx, VALUE by) | |
| 389 396 | 
             
                return rb_ary_new3(2, INT2NUM(tx), INT2NUM(ty));
         | 
| 390 397 | 
             
            }
         | 
| 391 398 | 
             
            static VALUE
         | 
| 392 | 
            -
             | 
| 399 | 
            +
            rg_convert_bin_window_to_widget_coords(VALUE self, VALUE bx, VALUE by)
         | 
| 393 400 | 
             
            {
         | 
| 394 401 | 
             
                gint wx, wy;
         | 
| 395 402 | 
             
                gtk_tree_view_convert_bin_window_to_widget_coords(_SELF(self),
         | 
| @@ -399,7 +406,7 @@ treeview_convert_bin_window_to_widget_coords(VALUE self, VALUE bx, VALUE by) | |
| 399 406 | 
             
            }
         | 
| 400 407 |  | 
| 401 408 | 
             
            static VALUE
         | 
| 402 | 
            -
             | 
| 409 | 
            +
            rg_convert_tree_to_bin_window_coords(VALUE self, VALUE tx, VALUE ty)
         | 
| 403 410 | 
             
            {
         | 
| 404 411 | 
             
                gint bx, by;
         | 
| 405 412 | 
             
                gtk_tree_view_convert_tree_to_bin_window_coords(_SELF(self),
         | 
| @@ -408,7 +415,7 @@ treeview_convert_tree_to_bin_window_coords(VALUE self, VALUE tx, VALUE ty) | |
| 408 415 | 
             
                return rb_ary_new3(2, INT2NUM(bx), INT2NUM(by));
         | 
| 409 416 | 
             
            }
         | 
| 410 417 | 
             
            static VALUE
         | 
| 411 | 
            -
             | 
| 418 | 
            +
            rg_convert_tree_to_widget_coords(VALUE self, VALUE tx, VALUE ty)
         | 
| 412 419 | 
             
            {
         | 
| 413 420 | 
             
                gint wx, wy;
         | 
| 414 421 | 
             
                gtk_tree_view_convert_tree_to_widget_coords(_SELF(self),
         | 
| @@ -418,7 +425,7 @@ treeview_convert_tree_to_widget_coords(VALUE self, VALUE tx, VALUE ty) | |
| 418 425 | 
             
            }
         | 
| 419 426 |  | 
| 420 427 | 
             
            static VALUE
         | 
| 421 | 
            -
             | 
| 428 | 
            +
            rg_convert_widget_to_bin_window_coords(VALUE self, VALUE wx, VALUE wy)
         | 
| 422 429 | 
             
            {
         | 
| 423 430 | 
             
                gint bx, by;
         | 
| 424 431 | 
             
                gtk_tree_view_convert_widget_to_bin_window_coords(_SELF(self),
         | 
| @@ -427,7 +434,7 @@ treeview_convert_widget_to_bin_window_coords(VALUE self, VALUE wx, VALUE wy) | |
| 427 434 | 
             
                return rb_ary_new3(2, INT2NUM(bx), INT2NUM(by));
         | 
| 428 435 | 
             
            }
         | 
| 429 436 | 
             
            static VALUE
         | 
| 430 | 
            -
             | 
| 437 | 
            +
            rg_convert_widget_to_tree_coords(VALUE self, VALUE wx, VALUE wy)
         | 
| 431 438 | 
             
            {
         | 
| 432 439 | 
             
                gint tx, ty;
         | 
| 433 440 | 
             
                gtk_tree_view_convert_widget_to_tree_coords(_SELF(self),
         | 
| @@ -438,47 +445,55 @@ treeview_convert_widget_to_tree_coords(VALUE self, VALUE wx, VALUE wy) | |
| 438 445 | 
             
            #endif
         | 
| 439 446 |  | 
| 440 447 | 
             
            static VALUE
         | 
| 441 | 
            -
             | 
| 448 | 
            +
            rg_enable_model_drag_dest(VALUE self, VALUE rbtargets, VALUE rbactions)
         | 
| 442 449 | 
             
            {
         | 
| 443 | 
            -
                 | 
| 444 | 
            -
                 | 
| 450 | 
            +
                GtkTreeView *view = _SELF(self);
         | 
| 451 | 
            +
                GdkDragAction actions = RVAL2GFLAGS(rbactions, GDK_TYPE_DRAG_ACTION);
         | 
| 452 | 
            +
                long n;
         | 
| 453 | 
            +
                GtkTargetEntry *targets = RVAL2GTKTARGETENTRIES(rbtargets, &n);
         | 
| 454 | 
            +
             | 
| 455 | 
            +
                gtk_tree_view_enable_model_drag_dest(view, targets, n, actions);
         | 
| 456 | 
            +
             | 
| 457 | 
            +
                g_free(targets);
         | 
| 445 458 |  | 
| 446 | 
            -
                gtk_tree_view_enable_model_drag_dest(_SELF(self),  entries, 
         | 
| 447 | 
            -
                                                     num, RVAL2GFLAGS(actions, GDK_TYPE_DRAG_ACTION));
         | 
| 448 459 | 
             
                return self;
         | 
| 449 460 | 
             
            }
         | 
| 450 461 |  | 
| 451 462 | 
             
            static VALUE
         | 
| 452 | 
            -
             | 
| 463 | 
            +
            rg_enable_model_drag_source(VALUE self, VALUE rbstart_button_mask, VALUE rbtargets, VALUE rbactions)
         | 
| 453 464 | 
             
            {
         | 
| 454 | 
            -
                 | 
| 455 | 
            -
                 | 
| 456 | 
            -
             | 
| 457 | 
            -
             | 
| 458 | 
            -
             | 
| 459 | 
            -
             | 
| 460 | 
            -
             | 
| 461 | 
            -
             | 
| 462 | 
            -
             | 
| 465 | 
            +
                GtkTreeView *view = _SELF(self);
         | 
| 466 | 
            +
                GdkModifierType start_button_mask = RVAL2GFLAGS(rbstart_button_mask, GDK_TYPE_MODIFIER_TYPE);
         | 
| 467 | 
            +
                GdkDragAction actions = RVAL2GFLAGS(rbactions, GDK_TYPE_DRAG_ACTION);
         | 
| 468 | 
            +
                long n;
         | 
| 469 | 
            +
                GtkTargetEntry *targets = RVAL2GTKTARGETENTRIES_ACCEPT_NIL(rbtargets, &n);
         | 
| 470 | 
            +
             | 
| 471 | 
            +
                if (targets == NULL)
         | 
| 472 | 
            +
                    return self;
         | 
| 473 | 
            +
             | 
| 474 | 
            +
                gtk_tree_view_enable_model_drag_source(view, start_button_mask, targets, n, actions);
         | 
| 475 | 
            +
             | 
| 476 | 
            +
                g_free(targets);
         | 
| 477 | 
            +
             | 
| 463 478 | 
             
                return self;
         | 
| 464 479 | 
             
            }
         | 
| 465 480 |  | 
| 466 481 | 
             
            static VALUE
         | 
| 467 | 
            -
             | 
| 482 | 
            +
            rg_unset_rows_drag_source(VALUE self)
         | 
| 468 483 | 
             
            {
         | 
| 469 484 | 
             
                gtk_tree_view_unset_rows_drag_source(_SELF(self));
         | 
| 470 485 | 
             
                return self;
         | 
| 471 486 | 
             
            }
         | 
| 472 487 |  | 
| 473 488 | 
             
            static VALUE
         | 
| 474 | 
            -
             | 
| 489 | 
            +
            rg_unset_rows_drag_dest(VALUE self)
         | 
| 475 490 | 
             
            {
         | 
| 476 491 | 
             
                gtk_tree_view_unset_rows_drag_dest(_SELF(self));
         | 
| 477 492 | 
             
                return self;
         | 
| 478 493 | 
             
            }
         | 
| 479 494 |  | 
| 480 495 | 
             
            static VALUE
         | 
| 481 | 
            -
             | 
| 496 | 
            +
            rg_set_drag_dest_row(VALUE self, VALUE path, VALUE pos)
         | 
| 482 497 | 
             
            {
         | 
| 483 498 | 
             
                gtk_tree_view_set_drag_dest_row(_SELF(self), 
         | 
| 484 499 | 
             
                                                NIL_P(path)?NULL:RVAL2GTKTREEPATH(path),
         | 
| @@ -487,7 +502,7 @@ treeview_set_drag_dest_row(VALUE self, VALUE path, VALUE pos) | |
| 487 502 | 
             
            }
         | 
| 488 503 |  | 
| 489 504 | 
             
            static VALUE
         | 
| 490 | 
            -
             | 
| 505 | 
            +
            rg_drag_dest_row(VALUE self)
         | 
| 491 506 | 
             
            {
         | 
| 492 507 | 
             
                GtkTreePath* path = NULL;
         | 
| 493 508 | 
             
                GtkTreeViewDropPosition pos;
         | 
| @@ -497,7 +512,7 @@ treeview_get_drag_dest_row(VALUE self) | |
| 497 512 | 
             
            }
         | 
| 498 513 |  | 
| 499 514 | 
             
            static VALUE
         | 
| 500 | 
            -
             | 
| 515 | 
            +
            rg_get_dest_row_at_pos(VALUE self, VALUE drag_x, VALUE drag_y)
         | 
| 501 516 | 
             
            {
         | 
| 502 517 | 
             
                GtkTreePath* path;
         | 
| 503 518 | 
             
                GtkTreeViewDropPosition pos;
         | 
| @@ -511,7 +526,7 @@ treeview_get_dest_row_at_pos(VALUE self, VALUE drag_x, VALUE drag_y) | |
| 511 526 | 
             
            }
         | 
| 512 527 |  | 
| 513 528 | 
             
            static VALUE
         | 
| 514 | 
            -
             | 
| 529 | 
            +
            rg_create_row_drag_icon(VALUE self, VALUE path)
         | 
| 515 530 | 
             
            {
         | 
| 516 531 | 
             
                return GOBJ2RVAL(gtk_tree_view_create_row_drag_icon(_SELF(self),
         | 
| 517 532 | 
             
                                                                    RVAL2GTKTREEPATH(path)));
         | 
| @@ -533,7 +548,7 @@ search_equal_func(GtkTreeModel *model, gint column, const gchar *key, GtkTreeIte | |
| 533 548 | 
             
            }
         | 
| 534 549 |  | 
| 535 550 | 
             
            static VALUE
         | 
| 536 | 
            -
             | 
| 551 | 
            +
            rg_set_search_equal_func(VALUE self)
         | 
| 537 552 | 
             
            {
         | 
| 538 553 | 
             
                VALUE func = rb_block_proc();
         | 
| 539 554 | 
             
                G_RELATIVE(self, func);
         | 
| @@ -543,13 +558,11 @@ treeview_set_search_equal_func(VALUE self) | |
| 543 558 | 
             
                return self;
         | 
| 544 559 | 
             
            }
         | 
| 545 560 |  | 
| 546 | 
            -
             | 
| 547 | 
            -
             | 
| 548 561 | 
             
            /*
         | 
| 549 562 | 
             
             * Optional Signals
         | 
| 550 563 | 
             
             */
         | 
| 551 564 | 
             
            static VALUE
         | 
| 552 | 
            -
            treeview_signal_func(guint num, const GValue *values)
         | 
| 565 | 
            +
            treeview_signal_func(G_GNUC_UNUSED guint num, const GValue *values)
         | 
| 553 566 | 
             
            {
         | 
| 554 567 | 
             
                GtkTreeView* view = g_value_get_object(&values[0]);
         | 
| 555 568 | 
             
                GtkTreeIter* iter = g_value_get_boxed(&values[1]);
         | 
| @@ -560,7 +573,7 @@ treeview_signal_func(guint num, const GValue *values) | |
| 560 573 |  | 
| 561 574 | 
             
            #if GTK_CHECK_VERSION(2,2,0)
         | 
| 562 575 | 
             
            static VALUE
         | 
| 563 | 
            -
             | 
| 576 | 
            +
            rg_set_cursor_on_cell(VALUE self, VALUE path, VALUE focus_column, VALUE focus_cell, VALUE start_editing)
         | 
| 564 577 | 
             
            {
         | 
| 565 578 | 
             
                gtk_tree_view_set_cursor_on_cell(_SELF(self), RVAL2GTKTREEPATH(path),
         | 
| 566 579 | 
             
                                                 NIL_P(focus_column) ? NULL : TREEVIEW_COL(focus_column), 
         | 
| @@ -570,22 +583,6 @@ treeview_set_cursor_on_cell(VALUE self, VALUE path, VALUE focus_column, VALUE fo | |
| 570 583 | 
             
            }
         | 
| 571 584 | 
             
            #endif
         | 
| 572 585 |  | 
| 573 | 
            -
            /* Defined as Property.
         | 
| 574 | 
            -
            gboolean    gtk_tree_view_get_fixed_height_mode
         | 
| 575 | 
            -
                                                        (GtkTreeView *tree_view);
         | 
| 576 | 
            -
            void        gtk_tree_view_set_fixed_height_mode
         | 
| 577 | 
            -
                                                        (GtkTreeView *tree_view,
         | 
| 578 | 
            -
                                                         gboolean enable);
         | 
| 579 | 
            -
            gboolean    gtk_tree_view_get_hover_selection
         | 
| 580 | 
            -
                                                        (GtkTreeView *tree_view);
         | 
| 581 | 
            -
            void        gtk_tree_view_set_hover_selection
         | 
| 582 | 
            -
                                                        (GtkTreeView *tree_view,
         | 
| 583 | 
            -
                                                         gboolean hover);
         | 
| 584 | 
            -
            gboolean    gtk_tree_view_get_hover_expand  (GtkTreeView *tree_view);
         | 
| 585 | 
            -
            void        gtk_tree_view_set_hover_expand  (GtkTreeView *tree_view,
         | 
| 586 | 
            -
                                                         gboolean expand);
         | 
| 587 | 
            -
            */
         | 
| 588 | 
            -
             | 
| 589 586 | 
             
            /* How can I implement this?
         | 
| 590 587 | 
             
            GtkTreeViewRowSeparatorFunc gtk_tree_view_get_row_separator_func
         | 
| 591 588 | 
             
                                                        (GtkTreeView *tree_view);
         | 
| @@ -603,7 +600,7 @@ row_separator_func(GtkTreeModel *model, GtkTreeIter *iter, gpointer func) | |
| 603 600 | 
             
            }
         | 
| 604 601 |  | 
| 605 602 | 
             
            static VALUE
         | 
| 606 | 
            -
             | 
| 603 | 
            +
            rg_set_row_separator_func(VALUE self)
         | 
| 607 604 | 
             
            {
         | 
| 608 605 | 
             
                VALUE func = rb_block_proc();
         | 
| 609 606 |  | 
| @@ -618,13 +615,13 @@ treeview_set_row_separator_func(VALUE self) | |
| 618 615 |  | 
| 619 616 | 
             
            #if GTK_CHECK_VERSION(2,10,0)
         | 
| 620 617 | 
             
            static VALUE
         | 
| 621 | 
            -
             | 
| 618 | 
            +
            rg_search_entry(VALUE self)
         | 
| 622 619 | 
             
            {
         | 
| 623 620 | 
             
                return GOBJ2RVAL(gtk_tree_view_get_search_entry(_SELF(self)));
         | 
| 624 621 | 
             
            }
         | 
| 625 622 |  | 
| 626 623 | 
             
            static VALUE
         | 
| 627 | 
            -
             | 
| 624 | 
            +
            rg_set_search_entry(VALUE self, VALUE entry)
         | 
| 628 625 | 
             
            {
         | 
| 629 626 | 
             
                gtk_tree_view_set_search_entry(_SELF(self), RVAL2GOBJ(entry));
         | 
| 630 627 | 
             
                return self;
         | 
| @@ -667,9 +664,8 @@ remove_callback_reference(gpointer data) | |
| 667 664 | 
             
                G_CHILD_REMOVE(mGtk, (VALUE)data);
         | 
| 668 665 | 
             
            }
         | 
| 669 666 |  | 
| 670 | 
            -
             | 
| 671 667 | 
             
            static VALUE
         | 
| 672 | 
            -
             | 
| 668 | 
            +
            rg_set_search_position_func(VALUE self)
         | 
| 673 669 | 
             
            {
         | 
| 674 670 | 
             
                VALUE func = rb_block_proc();
         | 
| 675 671 | 
             
                G_CHILD_ADD(mGtk, func);
         | 
| @@ -681,118 +677,94 @@ treeview_set_search_position_func(VALUE self) | |
| 681 677 | 
             
            }
         | 
| 682 678 |  | 
| 683 679 | 
             
            #endif
         | 
| 684 | 
            -
            /* Defined as properties
         | 
| 685 | 
            -
            gboolean    gtk_tree_view_get_headers_clickable
         | 
| 686 | 
            -
                                                        (GtkTreeView *tree_view);
         | 
| 687 | 
            -
            void        gtk_tree_view_set_headers_clickable
         | 
| 688 | 
            -
                                                        (GtkTreeView *tree_view,
         | 
| 689 | 
            -
                                                         gboolean setting);
         | 
| 690 | 
            -
            gboolean    gtk_tree_view_get_rubber_banding
         | 
| 691 | 
            -
                                                        (GtkTreeView *tree_view);
         | 
| 692 | 
            -
            void        gtk_tree_view_set_rubber_banding
         | 
| 693 | 
            -
                                                        (GtkTreeView *tree_view,
         | 
| 694 | 
            -
                                                         gboolean enable);
         | 
| 695 | 
            -
            gboolean    gtk_tree_view_get_enable_tree_lines
         | 
| 696 | 
            -
                                                        (GtkTreeView *tree_view);
         | 
| 697 | 
            -
            void        gtk_tree_view_set_enable_tree_lines
         | 
| 698 | 
            -
                                                        (GtkTreeView *tree_view,
         | 
| 699 | 
            -
                                                         gboolean enabled);
         | 
| 700 | 
            -
             | 
| 701 | 
            -
            // Use Gtk::TreeView#enable_grid_lines, #set_enable_grid_lines instead.
         | 
| 702 | 
            -
            GtkTreeViewGridLines gtk_tree_view_get_grid_lines
         | 
| 703 | 
            -
                                                        (GtkTreeView *tree_view);
         | 
| 704 | 
            -
             | 
| 705 | 
            -
            void        gtk_tree_view_set_grid_lines    (GtkTreeView *tree_view,
         | 
| 706 | 
            -
                                                         GtkTreeViewGridLines grid_lines);
         | 
| 707 | 
            -
            */
         | 
| 708 680 |  | 
| 709 681 | 
             
            void 
         | 
| 710 | 
            -
            Init_gtk_treeview()
         | 
| 682 | 
            +
            Init_gtk_treeview(VALUE mGtk)
         | 
| 711 683 | 
             
            {
         | 
| 712 | 
            -
                VALUE  | 
| 684 | 
            +
                VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_TREE_VIEW, "TreeView", mGtk);
         | 
| 713 685 |  | 
| 714 686 | 
             
                id_selection = rb_intern("selection");
         | 
| 715 687 | 
             
                id_model = rb_intern("model");
         | 
| 716 688 |  | 
| 717 | 
            -
                 | 
| 718 | 
            -
                 | 
| 719 | 
            -
                 | 
| 720 | 
            -
                 | 
| 721 | 
            -
                 | 
| 722 | 
            -
                 | 
| 723 | 
            -
                 | 
| 724 | 
            -
                 | 
| 725 | 
            -
                 | 
| 726 | 
            -
                 | 
| 727 | 
            -
                 | 
| 728 | 
            -
                 | 
| 729 | 
            -
                 | 
| 730 | 
            -
                 | 
| 731 | 
            -
                 | 
| 732 | 
            -
                 | 
| 733 | 
            -
                 | 
| 734 | 
            -
                 | 
| 689 | 
            +
                RG_DEF_METHOD(initialize, -1);
         | 
| 690 | 
            +
                RG_DEF_METHOD(selection, 0);
         | 
| 691 | 
            +
                RG_DEF_METHOD(columns_autosize, 0);
         | 
| 692 | 
            +
                RG_DEF_METHOD(append_column, 1);
         | 
| 693 | 
            +
                RG_DEF_METHOD(remove_column, 1);
         | 
| 694 | 
            +
                RG_DEF_METHOD(insert_column, -1);
         | 
| 695 | 
            +
                RG_DEF_METHOD(get_column, 1);
         | 
| 696 | 
            +
                RG_DEF_METHOD(columns, 0);
         | 
| 697 | 
            +
                RG_DEF_METHOD(move_column_after, 2);
         | 
| 698 | 
            +
                RG_DEF_METHOD(set_column_drag_function, 0);
         | 
| 699 | 
            +
                RG_DEF_METHOD(scroll_to_point, 2);
         | 
| 700 | 
            +
                RG_DEF_METHOD(scroll_to_cell, 5);
         | 
| 701 | 
            +
                RG_DEF_METHOD(set_cursor, 3);
         | 
| 702 | 
            +
                RG_DEF_METHOD(cursor, 0);
         | 
| 703 | 
            +
                RG_DEF_METHOD(expand_all, 0);
         | 
| 704 | 
            +
                RG_DEF_METHOD(collapse_all, 0);
         | 
| 705 | 
            +
                RG_DEF_METHOD(expand_row, 2);
         | 
| 706 | 
            +
                RG_DEF_METHOD(collapse_row, 1);
         | 
| 735 707 | 
             
            #if GTK_CHECK_VERSION(2,2,0)
         | 
| 736 | 
            -
                 | 
| 708 | 
            +
                RG_DEF_METHOD(expand_to_path, 1);
         | 
| 737 709 | 
             
            #endif
         | 
| 738 | 
            -
                 | 
| 739 | 
            -
                 | 
| 740 | 
            -
                 | 
| 741 | 
            -
                 | 
| 742 | 
            -
                 | 
| 743 | 
            -
                 | 
| 744 | 
            -
                 | 
| 710 | 
            +
                RG_DEF_METHOD(map_expanded_rows, 0);
         | 
| 711 | 
            +
                RG_DEF_METHOD_P(row_expanded, 1);
         | 
| 712 | 
            +
                RG_DEF_METHOD(get_path_at_pos, 2);
         | 
| 713 | 
            +
                RG_DEF_ALIAS("get_path", "get_path_at_pos");
         | 
| 714 | 
            +
                RG_DEF_METHOD(get_cell_area, 2);
         | 
| 715 | 
            +
                RG_DEF_METHOD(get_background_area, 2);
         | 
| 716 | 
            +
                RG_DEF_METHOD(visible_rect, 0);
         | 
| 745 717 | 
             
            #if GTK_CHECK_VERSION(2,8,0)
         | 
| 746 | 
            -
                 | 
| 718 | 
            +
                RG_DEF_METHOD(visible_range, 0);
         | 
| 747 719 | 
             
            #endif
         | 
| 748 720 |  | 
| 749 | 
            -
                 | 
| 750 | 
            -
                 | 
| 751 | 
            -
                 | 
| 721 | 
            +
                RG_DEF_METHOD(bin_window, 0);
         | 
| 722 | 
            +
                RG_DEF_METHOD(widget_to_tree_coords, 2);
         | 
| 723 | 
            +
                RG_DEF_METHOD(tree_to_widget_coords, 2);
         | 
| 752 724 | 
             
            #if GTK_CHECK_VERSION(2,12,0)
         | 
| 753 | 
            -
                 | 
| 754 | 
            -
                 | 
| 755 | 
            -
                 | 
| 756 | 
            -
                 | 
| 757 | 
            -
                 | 
| 758 | 
            -
                 | 
| 725 | 
            +
                RG_DEF_METHOD(convert_bin_window_to_tree_coords, 2);
         | 
| 726 | 
            +
                RG_DEF_METHOD(convert_bin_window_to_widget_coords, 2);
         | 
| 727 | 
            +
                RG_DEF_METHOD(convert_tree_to_bin_window_coords, 2);
         | 
| 728 | 
            +
                RG_DEF_METHOD(convert_tree_to_widget_coords, 2);
         | 
| 729 | 
            +
                RG_DEF_METHOD(convert_widget_to_bin_window_coords, 2);
         | 
| 730 | 
            +
                RG_DEF_METHOD(convert_widget_to_tree_coords, 2);
         | 
| 759 731 | 
             
            #endif
         | 
| 760 | 
            -
                 | 
| 761 | 
            -
                 | 
| 762 | 
            -
                 | 
| 763 | 
            -
                 | 
| 764 | 
            -
                 | 
| 765 | 
            -
                 | 
| 766 | 
            -
                 | 
| 767 | 
            -
                 | 
| 768 | 
            -
                 | 
| 769 | 
            -
                 | 
| 732 | 
            +
                RG_DEF_METHOD(enable_model_drag_dest, 2);
         | 
| 733 | 
            +
                RG_DEF_METHOD(enable_model_drag_source, 3);
         | 
| 734 | 
            +
                RG_DEF_METHOD(unset_rows_drag_source, 0);
         | 
| 735 | 
            +
                RG_DEF_METHOD(unset_rows_drag_dest, 0);
         | 
| 736 | 
            +
                RG_DEF_METHOD(set_drag_dest_row, 2);
         | 
| 737 | 
            +
                RG_DEF_METHOD(drag_dest_row, 0);
         | 
| 738 | 
            +
                RG_DEF_METHOD(get_dest_row_at_pos, 2);
         | 
| 739 | 
            +
                RG_DEF_ALIAS("get_dest_row", "get_dest_row_at_pos");
         | 
| 740 | 
            +
                RG_DEF_METHOD(create_row_drag_icon, 1);
         | 
| 741 | 
            +
                RG_DEF_METHOD(set_search_equal_func, 0);
         | 
| 770 742 | 
             
            #if GTK_CHECK_VERSION(2,2,0)
         | 
| 771 | 
            -
                 | 
| 743 | 
            +
                RG_DEF_METHOD(set_cursor_on_cell, 4);
         | 
| 772 744 | 
             
            #endif
         | 
| 773 745 |  | 
| 774 746 | 
             
            #if GTK_CHECK_VERSION(2,6,0)
         | 
| 775 | 
            -
                 | 
| 747 | 
            +
                RG_DEF_METHOD(set_row_separator_func, 0);
         | 
| 776 748 | 
             
            #endif
         | 
| 777 749 | 
             
            #if GTK_CHECK_VERSION(2,10,0)
         | 
| 778 | 
            -
                 | 
| 779 | 
            -
                 | 
| 780 | 
            -
                 | 
| 750 | 
            +
                RG_DEF_METHOD(search_entry, 0);
         | 
| 751 | 
            +
                RG_DEF_METHOD(set_search_entry, 1);
         | 
| 752 | 
            +
                RG_DEF_METHOD(set_search_position_func, 0);
         | 
| 781 753 | 
             
            #endif
         | 
| 782 754 |  | 
| 783 755 | 
             
                /* Constants */
         | 
| 784 | 
            -
                G_DEF_CLASS(GTK_TYPE_TREE_VIEW_DROP_POSITION, "DropPosition",  | 
| 785 | 
            -
                G_DEF_CONSTANTS( | 
| 756 | 
            +
                G_DEF_CLASS(GTK_TYPE_TREE_VIEW_DROP_POSITION, "DropPosition", RG_TARGET_NAMESPACE);
         | 
| 757 | 
            +
                G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_TREE_VIEW_DROP_POSITION, "GTK_TREE_VIEW_");
         | 
| 786 758 |  | 
| 787 759 | 
             
            #if GTK_CHECK_VERSION(2,10,0)
         | 
| 788 760 | 
             
                /* GtkTreeViewGridLines */
         | 
| 789 | 
            -
                G_DEF_CLASS(GTK_TYPE_TREE_VIEW_GRID_LINES, "GridLines",  | 
| 790 | 
            -
                G_DEF_CONSTANTS( | 
| 761 | 
            +
                G_DEF_CLASS(GTK_TYPE_TREE_VIEW_GRID_LINES, "GridLines", RG_TARGET_NAMESPACE);
         | 
| 762 | 
            +
                G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_TREE_VIEW_GRID_LINES, "GTK_TREE_VIEW_");
         | 
| 791 763 | 
             
            #endif
         | 
| 792 764 |  | 
| 793 765 | 
             
                /* Option Signals */
         | 
| 794 | 
            -
                G_DEF_SIGNAL_FUNC( | 
| 795 | 
            -
                G_DEF_SIGNAL_FUNC( | 
| 796 | 
            -
                G_DEF_SIGNAL_FUNC( | 
| 797 | 
            -
                G_DEF_SIGNAL_FUNC( | 
| 766 | 
            +
                G_DEF_SIGNAL_FUNC(RG_TARGET_NAMESPACE, "row-collapsed", (GValToRValSignalFunc)treeview_signal_func);
         | 
| 767 | 
            +
                G_DEF_SIGNAL_FUNC(RG_TARGET_NAMESPACE, "row-expanded", (GValToRValSignalFunc)treeview_signal_func);
         | 
| 768 | 
            +
                G_DEF_SIGNAL_FUNC(RG_TARGET_NAMESPACE, "test-collapse-row", (GValToRValSignalFunc)treeview_signal_func);
         | 
| 769 | 
            +
                G_DEF_SIGNAL_FUNC(RG_TARGET_NAMESPACE, "test-expand-row", (GValToRValSignalFunc)treeview_signal_func);
         | 
| 798 770 | 
             
            }
         |