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,229 @@
|
|
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 cWidgetPath
|
24
|
+
#define _SELF(self) (RVAL2GTKWIDGETPATH(self))
|
25
|
+
|
26
|
+
static VALUE
|
27
|
+
rg_initialize(VALUE self)
|
28
|
+
{
|
29
|
+
G_INITIALIZE(self, gtk_widget_path_new());
|
30
|
+
return Qnil;
|
31
|
+
}
|
32
|
+
|
33
|
+
static VALUE
|
34
|
+
rg_append_type(VALUE self, VALUE type)
|
35
|
+
{
|
36
|
+
gint pos;
|
37
|
+
|
38
|
+
pos = gtk_widget_path_append_type(_SELF(self), CLASS2GTYPE(type));
|
39
|
+
|
40
|
+
return INT2NUM(pos);
|
41
|
+
}
|
42
|
+
|
43
|
+
static VALUE
|
44
|
+
rg_object_type(VALUE self)
|
45
|
+
{
|
46
|
+
return GTYPE2CLASS(gtk_widget_path_get_object_type(_SELF(self)));
|
47
|
+
}
|
48
|
+
|
49
|
+
static VALUE
|
50
|
+
rg_has_parent_p(VALUE self, VALUE type)
|
51
|
+
{
|
52
|
+
return CBOOL2RVAL(gtk_widget_path_has_parent(_SELF(self), CLASS2GTYPE(type)));
|
53
|
+
}
|
54
|
+
|
55
|
+
static VALUE
|
56
|
+
rg_type_p(VALUE self, VALUE type)
|
57
|
+
{
|
58
|
+
return CBOOL2RVAL(gtk_widget_path_is_type(_SELF(self), CLASS2GTYPE(type)));
|
59
|
+
}
|
60
|
+
|
61
|
+
static VALUE
|
62
|
+
rg_iter_add_class(VALUE self, VALUE pos, VALUE name)
|
63
|
+
{
|
64
|
+
gtk_widget_path_iter_add_class(_SELF(self), NUM2INT(pos), RVAL2CSTR(name));
|
65
|
+
|
66
|
+
return self;
|
67
|
+
}
|
68
|
+
|
69
|
+
static VALUE
|
70
|
+
rg_iter_add_region(VALUE self, VALUE pos, VALUE name, VALUE flags)
|
71
|
+
{
|
72
|
+
gtk_widget_path_iter_add_region(_SELF(self),
|
73
|
+
NUM2INT(pos),
|
74
|
+
RVAL2CSTR(name),
|
75
|
+
RVAL2GTKREGIONFLAGS(flags));
|
76
|
+
|
77
|
+
return self;
|
78
|
+
}
|
79
|
+
|
80
|
+
static VALUE
|
81
|
+
rg_iter_clear_classes(VALUE self, VALUE pos)
|
82
|
+
{
|
83
|
+
gtk_widget_path_iter_clear_classes(_SELF(self), NUM2INT(pos));
|
84
|
+
|
85
|
+
return self;
|
86
|
+
}
|
87
|
+
|
88
|
+
static VALUE
|
89
|
+
rg_iter_clear_regions(VALUE self, VALUE pos)
|
90
|
+
{
|
91
|
+
gtk_widget_path_iter_clear_regions(_SELF(self), NUM2INT(pos));
|
92
|
+
|
93
|
+
return self;
|
94
|
+
}
|
95
|
+
|
96
|
+
static VALUE
|
97
|
+
rg_iter_get_name(VALUE self, VALUE pos)
|
98
|
+
{
|
99
|
+
return CSTR2RVAL(gtk_widget_path_iter_get_name(_SELF(self), NUM2INT(pos)));
|
100
|
+
}
|
101
|
+
|
102
|
+
static VALUE
|
103
|
+
rg_iter_get_object_type(VALUE self, VALUE pos)
|
104
|
+
{
|
105
|
+
return GTYPE2CLASS(gtk_widget_path_iter_get_object_type(_SELF(self), NUM2INT(pos)));
|
106
|
+
}
|
107
|
+
|
108
|
+
static VALUE
|
109
|
+
rg_iter_has_class_p(VALUE self, VALUE pos, VALUE name)
|
110
|
+
{
|
111
|
+
return CBOOL2RVAL(gtk_widget_path_iter_has_class(_SELF(self), NUM2INT(pos), RVAL2CSTR(name)));
|
112
|
+
}
|
113
|
+
|
114
|
+
static VALUE
|
115
|
+
rg_iter_has_name_p(VALUE self, VALUE pos, VALUE name)
|
116
|
+
{
|
117
|
+
return CBOOL2RVAL(gtk_widget_path_iter_has_name(_SELF(self), NUM2INT(pos), RVAL2CSTR(name)));
|
118
|
+
}
|
119
|
+
|
120
|
+
static VALUE
|
121
|
+
rg_iter_has_region(VALUE self, VALUE pos, VALUE name)
|
122
|
+
{
|
123
|
+
GtkRegionFlags flags;
|
124
|
+
gboolean result;
|
125
|
+
|
126
|
+
result = gtk_widget_path_iter_has_region(_SELF(self), NUM2INT(pos), RVAL2CSTR(name), &flags);
|
127
|
+
|
128
|
+
return result ? GTKREGIONFLAGS2RVAL(flags) : Qnil;
|
129
|
+
}
|
130
|
+
|
131
|
+
static VALUE
|
132
|
+
rg_iter_list_classes(VALUE self, VALUE pos)
|
133
|
+
{
|
134
|
+
return CSTRGSLIST2RVAL_FREE(gtk_widget_path_iter_list_classes(_SELF(self), NUM2INT(pos)),
|
135
|
+
g_slist_free, NULL);
|
136
|
+
}
|
137
|
+
|
138
|
+
static VALUE
|
139
|
+
rg_iter_list_regions(VALUE self, VALUE pos)
|
140
|
+
{
|
141
|
+
return CSTRGSLIST2RVAL_FREE(gtk_widget_path_iter_list_regions(_SELF(self), NUM2INT(pos)),
|
142
|
+
g_slist_free, NULL);
|
143
|
+
}
|
144
|
+
|
145
|
+
static VALUE
|
146
|
+
rg_iter_remove_class(VALUE self, VALUE pos, VALUE name)
|
147
|
+
{
|
148
|
+
gtk_widget_path_iter_remove_class(_SELF(self), NUM2INT(pos), RVAL2CSTR(name));
|
149
|
+
|
150
|
+
return self;
|
151
|
+
}
|
152
|
+
|
153
|
+
static VALUE
|
154
|
+
rg_iter_remove_region(VALUE self, VALUE pos, VALUE name)
|
155
|
+
{
|
156
|
+
gtk_widget_path_iter_remove_region(_SELF(self), NUM2INT(pos), RVAL2CSTR(name));
|
157
|
+
|
158
|
+
return self;
|
159
|
+
}
|
160
|
+
|
161
|
+
static VALUE
|
162
|
+
rg_iter_set_name(VALUE self, VALUE pos, VALUE name)
|
163
|
+
{
|
164
|
+
gtk_widget_path_iter_set_name(_SELF(self), NUM2INT(pos), RVAL2CSTR(name));
|
165
|
+
|
166
|
+
return self;
|
167
|
+
}
|
168
|
+
|
169
|
+
static VALUE
|
170
|
+
rg_iter_set_object_type(VALUE self, VALUE pos, VALUE type)
|
171
|
+
{
|
172
|
+
gtk_widget_path_iter_set_object_type(_SELF(self), NUM2INT(pos), CLASS2GTYPE(type));
|
173
|
+
|
174
|
+
return self;
|
175
|
+
}
|
176
|
+
|
177
|
+
static VALUE
|
178
|
+
rg_length(VALUE self)
|
179
|
+
{
|
180
|
+
return INT2NUM(gtk_widget_path_length(_SELF(self)));
|
181
|
+
}
|
182
|
+
|
183
|
+
static VALUE
|
184
|
+
rg_prepend_type(VALUE self, VALUE type)
|
185
|
+
{
|
186
|
+
gtk_widget_path_prepend_type(_SELF(self), CLASS2GTYPE(type));
|
187
|
+
|
188
|
+
return self;
|
189
|
+
}
|
190
|
+
|
191
|
+
#if GTK_CHECK_VERSION(3, 2, 0)
|
192
|
+
static VALUE
|
193
|
+
rg_to_s(VALUE self)
|
194
|
+
{
|
195
|
+
return CSTR2RVAL(gtk_widget_path_to_string(_SELF(self)));
|
196
|
+
}
|
197
|
+
#endif
|
198
|
+
|
199
|
+
void
|
200
|
+
Init_gtk_widgetpath(VALUE mGtk)
|
201
|
+
{
|
202
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_WIDGET_PATH, "WidgetPath", mGtk);
|
203
|
+
|
204
|
+
RG_DEF_METHOD(initialize, 0);
|
205
|
+
RG_DEF_METHOD(append_type, 1);
|
206
|
+
RG_DEF_METHOD_P(has_parent, 1);
|
207
|
+
RG_DEF_METHOD(iter_add_class, 2);
|
208
|
+
RG_DEF_METHOD(iter_add_region, 3);
|
209
|
+
RG_DEF_METHOD(iter_clear_classes, 1);
|
210
|
+
RG_DEF_METHOD(iter_clear_regions, 1);
|
211
|
+
RG_DEF_METHOD(iter_get_name, 1);
|
212
|
+
RG_DEF_METHOD(iter_get_object_type, 1);
|
213
|
+
RG_DEF_METHOD_P(iter_has_class, 2);
|
214
|
+
RG_DEF_METHOD_P(iter_has_name, 2);
|
215
|
+
RG_DEF_METHOD(iter_has_region, 2);
|
216
|
+
RG_DEF_METHOD(iter_list_classes, 1);
|
217
|
+
RG_DEF_METHOD(iter_list_regions, 1);
|
218
|
+
RG_DEF_METHOD(iter_remove_class, 2);
|
219
|
+
RG_DEF_METHOD(iter_remove_region, 2);
|
220
|
+
RG_DEF_METHOD(iter_set_name, 2);
|
221
|
+
RG_DEF_METHOD(iter_set_object_type, 2);
|
222
|
+
RG_DEF_METHOD(length, 0);
|
223
|
+
RG_DEF_METHOD(object_type, 0);
|
224
|
+
RG_DEF_METHOD(prepend_type, 1);
|
225
|
+
#if GTK_CHECK_VERSION(3, 2, 0)
|
226
|
+
RG_DEF_METHOD(to_s, 0);
|
227
|
+
#endif
|
228
|
+
RG_DEF_METHOD_P(type, 1);
|
229
|
+
}
|
@@ -0,0 +1,557 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2002-2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 1998-2000 Yukihiro Matsumoto,
|
5
|
+
* Daisuke Kanda,
|
6
|
+
* Hiroshi Igarashi
|
7
|
+
*
|
8
|
+
* This library is free software; you can redistribute it and/or
|
9
|
+
* modify it under the terms of the GNU Lesser General Public
|
10
|
+
* License as published by the Free Software Foundation; either
|
11
|
+
* version 2.1 of the License, or (at your option) any later version.
|
12
|
+
*
|
13
|
+
* This library is distributed in the hope that it will be useful,
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
16
|
+
* Lesser General Public License for more details.
|
17
|
+
*
|
18
|
+
* You should have received a copy of the GNU Lesser General Public
|
19
|
+
* License along with this library; if not, write to the Free Software
|
20
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
21
|
+
* MA 02110-1301 USA
|
22
|
+
*/
|
23
|
+
|
24
|
+
#include "rbgtk3private.h"
|
25
|
+
|
26
|
+
#define RG_TARGET_NAMESPACE cWindow
|
27
|
+
#define _SELF(s) (RVAL2GTKWINDOW(s))
|
28
|
+
|
29
|
+
static VALUE
|
30
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
31
|
+
{
|
32
|
+
VALUE arg;
|
33
|
+
GtkWindowType tp = GTK_WINDOW_TOPLEVEL;
|
34
|
+
const gchar *title = NULL;
|
35
|
+
GtkWidget* window = NULL;
|
36
|
+
|
37
|
+
if (rb_scan_args(argc, argv, "01", &arg) == 1) {
|
38
|
+
if (TYPE(arg) == T_STRING) {
|
39
|
+
StringValue(arg);
|
40
|
+
title = RVAL2CSTR(arg);
|
41
|
+
} else {
|
42
|
+
tp = RVAL2GTKWINDOWTYPE(arg);
|
43
|
+
}
|
44
|
+
}
|
45
|
+
window = gtk_window_new(tp);
|
46
|
+
|
47
|
+
if (title != NULL)
|
48
|
+
gtk_window_set_title(GTK_WINDOW(window), title);
|
49
|
+
|
50
|
+
RBGTK_INITIALIZE(self, window);
|
51
|
+
return Qnil;
|
52
|
+
}
|
53
|
+
|
54
|
+
static VALUE
|
55
|
+
rg_set_wmclass(VALUE self, VALUE wmclass_name, VALUE wmclass_class)
|
56
|
+
{
|
57
|
+
gtk_window_set_wmclass(_SELF(self),
|
58
|
+
RVAL2CSTR_ACCEPT_NIL(wmclass_name),
|
59
|
+
RVAL2CSTR_ACCEPT_NIL(wmclass_class));
|
60
|
+
return self;
|
61
|
+
}
|
62
|
+
|
63
|
+
static VALUE
|
64
|
+
rg_add_accel_group(VALUE self, VALUE accel)
|
65
|
+
{
|
66
|
+
gtk_window_add_accel_group(_SELF(self),
|
67
|
+
RVAL2GTKACCELGROUP(accel));
|
68
|
+
G_CHILD_ADD(self, accel);
|
69
|
+
return self;
|
70
|
+
}
|
71
|
+
|
72
|
+
static VALUE
|
73
|
+
rg_remove_accel_group(VALUE self, VALUE accel)
|
74
|
+
{
|
75
|
+
gtk_window_remove_accel_group(_SELF(self),
|
76
|
+
RVAL2GTKACCELGROUP(accel));
|
77
|
+
G_CHILD_REMOVE(self, accel);
|
78
|
+
return self;
|
79
|
+
}
|
80
|
+
|
81
|
+
static VALUE
|
82
|
+
gwin_activate_focus(VALUE self)
|
83
|
+
{
|
84
|
+
return CBOOL2RVAL(gtk_window_activate_focus(_SELF(self)));
|
85
|
+
}
|
86
|
+
|
87
|
+
static VALUE
|
88
|
+
gwin_activate_default(VALUE self)
|
89
|
+
{
|
90
|
+
return CBOOL2RVAL(gtk_window_activate_default(_SELF(self)));
|
91
|
+
}
|
92
|
+
|
93
|
+
static VALUE
|
94
|
+
rg_set_default_size(VALUE self, VALUE w, VALUE h)
|
95
|
+
{
|
96
|
+
gtk_window_set_default_size(_SELF(self),
|
97
|
+
NUM2INT(w), NUM2INT(h));
|
98
|
+
return self;
|
99
|
+
}
|
100
|
+
|
101
|
+
static VALUE
|
102
|
+
rg_set_geometry_hints(VALUE self, VALUE geometry_widget, VALUE geometry, VALUE geom_mask)
|
103
|
+
{
|
104
|
+
gtk_window_set_geometry_hints(_SELF(self),
|
105
|
+
RVAL2GTKWIDGET(geometry_widget),
|
106
|
+
RVAL2GDKGEOMETRY(geometry),
|
107
|
+
RVAL2GDKWINDOWHINTS(geom_mask));
|
108
|
+
return self;
|
109
|
+
}
|
110
|
+
|
111
|
+
static VALUE
|
112
|
+
rg_s_toplevels(G_GNUC_UNUSED VALUE self)
|
113
|
+
{
|
114
|
+
GList* list = gtk_window_list_toplevels();
|
115
|
+
VALUE ret = GOBJGLIST2RVAL(list);
|
116
|
+
g_list_foreach(list, (GFunc)g_object_ref, NULL);
|
117
|
+
g_list_free(list);
|
118
|
+
return ret;
|
119
|
+
}
|
120
|
+
|
121
|
+
static VALUE
|
122
|
+
rg_add_mnemonic(VALUE self, VALUE keyval, VALUE target)
|
123
|
+
{
|
124
|
+
gtk_window_add_mnemonic(_SELF(self), NUM2INT(keyval), RVAL2GTKWIDGET(target));
|
125
|
+
return self;
|
126
|
+
}
|
127
|
+
|
128
|
+
static VALUE
|
129
|
+
rg_remove_mnemonic(VALUE self, VALUE keyval, VALUE target)
|
130
|
+
{
|
131
|
+
gtk_window_remove_mnemonic(_SELF(self), NUM2INT(keyval), RVAL2GTKWIDGET(target));
|
132
|
+
return self;
|
133
|
+
}
|
134
|
+
|
135
|
+
static VALUE
|
136
|
+
rg_mnemonic_activate(VALUE self, VALUE keyval, VALUE modifier)
|
137
|
+
{
|
138
|
+
return CBOOL2RVAL(gtk_window_mnemonic_activate(_SELF(self),
|
139
|
+
NUM2INT(keyval),
|
140
|
+
RVAL2GDKMODIFIERTYPE(modifier)));
|
141
|
+
}
|
142
|
+
|
143
|
+
static VALUE
|
144
|
+
rg_focus(VALUE self)
|
145
|
+
{
|
146
|
+
return GOBJ2RVAL(gtk_window_get_focus(_SELF(self)));
|
147
|
+
}
|
148
|
+
|
149
|
+
static VALUE
|
150
|
+
rg_set_focus(VALUE self, VALUE win)
|
151
|
+
{
|
152
|
+
gtk_window_set_focus(_SELF(self),
|
153
|
+
NIL_P(win) ? NULL : RVAL2GTKWIDGET(win));
|
154
|
+
return self;
|
155
|
+
}
|
156
|
+
|
157
|
+
static VALUE
|
158
|
+
rg_set_default(VALUE self, VALUE win)
|
159
|
+
{
|
160
|
+
gtk_window_set_default(_SELF(self),
|
161
|
+
NIL_P(win) ? NULL : RVAL2GTKWIDGET(win));
|
162
|
+
return self;
|
163
|
+
}
|
164
|
+
|
165
|
+
static VALUE
|
166
|
+
rg_present(int argc, VALUE *argv, VALUE self)
|
167
|
+
{
|
168
|
+
VALUE timestamp;
|
169
|
+
if (rb_scan_args(argc, argv, "01", ×tamp) == 1) {
|
170
|
+
gtk_window_present_with_time(_SELF(self), NUM2UINT(timestamp));
|
171
|
+
} else {
|
172
|
+
gtk_window_present(_SELF(self));
|
173
|
+
}
|
174
|
+
return self;
|
175
|
+
}
|
176
|
+
|
177
|
+
static VALUE
|
178
|
+
rg_iconify(VALUE self)
|
179
|
+
{
|
180
|
+
gtk_window_iconify(_SELF(self));
|
181
|
+
return self;
|
182
|
+
}
|
183
|
+
|
184
|
+
static VALUE
|
185
|
+
rg_deiconify(VALUE self)
|
186
|
+
{
|
187
|
+
gtk_window_deiconify(_SELF(self));
|
188
|
+
return self;
|
189
|
+
}
|
190
|
+
|
191
|
+
static VALUE
|
192
|
+
rg_stick(VALUE self)
|
193
|
+
{
|
194
|
+
gtk_window_stick(_SELF(self));
|
195
|
+
return self;
|
196
|
+
}
|
197
|
+
|
198
|
+
static VALUE
|
199
|
+
rg_unstick(VALUE self)
|
200
|
+
{
|
201
|
+
gtk_window_unstick(_SELF(self));
|
202
|
+
return self;
|
203
|
+
}
|
204
|
+
|
205
|
+
static VALUE
|
206
|
+
rg_maximize(VALUE self)
|
207
|
+
{
|
208
|
+
gtk_window_maximize(_SELF(self));
|
209
|
+
return self;
|
210
|
+
}
|
211
|
+
|
212
|
+
static VALUE
|
213
|
+
rg_unmaximize(VALUE self)
|
214
|
+
{
|
215
|
+
gtk_window_unmaximize(_SELF(self));
|
216
|
+
return self;
|
217
|
+
}
|
218
|
+
|
219
|
+
static VALUE
|
220
|
+
rg_fullscreen(VALUE self)
|
221
|
+
{
|
222
|
+
gtk_window_fullscreen(_SELF(self));
|
223
|
+
return self;
|
224
|
+
}
|
225
|
+
|
226
|
+
static VALUE
|
227
|
+
rg_unfullscreen(VALUE self)
|
228
|
+
{
|
229
|
+
gtk_window_unfullscreen(_SELF(self));
|
230
|
+
return self;
|
231
|
+
}
|
232
|
+
|
233
|
+
static VALUE
|
234
|
+
rg_set_keep_above(VALUE self, VALUE setting)
|
235
|
+
{
|
236
|
+
gtk_window_set_keep_above(_SELF(self), RVAL2CBOOL(setting));
|
237
|
+
return self;
|
238
|
+
}
|
239
|
+
|
240
|
+
static VALUE
|
241
|
+
rg_set_keep_below(VALUE self, VALUE setting)
|
242
|
+
{
|
243
|
+
gtk_window_set_keep_below(_SELF(self), RVAL2CBOOL(setting));
|
244
|
+
return self;
|
245
|
+
}
|
246
|
+
|
247
|
+
static VALUE
|
248
|
+
rg_begin_resize_drag(VALUE self, VALUE edge, VALUE button, VALUE root_x, VALUE root_y, VALUE timestamp)
|
249
|
+
{
|
250
|
+
gtk_window_begin_resize_drag(_SELF(self), RVAL2GDKWINDOWEDGE(edge),
|
251
|
+
NUM2INT(button), NUM2INT(root_x),
|
252
|
+
NUM2INT(root_y), NUM2UINT(timestamp));
|
253
|
+
return self;
|
254
|
+
}
|
255
|
+
|
256
|
+
static VALUE
|
257
|
+
rg_begin_move_drag(VALUE self, VALUE button, VALUE root_x, VALUE root_y, VALUE timestamp)
|
258
|
+
{
|
259
|
+
gtk_window_begin_move_drag(_SELF(self),
|
260
|
+
NUM2INT(button), NUM2INT(root_x),
|
261
|
+
NUM2INT(root_y), NUM2UINT(timestamp));
|
262
|
+
return self;
|
263
|
+
}
|
264
|
+
|
265
|
+
static VALUE
|
266
|
+
rg_set_mnemonic_modifier(VALUE self, VALUE modifier)
|
267
|
+
{
|
268
|
+
gtk_window_set_mnemonic_modifier(_SELF(self),
|
269
|
+
RVAL2GDKMODIFIERTYPE(modifier));
|
270
|
+
return self;
|
271
|
+
}
|
272
|
+
|
273
|
+
static VALUE
|
274
|
+
rg_s_default_icon_list(G_GNUC_UNUSED VALUE self)
|
275
|
+
{
|
276
|
+
return GOBJGLIST2RVAL_FREE(gtk_window_get_default_icon_list(),
|
277
|
+
g_list_free, NULL);
|
278
|
+
}
|
279
|
+
|
280
|
+
static VALUE
|
281
|
+
rg_default_size(VALUE self)
|
282
|
+
{
|
283
|
+
int width, height;
|
284
|
+
gtk_window_get_default_size(_SELF(self), &width, &height);
|
285
|
+
return rb_ary_new3(2, INT2NUM(width), INT2NUM(height));
|
286
|
+
}
|
287
|
+
|
288
|
+
static VALUE
|
289
|
+
rg_icon_list(VALUE self)
|
290
|
+
{
|
291
|
+
return GOBJGLIST2RVAL_FREE(gtk_window_get_icon_list(_SELF(self)),
|
292
|
+
g_list_free, NULL);
|
293
|
+
}
|
294
|
+
|
295
|
+
static VALUE
|
296
|
+
rg_mnemonic_modifier(VALUE self)
|
297
|
+
{
|
298
|
+
return GDKMODIFIERTYPE2RVAL(gtk_window_get_mnemonic_modifier(_SELF(self)));
|
299
|
+
}
|
300
|
+
|
301
|
+
static VALUE
|
302
|
+
rg_position(VALUE self)
|
303
|
+
{
|
304
|
+
int root_x, root_y;
|
305
|
+
gtk_window_get_position(_SELF(self), &root_x, &root_y);
|
306
|
+
return rb_ary_new3(2, INT2NUM(root_x), INT2NUM(root_y));
|
307
|
+
}
|
308
|
+
|
309
|
+
static VALUE
|
310
|
+
rg_size(VALUE self)
|
311
|
+
{
|
312
|
+
int width, height;
|
313
|
+
gtk_window_get_size(_SELF(self), &width, &height);
|
314
|
+
return rb_ary_new3(2, INT2NUM(width), INT2NUM(height));
|
315
|
+
}
|
316
|
+
|
317
|
+
static VALUE
|
318
|
+
rg_group(VALUE self)
|
319
|
+
{
|
320
|
+
return GOBJ2RVAL(gtk_window_get_group(_SELF(self)));
|
321
|
+
}
|
322
|
+
|
323
|
+
static VALUE
|
324
|
+
rg_move(VALUE self, VALUE x, VALUE y)
|
325
|
+
{
|
326
|
+
gtk_window_move(_SELF(self), NUM2INT(x), NUM2INT(y));
|
327
|
+
return self;
|
328
|
+
}
|
329
|
+
|
330
|
+
static VALUE
|
331
|
+
rg_parse_geometry(VALUE self, VALUE geometry)
|
332
|
+
{
|
333
|
+
return CBOOL2RVAL(gtk_window_parse_geometry(_SELF(self), RVAL2CSTR(geometry)));
|
334
|
+
}
|
335
|
+
|
336
|
+
static VALUE
|
337
|
+
rg_reshow_with_initial_size(VALUE self)
|
338
|
+
{
|
339
|
+
gtk_window_reshow_with_initial_size(_SELF(self));
|
340
|
+
return self;
|
341
|
+
}
|
342
|
+
|
343
|
+
static VALUE
|
344
|
+
rg_resize(VALUE self, VALUE width, VALUE height)
|
345
|
+
{
|
346
|
+
gtk_window_resize(_SELF(self), NUM2INT(width), NUM2INT(height));
|
347
|
+
return self;
|
348
|
+
}
|
349
|
+
|
350
|
+
static VALUE
|
351
|
+
rg_s_set_default_icon_list(G_GNUC_UNUSED VALUE self, VALUE rblist)
|
352
|
+
{
|
353
|
+
GList *list = RVAL2GDKPIXBUFGLIST(rblist);
|
354
|
+
|
355
|
+
gtk_window_set_default_icon_list(list);
|
356
|
+
|
357
|
+
g_list_free(list);
|
358
|
+
|
359
|
+
return rblist;
|
360
|
+
}
|
361
|
+
|
362
|
+
static VALUE
|
363
|
+
rg_s_set_default_icon(VALUE self, VALUE icon_or_filename)
|
364
|
+
{
|
365
|
+
if (TYPE(icon_or_filename) == T_STRING){
|
366
|
+
GError* err;
|
367
|
+
gboolean ret = gtk_window_set_default_icon_from_file(RVAL2CSTR(icon_or_filename), &err);
|
368
|
+
if (! ret)
|
369
|
+
RAISE_GERROR(err);
|
370
|
+
} else {
|
371
|
+
gtk_window_set_default_icon(RVAL2GDKPIXBUF(icon_or_filename));
|
372
|
+
}
|
373
|
+
return self;
|
374
|
+
}
|
375
|
+
|
376
|
+
static VALUE
|
377
|
+
rg_s_set_default_icon_name(VALUE self, VALUE name)
|
378
|
+
{
|
379
|
+
gtk_window_set_default_icon_name(RVAL2CSTR(name));
|
380
|
+
return self;
|
381
|
+
}
|
382
|
+
|
383
|
+
static VALUE
|
384
|
+
gwin_set_icon(VALUE self, VALUE icon_or_filename)
|
385
|
+
{
|
386
|
+
if (TYPE(icon_or_filename) == T_STRING){
|
387
|
+
GError* err;
|
388
|
+
gboolean ret = gtk_window_set_icon_from_file(_SELF(self),
|
389
|
+
RVAL2CSTR(icon_or_filename), &err);
|
390
|
+
if (! ret)
|
391
|
+
RAISE_GERROR(err);
|
392
|
+
} else {
|
393
|
+
gtk_window_set_icon(_SELF(self), RVAL2GDKPIXBUF(icon_or_filename));
|
394
|
+
}
|
395
|
+
return self;
|
396
|
+
}
|
397
|
+
|
398
|
+
static VALUE
|
399
|
+
rg_set_icon_list(VALUE self, VALUE rblist)
|
400
|
+
{
|
401
|
+
GtkWindow *window = _SELF(self);
|
402
|
+
GList *list = RVAL2GDKPIXBUFGLIST(rblist);
|
403
|
+
|
404
|
+
gtk_window_set_icon_list(window, list);
|
405
|
+
|
406
|
+
g_list_free(list);
|
407
|
+
|
408
|
+
/* TODO: Shouldn't we return self? */
|
409
|
+
return rblist;
|
410
|
+
}
|
411
|
+
|
412
|
+
static VALUE
|
413
|
+
rg_s_set_auto_startup_notification(VALUE self, VALUE setting)
|
414
|
+
{
|
415
|
+
gtk_window_set_auto_startup_notification(RVAL2CBOOL(setting));
|
416
|
+
return self;
|
417
|
+
}
|
418
|
+
|
419
|
+
static void
|
420
|
+
mark_toplevels(G_GNUC_UNUSED void *_)
|
421
|
+
{
|
422
|
+
GList* list = gtk_window_list_toplevels();
|
423
|
+
GList* p;
|
424
|
+
for (p = list; p; p = g_list_next(p))
|
425
|
+
rbgobj_gc_mark_instance(p->data);
|
426
|
+
g_list_free(list);
|
427
|
+
}
|
428
|
+
|
429
|
+
static VALUE
|
430
|
+
rg_s_default_icon_name(G_GNUC_UNUSED VALUE self)
|
431
|
+
{
|
432
|
+
return CSTR2RVAL(gtk_window_get_default_icon_name());
|
433
|
+
}
|
434
|
+
|
435
|
+
static VALUE
|
436
|
+
rg_activate_key(VALUE self, VALUE event)
|
437
|
+
{
|
438
|
+
return CBOOL2RVAL(gtk_window_activate_key(_SELF(self),
|
439
|
+
RVAL2GDKEVENTKEY(event)));
|
440
|
+
}
|
441
|
+
|
442
|
+
static VALUE
|
443
|
+
rg_default_widget(VALUE self)
|
444
|
+
{
|
445
|
+
return GOBJ2RVAL(gtk_window_get_default_widget(_SELF(self)));
|
446
|
+
}
|
447
|
+
|
448
|
+
static VALUE
|
449
|
+
rg_resize_grip_area(VALUE self)
|
450
|
+
{
|
451
|
+
GdkRectangle rect;
|
452
|
+
gboolean result;
|
453
|
+
|
454
|
+
result = gtk_window_get_resize_grip_area(_SELF(self), &rect);
|
455
|
+
|
456
|
+
return result ? GDKRECTANGLE2RVAL(&rect) : Qnil;
|
457
|
+
}
|
458
|
+
|
459
|
+
static VALUE
|
460
|
+
rg_has_group_p(VALUE self)
|
461
|
+
{
|
462
|
+
return CBOOL2RVAL(gtk_window_has_group(_SELF(self)));
|
463
|
+
}
|
464
|
+
|
465
|
+
static VALUE
|
466
|
+
rg_propagate_key_event(VALUE self, VALUE event)
|
467
|
+
{
|
468
|
+
return CBOOL2RVAL(gtk_window_propagate_key_event(_SELF(self),
|
469
|
+
RVAL2GDKEVENTKEY(event)));
|
470
|
+
}
|
471
|
+
|
472
|
+
static VALUE
|
473
|
+
rg_resize_to_geometry(VALUE self, VALUE width, VALUE height)
|
474
|
+
{
|
475
|
+
gtk_window_resize_to_geometry(_SELF(self), NUM2INT(width), NUM2INT(height));
|
476
|
+
|
477
|
+
return self;
|
478
|
+
}
|
479
|
+
|
480
|
+
static VALUE
|
481
|
+
rg_set_default_geometry(VALUE self, VALUE width, VALUE height)
|
482
|
+
{
|
483
|
+
gtk_window_set_default_geometry(_SELF(self), NUM2INT(width), NUM2INT(height));
|
484
|
+
|
485
|
+
return self;
|
486
|
+
}
|
487
|
+
|
488
|
+
void
|
489
|
+
Init_gtk_window(VALUE mGtk)
|
490
|
+
{
|
491
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_WINDOW, "Window", mGtk);
|
492
|
+
|
493
|
+
RG_DEF_METHOD(initialize, -1);
|
494
|
+
RG_DEF_METHOD(set_wmclass, 2);
|
495
|
+
RG_DEF_METHOD(add_accel_group, 1);
|
496
|
+
RG_DEF_METHOD(remove_accel_group, 1);
|
497
|
+
G_REPLACE_ACTION(RG_TARGET_NAMESPACE, "activate_focus", gwin_activate_focus, 0);
|
498
|
+
G_REPLACE_ACTION(RG_TARGET_NAMESPACE, "activate_default", gwin_activate_default, 0);
|
499
|
+
RG_DEF_METHOD(set_default_size, 2);
|
500
|
+
RG_DEF_METHOD(set_geometry_hints, 3);
|
501
|
+
RG_DEF_SMETHOD(toplevels, 0);
|
502
|
+
RG_DEF_METHOD(add_mnemonic, 2);
|
503
|
+
RG_DEF_METHOD(remove_mnemonic, 2);
|
504
|
+
RG_DEF_METHOD(mnemonic_activate, 2);
|
505
|
+
RG_DEF_METHOD(focus, 0);
|
506
|
+
RG_DEF_METHOD(set_focus, 1);
|
507
|
+
RG_DEF_METHOD(set_default, 1);
|
508
|
+
RG_DEF_METHOD(present, -1);
|
509
|
+
RG_DEF_METHOD(iconify, 0);
|
510
|
+
RG_DEF_METHOD(deiconify, 0);
|
511
|
+
RG_DEF_METHOD(stick, 0);
|
512
|
+
RG_DEF_METHOD(unstick, 0);
|
513
|
+
RG_DEF_METHOD(maximize, 0);
|
514
|
+
RG_DEF_METHOD(unmaximize, 0);
|
515
|
+
RG_DEF_METHOD(fullscreen, 0);
|
516
|
+
RG_DEF_METHOD(unfullscreen, 0);
|
517
|
+
RG_DEF_METHOD(set_keep_above, 1);
|
518
|
+
RG_DEF_METHOD(set_keep_below, 1);
|
519
|
+
RG_DEF_METHOD(begin_resize_drag, 5);
|
520
|
+
RG_DEF_METHOD(begin_move_drag, 4);
|
521
|
+
RG_DEF_METHOD(set_mnemonic_modifier, 1);
|
522
|
+
RG_DEF_METHOD(default_size, 0);
|
523
|
+
RG_DEF_SMETHOD(default_icon_list, 0);
|
524
|
+
RG_DEF_METHOD(icon_list, 0);
|
525
|
+
RG_DEF_METHOD(mnemonic_modifier, 0);
|
526
|
+
RG_DEF_METHOD(position, 0);
|
527
|
+
RG_DEF_METHOD(size, 0);
|
528
|
+
RG_DEF_METHOD(group, 0);
|
529
|
+
RG_DEF_METHOD(move, 2);
|
530
|
+
RG_DEF_METHOD(parse_geometry, 1);
|
531
|
+
RG_DEF_METHOD(reshow_with_initial_size, 0);
|
532
|
+
RG_DEF_METHOD(resize, 2);
|
533
|
+
RG_DEF_SMETHOD(set_default_icon_list, 1);
|
534
|
+
RG_DEF_SMETHOD(set_default_icon, 1);
|
535
|
+
RG_DEF_SMETHOD(set_default_icon_name, 1);
|
536
|
+
G_REPLACE_SET_PROPERTY(RG_TARGET_NAMESPACE, "icon", gwin_set_icon, 1);
|
537
|
+
RG_DEF_METHOD(set_icon_list, 1);
|
538
|
+
RG_DEF_SMETHOD(set_auto_startup_notification, 1);
|
539
|
+
RG_DEF_SMETHOD(default_icon_name, 0);
|
540
|
+
RG_DEF_METHOD(activate_key, 1);
|
541
|
+
RG_DEF_METHOD(default_widget, 0);
|
542
|
+
RG_DEF_METHOD(resize_grip_area, 0);
|
543
|
+
RG_DEF_METHOD_P(has_group, 0);
|
544
|
+
RG_DEF_METHOD(propagate_key_event, 1);
|
545
|
+
RG_DEF_METHOD(resize_to_geometry, 2);
|
546
|
+
RG_DEF_METHOD(set_default_geometry, 2);
|
547
|
+
|
548
|
+
G_DEF_CLASS(GTK_TYPE_WINDOW_POSITION, "Position", RG_TARGET_NAMESPACE);
|
549
|
+
G_DEF_CLASS(GTK_TYPE_WINDOW_TYPE, "Type", RG_TARGET_NAMESPACE);
|
550
|
+
|
551
|
+
{
|
552
|
+
static VALUE toplevels_marker;
|
553
|
+
toplevels_marker =
|
554
|
+
rb_data_object_alloc(rb_cData, NULL, mark_toplevels, NULL);
|
555
|
+
rb_global_variable(&toplevels_marker);
|
556
|
+
}
|
557
|
+
}
|