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,205 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2004-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 cAction
|
25
|
+
#define _SELF(self) (RVAL2GTKACTION(self))
|
26
|
+
|
27
|
+
static VALUE
|
28
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
29
|
+
{
|
30
|
+
VALUE name, options, label, tooltip, stock_id, buffer;
|
31
|
+
|
32
|
+
rb_scan_args(argc, argv, "11", &name, &options);
|
33
|
+
rbg_scan_options(options,
|
34
|
+
"label", &label,
|
35
|
+
"tooltip", &tooltip,
|
36
|
+
"stock_id", &stock_id,
|
37
|
+
NULL);
|
38
|
+
|
39
|
+
G_INITIALIZE(self, gtk_action_new(RVAL2CSTR(name),
|
40
|
+
RVAL2CSTR_ACCEPT_NIL(label),
|
41
|
+
RVAL2CSTR_ACCEPT_NIL(tooltip),
|
42
|
+
RVAL2GLIBID_ACCEPT_NIL(stock_id, buffer)));
|
43
|
+
|
44
|
+
return Qnil;
|
45
|
+
}
|
46
|
+
|
47
|
+
static VALUE
|
48
|
+
rg_is_sensitive_p(VALUE self)
|
49
|
+
{
|
50
|
+
return CBOOL2RVAL(gtk_action_is_sensitive(_SELF(self)));
|
51
|
+
}
|
52
|
+
|
53
|
+
static VALUE
|
54
|
+
rg_is_visible_p(VALUE self)
|
55
|
+
{
|
56
|
+
return CBOOL2RVAL(gtk_action_is_visible(_SELF(self)));
|
57
|
+
}
|
58
|
+
|
59
|
+
static VALUE
|
60
|
+
rg_activate(VALUE self)
|
61
|
+
{
|
62
|
+
gtk_action_activate(_SELF(self));
|
63
|
+
return self;
|
64
|
+
}
|
65
|
+
|
66
|
+
static VALUE
|
67
|
+
rg_create_icon(VALUE self, VALUE icon_size)
|
68
|
+
{
|
69
|
+
return GOBJ2RVAL(gtk_action_create_icon(_SELF(self),
|
70
|
+
RVAL2GTKICONSIZE(icon_size)));
|
71
|
+
}
|
72
|
+
|
73
|
+
static VALUE
|
74
|
+
rg_create_menu_item(VALUE self)
|
75
|
+
{
|
76
|
+
return GOBJ2RVAL(gtk_action_create_menu_item(_SELF(self)));
|
77
|
+
}
|
78
|
+
|
79
|
+
static VALUE
|
80
|
+
rg_create_menu(VALUE self)
|
81
|
+
{
|
82
|
+
return GOBJ2RVAL(gtk_action_create_menu(_SELF(self)));
|
83
|
+
}
|
84
|
+
|
85
|
+
static VALUE
|
86
|
+
rg_create_tool_item(VALUE self)
|
87
|
+
{
|
88
|
+
return GOBJ2RVAL(gtk_action_create_tool_item(_SELF(self)));
|
89
|
+
}
|
90
|
+
|
91
|
+
static VALUE
|
92
|
+
rg_proxies(VALUE self)
|
93
|
+
{
|
94
|
+
return GOBJGSLIST2RVAL(gtk_action_get_proxies(_SELF(self)));
|
95
|
+
}
|
96
|
+
|
97
|
+
static VALUE
|
98
|
+
rg_connect_accelerator(VALUE self)
|
99
|
+
{
|
100
|
+
gtk_action_connect_accelerator(_SELF(self));
|
101
|
+
return self;
|
102
|
+
}
|
103
|
+
|
104
|
+
static VALUE
|
105
|
+
rg_disconnect_accelerator(VALUE self)
|
106
|
+
{
|
107
|
+
gtk_action_disconnect_accelerator(_SELF(self));
|
108
|
+
return self;
|
109
|
+
}
|
110
|
+
|
111
|
+
static VALUE
|
112
|
+
rg_set_accel_path(VALUE self, VALUE accel_path)
|
113
|
+
{
|
114
|
+
gtk_action_set_accel_path(_SELF(self), RVAL2CSTR(accel_path));
|
115
|
+
return self;
|
116
|
+
}
|
117
|
+
|
118
|
+
static VALUE
|
119
|
+
rg_set_accel_group(VALUE self, VALUE accel_group)
|
120
|
+
{
|
121
|
+
gtk_action_set_accel_group(_SELF(self),
|
122
|
+
NIL_P(accel_group) ? NULL : RVAL2GTKACCELGROUP(accel_group));
|
123
|
+
return self;
|
124
|
+
}
|
125
|
+
|
126
|
+
static VALUE
|
127
|
+
rg_accel_path(VALUE self)
|
128
|
+
{
|
129
|
+
return CSTR2RVAL(gtk_action_get_accel_path(_SELF(self)));
|
130
|
+
}
|
131
|
+
|
132
|
+
static VALUE
|
133
|
+
rg_accel_closure(VALUE self)
|
134
|
+
{
|
135
|
+
return GCLOSURE2RVAL(gtk_action_get_accel_closure(_SELF(self)));
|
136
|
+
}
|
137
|
+
|
138
|
+
static void
|
139
|
+
action_mark(void *p)
|
140
|
+
{
|
141
|
+
GtkAction *action;
|
142
|
+
GSList *node;
|
143
|
+
|
144
|
+
action = GTK_ACTION(p);
|
145
|
+
for (node = gtk_action_get_proxies(action);
|
146
|
+
node;
|
147
|
+
node = g_slist_next(node)) {
|
148
|
+
GtkWidget *proxy = node->data;
|
149
|
+
rbgobj_gc_mark_instance(proxy);
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
static VALUE
|
154
|
+
rg_unblock_activate(VALUE self)
|
155
|
+
{
|
156
|
+
gtk_action_unblock_activate(_SELF(self));
|
157
|
+
|
158
|
+
return self;
|
159
|
+
}
|
160
|
+
|
161
|
+
static VALUE
|
162
|
+
rg_block_activate(VALUE self)
|
163
|
+
{
|
164
|
+
gtk_action_block_activate(_SELF(self));
|
165
|
+
if (rb_block_given_p())
|
166
|
+
rb_ensure(rb_yield, self, rg_unblock_activate, self);
|
167
|
+
|
168
|
+
return self;
|
169
|
+
}
|
170
|
+
|
171
|
+
void
|
172
|
+
Init_gtk_action(VALUE mGtk)
|
173
|
+
{
|
174
|
+
VALUE RG_TARGET_NAMESPACE;
|
175
|
+
|
176
|
+
RG_TARGET_NAMESPACE = G_DEF_CLASS_WITH_GC_FUNC(GTK_TYPE_ACTION, "Action", mGtk,
|
177
|
+
action_mark, NULL);
|
178
|
+
|
179
|
+
RG_DEF_METHOD(initialize, -1);
|
180
|
+
/* (NOTICE) Gtk::Action#is_sensitive?, #is_visible are special.
|
181
|
+
Because there are also Gtk::Action#sensitive?, #visible? as property
|
182
|
+
accessors.
|
183
|
+
Gtk::Action#is_sensitive?, #is_visible? check its associated
|
184
|
+
action group.
|
185
|
+
Gtk::Action#sensitive?, #visible? returns the value of the properties.
|
186
|
+
*/
|
187
|
+
RG_DEF_METHOD_P(is_sensitive, 0);
|
188
|
+
RG_DEF_METHOD_P(is_visible, 0);
|
189
|
+
RG_DEF_METHOD(activate, 0);
|
190
|
+
RG_DEF_METHOD(create_icon, 1);
|
191
|
+
RG_DEF_METHOD(create_menu_item, 0);
|
192
|
+
RG_DEF_METHOD(create_menu, 0);
|
193
|
+
RG_DEF_METHOD(create_tool_item, 0);
|
194
|
+
RG_DEF_METHOD(proxies, 0);
|
195
|
+
RG_DEF_METHOD(connect_accelerator, 0);
|
196
|
+
RG_DEF_METHOD(disconnect_accelerator, 0);
|
197
|
+
RG_DEF_METHOD(set_accel_path, 1);
|
198
|
+
RG_DEF_METHOD(set_accel_group, 1);
|
199
|
+
RG_DEF_METHOD(accel_path, 0);
|
200
|
+
RG_DEF_METHOD(accel_closure, 0);
|
201
|
+
RG_DEF_METHOD(block_activate, 0);
|
202
|
+
RG_DEF_METHOD(unblock_activate, 0);
|
203
|
+
|
204
|
+
RG_REG_GLIBID_SETTER("stock-id");
|
205
|
+
}
|
@@ -0,0 +1,466 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2004-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
|
+
static ID id_action_procs;
|
25
|
+
static ID id_toggle_action_procs;
|
26
|
+
|
27
|
+
#define RG_TARGET_NAMESPACE cActionGroup
|
28
|
+
#define _SELF(self) (RVAL2GTKACTIONGROUP(self))
|
29
|
+
|
30
|
+
static VALUE
|
31
|
+
rg_initialize(VALUE self, VALUE name)
|
32
|
+
{
|
33
|
+
G_INITIALIZE(self, gtk_action_group_new(RVAL2CSTR(name)));
|
34
|
+
return Qnil;
|
35
|
+
}
|
36
|
+
|
37
|
+
static VALUE
|
38
|
+
rg_get_action(VALUE self, VALUE action_name)
|
39
|
+
{
|
40
|
+
return GOBJ2RVAL(gtk_action_group_get_action(_SELF(self), RVAL2CSTR(action_name)));
|
41
|
+
}
|
42
|
+
|
43
|
+
static VALUE
|
44
|
+
rg_actions(VALUE self)
|
45
|
+
{
|
46
|
+
/* TODO: need free? */
|
47
|
+
return GOBJGLIST2RVAL_FREE(gtk_action_group_list_actions(_SELF(self)),
|
48
|
+
g_list_free, NULL);
|
49
|
+
}
|
50
|
+
|
51
|
+
static VALUE
|
52
|
+
rg_add_action(int argc, VALUE *argv, VALUE self)
|
53
|
+
{
|
54
|
+
VALUE action, accelerator;
|
55
|
+
|
56
|
+
rb_scan_args(argc, argv, "11", &action, &accelerator);
|
57
|
+
|
58
|
+
gtk_action_group_add_action_with_accel(_SELF(self),
|
59
|
+
RVAL2GTKACTION(action),
|
60
|
+
RVAL2CSTR_ACCEPT_NIL(accelerator));
|
61
|
+
G_CHILD_ADD(self, action);
|
62
|
+
|
63
|
+
return self;
|
64
|
+
}
|
65
|
+
|
66
|
+
static VALUE
|
67
|
+
rg_remove_action(VALUE self, VALUE action)
|
68
|
+
{
|
69
|
+
gtk_action_group_remove_action(_SELF(self), RVAL2GTKACTION(action));
|
70
|
+
G_CHILD_REMOVE(self, action);
|
71
|
+
return self;
|
72
|
+
}
|
73
|
+
|
74
|
+
static void
|
75
|
+
activate_action(GtkAction *action, VALUE self)
|
76
|
+
{
|
77
|
+
VALUE proc = rb_hash_aref(rb_ivar_get(self, id_action_procs),
|
78
|
+
CSTR2RVAL(gtk_action_get_name(action)));
|
79
|
+
|
80
|
+
if (!NIL_P(proc))
|
81
|
+
rb_funcall(proc, id_call, 2, self, GOBJ2RVAL(action));
|
82
|
+
}
|
83
|
+
|
84
|
+
struct rbg_rval2gtkactionentries_args {
|
85
|
+
VALUE ary;
|
86
|
+
long n;
|
87
|
+
GtkActionEntry *result;
|
88
|
+
VALUE procs;
|
89
|
+
};
|
90
|
+
|
91
|
+
static VALUE
|
92
|
+
rbg_rval2gtkactionentries_body(VALUE value)
|
93
|
+
{
|
94
|
+
long i;
|
95
|
+
struct rbg_rval2gtkactionentries_args *args = (struct rbg_rval2gtkactionentries_args *)value;
|
96
|
+
|
97
|
+
for (i = 0; i < args->n; i++) {
|
98
|
+
VALUE entry;
|
99
|
+
long n;
|
100
|
+
|
101
|
+
RARRAY_PTR(args->ary)[i] = rb_ary_dup(rb_ary_to_ary(RARRAY_PTR(args->ary)[i]));
|
102
|
+
entry = RARRAY_PTR(args->ary)[i];
|
103
|
+
n = RARRAY_LEN(entry);
|
104
|
+
|
105
|
+
args->result[i].callback = G_CALLBACK(activate_action);
|
106
|
+
|
107
|
+
if (n < 1 || n > 6)
|
108
|
+
rb_raise(rb_eArgError, "entry does not contain right number of entries %ld (1..6)", n);
|
109
|
+
|
110
|
+
args->result[i].name = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[0]);
|
111
|
+
|
112
|
+
switch (n) {
|
113
|
+
case 6:
|
114
|
+
/* TODO: Call #to_proc on entry 5? */
|
115
|
+
rb_hash_aset(args->procs, RARRAY_PTR(entry)[0], RARRAY_PTR(entry)[5]);
|
116
|
+
case 5:
|
117
|
+
args->result[i].tooltip = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[4]);
|
118
|
+
case 4:
|
119
|
+
args->result[i].accelerator = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[3]);
|
120
|
+
case 3:
|
121
|
+
args->result[i].label = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[2]);
|
122
|
+
case 2:
|
123
|
+
args->result[i].stock_id = RVAL2CSTR_ACCEPT_SYMBOL_ACCEPT_NIL(RARRAY_PTR(entry)[1]);
|
124
|
+
break;
|
125
|
+
default:
|
126
|
+
break;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
|
130
|
+
return Qnil;
|
131
|
+
}
|
132
|
+
|
133
|
+
static G_GNUC_NORETURN VALUE
|
134
|
+
rbg_rval2gtkactionentries_rescue(VALUE value)
|
135
|
+
{
|
136
|
+
g_free(((struct rbg_rval2gtkactionentries_args *)value)->result);
|
137
|
+
|
138
|
+
rb_exc_raise(rb_errinfo());
|
139
|
+
}
|
140
|
+
|
141
|
+
static GtkActionEntry *
|
142
|
+
rbg_rval2gtkactionentries(volatile VALUE *value, long *n, VALUE procs)
|
143
|
+
{
|
144
|
+
struct rbg_rval2gtkactionentries_args args;
|
145
|
+
|
146
|
+
args.ary = *value = rb_ary_dup(rb_ary_to_ary(*value));
|
147
|
+
args.n = RARRAY_LEN(args.ary);
|
148
|
+
args.result = g_new0(GtkActionEntry, args.n + 1);
|
149
|
+
args.procs = procs;
|
150
|
+
|
151
|
+
rb_rescue(rbg_rval2gtkactionentries_body, (VALUE)&args,
|
152
|
+
rbg_rval2gtkactionentries_rescue, (VALUE)&args);
|
153
|
+
|
154
|
+
*n = args.n;
|
155
|
+
|
156
|
+
return args.result;
|
157
|
+
}
|
158
|
+
|
159
|
+
#define RVAL2GTKACTIONENTRIES(value, n, procs) rbg_rval2gtkactionentries(&(value), &(n), procs)
|
160
|
+
|
161
|
+
static VALUE
|
162
|
+
rg_add_actions(VALUE self, VALUE rbentries)
|
163
|
+
{
|
164
|
+
GtkActionGroup *group = _SELF(self);
|
165
|
+
VALUE action_procs = rb_ivar_defined(self, id_action_procs) == Qtrue ?
|
166
|
+
rb_ivar_get(self, id_action_procs) :
|
167
|
+
rb_hash_new();
|
168
|
+
long n;
|
169
|
+
GtkActionEntry *entries = RVAL2GTKACTIONENTRIES(rbentries, n, action_procs);
|
170
|
+
|
171
|
+
rb_ivar_set(self, id_action_procs, action_procs);
|
172
|
+
|
173
|
+
gtk_action_group_add_actions(group, entries, n, (gpointer)self);
|
174
|
+
|
175
|
+
g_free(entries);
|
176
|
+
|
177
|
+
return self;
|
178
|
+
}
|
179
|
+
|
180
|
+
static void
|
181
|
+
activate_toggle_action(GtkAction *action, VALUE self)
|
182
|
+
{
|
183
|
+
VALUE proc = rb_hash_aref(rb_ivar_get(self, id_toggle_action_procs),
|
184
|
+
CSTR2RVAL(gtk_action_get_name(action)));
|
185
|
+
|
186
|
+
if (!NIL_P(proc))
|
187
|
+
rb_funcall(proc, id_call, 2, self, GOBJ2RVAL(action));
|
188
|
+
}
|
189
|
+
|
190
|
+
struct rbg_rval2gtktoggleactionentries_args {
|
191
|
+
VALUE ary;
|
192
|
+
long n;
|
193
|
+
GtkToggleActionEntry *result;
|
194
|
+
VALUE procs;
|
195
|
+
};
|
196
|
+
|
197
|
+
static VALUE
|
198
|
+
rbg_rval2gtktoggleactionentries_body(VALUE value)
|
199
|
+
{
|
200
|
+
long i;
|
201
|
+
struct rbg_rval2gtktoggleactionentries_args *args = (struct rbg_rval2gtktoggleactionentries_args *)value;
|
202
|
+
|
203
|
+
for (i = 0; i < args->n; i++) {
|
204
|
+
VALUE entry;
|
205
|
+
long n;
|
206
|
+
|
207
|
+
RARRAY_PTR(args->ary)[i] = rb_ary_dup(rb_ary_to_ary(RARRAY_PTR(args->ary)[i]));
|
208
|
+
entry = RARRAY_PTR(args->ary)[i];
|
209
|
+
n = RARRAY_LEN(entry);
|
210
|
+
|
211
|
+
args->result[i].callback = G_CALLBACK(activate_toggle_action);
|
212
|
+
|
213
|
+
if (n < 1 || n > 7)
|
214
|
+
rb_raise(rb_eArgError, "entry does not contain right number of entries %ld (1..7)", n);
|
215
|
+
|
216
|
+
args->result[i].name = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[0]);
|
217
|
+
|
218
|
+
switch (n) {
|
219
|
+
case 7:
|
220
|
+
args->result[i].is_active = RVAL2CBOOL(RARRAY_PTR(entry)[6]);
|
221
|
+
case 6:
|
222
|
+
/* TODO: Call #to_proc on entry 5? */
|
223
|
+
rb_hash_aset(args->procs, RARRAY_PTR(entry)[0], RARRAY_PTR(entry)[5]);
|
224
|
+
case 5:
|
225
|
+
args->result[i].tooltip = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[4]);
|
226
|
+
case 4:
|
227
|
+
args->result[i].accelerator = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[3]);
|
228
|
+
case 3:
|
229
|
+
args->result[i].label = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[2]);
|
230
|
+
case 2:
|
231
|
+
args->result[i].stock_id = RVAL2CSTR_ACCEPT_SYMBOL_ACCEPT_NIL(RARRAY_PTR(entry)[1]);
|
232
|
+
break;
|
233
|
+
default:
|
234
|
+
break;
|
235
|
+
}
|
236
|
+
}
|
237
|
+
|
238
|
+
return Qnil;
|
239
|
+
}
|
240
|
+
|
241
|
+
static G_GNUC_NORETURN VALUE
|
242
|
+
rbg_rval2gtktoggleactionentries_rescue(VALUE value)
|
243
|
+
{
|
244
|
+
g_free(((struct rbg_rval2gtktoggleactionentries_args *)value)->result);
|
245
|
+
|
246
|
+
rb_exc_raise(rb_errinfo());
|
247
|
+
}
|
248
|
+
|
249
|
+
static GtkToggleActionEntry *
|
250
|
+
rbg_rval2gtktoggleactionentries(volatile VALUE *value, long *n, VALUE procs)
|
251
|
+
{
|
252
|
+
struct rbg_rval2gtktoggleactionentries_args args;
|
253
|
+
|
254
|
+
args.ary = *value = rb_ary_dup(rb_ary_to_ary(*value));
|
255
|
+
args.n = RARRAY_LEN(args.ary);
|
256
|
+
args.result = g_new0(GtkToggleActionEntry, args.n + 1);
|
257
|
+
args.procs = procs;
|
258
|
+
|
259
|
+
rb_rescue(rbg_rval2gtktoggleactionentries_body, (VALUE)&args,
|
260
|
+
rbg_rval2gtktoggleactionentries_rescue, (VALUE)&args);
|
261
|
+
|
262
|
+
*n = args.n;
|
263
|
+
|
264
|
+
return args.result;
|
265
|
+
}
|
266
|
+
|
267
|
+
#define RVAL2GTKTOGGLEACTIONENTRIES(value, n, procs) rbg_rval2gtktoggleactionentries(&(value), &(n), procs)
|
268
|
+
|
269
|
+
static VALUE
|
270
|
+
rg_add_toggle_actions(VALUE self, VALUE rbentries)
|
271
|
+
{
|
272
|
+
GtkActionGroup *group = _SELF(self);
|
273
|
+
VALUE toggle_action_procs = rb_ivar_defined(self, id_toggle_action_procs) == Qtrue ?
|
274
|
+
rb_ivar_get(self, id_toggle_action_procs) :
|
275
|
+
rb_hash_new();
|
276
|
+
long n;
|
277
|
+
GtkToggleActionEntry *entries = RVAL2GTKTOGGLEACTIONENTRIES(rbentries, n, toggle_action_procs);
|
278
|
+
|
279
|
+
rb_ivar_set(self, id_toggle_action_procs, toggle_action_procs);
|
280
|
+
|
281
|
+
gtk_action_group_add_toggle_actions(group, entries, n, (gpointer)self);
|
282
|
+
|
283
|
+
g_free(entries);
|
284
|
+
|
285
|
+
return self;
|
286
|
+
}
|
287
|
+
|
288
|
+
static void
|
289
|
+
activate_radio_action(GtkAction *action, GtkRadioAction *current, VALUE proc)
|
290
|
+
{
|
291
|
+
if (!NIL_P(proc))
|
292
|
+
rb_funcall(proc, id_call, 2, GOBJ2RVAL(action), GOBJ2RVAL(current));
|
293
|
+
}
|
294
|
+
|
295
|
+
struct rbg_rval2gtkradioactionentries_args {
|
296
|
+
VALUE ary;
|
297
|
+
long n;
|
298
|
+
GtkRadioActionEntry *result;
|
299
|
+
};
|
300
|
+
|
301
|
+
static VALUE
|
302
|
+
rbg_rval2gtkradioactionentries_body(VALUE value)
|
303
|
+
{
|
304
|
+
long i;
|
305
|
+
struct rbg_rval2gtkradioactionentries_args *args = (struct rbg_rval2gtkradioactionentries_args *)value;
|
306
|
+
|
307
|
+
for (i = 0; i < args->n; i++) {
|
308
|
+
VALUE entry;
|
309
|
+
long n;
|
310
|
+
|
311
|
+
RARRAY_PTR(args->ary)[i] = rb_ary_dup(rb_ary_to_ary(RARRAY_PTR(args->ary)[i]));
|
312
|
+
entry = RARRAY_PTR(args->ary)[i];
|
313
|
+
n = RARRAY_LEN(entry);
|
314
|
+
|
315
|
+
switch (n) {
|
316
|
+
case 6:
|
317
|
+
args->result[i].value = NUM2INT(RARRAY_PTR(entry)[5]);
|
318
|
+
case 5:
|
319
|
+
args->result[i].tooltip = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[4]);
|
320
|
+
case 4:
|
321
|
+
args->result[i].accelerator = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[3]);
|
322
|
+
case 3:
|
323
|
+
args->result[i].label = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[2]);
|
324
|
+
case 2:
|
325
|
+
args->result[i].stock_id = RVAL2CSTR_ACCEPT_SYMBOL_ACCEPT_NIL(RARRAY_PTR(entry)[1]);
|
326
|
+
case 1:
|
327
|
+
args->result[i].name = RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[0]);
|
328
|
+
default:
|
329
|
+
rb_raise(rb_eArgError, "entry does not contain right number of entries %ld (1..6)", n);
|
330
|
+
}
|
331
|
+
}
|
332
|
+
|
333
|
+
return Qnil;
|
334
|
+
}
|
335
|
+
|
336
|
+
static G_GNUC_NORETURN VALUE
|
337
|
+
rbg_rval2gtkradioactionentries_rescue(VALUE value)
|
338
|
+
{
|
339
|
+
g_free(((struct rbg_rval2gtkradioactionentries_args *)value)->result);
|
340
|
+
|
341
|
+
rb_exc_raise(rb_errinfo());
|
342
|
+
}
|
343
|
+
|
344
|
+
static GtkRadioActionEntry *
|
345
|
+
rbg_rval2gtkradioactionentries(volatile VALUE *value, long *n)
|
346
|
+
{
|
347
|
+
struct rbg_rval2gtkradioactionentries_args args;
|
348
|
+
|
349
|
+
args.ary = *value = rb_ary_dup(rb_ary_to_ary(*value));
|
350
|
+
args.n = RARRAY_LEN(args.ary);
|
351
|
+
args.result = g_new0(GtkRadioActionEntry, args.n + 1);
|
352
|
+
|
353
|
+
rb_rescue(rbg_rval2gtkradioactionentries_body, (VALUE)&args,
|
354
|
+
rbg_rval2gtkradioactionentries_rescue, (VALUE)&args);
|
355
|
+
|
356
|
+
*n = args.n;
|
357
|
+
|
358
|
+
return args.result;
|
359
|
+
}
|
360
|
+
|
361
|
+
#define RVAL2GTKRADIOACTIONENTRIES(value, n) rbg_rval2gtkradioactionentries(&(value), &(n))
|
362
|
+
|
363
|
+
static VALUE
|
364
|
+
rg_add_radio_actions(int argc, VALUE *argv, VALUE self)
|
365
|
+
{
|
366
|
+
GtkActionGroup *group = _SELF(self);
|
367
|
+
VALUE rbentries, rbvalue, proc;
|
368
|
+
long n;
|
369
|
+
GtkRadioActionEntry *entries;
|
370
|
+
gint value;
|
371
|
+
|
372
|
+
rb_scan_args(argc, argv, "12", &rbentries, &rbvalue, &proc);
|
373
|
+
|
374
|
+
value = NIL_P(rbvalue) ? -1 : NUM2INT(rbvalue);
|
375
|
+
|
376
|
+
if (NIL_P(proc) && rb_block_given_p()) {
|
377
|
+
proc = rb_block_proc();
|
378
|
+
/* TODO: How do we remove this proc when all the radio actions passed
|
379
|
+
* have been removed? */
|
380
|
+
G_RELATIVE(self, proc);
|
381
|
+
}
|
382
|
+
|
383
|
+
entries = RVAL2GTKRADIOACTIONENTRIES(rbentries, n);
|
384
|
+
|
385
|
+
gtk_action_group_add_radio_actions(group,
|
386
|
+
entries,
|
387
|
+
n,
|
388
|
+
value,
|
389
|
+
G_CALLBACK(activate_radio_action),
|
390
|
+
(gpointer)proc);
|
391
|
+
|
392
|
+
g_free(entries);
|
393
|
+
|
394
|
+
return self;
|
395
|
+
}
|
396
|
+
|
397
|
+
static gchar *
|
398
|
+
translate_func(const gchar *path, gpointer func)
|
399
|
+
{
|
400
|
+
VALUE ret = rb_funcall((VALUE)func, id_call, 1, CSTR2RVAL(path));
|
401
|
+
return (gchar *)RVAL2CSTR(ret);
|
402
|
+
}
|
403
|
+
|
404
|
+
static VALUE
|
405
|
+
rg_set_translate_func(VALUE self)
|
406
|
+
{
|
407
|
+
VALUE func = rb_block_proc();
|
408
|
+
G_RELATIVE(self, func);
|
409
|
+
gtk_action_group_set_translate_func(_SELF(self),
|
410
|
+
(GtkTranslateFunc)translate_func,
|
411
|
+
(gpointer)func, NULL);
|
412
|
+
return self;
|
413
|
+
}
|
414
|
+
|
415
|
+
static VALUE
|
416
|
+
rg_set_translation_domain(VALUE self, VALUE domain)
|
417
|
+
{
|
418
|
+
gtk_action_group_set_translation_domain(_SELF(self),
|
419
|
+
RVAL2CSTR_ACCEPT_NIL(domain));
|
420
|
+
return self;
|
421
|
+
}
|
422
|
+
|
423
|
+
static VALUE
|
424
|
+
rg_translate_string(VALUE self, VALUE str)
|
425
|
+
{
|
426
|
+
return CSTR2RVAL(gtk_action_group_translate_string(_SELF(self), RVAL2CSTR(str)));
|
427
|
+
}
|
428
|
+
|
429
|
+
static void
|
430
|
+
action_group_mark(void *p)
|
431
|
+
{
|
432
|
+
GtkActionGroup *group;
|
433
|
+
GList *actions, *node;
|
434
|
+
|
435
|
+
group = GTK_ACTION_GROUP(p);
|
436
|
+
actions = gtk_action_group_list_actions(group);
|
437
|
+
for (node = actions; node; node = g_list_next(node)) {
|
438
|
+
GtkWidget *action = node->data;
|
439
|
+
rbgobj_gc_mark_instance(action);
|
440
|
+
}
|
441
|
+
g_list_free(actions);
|
442
|
+
}
|
443
|
+
|
444
|
+
void
|
445
|
+
Init_gtk_actiongroup(VALUE mGtk)
|
446
|
+
{
|
447
|
+
VALUE RG_TARGET_NAMESPACE;
|
448
|
+
|
449
|
+
RG_TARGET_NAMESPACE = G_DEF_CLASS_WITH_GC_FUNC(GTK_TYPE_ACTION_GROUP, "ActionGroup",
|
450
|
+
mGtk, action_group_mark, NULL);
|
451
|
+
|
452
|
+
id_action_procs = rb_intern("@action_procs");
|
453
|
+
id_toggle_action_procs = rb_intern("@toggle_action_procs");
|
454
|
+
|
455
|
+
RG_DEF_METHOD(initialize, 1);
|
456
|
+
RG_DEF_METHOD(get_action, 1);
|
457
|
+
RG_DEF_METHOD(actions, 0);
|
458
|
+
RG_DEF_METHOD(add_action, -1);
|
459
|
+
RG_DEF_METHOD(remove_action, 1);
|
460
|
+
RG_DEF_METHOD(add_actions, 1);
|
461
|
+
RG_DEF_METHOD(add_toggle_actions, 1);
|
462
|
+
RG_DEF_METHOD(add_radio_actions, -1);
|
463
|
+
RG_DEF_METHOD(set_translate_func, 0);
|
464
|
+
RG_DEF_METHOD(set_translation_domain, 1);
|
465
|
+
RG_DEF_METHOD(translate_string, 1);
|
466
|
+
}
|