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,110 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
*
|
5
|
+
* This library is free software; you can redistribute it and/or
|
6
|
+
* modify it under the terms of the GNU Lesser General Public
|
7
|
+
* License as published by the Free Software Foundation; either
|
8
|
+
* version 2.1 of the License, or (at your option) any later version.
|
9
|
+
*
|
10
|
+
* This library is distributed in the hope that it will be useful,
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
* Lesser General Public License for more details.
|
14
|
+
*
|
15
|
+
* You should have received a copy of the GNU Lesser General Public
|
16
|
+
* License along with this library; if not, write to the Free Software
|
17
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
18
|
+
* MA 02110-1301 USA
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include "rbgtk3private.h"
|
22
|
+
|
23
|
+
#define RG_TARGET_NAMESPACE cCssProvider
|
24
|
+
#define _SELF(self) (RVAL2GTKCSSPROVIDER(self))
|
25
|
+
|
26
|
+
static VALUE
|
27
|
+
rg_initialize(VALUE self)
|
28
|
+
{
|
29
|
+
G_INITIALIZE(self, gtk_css_provider_new());
|
30
|
+
|
31
|
+
return Qnil;
|
32
|
+
}
|
33
|
+
|
34
|
+
static VALUE
|
35
|
+
rg_s_default(G_GNUC_UNUSED VALUE self)
|
36
|
+
{
|
37
|
+
return GOBJ2RVAL(gtk_css_provider_get_default());
|
38
|
+
}
|
39
|
+
|
40
|
+
static VALUE
|
41
|
+
rg_s_get_named(int argc, VALUE *argv, G_GNUC_UNUSED VALUE self)
|
42
|
+
{
|
43
|
+
VALUE name, variant;
|
44
|
+
GtkCssProvider *provider;
|
45
|
+
|
46
|
+
rb_scan_args(argc, argv, "11", &name, &variant);
|
47
|
+
provider = gtk_css_provider_get_named(RVAL2CSTR(name),
|
48
|
+
RVAL2CSTR_ACCEPT_NIL(variant));
|
49
|
+
|
50
|
+
return GOBJ2RVAL(provider);
|
51
|
+
}
|
52
|
+
|
53
|
+
static VALUE
|
54
|
+
rg_load(VALUE self, VALUE arg)
|
55
|
+
{
|
56
|
+
gboolean result;
|
57
|
+
GError *error = NULL;
|
58
|
+
|
59
|
+
if (TYPE(arg) == T_HASH) {
|
60
|
+
VALUE data, file, path;
|
61
|
+
rbg_scan_options(arg,
|
62
|
+
"data", &data,
|
63
|
+
"file", &file,
|
64
|
+
"path", &path,
|
65
|
+
NULL);
|
66
|
+
if (!NIL_P(data)) {
|
67
|
+
StringValue(data);
|
68
|
+
result = gtk_css_provider_load_from_data(_SELF(self),
|
69
|
+
RSTRING_PTR(data),
|
70
|
+
RSTRING_LEN(data),
|
71
|
+
&error);
|
72
|
+
} else if (!NIL_P(file)) {
|
73
|
+
result = gtk_css_provider_load_from_file(_SELF(self),
|
74
|
+
RVAL2GFILE(file),
|
75
|
+
&error);
|
76
|
+
} else if (!NIL_P(path)) {
|
77
|
+
result = gtk_css_provider_load_from_path(_SELF(self),
|
78
|
+
RVAL2CSTR(path),
|
79
|
+
&error);
|
80
|
+
} else {
|
81
|
+
rb_raise(rb_eArgError, "Invalid arguments.");
|
82
|
+
}
|
83
|
+
} else {
|
84
|
+
result = gtk_css_provider_load_from_file(_SELF(self),
|
85
|
+
RVAL2GFILE(arg),
|
86
|
+
&error);
|
87
|
+
}
|
88
|
+
if (error)
|
89
|
+
RAISE_GERROR(error);
|
90
|
+
|
91
|
+
return CBOOL2RVAL(result);
|
92
|
+
}
|
93
|
+
|
94
|
+
static VALUE
|
95
|
+
rg_to_s(VALUE self)
|
96
|
+
{
|
97
|
+
return CSTR2RVAL(gtk_css_provider_to_string(_SELF(self)));
|
98
|
+
}
|
99
|
+
|
100
|
+
void
|
101
|
+
Init_gtk_cssprovider(VALUE mGtk)
|
102
|
+
{
|
103
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_CSS_PROVIDER, "CssProvider", mGtk);
|
104
|
+
|
105
|
+
RG_DEF_SMETHOD(default, 0);
|
106
|
+
RG_DEF_SMETHOD(get_named, -1);
|
107
|
+
RG_DEF_METHOD(initialize, 0);
|
108
|
+
RG_DEF_METHOD(load, 1);
|
109
|
+
RG_DEF_METHOD(to_s, 0);
|
110
|
+
}
|
@@ -0,0 +1,186 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2002-2005 Ruby-GNOME2 Project Team
|
5
|
+
* Copyright (C) 1998-2000 Yukihiro Matsumoto,
|
6
|
+
* Daisuke Kanda,
|
7
|
+
* Hiroshi Igarashi
|
8
|
+
*
|
9
|
+
* This library is free software; you can redistribute it and/or
|
10
|
+
* modify it under the terms of the GNU Lesser General Public
|
11
|
+
* License as published by the Free Software Foundation; either
|
12
|
+
* version 2.1 of the License, or (at your option) any later version.
|
13
|
+
*
|
14
|
+
* This library is distributed in the hope that it will be useful,
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
* Lesser General Public License for more details.
|
18
|
+
*
|
19
|
+
* You should have received a copy of the GNU Lesser General Public
|
20
|
+
* License along with this library; if not, write to the Free Software
|
21
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
22
|
+
* MA 02110-1301 USA
|
23
|
+
*/
|
24
|
+
|
25
|
+
#include "rbgtk3private.h"
|
26
|
+
|
27
|
+
#define RG_TARGET_NAMESPACE cDialog
|
28
|
+
#define _SELF(self) (RVAL2GTKDIALOG(self))
|
29
|
+
|
30
|
+
static VALUE
|
31
|
+
rg_add_button(VALUE self, VALUE button_text, VALUE response_id)
|
32
|
+
{
|
33
|
+
VALUE buffer;
|
34
|
+
return GOBJ2RVAL(gtk_dialog_add_button(_SELF(self),
|
35
|
+
SYMBOL_P(button_text) ? RVAL2GLIBID(button_text, buffer) : RVAL2CSTR(button_text),
|
36
|
+
RVAL2GTKRESPONSETYPE(response_id)));
|
37
|
+
}
|
38
|
+
|
39
|
+
static VALUE
|
40
|
+
rg_add_buttons(int argc, VALUE *argv, VALUE self)
|
41
|
+
{
|
42
|
+
VALUE button_ary;
|
43
|
+
rb_scan_args(argc, argv, "*", &button_ary);
|
44
|
+
rbgtk_add_buttons(self, button_ary, rg_add_button);
|
45
|
+
return self;
|
46
|
+
}
|
47
|
+
|
48
|
+
static VALUE
|
49
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
50
|
+
{
|
51
|
+
VALUE options, rb_title, rb_parent, rb_flags, rb_button_ary;
|
52
|
+
const gchar *title;
|
53
|
+
GtkWindow *parent;
|
54
|
+
GtkDialogFlags flags;
|
55
|
+
GtkWidget *dialog;
|
56
|
+
|
57
|
+
rb_scan_args(argc, argv, "01", &options);
|
58
|
+
rbg_scan_options(options,
|
59
|
+
"title", &rb_title,
|
60
|
+
"parent", &rb_parent,
|
61
|
+
"flags", &rb_flags,
|
62
|
+
"buttons", &rb_button_ary,
|
63
|
+
NULL);
|
64
|
+
title = RVAL2CSTR_ACCEPT_NIL(rb_title);
|
65
|
+
parent = NIL_P(rb_parent) ? NULL : RVAL2GTKWINDOW(rb_parent);
|
66
|
+
flags = NIL_P(rb_flags) ? 0 : RVAL2GTKDIALOGFLAGS(rb_flags);
|
67
|
+
|
68
|
+
dialog = gtk_dialog_new_with_buttons(title, parent, flags, NULL, NULL);
|
69
|
+
RBGTK_INITIALIZE(self, dialog);
|
70
|
+
if (!NIL_P(rb_button_ary))
|
71
|
+
rb_funcall2(self, rb_intern("add_buttons"),
|
72
|
+
RARRAY_LEN(rb_button_ary), RARRAY_PTR(rb_button_ary));
|
73
|
+
|
74
|
+
return Qnil;
|
75
|
+
}
|
76
|
+
|
77
|
+
static VALUE
|
78
|
+
rg_run(VALUE self)
|
79
|
+
{
|
80
|
+
if (rb_block_given_p()){
|
81
|
+
VALUE ret = INT2NUM(gtk_dialog_run(_SELF(self)));
|
82
|
+
rb_yield(ret);
|
83
|
+
return ret;
|
84
|
+
} else {
|
85
|
+
return INT2NUM(gtk_dialog_run(_SELF(self)));
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
static VALUE
|
90
|
+
rg_response(VALUE self, VALUE response_id)
|
91
|
+
{
|
92
|
+
gtk_dialog_response(_SELF(self), NUM2INT(response_id));
|
93
|
+
return self;
|
94
|
+
}
|
95
|
+
|
96
|
+
static VALUE
|
97
|
+
rg_add_action_widget(VALUE self, VALUE child, VALUE response_id)
|
98
|
+
{
|
99
|
+
gtk_dialog_add_action_widget(_SELF(self), RVAL2GTKWIDGET(child),
|
100
|
+
NUM2INT(response_id));
|
101
|
+
return self;
|
102
|
+
}
|
103
|
+
|
104
|
+
static VALUE
|
105
|
+
rg_set_default_response(VALUE self, VALUE response_id)
|
106
|
+
{
|
107
|
+
gtk_dialog_set_default_response(_SELF(self), NUM2INT(response_id));
|
108
|
+
return self;
|
109
|
+
}
|
110
|
+
|
111
|
+
static VALUE
|
112
|
+
rg_set_response_sensitive(VALUE self, VALUE response_id, VALUE setting)
|
113
|
+
{
|
114
|
+
gtk_dialog_set_response_sensitive(_SELF(self), NUM2INT(response_id), RVAL2CBOOL(setting));
|
115
|
+
return self;
|
116
|
+
}
|
117
|
+
|
118
|
+
static VALUE
|
119
|
+
rg_s_alternative_dialog_button_order_p(G_GNUC_UNUSED VALUE self, VALUE screen)
|
120
|
+
{
|
121
|
+
gboolean ret = gtk_alternative_dialog_button_order(NIL_P(screen) ? NULL :
|
122
|
+
RVAL2GDKSCREEN(screen));
|
123
|
+
return CBOOL2RVAL(ret);
|
124
|
+
}
|
125
|
+
|
126
|
+
static VALUE
|
127
|
+
rg_set_alternative_button_order(VALUE self, VALUE rbnew_order)
|
128
|
+
{
|
129
|
+
GtkDialog *dialog = _SELF(self);
|
130
|
+
long n;
|
131
|
+
gint *new_order = RVAL2GINTS(rbnew_order, n);
|
132
|
+
|
133
|
+
gtk_dialog_set_alternative_button_order_from_array(dialog, n, new_order);
|
134
|
+
|
135
|
+
g_free(new_order);
|
136
|
+
|
137
|
+
return self;
|
138
|
+
}
|
139
|
+
|
140
|
+
static VALUE
|
141
|
+
rg_action_area(VALUE self)
|
142
|
+
{
|
143
|
+
return GOBJ2RVAL(gtk_dialog_get_action_area(_SELF(self)));
|
144
|
+
}
|
145
|
+
|
146
|
+
static VALUE
|
147
|
+
rg_get_response(VALUE self, VALUE widget)
|
148
|
+
{
|
149
|
+
return INT2NUM(gtk_dialog_get_response_for_widget(_SELF(self), RVAL2GTKWIDGET(widget)));
|
150
|
+
}
|
151
|
+
|
152
|
+
static VALUE
|
153
|
+
rg_content_area(VALUE self)
|
154
|
+
{
|
155
|
+
return GOBJ2RVAL(gtk_dialog_get_content_area(_SELF(self)));
|
156
|
+
}
|
157
|
+
|
158
|
+
static VALUE
|
159
|
+
rg_get_widget_for_response(VALUE self, VALUE response_id)
|
160
|
+
{
|
161
|
+
return GOBJ2RVAL(gtk_dialog_get_widget_for_response(_SELF(self), NUM2INT(response_id)));
|
162
|
+
}
|
163
|
+
|
164
|
+
void
|
165
|
+
Init_gtk_dialog(VALUE mGtk)
|
166
|
+
{
|
167
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_DIALOG, "Dialog", mGtk);
|
168
|
+
|
169
|
+
RG_DEF_METHOD(initialize, -1);
|
170
|
+
RG_DEF_METHOD(run, 0);
|
171
|
+
RG_DEF_METHOD(response, 1);
|
172
|
+
RG_DEF_METHOD(add_button, 2);
|
173
|
+
RG_DEF_METHOD(add_buttons, -1);
|
174
|
+
RG_DEF_METHOD(add_action_widget, 2);
|
175
|
+
RG_DEF_METHOD(set_default_response, 1);
|
176
|
+
RG_DEF_SMETHOD_P(alternative_dialog_button_order, 1);
|
177
|
+
RG_DEF_METHOD(set_alternative_button_order, 1);
|
178
|
+
RG_DEF_METHOD(set_response_sensitive, 2);
|
179
|
+
RG_DEF_METHOD(action_area, 0);
|
180
|
+
RG_DEF_METHOD(get_response, 1);
|
181
|
+
RG_DEF_ALIAS("get_response_for_widget", "get_response");
|
182
|
+
RG_DEF_METHOD(content_area, 0);
|
183
|
+
RG_DEF_METHOD(get_widget_for_response, 1);
|
184
|
+
|
185
|
+
G_DEF_CLASS(GTK_TYPE_DIALOG_FLAGS, "Flags", RG_TARGET_NAMESPACE);
|
186
|
+
}
|
@@ -0,0 +1,93 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2002-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 mDrag
|
25
|
+
|
26
|
+
struct rbgtk_rval2gtktargetentries_args {
|
27
|
+
VALUE ary;
|
28
|
+
long n;
|
29
|
+
GtkTargetEntry *result;
|
30
|
+
};
|
31
|
+
|
32
|
+
static VALUE
|
33
|
+
rbgtk_rval2gtktargetentries_body(VALUE value)
|
34
|
+
{
|
35
|
+
long i;
|
36
|
+
struct rbgtk_rval2gtktargetentries_args *args = (struct rbgtk_rval2gtktargetentries_args *)value;
|
37
|
+
|
38
|
+
for (i = 0; i < args->n; i++) {
|
39
|
+
VALUE entry = rb_ary_to_ary(RARRAY_PTR(args->ary)[i]);
|
40
|
+
VALUE flags = RARRAY_PTR(entry)[1];
|
41
|
+
VALUE info = RARRAY_PTR(entry)[2];
|
42
|
+
|
43
|
+
args->result[i].target = (gchar *)RVAL2CSTR_ACCEPT_NIL(RARRAY_PTR(entry)[0]);
|
44
|
+
args->result[i].flags = NIL_P(flags) ? 0 : RVAL2GTKTARGETFLAGS(flags);
|
45
|
+
args->result[i].info = NIL_P(info) ? 0 : NUM2INT(info);
|
46
|
+
}
|
47
|
+
|
48
|
+
return Qnil;
|
49
|
+
}
|
50
|
+
|
51
|
+
static G_GNUC_NORETURN VALUE
|
52
|
+
rbgtk_rval2gtktargetentries_rescue(VALUE value)
|
53
|
+
{
|
54
|
+
g_free(((struct rbgtk_rval2gtktargetentries_args *)value)->result);
|
55
|
+
|
56
|
+
rb_exc_raise(rb_errinfo());
|
57
|
+
}
|
58
|
+
|
59
|
+
GtkTargetEntry *
|
60
|
+
rbgtk_rval2gtktargetentries(VALUE value, long *n)
|
61
|
+
{
|
62
|
+
struct rbgtk_rval2gtktargetentries_args args;
|
63
|
+
|
64
|
+
args.ary = rb_ary_to_ary(value);
|
65
|
+
args.n = RARRAY_LEN(args.ary);
|
66
|
+
args.result = g_new(GtkTargetEntry, args.n + 1);
|
67
|
+
|
68
|
+
rb_rescue(rbgtk_rval2gtktargetentries_body, (VALUE)&args,
|
69
|
+
rbgtk_rval2gtktargetentries_rescue, (VALUE)&args);
|
70
|
+
|
71
|
+
*n = args.n;
|
72
|
+
|
73
|
+
return args.result;
|
74
|
+
}
|
75
|
+
|
76
|
+
GtkTargetEntry *
|
77
|
+
rbgtk_rval2gtktargetentries_accept_nil(VALUE value, long *n)
|
78
|
+
{
|
79
|
+
if (!NIL_P(value))
|
80
|
+
return rbgtk_rval2gtktargetentries(value, n);
|
81
|
+
|
82
|
+
*n = 0;
|
83
|
+
|
84
|
+
return NULL;
|
85
|
+
}
|
86
|
+
|
87
|
+
void
|
88
|
+
Init_gtk_drag(VALUE mGtk)
|
89
|
+
{
|
90
|
+
VALUE RG_TARGET_NAMESPACE = rb_define_module_under(mGtk, "Drag");
|
91
|
+
G_DEF_CLASS(GTK_TYPE_DEST_DEFAULTS, "DestDefaults", RG_TARGET_NAMESPACE);
|
92
|
+
G_DEF_CLASS(GTK_TYPE_TARGET_FLAGS, "TargetFlags", RG_TARGET_NAMESPACE);
|
93
|
+
}
|
@@ -0,0 +1,42 @@
|
|
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 cDrawingArea
|
28
|
+
|
29
|
+
static VALUE
|
30
|
+
rg_initialize(VALUE self)
|
31
|
+
{
|
32
|
+
RBGTK_INITIALIZE(self, gtk_drawing_area_new());
|
33
|
+
return Qnil;
|
34
|
+
}
|
35
|
+
|
36
|
+
void
|
37
|
+
Init_gtk_drawing_area(VALUE mGtk)
|
38
|
+
{
|
39
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_DRAWING_AREA, "DrawingArea", mGtk);
|
40
|
+
|
41
|
+
RG_DEF_METHOD(initialize, 0);
|
42
|
+
}
|
@@ -0,0 +1,149 @@
|
|
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 mEditable
|
28
|
+
|
29
|
+
static VALUE
|
30
|
+
rg_select_region(VALUE self, VALUE start, VALUE end)
|
31
|
+
{
|
32
|
+
gtk_editable_select_region(RVAL2GTKEDITABLE(self),
|
33
|
+
NUM2INT(start), NUM2INT(end));
|
34
|
+
return self;
|
35
|
+
}
|
36
|
+
|
37
|
+
static VALUE
|
38
|
+
rg_selection_bounds(VALUE self)
|
39
|
+
{
|
40
|
+
gint start, end;
|
41
|
+
gboolean ret;
|
42
|
+
ret = gtk_editable_get_selection_bounds(RVAL2GTKEDITABLE(self),
|
43
|
+
&start, &end);
|
44
|
+
return ret ? rb_ary_new3(2, INT2NUM(start), INT2NUM(end)) : Qnil;
|
45
|
+
}
|
46
|
+
|
47
|
+
static VALUE
|
48
|
+
rg_insert_text(VALUE self, VALUE new_text, VALUE pos)
|
49
|
+
{
|
50
|
+
gint p = NUM2INT(pos);
|
51
|
+
|
52
|
+
StringValue(new_text);
|
53
|
+
gtk_editable_insert_text(RVAL2GTKEDITABLE(self),
|
54
|
+
RSTRING_PTR(new_text),
|
55
|
+
RSTRING_LEN(new_text),
|
56
|
+
&p);
|
57
|
+
return INT2NUM(p);
|
58
|
+
}
|
59
|
+
|
60
|
+
static VALUE
|
61
|
+
rg_delete_text(VALUE self, VALUE start, VALUE end)
|
62
|
+
{
|
63
|
+
gtk_editable_delete_text(RVAL2GTKEDITABLE(self),
|
64
|
+
NUM2INT(start), NUM2INT(end));
|
65
|
+
return self;
|
66
|
+
}
|
67
|
+
|
68
|
+
static VALUE
|
69
|
+
rg_get_chars(VALUE self, VALUE start, VALUE end)
|
70
|
+
{
|
71
|
+
return CSTR2RVAL_FREE(
|
72
|
+
gtk_editable_get_chars(RVAL2GTKEDITABLE(self), /* check s */
|
73
|
+
NUM2INT(start), NUM2INT(end))); /* check start,end */
|
74
|
+
}
|
75
|
+
|
76
|
+
static VALUE
|
77
|
+
rg_delete_selection(VALUE self)
|
78
|
+
{
|
79
|
+
gtk_editable_delete_selection(RVAL2GTKEDITABLE(self));
|
80
|
+
return self;
|
81
|
+
}
|
82
|
+
|
83
|
+
static VALUE
|
84
|
+
rg_position(VALUE self)
|
85
|
+
{
|
86
|
+
return INT2NUM(gtk_editable_get_position(RVAL2GTKEDITABLE(self)));
|
87
|
+
}
|
88
|
+
|
89
|
+
static VALUE
|
90
|
+
rg_set_position(VALUE self, VALUE position)
|
91
|
+
{
|
92
|
+
gtk_editable_set_position(RVAL2GTKEDITABLE(self),
|
93
|
+
NUM2INT(position));
|
94
|
+
return self;
|
95
|
+
}
|
96
|
+
|
97
|
+
static VALUE
|
98
|
+
rg_set_editable(VALUE self, VALUE editable)
|
99
|
+
{
|
100
|
+
gtk_editable_set_editable(RVAL2GTKEDITABLE(self), RVAL2CBOOL(editable));
|
101
|
+
return self;
|
102
|
+
}
|
103
|
+
|
104
|
+
static VALUE
|
105
|
+
rg_editable_p(VALUE self)
|
106
|
+
{
|
107
|
+
return CBOOL2RVAL(gtk_editable_get_editable(RVAL2GTKEDITABLE(self)));
|
108
|
+
}
|
109
|
+
|
110
|
+
static VALUE
|
111
|
+
rg_cut_clipboard(VALUE self)
|
112
|
+
{
|
113
|
+
gtk_editable_cut_clipboard(RVAL2GTKEDITABLE(self));
|
114
|
+
return self;
|
115
|
+
}
|
116
|
+
|
117
|
+
static VALUE
|
118
|
+
rg_copy_clipboard(VALUE self)
|
119
|
+
{
|
120
|
+
gtk_editable_copy_clipboard(RVAL2GTKEDITABLE(self));
|
121
|
+
return self;
|
122
|
+
}
|
123
|
+
|
124
|
+
static VALUE
|
125
|
+
rg_paste_clipboard(VALUE self)
|
126
|
+
{
|
127
|
+
gtk_editable_paste_clipboard(RVAL2GTKEDITABLE(self));
|
128
|
+
return self;
|
129
|
+
}
|
130
|
+
|
131
|
+
void
|
132
|
+
Init_gtk_editable(VALUE mGtk)
|
133
|
+
{
|
134
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_INTERFACE(GTK_TYPE_EDITABLE, "Editable", mGtk);
|
135
|
+
|
136
|
+
RG_DEF_METHOD(select_region, 2);
|
137
|
+
RG_DEF_METHOD(selection_bounds, 0);
|
138
|
+
RG_DEF_METHOD(insert_text, 2);
|
139
|
+
RG_DEF_METHOD(delete_text, 2);
|
140
|
+
RG_DEF_METHOD(get_chars, 2);
|
141
|
+
RG_DEF_METHOD(delete_selection, 0);
|
142
|
+
RG_DEF_METHOD(position, 0);
|
143
|
+
RG_DEF_METHOD(set_position, 1);
|
144
|
+
RG_DEF_METHOD(set_editable, 1);
|
145
|
+
RG_DEF_METHOD_P(editable, 0);
|
146
|
+
RG_DEF_METHOD(copy_clipboard, 0);
|
147
|
+
RG_DEF_METHOD(cut_clipboard, 0);
|
148
|
+
RG_DEF_METHOD(paste_clipboard, 0);
|
149
|
+
}
|