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,200 @@
|
|
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
|
+
/*****************************************/
|
25
|
+
static GtkRecentFilterInfo*
|
26
|
+
rf_copy(const GtkRecentFilterInfo* info)
|
27
|
+
{
|
28
|
+
GtkRecentFilterInfo* new_info;
|
29
|
+
g_return_val_if_fail (info != NULL, NULL);
|
30
|
+
new_info = g_new(GtkRecentFilterInfo, 1);
|
31
|
+
*new_info = *info;
|
32
|
+
return new_info;
|
33
|
+
}
|
34
|
+
|
35
|
+
static void
|
36
|
+
rf_free(GtkRecentFilterInfo* boxed)
|
37
|
+
{
|
38
|
+
if (boxed){
|
39
|
+
g_free(boxed->applications);
|
40
|
+
g_free(boxed->groups);
|
41
|
+
g_free(boxed);
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
GType
|
46
|
+
gtk_recent_filter_info_get_type(void)
|
47
|
+
{
|
48
|
+
static GType our_type = 0;
|
49
|
+
if (our_type == 0)
|
50
|
+
our_type = g_boxed_type_register_static ("GtkRecentFilterInfo",
|
51
|
+
(GBoxedCopyFunc)rf_copy,
|
52
|
+
(GBoxedFreeFunc)rf_free);
|
53
|
+
return our_type;
|
54
|
+
}
|
55
|
+
/*****************************************/
|
56
|
+
|
57
|
+
#define RG_TARGET_NAMESPACE cRecentFilterInfo
|
58
|
+
#define _SELF(w) (RVAL2GTKRECENTFILTERINFO(w))
|
59
|
+
|
60
|
+
static VALUE
|
61
|
+
rg_initialize(VALUE self)
|
62
|
+
{
|
63
|
+
GtkRecentFilterInfo finfo;
|
64
|
+
G_INITIALIZE(self, &finfo);
|
65
|
+
return Qnil;
|
66
|
+
}
|
67
|
+
|
68
|
+
static VALUE
|
69
|
+
rg_contains(VALUE self)
|
70
|
+
{
|
71
|
+
return GTKRECENTFILTERFLAGS2RVAL(_SELF(self)->contains);
|
72
|
+
}
|
73
|
+
|
74
|
+
static VALUE
|
75
|
+
rg_set_contains(VALUE self, VALUE contains)
|
76
|
+
{
|
77
|
+
_SELF(self)->contains = RVAL2GTKRECENTFILTERFLAGS(contains);
|
78
|
+
return self;
|
79
|
+
}
|
80
|
+
|
81
|
+
static VALUE
|
82
|
+
rg_uri(VALUE self)
|
83
|
+
{
|
84
|
+
return CSTR2RVAL(_SELF(self)->uri);
|
85
|
+
}
|
86
|
+
|
87
|
+
static VALUE
|
88
|
+
rg_set_uri(VALUE self, VALUE val)
|
89
|
+
{
|
90
|
+
_SELF(self)->uri = RVAL2CSTR(val);
|
91
|
+
return self;
|
92
|
+
}
|
93
|
+
|
94
|
+
static VALUE
|
95
|
+
rg_display_name(VALUE self)
|
96
|
+
{
|
97
|
+
return CSTR2RVAL(_SELF(self)->display_name);
|
98
|
+
}
|
99
|
+
|
100
|
+
static VALUE
|
101
|
+
rg_set_display_name(VALUE self, VALUE val)
|
102
|
+
{
|
103
|
+
_SELF(self)->display_name = RVAL2CSTR(val);
|
104
|
+
return self;
|
105
|
+
}
|
106
|
+
|
107
|
+
static VALUE
|
108
|
+
rg_mime_type(VALUE self)
|
109
|
+
{
|
110
|
+
return CSTR2RVAL(_SELF(self)->mime_type);
|
111
|
+
}
|
112
|
+
|
113
|
+
static VALUE
|
114
|
+
rg_set_mime_type(VALUE self, VALUE val)
|
115
|
+
{
|
116
|
+
_SELF(self)->mime_type = RVAL2CSTR(val);
|
117
|
+
return self;
|
118
|
+
}
|
119
|
+
|
120
|
+
static VALUE
|
121
|
+
rg_applications(VALUE self)
|
122
|
+
{
|
123
|
+
const gchar** apps = _SELF(self)->applications;
|
124
|
+
VALUE ary = rb_ary_new();
|
125
|
+
|
126
|
+
gint i = 0;
|
127
|
+
while (apps[i]) {
|
128
|
+
rb_ary_push(ary, CSTR2RVAL((gchar*)apps[i]));
|
129
|
+
i++;
|
130
|
+
}
|
131
|
+
return ary;
|
132
|
+
}
|
133
|
+
|
134
|
+
static VALUE
|
135
|
+
rg_set_applications(VALUE self, VALUE applications)
|
136
|
+
{
|
137
|
+
/* NOTE: This can't be right. What guarantees that the entries in
|
138
|
+
* applications will be around? It should be RVAL2STRV_DUP and use
|
139
|
+
* g_strfreev in free above. */
|
140
|
+
_SELF(self)->applications = RVAL2STRV(applications);
|
141
|
+
|
142
|
+
return self;
|
143
|
+
}
|
144
|
+
|
145
|
+
static VALUE
|
146
|
+
rg_groups(VALUE self)
|
147
|
+
{
|
148
|
+
const gchar** grps = _SELF(self)->groups;
|
149
|
+
VALUE ary = rb_ary_new();
|
150
|
+
|
151
|
+
gint i = 0;
|
152
|
+
while (grps[i]) {
|
153
|
+
rb_ary_push(ary, CSTR2RVAL((gchar*)grps[i]));
|
154
|
+
i++;
|
155
|
+
}
|
156
|
+
return ary;
|
157
|
+
}
|
158
|
+
|
159
|
+
static VALUE
|
160
|
+
rg_set_groups(VALUE self, VALUE groups)
|
161
|
+
{
|
162
|
+
_SELF(self)->groups = RVAL2STRV(groups);
|
163
|
+
|
164
|
+
return self;
|
165
|
+
}
|
166
|
+
|
167
|
+
static VALUE
|
168
|
+
rg_age(VALUE self)
|
169
|
+
{
|
170
|
+
return INT2NUM(_SELF(self)->age);
|
171
|
+
}
|
172
|
+
|
173
|
+
static VALUE
|
174
|
+
rg_set_age(VALUE self, VALUE age)
|
175
|
+
{
|
176
|
+
_SELF(self)->age = NUM2INT(age);
|
177
|
+
return self;
|
178
|
+
}
|
179
|
+
|
180
|
+
void
|
181
|
+
Init_gtk_recent_filter_info(VALUE mGtk)
|
182
|
+
{
|
183
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_RECENT_FILTER_INFO, "RecentFilterInfo", mGtk);
|
184
|
+
|
185
|
+
RG_DEF_METHOD(initialize, 0);
|
186
|
+
RG_DEF_METHOD(contains, 0);
|
187
|
+
RG_DEF_METHOD(set_contains, 1);
|
188
|
+
RG_DEF_METHOD(uri, 0);
|
189
|
+
RG_DEF_METHOD(set_uri, 1);
|
190
|
+
RG_DEF_METHOD(display_name, 0);
|
191
|
+
RG_DEF_METHOD(set_display_name, 1);
|
192
|
+
RG_DEF_METHOD(mime_type, 0);
|
193
|
+
RG_DEF_METHOD(set_mime_type, 1);
|
194
|
+
RG_DEF_METHOD(applications, 0);
|
195
|
+
RG_DEF_METHOD(set_applications, 1);
|
196
|
+
RG_DEF_METHOD(groups, 0);
|
197
|
+
RG_DEF_METHOD(set_groups, 1);
|
198
|
+
RG_DEF_METHOD(age, 0);
|
199
|
+
RG_DEF_METHOD(set_age, 1);
|
200
|
+
}
|
@@ -0,0 +1,213 @@
|
|
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 cRecentInfo
|
25
|
+
#define _SELF(self) (RVAL2GTKRECENTINFO(self))
|
26
|
+
|
27
|
+
static VALUE
|
28
|
+
rg_uri(VALUE self)
|
29
|
+
{
|
30
|
+
return CSTR2RVAL(gtk_recent_info_get_uri(_SELF(self)));
|
31
|
+
}
|
32
|
+
|
33
|
+
static VALUE
|
34
|
+
rg_display_name(VALUE self)
|
35
|
+
{
|
36
|
+
return CSTR2RVAL(gtk_recent_info_get_display_name(_SELF(self)));
|
37
|
+
}
|
38
|
+
|
39
|
+
static VALUE
|
40
|
+
rg_description(VALUE self)
|
41
|
+
{
|
42
|
+
return CSTR2RVAL(gtk_recent_info_get_description(_SELF(self)));
|
43
|
+
}
|
44
|
+
|
45
|
+
static VALUE
|
46
|
+
rg_mime_type(VALUE self)
|
47
|
+
{
|
48
|
+
return CSTR2RVAL(gtk_recent_info_get_mime_type(_SELF(self)));
|
49
|
+
}
|
50
|
+
|
51
|
+
static VALUE
|
52
|
+
rg_added(VALUE self)
|
53
|
+
{
|
54
|
+
time_t t = gtk_recent_info_get_added(_SELF(self));
|
55
|
+
return rb_funcall(rb_cTime, rb_intern("at"), 1, INT2NUM(t));
|
56
|
+
}
|
57
|
+
|
58
|
+
static VALUE
|
59
|
+
rg_modified(VALUE self)
|
60
|
+
{
|
61
|
+
time_t t = gtk_recent_info_get_modified(_SELF(self));
|
62
|
+
return rb_funcall(rb_cTime, rb_intern("at"), 1, INT2NUM(t));
|
63
|
+
}
|
64
|
+
|
65
|
+
static VALUE
|
66
|
+
rg_visited(VALUE self)
|
67
|
+
{
|
68
|
+
time_t t = gtk_recent_info_get_visited(_SELF(self));
|
69
|
+
return rb_funcall(rb_cTime, rb_intern("at"), 1, INT2NUM(t));
|
70
|
+
}
|
71
|
+
|
72
|
+
static VALUE
|
73
|
+
rg_private_hint_p(VALUE self)
|
74
|
+
{
|
75
|
+
return CBOOL2RVAL(gtk_recent_info_get_private_hint(_SELF(self)));
|
76
|
+
}
|
77
|
+
|
78
|
+
static VALUE
|
79
|
+
rg_application_info(VALUE self, VALUE app_name)
|
80
|
+
{
|
81
|
+
const gchar *app_exec;
|
82
|
+
guint count;
|
83
|
+
time_t t;
|
84
|
+
gboolean ret = gtk_recent_info_get_application_info(_SELF(self),
|
85
|
+
RVAL2CSTR(app_name),
|
86
|
+
&app_exec,
|
87
|
+
&count,
|
88
|
+
&t);
|
89
|
+
VALUE ary = rb_ary_new();
|
90
|
+
if (ret){
|
91
|
+
rb_ary_push(ary, CSTR2RVAL(app_exec));
|
92
|
+
rb_ary_push(ary, UINT2NUM(count));
|
93
|
+
rb_ary_push(ary, rb_funcall(rb_cTime, rb_intern("at"), 1, INT2NUM(t)));
|
94
|
+
}
|
95
|
+
return ary;
|
96
|
+
}
|
97
|
+
|
98
|
+
static VALUE
|
99
|
+
rg_applications(VALUE self)
|
100
|
+
{
|
101
|
+
gsize i;
|
102
|
+
gsize length;
|
103
|
+
gchar** str = gtk_recent_info_get_applications(_SELF(self), &length);
|
104
|
+
VALUE ary = rb_ary_new();
|
105
|
+
for(i = 0; i < length; i++){
|
106
|
+
rb_ary_push(ary, CSTR2RVAL(str[i]));
|
107
|
+
}
|
108
|
+
g_strfreev(str);
|
109
|
+
return ary;
|
110
|
+
}
|
111
|
+
|
112
|
+
static VALUE
|
113
|
+
rg_last_application(VALUE self)
|
114
|
+
{
|
115
|
+
return CSTR2RVAL(gtk_recent_info_last_application(_SELF(self)));
|
116
|
+
}
|
117
|
+
|
118
|
+
static VALUE
|
119
|
+
rg_groups(VALUE self)
|
120
|
+
{
|
121
|
+
gsize i;
|
122
|
+
gsize length;
|
123
|
+
gchar** str = gtk_recent_info_get_groups(_SELF(self), &length);
|
124
|
+
VALUE ary = rb_ary_new();
|
125
|
+
for(i = 0; i < length; i++){
|
126
|
+
rb_ary_push(ary, CSTR2RVAL(str[i]));
|
127
|
+
}
|
128
|
+
g_strfreev(str);
|
129
|
+
return ary;
|
130
|
+
}
|
131
|
+
|
132
|
+
static VALUE
|
133
|
+
rg_has_group_p(VALUE self, VALUE group_name)
|
134
|
+
{
|
135
|
+
return CBOOL2RVAL(gtk_recent_info_has_group(_SELF(self),
|
136
|
+
RVAL2CSTR(group_name)));
|
137
|
+
}
|
138
|
+
|
139
|
+
static VALUE
|
140
|
+
rg_has_application_p(VALUE self, VALUE app_name)
|
141
|
+
{
|
142
|
+
return CBOOL2RVAL(gtk_recent_info_has_application(_SELF(self),
|
143
|
+
RVAL2CSTR(app_name)));
|
144
|
+
}
|
145
|
+
|
146
|
+
static VALUE
|
147
|
+
rg_get_icon(VALUE self, VALUE size)
|
148
|
+
{
|
149
|
+
return GOBJ2RVAL(gtk_recent_info_get_icon(_SELF(self), NUM2INT(size)));
|
150
|
+
}
|
151
|
+
|
152
|
+
static VALUE
|
153
|
+
rg_short_name(VALUE self)
|
154
|
+
{
|
155
|
+
return CSTR2RVAL(gtk_recent_info_get_short_name(_SELF(self)));
|
156
|
+
}
|
157
|
+
|
158
|
+
static VALUE
|
159
|
+
rg_uri_display(VALUE self)
|
160
|
+
{
|
161
|
+
return CSTR2RVAL(gtk_recent_info_get_uri_display(_SELF(self)));
|
162
|
+
}
|
163
|
+
|
164
|
+
static VALUE
|
165
|
+
rg_age(VALUE self)
|
166
|
+
{
|
167
|
+
return INT2NUM(gtk_recent_info_get_age(_SELF(self)));
|
168
|
+
}
|
169
|
+
|
170
|
+
static VALUE
|
171
|
+
rg_local_p(VALUE self)
|
172
|
+
{
|
173
|
+
return CBOOL2RVAL(gtk_recent_info_is_local(_SELF(self)));
|
174
|
+
}
|
175
|
+
|
176
|
+
static VALUE
|
177
|
+
rg_exist_p(VALUE self)
|
178
|
+
{
|
179
|
+
return CBOOL2RVAL(gtk_recent_info_exists(_SELF(self)));
|
180
|
+
}
|
181
|
+
|
182
|
+
static VALUE
|
183
|
+
rg_operator_ri_match(VALUE self, VALUE other)
|
184
|
+
{
|
185
|
+
return CBOOL2RVAL(gtk_recent_info_match(_SELF(self), _SELF(other)));
|
186
|
+
}
|
187
|
+
|
188
|
+
void
|
189
|
+
Init_gtk_recent_info(VALUE mGtk)
|
190
|
+
{
|
191
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_RECENT_INFO, "RecentInfo", mGtk);
|
192
|
+
RG_DEF_METHOD(uri, 0);
|
193
|
+
RG_DEF_METHOD(display_name, 0);
|
194
|
+
RG_DEF_METHOD(description, 0);
|
195
|
+
RG_DEF_METHOD(mime_type, 0);
|
196
|
+
RG_DEF_METHOD(added, 0);
|
197
|
+
RG_DEF_METHOD(modified, 0);
|
198
|
+
RG_DEF_METHOD(visited, 0);
|
199
|
+
RG_DEF_METHOD_P(private_hint, 0);
|
200
|
+
RG_DEF_METHOD(application_info, 1);
|
201
|
+
RG_DEF_METHOD(applications, 0);
|
202
|
+
RG_DEF_METHOD(last_application, 0);
|
203
|
+
RG_DEF_METHOD(groups, 0);
|
204
|
+
RG_DEF_METHOD_P(has_group, 1);
|
205
|
+
RG_DEF_METHOD_P(has_application, 1);
|
206
|
+
RG_DEF_METHOD(get_icon, 1);
|
207
|
+
RG_DEF_METHOD(short_name, 0);
|
208
|
+
RG_DEF_METHOD(uri_display, 0);
|
209
|
+
RG_DEF_METHOD(age, 0);
|
210
|
+
RG_DEF_METHOD_P(local, 0);
|
211
|
+
RG_DEF_METHOD_P(exist, 0);
|
212
|
+
RG_DEF_METHOD_OPERATOR("==", ri_match, 1);
|
213
|
+
}
|
@@ -0,0 +1,134 @@
|
|
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 cRecentManager
|
25
|
+
#define _SELF(self) (RVAL2GTKRECENTMANAGER(self))
|
26
|
+
|
27
|
+
static VALUE
|
28
|
+
rg_initialize(VALUE self)
|
29
|
+
{
|
30
|
+
G_INITIALIZE(self, gtk_recent_manager_new());
|
31
|
+
return Qnil;
|
32
|
+
}
|
33
|
+
|
34
|
+
static VALUE
|
35
|
+
rg_s_default(G_GNUC_UNUSED VALUE self)
|
36
|
+
{
|
37
|
+
return GOBJ2RVAL(gtk_recent_manager_get_default());
|
38
|
+
}
|
39
|
+
|
40
|
+
static VALUE
|
41
|
+
rg_add_item(int argc, VALUE *argv, VALUE self)
|
42
|
+
{
|
43
|
+
VALUE uri, data;
|
44
|
+
gboolean ret;
|
45
|
+
rb_scan_args(argc, argv, "11", &uri, &data);
|
46
|
+
|
47
|
+
if (NIL_P(data)){
|
48
|
+
ret = gtk_recent_manager_add_item(_SELF(self), RVAL2CSTR(uri));
|
49
|
+
if (! ret) rb_raise(rb_eRuntimeError, "Can't add the uri");
|
50
|
+
} else {
|
51
|
+
ret = gtk_recent_manager_add_full(_SELF(self),
|
52
|
+
RVAL2CSTR(uri),
|
53
|
+
RVAL2GTKRECENTDATA(data));
|
54
|
+
if (! ret) rb_raise(rb_eRuntimeError, "Can't add the uri or data");
|
55
|
+
}
|
56
|
+
return self;
|
57
|
+
}
|
58
|
+
|
59
|
+
static VALUE
|
60
|
+
rg_remove_item(VALUE self, VALUE uri)
|
61
|
+
{
|
62
|
+
GError* error = NULL;
|
63
|
+
gboolean ret = gtk_recent_manager_remove_item(_SELF(self), RVAL2CSTR(uri),
|
64
|
+
&error);
|
65
|
+
if (! ret) RAISE_GERROR(error);
|
66
|
+
|
67
|
+
return self;
|
68
|
+
}
|
69
|
+
|
70
|
+
static VALUE
|
71
|
+
rg_lookup_item(VALUE self, VALUE uri)
|
72
|
+
{
|
73
|
+
GError* error = NULL;
|
74
|
+
GtkRecentInfo* info = gtk_recent_manager_lookup_item(_SELF(self), RVAL2CSTR(uri),
|
75
|
+
&error);
|
76
|
+
if (error) RAISE_GERROR(error);
|
77
|
+
return GTKRECENTINFO2RVAL(info);
|
78
|
+
}
|
79
|
+
|
80
|
+
static VALUE
|
81
|
+
rg_has_item_p(VALUE self, VALUE uri)
|
82
|
+
{
|
83
|
+
return CBOOL2RVAL(gtk_recent_manager_has_item(_SELF(self), RVAL2CSTR(uri)));
|
84
|
+
}
|
85
|
+
|
86
|
+
static VALUE
|
87
|
+
rg_move_item(VALUE self, VALUE uri, VALUE new_uri)
|
88
|
+
{
|
89
|
+
GError* error = NULL;
|
90
|
+
gboolean ret = gtk_recent_manager_move_item(_SELF(self),
|
91
|
+
RVAL2CSTR(uri),
|
92
|
+
RVAL2CSTR(new_uri),
|
93
|
+
&error);
|
94
|
+
if (! ret) RAISE_GERROR(error);
|
95
|
+
return self;
|
96
|
+
}
|
97
|
+
|
98
|
+
static VALUE
|
99
|
+
rg_items(VALUE self)
|
100
|
+
{
|
101
|
+
return BOXEDGLIST2RVAL_FREE(gtk_recent_manager_get_items(_SELF(self)),
|
102
|
+
GTK_TYPE_RECENT_INFO,
|
103
|
+
g_list_free, gtk_recent_info_unref);
|
104
|
+
}
|
105
|
+
|
106
|
+
static VALUE
|
107
|
+
rg_purge_items(VALUE self)
|
108
|
+
{
|
109
|
+
GError* error = NULL;
|
110
|
+
gint ret = gtk_recent_manager_purge_items(_SELF(self), &error);
|
111
|
+
|
112
|
+
if (error) RAISE_GERROR(error);
|
113
|
+
|
114
|
+
return INT2NUM(ret);
|
115
|
+
}
|
116
|
+
|
117
|
+
void
|
118
|
+
Init_gtk_recent_manager(VALUE mGtk)
|
119
|
+
{
|
120
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_RECENT_MANAGER, "RecentManager", mGtk);
|
121
|
+
|
122
|
+
RG_DEF_METHOD(initialize, 0);
|
123
|
+
RG_DEF_SMETHOD(default, 0);
|
124
|
+
RG_DEF_METHOD(add_item, -1);
|
125
|
+
RG_DEF_METHOD(remove_item, 1);
|
126
|
+
RG_DEF_METHOD(lookup_item, 1);
|
127
|
+
RG_DEF_METHOD_P(has_item, 1);
|
128
|
+
RG_DEF_METHOD(move_item, 2);
|
129
|
+
RG_DEF_METHOD(items, 0);
|
130
|
+
RG_DEF_METHOD(purge_items, 0);
|
131
|
+
|
132
|
+
G_DEF_ERROR(GTK_RECENT_MANAGER_ERROR, "RecentManagerError", mGtk, rb_eRuntimeError,
|
133
|
+
GTK_TYPE_RECENT_MANAGER_ERROR);
|
134
|
+
}
|