gtk3 0.0.1 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +32 -0
- data/ext/gtk3/conversions.c +34 -0
- data/ext/gtk3/depend +11 -0
- data/ext/gtk3/extconf.rb +108 -0
- data/ext/gtk3/gtk3.def +10 -0
- data/ext/gtk3/init.c +38 -0
- data/ext/gtk3/rbgdkdisplay.c +39 -0
- data/ext/gtk3/rbgdkdragcontext.c +108 -0
- data/ext/gtk3/rbgdkevent.c +38 -0
- data/ext/gtk3/rbgdkscreen.c +61 -0
- data/ext/gtk3/rbgtk.c +625 -0
- data/ext/gtk3/rbgtk3.h +57 -0
- data/ext/gtk3/rbgtk3conversions.h +347 -0
- data/ext/gtk3/rbgtk3private.h +282 -0
- data/ext/gtk3/rbgtk3util.c +67 -0
- data/ext/gtk3/rbgtk3util.h +32 -0
- data/ext/gtk3/rbgtkaboutdialog.c +117 -0
- data/ext/gtk3/rbgtkaccelerator.c +78 -0
- data/ext/gtk3/rbgtkaccelgroup.c +199 -0
- data/ext/gtk3/rbgtkaccelgroupentry.c +93 -0
- data/ext/gtk3/rbgtkaccelkey.c +119 -0
- data/ext/gtk3/rbgtkaccellabel.c +55 -0
- data/ext/gtk3/rbgtkaccelmap.c +135 -0
- data/ext/gtk3/rbgtkaccessible.c +56 -0
- data/ext/gtk3/rbgtkaction.c +205 -0
- data/ext/gtk3/rbgtkactiongroup.c +466 -0
- data/ext/gtk3/rbgtkactivatable.c +30 -0
- data/ext/gtk3/rbgtkadjustment.c +98 -0
- data/ext/gtk3/rbgtkalignment.c +75 -0
- data/ext/gtk3/rbgtkallocation.c +166 -0
- data/ext/gtk3/rbgtkappchooser.c +47 -0
- data/ext/gtk3/rbgtkappchooserbutton.c +70 -0
- data/ext/gtk3/rbgtkappchooserdialog.c +68 -0
- data/ext/gtk3/rbgtkappchooserwidget.c +40 -0
- data/ext/gtk3/rbgtkapplication.c +69 -0
- data/ext/gtk3/rbgtkarrow.c +56 -0
- data/ext/gtk3/rbgtkaspectframe.c +56 -0
- data/ext/gtk3/rbgtkassistant.c +218 -0
- data/ext/gtk3/rbgtkbin.c +42 -0
- data/ext/gtk3/rbgtkbindingset.c +164 -0
- data/ext/gtk3/rbgtkborder.c +119 -0
- data/ext/gtk3/rbgtkbox.c +146 -0
- data/ext/gtk3/rbgtkbuildable.c +96 -0
- data/ext/gtk3/rbgtkbuilder.c +166 -0
- data/ext/gtk3/rbgtkbutton.c +93 -0
- data/ext/gtk3/rbgtkbuttonbox.c +87 -0
- data/ext/gtk3/rbgtkcalendar.c +118 -0
- data/ext/gtk3/rbgtkcelleditable.c +57 -0
- data/ext/gtk3/rbgtkcelllayout.c +144 -0
- data/ext/gtk3/rbgtkcellrenderer.c +116 -0
- data/ext/gtk3/rbgtkcellrendereraccel.c +41 -0
- data/ext/gtk3/rbgtkcellrenderercombo.c +38 -0
- data/ext/gtk3/rbgtkcellrendererpixbuf.c +41 -0
- data/ext/gtk3/rbgtkcellrendererprogress.c +38 -0
- data/ext/gtk3/rbgtkcellrendererspin.c +39 -0
- data/ext/gtk3/rbgtkcellrendererspinner.c +38 -0
- data/ext/gtk3/rbgtkcellrenderertext.c +48 -0
- data/ext/gtk3/rbgtkcellrenderertoggle.c +39 -0
- data/ext/gtk3/rbgtkcellview.c +109 -0
- data/ext/gtk3/rbgtkcheckbutton.c +64 -0
- data/ext/gtk3/rbgtkcheckmenuitem.c +64 -0
- data/ext/gtk3/rbgtkclipboard.c +389 -0
- data/ext/gtk3/rbgtkcolorbutton.c +49 -0
- data/ext/gtk3/rbgtkcolorselection.c +219 -0
- data/ext/gtk3/rbgtkcolorselectiondialog.c +56 -0
- data/ext/gtk3/rbgtkcombobox.c +147 -0
- data/ext/gtk3/rbgtkcomboboxtext.c +138 -0
- data/ext/gtk3/rbgtkconst.c +79 -0
- data/ext/gtk3/rbgtkcontainer.c +784 -0
- data/ext/gtk3/rbgtkcssprovider.c +110 -0
- data/ext/gtk3/rbgtkdialog.c +186 -0
- data/ext/gtk3/rbgtkdrag.c +93 -0
- data/ext/gtk3/rbgtkdrawingarea.c +42 -0
- data/ext/gtk3/rbgtkeditable.c +149 -0
- data/ext/gtk3/rbgtkentry.c +198 -0
- data/ext/gtk3/rbgtkentrybuffer.c +87 -0
- data/ext/gtk3/rbgtkentrycompletion.c +122 -0
- data/ext/gtk3/rbgtkeventbox.c +42 -0
- data/ext/gtk3/rbgtkexpander.c +49 -0
- data/ext/gtk3/rbgtkfilechooser.c +384 -0
- data/ext/gtk3/rbgtkfilechooserbutton.c +50 -0
- data/ext/gtk3/rbgtkfilechooserdialog.c +62 -0
- data/ext/gtk3/rbgtkfilechooserwidget.c +40 -0
- data/ext/gtk3/rbgtkfilefilter.c +128 -0
- data/ext/gtk3/rbgtkfilesystemerror.c +48 -0
- data/ext/gtk3/rbgtkfixed.c +61 -0
- data/ext/gtk3/rbgtkfontbutton.c +49 -0
- data/ext/gtk3/rbgtkfontchooser.c +78 -0
- data/ext/gtk3/rbgtkfontchooserdialog.c +56 -0
- data/ext/gtk3/rbgtkfontchooserwidget.c +45 -0
- data/ext/gtk3/rbgtkframe.c +69 -0
- data/ext/gtk3/rbgtkgrid.c +105 -0
- data/ext/gtk3/rbgtkhandlebox.c +45 -0
- data/ext/gtk3/rbgtkhsv.c +102 -0
- data/ext/gtk3/rbgtkiconfactory.c +85 -0
- data/ext/gtk3/rbgtkiconinfo.c +115 -0
- data/ext/gtk3/rbgtkiconset.c +84 -0
- data/ext/gtk3/rbgtkiconsize.c +91 -0
- data/ext/gtk3/rbgtkiconsource.c +184 -0
- data/ext/gtk3/rbgtkicontheme.c +268 -0
- data/ext/gtk3/rbgtkiconview.c +270 -0
- data/ext/gtk3/rbgtkimage.c +96 -0
- data/ext/gtk3/rbgtkimagemenuitem.c +67 -0
- data/ext/gtk3/rbgtkimcontext.c +133 -0
- data/ext/gtk3/rbgtkimcontextsimple.c +69 -0
- data/ext/gtk3/rbgtkimmulticontext.c +48 -0
- data/ext/gtk3/rbgtkinfobar.c +121 -0
- data/ext/gtk3/rbgtkinvisible.c +49 -0
- data/ext/gtk3/rbgtklabel.c +139 -0
- data/ext/gtk3/rbgtklayout.c +93 -0
- data/ext/gtk3/rbgtklinkbutton.c +55 -0
- data/ext/gtk3/rbgtkliststore.c +408 -0
- data/ext/gtk3/rbgtklockbutton.c +50 -0
- data/ext/gtk3/rbgtkmenu.c +168 -0
- data/ext/gtk3/rbgtkmenubar.c +43 -0
- data/ext/gtk3/rbgtkmenuitem.c +95 -0
- data/ext/gtk3/rbgtkmenushell.c +106 -0
- data/ext/gtk3/rbgtkmenutoolbutton.c +81 -0
- data/ext/gtk3/rbgtkmessagedialog.c +74 -0
- data/ext/gtk3/rbgtkmisc.c +70 -0
- data/ext/gtk3/rbgtknotebook.c +383 -0
- data/ext/gtk3/rbgtknumerableicon.c +50 -0
- data/ext/gtk3/rbgtkorientable.c +27 -0
- data/ext/gtk3/rbgtkoverlay.c +53 -0
- data/ext/gtk3/rbgtkpagesetup.c +195 -0
- data/ext/gtk3/rbgtkpagesetupunixdialog.c +94 -0
- data/ext/gtk3/rbgtkpaned.c +114 -0
- data/ext/gtk3/rbgtkpapersize.c +179 -0
- data/ext/gtk3/rbgtkplug.c +85 -0
- data/ext/gtk3/rbgtkprintcontext.c +125 -0
- data/ext/gtk3/rbgtkprinter.c +155 -0
- data/ext/gtk3/rbgtkprintjob.c +148 -0
- data/ext/gtk3/rbgtkprintoperation.c +149 -0
- data/ext/gtk3/rbgtkprintoperationpreview.c +59 -0
- data/ext/gtk3/rbgtkprintsettings.c +807 -0
- data/ext/gtk3/rbgtkprintunixdialog.c +90 -0
- data/ext/gtk3/rbgtkprogressbar.c +72 -0
- data/ext/gtk3/rbgtkradioaction.c +122 -0
- data/ext/gtk3/rbgtkradiobutton.c +89 -0
- data/ext/gtk3/rbgtkradiomenuitem.c +147 -0
- data/ext/gtk3/rbgtkradiotoolbutton.c +131 -0
- data/ext/gtk3/rbgtkrange.c +68 -0
- data/ext/gtk3/rbgtkrecentaction.c +64 -0
- data/ext/gtk3/rbgtkrecentchooser.c +198 -0
- data/ext/gtk3/rbgtkrecentchooserdialog.c +66 -0
- data/ext/gtk3/rbgtkrecentchoosermenu.c +50 -0
- data/ext/gtk3/rbgtkrecentchooserwidget.c +48 -0
- data/ext/gtk3/rbgtkrecentdata.c +187 -0
- data/ext/gtk3/rbgtkrecentfilter.c +169 -0
- data/ext/gtk3/rbgtkrecentfilterinfo.c +200 -0
- data/ext/gtk3/rbgtkrecentinfo.c +213 -0
- data/ext/gtk3/rbgtkrecentmanager.c +134 -0
- data/ext/gtk3/rbgtkscale.c +97 -0
- data/ext/gtk3/rbgtkscalebutton.c +84 -0
- data/ext/gtk3/rbgtkscrollable.c +31 -0
- data/ext/gtk3/rbgtkscrollbar.c +52 -0
- data/ext/gtk3/rbgtkscrolledwindow.c +122 -0
- data/ext/gtk3/rbgtkselection.c +168 -0
- data/ext/gtk3/rbgtkselectiondata.c +282 -0
- data/ext/gtk3/rbgtkseparator.c +44 -0
- data/ext/gtk3/rbgtkseparatormenuitem.c +39 -0
- data/ext/gtk3/rbgtkseparatortoolitem.c +38 -0
- data/ext/gtk3/rbgtksettings.c +229 -0
- data/ext/gtk3/rbgtksizegroup.c +66 -0
- data/ext/gtk3/rbgtksocket.c +82 -0
- data/ext/gtk3/rbgtkspinbutton.c +132 -0
- data/ext/gtk3/rbgtkspinner.c +55 -0
- data/ext/gtk3/rbgtkstatusbar.c +77 -0
- data/ext/gtk3/rbgtkstatusicon.c +122 -0
- data/ext/gtk3/rbgtkstock.c +213 -0
- data/ext/gtk3/rbgtkstylecontext.c +411 -0
- data/ext/gtk3/rbgtkstyleproperties.c +119 -0
- data/ext/gtk3/rbgtkstyleprovider.c +68 -0
- data/ext/gtk3/rbgtkswitch.c +40 -0
- data/ext/gtk3/rbgtktable.c +190 -0
- data/ext/gtk3/rbgtktargetlist.c +125 -0
- data/ext/gtk3/rbgtktearoffmenuitem.c +41 -0
- data/ext/gtk3/rbgtktextappearance.c +236 -0
- data/ext/gtk3/rbgtktextattributes.c +326 -0
- data/ext/gtk3/rbgtktextbuffer.c +899 -0
- data/ext/gtk3/rbgtktextchildanchor.c +56 -0
- data/ext/gtk3/rbgtktextiter.c +732 -0
- data/ext/gtk3/rbgtktextmark.c +71 -0
- data/ext/gtk3/rbgtktexttag.c +68 -0
- data/ext/gtk3/rbgtktexttagtable.c +96 -0
- data/ext/gtk3/rbgtktextview.c +336 -0
- data/ext/gtk3/rbgtkthemingengine.c +257 -0
- data/ext/gtk3/rbgtktoggleaction.c +61 -0
- data/ext/gtk3/rbgtktogglebutton.c +87 -0
- data/ext/gtk3/rbgtktoggletoolbutton.c +61 -0
- data/ext/gtk3/rbgtktoolbar.c +118 -0
- data/ext/gtk3/rbgtktoolbutton.c +66 -0
- data/ext/gtk3/rbgtktoolitem.c +200 -0
- data/ext/gtk3/rbgtktoolitemgroup.c +70 -0
- data/ext/gtk3/rbgtktoolshell.c +96 -0
- data/ext/gtk3/rbgtktooltip.c +100 -0
- data/ext/gtk3/rbgtktreedragdest.c +28 -0
- data/ext/gtk3/rbgtktreedragsource.c +28 -0
- data/ext/gtk3/rbgtktreeiter.c +258 -0
- data/ext/gtk3/rbgtktreemodel.c +236 -0
- data/ext/gtk3/rbgtktreemodelfilter.c +197 -0
- data/ext/gtk3/rbgtktreemodelsort.c +111 -0
- data/ext/gtk3/rbgtktreepath.c +191 -0
- data/ext/gtk3/rbgtktreerowreference.c +140 -0
- data/ext/gtk3/rbgtktreeselection.c +205 -0
- data/ext/gtk3/rbgtktreesortable.c +122 -0
- data/ext/gtk3/rbgtktreestore.c +330 -0
- data/ext/gtk3/rbgtktreeview.c +715 -0
- data/ext/gtk3/rbgtktreeviewcolumn.c +256 -0
- data/ext/gtk3/rbgtkuimanager.c +189 -0
- data/ext/gtk3/rbgtkviewport.c +44 -0
- data/ext/gtk3/rbgtkvolumebutton.c +41 -0
- data/ext/gtk3/rbgtkwidget.c +1564 -0
- data/ext/gtk3/rbgtkwidgetpath.c +229 -0
- data/ext/gtk3/rbgtkwindow.c +557 -0
- data/ext/gtk3/rbgtkwindowgroup.c +80 -0
- data/extconf.rb +49 -0
- data/lib/gtk3.rb +10 -0
- data/lib/gtk3/base.rb +67 -0
- data/lib/gtk3/deprecated.rb +1001 -0
- data/sample/gtk-demo/README +7 -0
- data/sample/gtk-demo/alphatest.png +0 -0
- data/sample/gtk-demo/apple-red.png +0 -0
- data/sample/gtk-demo/appwindow.rb +233 -0
- data/sample/gtk-demo/background.jpg +0 -0
- data/sample/gtk-demo/builder.rb +51 -0
- data/sample/gtk-demo/button_box.rb +84 -0
- data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
- data/sample/gtk-demo/cairo-arc.rb +41 -0
- data/sample/gtk-demo/cairo-clip-image.rb +51 -0
- data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
- data/sample/gtk-demo/cairo-clip.rb +35 -0
- data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
- data/sample/gtk-demo/cairo-curve-to.rb +43 -0
- data/sample/gtk-demo/cairo-dash.rb +39 -0
- data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
- data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
- data/sample/gtk-demo/cairo-gradient.rb +35 -0
- data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
- data/sample/gtk-demo/cairo-image.rb +49 -0
- data/sample/gtk-demo/cairo-line-cap.rb +53 -0
- data/sample/gtk-demo/cairo-line-join.rb +41 -0
- data/sample/gtk-demo/cairo-long-lines.rb +41 -0
- data/sample/gtk-demo/cairo-operator.rb +83 -0
- data/sample/gtk-demo/cairo-path.rb +28 -0
- data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
- data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
- data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
- data/sample/gtk-demo/cairo-text-extents.rb +46 -0
- data/sample/gtk-demo/cairo-text.rb +43 -0
- data/sample/gtk-demo/changedisplay.rb +408 -0
- data/sample/gtk-demo/clipboard.rb +72 -0
- data/sample/gtk-demo/colorsel.rb +84 -0
- data/sample/gtk-demo/common.rb +88 -0
- data/sample/gtk-demo/demo.ui +258 -0
- data/sample/gtk-demo/dialog.rb +137 -0
- data/sample/gtk-demo/drawingarea.rb +226 -0
- data/sample/gtk-demo/editable_cells.rb +172 -0
- data/sample/gtk-demo/entry_completion.rb +63 -0
- data/sample/gtk-demo/expander.rb +40 -0
- data/sample/gtk-demo/floppybuddy.gif +0 -0
- data/sample/gtk-demo/gnome-applets.png +0 -0
- data/sample/gtk-demo/gnome-calendar.png +0 -0
- data/sample/gtk-demo/gnome-foot.png +0 -0
- data/sample/gtk-demo/gnome-fs-directory.png +0 -0
- data/sample/gtk-demo/gnome-fs-regular.png +0 -0
- data/sample/gtk-demo/gnome-gimp.png +0 -0
- data/sample/gtk-demo/gnome-gmush.png +0 -0
- data/sample/gtk-demo/gnome-gsame.png +0 -0
- data/sample/gtk-demo/gnu-keys.png +0 -0
- data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
- data/sample/gtk-demo/hypertext.rb +211 -0
- data/sample/gtk-demo/iconview.rb +109 -0
- data/sample/gtk-demo/images.rb +197 -0
- data/sample/gtk-demo/item_factory.rb +94 -0
- data/sample/gtk-demo/list_store.rb +138 -0
- data/sample/gtk-demo/main.rb +382 -0
- data/sample/gtk-demo/menus.rb +172 -0
- data/sample/gtk-demo/panes.rb +156 -0
- data/sample/gtk-demo/pixbufs.rb +176 -0
- data/sample/gtk-demo/printing.rb +128 -0
- data/sample/gtk-demo/rotated_text.rb +84 -0
- data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
- data/sample/gtk-demo/sizegroup.rb +118 -0
- data/sample/gtk-demo/stock_browser.rb +235 -0
- data/sample/gtk-demo/textview.rb +436 -0
- data/sample/gtk-demo/tree_store.rb +270 -0
- data/sample/misc/aboutdialog.rb +42 -0
- data/sample/misc/aboutdialog2.rb +42 -0
- data/sample/misc/alpha-demo.rb +70 -0
- data/sample/misc/assistant.rb +347 -0
- data/sample/misc/bindings.rb +107 -0
- data/sample/misc/button.rb +69 -0
- data/sample/misc/button2.rb +28 -0
- data/sample/misc/buttonbox.rb +93 -0
- data/sample/misc/cairo-pong.rb +215 -0
- data/sample/misc/calendar.rb +66 -0
- data/sample/misc/checkbutton.rb +46 -0
- data/sample/misc/colorselection.rb +25 -0
- data/sample/misc/combo_check.rb +71 -0
- data/sample/misc/combobox.rb +86 -0
- data/sample/misc/composited-windows.rb +113 -0
- data/sample/misc/cursor.rb +32 -0
- data/sample/misc/dialog.rb +44 -0
- data/sample/misc/dialog2.rb +39 -0
- data/sample/misc/dnd.rb +64 -0
- data/sample/misc/dndtreeview.rb +56 -0
- data/sample/misc/drag-move.rb +131 -0
- data/sample/misc/drawing.rb +90 -0
- data/sample/misc/entry.rb +34 -0
- data/sample/misc/entrycompletion.rb +33 -0
- data/sample/misc/expander.rb +27 -0
- data/sample/misc/filechooser.rb +41 -0
- data/sample/misc/frame.rb +69 -0
- data/sample/misc/gdkscreen.rb +32 -0
- data/sample/misc/gnome-logo-icon.png +0 -0
- data/sample/misc/helloworld.rb +35 -0
- data/sample/misc/iconview.rb +38 -0
- data/sample/misc/image.rb +42 -0
- data/sample/misc/itemfactory.rb +73 -0
- data/sample/misc/itemfactory2.rb +74 -0
- data/sample/misc/keyboard_grab.rb +29 -0
- data/sample/misc/label.rb +33 -0
- data/sample/misc/linkbutton.rb +42 -0
- data/sample/misc/listview.rb +92 -0
- data/sample/misc/menu.rb +81 -0
- data/sample/misc/misc_button.rb +49 -0
- data/sample/misc/mouse-gesture.rb +465 -0
- data/sample/misc/pangorenderer.rb +66 -0
- data/sample/misc/pointer_grab.rb +34 -0
- data/sample/misc/print.rb +247 -0
- data/sample/misc/properties.rb +85 -0
- data/sample/misc/radiobutton.rb +47 -0
- data/sample/misc/recentchooserdialog.rb +52 -0
- data/sample/misc/rgtk+cairo.rb +42 -0
- data/sample/misc/scalebutton.rb +19 -0
- data/sample/misc/settings.rb +41 -0
- data/sample/misc/statusicon.rb +123 -0
- data/sample/misc/stock.rb +36 -0
- data/sample/misc/style_property.rb +67 -0
- data/sample/misc/style_property.rc +19 -0
- data/sample/misc/t-gtkplug.rb +58 -0
- data/sample/misc/t-gtksocket.rb +65 -0
- data/sample/misc/test.xpm +92 -0
- data/sample/misc/textbuffer_serialize.rb +130 -0
- data/sample/misc/threads.rb +72 -0
- data/sample/misc/to_drawable.rb +42 -0
- data/sample/misc/togglebutton.rb +34 -0
- data/sample/misc/toolbar.rb +55 -0
- data/sample/misc/tooltips.rb +204 -0
- data/sample/misc/tree_combo.rb +79 -0
- data/sample/misc/tree_progress.rb +63 -0
- data/sample/misc/treemodelfilter.rb +49 -0
- data/sample/misc/treeview.rb +71 -0
- data/sample/misc/uimanager.rb +148 -0
- data/sample/misc/uimanager2.rb +91 -0
- data/sample/misc/uimanager2.xml +36 -0
- data/sample/misc/window.rb +24 -0
- data/sample/misc/xbm_cursor.rb +43 -0
- data/sample/testgtk/3DRings.xpm +116 -0
- data/sample/testgtk/FilesQueue.xpm +98 -0
- data/sample/testgtk/Modeller.xpm +117 -0
- data/sample/testgtk/README +14 -0
- data/sample/testgtk/button.rb +124 -0
- data/sample/testgtk/buttonbox.rb +100 -0
- data/sample/testgtk/check-n.xpm +21 -0
- data/sample/testgtk/check-y.xpm +21 -0
- data/sample/testgtk/checkbutton.rb +67 -0
- data/sample/testgtk/circles.xbm +46 -0
- data/sample/testgtk/colorselect.rb +33 -0
- data/sample/testgtk/dialog.rb +48 -0
- data/sample/testgtk/entry.rb +73 -0
- data/sample/testgtk/filesel.rb +65 -0
- data/sample/testgtk/fontselection.rb +56 -0
- data/sample/testgtk/labels.rb +74 -0
- data/sample/testgtk/layout.rb +108 -0
- data/sample/testgtk/marble.xpm +408 -0
- data/sample/testgtk/menu.rb +79 -0
- data/sample/testgtk/notebook.rb +280 -0
- data/sample/testgtk/pixmap.rb +58 -0
- data/sample/testgtk/progressbar.rb +173 -0
- data/sample/testgtk/radiobutton.rb +61 -0
- data/sample/testgtk/range.rb +65 -0
- data/sample/testgtk/reparent.rb +91 -0
- data/sample/testgtk/sample.rb +80 -0
- data/sample/testgtk/savedposition.rb +87 -0
- data/sample/testgtk/scrolledwindow.rb +67 -0
- data/sample/testgtk/shapedwindow.rb +99 -0
- data/sample/testgtk/spinbutton.rb +181 -0
- data/sample/testgtk/statusbar.rb +89 -0
- data/sample/testgtk/test.xpm +92 -0
- data/sample/testgtk/testgtk.rb +176 -0
- data/sample/testgtk/testgtkrc +146 -0
- data/sample/testgtk/testgtkrc2 +21 -0
- data/sample/testgtk/togglebutton.rb +53 -0
- data/sample/testgtk/toolbar.rb +82 -0
- data/sample/testgtk/tooltips.rb +41 -0
- data/sample/testgtk/wmhints.rb +40 -0
- data/test/gtk-test-utils.rb +15 -0
- data/test/run-test.rb +32 -0
- data/test/test_gc.rb +25 -0
- data/test/test_gdk.rb +18 -0
- data/test/test_gdk_color.rb +10 -0
- data/test/test_gdk_display.rb +37 -0
- data/test/test_gdk_event.rb +11 -0
- data/test/test_gdk_gc.rb +7 -0
- data/test/test_gdk_keymap.rb +8 -0
- data/test/test_gdk_pango.rb +9 -0
- data/test/test_gdk_selection_data.rb +17 -0
- data/test/test_gdk_window.rb +29 -0
- data/test/test_gdk_window_attribute.rb +9 -0
- data/test/test_gtk_about_dialog.rb +14 -0
- data/test/test_gtk_buildable.rb +66 -0
- data/test/test_gtk_builder.rb +188 -0
- data/test/test_gtk_entry.rb +18 -0
- data/test/test_gtk_icon_theme.rb +30 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_list_store.rb +65 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_rc_style.rb +14 -0
- data/test/test_gtk_tree_path.rb +20 -0
- data/test/test_gtk_unix_print.rb +14 -0
- data/test/test_gtk_widget.rb +32 -0
- metadata +553 -94
- data/LICENSE +0 -19
@@ -0,0 +1,49 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2002,2003 OGASAWARA, Takeshi
|
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
|
+
*/
|
21
|
+
|
22
|
+
#include "rbgtk3private.h"
|
23
|
+
|
24
|
+
#define RG_TARGET_NAMESPACE cInvisible
|
25
|
+
#define _SELF(s) RVAL2GTKINVISIBLE(s)
|
26
|
+
|
27
|
+
static VALUE
|
28
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
29
|
+
{
|
30
|
+
VALUE screen;
|
31
|
+
|
32
|
+
rb_scan_args(argc, argv, "01", &screen);
|
33
|
+
|
34
|
+
if (argc == 0){
|
35
|
+
RBGTK_INITIALIZE(self, gtk_invisible_new());
|
36
|
+
} else {
|
37
|
+
RBGTK_INITIALIZE(self, gtk_invisible_new_for_screen(
|
38
|
+
RVAL2GDKSCREEN(screen)));
|
39
|
+
}
|
40
|
+
return Qnil;
|
41
|
+
}
|
42
|
+
|
43
|
+
void
|
44
|
+
Init_gtk_invisible(VALUE mGtk)
|
45
|
+
{
|
46
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_INVISIBLE, "Invisible", mGtk);
|
47
|
+
|
48
|
+
RG_DEF_METHOD(initialize, -1);
|
49
|
+
}
|
@@ -0,0 +1,139 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2002-2005 Ruby-GNOME2 Project Team
|
5
|
+
* Copyright (C) 1998-2000 Yukihiro Matsumoto,
|
6
|
+
* Daisuke Kanda,
|
7
|
+
* Hiroshi Igarashi
|
8
|
+
*
|
9
|
+
* This library is free software; you can redistribute it and/or
|
10
|
+
* modify it under the terms of the GNU Lesser General Public
|
11
|
+
* License as published by the Free Software Foundation; either
|
12
|
+
* version 2.1 of the License, or (at your option) any later version.
|
13
|
+
*
|
14
|
+
* This library is distributed in the hope that it will be useful,
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
* Lesser General Public License for more details.
|
18
|
+
*
|
19
|
+
* You should have received a copy of the GNU Lesser General Public
|
20
|
+
* License along with this library; if not, write to the Free Software
|
21
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
22
|
+
* MA 02110-1301 USA
|
23
|
+
*/
|
24
|
+
|
25
|
+
#include "rbgtk3private.h"
|
26
|
+
|
27
|
+
#define RG_TARGET_NAMESPACE cLabel
|
28
|
+
#define _SELF(s) (RVAL2GTKLABEL(s))
|
29
|
+
|
30
|
+
static VALUE
|
31
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
32
|
+
{
|
33
|
+
VALUE label, with_mnemonic;
|
34
|
+
GtkWidget* widget = NULL;
|
35
|
+
|
36
|
+
rb_scan_args(argc, argv, "02", &label, &with_mnemonic);
|
37
|
+
if (NIL_P(with_mnemonic) || ! RVAL2CBOOL(with_mnemonic)){
|
38
|
+
widget = gtk_label_new(RVAL2CSTR_ACCEPT_NIL(label));
|
39
|
+
} else {
|
40
|
+
widget = gtk_label_new_with_mnemonic(RVAL2CSTR_ACCEPT_NIL(label));
|
41
|
+
}
|
42
|
+
|
43
|
+
RBGTK_INITIALIZE(self, widget);
|
44
|
+
return Qnil;
|
45
|
+
}
|
46
|
+
|
47
|
+
static VALUE
|
48
|
+
rg_operator_label_set_text_only(VALUE self, VALUE text)
|
49
|
+
{
|
50
|
+
gtk_label_set_text(_SELF(self), RVAL2CSTR(text));
|
51
|
+
return text;
|
52
|
+
}
|
53
|
+
|
54
|
+
static VALUE
|
55
|
+
rg_set_text(int argc, VALUE *argv, VALUE self)
|
56
|
+
{
|
57
|
+
VALUE label, with_mnemonic;
|
58
|
+
|
59
|
+
rb_scan_args(argc, argv, "02", &label, &with_mnemonic);
|
60
|
+
if (NIL_P(with_mnemonic) || ! RVAL2CBOOL(with_mnemonic)){
|
61
|
+
gtk_label_set_text(_SELF(self), RVAL2CSTR(label));
|
62
|
+
} else {
|
63
|
+
gtk_label_set_text_with_mnemonic(_SELF(self), RVAL2CSTR(label));
|
64
|
+
}
|
65
|
+
return self;
|
66
|
+
}
|
67
|
+
|
68
|
+
static VALUE
|
69
|
+
rg_operator_label_set_markup_only(VALUE self, VALUE text)
|
70
|
+
{
|
71
|
+
gtk_label_set_markup(_SELF(self), RVAL2CSTR(text));
|
72
|
+
return text;
|
73
|
+
}
|
74
|
+
|
75
|
+
static VALUE
|
76
|
+
rg_set_markup(int argc, VALUE *argv, VALUE self)
|
77
|
+
{
|
78
|
+
VALUE str, with_mnemonic;
|
79
|
+
rb_scan_args(argc, argv, "02", &str, &with_mnemonic);
|
80
|
+
|
81
|
+
if (NIL_P(with_mnemonic) || ! RVAL2CBOOL(with_mnemonic)){
|
82
|
+
gtk_label_set_markup(_SELF(self), RVAL2CSTR(str));
|
83
|
+
} else {
|
84
|
+
gtk_label_set_markup_with_mnemonic(_SELF(self), RVAL2CSTR(str));
|
85
|
+
}
|
86
|
+
return self;
|
87
|
+
}
|
88
|
+
|
89
|
+
static VALUE
|
90
|
+
rg_layout_offsets(VALUE self)
|
91
|
+
{
|
92
|
+
gint x, y;
|
93
|
+
gtk_label_get_layout_offsets(_SELF(self), &x, &y);
|
94
|
+
return rb_ary_new3(2, INT2NUM(x), INT2NUM(y));
|
95
|
+
}
|
96
|
+
|
97
|
+
static VALUE
|
98
|
+
rg_text(VALUE self)
|
99
|
+
{
|
100
|
+
return CSTR2RVAL(gtk_label_get_text(_SELF(self)));
|
101
|
+
}
|
102
|
+
|
103
|
+
static VALUE
|
104
|
+
rg_select_region(VALUE self, VALUE start_offset, VALUE end_offset)
|
105
|
+
{
|
106
|
+
gtk_label_select_region(_SELF(self), NUM2INT(start_offset), NUM2INT(end_offset));
|
107
|
+
return self;
|
108
|
+
}
|
109
|
+
|
110
|
+
static VALUE
|
111
|
+
rg_layout(VALUE self)
|
112
|
+
{
|
113
|
+
return GOBJ2RVAL(gtk_label_get_layout(_SELF(self)));
|
114
|
+
}
|
115
|
+
|
116
|
+
static VALUE
|
117
|
+
rg_selection_bounds(VALUE self)
|
118
|
+
{
|
119
|
+
gint start, end;
|
120
|
+
gboolean ret = gtk_label_get_selection_bounds(_SELF(self), &start, &end);
|
121
|
+
return ret ? rb_ary_new3(2, INT2NUM(start), INT2NUM(end)) : Qnil;
|
122
|
+
}
|
123
|
+
|
124
|
+
void
|
125
|
+
Init_gtk_label(VALUE mGtk)
|
126
|
+
{
|
127
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_LABEL, "Label", mGtk);
|
128
|
+
|
129
|
+
RG_DEF_METHOD(initialize, -1);
|
130
|
+
RG_DEF_METHOD(text, 0);
|
131
|
+
RG_DEF_METHOD(set_text, -1);
|
132
|
+
RG_DEF_METHOD_OPERATOR("text=", label_set_text_only, 1);
|
133
|
+
RG_DEF_METHOD(set_markup, -1);
|
134
|
+
RG_DEF_METHOD_OPERATOR("markup=", label_set_markup_only, 1);
|
135
|
+
RG_DEF_METHOD(layout_offsets, 0);
|
136
|
+
RG_DEF_METHOD(select_region, 2);
|
137
|
+
RG_DEF_METHOD(layout, 0);
|
138
|
+
RG_DEF_METHOD(selection_bounds, 0);
|
139
|
+
}
|
@@ -0,0 +1,93 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
|
5
|
+
* Copyright (C) 1998-2000 Yukihiro Matsumoto,
|
6
|
+
* Daisuke Kanda,
|
7
|
+
* Hiroshi Igarashi
|
8
|
+
*
|
9
|
+
* This library is free software; you can redistribute it and/or
|
10
|
+
* modify it under the terms of the GNU Lesser General Public
|
11
|
+
* License as published by the Free Software Foundation; either
|
12
|
+
* version 2.1 of the License, or (at your option) any later version.
|
13
|
+
*
|
14
|
+
* This library is distributed in the hope that it will be useful,
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
* Lesser General Public License for more details.
|
18
|
+
*
|
19
|
+
* You should have received a copy of the GNU Lesser General Public
|
20
|
+
* License along with this library; if not, write to the Free Software
|
21
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
22
|
+
* MA 02110-1301 USA
|
23
|
+
*/
|
24
|
+
|
25
|
+
#include "rbgtk3private.h"
|
26
|
+
|
27
|
+
#define RG_TARGET_NAMESPACE cLayout
|
28
|
+
#define _SELF(self) (RVAL2GTKLAYOUT(self))
|
29
|
+
|
30
|
+
static VALUE
|
31
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
32
|
+
{
|
33
|
+
VALUE hadjustment, vadjustment;
|
34
|
+
GtkWidget* layout;
|
35
|
+
rb_scan_args(argc, argv, "02", &hadjustment, &vadjustment);
|
36
|
+
|
37
|
+
layout = gtk_layout_new(
|
38
|
+
NIL_P(hadjustment) ? 0 : RVAL2GTKADJUSTMENT(hadjustment),
|
39
|
+
NIL_P(vadjustment) ? 0 : RVAL2GTKADJUSTMENT(vadjustment));
|
40
|
+
|
41
|
+
RBGTK_INITIALIZE(self, layout);
|
42
|
+
return Qnil;
|
43
|
+
}
|
44
|
+
|
45
|
+
static VALUE
|
46
|
+
rg_put(VALUE self, VALUE widget, VALUE x, VALUE y)
|
47
|
+
{
|
48
|
+
gtk_layout_put(_SELF(self), RVAL2GTKWIDGET(widget),
|
49
|
+
NUM2INT(x), NUM2INT(y));
|
50
|
+
return self;
|
51
|
+
}
|
52
|
+
|
53
|
+
static VALUE
|
54
|
+
rg_move(VALUE self, VALUE widget, VALUE x, VALUE y)
|
55
|
+
{
|
56
|
+
gtk_layout_move(_SELF(self), RVAL2GTKWIDGET(widget),
|
57
|
+
NUM2INT(x), NUM2INT(y));
|
58
|
+
return self;
|
59
|
+
}
|
60
|
+
|
61
|
+
static VALUE
|
62
|
+
rg_set_size(VALUE self, VALUE width, VALUE height)
|
63
|
+
{
|
64
|
+
gtk_layout_set_size(_SELF(self), NUM2UINT(width), NUM2UINT(height));
|
65
|
+
return self;
|
66
|
+
}
|
67
|
+
|
68
|
+
static VALUE
|
69
|
+
rg_size(VALUE self)
|
70
|
+
{
|
71
|
+
guint width, height;
|
72
|
+
gtk_layout_get_size(_SELF(self), &width, &height);
|
73
|
+
return rb_ary_new3(2, INT2NUM(width), INT2NUM(height));
|
74
|
+
}
|
75
|
+
|
76
|
+
static VALUE
|
77
|
+
rg_bin_window(VALUE self)
|
78
|
+
{
|
79
|
+
return GOBJ2RVAL(gtk_layout_get_bin_window(_SELF(self)));
|
80
|
+
}
|
81
|
+
|
82
|
+
void
|
83
|
+
Init_gtk_layout(VALUE mGtk)
|
84
|
+
{
|
85
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_LAYOUT, "Layout", mGtk);
|
86
|
+
|
87
|
+
RG_DEF_METHOD(initialize, -1);
|
88
|
+
RG_DEF_METHOD(put, 3);
|
89
|
+
RG_DEF_METHOD(move, 3);
|
90
|
+
RG_DEF_METHOD(set_size, 2);
|
91
|
+
RG_DEF_METHOD(size, 0);
|
92
|
+
RG_DEF_METHOD(bin_window, 0);
|
93
|
+
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 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
|
+
*/
|
21
|
+
|
22
|
+
#include "rbgtk3private.h"
|
23
|
+
|
24
|
+
#define RG_TARGET_NAMESPACE cLinkButton
|
25
|
+
#define _SELF(self) (RVAL2GTKLINKBUTTON(self))
|
26
|
+
|
27
|
+
static VALUE
|
28
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
29
|
+
{
|
30
|
+
VALUE uri, label;
|
31
|
+
GtkWidget *widget = NULL;
|
32
|
+
|
33
|
+
rb_scan_args(argc, argv, "11", &uri, &label);
|
34
|
+
if (NIL_P(label)){
|
35
|
+
widget = gtk_link_button_new(RVAL2CSTR(uri));
|
36
|
+
} else {
|
37
|
+
widget = gtk_link_button_new_with_label(RVAL2CSTR(uri), RVAL2CSTR(label));
|
38
|
+
}
|
39
|
+
RBGTK_INITIALIZE(self, widget);
|
40
|
+
return Qnil;
|
41
|
+
}
|
42
|
+
|
43
|
+
static void
|
44
|
+
link_func(GtkLinkButton *button, const gchar *link, gpointer func)
|
45
|
+
{
|
46
|
+
rb_funcall((VALUE)func, id_call, 2, GOBJ2RVAL(button), CSTR2RVAL(link));
|
47
|
+
}
|
48
|
+
|
49
|
+
void
|
50
|
+
Init_gtk_link_button(VALUE mGtk)
|
51
|
+
{
|
52
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_LINK_BUTTON, "LinkButton", mGtk);
|
53
|
+
|
54
|
+
RG_DEF_METHOD(initialize, -1);
|
55
|
+
}
|
@@ -0,0 +1,408 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
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
|
+
*/
|
21
|
+
|
22
|
+
#include "rbgtk3private.h"
|
23
|
+
|
24
|
+
#define RG_TARGET_NAMESPACE cListStore
|
25
|
+
#define _SELF(s) (RVAL2GTKLISTSTORE(s))
|
26
|
+
|
27
|
+
static ID id_to_a, id_size;
|
28
|
+
|
29
|
+
static VALUE
|
30
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
31
|
+
{
|
32
|
+
gint cnt;
|
33
|
+
GtkListStore* store;
|
34
|
+
GType* buf;
|
35
|
+
|
36
|
+
if (argc == 0) rb_raise(rb_eArgError, "need more than 1 class type.");
|
37
|
+
|
38
|
+
buf = ALLOCA_N(GType, argc);
|
39
|
+
for (cnt = 0; cnt < argc; cnt++) {
|
40
|
+
buf[cnt] = CLASS2GTYPE(argv[cnt]);
|
41
|
+
}
|
42
|
+
|
43
|
+
store = gtk_list_store_newv(argc, buf);
|
44
|
+
|
45
|
+
G_INITIALIZE(self, store);
|
46
|
+
|
47
|
+
return Qnil;
|
48
|
+
}
|
49
|
+
|
50
|
+
static VALUE
|
51
|
+
rg_set_column_types(int argc, VALUE *argv, VALUE self)
|
52
|
+
{
|
53
|
+
gint cnt;
|
54
|
+
GType* buf;
|
55
|
+
|
56
|
+
if (argc == 0) rb_raise(rb_eArgError, "need more than 1 class type.");
|
57
|
+
buf = ALLOCA_N(GType, argc);
|
58
|
+
for (cnt = 0; cnt < argc; cnt++) {
|
59
|
+
buf[cnt] = CLASS2GTYPE(argv[cnt]);
|
60
|
+
}
|
61
|
+
|
62
|
+
gtk_list_store_set_column_types(_SELF(self), argc, buf);
|
63
|
+
|
64
|
+
return self;
|
65
|
+
}
|
66
|
+
|
67
|
+
static VALUE
|
68
|
+
rg_set_value(VALUE self, VALUE iter, VALUE column, VALUE value)
|
69
|
+
{
|
70
|
+
GType gtype = gtk_tree_model_get_column_type(RVAL2GTKTREEMODEL(self), NUM2INT(column));
|
71
|
+
GValue gval = G_VALUE_INIT;
|
72
|
+
g_value_init(&gval, gtype);
|
73
|
+
|
74
|
+
rbgobj_rvalue_to_gvalue(value, &gval);
|
75
|
+
|
76
|
+
G_CHILD_ADD(self, iter);
|
77
|
+
G_CHILD_ADD(iter, value);
|
78
|
+
|
79
|
+
gtk_list_store_set_value(_SELF(self), RVAL2GTKTREEITER(iter), NUM2INT(column), &gval);
|
80
|
+
|
81
|
+
g_value_unset(&gval);
|
82
|
+
return self;
|
83
|
+
}
|
84
|
+
|
85
|
+
typedef struct _ValuesInfo
|
86
|
+
{
|
87
|
+
gint i;
|
88
|
+
VALUE iter;
|
89
|
+
GtkTreeModel *model;
|
90
|
+
gint *g_columns;
|
91
|
+
GValue *g_values;
|
92
|
+
} ValuesInfo;
|
93
|
+
|
94
|
+
static int
|
95
|
+
collect_value(VALUE key, VALUE value, ValuesInfo *info)
|
96
|
+
{
|
97
|
+
GType g_type;
|
98
|
+
gint column;
|
99
|
+
|
100
|
+
column = NUM2INT(key);
|
101
|
+
info->g_columns[info->i] = column;
|
102
|
+
g_type = gtk_tree_model_get_column_type(info->model, column);
|
103
|
+
g_value_init(&(info->g_values[info->i]), g_type);
|
104
|
+
rbgobj_rvalue_to_gvalue(value, &(info->g_values[info->i]));
|
105
|
+
G_CHILD_ADD(info->iter, value);
|
106
|
+
info->i++;
|
107
|
+
|
108
|
+
return ST_CONTINUE;
|
109
|
+
}
|
110
|
+
|
111
|
+
static void
|
112
|
+
hash_to_values(VALUE hash, VALUE iter, GtkTreeModel *model,
|
113
|
+
gint *g_columns, GValue *g_values, G_GNUC_UNUSED gint length)
|
114
|
+
{
|
115
|
+
ValuesInfo info;
|
116
|
+
|
117
|
+
info.i = 0;
|
118
|
+
info.iter = iter;
|
119
|
+
info.model = model;
|
120
|
+
info.g_columns = g_columns;
|
121
|
+
info.g_values = g_values;
|
122
|
+
rb_hash_foreach(hash, collect_value, (VALUE)(&info));
|
123
|
+
}
|
124
|
+
|
125
|
+
static void
|
126
|
+
array_to_values(VALUE array, VALUE iter, GtkTreeModel *model,
|
127
|
+
gint *g_columns, GValue *g_values, gint length)
|
128
|
+
{
|
129
|
+
gint i;
|
130
|
+
|
131
|
+
for (i = 0; i < length; i++) {
|
132
|
+
GType g_type;
|
133
|
+
|
134
|
+
g_columns[i] = i;
|
135
|
+
g_type = gtk_tree_model_get_column_type(model, i);
|
136
|
+
g_value_init(&g_values[i], g_type);
|
137
|
+
rbgobj_rvalue_to_gvalue(RARRAY_PTR(array)[i], &g_values[i]);
|
138
|
+
G_CHILD_ADD(iter, RARRAY_PTR(array)[i]);
|
139
|
+
}
|
140
|
+
}
|
141
|
+
|
142
|
+
static VALUE
|
143
|
+
rg_set_values(VALUE self, VALUE iter, VALUE values)
|
144
|
+
{
|
145
|
+
GValue *g_values;
|
146
|
+
GtkListStore *store;
|
147
|
+
GtkTreeModel *model;
|
148
|
+
gint *g_columns;
|
149
|
+
gint i, length;
|
150
|
+
|
151
|
+
length = NUM2INT(rb_funcall(values, id_size, 0));
|
152
|
+
if (length == 0)
|
153
|
+
return self;
|
154
|
+
|
155
|
+
g_columns = ALLOCA_N(gint, length);
|
156
|
+
g_values = ALLOCA_N(GValue, length);
|
157
|
+
MEMZERO(g_values, GValue, length);
|
158
|
+
|
159
|
+
G_CHILD_ADD(self, iter);
|
160
|
+
|
161
|
+
store = _SELF(self);
|
162
|
+
model = GTK_TREE_MODEL(store);
|
163
|
+
if (RVAL2CBOOL(rb_obj_is_kind_of(values, rb_cHash))) {
|
164
|
+
hash_to_values(values, iter, model, g_columns, g_values, length);
|
165
|
+
}
|
166
|
+
else if (RVAL2CBOOL(rb_obj_is_kind_of(values, rb_cArray))) {
|
167
|
+
array_to_values(values, iter, model, g_columns, g_values, length);
|
168
|
+
}
|
169
|
+
else {
|
170
|
+
rb_raise(rb_eArgError, "must be array or hash of values");
|
171
|
+
}
|
172
|
+
|
173
|
+
gtk_list_store_set_valuesv(store, RVAL2GTKTREEITER(iter),
|
174
|
+
g_columns, g_values, length);
|
175
|
+
|
176
|
+
for (i = 0; i < length; i++)
|
177
|
+
g_value_unset(&g_values[i]);
|
178
|
+
|
179
|
+
return self;
|
180
|
+
}
|
181
|
+
|
182
|
+
static VALUE
|
183
|
+
rg_remove(VALUE self, VALUE iter)
|
184
|
+
{
|
185
|
+
G_CHILD_REMOVE(self, iter);
|
186
|
+
return CBOOL2RVAL(gtk_list_store_remove(_SELF(self), RVAL2GTKTREEITER(iter)));
|
187
|
+
}
|
188
|
+
|
189
|
+
struct lstore_insert_args {
|
190
|
+
GtkListStore *store;
|
191
|
+
GtkTreeIter iter;
|
192
|
+
gint position;
|
193
|
+
VALUE ary;
|
194
|
+
long i;
|
195
|
+
long n;
|
196
|
+
gint *columns;
|
197
|
+
GValue *values;
|
198
|
+
};
|
199
|
+
|
200
|
+
static VALUE
|
201
|
+
lstore_insert_body(VALUE value)
|
202
|
+
{
|
203
|
+
struct lstore_insert_args *args = (struct lstore_insert_args *)value;
|
204
|
+
GtkTreeModel *model = GTK_TREE_MODEL(args->store);
|
205
|
+
|
206
|
+
for (args->i = 0; args->i < args->n; args->i++) {
|
207
|
+
VALUE ary = rb_ary_to_ary(RARRAY_PTR(args->ary)[args->i]);
|
208
|
+
|
209
|
+
args->columns[args->i] = NUM2INT(RARRAY_PTR(ary)[1]);
|
210
|
+
g_value_init(&args->values[args->i],
|
211
|
+
gtk_tree_model_get_column_type(model, args->columns[args->i]));
|
212
|
+
rbgobj_rvalue_to_gvalue(RARRAY_PTR(ary)[0], &args->values[args->i]);
|
213
|
+
}
|
214
|
+
|
215
|
+
gtk_list_store_insert_with_valuesv(args->store,
|
216
|
+
&args->iter,
|
217
|
+
args->position,
|
218
|
+
args->columns,
|
219
|
+
args->values,
|
220
|
+
args->n);
|
221
|
+
|
222
|
+
return Qnil;
|
223
|
+
}
|
224
|
+
|
225
|
+
static VALUE
|
226
|
+
lstore_insert_ensure(VALUE value)
|
227
|
+
{
|
228
|
+
long i;
|
229
|
+
struct lstore_insert_args *args = (struct lstore_insert_args *)value;
|
230
|
+
|
231
|
+
for (i = 0; i < args->i; i++)
|
232
|
+
g_value_unset(&args->values[i]);
|
233
|
+
|
234
|
+
g_free(args->values);
|
235
|
+
g_free(args->columns);
|
236
|
+
|
237
|
+
return Qnil;
|
238
|
+
}
|
239
|
+
|
240
|
+
/*
|
241
|
+
Gtk::ListStore#insert(pos, val1 => 0, val2 => 2, ... )
|
242
|
+
*/
|
243
|
+
static VALUE
|
244
|
+
rg_insert(int argc, VALUE *argv, VALUE self)
|
245
|
+
{
|
246
|
+
VALUE position, values, result;
|
247
|
+
struct lstore_insert_args args;
|
248
|
+
args.store = _SELF(self);
|
249
|
+
|
250
|
+
rb_scan_args(argc, argv, "11", &position, &values);
|
251
|
+
args.position = NUM2INT(position);
|
252
|
+
|
253
|
+
if (NIL_P(values)){
|
254
|
+
gtk_list_store_insert(args.store, &args.iter, args.position);
|
255
|
+
} else {
|
256
|
+
args.ary = rb_funcall(values, id_to_a, 0);
|
257
|
+
args.n = RARRAY_LEN(args.ary);
|
258
|
+
args.columns = g_new(gint, args.n);
|
259
|
+
args.values = g_new0(GValue, args.n);
|
260
|
+
|
261
|
+
rb_ensure(lstore_insert_body, (VALUE)&args,
|
262
|
+
lstore_insert_ensure, (VALUE)&args);
|
263
|
+
}
|
264
|
+
|
265
|
+
args.iter.user_data3 = args.store;
|
266
|
+
|
267
|
+
result = GTKTREEITER2RVAL(&args.iter);
|
268
|
+
|
269
|
+
G_CHILD_ADD(self, result);
|
270
|
+
|
271
|
+
return result;
|
272
|
+
}
|
273
|
+
|
274
|
+
static VALUE
|
275
|
+
rg_insert_before(VALUE self, VALUE sibling)
|
276
|
+
{
|
277
|
+
VALUE ret;
|
278
|
+
GtkTreeIter iter;
|
279
|
+
GtkListStore* model = _SELF(self);
|
280
|
+
gtk_list_store_insert_before(model, &iter, NIL_P(sibling) ? NULL : RVAL2GTKTREEITER(sibling));
|
281
|
+
iter.user_data3 = model;
|
282
|
+
|
283
|
+
ret = GTKTREEITER2RVAL(&iter);
|
284
|
+
G_CHILD_ADD(self, ret);
|
285
|
+
return ret;
|
286
|
+
}
|
287
|
+
|
288
|
+
static VALUE
|
289
|
+
rg_insert_after(VALUE self, VALUE sibling)
|
290
|
+
{
|
291
|
+
VALUE ret;
|
292
|
+
GtkTreeIter iter;
|
293
|
+
GtkListStore* model = _SELF(self);
|
294
|
+
gtk_list_store_insert_after(model, &iter, NIL_P(sibling) ? NULL : RVAL2GTKTREEITER(sibling));
|
295
|
+
iter.user_data3 = model;
|
296
|
+
|
297
|
+
ret = GTKTREEITER2RVAL(&iter);
|
298
|
+
G_CHILD_ADD(self, ret);
|
299
|
+
return ret;
|
300
|
+
}
|
301
|
+
|
302
|
+
static VALUE
|
303
|
+
rg_prepend(VALUE self)
|
304
|
+
{
|
305
|
+
VALUE ret;
|
306
|
+
GtkTreeIter iter;
|
307
|
+
GtkListStore* model = _SELF(self);
|
308
|
+
gtk_list_store_prepend(model, &iter);
|
309
|
+
iter.user_data3 = model;
|
310
|
+
|
311
|
+
ret = GTKTREEITER2RVAL(&iter);
|
312
|
+
G_CHILD_ADD(self, ret);
|
313
|
+
return ret;
|
314
|
+
}
|
315
|
+
|
316
|
+
static VALUE
|
317
|
+
rg_append(VALUE self)
|
318
|
+
{
|
319
|
+
VALUE ret;
|
320
|
+
GtkTreeIter iter;
|
321
|
+
GtkListStore* model = _SELF(self);
|
322
|
+
gtk_list_store_append(model, &iter);
|
323
|
+
iter.user_data3 = model;
|
324
|
+
|
325
|
+
ret = GTKTREEITER2RVAL(&iter);
|
326
|
+
G_CHILD_ADD(self, ret);
|
327
|
+
return ret;
|
328
|
+
}
|
329
|
+
|
330
|
+
static VALUE
|
331
|
+
rg_clear(VALUE self)
|
332
|
+
{
|
333
|
+
G_CHILD_REMOVE_ALL(self);
|
334
|
+
gtk_list_store_clear(_SELF(self));
|
335
|
+
return self;
|
336
|
+
}
|
337
|
+
|
338
|
+
static VALUE
|
339
|
+
rg_iter_is_valid_p(VALUE self, VALUE iter)
|
340
|
+
{
|
341
|
+
return (NIL_P(iter)) ? Qfalse :
|
342
|
+
CBOOL2RVAL(gtk_list_store_iter_is_valid(_SELF(self), RVAL2GTKTREEITER(iter)));
|
343
|
+
}
|
344
|
+
|
345
|
+
static VALUE
|
346
|
+
rg_reorder(VALUE self, VALUE rbnew_order)
|
347
|
+
{
|
348
|
+
GtkListStore *store = _SELF(self);
|
349
|
+
long n;
|
350
|
+
gint *new_order = RVAL2GINTS(rbnew_order, n);
|
351
|
+
|
352
|
+
gtk_list_store_reorder(store, new_order);
|
353
|
+
|
354
|
+
g_free(new_order);
|
355
|
+
|
356
|
+
return self;
|
357
|
+
}
|
358
|
+
|
359
|
+
static VALUE
|
360
|
+
rg_swap(VALUE self, VALUE iter1, VALUE iter2)
|
361
|
+
{
|
362
|
+
gtk_list_store_swap(_SELF(self), RVAL2GTKTREEITER(iter1), RVAL2GTKTREEITER(iter2));
|
363
|
+
return self;
|
364
|
+
}
|
365
|
+
|
366
|
+
static VALUE
|
367
|
+
rg_move_before(VALUE self, VALUE iter, VALUE position)
|
368
|
+
{
|
369
|
+
gtk_list_store_move_before(_SELF(self), RVAL2GTKTREEITER(iter),
|
370
|
+
NIL_P(position) ? NULL : RVAL2GTKTREEITER(position));
|
371
|
+
return self;
|
372
|
+
}
|
373
|
+
|
374
|
+
static VALUE
|
375
|
+
rg_move_after(VALUE self, VALUE iter, VALUE position)
|
376
|
+
{
|
377
|
+
gtk_list_store_move_after(_SELF(self), RVAL2GTKTREEITER(iter),
|
378
|
+
NIL_P(position) ? NULL : RVAL2GTKTREEITER(position));
|
379
|
+
return self;
|
380
|
+
}
|
381
|
+
|
382
|
+
void
|
383
|
+
Init_gtk_list_store(VALUE mGtk)
|
384
|
+
{
|
385
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_LIST_STORE, "ListStore", mGtk);
|
386
|
+
|
387
|
+
id_to_a = rb_intern("to_a");
|
388
|
+
id_size = rb_intern("size");
|
389
|
+
|
390
|
+
rbgtk_register_treeiter_set_value_func(GTK_TYPE_LIST_STORE,
|
391
|
+
(rbgtkiter_set_value_func)>k_list_store_set_value);
|
392
|
+
RG_DEF_METHOD(initialize, -1);
|
393
|
+
RG_DEF_METHOD(set_column_types, -1);
|
394
|
+
RG_DEF_METHOD(set_value, 3);
|
395
|
+
RG_DEF_METHOD(remove, 1);
|
396
|
+
RG_DEF_METHOD(insert, -1);
|
397
|
+
RG_DEF_METHOD(insert_before, 1);
|
398
|
+
RG_DEF_METHOD(insert_after, 1);
|
399
|
+
RG_DEF_METHOD(prepend, 0);
|
400
|
+
RG_DEF_METHOD(append, 0);
|
401
|
+
RG_DEF_METHOD(clear, 0);
|
402
|
+
RG_DEF_METHOD_P(iter_is_valid, 1);
|
403
|
+
RG_DEF_METHOD(reorder, 1);
|
404
|
+
RG_DEF_METHOD(swap, 2);
|
405
|
+
RG_DEF_METHOD(move_before, 2);
|
406
|
+
RG_DEF_METHOD(move_after, 2);
|
407
|
+
RG_DEF_METHOD(set_values, 2);
|
408
|
+
}
|