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,899 @@
|
|
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) 2002,2003 Masahiro Sakai
|
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 cTextBuffer
|
26
|
+
#define _SELF(s) (RVAL2GTKTEXTBUFFER(s))
|
27
|
+
|
28
|
+
static VALUE rb_mGtk;
|
29
|
+
|
30
|
+
#define RVAL2ITER(self, position) RVAL2GTKTEXTITER(rg_get_iter_at(self, position))
|
31
|
+
#define RVAL2STARTITER(self, iter, out) \
|
32
|
+
rval2iter_with_default(&(self), &(iter), &(out), gtk_text_buffer_get_start_iter)
|
33
|
+
#define RVAL2ENDITER(self, iter, out) \
|
34
|
+
rval2iter_with_default(&(self), &(iter), &(out), gtk_text_buffer_get_end_iter)
|
35
|
+
|
36
|
+
static VALUE
|
37
|
+
rg_get_iter_at(VALUE self, VALUE position)
|
38
|
+
{
|
39
|
+
GtkTextIter iter;
|
40
|
+
|
41
|
+
switch (TYPE(position)) {
|
42
|
+
case T_HASH:
|
43
|
+
{
|
44
|
+
VALUE line, offset, index, mark, anchor;
|
45
|
+
rbg_scan_options(position,
|
46
|
+
"line", &line,
|
47
|
+
"offset", &offset,
|
48
|
+
"index", &index,
|
49
|
+
"mark", &mark,
|
50
|
+
"anchor", &anchor,
|
51
|
+
NULL);
|
52
|
+
|
53
|
+
if (!NIL_P(line))
|
54
|
+
if (!NIL_P(offset))
|
55
|
+
gtk_text_buffer_get_iter_at_line_offset(_SELF(self),
|
56
|
+
&iter,
|
57
|
+
NUM2INT(line),
|
58
|
+
NUM2INT(offset));
|
59
|
+
else if (!NIL_P(index))
|
60
|
+
gtk_text_buffer_get_iter_at_line_index(_SELF(self),
|
61
|
+
&iter,
|
62
|
+
NUM2INT(line),
|
63
|
+
NUM2INT(index));
|
64
|
+
else
|
65
|
+
gtk_text_buffer_get_iter_at_line(_SELF(self),
|
66
|
+
&iter,
|
67
|
+
NUM2INT(line));
|
68
|
+
else if (!NIL_P(offset))
|
69
|
+
gtk_text_buffer_get_iter_at_offset(_SELF(self),
|
70
|
+
&iter,
|
71
|
+
NUM2INT(offset));
|
72
|
+
else if (!NIL_P(mark))
|
73
|
+
gtk_text_buffer_get_iter_at_mark(_SELF(self),
|
74
|
+
&iter,
|
75
|
+
RVAL2GTKTEXTMARK(mark));
|
76
|
+
else if (!NIL_P(anchor))
|
77
|
+
gtk_text_buffer_get_iter_at_child_anchor(_SELF(self),
|
78
|
+
&iter,
|
79
|
+
RVAL2GTKTEXTCHILDANCHOR(anchor));
|
80
|
+
else
|
81
|
+
rb_raise(rb_eArgError, "Invalid arguments.");
|
82
|
+
break;
|
83
|
+
}
|
84
|
+
case T_FIXNUM:
|
85
|
+
{
|
86
|
+
gtk_text_buffer_get_iter_at_offset(_SELF(self),
|
87
|
+
&iter,
|
88
|
+
NUM2INT(position));
|
89
|
+
break;
|
90
|
+
}
|
91
|
+
default:
|
92
|
+
{
|
93
|
+
GType gtype = RVAL2GTYPE(position);
|
94
|
+
|
95
|
+
if (g_type_is_a(gtype, GTK_TYPE_TEXT_ITER))
|
96
|
+
return position;
|
97
|
+
else if (g_type_is_a(gtype, GTK_TYPE_TEXT_MARK))
|
98
|
+
gtk_text_buffer_get_iter_at_mark(_SELF(self),
|
99
|
+
&iter,
|
100
|
+
RVAL2GTKTEXTMARK(position));
|
101
|
+
else if (g_type_is_a(gtype, GTK_TYPE_TEXT_CHILD_ANCHOR))
|
102
|
+
gtk_text_buffer_get_iter_at_child_anchor(_SELF(self),
|
103
|
+
&iter,
|
104
|
+
RVAL2GTKTEXTCHILDANCHOR(position));
|
105
|
+
else
|
106
|
+
rb_raise(rb_eArgError, "Invalid arguments.");
|
107
|
+
break;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
return GTKTEXTITER2RVAL(&iter);
|
112
|
+
}
|
113
|
+
|
114
|
+
static GtkTextIter *
|
115
|
+
rval2iter_with_default(VALUE *self, VALUE *iter, GtkTextIter *out,
|
116
|
+
void (*default_func)(GtkTextBuffer *, GtkTextIter *))
|
117
|
+
{
|
118
|
+
if (NIL_P(*iter)) {
|
119
|
+
default_func(_SELF(*self), out);
|
120
|
+
return out;
|
121
|
+
} else {
|
122
|
+
return RVAL2ITER(*self, *iter);
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
static VALUE
|
127
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
128
|
+
{
|
129
|
+
VALUE table;
|
130
|
+
rb_scan_args(argc, argv, "01", &table);
|
131
|
+
if (NIL_P(table))
|
132
|
+
G_INITIALIZE(self, gtk_text_buffer_new(NULL));
|
133
|
+
else {
|
134
|
+
G_CHILD_SET(self, rb_intern("tagtable"), table);
|
135
|
+
G_INITIALIZE(self, gtk_text_buffer_new(RVAL2GTKTEXTTAGTABLE(table)));
|
136
|
+
}
|
137
|
+
return Qnil;
|
138
|
+
}
|
139
|
+
|
140
|
+
static VALUE
|
141
|
+
rg_line_count(VALUE self)
|
142
|
+
{
|
143
|
+
return INT2NUM(gtk_text_buffer_get_line_count(_SELF(self)));
|
144
|
+
}
|
145
|
+
|
146
|
+
static VALUE
|
147
|
+
rg_char_count(VALUE self)
|
148
|
+
{
|
149
|
+
return INT2NUM(gtk_text_buffer_get_char_count(_SELF(self)));
|
150
|
+
}
|
151
|
+
|
152
|
+
static VALUE
|
153
|
+
txt_set_text(VALUE self, VALUE text)
|
154
|
+
{
|
155
|
+
StringValue(text);
|
156
|
+
gtk_text_buffer_set_text(_SELF(self), RSTRING_PTR(text), RSTRING_LEN(text));
|
157
|
+
return self;
|
158
|
+
}
|
159
|
+
|
160
|
+
static VALUE
|
161
|
+
rg_backspace(VALUE self, VALUE iter, VALUE interactive, VALUE default_editable)
|
162
|
+
{
|
163
|
+
return CBOOL2RVAL(gtk_text_buffer_backspace(_SELF(self), RVAL2ITER(self, iter),
|
164
|
+
RVAL2CBOOL(interactive),
|
165
|
+
RVAL2CBOOL(default_editable)));
|
166
|
+
}
|
167
|
+
|
168
|
+
static VALUE
|
169
|
+
rg_insert_at_cursor(VALUE self, VALUE text)
|
170
|
+
{
|
171
|
+
StringValue(text);
|
172
|
+
gtk_text_buffer_insert_at_cursor(_SELF(self), RSTRING_PTR(text), RSTRING_LEN(text));
|
173
|
+
return self;
|
174
|
+
}
|
175
|
+
|
176
|
+
static VALUE
|
177
|
+
rg_insert_interactive(VALUE self, VALUE iter, VALUE text, VALUE editable)
|
178
|
+
{
|
179
|
+
StringValue(text);
|
180
|
+
|
181
|
+
return CBOOL2RVAL(gtk_text_buffer_insert_interactive(_SELF(self),
|
182
|
+
RVAL2ITER(self, iter),
|
183
|
+
RSTRING_PTR(text),
|
184
|
+
RSTRING_LEN(text),
|
185
|
+
RVAL2CBOOL(editable)));
|
186
|
+
}
|
187
|
+
|
188
|
+
static VALUE
|
189
|
+
rg_insert_interactive_at_cursor(VALUE self, VALUE text, VALUE editable)
|
190
|
+
{
|
191
|
+
StringValue(text);
|
192
|
+
|
193
|
+
return CBOOL2RVAL(gtk_text_buffer_insert_interactive_at_cursor(_SELF(self),
|
194
|
+
RSTRING_PTR(text),
|
195
|
+
RSTRING_LEN(text),
|
196
|
+
RVAL2CBOOL(editable)));
|
197
|
+
}
|
198
|
+
|
199
|
+
static VALUE
|
200
|
+
rg_insert_range(VALUE self, VALUE iter, VALUE start, VALUE end)
|
201
|
+
{
|
202
|
+
gtk_text_buffer_insert_range(_SELF(self), RVAL2ITER(self, iter),
|
203
|
+
RVAL2ITER(self, start), RVAL2ITER(self, end));
|
204
|
+
return self;
|
205
|
+
}
|
206
|
+
|
207
|
+
static VALUE
|
208
|
+
rg_insert_range_interactive(VALUE self, VALUE iter, VALUE start, VALUE end, VALUE editable)
|
209
|
+
{
|
210
|
+
return CBOOL2RVAL(gtk_text_buffer_insert_range_interactive(_SELF(self),
|
211
|
+
RVAL2ITER(self, iter),
|
212
|
+
RVAL2ITER(self, start),
|
213
|
+
RVAL2ITER(self, end),
|
214
|
+
RVAL2CBOOL(editable)));
|
215
|
+
}
|
216
|
+
|
217
|
+
static VALUE
|
218
|
+
rg_delete(int argc, VALUE *argv, VALUE self)
|
219
|
+
{
|
220
|
+
VALUE start, end;
|
221
|
+
GtkTextIter start_iter, end_iter;
|
222
|
+
|
223
|
+
rb_scan_args(argc, argv, "02", &start, &end);
|
224
|
+
|
225
|
+
gtk_text_buffer_delete(_SELF(self),
|
226
|
+
RVAL2STARTITER(self, start, start_iter),
|
227
|
+
RVAL2ENDITER(self, end, end_iter));
|
228
|
+
|
229
|
+
return self;
|
230
|
+
}
|
231
|
+
|
232
|
+
static VALUE
|
233
|
+
rg_delete_interactive(int argc, VALUE *argv, VALUE self)
|
234
|
+
{
|
235
|
+
VALUE start, end, editable;
|
236
|
+
GtkTextIter start_iter, end_iter;
|
237
|
+
|
238
|
+
rb_scan_args(argc, argv, "03", &start, &end, &editable);
|
239
|
+
|
240
|
+
return CBOOL2RVAL(gtk_text_buffer_delete_interactive(_SELF(self),
|
241
|
+
RVAL2STARTITER(self, start, start_iter),
|
242
|
+
RVAL2ENDITER(self, end, end_iter),
|
243
|
+
RVAL2CBOOL(editable)));
|
244
|
+
}
|
245
|
+
|
246
|
+
static VALUE
|
247
|
+
rg_get_text(int argc, VALUE *argv, VALUE self)
|
248
|
+
{
|
249
|
+
VALUE start, end, include_hidden_chars;
|
250
|
+
GtkTextIter start_iter, end_iter;
|
251
|
+
gchar* ret;
|
252
|
+
|
253
|
+
rb_scan_args(argc, argv, "03", &start, &end, &include_hidden_chars);
|
254
|
+
|
255
|
+
ret = gtk_text_buffer_get_text(_SELF(self),
|
256
|
+
RVAL2STARTITER(self, start, start_iter),
|
257
|
+
RVAL2ENDITER(self, end, end_iter),
|
258
|
+
RVAL2CBOOL(include_hidden_chars));
|
259
|
+
|
260
|
+
return CSTR2RVAL_FREE(ret);
|
261
|
+
}
|
262
|
+
|
263
|
+
static VALUE
|
264
|
+
txt_get_text_all(VALUE self)
|
265
|
+
{
|
266
|
+
return rg_get_text(0, NULL, self);
|
267
|
+
}
|
268
|
+
|
269
|
+
static VALUE
|
270
|
+
rg_get_slice(int argc, VALUE *argv, VALUE self)
|
271
|
+
{
|
272
|
+
VALUE start, end, include_hidden_chars;
|
273
|
+
GtkTextIter start_iter, end_iter;
|
274
|
+
gchar* ret;
|
275
|
+
|
276
|
+
rb_scan_args(argc, argv, "03", &start, &end, &include_hidden_chars);
|
277
|
+
|
278
|
+
ret = gtk_text_buffer_get_slice(_SELF(self),
|
279
|
+
RVAL2STARTITER(self, start, start_iter),
|
280
|
+
RVAL2ENDITER(self, end, end_iter),
|
281
|
+
RVAL2CBOOL(include_hidden_chars));
|
282
|
+
|
283
|
+
return CSTR2RVAL_FREE(ret);
|
284
|
+
}
|
285
|
+
|
286
|
+
static VALUE
|
287
|
+
rg_slice(VALUE self)
|
288
|
+
{
|
289
|
+
return rg_get_slice(0, NULL, self);
|
290
|
+
}
|
291
|
+
|
292
|
+
static VALUE
|
293
|
+
rg_create_child_anchor(VALUE self, VALUE iter)
|
294
|
+
{
|
295
|
+
VALUE ret = GOBJ2RVAL(gtk_text_buffer_create_child_anchor(_SELF(self), RVAL2ITER(self, iter)));
|
296
|
+
G_CHILD_ADD(self, ret);
|
297
|
+
return ret;
|
298
|
+
}
|
299
|
+
|
300
|
+
static VALUE
|
301
|
+
rg_create_mark(VALUE self, VALUE name, VALUE where, VALUE left_gravity)
|
302
|
+
{
|
303
|
+
VALUE ret = GOBJ2RVAL(gtk_text_buffer_create_mark(_SELF(self),
|
304
|
+
RVAL2CSTR_ACCEPT_NIL(name),
|
305
|
+
RVAL2ITER(self, where),
|
306
|
+
RVAL2CBOOL(left_gravity)));
|
307
|
+
G_CHILD_ADD(self, ret);
|
308
|
+
return ret;
|
309
|
+
}
|
310
|
+
|
311
|
+
static VALUE
|
312
|
+
rg_add_mark(VALUE self, VALUE mark, VALUE where)
|
313
|
+
{
|
314
|
+
gtk_text_buffer_add_mark(_SELF(self), RVAL2GTKTEXTMARK(mark), RVAL2ITER(self, where));
|
315
|
+
return self;
|
316
|
+
}
|
317
|
+
|
318
|
+
static VALUE
|
319
|
+
rg_delete_mark(VALUE self, VALUE mark)
|
320
|
+
{
|
321
|
+
if (rb_obj_is_kind_of(mark, GTYPE2CLASS(GTK_TYPE_TEXT_MARK))){
|
322
|
+
G_CHILD_REMOVE(self, mark);
|
323
|
+
gtk_text_buffer_delete_mark(_SELF(self), RVAL2GTKTEXTMARK(mark));
|
324
|
+
} else {
|
325
|
+
G_CHILD_REMOVE(self, GOBJ2RVAL(gtk_text_buffer_get_mark(_SELF(self), RVAL2CSTR(mark))));
|
326
|
+
gtk_text_buffer_delete_mark_by_name(_SELF(self), RVAL2CSTR(mark));
|
327
|
+
}
|
328
|
+
return self;
|
329
|
+
}
|
330
|
+
|
331
|
+
static VALUE
|
332
|
+
rg_get_mark(VALUE self, VALUE name)
|
333
|
+
{
|
334
|
+
return GOBJ2RVAL(gtk_text_buffer_get_mark(_SELF(self), RVAL2CSTR(name)));
|
335
|
+
}
|
336
|
+
|
337
|
+
/*
|
338
|
+
static VALUE
|
339
|
+
rg_get_insert(VALUE self)
|
340
|
+
{
|
341
|
+
return GOBJ2RVAL(gtk_text_buffer_get_insert(_SELF(self)));
|
342
|
+
}
|
343
|
+
*/
|
344
|
+
|
345
|
+
static VALUE
|
346
|
+
rg_selection_bound(VALUE self)
|
347
|
+
{
|
348
|
+
return GOBJ2RVAL(gtk_text_buffer_get_selection_bound(_SELF(self)));
|
349
|
+
}
|
350
|
+
|
351
|
+
static VALUE
|
352
|
+
rg_place_cursor(VALUE self, VALUE where)
|
353
|
+
{
|
354
|
+
gtk_text_buffer_place_cursor(_SELF(self), RVAL2ITER(self, where));
|
355
|
+
return self;
|
356
|
+
}
|
357
|
+
|
358
|
+
static VALUE
|
359
|
+
rg_select_range(VALUE self, VALUE ins, VALUE bound)
|
360
|
+
{
|
361
|
+
gtk_text_buffer_select_range(_SELF(self), RVAL2ITER(self, ins), RVAL2ITER(self, bound));
|
362
|
+
return self;
|
363
|
+
}
|
364
|
+
|
365
|
+
static VALUE
|
366
|
+
rg_modified_p(VALUE self)
|
367
|
+
{
|
368
|
+
return CBOOL2RVAL(gtk_text_buffer_get_modified(_SELF(self)));
|
369
|
+
}
|
370
|
+
|
371
|
+
static VALUE
|
372
|
+
rg_set_modified(VALUE self, VALUE setting)
|
373
|
+
{
|
374
|
+
gtk_text_buffer_set_modified(_SELF(self), RVAL2CBOOL(setting));
|
375
|
+
return setting;
|
376
|
+
}
|
377
|
+
|
378
|
+
static VALUE
|
379
|
+
rg_add_selection_clipboard(VALUE self, VALUE clipboard)
|
380
|
+
{
|
381
|
+
G_CHILD_ADD(self, clipboard);
|
382
|
+
gtk_text_buffer_add_selection_clipboard(_SELF(self), RVAL2GTKCLIPBOARD(clipboard));
|
383
|
+
return self;
|
384
|
+
}
|
385
|
+
|
386
|
+
static VALUE
|
387
|
+
rg_remove_selection_clipboard(VALUE self, VALUE clipboard)
|
388
|
+
{
|
389
|
+
G_CHILD_REMOVE(self, clipboard);
|
390
|
+
gtk_text_buffer_remove_selection_clipboard(_SELF(self), RVAL2GTKCLIPBOARD(clipboard));
|
391
|
+
return self;
|
392
|
+
}
|
393
|
+
|
394
|
+
static VALUE
|
395
|
+
rg_deserialize(VALUE self, VALUE content_buffer, VALUE format, VALUE iter, VALUE data)
|
396
|
+
{
|
397
|
+
GError* error = NULL;
|
398
|
+
gboolean ret;
|
399
|
+
|
400
|
+
StringValue(data);
|
401
|
+
ret = gtk_text_buffer_deserialize(_SELF(self), _SELF(content_buffer),
|
402
|
+
RVAL2ATOM(format),
|
403
|
+
RVAL2ITER(self, iter),
|
404
|
+
(const guint8*)RSTRING_PTR(data),
|
405
|
+
(gsize)RSTRING_LEN(data),
|
406
|
+
&error);
|
407
|
+
if (! ret) RAISE_GERROR(error);
|
408
|
+
return self;
|
409
|
+
}
|
410
|
+
|
411
|
+
static VALUE
|
412
|
+
rg_deserialize_can_create_tags_p(VALUE self, VALUE format)
|
413
|
+
{
|
414
|
+
return CBOOL2RVAL(gtk_text_buffer_deserialize_get_can_create_tags(_SELF(self),
|
415
|
+
RVAL2ATOM(format)));
|
416
|
+
|
417
|
+
}
|
418
|
+
|
419
|
+
static VALUE
|
420
|
+
rg_deserialize_set_can_create_tags(VALUE self, VALUE format, VALUE can_create_tags)
|
421
|
+
{
|
422
|
+
gtk_text_buffer_deserialize_set_can_create_tags(_SELF(self),
|
423
|
+
RVAL2ATOM(format),
|
424
|
+
RVAL2CBOOL(can_create_tags));
|
425
|
+
return self;
|
426
|
+
}
|
427
|
+
|
428
|
+
static VALUE
|
429
|
+
rg_deserialize_formats(VALUE self)
|
430
|
+
{
|
431
|
+
gint i;
|
432
|
+
gint n_formats;
|
433
|
+
GdkAtom* atoms = gtk_text_buffer_get_deserialize_formats(_SELF(self), &n_formats);
|
434
|
+
VALUE ary = rb_ary_new();
|
435
|
+
|
436
|
+
for (i = 0; i < n_formats; i++){
|
437
|
+
rb_ary_push(ary, GDKATOM2RVAL(atoms[i]));
|
438
|
+
}
|
439
|
+
return ary;
|
440
|
+
}
|
441
|
+
|
442
|
+
static VALUE
|
443
|
+
rg_serialize_formats(VALUE self)
|
444
|
+
{
|
445
|
+
gint i;
|
446
|
+
gint n_formats;
|
447
|
+
GdkAtom* atoms = gtk_text_buffer_get_serialize_formats(_SELF(self), &n_formats);
|
448
|
+
VALUE ary = rb_ary_new();
|
449
|
+
|
450
|
+
for (i = 0; i < n_formats; i++){
|
451
|
+
rb_ary_push(ary, GDKATOM2RVAL(atoms[i]));
|
452
|
+
}
|
453
|
+
return ary;
|
454
|
+
}
|
455
|
+
|
456
|
+
struct callback_arg
|
457
|
+
{
|
458
|
+
VALUE callback;
|
459
|
+
int argc;
|
460
|
+
VALUE *argv;
|
461
|
+
};
|
462
|
+
|
463
|
+
static VALUE
|
464
|
+
invoke_callback(VALUE data)
|
465
|
+
{
|
466
|
+
struct callback_arg *arg = (struct callback_arg *)data;
|
467
|
+
|
468
|
+
return rb_funcall2(arg->callback, id_call, arg->argc, arg->argv);
|
469
|
+
}
|
470
|
+
|
471
|
+
static gboolean
|
472
|
+
deserialize_func(GtkTextBuffer *register_buffer,
|
473
|
+
GtkTextBuffer *content_buffer,
|
474
|
+
GtkTextIter *iter,
|
475
|
+
const guint8 *data,
|
476
|
+
gsize length,
|
477
|
+
gboolean create_tags,
|
478
|
+
gpointer func,
|
479
|
+
G_GNUC_UNUSED GError **error)
|
480
|
+
{
|
481
|
+
VALUE result;
|
482
|
+
VALUE argv[5];
|
483
|
+
struct callback_arg arg;
|
484
|
+
|
485
|
+
argv[0] = GOBJ2RVAL(register_buffer);
|
486
|
+
argv[1] = GOBJ2RVAL(content_buffer);
|
487
|
+
argv[2] = GTKTEXTITER2RVAL(iter);
|
488
|
+
argv[3] = RBG_STRING_SET_UTF8_ENCODING(rb_str_new((char*)data, length));
|
489
|
+
argv[4] = CBOOL2RVAL(create_tags);
|
490
|
+
|
491
|
+
arg.callback = (VALUE)func;
|
492
|
+
arg.argc = 5;
|
493
|
+
arg.argv = argv;
|
494
|
+
|
495
|
+
result = G_PROTECT_CALLBACK(invoke_callback, &arg);
|
496
|
+
return NIL_P(rb_errinfo()) ? RVAL2CBOOL(result) : FALSE;
|
497
|
+
}
|
498
|
+
|
499
|
+
static void
|
500
|
+
remove_callback_reference(gpointer callback)
|
501
|
+
{
|
502
|
+
G_CHILD_REMOVE(rb_mGtk, (VALUE)callback);
|
503
|
+
}
|
504
|
+
|
505
|
+
static VALUE
|
506
|
+
rg_register_deserialize_format(VALUE self, VALUE mime_type)
|
507
|
+
{
|
508
|
+
VALUE block = rb_block_proc();
|
509
|
+
GdkAtom atom;
|
510
|
+
G_CHILD_ADD(rb_mGtk, block);
|
511
|
+
atom = gtk_text_buffer_register_deserialize_format(_SELF(self),
|
512
|
+
(const gchar*)RVAL2CSTR(mime_type),
|
513
|
+
(GtkTextBufferDeserializeFunc)deserialize_func,
|
514
|
+
(gpointer)block,
|
515
|
+
(GDestroyNotify)remove_callback_reference);
|
516
|
+
return GDKATOM2RVAL(atom);
|
517
|
+
}
|
518
|
+
|
519
|
+
static VALUE
|
520
|
+
rg_register_deserialize_target(VALUE self, VALUE tagset_name)
|
521
|
+
{
|
522
|
+
return GDKATOM2RVAL(gtk_text_buffer_register_deserialize_tagset(_SELF(self),
|
523
|
+
RVAL2CSTR_ACCEPT_NIL(tagset_name)));
|
524
|
+
}
|
525
|
+
|
526
|
+
static guint8*
|
527
|
+
serialize_func(GtkTextBuffer *register_buffer, GtkTextBuffer *content_buffer, GtkTextIter *start, GtkTextIter *end, gsize *length, gpointer func)
|
528
|
+
{
|
529
|
+
VALUE result;
|
530
|
+
VALUE argv[4];
|
531
|
+
struct callback_arg arg;
|
532
|
+
|
533
|
+
argv[0] = GOBJ2RVAL(register_buffer);
|
534
|
+
argv[1] = GOBJ2RVAL(content_buffer);
|
535
|
+
argv[2] = GTKTEXTITER2RVAL(start);
|
536
|
+
argv[3] = GTKTEXTITER2RVAL(end);
|
537
|
+
|
538
|
+
arg.callback = (VALUE)func;
|
539
|
+
arg.argc = 4;
|
540
|
+
arg.argv = argv;
|
541
|
+
|
542
|
+
/* This should return data as String */
|
543
|
+
result = G_PROTECT_CALLBACK(invoke_callback, &arg);
|
544
|
+
StringValue(result);
|
545
|
+
*length = RSTRING_LEN(result);
|
546
|
+
return (guint8*)(NIL_P(rb_errinfo()) ? RSTRING_PTR(result) : NULL);
|
547
|
+
}
|
548
|
+
|
549
|
+
static VALUE
|
550
|
+
rg_register_serialize_format(VALUE self, VALUE mime_type)
|
551
|
+
{
|
552
|
+
VALUE block = rb_block_proc();
|
553
|
+
GdkAtom atom;
|
554
|
+
G_CHILD_ADD(rb_mGtk, block);
|
555
|
+
atom = gtk_text_buffer_register_serialize_format(_SELF(self),
|
556
|
+
(const gchar*)RVAL2CSTR(mime_type),
|
557
|
+
(GtkTextBufferSerializeFunc)serialize_func,
|
558
|
+
(gpointer)block,
|
559
|
+
(GDestroyNotify)remove_callback_reference);
|
560
|
+
return GDKATOM2RVAL(atom);
|
561
|
+
}
|
562
|
+
|
563
|
+
static VALUE
|
564
|
+
rg_register_serialize_target(VALUE self, VALUE tagset_name)
|
565
|
+
{
|
566
|
+
return GDKATOM2RVAL(gtk_text_buffer_register_serialize_tagset(_SELF(self),
|
567
|
+
RVAL2CSTR_ACCEPT_NIL(tagset_name)));
|
568
|
+
}
|
569
|
+
|
570
|
+
static VALUE
|
571
|
+
rg_serialize(VALUE self, VALUE content_buffer, VALUE format, VALUE start, VALUE end)
|
572
|
+
{
|
573
|
+
gsize length;
|
574
|
+
guint8* ret = gtk_text_buffer_serialize(_SELF(self), _SELF(content_buffer),
|
575
|
+
RVAL2ATOM(format),
|
576
|
+
RVAL2ITER(self, start), RVAL2ITER(self, end),
|
577
|
+
&length);
|
578
|
+
return RBG_STRING_SET_UTF8_ENCODING(rb_str_new((char*)ret, length));
|
579
|
+
}
|
580
|
+
|
581
|
+
static VALUE
|
582
|
+
rg_unregister_deserialize_format(VALUE self, VALUE format)
|
583
|
+
{
|
584
|
+
gtk_text_buffer_unregister_deserialize_format(_SELF(self), RVAL2ATOM(format));
|
585
|
+
return self;
|
586
|
+
}
|
587
|
+
|
588
|
+
static VALUE
|
589
|
+
rg_unregister_serialize_format(VALUE self, VALUE format)
|
590
|
+
{
|
591
|
+
gtk_text_buffer_unregister_serialize_format(_SELF(self), RVAL2ATOM(format));
|
592
|
+
return self;
|
593
|
+
}
|
594
|
+
|
595
|
+
static VALUE
|
596
|
+
rg_cut_clipboard(VALUE self, VALUE clipboard, VALUE default_editable)
|
597
|
+
{
|
598
|
+
G_CHILD_ADD(self, clipboard);
|
599
|
+
gtk_text_buffer_cut_clipboard(_SELF(self), RVAL2GTKCLIPBOARD(clipboard), RVAL2CBOOL(default_editable));
|
600
|
+
return self;
|
601
|
+
}
|
602
|
+
|
603
|
+
static VALUE
|
604
|
+
rg_copy_clipboard(VALUE self, VALUE clipboard)
|
605
|
+
{
|
606
|
+
G_CHILD_ADD(self, clipboard);
|
607
|
+
gtk_text_buffer_copy_clipboard(_SELF(self), RVAL2GTKCLIPBOARD(clipboard));
|
608
|
+
return self;
|
609
|
+
}
|
610
|
+
|
611
|
+
static VALUE
|
612
|
+
rg_paste_clipboard(VALUE self, VALUE clipboard, VALUE location, VALUE default_editable)
|
613
|
+
{
|
614
|
+
G_CHILD_ADD(self, clipboard);
|
615
|
+
gtk_text_buffer_paste_clipboard(_SELF(self), RVAL2GTKCLIPBOARD(clipboard),
|
616
|
+
NIL_P(location) ? NULL : RVAL2ITER(self, location),
|
617
|
+
RVAL2CBOOL(default_editable));
|
618
|
+
return self;
|
619
|
+
}
|
620
|
+
|
621
|
+
static VALUE
|
622
|
+
rg_selection_bounds(VALUE self)
|
623
|
+
{
|
624
|
+
GtkTextIter start, end;
|
625
|
+
|
626
|
+
gboolean ret = gtk_text_buffer_get_selection_bounds(_SELF(self), &start, &end);
|
627
|
+
return rb_ary_new3(3, GTKTEXTITER2RVAL(&start), GTKTEXTITER2RVAL(&end), CBOOL2RVAL(ret));
|
628
|
+
}
|
629
|
+
|
630
|
+
static VALUE
|
631
|
+
rg_delete_selection(int argc, VALUE *argv, VALUE self)
|
632
|
+
{
|
633
|
+
VALUE interactive, default_editable;
|
634
|
+
rb_scan_args(argc, argv, "20", &interactive, &default_editable);
|
635
|
+
return CBOOL2RVAL(gtk_text_buffer_delete_selection(_SELF(self),
|
636
|
+
RVAL2CBOOL(interactive), RVAL2CBOOL(default_editable)));
|
637
|
+
}
|
638
|
+
|
639
|
+
static VALUE
|
640
|
+
rg_end_user_action(VALUE self)
|
641
|
+
{
|
642
|
+
gtk_text_buffer_end_user_action(_SELF(self));
|
643
|
+
return self;
|
644
|
+
}
|
645
|
+
|
646
|
+
static VALUE
|
647
|
+
rg_begin_user_action(VALUE self)
|
648
|
+
{
|
649
|
+
gtk_text_buffer_begin_user_action(_SELF(self));
|
650
|
+
if (rb_block_given_p())
|
651
|
+
rb_ensure(rb_yield, self, rg_end_user_action, self);
|
652
|
+
return self;
|
653
|
+
}
|
654
|
+
|
655
|
+
static VALUE
|
656
|
+
rg_start_iter(VALUE self)
|
657
|
+
{
|
658
|
+
GtkTextIter iter;
|
659
|
+
gtk_text_buffer_get_start_iter(_SELF(self), &iter);
|
660
|
+
return GTKTEXTITER2RVAL(&iter);
|
661
|
+
}
|
662
|
+
|
663
|
+
static VALUE
|
664
|
+
rg_end_iter(VALUE self)
|
665
|
+
{
|
666
|
+
GtkTextIter iter;
|
667
|
+
gtk_text_buffer_get_end_iter(_SELF(self), &iter);
|
668
|
+
return GTKTEXTITER2RVAL(&iter);
|
669
|
+
}
|
670
|
+
|
671
|
+
static VALUE
|
672
|
+
rg_move_mark(VALUE self, VALUE mark, VALUE where)
|
673
|
+
{
|
674
|
+
if (rb_obj_is_kind_of(mark, GTYPE2CLASS(GTK_TYPE_TEXT_MARK)))
|
675
|
+
gtk_text_buffer_move_mark(_SELF(self), RVAL2GTKTEXTMARK(mark), RVAL2ITER(self, where));
|
676
|
+
else
|
677
|
+
gtk_text_buffer_move_mark_by_name(_SELF(self), RVAL2CSTR(mark), RVAL2ITER(self, where));
|
678
|
+
return self;
|
679
|
+
}
|
680
|
+
|
681
|
+
static VALUE
|
682
|
+
rg_create_tag(VALUE self, VALUE tag_name, VALUE properties)
|
683
|
+
{
|
684
|
+
GtkTextTag *tag;
|
685
|
+
VALUE ret;
|
686
|
+
|
687
|
+
tag = gtk_text_tag_new(RVAL2CSTR_ACCEPT_NIL(tag_name));
|
688
|
+
gtk_text_tag_table_add (gtk_text_buffer_get_tag_table(_SELF(self)), tag);
|
689
|
+
|
690
|
+
G_SET_PROPERTIES(GOBJ2RVAL(tag), properties);
|
691
|
+
|
692
|
+
ret = GOBJ2RVAL(tag);
|
693
|
+
|
694
|
+
G_CHILD_ADD(self, ret);
|
695
|
+
|
696
|
+
return ret;
|
697
|
+
}
|
698
|
+
|
699
|
+
static VALUE
|
700
|
+
rg_insert(int argc, VALUE *argv, VALUE self)
|
701
|
+
{
|
702
|
+
VALUE where, value, tags;
|
703
|
+
gint start_offset;
|
704
|
+
GtkTextIter start;
|
705
|
+
int i;
|
706
|
+
|
707
|
+
rb_scan_args(argc, argv, "2*", &where, &value, &tags);
|
708
|
+
|
709
|
+
G_CHILD_ADD(self, where);
|
710
|
+
G_CHILD_ADD(self, value);
|
711
|
+
if (rb_obj_is_kind_of(value, GTYPE2CLASS(GDK_TYPE_PIXBUF))){
|
712
|
+
gtk_text_buffer_insert_pixbuf(_SELF(self), RVAL2ITER(self, where),
|
713
|
+
RVAL2GDKPIXBUF(value));
|
714
|
+
} else if (rb_obj_is_kind_of(value, GTYPE2CLASS(GTK_TYPE_TEXT_CHILD_ANCHOR))){
|
715
|
+
gtk_text_buffer_insert_child_anchor(_SELF(self), RVAL2ITER(self, where),
|
716
|
+
RVAL2GTKTEXTCHILDANCHOR(value));
|
717
|
+
} else {
|
718
|
+
start_offset = gtk_text_iter_get_offset(RVAL2ITER(self, where));
|
719
|
+
StringValue(value);
|
720
|
+
gtk_text_buffer_insert(_SELF(self), RVAL2ITER(self, where),
|
721
|
+
RSTRING_PTR(value), RSTRING_LEN(value));
|
722
|
+
|
723
|
+
if (RARRAY_LEN(tags) == 0)
|
724
|
+
return self;
|
725
|
+
|
726
|
+
/* TODO: Do we really want to do this before we know that everything
|
727
|
+
* below passed without any errors? */
|
728
|
+
G_CHILD_ADD(self, tags);
|
729
|
+
|
730
|
+
gtk_text_buffer_get_iter_at_offset(_SELF(self), &start, start_offset);
|
731
|
+
|
732
|
+
for(i = 0; i < RARRAY_LEN(tags); i++) {
|
733
|
+
GtkTextTag *tag;
|
734
|
+
|
735
|
+
if (rb_obj_is_kind_of(RARRAY_PTR(tags)[i], GTYPE2CLASS(GTK_TYPE_TEXT_TAG))) {
|
736
|
+
tag = RVAL2GOBJ(RARRAY_PTR(tags)[i]);
|
737
|
+
} else {
|
738
|
+
tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(_SELF(self)),
|
739
|
+
RVAL2CSTR(RARRAY_PTR(tags)[i]));
|
740
|
+
if (tag == NULL) {
|
741
|
+
g_warning ("%s: no tag with name '%s'!",
|
742
|
+
G_STRLOC, RVAL2CSTR(RARRAY_PTR(tags)[i]));
|
743
|
+
return self;
|
744
|
+
}
|
745
|
+
}
|
746
|
+
gtk_text_buffer_apply_tag(_SELF(self), tag, &start, RVAL2ITER(self, where));
|
747
|
+
}
|
748
|
+
}
|
749
|
+
return self;
|
750
|
+
}
|
751
|
+
|
752
|
+
static VALUE
|
753
|
+
rg_apply_tag(int argc, VALUE *argv, VALUE self)
|
754
|
+
{
|
755
|
+
VALUE tag, start, end;
|
756
|
+
GtkTextIter start_iter, end_iter;
|
757
|
+
|
758
|
+
rb_scan_args(argc, argv, "12", &tag, &start, &end);
|
759
|
+
|
760
|
+
if (rb_obj_is_kind_of(tag, GTYPE2CLASS(GTK_TYPE_TEXT_TAG)))
|
761
|
+
gtk_text_buffer_apply_tag(_SELF(self),
|
762
|
+
RVAL2GTKTEXTTAG(tag),
|
763
|
+
RVAL2STARTITER(self, start, start_iter),
|
764
|
+
RVAL2ENDITER(self, end, end_iter));
|
765
|
+
else
|
766
|
+
gtk_text_buffer_apply_tag_by_name(_SELF(self),
|
767
|
+
RVAL2CSTR(tag),
|
768
|
+
RVAL2STARTITER(self, start, start_iter),
|
769
|
+
RVAL2ENDITER(self, end, end_iter));
|
770
|
+
|
771
|
+
return self;
|
772
|
+
}
|
773
|
+
|
774
|
+
static VALUE
|
775
|
+
rg_remove_tag(int argc, VALUE *argv, VALUE self)
|
776
|
+
{
|
777
|
+
VALUE tag, start, end;
|
778
|
+
GtkTextIter start_iter, end_iter;
|
779
|
+
|
780
|
+
rb_scan_args(argc, argv, "12", &tag, &start, &end);
|
781
|
+
|
782
|
+
if (rb_obj_is_kind_of(tag, GTYPE2CLASS(GTK_TYPE_TEXT_TAG)))
|
783
|
+
gtk_text_buffer_remove_tag(_SELF(self),
|
784
|
+
RVAL2GTKTEXTTAG(tag),
|
785
|
+
RVAL2STARTITER(self, start, start_iter),
|
786
|
+
RVAL2ENDITER(self, end, end_iter));
|
787
|
+
else
|
788
|
+
gtk_text_buffer_remove_tag_by_name(_SELF(self),
|
789
|
+
RVAL2CSTR(tag),
|
790
|
+
RVAL2STARTITER(self, start, start_iter),
|
791
|
+
RVAL2ENDITER(self, end, end_iter));
|
792
|
+
|
793
|
+
return self;
|
794
|
+
}
|
795
|
+
|
796
|
+
static VALUE
|
797
|
+
rg_remove_all_tags(int argc, VALUE *argv, VALUE self)
|
798
|
+
{
|
799
|
+
VALUE start, end;
|
800
|
+
GtkTextIter start_iter, end_iter;
|
801
|
+
|
802
|
+
rb_scan_args(argc, argv, "02", &start, &end);
|
803
|
+
|
804
|
+
gtk_text_buffer_remove_all_tags(_SELF(self),
|
805
|
+
RVAL2STARTITER(self, start, start_iter),
|
806
|
+
RVAL2ENDITER(self, end, end_iter));
|
807
|
+
|
808
|
+
return self;
|
809
|
+
}
|
810
|
+
|
811
|
+
static VALUE
|
812
|
+
rg_bounds(VALUE self)
|
813
|
+
{
|
814
|
+
GtkTextIter start, end;
|
815
|
+
|
816
|
+
gtk_text_buffer_get_bounds(_SELF(self), &start, &end);
|
817
|
+
|
818
|
+
return rb_ary_new3(2, GTKTEXTITER2RVAL(&start), GTKTEXTITER2RVAL(&end));
|
819
|
+
}
|
820
|
+
|
821
|
+
void
|
822
|
+
Init_gtk_textbuffer(VALUE mGtk)
|
823
|
+
{
|
824
|
+
rb_mGtk = mGtk;
|
825
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_TEXT_BUFFER, "TextBuffer", mGtk);
|
826
|
+
|
827
|
+
RG_DEF_METHOD(initialize, -1);
|
828
|
+
RG_DEF_METHOD(line_count, 0);
|
829
|
+
RG_DEF_METHOD(char_count, 0);
|
830
|
+
|
831
|
+
G_REPLACE_SET_PROPERTY(RG_TARGET_NAMESPACE, "text", txt_set_text, 1);
|
832
|
+
RG_DEF_METHOD(insert, -1);
|
833
|
+
RG_DEF_METHOD(backspace, 3);
|
834
|
+
RG_DEF_METHOD(insert_at_cursor, 1);
|
835
|
+
RG_DEF_METHOD(insert_interactive, 3);
|
836
|
+
RG_DEF_METHOD(insert_interactive_at_cursor, 2);
|
837
|
+
RG_DEF_METHOD(insert_range, 3);
|
838
|
+
RG_DEF_METHOD(insert_range_interactive, 4);
|
839
|
+
|
840
|
+
RG_DEF_METHOD(delete, -1);
|
841
|
+
RG_DEF_METHOD(delete_interactive, -1);
|
842
|
+
|
843
|
+
RG_DEF_METHOD(get_text, -1);
|
844
|
+
G_REPLACE_GET_PROPERTY(RG_TARGET_NAMESPACE, "text", txt_get_text_all, 0);
|
845
|
+
RG_DEF_METHOD(get_slice, -1);
|
846
|
+
RG_DEF_METHOD(slice, 0);
|
847
|
+
|
848
|
+
RG_DEF_METHOD(create_child_anchor, 1);
|
849
|
+
|
850
|
+
RG_DEF_METHOD(create_mark, 3);
|
851
|
+
RG_DEF_METHOD(add_mark, 2);
|
852
|
+
RG_DEF_METHOD(delete_mark, 1);
|
853
|
+
|
854
|
+
RG_DEF_METHOD(get_mark, 1);
|
855
|
+
/* Comment out because this method's name is very bad.
|
856
|
+
Use Gtk::TextBuffer#get_mark("insert") instead.
|
857
|
+
RG_DEF_METHOD(get_insert, 0);
|
858
|
+
*/
|
859
|
+
RG_DEF_METHOD(selection_bound, 0);
|
860
|
+
RG_DEF_METHOD(place_cursor, 1);
|
861
|
+
RG_DEF_METHOD(select_range, 2);
|
862
|
+
RG_DEF_METHOD_P(modified, 0);
|
863
|
+
RG_DEF_METHOD(set_modified, 1);
|
864
|
+
|
865
|
+
RG_DEF_METHOD(add_selection_clipboard, 1);
|
866
|
+
RG_DEF_METHOD(remove_selection_clipboard, 1);
|
867
|
+
RG_DEF_METHOD(deserialize, 4);
|
868
|
+
RG_DEF_METHOD_P(deserialize_can_create_tags, 1);
|
869
|
+
RG_DEF_METHOD(deserialize_set_can_create_tags, 2);
|
870
|
+
RG_DEF_METHOD(deserialize_formats, 0);
|
871
|
+
RG_DEF_METHOD(serialize_formats, 0);
|
872
|
+
RG_DEF_METHOD(register_deserialize_format, 1);
|
873
|
+
RG_DEF_METHOD(register_deserialize_target, 1);
|
874
|
+
RG_DEF_METHOD(register_serialize_format, 1);
|
875
|
+
RG_DEF_METHOD(register_serialize_target, 1);
|
876
|
+
RG_DEF_METHOD(serialize, 4);
|
877
|
+
RG_DEF_METHOD(unregister_deserialize_format, 1);
|
878
|
+
RG_DEF_METHOD(unregister_serialize_format, 1);
|
879
|
+
RG_DEF_METHOD(cut_clipboard, 2);
|
880
|
+
RG_DEF_METHOD(copy_clipboard, 1);
|
881
|
+
RG_DEF_METHOD(paste_clipboard, 3);
|
882
|
+
|
883
|
+
RG_DEF_METHOD(selection_bounds, 0);
|
884
|
+
RG_DEF_METHOD(delete_selection, -1);
|
885
|
+
|
886
|
+
RG_DEF_METHOD(begin_user_action, 0);
|
887
|
+
RG_DEF_METHOD(end_user_action, 0);
|
888
|
+
|
889
|
+
RG_DEF_METHOD(start_iter, 0);
|
890
|
+
RG_DEF_METHOD(end_iter, 0);
|
891
|
+
RG_DEF_METHOD(get_iter_at, 1);
|
892
|
+
RG_DEF_METHOD(bounds, 0);
|
893
|
+
RG_DEF_METHOD(move_mark, 2);
|
894
|
+
|
895
|
+
RG_DEF_METHOD(create_tag, 2);
|
896
|
+
RG_DEF_METHOD(apply_tag, -1);
|
897
|
+
RG_DEF_METHOD(remove_tag, -1);
|
898
|
+
RG_DEF_METHOD(remove_all_tags, -1);
|
899
|
+
}
|