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,282 @@
|
|
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 cSelectionData
|
25
|
+
#define _SELF(d) (RVAL2GTKSELECTIONDATA(d))
|
26
|
+
|
27
|
+
static GdkAtom compound_text;
|
28
|
+
|
29
|
+
/************************************************************************/
|
30
|
+
void
|
31
|
+
rbgtk_atom2selectiondata(VALUE type, VALUE size, VALUE src, GdkAtom *gtype,
|
32
|
+
void **data, gint *format, gint *length)
|
33
|
+
{
|
34
|
+
void* dat = NULL;
|
35
|
+
gint fmt, len;
|
36
|
+
GdkAtom ntype = RVAL2ATOM(type);
|
37
|
+
|
38
|
+
if(ntype == GDK_SELECTION_TYPE_INTEGER){
|
39
|
+
int *i;
|
40
|
+
i = ALLOC(int);
|
41
|
+
*i = NUM2INT(src);
|
42
|
+
dat = i;
|
43
|
+
fmt = sizeof(int) * 8;
|
44
|
+
len = 1;
|
45
|
+
} else if(ntype == GDK_SELECTION_TYPE_STRING) {
|
46
|
+
dat = (void *)RVAL2CSTR(src);
|
47
|
+
if (NIL_P(size)) {
|
48
|
+
fmt = sizeof(char) * 8;
|
49
|
+
len = RSTRING_LEN(src);
|
50
|
+
} else {
|
51
|
+
len = NUM2UINT(size);
|
52
|
+
fmt = (RSTRING_LEN(src) / len) * 8;
|
53
|
+
}
|
54
|
+
/* TODO
|
55
|
+
} else if(ntype == compound_text){
|
56
|
+
guchar* str = (guchar*)dat;
|
57
|
+
gdk_string_to_compound_text(RVAL2CSTR(src), &ntype, &fmt, &str, &len);
|
58
|
+
*/
|
59
|
+
} else if(type != Qnil && size != Qnil && src != Qnil) {
|
60
|
+
dat = (void *)RVAL2CSTR(src);
|
61
|
+
fmt = NUM2INT(size);
|
62
|
+
len = (RSTRING_LEN(src) * sizeof(char) / fmt);
|
63
|
+
} else {
|
64
|
+
rb_raise(rb_eArgError, "no supported type.");
|
65
|
+
}
|
66
|
+
|
67
|
+
*gtype = ntype;
|
68
|
+
*data = dat;
|
69
|
+
*format = fmt;
|
70
|
+
*length = len;
|
71
|
+
}
|
72
|
+
|
73
|
+
void
|
74
|
+
rbgtk_atom2selectiondata_free(GdkAtom type, void *dat)
|
75
|
+
{
|
76
|
+
if (type == GDK_SELECTION_TYPE_INTEGER ||
|
77
|
+
type == GDK_SELECTION_TYPE_ATOM) {
|
78
|
+
xfree(dat);
|
79
|
+
/* TODO
|
80
|
+
} else if(type == compound_text) {
|
81
|
+
gdk_free_compound_text(dat);
|
82
|
+
*/
|
83
|
+
}
|
84
|
+
}
|
85
|
+
/************************************************************************/
|
86
|
+
|
87
|
+
static VALUE
|
88
|
+
rg_selection(VALUE self)
|
89
|
+
{
|
90
|
+
return GDKATOM2RVAL(gtk_selection_data_get_selection(_SELF(self)));
|
91
|
+
}
|
92
|
+
|
93
|
+
static VALUE
|
94
|
+
rg_target(VALUE self)
|
95
|
+
{
|
96
|
+
return GDKATOM2RVAL(gtk_selection_data_get_target(_SELF(self)));
|
97
|
+
}
|
98
|
+
|
99
|
+
static VALUE
|
100
|
+
rg_data_type(VALUE self)
|
101
|
+
{
|
102
|
+
return GDKATOM2RVAL(gtk_selection_data_get_data_type(_SELF(self)));
|
103
|
+
}
|
104
|
+
|
105
|
+
static VALUE
|
106
|
+
rg_format(VALUE self)
|
107
|
+
{
|
108
|
+
return INT2NUM(gtk_selection_data_get_format(_SELF(self)));
|
109
|
+
}
|
110
|
+
|
111
|
+
static VALUE
|
112
|
+
rg_data(VALUE self)
|
113
|
+
{
|
114
|
+
return RBG_STRING_SET_UTF8_ENCODING(rb_str_new((const gchar *)gtk_selection_data_get_data(_SELF(self)),
|
115
|
+
gtk_selection_data_get_length(_SELF(self))));
|
116
|
+
}
|
117
|
+
|
118
|
+
static VALUE
|
119
|
+
rg_display(VALUE self)
|
120
|
+
{
|
121
|
+
return GOBJ2RVAL(gtk_selection_data_get_display(_SELF(self)));
|
122
|
+
}
|
123
|
+
|
124
|
+
static VALUE
|
125
|
+
rg_set(int argc, VALUE *argv, VALUE self)
|
126
|
+
{
|
127
|
+
void* dat;
|
128
|
+
VALUE type, src;
|
129
|
+
gint fmt, len;
|
130
|
+
GdkAtom ntype;
|
131
|
+
VALUE size = Qnil;
|
132
|
+
|
133
|
+
if(3 == argc)
|
134
|
+
rb_scan_args(argc, argv, "30", &type, &size, &src);
|
135
|
+
else
|
136
|
+
rb_scan_args(argc, argv, "20", &type, &src);
|
137
|
+
|
138
|
+
rbgtk_atom2selectiondata(type, size, src, &ntype, &dat, &fmt, &len);
|
139
|
+
|
140
|
+
gtk_selection_data_set(_SELF(self), ntype, fmt, dat, len);
|
141
|
+
|
142
|
+
rbgtk_atom2selectiondata_free(ntype, dat);
|
143
|
+
|
144
|
+
return self;
|
145
|
+
}
|
146
|
+
|
147
|
+
static VALUE
|
148
|
+
rg_set_text(VALUE self, VALUE str)
|
149
|
+
{
|
150
|
+
StringValue(str);
|
151
|
+
|
152
|
+
if (!gtk_selection_data_set_text(_SELF(self), RSTRING_PTR(str), RSTRING_LEN(str)))
|
153
|
+
rb_raise(rb_eRuntimeError, "the selection wasn't successfully set");
|
154
|
+
|
155
|
+
return self;
|
156
|
+
}
|
157
|
+
|
158
|
+
static VALUE
|
159
|
+
rg_text(VALUE self)
|
160
|
+
{
|
161
|
+
return CSTR2RVAL_FREE((gchar *)gtk_selection_data_get_text(_SELF(self)));
|
162
|
+
}
|
163
|
+
|
164
|
+
static VALUE
|
165
|
+
rg_set_pixbuf(VALUE self, VALUE pixbuf)
|
166
|
+
{
|
167
|
+
if (!gtk_selection_data_set_pixbuf(_SELF(self), RVAL2GDKPIXBUF(pixbuf)))
|
168
|
+
rb_raise(rb_eRuntimeError, "the selection wasn't successfully set");
|
169
|
+
|
170
|
+
return self;
|
171
|
+
}
|
172
|
+
|
173
|
+
static VALUE
|
174
|
+
rg_pixbuf(VALUE self)
|
175
|
+
{
|
176
|
+
return GOBJ2RVAL(gtk_selection_data_get_pixbuf(_SELF(self)));
|
177
|
+
}
|
178
|
+
|
179
|
+
static VALUE
|
180
|
+
rg_set_uris(VALUE self, VALUE uris)
|
181
|
+
{
|
182
|
+
gboolean ret;
|
183
|
+
gchar **guris;
|
184
|
+
|
185
|
+
guris = (gchar **)RVAL2STRV(uris);
|
186
|
+
ret = gtk_selection_data_set_uris(_SELF(self), guris);
|
187
|
+
g_free(guris);
|
188
|
+
if (!ret)
|
189
|
+
rb_raise(rb_eRuntimeError, "the selection wasn't successfully.");
|
190
|
+
|
191
|
+
return self;
|
192
|
+
}
|
193
|
+
|
194
|
+
static VALUE
|
195
|
+
rg_uris(VALUE self)
|
196
|
+
{
|
197
|
+
VALUE ary = rb_ary_new();
|
198
|
+
gchar** uris = gtk_selection_data_get_uris(_SELF(self));
|
199
|
+
|
200
|
+
if (uris) {
|
201
|
+
gchar **uri = uris;
|
202
|
+
while (*uri) {
|
203
|
+
rb_ary_push(ary, CSTR2RVAL(*uri));
|
204
|
+
uri++;
|
205
|
+
}
|
206
|
+
g_strfreev(uris);
|
207
|
+
}
|
208
|
+
return ary;
|
209
|
+
}
|
210
|
+
|
211
|
+
static VALUE
|
212
|
+
rg_targets(VALUE self)
|
213
|
+
{
|
214
|
+
GdkAtom* targets;
|
215
|
+
gint n_atoms;
|
216
|
+
VALUE result = Qnil;
|
217
|
+
gboolean ret = gtk_selection_data_get_targets(_SELF(self),
|
218
|
+
&targets, &n_atoms);
|
219
|
+
if (ret) {
|
220
|
+
int i;
|
221
|
+
result = rb_ary_new2(n_atoms);
|
222
|
+
for (i = 0; i < n_atoms; i++){
|
223
|
+
rb_ary_push(result, GDKATOM2RVAL(targets[i]));
|
224
|
+
}
|
225
|
+
}
|
226
|
+
g_free(targets);
|
227
|
+
return result;
|
228
|
+
}
|
229
|
+
|
230
|
+
static VALUE
|
231
|
+
rg_targets_include_image(VALUE self, VALUE writable)
|
232
|
+
{
|
233
|
+
return CBOOL2RVAL(gtk_selection_data_targets_include_image(_SELF(self), RVAL2CBOOL(writable)));
|
234
|
+
}
|
235
|
+
|
236
|
+
static VALUE
|
237
|
+
rg_targets_include_text(VALUE self)
|
238
|
+
{
|
239
|
+
return CBOOL2RVAL(gtk_selection_data_targets_include_text(_SELF(self)));
|
240
|
+
}
|
241
|
+
|
242
|
+
static VALUE
|
243
|
+
rg_targets_include_uri(VALUE self)
|
244
|
+
{
|
245
|
+
return CBOOL2RVAL(gtk_selection_data_targets_include_uri(_SELF(self)));
|
246
|
+
}
|
247
|
+
|
248
|
+
static VALUE
|
249
|
+
rg_targets_include_rich_text(VALUE self, VALUE buffer)
|
250
|
+
{
|
251
|
+
return CBOOL2RVAL(gtk_selection_data_targets_include_rich_text(_SELF(self),
|
252
|
+
RVAL2GTKTEXTBUFFER(buffer)));
|
253
|
+
}
|
254
|
+
|
255
|
+
void
|
256
|
+
Init_gtk_selectiondata(VALUE mGtk)
|
257
|
+
{
|
258
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_SELECTION_DATA, "SelectionData", mGtk);
|
259
|
+
|
260
|
+
rbgobj_boxed_not_copy_obj(GTK_TYPE_SELECTION_DATA);
|
261
|
+
|
262
|
+
compound_text = gdk_atom_intern("COMPOUND_TEXT", FALSE);
|
263
|
+
|
264
|
+
RG_DEF_METHOD(selection, 0);
|
265
|
+
RG_DEF_METHOD(target, 0);
|
266
|
+
RG_DEF_METHOD(data_type, 0);
|
267
|
+
RG_DEF_METHOD(format, 0);
|
268
|
+
RG_DEF_METHOD(data, 0);
|
269
|
+
RG_DEF_METHOD(display, 0);
|
270
|
+
RG_DEF_METHOD(set, -1);
|
271
|
+
RG_DEF_METHOD(text, 0);
|
272
|
+
RG_DEF_METHOD(set_text, 1);
|
273
|
+
RG_DEF_METHOD(pixbuf, 0);
|
274
|
+
RG_DEF_METHOD(set_pixbuf, 1);
|
275
|
+
RG_DEF_METHOD(uris, 0);
|
276
|
+
RG_DEF_METHOD(set_uris, 1);
|
277
|
+
RG_DEF_METHOD(targets_include_image, 1);
|
278
|
+
RG_DEF_METHOD(targets, 0);
|
279
|
+
RG_DEF_METHOD(targets_include_text, 0);
|
280
|
+
RG_DEF_METHOD(targets_include_uri, 0);
|
281
|
+
RG_DEF_METHOD(targets_include_rich_text, 1);
|
282
|
+
}
|
@@ -0,0 +1,44 @@
|
|
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 cSeparator
|
28
|
+
#define _SELF(self) (RVAL2GTKSEPARATOR(self))
|
29
|
+
|
30
|
+
static VALUE
|
31
|
+
rg_initialize(VALUE self, VALUE orientation)
|
32
|
+
{
|
33
|
+
RBGTK_INITIALIZE(self, gtk_separator_new(RVAL2GTKORIENTATION(orientation)));
|
34
|
+
|
35
|
+
return Qnil;
|
36
|
+
}
|
37
|
+
|
38
|
+
void
|
39
|
+
Init_gtk_separator(VALUE mGtk)
|
40
|
+
{
|
41
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_SEPARATOR, "Separator", mGtk);
|
42
|
+
|
43
|
+
RG_DEF_METHOD(initialize, 1);
|
44
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2002,2003 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 cSeparatorMenuItem
|
25
|
+
|
26
|
+
static VALUE
|
27
|
+
rg_initialize(VALUE self)
|
28
|
+
{
|
29
|
+
RBGTK_INITIALIZE(self, gtk_separator_menu_item_new());
|
30
|
+
return Qnil;
|
31
|
+
}
|
32
|
+
|
33
|
+
void
|
34
|
+
Init_gtk_separator_menu_item(VALUE mGtk)
|
35
|
+
{
|
36
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_SEPARATOR_MENU_ITEM, "SeparatorMenuItem", mGtk);
|
37
|
+
|
38
|
+
RG_DEF_METHOD(initialize, 0);
|
39
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2004 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 cSeparatorToolItem
|
25
|
+
|
26
|
+
static VALUE
|
27
|
+
rg_initialize(VALUE self)
|
28
|
+
{
|
29
|
+
RBGTK_INITIALIZE(self, gtk_separator_tool_item_new());
|
30
|
+
return Qnil;
|
31
|
+
}
|
32
|
+
|
33
|
+
void
|
34
|
+
Init_gtk_separatortoolitem(VALUE mGtk)
|
35
|
+
{
|
36
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_SEPARATOR_TOOL_ITEM, "SeparatorToolItem", mGtk);
|
37
|
+
RG_DEF_METHOD(initialize, 0);
|
38
|
+
}
|
@@ -0,0 +1,229 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2003,2004 Ruby-GNOME2 Project Team
|
5
|
+
* Copyright (C) 2003 Masao Mutoh
|
6
|
+
*
|
7
|
+
* This library is free software; you can redistribute it and/or
|
8
|
+
* modify it under the terms of the GNU Lesser General Public
|
9
|
+
* License as published by the Free Software Foundation; either
|
10
|
+
* version 2.1 of the License, or (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This library is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
* Lesser General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Lesser General Public
|
18
|
+
* License along with this library; if not, write to the Free Software
|
19
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
20
|
+
* MA 02110-1301 USA
|
21
|
+
*/
|
22
|
+
|
23
|
+
#include "rbgtk3private.h"
|
24
|
+
|
25
|
+
#define RG_TARGET_NAMESPACE cSettings
|
26
|
+
|
27
|
+
static VALUE prop_func_table;
|
28
|
+
|
29
|
+
static VALUE
|
30
|
+
rg_s_default(G_GNUC_UNUSED VALUE self)
|
31
|
+
{
|
32
|
+
return GOBJ2RVAL(gtk_settings_get_default());
|
33
|
+
}
|
34
|
+
|
35
|
+
static VALUE
|
36
|
+
rg_s_get_for_screen(G_GNUC_UNUSED VALUE self, VALUE screen)
|
37
|
+
{
|
38
|
+
return GOBJ2RVAL(gtk_settings_get_for_screen(RVAL2GDKSCREEN(screen)));
|
39
|
+
}
|
40
|
+
|
41
|
+
/*
|
42
|
+
* Gtk::Settings.install_property(...) do |spec, str|
|
43
|
+
* #parse str
|
44
|
+
* new_val = .... # parse value from string.
|
45
|
+
* new_val # return new_val or nil if you can't convert the value.
|
46
|
+
* end
|
47
|
+
*/
|
48
|
+
static gboolean
|
49
|
+
rc_property_parser(const GParamSpec *pspec, const GString *rc_string, GValue *property_value)
|
50
|
+
{
|
51
|
+
VALUE spec = GOBJ2RVAL((gpointer)pspec);
|
52
|
+
VALUE func = rb_hash_aref(prop_func_table, spec);
|
53
|
+
VALUE ret = rb_funcall(func, id_call, 2, spec, CSTR2RVAL(rc_string->str));
|
54
|
+
if (NIL_P(ret)) {
|
55
|
+
return FALSE;
|
56
|
+
} else if (RVAL2CBOOL(ret)){
|
57
|
+
rbgobj_rvalue_to_gvalue(ret, property_value);
|
58
|
+
return TRUE;
|
59
|
+
} else {
|
60
|
+
rb_raise(rb_eArgError, "Gtk::Settings#install_property() block should return new value or nil");
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
static VALUE
|
65
|
+
rg_s_install_property(VALUE self, VALUE spec)
|
66
|
+
{
|
67
|
+
GParamSpec* pspec = RVAL2GPARAMSPEC(spec);
|
68
|
+
if (rb_block_given_p()){
|
69
|
+
VALUE func = rb_block_proc();
|
70
|
+
rb_hash_aset(prop_func_table, spec, func);
|
71
|
+
gtk_settings_install_property_parser(pspec, (GtkRcPropertyParser)rc_property_parser);
|
72
|
+
} else {
|
73
|
+
gtk_settings_install_property(pspec);
|
74
|
+
}
|
75
|
+
return self;
|
76
|
+
}
|
77
|
+
|
78
|
+
static VALUE
|
79
|
+
settings_rc_property_parse(G_GNUC_UNUSED VALUE self, VALUE rbspec, VALUE rbstring, GtkRcPropertyParser parser)
|
80
|
+
{
|
81
|
+
GParamSpec *spec = RVAL2GPARAMSPEC(rbspec);
|
82
|
+
GString *string = g_string_new(RVAL2CSTR(rbstring));
|
83
|
+
GValue property = G_VALUE_INIT;
|
84
|
+
gboolean parsed;
|
85
|
+
|
86
|
+
g_value_init(&property, spec->value_type);
|
87
|
+
|
88
|
+
parsed = parser(spec, string, &property);
|
89
|
+
|
90
|
+
g_string_free(string, TRUE);
|
91
|
+
|
92
|
+
return parsed ? GVAL2RVAL_UNSET(&property) : Qnil;
|
93
|
+
}
|
94
|
+
|
95
|
+
static VALUE
|
96
|
+
rg_s_rc_property_parse_color(VALUE self, VALUE rbspec, VALUE rbstring)
|
97
|
+
{
|
98
|
+
return settings_rc_property_parse(self, rbspec, rbstring, gtk_rc_property_parse_color);
|
99
|
+
}
|
100
|
+
|
101
|
+
static VALUE
|
102
|
+
rg_s_rc_property_parse_enum(VALUE self, VALUE rbspec, VALUE rbstring)
|
103
|
+
{
|
104
|
+
return settings_rc_property_parse(self, rbspec, rbstring, gtk_rc_property_parse_enum);
|
105
|
+
}
|
106
|
+
|
107
|
+
static VALUE
|
108
|
+
rg_s_rc_property_parse_flags(VALUE self, VALUE rbspec, VALUE rbstring)
|
109
|
+
{
|
110
|
+
return settings_rc_property_parse(self, rbspec, rbstring, gtk_rc_property_parse_flags);
|
111
|
+
}
|
112
|
+
|
113
|
+
static VALUE
|
114
|
+
rg_s_rc_property_parse_requisition(G_GNUC_UNUSED VALUE self, VALUE rbspec, VALUE rbstring)
|
115
|
+
{
|
116
|
+
GParamSpec *spec = RVAL2GPARAMSPEC(rbspec);
|
117
|
+
GString *string = g_string_new(RVAL2CSTR(rbstring));
|
118
|
+
GValue property = G_VALUE_INIT;
|
119
|
+
gboolean parsed;
|
120
|
+
GtkRequisition *requisition;
|
121
|
+
gint width;
|
122
|
+
gint height;
|
123
|
+
|
124
|
+
g_value_init(&property, GTK_TYPE_REQUISITION);
|
125
|
+
|
126
|
+
parsed = gtk_rc_property_parse_requisition(spec, string, &property);
|
127
|
+
|
128
|
+
g_string_free(string, TRUE);
|
129
|
+
|
130
|
+
if (!parsed)
|
131
|
+
return Qnil;
|
132
|
+
|
133
|
+
requisition = g_value_get_boxed(&property);
|
134
|
+
width = requisition->width;
|
135
|
+
height = requisition->height;
|
136
|
+
|
137
|
+
g_value_unset(&property);
|
138
|
+
|
139
|
+
return rb_assoc_new(INT2NUM(width), INT2NUM(height));
|
140
|
+
}
|
141
|
+
|
142
|
+
static VALUE
|
143
|
+
settings_rc_property_parse_border_result(VALUE value)
|
144
|
+
{
|
145
|
+
return GTKBORDER2RVAL(g_value_get_boxed((GValue *)value));
|
146
|
+
}
|
147
|
+
|
148
|
+
static VALUE
|
149
|
+
settings_rc_property_parse_border_ensure(VALUE value)
|
150
|
+
{
|
151
|
+
g_value_unset((GValue *)value);
|
152
|
+
|
153
|
+
return Qnil;
|
154
|
+
}
|
155
|
+
|
156
|
+
static VALUE
|
157
|
+
rg_s_rc_property_parse_border(G_GNUC_UNUSED VALUE self, VALUE rbspec, VALUE rbstring)
|
158
|
+
{
|
159
|
+
GParamSpec *spec = RVAL2GPARAMSPEC(rbspec);
|
160
|
+
GString *string = g_string_new(RVAL2CSTR(rbstring));
|
161
|
+
GValue property = G_VALUE_INIT;
|
162
|
+
gboolean parsed;
|
163
|
+
|
164
|
+
g_value_init(&property, GTK_TYPE_BORDER);
|
165
|
+
|
166
|
+
parsed = gtk_rc_property_parse_border(spec, string, &property);
|
167
|
+
|
168
|
+
g_string_free(string, TRUE);
|
169
|
+
|
170
|
+
if (!parsed)
|
171
|
+
return Qnil;
|
172
|
+
|
173
|
+
return rb_ensure(settings_rc_property_parse_border_result, (VALUE)&property,
|
174
|
+
settings_rc_property_parse_border_ensure, (VALUE)&property);
|
175
|
+
}
|
176
|
+
|
177
|
+
static VALUE
|
178
|
+
rg_set_property_value(VALUE self, VALUE rbname, VALUE rbvalue, VALUE origin)
|
179
|
+
{
|
180
|
+
GtkSettings *settings = RVAL2GTKSETTINGS(self);
|
181
|
+
GtkSettingsValue svalue = { (gchar *)RVAL2CSTR(origin), G_VALUE_INIT };
|
182
|
+
const gchar *name = RVAL2CSTR(rbname);
|
183
|
+
g_value_init(&svalue.value, RVAL2GTYPE(rbvalue));
|
184
|
+
rbgobj_rvalue_to_gvalue(rbvalue, &svalue.value);
|
185
|
+
|
186
|
+
gtk_settings_set_property_value(settings, name, &svalue);
|
187
|
+
|
188
|
+
g_value_unset(&svalue.value);
|
189
|
+
|
190
|
+
return self;
|
191
|
+
}
|
192
|
+
|
193
|
+
/* We don't need them, Use set_property_value() instead.
|
194
|
+
void gtk_settings_set_string_property
|
195
|
+
(GtkSettings *settings,
|
196
|
+
const gchar *name,
|
197
|
+
const gchar *v_string,
|
198
|
+
const gchar *origin);
|
199
|
+
void gtk_settings_set_long_property (GtkSettings *settings,
|
200
|
+
const gchar *name,
|
201
|
+
glong v_long,
|
202
|
+
const gchar *origin);
|
203
|
+
void gtk_settings_set_double_property
|
204
|
+
(GtkSettings *settings,
|
205
|
+
const gchar *name,
|
206
|
+
gdouble v_double,
|
207
|
+
const gchar *origin);
|
208
|
+
*/
|
209
|
+
|
210
|
+
void
|
211
|
+
Init_gtk_settings(VALUE mGtk)
|
212
|
+
{
|
213
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_SETTINGS, "Settings", mGtk);
|
214
|
+
|
215
|
+
rb_global_variable(&prop_func_table);
|
216
|
+
prop_func_table = rb_hash_new();
|
217
|
+
|
218
|
+
RG_DEF_SMETHOD(default, 0);
|
219
|
+
RG_DEF_SMETHOD(get_for_screen, 1);
|
220
|
+
RG_DEF_SMETHOD(install_property, 1);
|
221
|
+
|
222
|
+
RG_DEF_SMETHOD(rc_property_parse_color, 2);
|
223
|
+
RG_DEF_SMETHOD(rc_property_parse_enum, 2);
|
224
|
+
RG_DEF_SMETHOD(rc_property_parse_flags, 2);
|
225
|
+
RG_DEF_SMETHOD(rc_property_parse_requisition, 2);
|
226
|
+
RG_DEF_SMETHOD(rc_property_parse_border, 2);
|
227
|
+
|
228
|
+
RG_DEF_METHOD(set_property_value, 3);
|
229
|
+
}
|